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 | |
Ye.Li | a3d6e38 | 2014-11-04 15:35:49 +0800 | [diff] [blame] | 26 | #define SDHCI_IRQ_EN_BITS (IRQSTATEN_CC | IRQSTATEN_TC | \ |
| 27 | IRQSTATEN_CINT | \ |
| 28 | IRQSTATEN_CTOE | IRQSTATEN_CCE | IRQSTATEN_CEBE | \ |
| 29 | IRQSTATEN_CIE | IRQSTATEN_DTOE | IRQSTATEN_DCE | \ |
| 30 | IRQSTATEN_DEBE | IRQSTATEN_BRR | IRQSTATEN_BWR | \ |
| 31 | IRQSTATEN_DINT) |
| 32 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 33 | struct fsl_esdhc { |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 34 | uint dsaddr; /* SDMA system address register */ |
| 35 | uint blkattr; /* Block attributes register */ |
| 36 | uint cmdarg; /* Command argument register */ |
| 37 | uint xfertyp; /* Transfer type register */ |
| 38 | uint cmdrsp0; /* Command response 0 register */ |
| 39 | uint cmdrsp1; /* Command response 1 register */ |
| 40 | uint cmdrsp2; /* Command response 2 register */ |
| 41 | uint cmdrsp3; /* Command response 3 register */ |
| 42 | uint datport; /* Buffer data port register */ |
| 43 | uint prsstat; /* Present state register */ |
| 44 | uint proctl; /* Protocol control register */ |
| 45 | uint sysctl; /* System Control Register */ |
| 46 | uint irqstat; /* Interrupt status register */ |
| 47 | uint irqstaten; /* Interrupt status enable register */ |
| 48 | uint irqsigen; /* Interrupt signal enable register */ |
| 49 | uint autoc12err; /* Auto CMD error status register */ |
| 50 | uint hostcapblt; /* Host controller capabilities register */ |
| 51 | uint wml; /* Watermark level register */ |
| 52 | uint mixctrl; /* For USDHC */ |
| 53 | char reserved1[4]; /* reserved */ |
| 54 | uint fevt; /* Force event register */ |
| 55 | uint admaes; /* ADMA error status register */ |
| 56 | uint adsaddr; /* ADMA system address register */ |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 57 | char reserved2[100]; /* reserved */ |
| 58 | uint vendorspec; /* Vendor Specific register */ |
Peng Fan | 323aaaa | 2015-03-10 15:35:46 +0800 | [diff] [blame] | 59 | char reserved3[56]; /* reserved */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 60 | uint hostver; /* Host controller version register */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 61 | char reserved4[4]; /* reserved */ |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 62 | uint dmaerraddr; /* DMA error address register */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 63 | char reserved5[4]; /* reserved */ |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 64 | uint dmaerrattr; /* DMA error attribute register */ |
| 65 | char reserved6[4]; /* reserved */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 66 | uint hostcapblt2; /* Host controller capabilities register 2 */ |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 67 | char reserved7[8]; /* reserved */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 68 | uint tcr; /* Tuning control register */ |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 69 | char reserved8[28]; /* reserved */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 70 | uint sddirctl; /* SD direction control register */ |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 71 | char reserved9[712]; /* reserved */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 72 | uint scr; /* eSDHC control register */ |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | /* Return the XFERTYP flags for a given command and data packet */ |
Kim Phillips | eafa90a | 2012-10-29 13:34:44 +0000 | [diff] [blame] | 76 | static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 77 | { |
| 78 | uint xfertyp = 0; |
| 79 | |
| 80 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 81 | xfertyp |= XFERTYP_DPSEL; |
| 82 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 83 | xfertyp |= XFERTYP_DMAEN; |
| 84 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 85 | if (data->blocks > 1) { |
| 86 | xfertyp |= XFERTYP_MSBSEL; |
| 87 | xfertyp |= XFERTYP_BCEN; |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 88 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 89 | xfertyp |= XFERTYP_AC12EN; |
| 90 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | if (data->flags & MMC_DATA_READ) |
| 94 | xfertyp |= XFERTYP_DTDSEL; |
| 95 | } |
| 96 | |
| 97 | if (cmd->resp_type & MMC_RSP_CRC) |
| 98 | xfertyp |= XFERTYP_CCCEN; |
| 99 | if (cmd->resp_type & MMC_RSP_OPCODE) |
| 100 | xfertyp |= XFERTYP_CICEN; |
| 101 | if (cmd->resp_type & MMC_RSP_136) |
| 102 | xfertyp |= XFERTYP_RSPTYP_136; |
| 103 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 104 | xfertyp |= XFERTYP_RSPTYP_48_BUSY; |
| 105 | else if (cmd->resp_type & MMC_RSP_PRESENT) |
| 106 | xfertyp |= XFERTYP_RSPTYP_48; |
| 107 | |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 108 | #if defined(CONFIG_MX53) || defined(CONFIG_PPC_T4240) || \ |
| 109 | defined(CONFIG_LS102XA) || defined(CONFIG_LS2085A) |
Jason Liu | 4571de3 | 2011-03-22 01:32:31 +0000 | [diff] [blame] | 110 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 111 | xfertyp |= XFERTYP_CMDTYP_ABORT; |
| 112 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 113 | return XFERTYP_CMD(cmd->cmdidx) | xfertyp; |
| 114 | } |
| 115 | |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 116 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 117 | /* |
| 118 | * PIO Read/Write Mode reduce the performace as DMA is not used in this mode. |
| 119 | */ |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 120 | static void |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 121 | esdhc_pio_read_write(struct mmc *mmc, struct mmc_data *data) |
| 122 | { |
Ira Snyder | 8eee2bd | 2011-12-23 08:30:40 +0000 | [diff] [blame] | 123 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
| 124 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 125 | uint blocks; |
| 126 | char *buffer; |
| 127 | uint databuf; |
| 128 | uint size; |
| 129 | uint irqstat; |
| 130 | uint timeout; |
| 131 | |
| 132 | if (data->flags & MMC_DATA_READ) { |
| 133 | blocks = data->blocks; |
| 134 | buffer = data->dest; |
| 135 | while (blocks) { |
| 136 | timeout = PIO_TIMEOUT; |
| 137 | size = data->blocksize; |
| 138 | irqstat = esdhc_read32(®s->irqstat); |
| 139 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BREN) |
| 140 | && --timeout); |
| 141 | if (timeout <= 0) { |
| 142 | printf("\nData Read Failed in PIO Mode."); |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 143 | return; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 144 | } |
| 145 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 146 | udelay(100); /* Wait before last byte transfer complete */ |
| 147 | irqstat = esdhc_read32(®s->irqstat); |
| 148 | databuf = in_le32(®s->datport); |
| 149 | *((uint *)buffer) = databuf; |
| 150 | buffer += 4; |
| 151 | size -= 4; |
| 152 | } |
| 153 | blocks--; |
| 154 | } |
| 155 | } else { |
| 156 | blocks = data->blocks; |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 157 | buffer = (char *)data->src; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 158 | while (blocks) { |
| 159 | timeout = PIO_TIMEOUT; |
| 160 | size = data->blocksize; |
| 161 | irqstat = esdhc_read32(®s->irqstat); |
| 162 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BWEN) |
| 163 | && --timeout); |
| 164 | if (timeout <= 0) { |
| 165 | printf("\nData Write Failed in PIO Mode."); |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 166 | return; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 167 | } |
| 168 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 169 | udelay(100); /* Wait before last byte transfer complete */ |
| 170 | databuf = *((uint *)buffer); |
| 171 | buffer += 4; |
| 172 | size -= 4; |
| 173 | irqstat = esdhc_read32(®s->irqstat); |
| 174 | out_le32(®s->datport, databuf); |
| 175 | } |
| 176 | blocks--; |
| 177 | } |
| 178 | } |
| 179 | } |
| 180 | #endif |
| 181 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 182 | static int esdhc_setup_data(struct mmc *mmc, struct mmc_data *data) |
| 183 | { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 184 | int timeout; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 185 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 186 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 187 | #ifdef CONFIG_LS2085A |
| 188 | dma_addr_t addr; |
| 189 | #endif |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 190 | uint wml_value; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 191 | |
| 192 | wml_value = data->blocksize/4; |
| 193 | |
| 194 | if (data->flags & MMC_DATA_READ) { |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 195 | if (wml_value > WML_RD_WML_MAX) |
| 196 | wml_value = WML_RD_WML_MAX_VAL; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 197 | |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 198 | esdhc_clrsetbits32(®s->wml, WML_RD_WML_MASK, wml_value); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 199 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 200 | #ifdef CONFIG_LS2085A |
| 201 | addr = virt_to_phys((void *)(data->dest)); |
| 202 | if (upper_32_bits(addr)) |
| 203 | printf("Error found for upper 32 bits\n"); |
| 204 | else |
| 205 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 206 | #else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 207 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 208 | #endif |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 209 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 210 | } else { |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 211 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 212 | flush_dcache_range((ulong)data->src, |
| 213 | (ulong)data->src+data->blocks |
| 214 | *data->blocksize); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 215 | #endif |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 216 | if (wml_value > WML_WR_WML_MAX) |
| 217 | wml_value = WML_WR_WML_MAX_VAL; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 218 | if ((esdhc_read32(®s->prsstat) & PRSSTAT_WPSPL) == 0) { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 219 | printf("\nThe SD card is locked. Can not write to a locked card.\n\n"); |
| 220 | return TIMEOUT; |
| 221 | } |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 222 | |
| 223 | esdhc_clrsetbits32(®s->wml, WML_WR_WML_MASK, |
| 224 | wml_value << 16); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 225 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 226 | #ifdef CONFIG_LS2085A |
| 227 | addr = virt_to_phys((void *)(data->src)); |
| 228 | if (upper_32_bits(addr)) |
| 229 | printf("Error found for upper 32 bits\n"); |
| 230 | else |
| 231 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 232 | #else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 233 | esdhc_write32(®s->dsaddr, (u32)data->src); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 234 | #endif |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 235 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 236 | } |
| 237 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 238 | esdhc_write32(®s->blkattr, data->blocks << 16 | data->blocksize); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 239 | |
| 240 | /* Calculate the timeout period for data transactions */ |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 241 | /* |
| 242 | * 1)Timeout period = (2^(timeout+13)) SD Clock cycles |
| 243 | * 2)Timeout period should be minimum 0.250sec as per SD Card spec |
| 244 | * So, Number of SD Clock cycles for 0.25sec should be minimum |
| 245 | * (SD Clock/sec * 0.25 sec) SD Clock cycles |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 246 | * = (mmc->clock * 1/4) SD Clock cycles |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 247 | * As 1) >= 2) |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 248 | * => (2^(timeout+13)) >= mmc->clock * 1/4 |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 249 | * Taking log2 both the sides |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 250 | * => timeout + 13 >= log2(mmc->clock/4) |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 251 | * Rounding up to next power of 2 |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 252 | * => timeout + 13 = log2(mmc->clock/4) + 1 |
| 253 | * => timeout + 13 = fls(mmc->clock/4) |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 254 | */ |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 255 | timeout = fls(mmc->clock/4); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 256 | timeout -= 13; |
| 257 | |
| 258 | if (timeout > 14) |
| 259 | timeout = 14; |
| 260 | |
| 261 | if (timeout < 0) |
| 262 | timeout = 0; |
| 263 | |
Kumar Gala | 5103a03 | 2011-01-29 15:36:10 -0600 | [diff] [blame] | 264 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC_A001 |
| 265 | if ((timeout == 4) || (timeout == 8) || (timeout == 12)) |
| 266 | timeout++; |
| 267 | #endif |
| 268 | |
Haijun.Zhang | 1336e2d | 2014-03-18 17:04:23 +0800 | [diff] [blame] | 269 | #ifdef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE |
| 270 | timeout = 0xE; |
| 271 | #endif |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 272 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 277 | static void check_and_invalidate_dcache_range |
| 278 | (struct mmc_cmd *cmd, |
| 279 | struct mmc_data *data) { |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 280 | #ifdef CONFIG_LS2085A |
| 281 | unsigned start = 0; |
| 282 | #else |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 283 | unsigned start = (unsigned)data->dest ; |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 284 | #endif |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 285 | unsigned size = roundup(ARCH_DMA_MINALIGN, |
| 286 | data->blocks*data->blocksize); |
| 287 | unsigned end = start+size ; |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 288 | #ifdef CONFIG_LS2085A |
| 289 | dma_addr_t addr; |
| 290 | |
| 291 | addr = virt_to_phys((void *)(data->dest)); |
| 292 | if (upper_32_bits(addr)) |
| 293 | printf("Error found for upper 32 bits\n"); |
| 294 | else |
| 295 | start = lower_32_bits(addr); |
| 296 | #endif |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 297 | invalidate_dcache_range(start, end); |
| 298 | } |
Tom Rini | 10dc777 | 2014-05-23 09:19:05 -0400 | [diff] [blame] | 299 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 300 | /* |
| 301 | * Sends a command out on the bus. Takes the mmc pointer, |
| 302 | * a command pointer, and an optional data pointer. |
| 303 | */ |
| 304 | static int |
| 305 | esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) |
| 306 | { |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 307 | int err = 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 308 | uint xfertyp; |
| 309 | uint irqstat; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 310 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 311 | volatile struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 312 | |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 313 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 314 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 315 | return 0; |
| 316 | #endif |
| 317 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 318 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 319 | |
| 320 | sync(); |
| 321 | |
| 322 | /* Wait for the bus to be idle */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 323 | while ((esdhc_read32(®s->prsstat) & PRSSTAT_CICHB) || |
| 324 | (esdhc_read32(®s->prsstat) & PRSSTAT_CIDHB)) |
| 325 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 326 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 327 | while (esdhc_read32(®s->prsstat) & PRSSTAT_DLA) |
| 328 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 329 | |
| 330 | /* Wait at least 8 SD clock cycles before the next command */ |
| 331 | /* |
| 332 | * Note: This is way more than 8 cycles, but 1ms seems to |
| 333 | * resolve timing issues with some cards |
| 334 | */ |
| 335 | udelay(1000); |
| 336 | |
| 337 | /* Set up for a data transfer if we have one */ |
| 338 | if (data) { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 339 | err = esdhc_setup_data(mmc, data); |
| 340 | if(err) |
| 341 | return err; |
Peng Fan | 4683b22 | 2015-06-25 10:32:26 +0800 | [diff] [blame] | 342 | |
| 343 | if (data->flags & MMC_DATA_READ) |
| 344 | check_and_invalidate_dcache_range(cmd, data); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | /* Figure out the transfer arguments */ |
| 348 | xfertyp = esdhc_xfertyp(cmd, data); |
| 349 | |
Andrew Gabbasov | 01b7735 | 2013-06-11 10:34:22 -0500 | [diff] [blame] | 350 | /* Mask all irqs */ |
| 351 | esdhc_write32(®s->irqsigen, 0); |
| 352 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 353 | /* Send the command */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 354 | esdhc_write32(®s->cmdarg, cmd->cmdarg); |
Jason Liu | 4692708 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 355 | #if defined(CONFIG_FSL_USDHC) |
| 356 | esdhc_write32(®s->mixctrl, |
Volodymyr Riazantsev | 0e1bf61 | 2015-01-20 10:16:44 -0500 | [diff] [blame] | 357 | (esdhc_read32(®s->mixctrl) & 0xFFFFFF80) | (xfertyp & 0x7F) |
| 358 | | (mmc->ddr_mode ? XFERTYP_DDREN : 0)); |
Jason Liu | 4692708 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 359 | esdhc_write32(®s->xfertyp, xfertyp & 0xFFFF0000); |
| 360 | #else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 361 | esdhc_write32(®s->xfertyp, xfertyp); |
Jason Liu | 4692708 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 362 | #endif |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 363 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 364 | /* Wait for the command to complete */ |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 365 | while (!(esdhc_read32(®s->irqstat) & (IRQSTAT_CC | IRQSTAT_CTOE))) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 366 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 367 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 368 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 369 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 370 | if (irqstat & CMD_ERR) { |
| 371 | err = COMM_ERR; |
| 372 | goto out; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 373 | } |
| 374 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 375 | if (irqstat & IRQSTAT_CTOE) { |
| 376 | err = TIMEOUT; |
| 377 | goto out; |
| 378 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 379 | |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 380 | /* Switch voltage to 1.8V if CMD11 succeeded */ |
| 381 | if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V) { |
| 382 | esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 383 | |
| 384 | printf("Run CMD11 1.8V switch\n"); |
| 385 | /* Sleep for 5 ms - max time for card to switch to 1.8V */ |
| 386 | udelay(5000); |
| 387 | } |
| 388 | |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 389 | /* Workaround for ESDHC errata ENGcm03648 */ |
| 390 | if (!data && (cmd->resp_type & MMC_RSP_BUSY)) { |
Yangbo Lu | 253d5bd | 2015-04-15 10:13:12 +0800 | [diff] [blame] | 391 | int timeout = 6000; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 392 | |
Yangbo Lu | 253d5bd | 2015-04-15 10:13:12 +0800 | [diff] [blame] | 393 | /* Poll on DATA0 line for cmd with busy signal for 600 ms */ |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 394 | while (timeout > 0 && !(esdhc_read32(®s->prsstat) & |
| 395 | PRSSTAT_DAT0)) { |
| 396 | udelay(100); |
| 397 | timeout--; |
| 398 | } |
| 399 | |
| 400 | if (timeout <= 0) { |
| 401 | printf("Timeout waiting for DAT0 to go high!\n"); |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 402 | err = TIMEOUT; |
| 403 | goto out; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 404 | } |
| 405 | } |
| 406 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 407 | /* Copy the response to the response buffer */ |
| 408 | if (cmd->resp_type & MMC_RSP_136) { |
| 409 | u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0; |
| 410 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 411 | cmdrsp3 = esdhc_read32(®s->cmdrsp3); |
| 412 | cmdrsp2 = esdhc_read32(®s->cmdrsp2); |
| 413 | cmdrsp1 = esdhc_read32(®s->cmdrsp1); |
| 414 | cmdrsp0 = esdhc_read32(®s->cmdrsp0); |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 415 | cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24); |
| 416 | cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24); |
| 417 | cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24); |
| 418 | cmd->response[3] = (cmdrsp0 << 8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 419 | } else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 420 | cmd->response[0] = esdhc_read32(®s->cmdrsp0); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 421 | |
| 422 | /* Wait until all of the blocks are transferred */ |
| 423 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 424 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 425 | esdhc_pio_read_write(mmc, data); |
| 426 | #else |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 427 | do { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 428 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 429 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 430 | if (irqstat & IRQSTAT_DTOE) { |
| 431 | err = TIMEOUT; |
| 432 | goto out; |
| 433 | } |
Frans Meulenbroeks | 63fb5a7 | 2010-07-31 04:45:18 +0000 | [diff] [blame] | 434 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 435 | if (irqstat & DATA_ERR) { |
| 436 | err = COMM_ERR; |
| 437 | goto out; |
| 438 | } |
Andrew Gabbasov | 9b74dc5 | 2013-04-07 23:06:08 +0000 | [diff] [blame] | 439 | } while ((irqstat & DATA_COMPLETE) != DATA_COMPLETE); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 440 | |
Peng Fan | 4683b22 | 2015-06-25 10:32:26 +0800 | [diff] [blame] | 441 | /* |
| 442 | * Need invalidate the dcache here again to avoid any |
| 443 | * cache-fill during the DMA operations such as the |
| 444 | * speculative pre-fetching etc. |
| 445 | */ |
Eric Nelson | 54899fc | 2013-04-03 12:31:56 +0000 | [diff] [blame] | 446 | if (data->flags & MMC_DATA_READ) |
| 447 | check_and_invalidate_dcache_range(cmd, data); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 448 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 449 | } |
| 450 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 451 | out: |
| 452 | /* Reset CMD and DATA portions on error */ |
| 453 | if (err) { |
| 454 | esdhc_write32(®s->sysctl, esdhc_read32(®s->sysctl) | |
| 455 | SYSCTL_RSTC); |
| 456 | while (esdhc_read32(®s->sysctl) & SYSCTL_RSTC) |
| 457 | ; |
| 458 | |
| 459 | if (data) { |
| 460 | esdhc_write32(®s->sysctl, |
| 461 | esdhc_read32(®s->sysctl) | |
| 462 | SYSCTL_RSTD); |
| 463 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTD)) |
| 464 | ; |
| 465 | } |
Otavio Salvador | f022d36 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 466 | |
| 467 | /* If this was CMD11, then notify that power cycle is needed */ |
| 468 | if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V) |
| 469 | printf("CMD11 to switch to 1.8V mode failed, card requires power cycle.\n"); |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 470 | } |
| 471 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 472 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 473 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 474 | return err; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 475 | } |
| 476 | |
Kim Phillips | eafa90a | 2012-10-29 13:34:44 +0000 | [diff] [blame] | 477 | static void set_sysctl(struct mmc *mmc, uint clock) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 478 | { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 479 | int div, pre_div; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 480 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 481 | 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] | 482 | int sdhc_clk = cfg->sdhc_clk; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 483 | uint clk; |
| 484 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 485 | if (clock < mmc->cfg->f_min) |
| 486 | clock = mmc->cfg->f_min; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 487 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 488 | if (sdhc_clk / 16 > clock) { |
| 489 | for (pre_div = 2; pre_div < 256; pre_div *= 2) |
| 490 | if ((sdhc_clk / pre_div) <= (clock * 16)) |
| 491 | break; |
| 492 | } else |
| 493 | pre_div = 2; |
| 494 | |
| 495 | for (div = 1; div <= 16; div++) |
| 496 | if ((sdhc_clk / (div * pre_div)) <= clock) |
| 497 | break; |
| 498 | |
Volodymyr Riazantsev | 0e1bf61 | 2015-01-20 10:16:44 -0500 | [diff] [blame] | 499 | pre_div >>= mmc->ddr_mode ? 2 : 1; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 500 | div -= 1; |
| 501 | |
| 502 | clk = (pre_div << 8) | (div << 4); |
| 503 | |
Kumar Gala | cc4d122 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 504 | esdhc_clrbits32(®s->sysctl, SYSCTL_CKEN); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 505 | |
| 506 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_CLOCK_MASK, clk); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 507 | |
| 508 | udelay(10000); |
| 509 | |
Kumar Gala | cc4d122 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 510 | clk = SYSCTL_PEREN | SYSCTL_CKEN; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 511 | |
| 512 | esdhc_setbits32(®s->sysctl, clk); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 513 | } |
| 514 | |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 515 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
| 516 | static void esdhc_clock_control(struct mmc *mmc, bool enable) |
| 517 | { |
| 518 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
| 519 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
| 520 | u32 value; |
| 521 | u32 time_out; |
| 522 | |
| 523 | value = esdhc_read32(®s->sysctl); |
| 524 | |
| 525 | if (enable) |
| 526 | value |= SYSCTL_CKEN; |
| 527 | else |
| 528 | value &= ~SYSCTL_CKEN; |
| 529 | |
| 530 | esdhc_write32(®s->sysctl, value); |
| 531 | |
| 532 | time_out = 20; |
| 533 | value = PRSSTAT_SDSTB; |
| 534 | while (!(esdhc_read32(®s->prsstat) & value)) { |
| 535 | if (time_out == 0) { |
| 536 | printf("fsl_esdhc: Internal clock never stabilised.\n"); |
| 537 | break; |
| 538 | } |
| 539 | time_out--; |
| 540 | mdelay(1); |
| 541 | } |
| 542 | } |
| 543 | #endif |
| 544 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 545 | static void esdhc_set_ios(struct mmc *mmc) |
| 546 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 547 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 548 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 549 | |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 550 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
| 551 | /* Select to use peripheral clock */ |
| 552 | esdhc_clock_control(mmc, false); |
| 553 | esdhc_setbits32(®s->scr, ESDHCCTL_PCS); |
| 554 | esdhc_clock_control(mmc, true); |
| 555 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 556 | /* Set the clock speed */ |
| 557 | set_sysctl(mmc, mmc->clock); |
| 558 | |
| 559 | /* Set the bus width */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 560 | esdhc_clrbits32(®s->proctl, PROCTL_DTW_4 | PROCTL_DTW_8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 561 | |
| 562 | if (mmc->bus_width == 4) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 563 | esdhc_setbits32(®s->proctl, PROCTL_DTW_4); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 564 | else if (mmc->bus_width == 8) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 565 | esdhc_setbits32(®s->proctl, PROCTL_DTW_8); |
| 566 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | static int esdhc_init(struct mmc *mmc) |
| 570 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 571 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 572 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 573 | int timeout = 1000; |
| 574 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 575 | /* Reset the entire host controller */ |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 576 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 577 | |
| 578 | /* Wait until the controller is available */ |
| 579 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA) && --timeout) |
| 580 | udelay(1000); |
| 581 | |
Benoît Thébaudeau | 16e43f3 | 2012-08-13 07:28:16 +0000 | [diff] [blame] | 582 | #ifndef ARCH_MXC |
P.V.Suresh | 2c1764e | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 583 | /* Enable cache snooping */ |
Benoît Thébaudeau | 16e43f3 | 2012-08-13 07:28:16 +0000 | [diff] [blame] | 584 | esdhc_write32(®s->scr, 0x00000040); |
| 585 | #endif |
P.V.Suresh | 2c1764e | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 586 | |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 587 | esdhc_setbits32(®s->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 588 | |
| 589 | /* Set the initial clock speed */ |
Jerry Huang | 4a6ee17 | 2010-11-25 17:06:07 +0000 | [diff] [blame] | 590 | mmc_set_clock(mmc, 400000); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 591 | |
| 592 | /* Disable the BRR and BWR bits in IRQSTAT */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 593 | esdhc_clrbits32(®s->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 594 | |
| 595 | /* Put the PROCTL reg back to the default */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 596 | esdhc_write32(®s->proctl, PROCTL_INIT); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 597 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 598 | /* Set timout to the maximum value */ |
| 599 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 600 | |
Otavio Salvador | ee0c538 | 2015-02-17 10:42:44 -0200 | [diff] [blame] | 601 | #ifdef CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT |
| 602 | esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 603 | #endif |
| 604 | |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 605 | return 0; |
| 606 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 607 | |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 608 | static int esdhc_getcd(struct mmc *mmc) |
| 609 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 610 | struct fsl_esdhc_cfg *cfg = mmc->priv; |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 611 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
| 612 | int timeout = 1000; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 613 | |
Haijun.Zhang | f7e27cc | 2014-01-10 13:52:17 +0800 | [diff] [blame] | 614 | #ifdef CONFIG_ESDHC_DETECT_QUIRK |
| 615 | if (CONFIG_ESDHC_DETECT_QUIRK) |
| 616 | return 1; |
| 617 | #endif |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 618 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_CINS) && --timeout) |
| 619 | udelay(1000); |
| 620 | |
| 621 | return timeout > 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 622 | } |
| 623 | |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 624 | static void esdhc_reset(struct fsl_esdhc *regs) |
| 625 | { |
| 626 | unsigned long timeout = 100; /* wait max 100 ms */ |
| 627 | |
| 628 | /* reset the controller */ |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 629 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 630 | |
| 631 | /* hardware clears the bit when it is done */ |
| 632 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA) && --timeout) |
| 633 | udelay(1000); |
| 634 | if (!timeout) |
| 635 | printf("MMC/SD: Reset never completed.\n"); |
| 636 | } |
| 637 | |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 638 | static const struct mmc_ops esdhc_ops = { |
| 639 | .send_cmd = esdhc_send_cmd, |
| 640 | .set_ios = esdhc_set_ios, |
| 641 | .init = esdhc_init, |
| 642 | .getcd = esdhc_getcd, |
| 643 | }; |
| 644 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 645 | int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 646 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 647 | struct fsl_esdhc *regs; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 648 | struct mmc *mmc; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 649 | u32 caps, voltage_caps; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 650 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 651 | if (!cfg) |
| 652 | return -1; |
| 653 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 654 | regs = (struct fsl_esdhc *)cfg->esdhc_base; |
| 655 | |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 656 | /* First reset the eSDHC controller */ |
| 657 | esdhc_reset(regs); |
| 658 | |
Jerry Huang | 975324a | 2012-05-17 23:57:02 +0000 | [diff] [blame] | 659 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_HCKEN |
| 660 | | SYSCTL_IPGEN | SYSCTL_CKEN); |
| 661 | |
Ye.Li | a3d6e38 | 2014-11-04 15:35:49 +0800 | [diff] [blame] | 662 | writel(SDHCI_IRQ_EN_BITS, ®s->irqstaten); |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 663 | memset(&cfg->cfg, 0, sizeof(cfg->cfg)); |
| 664 | |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 665 | voltage_caps = 0; |
Wang Huan | 19060bd | 2014-09-05 13:52:40 +0800 | [diff] [blame] | 666 | caps = esdhc_read32(®s->hostcapblt); |
Roy Zang | 3b4456e | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 667 | |
| 668 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135 |
| 669 | caps = caps & ~(ESDHC_HOSTCAPBLT_SRS | |
| 670 | ESDHC_HOSTCAPBLT_VS18 | ESDHC_HOSTCAPBLT_VS30); |
| 671 | #endif |
Haijun.Zhang | ef38f3f | 2013-10-31 09:38:19 +0800 | [diff] [blame] | 672 | |
| 673 | /* T4240 host controller capabilities register should have VS33 bit */ |
| 674 | #ifdef CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
| 675 | caps = caps | ESDHC_HOSTCAPBLT_VS33; |
| 676 | #endif |
| 677 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 678 | if (caps & ESDHC_HOSTCAPBLT_VS18) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 679 | voltage_caps |= MMC_VDD_165_195; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 680 | if (caps & ESDHC_HOSTCAPBLT_VS30) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 681 | voltage_caps |= MMC_VDD_29_30 | MMC_VDD_30_31; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 682 | if (caps & ESDHC_HOSTCAPBLT_VS33) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 683 | voltage_caps |= MMC_VDD_32_33 | MMC_VDD_33_34; |
| 684 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 685 | cfg->cfg.name = "FSL_SDHC"; |
| 686 | cfg->cfg.ops = &esdhc_ops; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 687 | #ifdef CONFIG_SYS_SD_VOLTAGE |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 688 | cfg->cfg.voltages = CONFIG_SYS_SD_VOLTAGE; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 689 | #else |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 690 | cfg->cfg.voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 691 | #endif |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 692 | if ((cfg->cfg.voltages & voltage_caps) == 0) { |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 693 | printf("voltage not supported by controller\n"); |
| 694 | return -1; |
| 695 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 696 | |
Rob Herring | 5a20397 | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 697 | cfg->cfg.host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT; |
Volodymyr Riazantsev | 0e1bf61 | 2015-01-20 10:16:44 -0500 | [diff] [blame] | 698 | #ifdef CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE |
| 699 | cfg->cfg.host_caps |= MMC_MODE_DDR_52MHz; |
| 700 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 701 | |
Abbas Raza | aad4659 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 702 | if (cfg->max_bus_width > 0) { |
| 703 | if (cfg->max_bus_width < 8) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 704 | cfg->cfg.host_caps &= ~MMC_MODE_8BIT; |
Abbas Raza | aad4659 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 705 | if (cfg->max_bus_width < 4) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 706 | cfg->cfg.host_caps &= ~MMC_MODE_4BIT; |
Abbas Raza | aad4659 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 707 | } |
| 708 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 709 | if (caps & ESDHC_HOSTCAPBLT_HSS) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 710 | cfg->cfg.host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 711 | |
Haijun.Zhang | d47e3d2 | 2014-01-10 13:52:18 +0800 | [diff] [blame] | 712 | #ifdef CONFIG_ESDHC_DETECT_8_BIT_QUIRK |
| 713 | if (CONFIG_ESDHC_DETECT_8_BIT_QUIRK) |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 714 | cfg->cfg.host_caps &= ~MMC_MODE_8BIT; |
Haijun.Zhang | d47e3d2 | 2014-01-10 13:52:18 +0800 | [diff] [blame] | 715 | #endif |
| 716 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 717 | cfg->cfg.f_min = 400000; |
Tom Rini | 21008ad | 2014-11-26 11:22:29 -0500 | [diff] [blame] | 718 | cfg->cfg.f_max = min(cfg->sdhc_clk, (u32)52000000); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 719 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 720 | cfg->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 721 | |
| 722 | mmc = mmc_create(&cfg->cfg, cfg); |
| 723 | if (mmc == NULL) |
| 724 | return -1; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 725 | |
| 726 | return 0; |
| 727 | } |
| 728 | |
| 729 | int fsl_esdhc_mmc_init(bd_t *bis) |
| 730 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 731 | struct fsl_esdhc_cfg *cfg; |
| 732 | |
Fabio Estevam | 88227a1 | 2012-12-27 08:51:08 +0000 | [diff] [blame] | 733 | cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 734 | cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR; |
Simon Glass | e9adeca | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 735 | cfg->sdhc_clk = gd->arch.sdhc_clk; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 736 | return fsl_esdhc_initialize(bis, cfg); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 737 | } |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 738 | |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 739 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 740 | void mmc_adapter_card_type_ident(void) |
| 741 | { |
| 742 | u8 card_id; |
| 743 | u8 value; |
| 744 | |
| 745 | card_id = QIXIS_READ(present) & QIXIS_SDID_MASK; |
| 746 | gd->arch.sdhc_adapter = card_id; |
| 747 | |
| 748 | switch (card_id) { |
| 749 | case QIXIS_ESDHC_ADAPTER_TYPE_EMMC45: |
| 750 | break; |
| 751 | case QIXIS_ESDHC_ADAPTER_TYPE_SDMMC_LEGACY: |
| 752 | break; |
| 753 | case QIXIS_ESDHC_ADAPTER_TYPE_EMMC44: |
| 754 | value = QIXIS_READ(brdcfg[5]); |
| 755 | value |= (QIXIS_SDCLKIN | QIXIS_SDCLKOUT); |
| 756 | QIXIS_WRITE(brdcfg[5], value); |
| 757 | break; |
| 758 | case QIXIS_ESDHC_ADAPTER_TYPE_RSV: |
| 759 | break; |
| 760 | case QIXIS_ESDHC_ADAPTER_TYPE_MMC: |
| 761 | break; |
| 762 | case QIXIS_ESDHC_ADAPTER_TYPE_SD: |
| 763 | break; |
| 764 | case QIXIS_ESDHC_NO_ADAPTER: |
| 765 | break; |
| 766 | default: |
| 767 | break; |
| 768 | } |
| 769 | } |
| 770 | #endif |
| 771 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 772 | #ifdef CONFIG_OF_LIBFDT |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 773 | void fdt_fixup_esdhc(void *blob, bd_t *bd) |
| 774 | { |
| 775 | const char *compat = "fsl,esdhc"; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 776 | |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 777 | #ifdef CONFIG_FSL_ESDHC_PIN_MUX |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 778 | if (!hwconfig("esdhc")) { |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 779 | do_fixup_by_compat(blob, compat, "status", "disabled", |
| 780 | 8 + 1, 1); |
| 781 | return; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 782 | } |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 783 | #endif |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 784 | |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 785 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
| 786 | do_fixup_by_compat_u32(blob, compat, "peripheral-frequency", |
| 787 | gd->arch.sdhc_clk, 1); |
| 788 | #else |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 789 | do_fixup_by_compat_u32(blob, compat, "clock-frequency", |
Simon Glass | e9adeca | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 790 | gd->arch.sdhc_clk, 1); |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 791 | #endif |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 792 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 793 | do_fixup_by_compat_u32(blob, compat, "adapter-type", |
| 794 | (u32)(gd->arch.sdhc_adapter), 1); |
| 795 | #endif |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 796 | do_fixup_by_compat(blob, compat, "status", "okay", |
| 797 | 4 + 1, 1); |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 798 | } |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 799 | #endif |