Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 2 | /* |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 3 | * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc |
Yangbo Lu | 66fa035 | 2019-05-23 11:05:46 +0800 | [diff] [blame] | 4 | * Copyright 2019 NXP Semiconductors |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 5 | * Andy Fleming |
| 6 | * |
| 7 | * Based vaguely on the pxa mmc code: |
| 8 | * (C) Copyright 2003 |
| 9 | * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net |
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> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame^] | 15 | #include <cpu_func.h> |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 16 | #include <errno.h> |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 17 | #include <hwconfig.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 18 | #include <mmc.h> |
| 19 | #include <part.h> |
| 20 | #include <malloc.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 21 | #include <fsl_esdhc.h> |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 22 | #include <fdt_support.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 23 | #include <asm/io.h> |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 24 | #include <dm.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 25 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
| 28 | struct fsl_esdhc { |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 29 | uint dsaddr; /* SDMA system address register */ |
| 30 | uint blkattr; /* Block attributes register */ |
| 31 | uint cmdarg; /* Command argument register */ |
| 32 | uint xfertyp; /* Transfer type register */ |
| 33 | uint cmdrsp0; /* Command response 0 register */ |
| 34 | uint cmdrsp1; /* Command response 1 register */ |
| 35 | uint cmdrsp2; /* Command response 2 register */ |
| 36 | uint cmdrsp3; /* Command response 3 register */ |
| 37 | uint datport; /* Buffer data port register */ |
| 38 | uint prsstat; /* Present state register */ |
| 39 | uint proctl; /* Protocol control register */ |
| 40 | uint sysctl; /* System Control Register */ |
| 41 | uint irqstat; /* Interrupt status register */ |
| 42 | uint irqstaten; /* Interrupt status enable register */ |
| 43 | uint irqsigen; /* Interrupt signal enable register */ |
| 44 | uint autoc12err; /* Auto CMD error status register */ |
| 45 | uint hostcapblt; /* Host controller capabilities register */ |
| 46 | uint wml; /* Watermark level register */ |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 47 | char reserved1[8]; /* reserved */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 48 | uint fevt; /* Force event register */ |
| 49 | uint admaes; /* ADMA error status register */ |
| 50 | uint adsaddr; /* ADMA system address register */ |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 51 | char reserved2[160]; |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 52 | uint hostver; /* Host controller version register */ |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 53 | char reserved3[4]; /* reserved */ |
Peng Fan | 59d3782 | 2018-01-21 19:00:22 +0800 | [diff] [blame] | 54 | uint dmaerraddr; /* DMA error address register */ |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 55 | char reserved4[4]; /* reserved */ |
Peng Fan | 59d3782 | 2018-01-21 19:00:22 +0800 | [diff] [blame] | 56 | uint dmaerrattr; /* DMA error attribute register */ |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 57 | char reserved5[4]; /* reserved */ |
Haijun.Zhang | 511948b | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 58 | uint hostcapblt2; /* Host controller capabilities register 2 */ |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 59 | char reserved6[756]; /* reserved */ |
| 60 | uint esdhcctl; /* eSDHC control register */ |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 61 | }; |
| 62 | |
Simon Glass | e88e1d9 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 63 | struct fsl_esdhc_plat { |
| 64 | struct mmc_config cfg; |
| 65 | struct mmc mmc; |
| 66 | }; |
| 67 | |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 68 | /** |
| 69 | * struct fsl_esdhc_priv |
| 70 | * |
| 71 | * @esdhc_regs: registers of the sdhc controller |
| 72 | * @sdhc_clk: Current clk of the sdhc controller |
| 73 | * @bus_width: bus width, 1bit, 4bit or 8bit |
| 74 | * @cfg: mmc config |
| 75 | * @mmc: mmc |
| 76 | * Following is used when Driver Model is enabled for MMC |
| 77 | * @dev: pointer for the device |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 78 | * @cd_gpio: gpio for card detection |
Peng Fan | 1483151 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 79 | * @wp_gpio: gpio for write protection |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 80 | */ |
| 81 | struct fsl_esdhc_priv { |
| 82 | struct fsl_esdhc *esdhc_regs; |
| 83 | unsigned int sdhc_clk; |
Peng Fan | 51313b4 | 2018-01-21 19:00:24 +0800 | [diff] [blame] | 84 | unsigned int clock; |
Yangbo Lu | 41dec2f | 2019-10-21 18:09:07 +0800 | [diff] [blame] | 85 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 86 | struct mmc *mmc; |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 87 | #endif |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 88 | struct udevice *dev; |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 89 | }; |
| 90 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 91 | /* Return the XFERTYP flags for a given command and data packet */ |
Kim Phillips | eafa90a | 2012-10-29 13:34:44 +0000 | [diff] [blame] | 92 | static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 93 | { |
| 94 | uint xfertyp = 0; |
| 95 | |
| 96 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 97 | xfertyp |= XFERTYP_DPSEL; |
| 98 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 99 | xfertyp |= XFERTYP_DMAEN; |
| 100 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 101 | if (data->blocks > 1) { |
| 102 | xfertyp |= XFERTYP_MSBSEL; |
| 103 | xfertyp |= XFERTYP_BCEN; |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 104 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 105 | xfertyp |= XFERTYP_AC12EN; |
| 106 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | if (data->flags & MMC_DATA_READ) |
| 110 | xfertyp |= XFERTYP_DTDSEL; |
| 111 | } |
| 112 | |
| 113 | if (cmd->resp_type & MMC_RSP_CRC) |
| 114 | xfertyp |= XFERTYP_CCCEN; |
| 115 | if (cmd->resp_type & MMC_RSP_OPCODE) |
| 116 | xfertyp |= XFERTYP_CICEN; |
| 117 | if (cmd->resp_type & MMC_RSP_136) |
| 118 | xfertyp |= XFERTYP_RSPTYP_136; |
| 119 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 120 | xfertyp |= XFERTYP_RSPTYP_48_BUSY; |
| 121 | else if (cmd->resp_type & MMC_RSP_PRESENT) |
| 122 | xfertyp |= XFERTYP_RSPTYP_48; |
| 123 | |
Jason Liu | 4571de3 | 2011-03-22 01:32:31 +0000 | [diff] [blame] | 124 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 125 | xfertyp |= XFERTYP_CMDTYP_ABORT; |
Yangbo Lu | 2550344 | 2016-01-21 17:33:19 +0800 | [diff] [blame] | 126 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 127 | return XFERTYP_CMD(cmd->cmdidx) | xfertyp; |
| 128 | } |
| 129 | |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 130 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 131 | /* |
| 132 | * PIO Read/Write Mode reduce the performace as DMA is not used in this mode. |
| 133 | */ |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 134 | static void esdhc_pio_read_write(struct fsl_esdhc_priv *priv, |
| 135 | struct mmc_data *data) |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 136 | { |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 137 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 138 | uint blocks; |
| 139 | char *buffer; |
| 140 | uint databuf; |
| 141 | uint size; |
| 142 | uint irqstat; |
Benoît Thébaudeau | bcfb365 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 143 | ulong start; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 144 | |
| 145 | if (data->flags & MMC_DATA_READ) { |
| 146 | blocks = data->blocks; |
| 147 | buffer = data->dest; |
| 148 | while (blocks) { |
Benoît Thébaudeau | bcfb365 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 149 | start = get_timer(0); |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 150 | size = data->blocksize; |
| 151 | irqstat = esdhc_read32(®s->irqstat); |
Benoît Thébaudeau | bcfb365 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 152 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BREN)) { |
| 153 | if (get_timer(start) > PIO_TIMEOUT) { |
| 154 | printf("\nData Read Failed in PIO Mode."); |
| 155 | return; |
| 156 | } |
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 | irqstat = esdhc_read32(®s->irqstat); |
| 161 | databuf = in_le32(®s->datport); |
| 162 | *((uint *)buffer) = databuf; |
| 163 | buffer += 4; |
| 164 | size -= 4; |
| 165 | } |
| 166 | blocks--; |
| 167 | } |
| 168 | } else { |
| 169 | blocks = data->blocks; |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 170 | buffer = (char *)data->src; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 171 | while (blocks) { |
Benoît Thébaudeau | bcfb365 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 172 | start = get_timer(0); |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 173 | size = data->blocksize; |
| 174 | irqstat = esdhc_read32(®s->irqstat); |
Benoît Thébaudeau | bcfb365 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 175 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BWEN)) { |
| 176 | if (get_timer(start) > PIO_TIMEOUT) { |
| 177 | printf("\nData Write Failed in PIO Mode."); |
| 178 | return; |
| 179 | } |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 180 | } |
| 181 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 182 | udelay(100); /* Wait before last byte transfer complete */ |
| 183 | databuf = *((uint *)buffer); |
| 184 | buffer += 4; |
| 185 | size -= 4; |
| 186 | irqstat = esdhc_read32(®s->irqstat); |
| 187 | out_le32(®s->datport, databuf); |
| 188 | } |
| 189 | blocks--; |
| 190 | } |
| 191 | } |
| 192 | } |
| 193 | #endif |
| 194 | |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 195 | static int esdhc_setup_data(struct fsl_esdhc_priv *priv, struct mmc *mmc, |
| 196 | struct mmc_data *data) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 197 | { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 198 | int timeout; |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 199 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 200 | #if defined(CONFIG_FSL_LAYERSCAPE) |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 201 | dma_addr_t addr; |
| 202 | #endif |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 203 | uint wml_value; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 204 | |
| 205 | wml_value = data->blocksize/4; |
| 206 | |
| 207 | if (data->flags & MMC_DATA_READ) { |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 208 | if (wml_value > WML_RD_WML_MAX) |
| 209 | wml_value = WML_RD_WML_MAX_VAL; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 210 | |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 211 | esdhc_clrsetbits32(®s->wml, WML_RD_WML_MASK, wml_value); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 212 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 213 | #if defined(CONFIG_FSL_LAYERSCAPE) |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 214 | addr = virt_to_phys((void *)(data->dest)); |
| 215 | if (upper_32_bits(addr)) |
| 216 | printf("Error found for upper 32 bits\n"); |
| 217 | else |
| 218 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 219 | #else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 220 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 221 | #endif |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 222 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 223 | } else { |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 224 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 225 | flush_dcache_range((ulong)data->src, |
| 226 | (ulong)data->src+data->blocks |
| 227 | *data->blocksize); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 228 | #endif |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 229 | if (wml_value > WML_WR_WML_MAX) |
| 230 | wml_value = WML_WR_WML_MAX_VAL; |
Yangbo Lu | 0cc127c | 2019-10-31 18:54:25 +0800 | [diff] [blame] | 231 | |
| 232 | if (!(esdhc_read32(®s->prsstat) & PRSSTAT_WPSPL)) { |
| 233 | printf("Can not write to locked SD card.\n"); |
| 234 | return -EINVAL; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 235 | } |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 236 | |
| 237 | esdhc_clrsetbits32(®s->wml, WML_WR_WML_MASK, |
| 238 | wml_value << 16); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 239 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 240 | #if defined(CONFIG_FSL_LAYERSCAPE) |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 241 | addr = virt_to_phys((void *)(data->src)); |
| 242 | if (upper_32_bits(addr)) |
| 243 | printf("Error found for upper 32 bits\n"); |
| 244 | else |
| 245 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 246 | #else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 247 | esdhc_write32(®s->dsaddr, (u32)data->src); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 248 | #endif |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 249 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 250 | } |
| 251 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 252 | esdhc_write32(®s->blkattr, data->blocks << 16 | data->blocksize); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 253 | |
| 254 | /* Calculate the timeout period for data transactions */ |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 255 | /* |
| 256 | * 1)Timeout period = (2^(timeout+13)) SD Clock cycles |
| 257 | * 2)Timeout period should be minimum 0.250sec as per SD Card spec |
| 258 | * So, Number of SD Clock cycles for 0.25sec should be minimum |
| 259 | * (SD Clock/sec * 0.25 sec) SD Clock cycles |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 260 | * = (mmc->clock * 1/4) SD Clock cycles |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 261 | * As 1) >= 2) |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 262 | * => (2^(timeout+13)) >= mmc->clock * 1/4 |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 263 | * Taking log2 both the sides |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 264 | * => timeout + 13 >= log2(mmc->clock/4) |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 265 | * Rounding up to next power of 2 |
Andrew Gabbasov | fb82398 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 266 | * => timeout + 13 = log2(mmc->clock/4) + 1 |
| 267 | * => timeout + 13 = fls(mmc->clock/4) |
Yangbo Lu | e978a31 | 2015-12-30 14:19:30 +0800 | [diff] [blame] | 268 | * |
| 269 | * However, the MMC spec "It is strongly recommended for hosts to |
| 270 | * implement more than 500ms timeout value even if the card |
| 271 | * indicates the 250ms maximum busy length." Even the previous |
| 272 | * value of 300ms is known to be insufficient for some cards. |
| 273 | * So, we use |
| 274 | * => timeout + 13 = fls(mmc->clock/2) |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 275 | */ |
Yangbo Lu | e978a31 | 2015-12-30 14:19:30 +0800 | [diff] [blame] | 276 | timeout = fls(mmc->clock/2); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 277 | timeout -= 13; |
| 278 | |
| 279 | if (timeout > 14) |
| 280 | timeout = 14; |
| 281 | |
| 282 | if (timeout < 0) |
| 283 | timeout = 0; |
| 284 | |
Kumar Gala | 5103a03 | 2011-01-29 15:36:10 -0600 | [diff] [blame] | 285 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC_A001 |
| 286 | if ((timeout == 4) || (timeout == 8) || (timeout == 12)) |
| 287 | timeout++; |
| 288 | #endif |
| 289 | |
Haijun.Zhang | 1336e2d | 2014-03-18 17:04:23 +0800 | [diff] [blame] | 290 | #ifdef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE |
| 291 | timeout = 0xE; |
| 292 | #endif |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 293 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 294 | |
| 295 | return 0; |
| 296 | } |
| 297 | |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 298 | static void check_and_invalidate_dcache_range |
| 299 | (struct mmc_cmd *cmd, |
| 300 | struct mmc_data *data) { |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 301 | unsigned start = 0; |
Yangbo Lu | cc634e2 | 2016-05-12 19:12:58 +0800 | [diff] [blame] | 302 | unsigned end = 0; |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 303 | unsigned size = roundup(ARCH_DMA_MINALIGN, |
| 304 | data->blocks*data->blocksize); |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 305 | #if defined(CONFIG_FSL_LAYERSCAPE) |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 306 | dma_addr_t addr; |
| 307 | |
| 308 | addr = virt_to_phys((void *)(data->dest)); |
| 309 | if (upper_32_bits(addr)) |
| 310 | printf("Error found for upper 32 bits\n"); |
| 311 | else |
| 312 | start = lower_32_bits(addr); |
Yangbo Lu | cc634e2 | 2016-05-12 19:12:58 +0800 | [diff] [blame] | 313 | #else |
| 314 | start = (unsigned)data->dest; |
Yangbo Lu | 8b06460 | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 315 | #endif |
Yangbo Lu | cc634e2 | 2016-05-12 19:12:58 +0800 | [diff] [blame] | 316 | end = start + size; |
Eric Nelson | e576bd9 | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 317 | invalidate_dcache_range(start, end); |
| 318 | } |
Tom Rini | 10dc777 | 2014-05-23 09:19:05 -0400 | [diff] [blame] | 319 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 320 | /* |
| 321 | * Sends a command out on the bus. Takes the mmc pointer, |
| 322 | * a command pointer, and an optional data pointer. |
| 323 | */ |
Simon Glass | 9586aa6 | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 324 | static int esdhc_send_cmd_common(struct fsl_esdhc_priv *priv, struct mmc *mmc, |
| 325 | struct mmc_cmd *cmd, struct mmc_data *data) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 326 | { |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 327 | int err = 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 328 | uint xfertyp; |
| 329 | uint irqstat; |
Peng Fan | 51313b4 | 2018-01-21 19:00:24 +0800 | [diff] [blame] | 330 | u32 flags = IRQSTAT_CC | IRQSTAT_CTOE; |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 331 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Fabio Estevam | 29c2edb | 2018-11-19 10:31:53 -0200 | [diff] [blame] | 332 | unsigned long start; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 333 | |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 334 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 335 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 336 | return 0; |
| 337 | #endif |
| 338 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 339 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 340 | |
| 341 | sync(); |
| 342 | |
| 343 | /* Wait for the bus to be idle */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 344 | while ((esdhc_read32(®s->prsstat) & PRSSTAT_CICHB) || |
| 345 | (esdhc_read32(®s->prsstat) & PRSSTAT_CIDHB)) |
| 346 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 347 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 348 | while (esdhc_read32(®s->prsstat) & PRSSTAT_DLA) |
| 349 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 350 | |
| 351 | /* Wait at least 8 SD clock cycles before the next command */ |
| 352 | /* |
| 353 | * Note: This is way more than 8 cycles, but 1ms seems to |
| 354 | * resolve timing issues with some cards |
| 355 | */ |
| 356 | udelay(1000); |
| 357 | |
| 358 | /* Set up for a data transfer if we have one */ |
| 359 | if (data) { |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 360 | err = esdhc_setup_data(priv, mmc, data); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 361 | if(err) |
| 362 | return err; |
Peng Fan | 4683b22 | 2015-06-25 10:32:26 +0800 | [diff] [blame] | 363 | |
| 364 | if (data->flags & MMC_DATA_READ) |
| 365 | check_and_invalidate_dcache_range(cmd, data); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | /* Figure out the transfer arguments */ |
| 369 | xfertyp = esdhc_xfertyp(cmd, data); |
| 370 | |
Andrew Gabbasov | 01b7735 | 2013-06-11 10:34:22 -0500 | [diff] [blame] | 371 | /* Mask all irqs */ |
| 372 | esdhc_write32(®s->irqsigen, 0); |
| 373 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 374 | /* Send the command */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 375 | esdhc_write32(®s->cmdarg, cmd->cmdarg); |
| 376 | esdhc_write32(®s->xfertyp, xfertyp); |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 377 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 378 | /* Wait for the command to complete */ |
Fabio Estevam | 29c2edb | 2018-11-19 10:31:53 -0200 | [diff] [blame] | 379 | start = get_timer(0); |
| 380 | while (!(esdhc_read32(®s->irqstat) & flags)) { |
| 381 | if (get_timer(start) > 1000) { |
| 382 | err = -ETIMEDOUT; |
| 383 | goto out; |
| 384 | } |
| 385 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 386 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 387 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 388 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 389 | if (irqstat & CMD_ERR) { |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 390 | err = -ECOMM; |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 391 | goto out; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 394 | if (irqstat & IRQSTAT_CTOE) { |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 395 | err = -ETIMEDOUT; |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 396 | goto out; |
| 397 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 398 | |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 399 | /* Workaround for ESDHC errata ENGcm03648 */ |
| 400 | if (!data && (cmd->resp_type & MMC_RSP_BUSY)) { |
Yangbo Lu | 253d5bd | 2015-04-15 10:13:12 +0800 | [diff] [blame] | 401 | int timeout = 6000; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 402 | |
Yangbo Lu | 253d5bd | 2015-04-15 10:13:12 +0800 | [diff] [blame] | 403 | /* Poll on DATA0 line for cmd with busy signal for 600 ms */ |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 404 | while (timeout > 0 && !(esdhc_read32(®s->prsstat) & |
| 405 | PRSSTAT_DAT0)) { |
| 406 | udelay(100); |
| 407 | timeout--; |
| 408 | } |
| 409 | |
| 410 | if (timeout <= 0) { |
| 411 | printf("Timeout waiting for DAT0 to go high!\n"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 412 | err = -ETIMEDOUT; |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 413 | goto out; |
Dirk Behme | 7a5b802 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 414 | } |
| 415 | } |
| 416 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 417 | /* Copy the response to the response buffer */ |
| 418 | if (cmd->resp_type & MMC_RSP_136) { |
| 419 | u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0; |
| 420 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 421 | cmdrsp3 = esdhc_read32(®s->cmdrsp3); |
| 422 | cmdrsp2 = esdhc_read32(®s->cmdrsp2); |
| 423 | cmdrsp1 = esdhc_read32(®s->cmdrsp1); |
| 424 | cmdrsp0 = esdhc_read32(®s->cmdrsp0); |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 425 | cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24); |
| 426 | cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24); |
| 427 | cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24); |
| 428 | cmd->response[3] = (cmdrsp0 << 8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 429 | } else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 430 | cmd->response[0] = esdhc_read32(®s->cmdrsp0); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 431 | |
| 432 | /* Wait until all of the blocks are transferred */ |
| 433 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 434 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 435 | esdhc_pio_read_write(priv, data); |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 436 | #else |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 437 | do { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 438 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 439 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 440 | if (irqstat & IRQSTAT_DTOE) { |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 441 | err = -ETIMEDOUT; |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 442 | goto out; |
| 443 | } |
Frans Meulenbroeks | 63fb5a7 | 2010-07-31 04:45:18 +0000 | [diff] [blame] | 444 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 445 | if (irqstat & DATA_ERR) { |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 446 | err = -ECOMM; |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 447 | goto out; |
| 448 | } |
Yinbo Zhu | 6f883e5 | 2019-07-16 15:09:11 +0800 | [diff] [blame] | 449 | } while ((irqstat & DATA_COMPLETE) != DATA_COMPLETE); |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 450 | |
Peng Fan | 4683b22 | 2015-06-25 10:32:26 +0800 | [diff] [blame] | 451 | /* |
| 452 | * Need invalidate the dcache here again to avoid any |
| 453 | * cache-fill during the DMA operations such as the |
| 454 | * speculative pre-fetching etc. |
| 455 | */ |
Angelo Dureghello | 1f15cb8 | 2019-01-19 10:40:38 +0100 | [diff] [blame] | 456 | if (data->flags & MMC_DATA_READ) { |
Eric Nelson | 54899fc | 2013-04-03 12:31:56 +0000 | [diff] [blame] | 457 | check_and_invalidate_dcache_range(cmd, data); |
Angelo Dureghello | 1f15cb8 | 2019-01-19 10:40:38 +0100 | [diff] [blame] | 458 | } |
Ye.Li | 7168977 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 459 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 460 | } |
| 461 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 462 | out: |
| 463 | /* Reset CMD and DATA portions on error */ |
| 464 | if (err) { |
| 465 | esdhc_write32(®s->sysctl, esdhc_read32(®s->sysctl) | |
| 466 | SYSCTL_RSTC); |
| 467 | while (esdhc_read32(®s->sysctl) & SYSCTL_RSTC) |
| 468 | ; |
| 469 | |
| 470 | if (data) { |
| 471 | esdhc_write32(®s->sysctl, |
| 472 | esdhc_read32(®s->sysctl) | |
| 473 | SYSCTL_RSTD); |
| 474 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTD)) |
| 475 | ; |
| 476 | } |
| 477 | } |
| 478 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 479 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 480 | |
Andrew Gabbasov | 8a57302 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 481 | return err; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 482 | } |
| 483 | |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 484 | static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 485 | { |
Benoît Thébaudeau | b9b4f14 | 2018-01-16 22:44:18 +0100 | [diff] [blame] | 486 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Benoît Thébaudeau | 4f42528 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 487 | int div = 1; |
Benoît Thébaudeau | 4f42528 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 488 | int pre_div = 2; |
Yinbo Zhu | 6f883e5 | 2019-07-16 15:09:11 +0800 | [diff] [blame] | 489 | unsigned int sdhc_clk = priv->sdhc_clk; |
| 490 | u32 time_out; |
| 491 | u32 value; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 492 | uint clk; |
| 493 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 494 | if (clock < mmc->cfg->f_min) |
| 495 | clock = mmc->cfg->f_min; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 496 | |
Yangbo Lu | 5d336d1 | 2019-10-21 18:09:09 +0800 | [diff] [blame] | 497 | while (sdhc_clk / (16 * pre_div) > clock && pre_div < 256) |
Lukasz Majewski | b6a0427 | 2019-05-07 17:47:28 +0200 | [diff] [blame] | 498 | pre_div *= 2; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 499 | |
Yangbo Lu | 5d336d1 | 2019-10-21 18:09:09 +0800 | [diff] [blame] | 500 | while (sdhc_clk / (div * pre_div) > clock && div < 16) |
Lukasz Majewski | b6a0427 | 2019-05-07 17:47:28 +0200 | [diff] [blame] | 501 | div++; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 502 | |
Benoît Thébaudeau | 4f42528 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 503 | pre_div >>= 1; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 504 | div -= 1; |
| 505 | |
| 506 | clk = (pre_div << 8) | (div << 4); |
| 507 | |
Kumar Gala | cc4d122 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 508 | esdhc_clrbits32(®s->sysctl, SYSCTL_CKEN); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 509 | |
| 510 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_CLOCK_MASK, clk); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 511 | |
Yinbo Zhu | 6f883e5 | 2019-07-16 15:09:11 +0800 | [diff] [blame] | 512 | time_out = 20; |
| 513 | value = PRSSTAT_SDSTB; |
| 514 | while (!(esdhc_read32(®s->prsstat) & value)) { |
| 515 | if (time_out == 0) { |
| 516 | printf("fsl_esdhc: Internal clock never stabilised.\n"); |
| 517 | break; |
| 518 | } |
| 519 | time_out--; |
| 520 | mdelay(1); |
| 521 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 522 | |
Eric Nelson | f0b5f23 | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 523 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_CKEN); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 524 | } |
| 525 | |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 526 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 527 | static void esdhc_clock_control(struct fsl_esdhc_priv *priv, bool enable) |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 528 | { |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 529 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 530 | u32 value; |
| 531 | u32 time_out; |
| 532 | |
| 533 | value = esdhc_read32(®s->sysctl); |
| 534 | |
| 535 | if (enable) |
| 536 | value |= SYSCTL_CKEN; |
| 537 | else |
| 538 | value &= ~SYSCTL_CKEN; |
| 539 | |
| 540 | esdhc_write32(®s->sysctl, value); |
| 541 | |
| 542 | time_out = 20; |
| 543 | value = PRSSTAT_SDSTB; |
| 544 | while (!(esdhc_read32(®s->prsstat) & value)) { |
| 545 | if (time_out == 0) { |
| 546 | printf("fsl_esdhc: Internal clock never stabilised.\n"); |
| 547 | break; |
| 548 | } |
| 549 | time_out--; |
| 550 | mdelay(1); |
| 551 | } |
| 552 | } |
| 553 | #endif |
| 554 | |
Simon Glass | 9586aa6 | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 555 | static int esdhc_set_ios_common(struct fsl_esdhc_priv *priv, struct mmc *mmc) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 556 | { |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 557 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 558 | |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 559 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
| 560 | /* Select to use peripheral clock */ |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 561 | esdhc_clock_control(priv, false); |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 562 | esdhc_setbits32(®s->esdhcctl, ESDHCCTL_PCS); |
Simon Glass | 09b465f | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 563 | esdhc_clock_control(priv, true); |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 564 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 565 | /* Set the clock speed */ |
Peng Fan | 51313b4 | 2018-01-21 19:00:24 +0800 | [diff] [blame] | 566 | if (priv->clock != mmc->clock) |
| 567 | set_sysctl(priv, mmc, mmc->clock); |
| 568 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 569 | /* Set the bus width */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 570 | esdhc_clrbits32(®s->proctl, PROCTL_DTW_4 | PROCTL_DTW_8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 571 | |
| 572 | if (mmc->bus_width == 4) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 573 | esdhc_setbits32(®s->proctl, PROCTL_DTW_4); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 574 | else if (mmc->bus_width == 8) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 575 | esdhc_setbits32(®s->proctl, PROCTL_DTW_8); |
| 576 | |
Jaehoon Chung | 07b0b9c | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 577 | return 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 578 | } |
| 579 | |
Simon Glass | 9586aa6 | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 580 | static int esdhc_init_common(struct fsl_esdhc_priv *priv, struct mmc *mmc) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 581 | { |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 582 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Simon Glass | 201e828 | 2017-07-29 11:35:20 -0600 | [diff] [blame] | 583 | ulong start; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 584 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 585 | /* Reset the entire host controller */ |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 586 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 587 | |
| 588 | /* Wait until the controller is available */ |
Simon Glass | 201e828 | 2017-07-29 11:35:20 -0600 | [diff] [blame] | 589 | start = get_timer(0); |
| 590 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA)) { |
| 591 | if (get_timer(start) > 1000) |
| 592 | return -ETIMEDOUT; |
| 593 | } |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 594 | |
P.V.Suresh | 2c1764e | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 595 | /* Enable cache snooping */ |
Yangbo Lu | 4d8ff42 | 2019-06-21 11:42:29 +0800 | [diff] [blame] | 596 | esdhc_write32(®s->esdhcctl, 0x00000040); |
P.V.Suresh | 2c1764e | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 597 | |
Dirk Behme | a61da72 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 598 | esdhc_setbits32(®s->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 599 | |
| 600 | /* Set the initial clock speed */ |
Jaehoon Chung | 6511718 | 2018-01-26 19:25:29 +0900 | [diff] [blame] | 601 | mmc_set_clock(mmc, 400000, MMC_CLK_ENABLE); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 602 | |
| 603 | /* Disable the BRR and BWR bits in IRQSTAT */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 604 | esdhc_clrbits32(®s->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 605 | |
| 606 | /* Put the PROCTL reg back to the default */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 607 | esdhc_write32(®s->proctl, PROCTL_INIT); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 608 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 609 | /* Set timout to the maximum value */ |
| 610 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 611 | |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 612 | return 0; |
| 613 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 614 | |
Simon Glass | 9586aa6 | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 615 | static int esdhc_getcd_common(struct fsl_esdhc_priv *priv) |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 616 | { |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 617 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 618 | int timeout = 1000; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 619 | |
Haijun.Zhang | f7e27cc | 2014-01-10 13:52:17 +0800 | [diff] [blame] | 620 | #ifdef CONFIG_ESDHC_DETECT_QUIRK |
| 621 | if (CONFIG_ESDHC_DETECT_QUIRK) |
| 622 | return 1; |
| 623 | #endif |
Thierry Reding | d48d2e2 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 624 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_CINS) && --timeout) |
| 625 | udelay(1000); |
| 626 | |
| 627 | return timeout > 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 628 | } |
| 629 | |
Yangbo Lu | 5705973 | 2019-10-31 18:54:23 +0800 | [diff] [blame] | 630 | static void fsl_esdhc_get_cfg_common(struct fsl_esdhc_priv *priv, |
| 631 | struct mmc_config *cfg) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 632 | { |
Yangbo Lu | 5705973 | 2019-10-31 18:54:23 +0800 | [diff] [blame] | 633 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Yangbo Lu | 5b05fc0 | 2019-10-31 18:54:21 +0800 | [diff] [blame] | 634 | u32 caps; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 635 | |
Wang Huan | 19060bd | 2014-09-05 13:52:40 +0800 | [diff] [blame] | 636 | caps = esdhc_read32(®s->hostcapblt); |
Roy Zang | 3b4456e | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 637 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135 |
Yangbo Lu | 5b05fc0 | 2019-10-31 18:54:21 +0800 | [diff] [blame] | 638 | caps &= ~(HOSTCAPBLT_SRS | HOSTCAPBLT_VS18 | HOSTCAPBLT_VS30); |
Roy Zang | 3b4456e | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 639 | #endif |
Haijun.Zhang | ef38f3f | 2013-10-31 09:38:19 +0800 | [diff] [blame] | 640 | #ifdef CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
Yangbo Lu | 5b05fc0 | 2019-10-31 18:54:21 +0800 | [diff] [blame] | 641 | caps |= HOSTCAPBLT_VS33; |
Haijun.Zhang | ef38f3f | 2013-10-31 09:38:19 +0800 | [diff] [blame] | 642 | #endif |
Yangbo Lu | 5b05fc0 | 2019-10-31 18:54:21 +0800 | [diff] [blame] | 643 | if (caps & HOSTCAPBLT_VS18) |
| 644 | cfg->voltages |= MMC_VDD_165_195; |
| 645 | if (caps & HOSTCAPBLT_VS30) |
| 646 | cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31; |
| 647 | if (caps & HOSTCAPBLT_VS33) |
| 648 | cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 649 | |
Simon Glass | e88e1d9 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 650 | cfg->name = "FSL_SDHC"; |
Abbas Raza | aad4659 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 651 | |
Yangbo Lu | 5b05fc0 | 2019-10-31 18:54:21 +0800 | [diff] [blame] | 652 | if (caps & HOSTCAPBLT_HSS) |
Simon Glass | e88e1d9 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 653 | cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 654 | |
Simon Glass | e88e1d9 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 655 | cfg->f_min = 400000; |
Peng Fan | 51313b4 | 2018-01-21 19:00:24 +0800 | [diff] [blame] | 656 | cfg->f_max = min(priv->sdhc_clk, (u32)200000000); |
Simon Glass | e88e1d9 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 657 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 658 | } |
| 659 | |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 660 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 661 | void mmc_adapter_card_type_ident(void) |
| 662 | { |
| 663 | u8 card_id; |
| 664 | u8 value; |
| 665 | |
| 666 | card_id = QIXIS_READ(present) & QIXIS_SDID_MASK; |
| 667 | gd->arch.sdhc_adapter = card_id; |
| 668 | |
| 669 | switch (card_id) { |
| 670 | case QIXIS_ESDHC_ADAPTER_TYPE_EMMC45: |
Yangbo Lu | cdc6955 | 2015-09-17 10:27:12 +0800 | [diff] [blame] | 671 | value = QIXIS_READ(brdcfg[5]); |
| 672 | value |= (QIXIS_DAT4 | QIXIS_DAT5_6_7); |
| 673 | QIXIS_WRITE(brdcfg[5], value); |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 674 | break; |
| 675 | case QIXIS_ESDHC_ADAPTER_TYPE_SDMMC_LEGACY: |
Yangbo Lu | bf50be8 | 2015-09-17 10:27:48 +0800 | [diff] [blame] | 676 | value = QIXIS_READ(pwr_ctl[1]); |
| 677 | value |= QIXIS_EVDD_BY_SDHC_VS; |
| 678 | QIXIS_WRITE(pwr_ctl[1], value); |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 679 | break; |
| 680 | case QIXIS_ESDHC_ADAPTER_TYPE_EMMC44: |
| 681 | value = QIXIS_READ(brdcfg[5]); |
| 682 | value |= (QIXIS_SDCLKIN | QIXIS_SDCLKOUT); |
| 683 | QIXIS_WRITE(brdcfg[5], value); |
| 684 | break; |
| 685 | case QIXIS_ESDHC_ADAPTER_TYPE_RSV: |
| 686 | break; |
| 687 | case QIXIS_ESDHC_ADAPTER_TYPE_MMC: |
| 688 | break; |
| 689 | case QIXIS_ESDHC_ADAPTER_TYPE_SD: |
| 690 | break; |
| 691 | case QIXIS_ESDHC_NO_ADAPTER: |
| 692 | break; |
| 693 | default: |
| 694 | break; |
| 695 | } |
| 696 | } |
| 697 | #endif |
| 698 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 699 | #ifdef CONFIG_OF_LIBFDT |
Yangbo Lu | fce1e16 | 2017-01-17 10:43:54 +0800 | [diff] [blame] | 700 | __weak int esdhc_status_fixup(void *blob, const char *compat) |
| 701 | { |
| 702 | #ifdef CONFIG_FSL_ESDHC_PIN_MUX |
| 703 | if (!hwconfig("esdhc")) { |
| 704 | do_fixup_by_compat(blob, compat, "status", "disabled", |
| 705 | sizeof("disabled"), 1); |
| 706 | return 1; |
| 707 | } |
| 708 | #endif |
Yangbo Lu | fce1e16 | 2017-01-17 10:43:54 +0800 | [diff] [blame] | 709 | return 0; |
| 710 | } |
| 711 | |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 712 | void fdt_fixup_esdhc(void *blob, bd_t *bd) |
| 713 | { |
| 714 | const char *compat = "fsl,esdhc"; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 715 | |
Yangbo Lu | fce1e16 | 2017-01-17 10:43:54 +0800 | [diff] [blame] | 716 | if (esdhc_status_fixup(blob, compat)) |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 717 | return; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 718 | |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 719 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
| 720 | do_fixup_by_compat_u32(blob, compat, "peripheral-frequency", |
| 721 | gd->arch.sdhc_clk, 1); |
| 722 | #else |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 723 | do_fixup_by_compat_u32(blob, compat, "clock-frequency", |
Simon Glass | e9adeca | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 724 | gd->arch.sdhc_clk, 1); |
Yangbo Lu | 2d9ca2c | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 725 | #endif |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 726 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 727 | do_fixup_by_compat_u32(blob, compat, "adapter-type", |
| 728 | (u32)(gd->arch.sdhc_adapter), 1); |
| 729 | #endif |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 730 | } |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 731 | #endif |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 732 | |
Yangbo Lu | 6187047 | 2019-10-31 18:54:26 +0800 | [diff] [blame] | 733 | #if !CONFIG_IS_ENABLED(DM_MMC) |
| 734 | static int esdhc_getcd(struct mmc *mmc) |
| 735 | { |
| 736 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 737 | |
| 738 | return esdhc_getcd_common(priv); |
| 739 | } |
| 740 | |
| 741 | static int esdhc_init(struct mmc *mmc) |
| 742 | { |
| 743 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 744 | |
| 745 | return esdhc_init_common(priv, mmc); |
| 746 | } |
| 747 | |
| 748 | static int esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, |
| 749 | struct mmc_data *data) |
| 750 | { |
| 751 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 752 | |
| 753 | return esdhc_send_cmd_common(priv, mmc, cmd, data); |
| 754 | } |
| 755 | |
| 756 | static int esdhc_set_ios(struct mmc *mmc) |
| 757 | { |
| 758 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 759 | |
| 760 | return esdhc_set_ios_common(priv, mmc); |
| 761 | } |
| 762 | |
| 763 | static const struct mmc_ops esdhc_ops = { |
| 764 | .getcd = esdhc_getcd, |
| 765 | .init = esdhc_init, |
| 766 | .send_cmd = esdhc_send_cmd, |
| 767 | .set_ios = esdhc_set_ios, |
| 768 | }; |
| 769 | |
| 770 | int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg) |
| 771 | { |
| 772 | struct fsl_esdhc_plat *plat; |
| 773 | struct fsl_esdhc_priv *priv; |
| 774 | struct mmc_config *mmc_cfg; |
| 775 | struct mmc *mmc; |
| 776 | |
| 777 | if (!cfg) |
| 778 | return -EINVAL; |
| 779 | |
| 780 | priv = calloc(sizeof(struct fsl_esdhc_priv), 1); |
| 781 | if (!priv) |
| 782 | return -ENOMEM; |
| 783 | plat = calloc(sizeof(struct fsl_esdhc_plat), 1); |
| 784 | if (!plat) { |
| 785 | free(priv); |
| 786 | return -ENOMEM; |
| 787 | } |
| 788 | |
| 789 | priv->esdhc_regs = (struct fsl_esdhc *)(unsigned long)(cfg->esdhc_base); |
| 790 | priv->sdhc_clk = cfg->sdhc_clk; |
| 791 | |
| 792 | mmc_cfg = &plat->cfg; |
| 793 | |
| 794 | if (cfg->max_bus_width == 8) { |
| 795 | mmc_cfg->host_caps |= MMC_MODE_1BIT | MMC_MODE_4BIT | |
| 796 | MMC_MODE_8BIT; |
| 797 | } else if (cfg->max_bus_width == 4) { |
| 798 | mmc_cfg->host_caps |= MMC_MODE_1BIT | MMC_MODE_4BIT; |
| 799 | } else if (cfg->max_bus_width == 1) { |
| 800 | mmc_cfg->host_caps |= MMC_MODE_1BIT; |
| 801 | } else { |
| 802 | mmc_cfg->host_caps |= MMC_MODE_1BIT | MMC_MODE_4BIT | |
| 803 | MMC_MODE_8BIT; |
| 804 | printf("No max bus width provided. Assume 8-bit supported.\n"); |
| 805 | } |
| 806 | |
| 807 | #ifdef CONFIG_ESDHC_DETECT_8_BIT_QUIRK |
| 808 | if (CONFIG_ESDHC_DETECT_8_BIT_QUIRK) |
| 809 | mmc_cfg->host_caps &= ~MMC_MODE_8BIT; |
| 810 | #endif |
| 811 | mmc_cfg->ops = &esdhc_ops; |
| 812 | |
| 813 | fsl_esdhc_get_cfg_common(priv, mmc_cfg); |
| 814 | |
| 815 | mmc = mmc_create(mmc_cfg, priv); |
| 816 | if (!mmc) |
| 817 | return -EIO; |
| 818 | |
| 819 | priv->mmc = mmc; |
| 820 | return 0; |
| 821 | } |
| 822 | |
| 823 | int fsl_esdhc_mmc_init(bd_t *bis) |
| 824 | { |
| 825 | struct fsl_esdhc_cfg *cfg; |
| 826 | |
| 827 | cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1); |
| 828 | cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR; |
| 829 | cfg->sdhc_clk = gd->arch.sdhc_clk; |
| 830 | return fsl_esdhc_initialize(bis, cfg); |
| 831 | } |
| 832 | #else /* DM_MMC */ |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 833 | static int fsl_esdhc_probe(struct udevice *dev) |
| 834 | { |
| 835 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
Simon Glass | e88e1d9 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 836 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 837 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 838 | fdt_addr_t addr; |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 839 | struct mmc *mmc; |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 840 | |
Simon Glass | 4aac33f | 2017-07-29 11:35:23 -0600 | [diff] [blame] | 841 | addr = dev_read_addr(dev); |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 842 | if (addr == FDT_ADDR_T_NONE) |
| 843 | return -EINVAL; |
Yinbo Zhu | b69e1d0 | 2019-04-11 11:01:50 +0000 | [diff] [blame] | 844 | #ifdef CONFIG_PPC |
| 845 | priv->esdhc_regs = (struct fsl_esdhc *)lower_32_bits(addr); |
| 846 | #else |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 847 | priv->esdhc_regs = (struct fsl_esdhc *)addr; |
Yinbo Zhu | b69e1d0 | 2019-04-11 11:01:50 +0000 | [diff] [blame] | 848 | #endif |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 849 | priv->dev = dev; |
| 850 | |
Yangbo Lu | 5e81cbf | 2019-11-12 19:28:36 +0800 | [diff] [blame] | 851 | priv->sdhc_clk = gd->arch.sdhc_clk; |
| 852 | if (priv->sdhc_clk <= 0) { |
| 853 | dev_err(dev, "Unable to get clk for %s\n", dev->name); |
| 854 | return -EINVAL; |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 855 | } |
| 856 | |
Yangbo Lu | 5705973 | 2019-10-31 18:54:23 +0800 | [diff] [blame] | 857 | fsl_esdhc_get_cfg_common(priv, &plat->cfg); |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 858 | |
Yinbo Zhu | 6f883e5 | 2019-07-16 15:09:11 +0800 | [diff] [blame] | 859 | mmc_of_parse(dev, &plat->cfg); |
| 860 | |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 861 | mmc = &plat->mmc; |
| 862 | mmc->cfg = &plat->cfg; |
| 863 | mmc->dev = dev; |
Yangbo Lu | 66fa035 | 2019-05-23 11:05:46 +0800 | [diff] [blame] | 864 | |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 865 | upriv->mmc = mmc; |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 866 | |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 867 | return esdhc_init_common(priv, mmc); |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 868 | } |
| 869 | |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 870 | static int fsl_esdhc_get_cd(struct udevice *dev) |
| 871 | { |
Yangbo Lu | 08197cb | 2019-10-31 18:54:24 +0800 | [diff] [blame] | 872 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 873 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 874 | |
Yangbo Lu | 08197cb | 2019-10-31 18:54:24 +0800 | [diff] [blame] | 875 | if (plat->cfg.host_caps & MMC_CAP_NONREMOVABLE) |
| 876 | return 1; |
| 877 | |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 878 | return esdhc_getcd_common(priv); |
| 879 | } |
| 880 | |
| 881 | static int fsl_esdhc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, |
| 882 | struct mmc_data *data) |
| 883 | { |
| 884 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 885 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 886 | |
| 887 | return esdhc_send_cmd_common(priv, &plat->mmc, cmd, data); |
| 888 | } |
| 889 | |
| 890 | static int fsl_esdhc_set_ios(struct udevice *dev) |
| 891 | { |
| 892 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 893 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 894 | |
| 895 | return esdhc_set_ios_common(priv, &plat->mmc); |
| 896 | } |
| 897 | |
| 898 | static const struct dm_mmc_ops fsl_esdhc_ops = { |
| 899 | .get_cd = fsl_esdhc_get_cd, |
| 900 | .send_cmd = fsl_esdhc_send_cmd, |
| 901 | .set_ios = fsl_esdhc_set_ios, |
Yinbo Zhu | 6f883e5 | 2019-07-16 15:09:11 +0800 | [diff] [blame] | 902 | #ifdef MMC_SUPPORTS_TUNING |
| 903 | .execute_tuning = fsl_esdhc_execute_tuning, |
| 904 | #endif |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 905 | }; |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 906 | |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 907 | static const struct udevice_id fsl_esdhc_ids[] = { |
Yangbo Lu | a6473f8 | 2016-12-07 11:54:31 +0800 | [diff] [blame] | 908 | { .compatible = "fsl,esdhc", }, |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 909 | { /* sentinel */ } |
| 910 | }; |
| 911 | |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 912 | static int fsl_esdhc_bind(struct udevice *dev) |
| 913 | { |
| 914 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 915 | |
| 916 | return mmc_bind(dev, &plat->mmc, &plat->cfg); |
| 917 | } |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 918 | |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 919 | U_BOOT_DRIVER(fsl_esdhc) = { |
| 920 | .name = "fsl-esdhc-mmc", |
| 921 | .id = UCLASS_MMC, |
| 922 | .of_match = fsl_esdhc_ids, |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 923 | .ops = &fsl_esdhc_ops, |
Simon Glass | 653282b | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 924 | .bind = fsl_esdhc_bind, |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 925 | .probe = fsl_esdhc_probe, |
Simon Glass | e88e1d9 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 926 | .platdata_auto_alloc_size = sizeof(struct fsl_esdhc_plat), |
Peng Fan | 96f0407 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 927 | .priv_auto_alloc_size = sizeof(struct fsl_esdhc_priv), |
| 928 | }; |
| 929 | #endif |