Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc |
| 4 | * Copyright 2019 NXP Semiconductors |
| 5 | * Andy Fleming |
| 6 | * Yangbo Lu <yangbo.lu@nxp.com> |
| 7 | * |
| 8 | * Based vaguely on the pxa mmc code: |
| 9 | * (C) Copyright 2003 |
| 10 | * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net |
| 11 | */ |
| 12 | |
| 13 | #include <config.h> |
| 14 | #include <common.h> |
| 15 | #include <command.h> |
| 16 | #include <clk.h> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 17 | #include <cpu_func.h> |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 18 | #include <errno.h> |
| 19 | #include <hwconfig.h> |
| 20 | #include <mmc.h> |
| 21 | #include <part.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 22 | #include <dm/device_compat.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 23 | #include <linux/err.h> |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 24 | #include <power/regulator.h> |
| 25 | #include <malloc.h> |
| 26 | #include <fsl_esdhc_imx.h> |
| 27 | #include <fdt_support.h> |
| 28 | #include <asm/io.h> |
| 29 | #include <dm.h> |
| 30 | #include <asm-generic/gpio.h> |
| 31 | #include <dm/pinctrl.h> |
| 32 | |
| 33 | #if !CONFIG_IS_ENABLED(BLK) |
| 34 | #include "mmc_private.h" |
| 35 | #endif |
| 36 | |
| 37 | DECLARE_GLOBAL_DATA_PTR; |
| 38 | |
| 39 | #define SDHCI_IRQ_EN_BITS (IRQSTATEN_CC | IRQSTATEN_TC | \ |
| 40 | IRQSTATEN_CINT | \ |
| 41 | IRQSTATEN_CTOE | IRQSTATEN_CCE | IRQSTATEN_CEBE | \ |
| 42 | IRQSTATEN_CIE | IRQSTATEN_DTOE | IRQSTATEN_DCE | \ |
| 43 | IRQSTATEN_DEBE | IRQSTATEN_BRR | IRQSTATEN_BWR | \ |
| 44 | IRQSTATEN_DINT) |
| 45 | #define MAX_TUNING_LOOP 40 |
| 46 | #define ESDHC_DRIVER_STAGE_VALUE 0xffffffff |
| 47 | |
| 48 | struct fsl_esdhc { |
| 49 | uint dsaddr; /* SDMA system address register */ |
| 50 | uint blkattr; /* Block attributes register */ |
| 51 | uint cmdarg; /* Command argument register */ |
| 52 | uint xfertyp; /* Transfer type register */ |
| 53 | uint cmdrsp0; /* Command response 0 register */ |
| 54 | uint cmdrsp1; /* Command response 1 register */ |
| 55 | uint cmdrsp2; /* Command response 2 register */ |
| 56 | uint cmdrsp3; /* Command response 3 register */ |
| 57 | uint datport; /* Buffer data port register */ |
| 58 | uint prsstat; /* Present state register */ |
| 59 | uint proctl; /* Protocol control register */ |
| 60 | uint sysctl; /* System Control Register */ |
| 61 | uint irqstat; /* Interrupt status register */ |
| 62 | uint irqstaten; /* Interrupt status enable register */ |
| 63 | uint irqsigen; /* Interrupt signal enable register */ |
| 64 | uint autoc12err; /* Auto CMD error status register */ |
| 65 | uint hostcapblt; /* Host controller capabilities register */ |
| 66 | uint wml; /* Watermark level register */ |
| 67 | uint mixctrl; /* For USDHC */ |
| 68 | char reserved1[4]; /* reserved */ |
| 69 | uint fevt; /* Force event register */ |
| 70 | uint admaes; /* ADMA error status register */ |
| 71 | uint adsaddr; /* ADMA system address register */ |
| 72 | char reserved2[4]; |
| 73 | uint dllctrl; |
| 74 | uint dllstat; |
| 75 | uint clktunectrlstatus; |
| 76 | char reserved3[4]; |
| 77 | uint strobe_dllctrl; |
| 78 | uint strobe_dllstat; |
| 79 | char reserved4[72]; |
| 80 | uint vendorspec; |
| 81 | uint mmcboot; |
| 82 | uint vendorspec2; |
Giulio Benetti | 6a63a87 | 2020-01-10 15:51:46 +0100 | [diff] [blame] | 83 | uint tuning_ctrl; /* on i.MX6/7/8/RT */ |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 84 | char reserved5[44]; |
| 85 | uint hostver; /* Host controller version register */ |
| 86 | char reserved6[4]; /* reserved */ |
| 87 | uint dmaerraddr; /* DMA error address register */ |
| 88 | char reserved7[4]; /* reserved */ |
| 89 | uint dmaerrattr; /* DMA error attribute register */ |
| 90 | char reserved8[4]; /* reserved */ |
| 91 | uint hostcapblt2; /* Host controller capabilities register 2 */ |
| 92 | char reserved9[8]; /* reserved */ |
| 93 | uint tcr; /* Tuning control register */ |
| 94 | char reserved10[28]; /* reserved */ |
| 95 | uint sddirctl; /* SD direction control register */ |
| 96 | char reserved11[712];/* reserved */ |
| 97 | uint scr; /* eSDHC control register */ |
| 98 | }; |
| 99 | |
| 100 | struct fsl_esdhc_plat { |
| 101 | struct mmc_config cfg; |
| 102 | struct mmc mmc; |
| 103 | }; |
| 104 | |
| 105 | struct esdhc_soc_data { |
| 106 | u32 flags; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | /** |
| 110 | * struct fsl_esdhc_priv |
| 111 | * |
| 112 | * @esdhc_regs: registers of the sdhc controller |
| 113 | * @sdhc_clk: Current clk of the sdhc controller |
| 114 | * @bus_width: bus width, 1bit, 4bit or 8bit |
| 115 | * @cfg: mmc config |
| 116 | * @mmc: mmc |
| 117 | * Following is used when Driver Model is enabled for MMC |
| 118 | * @dev: pointer for the device |
| 119 | * @non_removable: 0: removable; 1: non-removable |
Fabio Estevam | 29230f3 | 2020-01-06 20:11:27 -0300 | [diff] [blame] | 120 | * @broken_cd: 0: use GPIO for card detect; 1: Do not use GPIO for card detect |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 121 | * @wp_enable: 1: enable checking wp; 0: no check |
| 122 | * @vs18_enable: 1: use 1.8V voltage; 0: use 3.3V |
| 123 | * @flags: ESDHC_FLAG_xx in include/fsl_esdhc_imx.h |
| 124 | * @caps: controller capabilities |
| 125 | * @tuning_step: tuning step setting in tuning_ctrl register |
| 126 | * @start_tuning_tap: the start point for tuning in tuning_ctrl register |
| 127 | * @strobe_dll_delay_target: settings in strobe_dllctrl |
| 128 | * @signal_voltage: indicating the current voltage |
| 129 | * @cd_gpio: gpio for card detection |
| 130 | * @wp_gpio: gpio for write protection |
| 131 | */ |
| 132 | struct fsl_esdhc_priv { |
| 133 | struct fsl_esdhc *esdhc_regs; |
| 134 | unsigned int sdhc_clk; |
| 135 | struct clk per_clk; |
| 136 | unsigned int clock; |
| 137 | unsigned int mode; |
| 138 | unsigned int bus_width; |
| 139 | #if !CONFIG_IS_ENABLED(BLK) |
| 140 | struct mmc *mmc; |
| 141 | #endif |
| 142 | struct udevice *dev; |
| 143 | int non_removable; |
Fabio Estevam | 29230f3 | 2020-01-06 20:11:27 -0300 | [diff] [blame] | 144 | int broken_cd; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 145 | int wp_enable; |
| 146 | int vs18_enable; |
| 147 | u32 flags; |
| 148 | u32 caps; |
| 149 | u32 tuning_step; |
| 150 | u32 tuning_start_tap; |
| 151 | u32 strobe_dll_delay_target; |
| 152 | u32 signal_voltage; |
Ye Li | 8277171 | 2019-07-11 03:29:02 +0000 | [diff] [blame] | 153 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 154 | struct udevice *vqmmc_dev; |
| 155 | struct udevice *vmmc_dev; |
| 156 | #endif |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 157 | #if CONFIG_IS_ENABLED(DM_GPIO) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 158 | struct gpio_desc cd_gpio; |
| 159 | struct gpio_desc wp_gpio; |
| 160 | #endif |
| 161 | }; |
| 162 | |
| 163 | /* Return the XFERTYP flags for a given command and data packet */ |
| 164 | static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) |
| 165 | { |
| 166 | uint xfertyp = 0; |
| 167 | |
| 168 | if (data) { |
| 169 | xfertyp |= XFERTYP_DPSEL; |
| 170 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 171 | xfertyp |= XFERTYP_DMAEN; |
| 172 | #endif |
| 173 | if (data->blocks > 1) { |
| 174 | xfertyp |= XFERTYP_MSBSEL; |
| 175 | xfertyp |= XFERTYP_BCEN; |
| 176 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 177 | xfertyp |= XFERTYP_AC12EN; |
| 178 | #endif |
| 179 | } |
| 180 | |
| 181 | if (data->flags & MMC_DATA_READ) |
| 182 | xfertyp |= XFERTYP_DTDSEL; |
| 183 | } |
| 184 | |
| 185 | if (cmd->resp_type & MMC_RSP_CRC) |
| 186 | xfertyp |= XFERTYP_CCCEN; |
| 187 | if (cmd->resp_type & MMC_RSP_OPCODE) |
| 188 | xfertyp |= XFERTYP_CICEN; |
| 189 | if (cmd->resp_type & MMC_RSP_136) |
| 190 | xfertyp |= XFERTYP_RSPTYP_136; |
| 191 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 192 | xfertyp |= XFERTYP_RSPTYP_48_BUSY; |
| 193 | else if (cmd->resp_type & MMC_RSP_PRESENT) |
| 194 | xfertyp |= XFERTYP_RSPTYP_48; |
| 195 | |
| 196 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 197 | xfertyp |= XFERTYP_CMDTYP_ABORT; |
| 198 | |
| 199 | return XFERTYP_CMD(cmd->cmdidx) | xfertyp; |
| 200 | } |
| 201 | |
| 202 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 203 | /* |
| 204 | * PIO Read/Write Mode reduce the performace as DMA is not used in this mode. |
| 205 | */ |
| 206 | static void esdhc_pio_read_write(struct fsl_esdhc_priv *priv, |
| 207 | struct mmc_data *data) |
| 208 | { |
| 209 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 210 | uint blocks; |
| 211 | char *buffer; |
| 212 | uint databuf; |
| 213 | uint size; |
| 214 | uint irqstat; |
| 215 | ulong start; |
| 216 | |
| 217 | if (data->flags & MMC_DATA_READ) { |
| 218 | blocks = data->blocks; |
| 219 | buffer = data->dest; |
| 220 | while (blocks) { |
| 221 | start = get_timer(0); |
| 222 | size = data->blocksize; |
| 223 | irqstat = esdhc_read32(®s->irqstat); |
| 224 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BREN)) { |
| 225 | if (get_timer(start) > PIO_TIMEOUT) { |
| 226 | printf("\nData Read Failed in PIO Mode."); |
| 227 | return; |
| 228 | } |
| 229 | } |
| 230 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 231 | udelay(100); /* Wait before last byte transfer complete */ |
| 232 | irqstat = esdhc_read32(®s->irqstat); |
| 233 | databuf = in_le32(®s->datport); |
| 234 | *((uint *)buffer) = databuf; |
| 235 | buffer += 4; |
| 236 | size -= 4; |
| 237 | } |
| 238 | blocks--; |
| 239 | } |
| 240 | } else { |
| 241 | blocks = data->blocks; |
| 242 | buffer = (char *)data->src; |
| 243 | while (blocks) { |
| 244 | start = get_timer(0); |
| 245 | size = data->blocksize; |
| 246 | irqstat = esdhc_read32(®s->irqstat); |
| 247 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BWEN)) { |
| 248 | if (get_timer(start) > PIO_TIMEOUT) { |
| 249 | printf("\nData Write Failed in PIO Mode."); |
| 250 | return; |
| 251 | } |
| 252 | } |
| 253 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 254 | udelay(100); /* Wait before last byte transfer complete */ |
| 255 | databuf = *((uint *)buffer); |
| 256 | buffer += 4; |
| 257 | size -= 4; |
| 258 | irqstat = esdhc_read32(®s->irqstat); |
| 259 | out_le32(®s->datport, databuf); |
| 260 | } |
| 261 | blocks--; |
| 262 | } |
| 263 | } |
| 264 | } |
| 265 | #endif |
| 266 | |
| 267 | static int esdhc_setup_data(struct fsl_esdhc_priv *priv, struct mmc *mmc, |
| 268 | struct mmc_data *data) |
| 269 | { |
| 270 | int timeout; |
| 271 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Yangbo Lu | 5053da2 | 2019-06-21 11:42:30 +0800 | [diff] [blame] | 272 | #if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 273 | dma_addr_t addr; |
| 274 | #endif |
| 275 | uint wml_value; |
| 276 | |
| 277 | wml_value = data->blocksize/4; |
| 278 | |
| 279 | if (data->flags & MMC_DATA_READ) { |
| 280 | if (wml_value > WML_RD_WML_MAX) |
| 281 | wml_value = WML_RD_WML_MAX_VAL; |
| 282 | |
| 283 | esdhc_clrsetbits32(®s->wml, WML_RD_WML_MASK, wml_value); |
| 284 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Yangbo Lu | 5053da2 | 2019-06-21 11:42:30 +0800 | [diff] [blame] | 285 | #if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 286 | addr = virt_to_phys((void *)(data->dest)); |
| 287 | if (upper_32_bits(addr)) |
| 288 | printf("Error found for upper 32 bits\n"); |
| 289 | else |
| 290 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 291 | #else |
| 292 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
| 293 | #endif |
| 294 | #endif |
| 295 | } else { |
| 296 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 297 | flush_dcache_range((ulong)data->src, |
| 298 | (ulong)data->src+data->blocks |
| 299 | *data->blocksize); |
| 300 | #endif |
| 301 | if (wml_value > WML_WR_WML_MAX) |
| 302 | wml_value = WML_WR_WML_MAX_VAL; |
| 303 | if (priv->wp_enable) { |
| 304 | if ((esdhc_read32(®s->prsstat) & |
| 305 | PRSSTAT_WPSPL) == 0) { |
| 306 | printf("\nThe SD card is locked. Can not write to a locked card.\n\n"); |
| 307 | return -ETIMEDOUT; |
| 308 | } |
| 309 | } else { |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 310 | #if CONFIG_IS_ENABLED(DM_GPIO) |
| 311 | if (dm_gpio_is_valid(&priv->wp_gpio) && |
| 312 | dm_gpio_get_value(&priv->wp_gpio)) { |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 313 | printf("\nThe SD card is locked. Can not write to a locked card.\n\n"); |
| 314 | return -ETIMEDOUT; |
| 315 | } |
| 316 | #endif |
| 317 | } |
| 318 | |
| 319 | esdhc_clrsetbits32(®s->wml, WML_WR_WML_MASK, |
| 320 | wml_value << 16); |
| 321 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Yangbo Lu | 5053da2 | 2019-06-21 11:42:30 +0800 | [diff] [blame] | 322 | #if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 323 | addr = virt_to_phys((void *)(data->src)); |
| 324 | if (upper_32_bits(addr)) |
| 325 | printf("Error found for upper 32 bits\n"); |
| 326 | else |
| 327 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 328 | #else |
| 329 | esdhc_write32(®s->dsaddr, (u32)data->src); |
| 330 | #endif |
| 331 | #endif |
| 332 | } |
| 333 | |
| 334 | esdhc_write32(®s->blkattr, data->blocks << 16 | data->blocksize); |
| 335 | |
| 336 | /* Calculate the timeout period for data transactions */ |
| 337 | /* |
| 338 | * 1)Timeout period = (2^(timeout+13)) SD Clock cycles |
| 339 | * 2)Timeout period should be minimum 0.250sec as per SD Card spec |
| 340 | * So, Number of SD Clock cycles for 0.25sec should be minimum |
| 341 | * (SD Clock/sec * 0.25 sec) SD Clock cycles |
| 342 | * = (mmc->clock * 1/4) SD Clock cycles |
| 343 | * As 1) >= 2) |
| 344 | * => (2^(timeout+13)) >= mmc->clock * 1/4 |
| 345 | * Taking log2 both the sides |
| 346 | * => timeout + 13 >= log2(mmc->clock/4) |
| 347 | * Rounding up to next power of 2 |
| 348 | * => timeout + 13 = log2(mmc->clock/4) + 1 |
| 349 | * => timeout + 13 = fls(mmc->clock/4) |
| 350 | * |
| 351 | * However, the MMC spec "It is strongly recommended for hosts to |
| 352 | * implement more than 500ms timeout value even if the card |
| 353 | * indicates the 250ms maximum busy length." Even the previous |
| 354 | * value of 300ms is known to be insufficient for some cards. |
| 355 | * So, we use |
| 356 | * => timeout + 13 = fls(mmc->clock/2) |
| 357 | */ |
| 358 | timeout = fls(mmc->clock/2); |
| 359 | timeout -= 13; |
| 360 | |
| 361 | if (timeout > 14) |
| 362 | timeout = 14; |
| 363 | |
| 364 | if (timeout < 0) |
| 365 | timeout = 0; |
| 366 | |
| 367 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC_A001 |
| 368 | if ((timeout == 4) || (timeout == 8) || (timeout == 12)) |
| 369 | timeout++; |
| 370 | #endif |
| 371 | |
| 372 | #ifdef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE |
| 373 | timeout = 0xE; |
| 374 | #endif |
| 375 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16); |
| 376 | |
| 377 | return 0; |
| 378 | } |
| 379 | |
| 380 | static void check_and_invalidate_dcache_range |
| 381 | (struct mmc_cmd *cmd, |
| 382 | struct mmc_data *data) { |
| 383 | unsigned start = 0; |
| 384 | unsigned end = 0; |
| 385 | unsigned size = roundup(ARCH_DMA_MINALIGN, |
| 386 | data->blocks*data->blocksize); |
Yangbo Lu | 5053da2 | 2019-06-21 11:42:30 +0800 | [diff] [blame] | 387 | #if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 388 | dma_addr_t addr; |
| 389 | |
| 390 | addr = virt_to_phys((void *)(data->dest)); |
| 391 | if (upper_32_bits(addr)) |
| 392 | printf("Error found for upper 32 bits\n"); |
| 393 | else |
| 394 | start = lower_32_bits(addr); |
| 395 | #else |
| 396 | start = (unsigned)data->dest; |
| 397 | #endif |
| 398 | end = start + size; |
| 399 | invalidate_dcache_range(start, end); |
| 400 | } |
| 401 | |
| 402 | #ifdef CONFIG_MCF5441x |
| 403 | /* |
| 404 | * Swaps 32-bit words to little-endian byte order. |
| 405 | */ |
| 406 | static inline void sd_swap_dma_buff(struct mmc_data *data) |
| 407 | { |
| 408 | int i, size = data->blocksize >> 2; |
| 409 | u32 *buffer = (u32 *)data->dest; |
| 410 | u32 sw; |
| 411 | |
| 412 | while (data->blocks--) { |
| 413 | for (i = 0; i < size; i++) { |
| 414 | sw = __sw32(*buffer); |
| 415 | *buffer++ = sw; |
| 416 | } |
| 417 | } |
| 418 | } |
| 419 | #endif |
| 420 | |
| 421 | /* |
| 422 | * Sends a command out on the bus. Takes the mmc pointer, |
| 423 | * a command pointer, and an optional data pointer. |
| 424 | */ |
| 425 | static int esdhc_send_cmd_common(struct fsl_esdhc_priv *priv, struct mmc *mmc, |
| 426 | struct mmc_cmd *cmd, struct mmc_data *data) |
| 427 | { |
| 428 | int err = 0; |
| 429 | uint xfertyp; |
| 430 | uint irqstat; |
| 431 | u32 flags = IRQSTAT_CC | IRQSTAT_CTOE; |
| 432 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 433 | unsigned long start; |
| 434 | |
| 435 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 436 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 437 | return 0; |
| 438 | #endif |
| 439 | |
| 440 | esdhc_write32(®s->irqstat, -1); |
| 441 | |
| 442 | sync(); |
| 443 | |
| 444 | /* Wait for the bus to be idle */ |
| 445 | while ((esdhc_read32(®s->prsstat) & PRSSTAT_CICHB) || |
| 446 | (esdhc_read32(®s->prsstat) & PRSSTAT_CIDHB)) |
| 447 | ; |
| 448 | |
| 449 | while (esdhc_read32(®s->prsstat) & PRSSTAT_DLA) |
| 450 | ; |
| 451 | |
| 452 | /* Wait at least 8 SD clock cycles before the next command */ |
| 453 | /* |
| 454 | * Note: This is way more than 8 cycles, but 1ms seems to |
| 455 | * resolve timing issues with some cards |
| 456 | */ |
| 457 | udelay(1000); |
| 458 | |
| 459 | /* Set up for a data transfer if we have one */ |
| 460 | if (data) { |
| 461 | err = esdhc_setup_data(priv, mmc, data); |
| 462 | if(err) |
| 463 | return err; |
| 464 | |
| 465 | if (data->flags & MMC_DATA_READ) |
| 466 | check_and_invalidate_dcache_range(cmd, data); |
| 467 | } |
| 468 | |
| 469 | /* Figure out the transfer arguments */ |
| 470 | xfertyp = esdhc_xfertyp(cmd, data); |
| 471 | |
| 472 | /* Mask all irqs */ |
| 473 | esdhc_write32(®s->irqsigen, 0); |
| 474 | |
| 475 | /* Send the command */ |
| 476 | esdhc_write32(®s->cmdarg, cmd->cmdarg); |
| 477 | #if defined(CONFIG_FSL_USDHC) |
| 478 | esdhc_write32(®s->mixctrl, |
| 479 | (esdhc_read32(®s->mixctrl) & 0xFFFFFF80) | (xfertyp & 0x7F) |
| 480 | | (mmc->ddr_mode ? XFERTYP_DDREN : 0)); |
| 481 | esdhc_write32(®s->xfertyp, xfertyp & 0xFFFF0000); |
| 482 | #else |
| 483 | esdhc_write32(®s->xfertyp, xfertyp); |
| 484 | #endif |
| 485 | |
| 486 | if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK) || |
| 487 | (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)) |
| 488 | flags = IRQSTAT_BRR; |
| 489 | |
| 490 | /* Wait for the command to complete */ |
| 491 | start = get_timer(0); |
| 492 | while (!(esdhc_read32(®s->irqstat) & flags)) { |
| 493 | if (get_timer(start) > 1000) { |
| 494 | err = -ETIMEDOUT; |
| 495 | goto out; |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | irqstat = esdhc_read32(®s->irqstat); |
| 500 | |
| 501 | if (irqstat & CMD_ERR) { |
| 502 | err = -ECOMM; |
| 503 | goto out; |
| 504 | } |
| 505 | |
| 506 | if (irqstat & IRQSTAT_CTOE) { |
| 507 | err = -ETIMEDOUT; |
| 508 | goto out; |
| 509 | } |
| 510 | |
| 511 | /* Switch voltage to 1.8V if CMD11 succeeded */ |
| 512 | if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V) { |
| 513 | esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 514 | |
| 515 | printf("Run CMD11 1.8V switch\n"); |
| 516 | /* Sleep for 5 ms - max time for card to switch to 1.8V */ |
| 517 | udelay(5000); |
| 518 | } |
| 519 | |
| 520 | /* Workaround for ESDHC errata ENGcm03648 */ |
| 521 | if (!data && (cmd->resp_type & MMC_RSP_BUSY)) { |
Peng Fan | 356f782 | 2019-07-10 09:35:30 +0000 | [diff] [blame] | 522 | int timeout = 50000; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 523 | |
Peng Fan | 356f782 | 2019-07-10 09:35:30 +0000 | [diff] [blame] | 524 | /* Poll on DATA0 line for cmd with busy signal for 5000 ms */ |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 525 | while (timeout > 0 && !(esdhc_read32(®s->prsstat) & |
| 526 | PRSSTAT_DAT0)) { |
| 527 | udelay(100); |
| 528 | timeout--; |
| 529 | } |
| 530 | |
| 531 | if (timeout <= 0) { |
| 532 | printf("Timeout waiting for DAT0 to go high!\n"); |
| 533 | err = -ETIMEDOUT; |
| 534 | goto out; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | /* Copy the response to the response buffer */ |
| 539 | if (cmd->resp_type & MMC_RSP_136) { |
| 540 | u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0; |
| 541 | |
| 542 | cmdrsp3 = esdhc_read32(®s->cmdrsp3); |
| 543 | cmdrsp2 = esdhc_read32(®s->cmdrsp2); |
| 544 | cmdrsp1 = esdhc_read32(®s->cmdrsp1); |
| 545 | cmdrsp0 = esdhc_read32(®s->cmdrsp0); |
| 546 | cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24); |
| 547 | cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24); |
| 548 | cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24); |
| 549 | cmd->response[3] = (cmdrsp0 << 8); |
| 550 | } else |
| 551 | cmd->response[0] = esdhc_read32(®s->cmdrsp0); |
| 552 | |
| 553 | /* Wait until all of the blocks are transferred */ |
| 554 | if (data) { |
| 555 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 556 | esdhc_pio_read_write(priv, data); |
| 557 | #else |
| 558 | flags = DATA_COMPLETE; |
| 559 | if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK) || |
| 560 | (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)) { |
| 561 | flags = IRQSTAT_BRR; |
| 562 | } |
| 563 | |
| 564 | do { |
| 565 | irqstat = esdhc_read32(®s->irqstat); |
| 566 | |
| 567 | if (irqstat & IRQSTAT_DTOE) { |
| 568 | err = -ETIMEDOUT; |
| 569 | goto out; |
| 570 | } |
| 571 | |
| 572 | if (irqstat & DATA_ERR) { |
| 573 | err = -ECOMM; |
| 574 | goto out; |
| 575 | } |
| 576 | } while ((irqstat & flags) != flags); |
| 577 | |
| 578 | /* |
| 579 | * Need invalidate the dcache here again to avoid any |
| 580 | * cache-fill during the DMA operations such as the |
| 581 | * speculative pre-fetching etc. |
| 582 | */ |
| 583 | if (data->flags & MMC_DATA_READ) { |
| 584 | check_and_invalidate_dcache_range(cmd, data); |
| 585 | #ifdef CONFIG_MCF5441x |
| 586 | sd_swap_dma_buff(data); |
| 587 | #endif |
| 588 | } |
| 589 | #endif |
| 590 | } |
| 591 | |
| 592 | out: |
| 593 | /* Reset CMD and DATA portions on error */ |
| 594 | if (err) { |
| 595 | esdhc_write32(®s->sysctl, esdhc_read32(®s->sysctl) | |
| 596 | SYSCTL_RSTC); |
| 597 | while (esdhc_read32(®s->sysctl) & SYSCTL_RSTC) |
| 598 | ; |
| 599 | |
| 600 | if (data) { |
| 601 | esdhc_write32(®s->sysctl, |
| 602 | esdhc_read32(®s->sysctl) | |
| 603 | SYSCTL_RSTD); |
| 604 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTD)) |
| 605 | ; |
| 606 | } |
| 607 | |
| 608 | /* If this was CMD11, then notify that power cycle is needed */ |
| 609 | if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V) |
| 610 | printf("CMD11 to switch to 1.8V mode failed, card requires power cycle.\n"); |
| 611 | } |
| 612 | |
| 613 | esdhc_write32(®s->irqstat, -1); |
| 614 | |
| 615 | return err; |
| 616 | } |
| 617 | |
| 618 | static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock) |
| 619 | { |
| 620 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 621 | int div = 1; |
| 622 | #ifdef ARCH_MXC |
| 623 | #ifdef CONFIG_MX53 |
| 624 | /* For i.MX53 eSDHCv3, SYSCTL.SDCLKFS may not be set to 0. */ |
| 625 | int pre_div = (regs == (struct fsl_esdhc *)MMC_SDHC3_BASE_ADDR) ? 2 : 1; |
| 626 | #else |
| 627 | int pre_div = 1; |
| 628 | #endif |
| 629 | #else |
| 630 | int pre_div = 2; |
| 631 | #endif |
| 632 | int ddr_pre_div = mmc->ddr_mode ? 2 : 1; |
| 633 | int sdhc_clk = priv->sdhc_clk; |
| 634 | uint clk; |
| 635 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 636 | while (sdhc_clk / (16 * pre_div * ddr_pre_div) > clock && pre_div < 256) |
| 637 | pre_div *= 2; |
| 638 | |
| 639 | while (sdhc_clk / (div * pre_div * ddr_pre_div) > clock && div < 16) |
| 640 | div++; |
| 641 | |
| 642 | pre_div >>= 1; |
| 643 | div -= 1; |
| 644 | |
| 645 | clk = (pre_div << 8) | (div << 4); |
| 646 | |
| 647 | #ifdef CONFIG_FSL_USDHC |
| 648 | esdhc_clrbits32(®s->vendorspec, VENDORSPEC_CKEN); |
| 649 | #else |
| 650 | esdhc_clrbits32(®s->sysctl, SYSCTL_CKEN); |
| 651 | #endif |
| 652 | |
| 653 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_CLOCK_MASK, clk); |
| 654 | |
| 655 | udelay(10000); |
| 656 | |
| 657 | #ifdef CONFIG_FSL_USDHC |
| 658 | esdhc_setbits32(®s->vendorspec, VENDORSPEC_PEREN | VENDORSPEC_CKEN); |
| 659 | #else |
| 660 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_CKEN); |
| 661 | #endif |
| 662 | |
| 663 | priv->clock = clock; |
| 664 | } |
| 665 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 666 | #ifdef MMC_SUPPORTS_TUNING |
| 667 | static int esdhc_change_pinstate(struct udevice *dev) |
| 668 | { |
| 669 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 670 | int ret; |
| 671 | |
| 672 | switch (priv->mode) { |
| 673 | case UHS_SDR50: |
| 674 | case UHS_DDR50: |
| 675 | ret = pinctrl_select_state(dev, "state_100mhz"); |
| 676 | break; |
| 677 | case UHS_SDR104: |
| 678 | case MMC_HS_200: |
| 679 | case MMC_HS_400: |
Peng Fan | e9c2255 | 2019-07-10 09:35:26 +0000 | [diff] [blame] | 680 | case MMC_HS_400_ES: |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 681 | ret = pinctrl_select_state(dev, "state_200mhz"); |
| 682 | break; |
| 683 | default: |
| 684 | ret = pinctrl_select_state(dev, "default"); |
| 685 | break; |
| 686 | } |
| 687 | |
| 688 | if (ret) |
| 689 | printf("%s %d error\n", __func__, priv->mode); |
| 690 | |
| 691 | return ret; |
| 692 | } |
| 693 | |
| 694 | static void esdhc_reset_tuning(struct mmc *mmc) |
| 695 | { |
| 696 | struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev); |
| 697 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 698 | |
| 699 | if (priv->flags & ESDHC_FLAG_USDHC) { |
| 700 | if (priv->flags & ESDHC_FLAG_STD_TUNING) { |
| 701 | esdhc_clrbits32(®s->autoc12err, |
| 702 | MIX_CTRL_SMPCLK_SEL | |
| 703 | MIX_CTRL_EXE_TUNE); |
| 704 | } |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | static void esdhc_set_strobe_dll(struct mmc *mmc) |
| 709 | { |
| 710 | struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev); |
| 711 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 712 | u32 val; |
| 713 | |
| 714 | if (priv->clock > ESDHC_STROBE_DLL_CLK_FREQ) { |
| 715 | writel(ESDHC_STROBE_DLL_CTRL_RESET, ®s->strobe_dllctrl); |
| 716 | |
| 717 | /* |
| 718 | * enable strobe dll ctrl and adjust the delay target |
| 719 | * for the uSDHC loopback read clock |
| 720 | */ |
| 721 | val = ESDHC_STROBE_DLL_CTRL_ENABLE | |
| 722 | (priv->strobe_dll_delay_target << |
| 723 | ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_SHIFT); |
| 724 | writel(val, ®s->strobe_dllctrl); |
| 725 | /* wait 1us to make sure strobe dll status register stable */ |
| 726 | mdelay(1); |
| 727 | val = readl(®s->strobe_dllstat); |
| 728 | if (!(val & ESDHC_STROBE_DLL_STS_REF_LOCK)) |
| 729 | pr_warn("HS400 strobe DLL status REF not lock!\n"); |
| 730 | if (!(val & ESDHC_STROBE_DLL_STS_SLV_LOCK)) |
| 731 | pr_warn("HS400 strobe DLL status SLV not lock!\n"); |
| 732 | } |
| 733 | } |
| 734 | |
| 735 | static int esdhc_set_timing(struct mmc *mmc) |
| 736 | { |
| 737 | struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev); |
| 738 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 739 | u32 mixctrl; |
| 740 | |
| 741 | mixctrl = readl(®s->mixctrl); |
| 742 | mixctrl &= ~(MIX_CTRL_DDREN | MIX_CTRL_HS400_EN); |
| 743 | |
| 744 | switch (mmc->selected_mode) { |
| 745 | case MMC_LEGACY: |
| 746 | case SD_LEGACY: |
| 747 | esdhc_reset_tuning(mmc); |
| 748 | writel(mixctrl, ®s->mixctrl); |
| 749 | break; |
| 750 | case MMC_HS_400: |
Peng Fan | e9c2255 | 2019-07-10 09:35:26 +0000 | [diff] [blame] | 751 | case MMC_HS_400_ES: |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 752 | mixctrl |= MIX_CTRL_DDREN | MIX_CTRL_HS400_EN; |
| 753 | writel(mixctrl, ®s->mixctrl); |
| 754 | esdhc_set_strobe_dll(mmc); |
| 755 | break; |
| 756 | case MMC_HS: |
| 757 | case MMC_HS_52: |
| 758 | case MMC_HS_200: |
| 759 | case SD_HS: |
| 760 | case UHS_SDR12: |
| 761 | case UHS_SDR25: |
| 762 | case UHS_SDR50: |
| 763 | case UHS_SDR104: |
| 764 | writel(mixctrl, ®s->mixctrl); |
| 765 | break; |
| 766 | case UHS_DDR50: |
| 767 | case MMC_DDR_52: |
| 768 | mixctrl |= MIX_CTRL_DDREN; |
| 769 | writel(mixctrl, ®s->mixctrl); |
| 770 | break; |
| 771 | default: |
| 772 | printf("Not supported %d\n", mmc->selected_mode); |
| 773 | return -EINVAL; |
| 774 | } |
| 775 | |
| 776 | priv->mode = mmc->selected_mode; |
| 777 | |
| 778 | return esdhc_change_pinstate(mmc->dev); |
| 779 | } |
| 780 | |
| 781 | static int esdhc_set_voltage(struct mmc *mmc) |
| 782 | { |
| 783 | struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev); |
| 784 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 785 | int ret; |
| 786 | |
| 787 | priv->signal_voltage = mmc->signal_voltage; |
| 788 | switch (mmc->signal_voltage) { |
| 789 | case MMC_SIGNAL_VOLTAGE_330: |
| 790 | if (priv->vs18_enable) |
| 791 | return -EIO; |
| 792 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
| 793 | if (!IS_ERR_OR_NULL(priv->vqmmc_dev)) { |
| 794 | ret = regulator_set_value(priv->vqmmc_dev, 3300000); |
| 795 | if (ret) { |
| 796 | printf("Setting to 3.3V error"); |
| 797 | return -EIO; |
| 798 | } |
| 799 | /* Wait for 5ms */ |
| 800 | mdelay(5); |
| 801 | } |
| 802 | #endif |
| 803 | |
| 804 | esdhc_clrbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 805 | if (!(esdhc_read32(®s->vendorspec) & |
| 806 | ESDHC_VENDORSPEC_VSELECT)) |
| 807 | return 0; |
| 808 | |
| 809 | return -EAGAIN; |
| 810 | case MMC_SIGNAL_VOLTAGE_180: |
| 811 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
| 812 | if (!IS_ERR_OR_NULL(priv->vqmmc_dev)) { |
| 813 | ret = regulator_set_value(priv->vqmmc_dev, 1800000); |
| 814 | if (ret) { |
| 815 | printf("Setting to 1.8V error"); |
| 816 | return -EIO; |
| 817 | } |
| 818 | } |
| 819 | #endif |
| 820 | esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 821 | if (esdhc_read32(®s->vendorspec) & ESDHC_VENDORSPEC_VSELECT) |
| 822 | return 0; |
| 823 | |
| 824 | return -EAGAIN; |
| 825 | case MMC_SIGNAL_VOLTAGE_120: |
| 826 | return -ENOTSUPP; |
| 827 | default: |
| 828 | return 0; |
| 829 | } |
| 830 | } |
| 831 | |
| 832 | static void esdhc_stop_tuning(struct mmc *mmc) |
| 833 | { |
| 834 | struct mmc_cmd cmd; |
| 835 | |
| 836 | cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION; |
| 837 | cmd.cmdarg = 0; |
| 838 | cmd.resp_type = MMC_RSP_R1b; |
| 839 | |
| 840 | dm_mmc_send_cmd(mmc->dev, &cmd, NULL); |
| 841 | } |
| 842 | |
| 843 | static int fsl_esdhc_execute_tuning(struct udevice *dev, uint32_t opcode) |
| 844 | { |
| 845 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 846 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 847 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 848 | struct mmc *mmc = &plat->mmc; |
| 849 | u32 irqstaten = readl(®s->irqstaten); |
| 850 | u32 irqsigen = readl(®s->irqsigen); |
| 851 | int i, ret = -ETIMEDOUT; |
| 852 | u32 val, mixctrl; |
| 853 | |
| 854 | /* clock tuning is not needed for upto 52MHz */ |
| 855 | if (mmc->clock <= 52000000) |
| 856 | return 0; |
| 857 | |
| 858 | /* This is readw/writew SDHCI_HOST_CONTROL2 when tuning */ |
| 859 | if (priv->flags & ESDHC_FLAG_STD_TUNING) { |
| 860 | val = readl(®s->autoc12err); |
| 861 | mixctrl = readl(®s->mixctrl); |
| 862 | val &= ~MIX_CTRL_SMPCLK_SEL; |
| 863 | mixctrl &= ~(MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN); |
| 864 | |
| 865 | val |= MIX_CTRL_EXE_TUNE; |
| 866 | mixctrl |= MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN; |
| 867 | |
| 868 | writel(val, ®s->autoc12err); |
| 869 | writel(mixctrl, ®s->mixctrl); |
| 870 | } |
| 871 | |
| 872 | /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE); */ |
| 873 | mixctrl = readl(®s->mixctrl); |
| 874 | mixctrl = MIX_CTRL_DTDSEL_READ | (mixctrl & ~MIX_CTRL_SDHCI_MASK); |
| 875 | writel(mixctrl, ®s->mixctrl); |
| 876 | |
| 877 | writel(IRQSTATEN_BRR, ®s->irqstaten); |
| 878 | writel(IRQSTATEN_BRR, ®s->irqsigen); |
| 879 | |
| 880 | /* |
| 881 | * Issue opcode repeatedly till Execute Tuning is set to 0 or the number |
| 882 | * of loops reaches 40 times. |
| 883 | */ |
| 884 | for (i = 0; i < MAX_TUNING_LOOP; i++) { |
| 885 | u32 ctrl; |
| 886 | |
| 887 | if (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200) { |
| 888 | if (mmc->bus_width == 8) |
| 889 | writel(0x7080, ®s->blkattr); |
| 890 | else if (mmc->bus_width == 4) |
| 891 | writel(0x7040, ®s->blkattr); |
| 892 | } else { |
| 893 | writel(0x7040, ®s->blkattr); |
| 894 | } |
| 895 | |
| 896 | /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE) */ |
| 897 | val = readl(®s->mixctrl); |
| 898 | val = MIX_CTRL_DTDSEL_READ | (val & ~MIX_CTRL_SDHCI_MASK); |
| 899 | writel(val, ®s->mixctrl); |
| 900 | |
| 901 | /* We are using STD tuning, no need to check return value */ |
| 902 | mmc_send_tuning(mmc, opcode, NULL); |
| 903 | |
| 904 | ctrl = readl(®s->autoc12err); |
| 905 | if ((!(ctrl & MIX_CTRL_EXE_TUNE)) && |
| 906 | (ctrl & MIX_CTRL_SMPCLK_SEL)) { |
| 907 | /* |
| 908 | * need to wait some time, make sure sd/mmc fininsh |
| 909 | * send out tuning data, otherwise, the sd/mmc can't |
| 910 | * response to any command when the card still out |
| 911 | * put the tuning data. |
| 912 | */ |
| 913 | mdelay(1); |
| 914 | ret = 0; |
| 915 | break; |
| 916 | } |
| 917 | |
| 918 | /* Add 1ms delay for SD and eMMC */ |
| 919 | mdelay(1); |
| 920 | } |
| 921 | |
| 922 | writel(irqstaten, ®s->irqstaten); |
| 923 | writel(irqsigen, ®s->irqsigen); |
| 924 | |
| 925 | esdhc_stop_tuning(mmc); |
| 926 | |
| 927 | return ret; |
| 928 | } |
| 929 | #endif |
| 930 | |
| 931 | static int esdhc_set_ios_common(struct fsl_esdhc_priv *priv, struct mmc *mmc) |
| 932 | { |
| 933 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 934 | int ret __maybe_unused; |
Peng Fan | 1d01c98 | 2019-11-04 17:14:15 +0800 | [diff] [blame] | 935 | u32 clock; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 936 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 937 | /* Set the clock speed */ |
Peng Fan | 1d01c98 | 2019-11-04 17:14:15 +0800 | [diff] [blame] | 938 | clock = mmc->clock; |
| 939 | if (clock < mmc->cfg->f_min) |
| 940 | clock = mmc->cfg->f_min; |
| 941 | |
| 942 | if (priv->clock != clock) |
| 943 | set_sysctl(priv, mmc, clock); |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 944 | |
| 945 | #ifdef MMC_SUPPORTS_TUNING |
| 946 | if (mmc->clk_disable) { |
| 947 | #ifdef CONFIG_FSL_USDHC |
| 948 | esdhc_clrbits32(®s->vendorspec, VENDORSPEC_CKEN); |
| 949 | #else |
| 950 | esdhc_clrbits32(®s->sysctl, SYSCTL_CKEN); |
| 951 | #endif |
| 952 | } else { |
| 953 | #ifdef CONFIG_FSL_USDHC |
| 954 | esdhc_setbits32(®s->vendorspec, VENDORSPEC_PEREN | |
| 955 | VENDORSPEC_CKEN); |
| 956 | #else |
| 957 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_CKEN); |
| 958 | #endif |
| 959 | } |
| 960 | |
| 961 | if (priv->mode != mmc->selected_mode) { |
| 962 | ret = esdhc_set_timing(mmc); |
| 963 | if (ret) { |
| 964 | printf("esdhc_set_timing error %d\n", ret); |
| 965 | return ret; |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | if (priv->signal_voltage != mmc->signal_voltage) { |
| 970 | ret = esdhc_set_voltage(mmc); |
| 971 | if (ret) { |
| 972 | printf("esdhc_set_voltage error %d\n", ret); |
| 973 | return ret; |
| 974 | } |
| 975 | } |
| 976 | #endif |
| 977 | |
| 978 | /* Set the bus width */ |
| 979 | esdhc_clrbits32(®s->proctl, PROCTL_DTW_4 | PROCTL_DTW_8); |
| 980 | |
| 981 | if (mmc->bus_width == 4) |
| 982 | esdhc_setbits32(®s->proctl, PROCTL_DTW_4); |
| 983 | else if (mmc->bus_width == 8) |
| 984 | esdhc_setbits32(®s->proctl, PROCTL_DTW_8); |
| 985 | |
| 986 | return 0; |
| 987 | } |
| 988 | |
| 989 | static int esdhc_init_common(struct fsl_esdhc_priv *priv, struct mmc *mmc) |
| 990 | { |
| 991 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 992 | ulong start; |
| 993 | |
| 994 | /* Reset the entire host controller */ |
| 995 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
| 996 | |
| 997 | /* Wait until the controller is available */ |
| 998 | start = get_timer(0); |
| 999 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA)) { |
| 1000 | if (get_timer(start) > 1000) |
| 1001 | return -ETIMEDOUT; |
| 1002 | } |
| 1003 | |
| 1004 | #if defined(CONFIG_FSL_USDHC) |
| 1005 | /* RSTA doesn't reset MMC_BOOT register, so manually reset it */ |
| 1006 | esdhc_write32(®s->mmcboot, 0x0); |
| 1007 | /* Reset MIX_CTRL and CLK_TUNE_CTRL_STATUS regs to 0 */ |
| 1008 | esdhc_write32(®s->mixctrl, 0x0); |
| 1009 | esdhc_write32(®s->clktunectrlstatus, 0x0); |
| 1010 | |
| 1011 | /* Put VEND_SPEC to default value */ |
| 1012 | if (priv->vs18_enable) |
| 1013 | esdhc_write32(®s->vendorspec, (VENDORSPEC_INIT | |
| 1014 | ESDHC_VENDORSPEC_VSELECT)); |
| 1015 | else |
| 1016 | esdhc_write32(®s->vendorspec, VENDORSPEC_INIT); |
| 1017 | |
| 1018 | /* Disable DLL_CTRL delay line */ |
| 1019 | esdhc_write32(®s->dllctrl, 0x0); |
| 1020 | #endif |
| 1021 | |
| 1022 | #ifndef ARCH_MXC |
| 1023 | /* Enable cache snooping */ |
| 1024 | esdhc_write32(®s->scr, 0x00000040); |
| 1025 | #endif |
| 1026 | |
| 1027 | #ifndef CONFIG_FSL_USDHC |
| 1028 | esdhc_setbits32(®s->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN); |
| 1029 | #else |
| 1030 | esdhc_setbits32(®s->vendorspec, VENDORSPEC_HCKEN | VENDORSPEC_IPGEN); |
| 1031 | #endif |
| 1032 | |
| 1033 | /* Set the initial clock speed */ |
| 1034 | mmc_set_clock(mmc, 400000, MMC_CLK_ENABLE); |
| 1035 | |
| 1036 | /* Disable the BRR and BWR bits in IRQSTAT */ |
| 1037 | esdhc_clrbits32(®s->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR); |
| 1038 | |
| 1039 | #ifdef CONFIG_MCF5441x |
| 1040 | esdhc_write32(®s->proctl, PROCTL_INIT | PROCTL_D3CD); |
| 1041 | #else |
| 1042 | /* Put the PROCTL reg back to the default */ |
| 1043 | esdhc_write32(®s->proctl, PROCTL_INIT); |
| 1044 | #endif |
| 1045 | |
| 1046 | /* Set timout to the maximum value */ |
| 1047 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16); |
| 1048 | |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
| 1052 | static int esdhc_getcd_common(struct fsl_esdhc_priv *priv) |
| 1053 | { |
| 1054 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 1055 | int timeout = 1000; |
| 1056 | |
| 1057 | #ifdef CONFIG_ESDHC_DETECT_QUIRK |
| 1058 | if (CONFIG_ESDHC_DETECT_QUIRK) |
| 1059 | return 1; |
| 1060 | #endif |
| 1061 | |
| 1062 | #if CONFIG_IS_ENABLED(DM_MMC) |
| 1063 | if (priv->non_removable) |
| 1064 | return 1; |
Fabio Estevam | 29230f3 | 2020-01-06 20:11:27 -0300 | [diff] [blame] | 1065 | |
| 1066 | if (priv->broken_cd) |
| 1067 | return 1; |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 1068 | #if CONFIG_IS_ENABLED(DM_GPIO) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1069 | if (dm_gpio_is_valid(&priv->cd_gpio)) |
| 1070 | return dm_gpio_get_value(&priv->cd_gpio); |
| 1071 | #endif |
| 1072 | #endif |
| 1073 | |
| 1074 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_CINS) && --timeout) |
| 1075 | udelay(1000); |
| 1076 | |
| 1077 | return timeout > 0; |
| 1078 | } |
| 1079 | |
| 1080 | static int esdhc_reset(struct fsl_esdhc *regs) |
| 1081 | { |
| 1082 | ulong start; |
| 1083 | |
| 1084 | /* reset the controller */ |
| 1085 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
| 1086 | |
| 1087 | /* hardware clears the bit when it is done */ |
| 1088 | start = get_timer(0); |
| 1089 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA)) { |
| 1090 | if (get_timer(start) > 100) { |
| 1091 | printf("MMC/SD: Reset never completed.\n"); |
| 1092 | return -ETIMEDOUT; |
| 1093 | } |
| 1094 | } |
| 1095 | |
| 1096 | return 0; |
| 1097 | } |
| 1098 | |
| 1099 | #if !CONFIG_IS_ENABLED(DM_MMC) |
| 1100 | static int esdhc_getcd(struct mmc *mmc) |
| 1101 | { |
| 1102 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 1103 | |
| 1104 | return esdhc_getcd_common(priv); |
| 1105 | } |
| 1106 | |
| 1107 | static int esdhc_init(struct mmc *mmc) |
| 1108 | { |
| 1109 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 1110 | |
| 1111 | return esdhc_init_common(priv, mmc); |
| 1112 | } |
| 1113 | |
| 1114 | static int esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, |
| 1115 | struct mmc_data *data) |
| 1116 | { |
| 1117 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 1118 | |
| 1119 | return esdhc_send_cmd_common(priv, mmc, cmd, data); |
| 1120 | } |
| 1121 | |
| 1122 | static int esdhc_set_ios(struct mmc *mmc) |
| 1123 | { |
| 1124 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 1125 | |
| 1126 | return esdhc_set_ios_common(priv, mmc); |
| 1127 | } |
| 1128 | |
| 1129 | static const struct mmc_ops esdhc_ops = { |
| 1130 | .getcd = esdhc_getcd, |
| 1131 | .init = esdhc_init, |
| 1132 | .send_cmd = esdhc_send_cmd, |
| 1133 | .set_ios = esdhc_set_ios, |
| 1134 | }; |
| 1135 | #endif |
| 1136 | |
| 1137 | static int fsl_esdhc_init(struct fsl_esdhc_priv *priv, |
| 1138 | struct fsl_esdhc_plat *plat) |
| 1139 | { |
| 1140 | struct mmc_config *cfg; |
| 1141 | struct fsl_esdhc *regs; |
| 1142 | u32 caps, voltage_caps; |
| 1143 | int ret; |
| 1144 | |
| 1145 | if (!priv) |
| 1146 | return -EINVAL; |
| 1147 | |
| 1148 | regs = priv->esdhc_regs; |
| 1149 | |
| 1150 | /* First reset the eSDHC controller */ |
| 1151 | ret = esdhc_reset(regs); |
| 1152 | if (ret) |
| 1153 | return ret; |
| 1154 | |
| 1155 | #ifdef CONFIG_MCF5441x |
| 1156 | /* ColdFire, using SDHC_DATA[3] for card detection */ |
| 1157 | esdhc_write32(®s->proctl, PROCTL_INIT | PROCTL_D3CD); |
| 1158 | #endif |
| 1159 | |
| 1160 | #ifndef CONFIG_FSL_USDHC |
| 1161 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_HCKEN |
| 1162 | | SYSCTL_IPGEN | SYSCTL_CKEN); |
| 1163 | /* Clearing tuning bits in case ROM has set it already */ |
| 1164 | esdhc_write32(®s->mixctrl, 0); |
| 1165 | esdhc_write32(®s->autoc12err, 0); |
| 1166 | esdhc_write32(®s->clktunectrlstatus, 0); |
| 1167 | #else |
| 1168 | esdhc_setbits32(®s->vendorspec, VENDORSPEC_PEREN | |
| 1169 | VENDORSPEC_HCKEN | VENDORSPEC_IPGEN | VENDORSPEC_CKEN); |
| 1170 | #endif |
| 1171 | |
| 1172 | if (priv->vs18_enable) |
| 1173 | esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 1174 | |
| 1175 | writel(SDHCI_IRQ_EN_BITS, ®s->irqstaten); |
| 1176 | cfg = &plat->cfg; |
| 1177 | #ifndef CONFIG_DM_MMC |
| 1178 | memset(cfg, '\0', sizeof(*cfg)); |
| 1179 | #endif |
| 1180 | |
| 1181 | voltage_caps = 0; |
| 1182 | caps = esdhc_read32(®s->hostcapblt); |
| 1183 | |
| 1184 | #ifdef CONFIG_MCF5441x |
| 1185 | /* |
| 1186 | * MCF5441x RM declares in more points that sdhc clock speed must |
| 1187 | * never exceed 25 Mhz. From this, the HS bit needs to be disabled |
| 1188 | * from host capabilities. |
| 1189 | */ |
| 1190 | caps &= ~ESDHC_HOSTCAPBLT_HSS; |
| 1191 | #endif |
| 1192 | |
| 1193 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135 |
| 1194 | caps = caps & ~(ESDHC_HOSTCAPBLT_SRS | |
| 1195 | ESDHC_HOSTCAPBLT_VS18 | ESDHC_HOSTCAPBLT_VS30); |
| 1196 | #endif |
| 1197 | |
| 1198 | /* T4240 host controller capabilities register should have VS33 bit */ |
| 1199 | #ifdef CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
| 1200 | caps = caps | ESDHC_HOSTCAPBLT_VS33; |
| 1201 | #endif |
| 1202 | |
| 1203 | if (caps & ESDHC_HOSTCAPBLT_VS18) |
| 1204 | voltage_caps |= MMC_VDD_165_195; |
| 1205 | if (caps & ESDHC_HOSTCAPBLT_VS30) |
| 1206 | voltage_caps |= MMC_VDD_29_30 | MMC_VDD_30_31; |
| 1207 | if (caps & ESDHC_HOSTCAPBLT_VS33) |
| 1208 | voltage_caps |= MMC_VDD_32_33 | MMC_VDD_33_34; |
| 1209 | |
| 1210 | cfg->name = "FSL_SDHC"; |
| 1211 | #if !CONFIG_IS_ENABLED(DM_MMC) |
| 1212 | cfg->ops = &esdhc_ops; |
| 1213 | #endif |
| 1214 | #ifdef CONFIG_SYS_SD_VOLTAGE |
| 1215 | cfg->voltages = CONFIG_SYS_SD_VOLTAGE; |
| 1216 | #else |
| 1217 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
| 1218 | #endif |
| 1219 | if ((cfg->voltages & voltage_caps) == 0) { |
| 1220 | printf("voltage not supported by controller\n"); |
| 1221 | return -1; |
| 1222 | } |
| 1223 | |
| 1224 | if (priv->bus_width == 8) |
| 1225 | cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT; |
| 1226 | else if (priv->bus_width == 4) |
| 1227 | cfg->host_caps = MMC_MODE_4BIT; |
| 1228 | |
| 1229 | cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT; |
| 1230 | #ifdef CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE |
| 1231 | cfg->host_caps |= MMC_MODE_DDR_52MHz; |
| 1232 | #endif |
| 1233 | |
| 1234 | if (priv->bus_width > 0) { |
| 1235 | if (priv->bus_width < 8) |
| 1236 | cfg->host_caps &= ~MMC_MODE_8BIT; |
| 1237 | if (priv->bus_width < 4) |
| 1238 | cfg->host_caps &= ~MMC_MODE_4BIT; |
| 1239 | } |
| 1240 | |
| 1241 | if (caps & ESDHC_HOSTCAPBLT_HSS) |
| 1242 | cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
| 1243 | |
| 1244 | #ifdef CONFIG_ESDHC_DETECT_8_BIT_QUIRK |
| 1245 | if (CONFIG_ESDHC_DETECT_8_BIT_QUIRK) |
| 1246 | cfg->host_caps &= ~MMC_MODE_8BIT; |
| 1247 | #endif |
| 1248 | |
| 1249 | cfg->host_caps |= priv->caps; |
| 1250 | |
| 1251 | cfg->f_min = 400000; |
| 1252 | cfg->f_max = min(priv->sdhc_clk, (u32)200000000); |
| 1253 | |
| 1254 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 1255 | |
| 1256 | writel(0, ®s->dllctrl); |
| 1257 | if (priv->flags & ESDHC_FLAG_USDHC) { |
| 1258 | if (priv->flags & ESDHC_FLAG_STD_TUNING) { |
| 1259 | u32 val = readl(®s->tuning_ctrl); |
| 1260 | |
| 1261 | val |= ESDHC_STD_TUNING_EN; |
| 1262 | val &= ~ESDHC_TUNING_START_TAP_MASK; |
| 1263 | val |= priv->tuning_start_tap; |
| 1264 | val &= ~ESDHC_TUNING_STEP_MASK; |
| 1265 | val |= (priv->tuning_step) << ESDHC_TUNING_STEP_SHIFT; |
| 1266 | writel(val, ®s->tuning_ctrl); |
| 1267 | } |
| 1268 | } |
| 1269 | |
| 1270 | return 0; |
| 1271 | } |
| 1272 | |
| 1273 | #if !CONFIG_IS_ENABLED(DM_MMC) |
| 1274 | static int fsl_esdhc_cfg_to_priv(struct fsl_esdhc_cfg *cfg, |
| 1275 | struct fsl_esdhc_priv *priv) |
| 1276 | { |
| 1277 | if (!cfg || !priv) |
| 1278 | return -EINVAL; |
| 1279 | |
| 1280 | priv->esdhc_regs = (struct fsl_esdhc *)(unsigned long)(cfg->esdhc_base); |
| 1281 | priv->bus_width = cfg->max_bus_width; |
| 1282 | priv->sdhc_clk = cfg->sdhc_clk; |
| 1283 | priv->wp_enable = cfg->wp_enable; |
| 1284 | priv->vs18_enable = cfg->vs18_enable; |
| 1285 | |
| 1286 | return 0; |
| 1287 | }; |
| 1288 | |
| 1289 | int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg) |
| 1290 | { |
| 1291 | struct fsl_esdhc_plat *plat; |
| 1292 | struct fsl_esdhc_priv *priv; |
| 1293 | struct mmc *mmc; |
| 1294 | int ret; |
| 1295 | |
| 1296 | if (!cfg) |
| 1297 | return -EINVAL; |
| 1298 | |
| 1299 | priv = calloc(sizeof(struct fsl_esdhc_priv), 1); |
| 1300 | if (!priv) |
| 1301 | return -ENOMEM; |
| 1302 | plat = calloc(sizeof(struct fsl_esdhc_plat), 1); |
| 1303 | if (!plat) { |
| 1304 | free(priv); |
| 1305 | return -ENOMEM; |
| 1306 | } |
| 1307 | |
| 1308 | ret = fsl_esdhc_cfg_to_priv(cfg, priv); |
| 1309 | if (ret) { |
| 1310 | debug("%s xlate failure\n", __func__); |
| 1311 | free(plat); |
| 1312 | free(priv); |
| 1313 | return ret; |
| 1314 | } |
| 1315 | |
| 1316 | ret = fsl_esdhc_init(priv, plat); |
| 1317 | if (ret) { |
| 1318 | debug("%s init failure\n", __func__); |
| 1319 | free(plat); |
| 1320 | free(priv); |
| 1321 | return ret; |
| 1322 | } |
| 1323 | |
| 1324 | mmc = mmc_create(&plat->cfg, priv); |
| 1325 | if (!mmc) |
| 1326 | return -EIO; |
| 1327 | |
| 1328 | priv->mmc = mmc; |
| 1329 | |
| 1330 | return 0; |
| 1331 | } |
| 1332 | |
| 1333 | int fsl_esdhc_mmc_init(bd_t *bis) |
| 1334 | { |
| 1335 | struct fsl_esdhc_cfg *cfg; |
| 1336 | |
| 1337 | cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1); |
| 1338 | cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR; |
| 1339 | cfg->sdhc_clk = gd->arch.sdhc_clk; |
| 1340 | return fsl_esdhc_initialize(bis, cfg); |
| 1341 | } |
| 1342 | #endif |
| 1343 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1344 | #ifdef CONFIG_OF_LIBFDT |
| 1345 | __weak int esdhc_status_fixup(void *blob, const char *compat) |
| 1346 | { |
| 1347 | #ifdef CONFIG_FSL_ESDHC_PIN_MUX |
| 1348 | if (!hwconfig("esdhc")) { |
| 1349 | do_fixup_by_compat(blob, compat, "status", "disabled", |
| 1350 | sizeof("disabled"), 1); |
| 1351 | return 1; |
| 1352 | } |
| 1353 | #endif |
| 1354 | return 0; |
| 1355 | } |
| 1356 | |
| 1357 | void fdt_fixup_esdhc(void *blob, bd_t *bd) |
| 1358 | { |
| 1359 | const char *compat = "fsl,esdhc"; |
| 1360 | |
| 1361 | if (esdhc_status_fixup(blob, compat)) |
| 1362 | return; |
| 1363 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1364 | do_fixup_by_compat_u32(blob, compat, "clock-frequency", |
| 1365 | gd->arch.sdhc_clk, 1); |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1366 | } |
| 1367 | #endif |
| 1368 | |
| 1369 | #if CONFIG_IS_ENABLED(DM_MMC) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1370 | #include <asm/arch/clock.h> |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1371 | __weak void init_clk_usdhc(u32 index) |
| 1372 | { |
| 1373 | } |
| 1374 | |
| 1375 | static int fsl_esdhc_probe(struct udevice *dev) |
| 1376 | { |
| 1377 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 1378 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 1379 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1380 | const void *fdt = gd->fdt_blob; |
| 1381 | int node = dev_of_offset(dev); |
| 1382 | struct esdhc_soc_data *data = |
| 1383 | (struct esdhc_soc_data *)dev_get_driver_data(dev); |
| 1384 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
| 1385 | struct udevice *vqmmc_dev; |
| 1386 | #endif |
| 1387 | fdt_addr_t addr; |
| 1388 | unsigned int val; |
| 1389 | struct mmc *mmc; |
| 1390 | #if !CONFIG_IS_ENABLED(BLK) |
| 1391 | struct blk_desc *bdesc; |
| 1392 | #endif |
| 1393 | int ret; |
| 1394 | |
| 1395 | addr = dev_read_addr(dev); |
| 1396 | if (addr == FDT_ADDR_T_NONE) |
| 1397 | return -EINVAL; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1398 | priv->esdhc_regs = (struct fsl_esdhc *)addr; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1399 | priv->dev = dev; |
| 1400 | priv->mode = -1; |
Peng Fan | b0155ac | 2019-07-10 09:35:24 +0000 | [diff] [blame] | 1401 | if (data) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1402 | priv->flags = data->flags; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1403 | |
| 1404 | val = dev_read_u32_default(dev, "bus-width", -1); |
| 1405 | if (val == 8) |
| 1406 | priv->bus_width = 8; |
| 1407 | else if (val == 4) |
| 1408 | priv->bus_width = 4; |
| 1409 | else |
| 1410 | priv->bus_width = 1; |
| 1411 | |
| 1412 | val = fdtdec_get_int(fdt, node, "fsl,tuning-step", 1); |
| 1413 | priv->tuning_step = val; |
| 1414 | val = fdtdec_get_int(fdt, node, "fsl,tuning-start-tap", |
| 1415 | ESDHC_TUNING_START_TAP_DEFAULT); |
| 1416 | priv->tuning_start_tap = val; |
| 1417 | val = fdtdec_get_int(fdt, node, "fsl,strobe-dll-delay-target", |
| 1418 | ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_DEFAULT); |
| 1419 | priv->strobe_dll_delay_target = val; |
| 1420 | |
Fabio Estevam | 29230f3 | 2020-01-06 20:11:27 -0300 | [diff] [blame] | 1421 | if (dev_read_bool(dev, "broken-cd")) |
| 1422 | priv->broken_cd = 1; |
| 1423 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1424 | if (dev_read_bool(dev, "non-removable")) { |
| 1425 | priv->non_removable = 1; |
| 1426 | } else { |
| 1427 | priv->non_removable = 0; |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 1428 | #if CONFIG_IS_ENABLED(DM_GPIO) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1429 | gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, |
| 1430 | GPIOD_IS_IN); |
| 1431 | #endif |
| 1432 | } |
| 1433 | |
| 1434 | if (dev_read_prop(dev, "fsl,wp-controller", NULL)) { |
| 1435 | priv->wp_enable = 1; |
| 1436 | } else { |
| 1437 | priv->wp_enable = 0; |
Simon Glass | bcee8d6 | 2019-12-06 21:41:35 -0700 | [diff] [blame] | 1438 | #if CONFIG_IS_ENABLED(DM_GPIO) |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1439 | gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, |
| 1440 | GPIOD_IS_IN); |
| 1441 | #endif |
| 1442 | } |
| 1443 | |
| 1444 | priv->vs18_enable = 0; |
| 1445 | |
| 1446 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
| 1447 | /* |
| 1448 | * If emmc I/O has a fixed voltage at 1.8V, this must be provided, |
| 1449 | * otherwise, emmc will work abnormally. |
| 1450 | */ |
| 1451 | ret = device_get_supply_regulator(dev, "vqmmc-supply", &vqmmc_dev); |
| 1452 | if (ret) { |
| 1453 | dev_dbg(dev, "no vqmmc-supply\n"); |
| 1454 | } else { |
| 1455 | ret = regulator_set_enable(vqmmc_dev, true); |
| 1456 | if (ret) { |
| 1457 | dev_err(dev, "fail to enable vqmmc-supply\n"); |
| 1458 | return ret; |
| 1459 | } |
| 1460 | |
| 1461 | if (regulator_get_value(vqmmc_dev) == 1800000) |
| 1462 | priv->vs18_enable = 1; |
| 1463 | } |
| 1464 | #endif |
| 1465 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1466 | /* |
| 1467 | * TODO: |
| 1468 | * Because lack of clk driver, if SDHC clk is not enabled, |
| 1469 | * need to enable it first before this driver is invoked. |
| 1470 | * |
| 1471 | * we use MXC_ESDHC_CLK to get clk freq. |
| 1472 | * If one would like to make this function work, |
| 1473 | * the aliases should be provided in dts as this: |
| 1474 | * |
| 1475 | * aliases { |
| 1476 | * mmc0 = &usdhc1; |
| 1477 | * mmc1 = &usdhc2; |
| 1478 | * mmc2 = &usdhc3; |
| 1479 | * mmc3 = &usdhc4; |
| 1480 | * }; |
| 1481 | * Then if your board only supports mmc2 and mmc3, but we can |
| 1482 | * correctly get the seq as 2 and 3, then let mxc_get_clock |
| 1483 | * work as expected. |
| 1484 | */ |
| 1485 | |
| 1486 | init_clk_usdhc(dev->seq); |
| 1487 | |
Giulio Benetti | a820bed | 2020-01-10 15:51:45 +0100 | [diff] [blame] | 1488 | #if CONFIG_IS_ENABLED(CLK) |
| 1489 | /* Assigned clock already set clock */ |
| 1490 | ret = clk_get_by_name(dev, "per", &priv->per_clk); |
| 1491 | if (ret) { |
| 1492 | printf("Failed to get per_clk\n"); |
| 1493 | return ret; |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1494 | } |
Giulio Benetti | a820bed | 2020-01-10 15:51:45 +0100 | [diff] [blame] | 1495 | ret = clk_enable(&priv->per_clk); |
| 1496 | if (ret) { |
| 1497 | printf("Failed to enable per_clk\n"); |
| 1498 | return ret; |
| 1499 | } |
| 1500 | |
| 1501 | priv->sdhc_clk = clk_get_rate(&priv->per_clk); |
| 1502 | #else |
| 1503 | priv->sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK + dev->seq); |
| 1504 | if (priv->sdhc_clk <= 0) { |
| 1505 | dev_err(dev, "Unable to get clk for %s\n", dev->name); |
| 1506 | return -EINVAL; |
| 1507 | } |
| 1508 | #endif |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1509 | |
| 1510 | ret = fsl_esdhc_init(priv, plat); |
| 1511 | if (ret) { |
| 1512 | dev_err(dev, "fsl_esdhc_init failure\n"); |
| 1513 | return ret; |
| 1514 | } |
| 1515 | |
Peng Fan | b0155ac | 2019-07-10 09:35:24 +0000 | [diff] [blame] | 1516 | ret = mmc_of_parse(dev, &plat->cfg); |
| 1517 | if (ret) |
| 1518 | return ret; |
| 1519 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1520 | mmc = &plat->mmc; |
| 1521 | mmc->cfg = &plat->cfg; |
| 1522 | mmc->dev = dev; |
| 1523 | #if !CONFIG_IS_ENABLED(BLK) |
| 1524 | mmc->priv = priv; |
| 1525 | |
| 1526 | /* Setup dsr related values */ |
| 1527 | mmc->dsr_imp = 0; |
| 1528 | mmc->dsr = ESDHC_DRIVER_STAGE_VALUE; |
| 1529 | /* Setup the universal parts of the block interface just once */ |
| 1530 | bdesc = mmc_get_blk_desc(mmc); |
| 1531 | bdesc->if_type = IF_TYPE_MMC; |
| 1532 | bdesc->removable = 1; |
| 1533 | bdesc->devnum = mmc_get_next_devnum(); |
| 1534 | bdesc->block_read = mmc_bread; |
| 1535 | bdesc->block_write = mmc_bwrite; |
| 1536 | bdesc->block_erase = mmc_berase; |
| 1537 | |
| 1538 | /* setup initial part type */ |
| 1539 | bdesc->part_type = mmc->cfg->part_type; |
| 1540 | mmc_list_add(mmc); |
| 1541 | #endif |
| 1542 | |
| 1543 | upriv->mmc = mmc; |
| 1544 | |
| 1545 | return esdhc_init_common(priv, mmc); |
| 1546 | } |
| 1547 | |
| 1548 | #if CONFIG_IS_ENABLED(DM_MMC) |
| 1549 | static int fsl_esdhc_get_cd(struct udevice *dev) |
| 1550 | { |
| 1551 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1552 | |
| 1553 | return esdhc_getcd_common(priv); |
| 1554 | } |
| 1555 | |
| 1556 | static int fsl_esdhc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, |
| 1557 | struct mmc_data *data) |
| 1558 | { |
| 1559 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 1560 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1561 | |
| 1562 | return esdhc_send_cmd_common(priv, &plat->mmc, cmd, data); |
| 1563 | } |
| 1564 | |
| 1565 | static int fsl_esdhc_set_ios(struct udevice *dev) |
| 1566 | { |
| 1567 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 1568 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1569 | |
| 1570 | return esdhc_set_ios_common(priv, &plat->mmc); |
| 1571 | } |
| 1572 | |
Peng Fan | e9c2255 | 2019-07-10 09:35:26 +0000 | [diff] [blame] | 1573 | #if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT) |
| 1574 | static int fsl_esdhc_set_enhanced_strobe(struct udevice *dev) |
| 1575 | { |
| 1576 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1577 | struct fsl_esdhc *regs = priv->esdhc_regs; |
| 1578 | u32 m; |
| 1579 | |
| 1580 | m = readl(®s->mixctrl); |
| 1581 | m |= MIX_CTRL_HS400_ES; |
| 1582 | writel(m, ®s->mixctrl); |
| 1583 | |
| 1584 | return 0; |
| 1585 | } |
| 1586 | #endif |
| 1587 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1588 | static const struct dm_mmc_ops fsl_esdhc_ops = { |
| 1589 | .get_cd = fsl_esdhc_get_cd, |
| 1590 | .send_cmd = fsl_esdhc_send_cmd, |
| 1591 | .set_ios = fsl_esdhc_set_ios, |
| 1592 | #ifdef MMC_SUPPORTS_TUNING |
| 1593 | .execute_tuning = fsl_esdhc_execute_tuning, |
| 1594 | #endif |
Peng Fan | e9c2255 | 2019-07-10 09:35:26 +0000 | [diff] [blame] | 1595 | #if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT) |
| 1596 | .set_enhanced_strobe = fsl_esdhc_set_enhanced_strobe, |
| 1597 | #endif |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1598 | }; |
| 1599 | #endif |
| 1600 | |
| 1601 | static struct esdhc_soc_data usdhc_imx7d_data = { |
| 1602 | .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING |
| 1603 | | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 |
| 1604 | | ESDHC_FLAG_HS400, |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1605 | }; |
| 1606 | |
Peng Fan | 609ba12 | 2019-07-10 09:35:28 +0000 | [diff] [blame] | 1607 | static struct esdhc_soc_data usdhc_imx8qm_data = { |
| 1608 | .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING | |
| 1609 | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 | |
| 1610 | ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES, |
| 1611 | }; |
| 1612 | |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1613 | static const struct udevice_id fsl_esdhc_ids[] = { |
| 1614 | { .compatible = "fsl,imx53-esdhc", }, |
| 1615 | { .compatible = "fsl,imx6ul-usdhc", }, |
| 1616 | { .compatible = "fsl,imx6sx-usdhc", }, |
| 1617 | { .compatible = "fsl,imx6sl-usdhc", }, |
| 1618 | { .compatible = "fsl,imx6q-usdhc", }, |
| 1619 | { .compatible = "fsl,imx7d-usdhc", .data = (ulong)&usdhc_imx7d_data,}, |
| 1620 | { .compatible = "fsl,imx7ulp-usdhc", }, |
Peng Fan | 609ba12 | 2019-07-10 09:35:28 +0000 | [diff] [blame] | 1621 | { .compatible = "fsl,imx8qm-usdhc", .data = (ulong)&usdhc_imx8qm_data,}, |
Peng Fan | f65d084 | 2019-11-04 17:31:17 +0800 | [diff] [blame] | 1622 | { .compatible = "fsl,imx8mm-usdhc", .data = (ulong)&usdhc_imx8qm_data,}, |
| 1623 | { .compatible = "fsl,imx8mn-usdhc", .data = (ulong)&usdhc_imx8qm_data,}, |
| 1624 | { .compatible = "fsl,imx8mq-usdhc", .data = (ulong)&usdhc_imx8qm_data,}, |
Giulio Benetti | 6a63a87 | 2020-01-10 15:51:46 +0100 | [diff] [blame] | 1625 | { .compatible = "fsl,imxrt-usdhc", }, |
Yangbo Lu | fa33d20 | 2019-06-21 11:42:27 +0800 | [diff] [blame] | 1626 | { .compatible = "fsl,esdhc", }, |
| 1627 | { /* sentinel */ } |
| 1628 | }; |
| 1629 | |
| 1630 | #if CONFIG_IS_ENABLED(BLK) |
| 1631 | static int fsl_esdhc_bind(struct udevice *dev) |
| 1632 | { |
| 1633 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 1634 | |
| 1635 | return mmc_bind(dev, &plat->mmc, &plat->cfg); |
| 1636 | } |
| 1637 | #endif |
| 1638 | |
| 1639 | U_BOOT_DRIVER(fsl_esdhc) = { |
| 1640 | .name = "fsl-esdhc-mmc", |
| 1641 | .id = UCLASS_MMC, |
| 1642 | .of_match = fsl_esdhc_ids, |
| 1643 | .ops = &fsl_esdhc_ops, |
| 1644 | #if CONFIG_IS_ENABLED(BLK) |
| 1645 | .bind = fsl_esdhc_bind, |
| 1646 | #endif |
| 1647 | .probe = fsl_esdhc_probe, |
| 1648 | .platdata_auto_alloc_size = sizeof(struct fsl_esdhc_plat), |
| 1649 | .priv_auto_alloc_size = sizeof(struct fsl_esdhc_priv), |
| 1650 | }; |
| 1651 | #endif |