diff options
| -rw-r--r-- | drivers/mmc/host/sdhci-msm.c | 420 |
1 files changed, 415 insertions, 5 deletions
diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c index 3b0606fe6891..acb0e9eb55f1 100644 --- a/drivers/mmc/host/sdhci-msm.c +++ b/drivers/mmc/host/sdhci-msm.c | |||
| @@ -18,6 +18,8 @@ | |||
| 18 | #include <linux/of_device.h> | 18 | #include <linux/of_device.h> |
| 19 | #include <linux/regulator/consumer.h> | 19 | #include <linux/regulator/consumer.h> |
| 20 | #include <linux/delay.h> | 20 | #include <linux/delay.h> |
| 21 | #include <linux/mmc/mmc.h> | ||
| 22 | #include <linux/slab.h> | ||
| 21 | 23 | ||
| 22 | #include "sdhci-pltfm.h" | 24 | #include "sdhci-pltfm.h" |
| 23 | 25 | ||
| @@ -26,6 +28,42 @@ | |||
| 26 | #define CORE_POWER 0x0 | 28 | #define CORE_POWER 0x0 |
| 27 | #define CORE_SW_RST BIT(7) | 29 | #define CORE_SW_RST BIT(7) |
| 28 | 30 | ||
| 31 | #define MAX_PHASES 16 | ||
| 32 | #define CORE_DLL_LOCK BIT(7) | ||
| 33 | #define CORE_DLL_EN BIT(16) | ||
| 34 | #define CORE_CDR_EN BIT(17) | ||
| 35 | #define CORE_CK_OUT_EN BIT(18) | ||
| 36 | #define CORE_CDR_EXT_EN BIT(19) | ||
| 37 | #define CORE_DLL_PDN BIT(29) | ||
| 38 | #define CORE_DLL_RST BIT(30) | ||
| 39 | #define CORE_DLL_CONFIG 0x100 | ||
| 40 | #define CORE_DLL_STATUS 0x108 | ||
| 41 | |||
| 42 | #define CORE_VENDOR_SPEC 0x10c | ||
| 43 | #define CORE_CLK_PWRSAVE BIT(1) | ||
| 44 | |||
| 45 | #define CDR_SELEXT_SHIFT 20 | ||
| 46 | #define CDR_SELEXT_MASK (0xf << CDR_SELEXT_SHIFT) | ||
| 47 | #define CMUX_SHIFT_PHASE_SHIFT 24 | ||
| 48 | #define CMUX_SHIFT_PHASE_MASK (7 << CMUX_SHIFT_PHASE_SHIFT) | ||
| 49 | |||
| 50 | static const u32 tuning_block_64[] = { | ||
| 51 | 0x00ff0fff, 0xccc3ccff, 0xffcc3cc3, 0xeffefffe, | ||
| 52 | 0xddffdfff, 0xfbfffbff, 0xff7fffbf, 0xefbdf777, | ||
| 53 | 0xf0fff0ff, 0x3cccfc0f, 0xcfcc33cc, 0xeeffefff, | ||
| 54 | 0xfdfffdff, 0xffbfffdf, 0xfff7ffbb, 0xde7b7ff7 | ||
| 55 | }; | ||
| 56 | |||
| 57 | static const u32 tuning_block_128[] = { | ||
| 58 | 0xff00ffff, 0x0000ffff, 0xccccffff, 0xcccc33cc, | ||
| 59 | 0xcc3333cc, 0xffffcccc, 0xffffeeff, 0xffeeeeff, | ||
| 60 | 0xffddffff, 0xddddffff, 0xbbffffff, 0xbbffffff, | ||
| 61 | 0xffffffbb, 0xffffff77, 0x77ff7777, 0xffeeddbb, | ||
| 62 | 0x00ffffff, 0x00ffffff, 0xccffff00, 0xcc33cccc, | ||
| 63 | 0x3333cccc, 0xffcccccc, 0xffeeffff, 0xeeeeffff, | ||
| 64 | 0xddffffff, 0xddffffff, 0xffffffdd, 0xffffffbb, | ||
| 65 | 0xffffbbbb, 0xffff77ff, 0xff7777ff, 0xeeddbb77 | ||
| 66 | }; | ||
| 29 | 67 | ||
| 30 | struct sdhci_msm_host { | 68 | struct sdhci_msm_host { |
| 31 | struct platform_device *pdev; | 69 | struct platform_device *pdev; |
| @@ -38,17 +76,389 @@ struct sdhci_msm_host { | |||
| 38 | }; | 76 | }; |
| 39 | 77 | ||
| 40 | /* Platform specific tuning */ | 78 | /* Platform specific tuning */ |
| 41 | static int sdhci_msm_execute_tuning(struct sdhci_host *host, u32 opcode) | 79 | static inline int msm_dll_poll_ck_out_en(struct sdhci_host *host, u8 poll) |
| 80 | { | ||
| 81 | u32 wait_cnt = 50; | ||
| 82 | u8 ck_out_en; | ||
| 83 | struct mmc_host *mmc = host->mmc; | ||
| 84 | |||
| 85 | /* Poll for CK_OUT_EN bit. max. poll time = 50us */ | ||
| 86 | ck_out_en = !!(readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) & | ||
| 87 | CORE_CK_OUT_EN); | ||
| 88 | |||
| 89 | while (ck_out_en != poll) { | ||
| 90 | if (--wait_cnt == 0) { | ||
| 91 | dev_err(mmc_dev(mmc), "%s: CK_OUT_EN bit is not %d\n", | ||
| 92 | mmc_hostname(mmc), poll); | ||
| 93 | return -ETIMEDOUT; | ||
| 94 | } | ||
| 95 | udelay(1); | ||
| 96 | |||
| 97 | ck_out_en = !!(readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) & | ||
| 98 | CORE_CK_OUT_EN); | ||
| 99 | } | ||
| 100 | |||
| 101 | return 0; | ||
| 102 | } | ||
| 103 | |||
| 104 | static int msm_config_cm_dll_phase(struct sdhci_host *host, u8 phase) | ||
| 105 | { | ||
| 106 | int rc; | ||
| 107 | static const u8 grey_coded_phase_table[] = { | ||
| 108 | 0x0, 0x1, 0x3, 0x2, 0x6, 0x7, 0x5, 0x4, | ||
| 109 | 0xc, 0xd, 0xf, 0xe, 0xa, 0xb, 0x9, 0x8 | ||
| 110 | }; | ||
| 111 | unsigned long flags; | ||
| 112 | u32 config; | ||
| 113 | struct mmc_host *mmc = host->mmc; | ||
| 114 | |||
| 115 | spin_lock_irqsave(&host->lock, flags); | ||
| 116 | |||
| 117 | config = readl_relaxed(host->ioaddr + CORE_DLL_CONFIG); | ||
| 118 | config &= ~(CORE_CDR_EN | CORE_CK_OUT_EN); | ||
| 119 | config |= (CORE_CDR_EXT_EN | CORE_DLL_EN); | ||
| 120 | writel_relaxed(config, host->ioaddr + CORE_DLL_CONFIG); | ||
| 121 | |||
| 122 | /* Wait until CK_OUT_EN bit of DLL_CONFIG register becomes '0' */ | ||
| 123 | rc = msm_dll_poll_ck_out_en(host, 0); | ||
| 124 | if (rc) | ||
| 125 | goto err_out; | ||
| 126 | |||
| 127 | /* | ||
| 128 | * Write the selected DLL clock output phase (0 ... 15) | ||
| 129 | * to CDR_SELEXT bit field of DLL_CONFIG register. | ||
| 130 | */ | ||
| 131 | config = readl_relaxed(host->ioaddr + CORE_DLL_CONFIG); | ||
| 132 | config &= ~CDR_SELEXT_MASK; | ||
| 133 | config |= grey_coded_phase_table[phase] << CDR_SELEXT_SHIFT; | ||
| 134 | writel_relaxed(config, host->ioaddr + CORE_DLL_CONFIG); | ||
| 135 | |||
| 136 | /* Set CK_OUT_EN bit of DLL_CONFIG register to 1. */ | ||
| 137 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) | ||
| 138 | | CORE_CK_OUT_EN), host->ioaddr + CORE_DLL_CONFIG); | ||
| 139 | |||
| 140 | /* Wait until CK_OUT_EN bit of DLL_CONFIG register becomes '1' */ | ||
| 141 | rc = msm_dll_poll_ck_out_en(host, 1); | ||
| 142 | if (rc) | ||
| 143 | goto err_out; | ||
| 144 | |||
| 145 | config = readl_relaxed(host->ioaddr + CORE_DLL_CONFIG); | ||
| 146 | config |= CORE_CDR_EN; | ||
| 147 | config &= ~CORE_CDR_EXT_EN; | ||
| 148 | writel_relaxed(config, host->ioaddr + CORE_DLL_CONFIG); | ||
| 149 | goto out; | ||
| 150 | |||
| 151 | err_out: | ||
| 152 | dev_err(mmc_dev(mmc), "%s: Failed to set DLL phase: %d\n", | ||
| 153 | mmc_hostname(mmc), phase); | ||
| 154 | out: | ||
| 155 | spin_unlock_irqrestore(&host->lock, flags); | ||
| 156 | return rc; | ||
| 157 | } | ||
| 158 | |||
| 159 | /* | ||
| 160 | * Find out the greatest range of consecuitive selected | ||
| 161 | * DLL clock output phases that can be used as sampling | ||
| 162 | * setting for SD3.0 UHS-I card read operation (in SDR104 | ||
| 163 | * timing mode) or for eMMC4.5 card read operation (in HS200 | ||
| 164 | * timing mode). | ||
| 165 | * Select the 3/4 of the range and configure the DLL with the | ||
| 166 | * selected DLL clock output phase. | ||
| 167 | */ | ||
| 168 | |||
| 169 | static int msm_find_most_appropriate_phase(struct sdhci_host *host, | ||
| 170 | u8 *phase_table, u8 total_phases) | ||
| 171 | { | ||
| 172 | int ret; | ||
| 173 | u8 ranges[MAX_PHASES][MAX_PHASES] = { {0}, {0} }; | ||
| 174 | u8 phases_per_row[MAX_PHASES] = { 0 }; | ||
| 175 | int row_index = 0, col_index = 0, selected_row_index = 0, curr_max = 0; | ||
| 176 | int i, cnt, phase_0_raw_index = 0, phase_15_raw_index = 0; | ||
| 177 | bool phase_0_found = false, phase_15_found = false; | ||
| 178 | struct mmc_host *mmc = host->mmc; | ||
| 179 | |||
| 180 | if (!total_phases || (total_phases > MAX_PHASES)) { | ||
| 181 | dev_err(mmc_dev(mmc), "%s: Invalid argument: total_phases=%d\n", | ||
| 182 | mmc_hostname(mmc), total_phases); | ||
| 183 | return -EINVAL; | ||
| 184 | } | ||
| 185 | |||
| 186 | for (cnt = 0; cnt < total_phases; cnt++) { | ||
| 187 | ranges[row_index][col_index] = phase_table[cnt]; | ||
| 188 | phases_per_row[row_index] += 1; | ||
| 189 | col_index++; | ||
| 190 | |||
| 191 | if ((cnt + 1) == total_phases) { | ||
| 192 | continue; | ||
| 193 | /* check if next phase in phase_table is consecutive or not */ | ||
| 194 | } else if ((phase_table[cnt] + 1) != phase_table[cnt + 1]) { | ||
| 195 | row_index++; | ||
| 196 | col_index = 0; | ||
| 197 | } | ||
| 198 | } | ||
| 199 | |||
| 200 | if (row_index >= MAX_PHASES) | ||
| 201 | return -EINVAL; | ||
| 202 | |||
| 203 | /* Check if phase-0 is present in first valid window? */ | ||
| 204 | if (!ranges[0][0]) { | ||
| 205 | phase_0_found = true; | ||
| 206 | phase_0_raw_index = 0; | ||
| 207 | /* Check if cycle exist between 2 valid windows */ | ||
| 208 | for (cnt = 1; cnt <= row_index; cnt++) { | ||
| 209 | if (phases_per_row[cnt]) { | ||
| 210 | for (i = 0; i < phases_per_row[cnt]; i++) { | ||
| 211 | if (ranges[cnt][i] == 15) { | ||
| 212 | phase_15_found = true; | ||
| 213 | phase_15_raw_index = cnt; | ||
| 214 | break; | ||
| 215 | } | ||
| 216 | } | ||
| 217 | } | ||
| 218 | } | ||
| 219 | } | ||
| 220 | |||
| 221 | /* If 2 valid windows form cycle then merge them as single window */ | ||
| 222 | if (phase_0_found && phase_15_found) { | ||
| 223 | /* number of phases in raw where phase 0 is present */ | ||
| 224 | u8 phases_0 = phases_per_row[phase_0_raw_index]; | ||
| 225 | /* number of phases in raw where phase 15 is present */ | ||
| 226 | u8 phases_15 = phases_per_row[phase_15_raw_index]; | ||
| 227 | |||
| 228 | if (phases_0 + phases_15 >= MAX_PHASES) | ||
| 229 | /* | ||
| 230 | * If there are more than 1 phase windows then total | ||
| 231 | * number of phases in both the windows should not be | ||
| 232 | * more than or equal to MAX_PHASES. | ||
| 233 | */ | ||
| 234 | return -EINVAL; | ||
| 235 | |||
| 236 | /* Merge 2 cyclic windows */ | ||
| 237 | i = phases_15; | ||
| 238 | for (cnt = 0; cnt < phases_0; cnt++) { | ||
| 239 | ranges[phase_15_raw_index][i] = | ||
| 240 | ranges[phase_0_raw_index][cnt]; | ||
| 241 | if (++i >= MAX_PHASES) | ||
| 242 | break; | ||
| 243 | } | ||
| 244 | |||
| 245 | phases_per_row[phase_0_raw_index] = 0; | ||
| 246 | phases_per_row[phase_15_raw_index] = phases_15 + phases_0; | ||
| 247 | } | ||
| 248 | |||
| 249 | for (cnt = 0; cnt <= row_index; cnt++) { | ||
| 250 | if (phases_per_row[cnt] > curr_max) { | ||
| 251 | curr_max = phases_per_row[cnt]; | ||
| 252 | selected_row_index = cnt; | ||
| 253 | } | ||
| 254 | } | ||
| 255 | |||
| 256 | i = (curr_max * 3) / 4; | ||
| 257 | if (i) | ||
| 258 | i--; | ||
| 259 | |||
| 260 | ret = ranges[selected_row_index][i]; | ||
| 261 | |||
| 262 | if (ret >= MAX_PHASES) { | ||
| 263 | ret = -EINVAL; | ||
| 264 | dev_err(mmc_dev(mmc), "%s: Invalid phase selected=%d\n", | ||
| 265 | mmc_hostname(mmc), ret); | ||
| 266 | } | ||
| 267 | |||
| 268 | return ret; | ||
| 269 | } | ||
| 270 | |||
| 271 | static inline void msm_cm_dll_set_freq(struct sdhci_host *host) | ||
| 272 | { | ||
| 273 | u32 mclk_freq = 0, config; | ||
| 274 | |||
| 275 | /* Program the MCLK value to MCLK_FREQ bit field */ | ||
| 276 | if (host->clock <= 112000000) | ||
| 277 | mclk_freq = 0; | ||
| 278 | else if (host->clock <= 125000000) | ||
| 279 | mclk_freq = 1; | ||
| 280 | else if (host->clock <= 137000000) | ||
| 281 | mclk_freq = 2; | ||
| 282 | else if (host->clock <= 150000000) | ||
| 283 | mclk_freq = 3; | ||
| 284 | else if (host->clock <= 162000000) | ||
| 285 | mclk_freq = 4; | ||
| 286 | else if (host->clock <= 175000000) | ||
| 287 | mclk_freq = 5; | ||
| 288 | else if (host->clock <= 187000000) | ||
| 289 | mclk_freq = 6; | ||
| 290 | else if (host->clock <= 200000000) | ||
| 291 | mclk_freq = 7; | ||
| 292 | |||
| 293 | config = readl_relaxed(host->ioaddr + CORE_DLL_CONFIG); | ||
| 294 | config &= ~CMUX_SHIFT_PHASE_MASK; | ||
| 295 | config |= mclk_freq << CMUX_SHIFT_PHASE_SHIFT; | ||
| 296 | writel_relaxed(config, host->ioaddr + CORE_DLL_CONFIG); | ||
| 297 | } | ||
| 298 | |||
| 299 | /* Initialize the DLL (Programmable Delay Line) */ | ||
| 300 | static int msm_init_cm_dll(struct sdhci_host *host) | ||
| 42 | { | 301 | { |
| 302 | struct mmc_host *mmc = host->mmc; | ||
| 303 | int wait_cnt = 50; | ||
| 304 | unsigned long flags; | ||
| 305 | |||
| 306 | spin_lock_irqsave(&host->lock, flags); | ||
| 307 | |||
| 43 | /* | 308 | /* |
| 44 | * Tuning is required for SDR104, HS200 and HS400 cards and if the clock | 309 | * Make sure that clock is always enabled when DLL |
| 45 | * frequency greater than 100MHz in those modes. The standard tuning | 310 | * tuning is in progress. Keeping PWRSAVE ON may |
| 46 | * procedure should not be executed, but a custom implementation will be | 311 | * turn off the clock. |
| 47 | * added here instead. | ||
| 48 | */ | 312 | */ |
| 313 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_VENDOR_SPEC) | ||
| 314 | & ~CORE_CLK_PWRSAVE), host->ioaddr + CORE_VENDOR_SPEC); | ||
| 315 | |||
| 316 | /* Write 1 to DLL_RST bit of DLL_CONFIG register */ | ||
| 317 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) | ||
| 318 | | CORE_DLL_RST), host->ioaddr + CORE_DLL_CONFIG); | ||
| 319 | |||
| 320 | /* Write 1 to DLL_PDN bit of DLL_CONFIG register */ | ||
| 321 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) | ||
| 322 | | CORE_DLL_PDN), host->ioaddr + CORE_DLL_CONFIG); | ||
| 323 | msm_cm_dll_set_freq(host); | ||
| 324 | |||
| 325 | /* Write 0 to DLL_RST bit of DLL_CONFIG register */ | ||
| 326 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) | ||
| 327 | & ~CORE_DLL_RST), host->ioaddr + CORE_DLL_CONFIG); | ||
| 328 | |||
| 329 | /* Write 0 to DLL_PDN bit of DLL_CONFIG register */ | ||
| 330 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) | ||
| 331 | & ~CORE_DLL_PDN), host->ioaddr + CORE_DLL_CONFIG); | ||
| 332 | |||
| 333 | /* Set DLL_EN bit to 1. */ | ||
| 334 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) | ||
| 335 | | CORE_DLL_EN), host->ioaddr + CORE_DLL_CONFIG); | ||
| 336 | |||
| 337 | /* Set CK_OUT_EN bit to 1. */ | ||
| 338 | writel_relaxed((readl_relaxed(host->ioaddr + CORE_DLL_CONFIG) | ||
| 339 | | CORE_CK_OUT_EN), host->ioaddr + CORE_DLL_CONFIG); | ||
| 340 | |||
| 341 | /* Wait until DLL_LOCK bit of DLL_STATUS register becomes '1' */ | ||
| 342 | while (!(readl_relaxed(host->ioaddr + CORE_DLL_STATUS) & | ||
| 343 | CORE_DLL_LOCK)) { | ||
| 344 | /* max. wait for 50us sec for LOCK bit to be set */ | ||
| 345 | if (--wait_cnt == 0) { | ||
| 346 | dev_err(mmc_dev(mmc), "%s: DLL failed to LOCK\n", | ||
| 347 | mmc_hostname(mmc)); | ||
| 348 | spin_unlock_irqrestore(&host->lock, flags); | ||
| 349 | return -ETIMEDOUT; | ||
| 350 | } | ||
| 351 | udelay(1); | ||
| 352 | } | ||
| 353 | |||
| 354 | spin_unlock_irqrestore(&host->lock, flags); | ||
| 49 | return 0; | 355 | return 0; |
| 50 | } | 356 | } |
| 51 | 357 | ||
| 358 | static int sdhci_msm_execute_tuning(struct sdhci_host *host, u32 opcode) | ||
| 359 | { | ||
| 360 | int tuning_seq_cnt = 3; | ||
| 361 | u8 phase, *data_buf, tuned_phases[16], tuned_phase_cnt = 0; | ||
| 362 | const u32 *tuning_block_pattern = tuning_block_64; | ||
| 363 | int size = sizeof(tuning_block_64); /* Pattern size in bytes */ | ||
| 364 | int rc; | ||
| 365 | struct mmc_host *mmc = host->mmc; | ||
| 366 | struct mmc_ios ios = host->mmc->ios; | ||
| 367 | |||
| 368 | /* | ||
| 369 | * Tuning is required for SDR104, HS200 and HS400 cards and | ||
| 370 | * if clock frequency is greater than 100MHz in these modes. | ||
| 371 | */ | ||
| 372 | if (host->clock <= 100 * 1000 * 1000 || | ||
| 373 | !((ios.timing == MMC_TIMING_MMC_HS200) || | ||
| 374 | (ios.timing == MMC_TIMING_UHS_SDR104))) | ||
| 375 | return 0; | ||
| 376 | |||
| 377 | if ((opcode == MMC_SEND_TUNING_BLOCK_HS200) && | ||
| 378 | (mmc->ios.bus_width == MMC_BUS_WIDTH_8)) { | ||
| 379 | tuning_block_pattern = tuning_block_128; | ||
| 380 | size = sizeof(tuning_block_128); | ||
| 381 | } | ||
| 382 | |||
| 383 | data_buf = kmalloc(size, GFP_KERNEL); | ||
| 384 | if (!data_buf) | ||
| 385 | return -ENOMEM; | ||
| 386 | |||
| 387 | retry: | ||
| 388 | /* First of all reset the tuning block */ | ||
| 389 | rc = msm_init_cm_dll(host); | ||
| 390 | if (rc) | ||
| 391 | goto out; | ||
| 392 | |||
| 393 | phase = 0; | ||
| 394 | do { | ||
| 395 | struct mmc_command cmd = { 0 }; | ||
| 396 | struct mmc_data data = { 0 }; | ||
| 397 | struct mmc_request mrq = { | ||
| 398 | .cmd = &cmd, | ||
| 399 | .data = &data | ||
| 400 | }; | ||
| 401 | struct scatterlist sg; | ||
| 402 | |||
| 403 | /* Set the phase in delay line hw block */ | ||
| 404 | rc = msm_config_cm_dll_phase(host, phase); | ||
| 405 | if (rc) | ||
| 406 | goto out; | ||
| 407 | |||
| 408 | cmd.opcode = opcode; | ||
| 409 | cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC; | ||
| 410 | |||
| 411 | data.blksz = size; | ||
| 412 | data.blocks = 1; | ||
| 413 | data.flags = MMC_DATA_READ; | ||
| 414 | data.timeout_ns = NSEC_PER_SEC; /* 1 second */ | ||
| 415 | |||
| 416 | data.sg = &sg; | ||
| 417 | data.sg_len = 1; | ||
| 418 | sg_init_one(&sg, data_buf, size); | ||
| 419 | memset(data_buf, 0, size); | ||
| 420 | mmc_wait_for_req(mmc, &mrq); | ||
| 421 | |||
| 422 | if (!cmd.error && !data.error && | ||
| 423 | !memcmp(data_buf, tuning_block_pattern, size)) { | ||
| 424 | /* Tuning is successful at this tuning point */ | ||
| 425 | tuned_phases[tuned_phase_cnt++] = phase; | ||
| 426 | dev_dbg(mmc_dev(mmc), "%s: Found good phase = %d\n", | ||
| 427 | mmc_hostname(mmc), phase); | ||
| 428 | } | ||
| 429 | } while (++phase < ARRAY_SIZE(tuned_phases)); | ||
| 430 | |||
| 431 | if (tuned_phase_cnt) { | ||
| 432 | rc = msm_find_most_appropriate_phase(host, tuned_phases, | ||
| 433 | tuned_phase_cnt); | ||
| 434 | if (rc < 0) | ||
| 435 | goto out; | ||
| 436 | else | ||
| 437 | phase = rc; | ||
| 438 | |||
| 439 | /* | ||
| 440 | * Finally set the selected phase in delay | ||
| 441 | * line hw block. | ||
| 442 | */ | ||
| 443 | rc = msm_config_cm_dll_phase(host, phase); | ||
| 444 | if (rc) | ||
| 445 | goto out; | ||
| 446 | dev_dbg(mmc_dev(mmc), "%s: Setting the tuning phase to %d\n", | ||
| 447 | mmc_hostname(mmc), phase); | ||
| 448 | } else { | ||
| 449 | if (--tuning_seq_cnt) | ||
| 450 | goto retry; | ||
| 451 | /* Tuning failed */ | ||
| 452 | dev_dbg(mmc_dev(mmc), "%s: No tuning point found\n", | ||
| 453 | mmc_hostname(mmc)); | ||
| 454 | rc = -EIO; | ||
| 455 | } | ||
| 456 | |||
| 457 | out: | ||
| 458 | kfree(data_buf); | ||
| 459 | return rc; | ||
| 460 | } | ||
| 461 | |||
| 52 | static const struct of_device_id sdhci_msm_dt_match[] = { | 462 | static const struct of_device_id sdhci_msm_dt_match[] = { |
| 53 | { .compatible = "qcom,sdhci-msm-v4" }, | 463 | { .compatible = "qcom,sdhci-msm-v4" }, |
| 54 | {}, | 464 | {}, |
