Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 1 | /* |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 2 | * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 3 | * Andy Fleming |
| 4 | * |
| 5 | * Based vaguely on the pxa mmc code: |
| 6 | * (C) Copyright 2003 |
| 7 | * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <config.h> |
| 13 | #include <common.h> |
| 14 | #include <command.h> |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 15 | #include <hwconfig.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 16 | #include <mmc.h> |
| 17 | #include <part.h> |
| 18 | #include <malloc.h> |
| 19 | #include <mmc.h> |
| 20 | #include <fsl_esdhc.h> |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 21 | #include <fdt_support.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 22 | #include <asm/io.h> |
| 23 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
| 26 | struct fsl_esdhc { |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 27 | uint dsaddr; /* SDMA system address register */ |
| 28 | uint blkattr; /* Block attributes register */ |
| 29 | uint cmdarg; /* Command argument register */ |
| 30 | uint xfertyp; /* Transfer type register */ |
| 31 | uint cmdrsp0; /* Command response 0 register */ |
| 32 | uint cmdrsp1; /* Command response 1 register */ |
| 33 | uint cmdrsp2; /* Command response 2 register */ |
| 34 | uint cmdrsp3; /* Command response 3 register */ |
| 35 | uint datport; /* Buffer data port register */ |
| 36 | uint prsstat; /* Present state register */ |
| 37 | uint proctl; /* Protocol control register */ |
| 38 | uint sysctl; /* System Control Register */ |
| 39 | uint irqstat; /* Interrupt status register */ |
| 40 | uint irqstaten; /* Interrupt status enable register */ |
| 41 | uint irqsigen; /* Interrupt signal enable register */ |
| 42 | uint autoc12err; /* Auto CMD error status register */ |
| 43 | uint hostcapblt; /* Host controller capabilities register */ |
| 44 | uint wml; /* Watermark level register */ |
| 45 | uint mixctrl; /* For USDHC */ |
| 46 | char reserved1[4]; /* reserved */ |
| 47 | uint fevt; /* Force event register */ |
| 48 | uint admaes; /* ADMA error status register */ |
| 49 | uint adsaddr; /* ADMA system address register */ |
| 50 | char reserved2[160]; /* reserved */ |
| 51 | uint hostver; /* Host controller version register */ |
| 52 | char reserved3[4]; /* reserved */ |
| 53 | uint dmaerraddr; /* DMA error address register */ |
| 54 | char reserved4[4]; /* reserved */ |
| 55 | uint dmaerrattr; /* DMA error attribute register */ |
| 56 | char reserved5[4]; /* reserved */ |
| 57 | uint hostcapblt2; /* Host controller capabilities register 2 */ |
| 58 | char reserved6[8]; /* reserved */ |
| 59 | uint tcr; /* Tuning control register */ |
| 60 | char reserved7[28]; /* reserved */ |
| 61 | uint sddirctl; /* SD direction control register */ |
| 62 | char reserved8[712]; /* reserved */ |
| 63 | uint scr; /* eSDHC control register */ |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | /* Return the XFERTYP flags for a given command and data packet */ |
Kim Phillips | eafa90a | 2012-10-29 13:34:44 +0000 | [diff] [blame] | 67 | static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 68 | { |
| 69 | uint xfertyp = 0; |
| 70 | |
| 71 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 72 | xfertyp |= XFERTYP_DPSEL; |
| 73 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 74 | xfertyp |= XFERTYP_DMAEN; |
| 75 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 76 | if (data->blocks > 1) { |
| 77 | xfertyp |= XFERTYP_MSBSEL; |
| 78 | xfertyp |= XFERTYP_BCEN; |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 79 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 80 | xfertyp |= XFERTYP_AC12EN; |
| 81 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | if (data->flags & MMC_DATA_READ) |
| 85 | xfertyp |= XFERTYP_DTDSEL; |
| 86 | } |
| 87 | |
| 88 | if (cmd->resp_type & MMC_RSP_CRC) |
| 89 | xfertyp |= XFERTYP_CCCEN; |
| 90 | if (cmd->resp_type & MMC_RSP_OPCODE) |
| 91 | xfertyp |= XFERTYP_CICEN; |
| 92 | if (cmd->resp_type & MMC_RSP_136) |
| 93 | xfertyp |= XFERTYP_RSPTYP_136; |
| 94 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 95 | xfertyp |= XFERTYP_RSPTYP_48_BUSY; |
| 96 | else if (cmd->resp_type & MMC_RSP_PRESENT) |
| 97 | xfertyp |= XFERTYP_RSPTYP_48; |
| 98 | |
Haijun.Zhang | b8e5b07 | 2013-07-01 14:26:01 +0800 | [diff] [blame] | 99 | #if defined(CONFIG_MX53) || defined(CONFIG_T4240QDS) |
Jason Liu | 4571de3 | 2011-03-22 01:32:31 +0000 | [diff] [blame] | 100 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 101 | xfertyp |= XFERTYP_CMDTYP_ABORT; |
| 102 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 103 | return XFERTYP_CMD(cmd->cmdidx) | xfertyp; |
| 104 | } |
| 105 | |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 106 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 107 | /* |
| 108 | * PIO Read/Write Mode reduce the performace as DMA is not used in this mode. |
| 109 | */ |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 110 | static void |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 111 | esdhc_pio_read_write(struct mmc *mmc, struct mmc_data *data) |
| 112 | { |
Ira Snyder | 8eee2bd | 2011-12-23 08:30:40 +0000 | [diff] [blame] | 113 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
| 114 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 115 | uint blocks; |
| 116 | char *buffer; |
| 117 | uint databuf; |
| 118 | uint size; |
| 119 | uint irqstat; |
| 120 | uint timeout; |
| 121 | |
| 122 | if (data->flags & MMC_DATA_READ) { |
| 123 | blocks = data->blocks; |
| 124 | buffer = data->dest; |
| 125 | while (blocks) { |
| 126 | timeout = PIO_TIMEOUT; |
| 127 | size = data->blocksize; |
| 128 | irqstat = esdhc_read32(®s->irqstat); |
| 129 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BREN) |
| 130 | && --timeout); |
| 131 | if (timeout <= 0) { |
| 132 | printf("\nData Read Failed in PIO Mode."); |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 133 | return; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 134 | } |
| 135 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 136 | udelay(100); /* Wait before last byte transfer complete */ |
| 137 | irqstat = esdhc_read32(®s->irqstat); |
| 138 | databuf = in_le32(®s->datport); |
| 139 | *((uint *)buffer) = databuf; |
| 140 | buffer += 4; |
| 141 | size -= 4; |
| 142 | } |
| 143 | blocks--; |
| 144 | } |
| 145 | } else { |
| 146 | blocks = data->blocks; |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 147 | buffer = (char *)data->src; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 148 | while (blocks) { |
| 149 | timeout = PIO_TIMEOUT; |
| 150 | size = data->blocksize; |
| 151 | irqstat = esdhc_read32(®s->irqstat); |
| 152 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BWEN) |
| 153 | && --timeout); |
| 154 | if (timeout <= 0) { |
| 155 | printf("\nData Write Failed in PIO Mode."); |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 156 | return; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 157 | } |
| 158 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 159 | udelay(100); /* Wait before last byte transfer complete */ |
| 160 | databuf = *((uint *)buffer); |
| 161 | buffer += 4; |
| 162 | size -= 4; |
| 163 | irqstat = esdhc_read32(®s->irqstat); |
| 164 | out_le32(®s->datport, databuf); |
| 165 | } |
| 166 | blocks--; |
| 167 | } |
| 168 | } |
| 169 | } |
| 170 | #endif |
| 171 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 172 | static int esdhc_setup_data(struct mmc *mmc, struct mmc_data *data) |
| 173 | { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 174 | int timeout; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 175 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 176 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Fabio Estevam | c2137b1 | 2013-05-28 15:09:42 -0300 | [diff] [blame] | 177 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 178 | uint wml_value; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 179 | |
| 180 | wml_value = data->blocksize/4; |
| 181 | |
| 182 | if (data->flags & MMC_DATA_READ) { |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 183 | if (wml_value > WML_RD_WML_MAX) |
| 184 | wml_value = WML_RD_WML_MAX_VAL; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 185 | |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 186 | esdhc_clrsetbits32(®s->wml, WML_RD_WML_MASK, wml_value); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 187 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 188 | } else { |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 189 | flush_dcache_range((ulong)data->src, |
| 190 | (ulong)data->src+data->blocks |
| 191 | *data->blocksize); |
| 192 | |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 193 | if (wml_value > WML_WR_WML_MAX) |
| 194 | wml_value = WML_WR_WML_MAX_VAL; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 195 | if ((esdhc_read32(®s->prsstat) & PRSSTAT_WPSPL) == 0) { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 196 | printf("\nThe SD card is locked. Can not write to a locked card.\n\n"); |
| 197 | return TIMEOUT; |
| 198 | } |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 199 | |
| 200 | esdhc_clrsetbits32(®s->wml, WML_WR_WML_MASK, |
| 201 | wml_value << 16); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 202 | esdhc_write32(®s->dsaddr, (u32)data->src); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 203 | } |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 204 | #else /* CONFIG_SYS_FSL_ESDHC_USE_PIO */ |
| 205 | if (!(data->flags & MMC_DATA_READ)) { |
| 206 | if ((esdhc_read32(®s->prsstat) & PRSSTAT_WPSPL) == 0) { |
| 207 | printf("\nThe SD card is locked. " |
| 208 | "Can not write to a locked card.\n\n"); |
| 209 | return TIMEOUT; |
| 210 | } |
| 211 | esdhc_write32(®s->dsaddr, (u32)data->src); |
| 212 | } else |
| 213 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
| 214 | #endif /* CONFIG_SYS_FSL_ESDHC_USE_PIO */ |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 215 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 216 | esdhc_write32(®s->blkattr, data->blocks << 16 | data->blocksize); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 217 | |
| 218 | /* Calculate the timeout period for data transactions */ |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 219 | /* |
| 220 | * 1)Timeout period = (2^(timeout+13)) SD Clock cycles |
| 221 | * 2)Timeout period should be minimum 0.250sec as per SD Card spec |
| 222 | * So, Number of SD Clock cycles for 0.25sec should be minimum |
| 223 | * (SD Clock/sec * 0.25 sec) SD Clock cycles |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 224 | * = (mmc->clock * 1/4) SD Clock cycles |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 225 | * As 1) >= 2) |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 226 | * => (2^(timeout+13)) >= mmc->clock * 1/4 |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 227 | * Taking log2 both the sides |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 228 | * => timeout + 13 >= log2(mmc->clock/4) |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 229 | * Rounding up to next power of 2 |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 230 | * => timeout + 13 = log2(mmc->clock/4) + 1 |
| 231 | * => timeout + 13 = fls(mmc->clock/4) |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 232 | */ |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 233 | timeout = fls(mmc->clock/4); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 234 | timeout -= 13; |
| 235 | |
| 236 | if (timeout > 14) |
| 237 | timeout = 14; |
| 238 | |
| 239 | if (timeout < 0) |
| 240 | timeout = 0; |
| 241 | |
Kumar Gala | 5103a03 | 2011-01-29 15:36:10 -0600 | [diff] [blame] | 242 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC_A001 |
| 243 | if ((timeout == 4) || (timeout == 8) || (timeout == 12)) |
| 244 | timeout++; |
| 245 | #endif |
| 246 | |
Haijun.Zhang | 1336e2d | 2014-03-18 17:04:23 +0800 | [diff] [blame^] | 247 | #ifdef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE |
| 248 | timeout = 0xE; |
| 249 | #endif |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 250 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 255 | static void check_and_invalidate_dcache_range |
| 256 | (struct mmc_cmd *cmd, |
| 257 | struct mmc_data *data) { |
| 258 | unsigned start = (unsigned)data->dest ; |
| 259 | unsigned size = roundup(ARCH_DMA_MINALIGN, |
| 260 | data->blocks*data->blocksize); |
| 261 | unsigned end = start+size ; |
| 262 | invalidate_dcache_range(start, end); |
| 263 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 264 | /* |
| 265 | * Sends a command out on the bus. Takes the mmc pointer, |
| 266 | * a command pointer, and an optional data pointer. |
| 267 | */ |
| 268 | static int |
| 269 | esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) |
| 270 | { |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 271 | int err = 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 272 | uint xfertyp; |
| 273 | uint irqstat; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 274 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 275 | volatile struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 276 | |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 277 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 278 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 279 | return 0; |
| 280 | #endif |
| 281 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 282 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 283 | |
| 284 | sync(); |
| 285 | |
| 286 | /* Wait for the bus to be idle */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 287 | while ((esdhc_read32(®s->prsstat) & PRSSTAT_CICHB) || |
| 288 | (esdhc_read32(®s->prsstat) & PRSSTAT_CIDHB)) |
| 289 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 290 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 291 | while (esdhc_read32(®s->prsstat) & PRSSTAT_DLA) |
| 292 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 293 | |
| 294 | /* Wait at least 8 SD clock cycles before the next command */ |
| 295 | /* |
| 296 | * Note: This is way more than 8 cycles, but 1ms seems to |
| 297 | * resolve timing issues with some cards |
| 298 | */ |
| 299 | udelay(1000); |
| 300 | |
| 301 | /* Set up for a data transfer if we have one */ |
| 302 | if (data) { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 303 | err = esdhc_setup_data(mmc, data); |
| 304 | if(err) |
| 305 | return err; |
| 306 | } |
| 307 | |
| 308 | /* Figure out the transfer arguments */ |
| 309 | xfertyp = esdhc_xfertyp(cmd, data); |
| 310 | |
Andrew Gabbasov | 01b7735 | 2013-06-11 10:34:22 -0500 | [diff] [blame] | 311 | /* Mask all irqs */ |
| 312 | esdhc_write32(®s->irqsigen, 0); |
| 313 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 314 | /* Send the command */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 315 | esdhc_write32(®s->cmdarg, cmd->cmdarg); |
Jason Liu | 4692708 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 316 | #if defined(CONFIG_FSL_USDHC) |
| 317 | esdhc_write32(®s->mixctrl, |
| 318 | (esdhc_read32(®s->mixctrl) & 0xFFFFFF80) | (xfertyp & 0x7F)); |
| 319 | esdhc_write32(®s->xfertyp, xfertyp & 0xFFFF0000); |
| 320 | #else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 321 | esdhc_write32(®s->xfertyp, xfertyp); |
Jason Liu | 4692708 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 322 | #endif |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 323 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 324 | /* Wait for the command to complete */ |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 325 | while (!(esdhc_read32(®s->irqstat) & (IRQSTAT_CC | IRQSTAT_CTOE))) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 326 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 327 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 328 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 329 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 330 | if (irqstat & CMD_ERR) { |
| 331 | err = COMM_ERR; |
| 332 | goto out; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 335 | if (irqstat & IRQSTAT_CTOE) { |
| 336 | err = TIMEOUT; |
| 337 | goto out; |
| 338 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 339 | |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 340 | /* Workaround for ESDHC errata ENGcm03648 */ |
| 341 | if (!data && (cmd->resp_type & MMC_RSP_BUSY)) { |
| 342 | int timeout = 2500; |
| 343 | |
| 344 | /* Poll on DATA0 line for cmd with busy signal for 250 ms */ |
| 345 | while (timeout > 0 && !(esdhc_read32(®s->prsstat) & |
| 346 | PRSSTAT_DAT0)) { |
| 347 | udelay(100); |
| 348 | timeout--; |
| 349 | } |
| 350 | |
| 351 | if (timeout <= 0) { |
| 352 | printf("Timeout waiting for DAT0 to go high!\n"); |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 353 | err = TIMEOUT; |
| 354 | goto out; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 355 | } |
| 356 | } |
| 357 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 358 | /* Copy the response to the response buffer */ |
| 359 | if (cmd->resp_type & MMC_RSP_136) { |
| 360 | u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0; |
| 361 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 362 | cmdrsp3 = esdhc_read32(®s->cmdrsp3); |
| 363 | cmdrsp2 = esdhc_read32(®s->cmdrsp2); |
| 364 | cmdrsp1 = esdhc_read32(®s->cmdrsp1); |
| 365 | cmdrsp0 = esdhc_read32(®s->cmdrsp0); |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 366 | cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24); |
| 367 | cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24); |
| 368 | cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24); |
| 369 | cmd->response[3] = (cmdrsp0 << 8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 370 | } else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 371 | cmd->response[0] = esdhc_read32(®s->cmdrsp0); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 372 | |
| 373 | /* Wait until all of the blocks are transferred */ |
| 374 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 375 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 376 | esdhc_pio_read_write(mmc, data); |
| 377 | #else |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 378 | do { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 379 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 380 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 381 | if (irqstat & IRQSTAT_DTOE) { |
| 382 | err = TIMEOUT; |
| 383 | goto out; |
| 384 | } |
Frans Meulenbroeks | 63fb5a7 | 2010-07-31 04:45:18 +0000 | [diff] [blame] | 385 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 386 | if (irqstat & DATA_ERR) { |
| 387 | err = COMM_ERR; |
| 388 | goto out; |
| 389 | } |
Andrew Gabbasov | 9b74dc5 | 2013-04-07 23:06:08 +0000 | [diff] [blame] | 390 | } while ((irqstat & DATA_COMPLETE) != DATA_COMPLETE); |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 391 | #endif |
Eric Nelson | 54899fc | 2013-04-03 12:31:56 +0000 | [diff] [blame] | 392 | if (data->flags & MMC_DATA_READ) |
| 393 | check_and_invalidate_dcache_range(cmd, data); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 394 | } |
| 395 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 396 | out: |
| 397 | /* Reset CMD and DATA portions on error */ |
| 398 | if (err) { |
| 399 | esdhc_write32(®s->sysctl, esdhc_read32(®s->sysctl) | |
| 400 | SYSCTL_RSTC); |
| 401 | while (esdhc_read32(®s->sysctl) & SYSCTL_RSTC) |
| 402 | ; |
| 403 | |
| 404 | if (data) { |
| 405 | esdhc_write32(®s->sysctl, |
| 406 | esdhc_read32(®s->sysctl) | |
| 407 | SYSCTL_RSTD); |
| 408 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTD)) |
| 409 | ; |
| 410 | } |
| 411 | } |
| 412 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 413 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 414 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 415 | return err; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 416 | } |
| 417 | |
Kim Phillips | eafa90a | 2012-10-29 13:34:44 +0000 | [diff] [blame] | 418 | static void set_sysctl(struct mmc *mmc, uint clock) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 419 | { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 420 | int div, pre_div; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 421 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 422 | volatile struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Benoît Thébaudeau | a2ac1b3 | 2012-10-01 08:36:25 +0000 | [diff] [blame] | 423 | int sdhc_clk = cfg->sdhc_clk; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 424 | uint clk; |
| 425 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 426 | if (clock < mmc->cfg->f_min) |
| 427 | clock = mmc->cfg->f_min; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 428 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 429 | if (sdhc_clk / 16 > clock) { |
| 430 | for (pre_div = 2; pre_div < 256; pre_div *= 2) |
| 431 | if ((sdhc_clk / pre_div) <= (clock * 16)) |
| 432 | break; |
| 433 | } else |
| 434 | pre_div = 2; |
| 435 | |
| 436 | for (div = 1; div <= 16; div++) |
| 437 | if ((sdhc_clk / (div * pre_div)) <= clock) |
| 438 | break; |
| 439 | |
| 440 | pre_div >>= 1; |
| 441 | div -= 1; |
| 442 | |
| 443 | clk = (pre_div << 8) | (div << 4); |
| 444 | |
Kumar Gala | cc4d122 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 445 | esdhc_clrbits32(®s->sysctl, SYSCTL_CKEN); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 446 | |
| 447 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_CLOCK_MASK, clk); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 448 | |
| 449 | udelay(10000); |
| 450 | |
Kumar Gala | cc4d122 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 451 | clk = SYSCTL_PEREN | SYSCTL_CKEN; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 452 | |
| 453 | esdhc_setbits32(®s->sysctl, clk); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | static void esdhc_set_ios(struct mmc *mmc) |
| 457 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 458 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 459 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 460 | |
| 461 | /* Set the clock speed */ |
| 462 | set_sysctl(mmc, mmc->clock); |
| 463 | |
| 464 | /* Set the bus width */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 465 | esdhc_clrbits32(®s->proctl, PROCTL_DTW_4 | PROCTL_DTW_8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 466 | |
| 467 | if (mmc->bus_width == 4) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 468 | esdhc_setbits32(®s->proctl, PROCTL_DTW_4); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 469 | else if (mmc->bus_width == 8) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 470 | esdhc_setbits32(®s->proctl, PROCTL_DTW_8); |
| 471 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | static int esdhc_init(struct mmc *mmc) |
| 475 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 476 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 477 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 478 | int timeout = 1000; |
| 479 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 480 | /* Reset the entire host controller */ |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 481 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 482 | |
| 483 | /* Wait until the controller is available */ |
| 484 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA) && --timeout) |
| 485 | udelay(1000); |
| 486 | |
Benoît Thébaudeau | 16e43f3 | 2012-08-13 07:28:16 +0000 | [diff] [blame] | 487 | #ifndef ARCH_MXC |
P.V.Suresh | 2c1764e | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 488 | /* Enable cache snooping */ |
Benoît Thébaudeau | 16e43f3 | 2012-08-13 07:28:16 +0000 | [diff] [blame] | 489 | esdhc_write32(®s->scr, 0x00000040); |
| 490 | #endif |
P.V.Suresh | 2c1764e | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 491 | |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 492 | esdhc_setbits32(®s->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 493 | |
| 494 | /* Set the initial clock speed */ |
Jerry Huang | 4a6ee17 | 2010-11-25 17:06:07 +0000 | [diff] [blame] | 495 | mmc_set_clock(mmc, 400000); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 496 | |
| 497 | /* Disable the BRR and BWR bits in IRQSTAT */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 498 | esdhc_clrbits32(®s->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 499 | |
| 500 | /* Put the PROCTL reg back to the default */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 501 | esdhc_write32(®s->proctl, PROCTL_INIT); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 502 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 503 | /* Set timout to the maximum value */ |
| 504 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 505 | |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 506 | return 0; |
| 507 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 508 | |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 509 | static int esdhc_getcd(struct mmc *mmc) |
| 510 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 511 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 512 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
| 513 | int timeout = 1000; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 514 | |
Haijun.Zhang | f7e27cc | 2014-01-10 13:52:17 +0800 | [diff] [blame] | 515 | #ifdef CONFIG_ESDHC_DETECT_QUIRK |
| 516 | if (CONFIG_ESDHC_DETECT_QUIRK) |
| 517 | return 1; |
| 518 | #endif |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 519 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_CINS) && --timeout) |
| 520 | udelay(1000); |
| 521 | |
| 522 | return timeout > 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 523 | } |
| 524 | |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 525 | static void esdhc_reset(struct fsl_esdhc *regs) |
| 526 | { |
| 527 | unsigned long timeout = 100; /* wait max 100 ms */ |
| 528 | |
| 529 | /* reset the controller */ |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 530 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 531 | |
| 532 | /* hardware clears the bit when it is done */ |
| 533 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA) && --timeout) |
| 534 | udelay(1000); |
| 535 | if (!timeout) |
| 536 | printf("MMC/SD: Reset never completed.\n"); |
| 537 | } |
| 538 | |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 539 | static const struct mmc_ops esdhc_ops = { |
| 540 | .send_cmd = esdhc_send_cmd, |
| 541 | .set_ios = esdhc_set_ios, |
| 542 | .init = esdhc_init, |
| 543 | .getcd = esdhc_getcd, |
| 544 | }; |
| 545 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 546 | int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 547 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 548 | struct fsl_esdhc *regs; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 549 | struct mmc *mmc; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 550 | u32 caps, voltage_caps; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 551 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 552 | if (!cfg) |
| 553 | return -1; |
| 554 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 555 | regs = (struct fsl_esdhc *)cfg->esdhc_base; |
| 556 | |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 557 | /* First reset the eSDHC controller */ |
| 558 | esdhc_reset(regs); |
| 559 | |
Jerry Huang | 975324a | 2012-05-17 23:57:02 +0000 | [diff] [blame] | 560 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_HCKEN |
| 561 | | SYSCTL_IPGEN | SYSCTL_CKEN); |
| 562 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 563 | memset(&cfg->cfg, 0, sizeof(cfg->cfg)); |
| 564 | |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 565 | voltage_caps = 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 566 | caps = regs->hostcapblt; |
Roy Zang | 3b4456e | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 567 | |
| 568 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135 |
| 569 | caps = caps & ~(ESDHC_HOSTCAPBLT_SRS | |
| 570 | ESDHC_HOSTCAPBLT_VS18 | ESDHC_HOSTCAPBLT_VS30); |
| 571 | #endif |
Haijun.Zhang | ef38f3f | 2013-10-31 09:38:19 +0800 | [diff] [blame] | 572 | |
| 573 | /* T4240 host controller capabilities register should have VS33 bit */ |
| 574 | #ifdef CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
| 575 | caps = caps | ESDHC_HOSTCAPBLT_VS33; |
| 576 | #endif |
| 577 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 578 | if (caps & ESDHC_HOSTCAPBLT_VS18) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 579 | voltage_caps |= MMC_VDD_165_195; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 580 | if (caps & ESDHC_HOSTCAPBLT_VS30) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 581 | voltage_caps |= MMC_VDD_29_30 | MMC_VDD_30_31; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 582 | if (caps & ESDHC_HOSTCAPBLT_VS33) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 583 | voltage_caps |= MMC_VDD_32_33 | MMC_VDD_33_34; |
| 584 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 585 | cfg->cfg.name = "FSL_SDHC"; |
| 586 | cfg->cfg.ops = &esdhc_ops; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 587 | #ifdef CONFIG_SYS_SD_VOLTAGE |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 588 | cfg->cfg.voltages = CONFIG_SYS_SD_VOLTAGE; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 589 | #else |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 590 | cfg->cfg.voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 591 | #endif |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 592 | if ((cfg->cfg.voltages & voltage_caps) == 0) { |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 593 | printf("voltage not supported by controller\n"); |
| 594 | return -1; |
| 595 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 596 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 597 | cfg->cfg.host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT | MMC_MODE_HC; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 598 | |
Abbas Raza | aad4659 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 599 | if (cfg->max_bus_width > 0) { |
| 600 | if (cfg->max_bus_width < 8) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 601 | cfg->cfg.host_caps &= ~MMC_MODE_8BIT; |
Abbas Raza | aad4659 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 602 | if (cfg->max_bus_width < 4) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 603 | cfg->cfg.host_caps &= ~MMC_MODE_4BIT; |
Abbas Raza | aad4659 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 604 | } |
| 605 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 606 | if (caps & ESDHC_HOSTCAPBLT_HSS) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 607 | cfg->cfg.host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 608 | |
Haijun.Zhang | d47e3d2 | 2014-01-10 13:52:18 +0800 | [diff] [blame] | 609 | #ifdef CONFIG_ESDHC_DETECT_8_BIT_QUIRK |
| 610 | if (CONFIG_ESDHC_DETECT_8_BIT_QUIRK) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 611 | cfg->cfg.host_caps &= ~MMC_MODE_8BIT; |
Haijun.Zhang | d47e3d2 | 2014-01-10 13:52:18 +0800 | [diff] [blame] | 612 | #endif |
| 613 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 614 | cfg->cfg.f_min = 400000; |
| 615 | cfg->cfg.f_max = MIN(gd->arch.sdhc_clk, 52000000); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 616 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 617 | cfg->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 618 | |
| 619 | mmc = mmc_create(&cfg->cfg, cfg); |
| 620 | if (mmc == NULL) |
| 621 | return -1; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 622 | |
| 623 | return 0; |
| 624 | } |
| 625 | |
| 626 | int fsl_esdhc_mmc_init(bd_t *bis) |
| 627 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 628 | struct fsl_esdhc_cfg *cfg; |
| 629 | |
Fabio Estevam | 88227a1 | 2012-12-27 08:51:08 +0000 | [diff] [blame] | 630 | cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 631 | cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR; |
Simon Glass | e9adeca | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 632 | cfg->sdhc_clk = gd->arch.sdhc_clk; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 633 | return fsl_esdhc_initialize(bis, cfg); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 634 | } |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 635 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 636 | #ifdef CONFIG_OF_LIBFDT |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 637 | void fdt_fixup_esdhc(void *blob, bd_t *bd) |
| 638 | { |
| 639 | const char *compat = "fsl,esdhc"; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 640 | |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 641 | #ifdef CONFIG_FSL_ESDHC_PIN_MUX |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 642 | if (!hwconfig("esdhc")) { |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 643 | do_fixup_by_compat(blob, compat, "status", "disabled", |
| 644 | 8 + 1, 1); |
| 645 | return; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 646 | } |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 647 | #endif |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 648 | |
| 649 | do_fixup_by_compat_u32(blob, compat, "clock-frequency", |
Simon Glass | e9adeca | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 650 | gd->arch.sdhc_clk, 1); |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 651 | |
| 652 | do_fixup_by_compat(blob, compat, "status", "okay", |
| 653 | 4 + 1, 1); |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 654 | } |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 655 | #endif |