Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 1 | /* |
Jerry Huang | ed41367 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 2 | * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc |
Andy Fleming | e52ffb8 | 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 | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <config.h> |
| 13 | #include <common.h> |
| 14 | #include <command.h> |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 15 | #include <errno.h> |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 16 | #include <hwconfig.h> |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 17 | #include <mmc.h> |
| 18 | #include <part.h> |
Peng Fan | 5eb8b43 | 2017-06-12 17:50:54 +0800 | [diff] [blame] | 19 | #include <power/regulator.h> |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 20 | #include <malloc.h> |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 21 | #include <fsl_esdhc.h> |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 22 | #include <fdt_support.h> |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 23 | #include <asm/io.h> |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 24 | #include <dm.h> |
| 25 | #include <asm-generic/gpio.h> |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 26 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Ye.Li | 3d46c31 | 2014-11-04 15:35:49 +0800 | [diff] [blame] | 29 | #define SDHCI_IRQ_EN_BITS (IRQSTATEN_CC | IRQSTATEN_TC | \ |
| 30 | IRQSTATEN_CINT | \ |
| 31 | IRQSTATEN_CTOE | IRQSTATEN_CCE | IRQSTATEN_CEBE | \ |
| 32 | IRQSTATEN_CIE | IRQSTATEN_DTOE | IRQSTATEN_DCE | \ |
| 33 | IRQSTATEN_DEBE | IRQSTATEN_BRR | IRQSTATEN_BWR | \ |
| 34 | IRQSTATEN_DINT) |
| 35 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 36 | struct fsl_esdhc { |
Haijun.Zhang | d49eb9e | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 37 | uint dsaddr; /* SDMA system address register */ |
| 38 | uint blkattr; /* Block attributes register */ |
| 39 | uint cmdarg; /* Command argument register */ |
| 40 | uint xfertyp; /* Transfer type register */ |
| 41 | uint cmdrsp0; /* Command response 0 register */ |
| 42 | uint cmdrsp1; /* Command response 1 register */ |
| 43 | uint cmdrsp2; /* Command response 2 register */ |
| 44 | uint cmdrsp3; /* Command response 3 register */ |
| 45 | uint datport; /* Buffer data port register */ |
| 46 | uint prsstat; /* Present state register */ |
| 47 | uint proctl; /* Protocol control register */ |
| 48 | uint sysctl; /* System Control Register */ |
| 49 | uint irqstat; /* Interrupt status register */ |
| 50 | uint irqstaten; /* Interrupt status enable register */ |
| 51 | uint irqsigen; /* Interrupt signal enable register */ |
| 52 | uint autoc12err; /* Auto CMD error status register */ |
| 53 | uint hostcapblt; /* Host controller capabilities register */ |
| 54 | uint wml; /* Watermark level register */ |
| 55 | uint mixctrl; /* For USDHC */ |
| 56 | char reserved1[4]; /* reserved */ |
| 57 | uint fevt; /* Force event register */ |
| 58 | uint admaes; /* ADMA error status register */ |
| 59 | uint adsaddr; /* ADMA system address register */ |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 60 | char reserved2[4]; |
| 61 | uint dllctrl; |
| 62 | uint dllstat; |
| 63 | uint clktunectrlstatus; |
| 64 | char reserved3[84]; |
| 65 | uint vendorspec; |
| 66 | uint mmcboot; |
| 67 | uint vendorspec2; |
| 68 | char reserved4[48]; |
Haijun.Zhang | d49eb9e | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 69 | uint hostver; /* Host controller version register */ |
Haijun.Zhang | d49eb9e | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 70 | char reserved5[4]; /* reserved */ |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 71 | uint dmaerraddr; /* DMA error address register */ |
Otavio Salvador | fad3e06 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 72 | char reserved6[4]; /* reserved */ |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 73 | uint dmaerrattr; /* DMA error attribute register */ |
| 74 | char reserved7[4]; /* reserved */ |
Haijun.Zhang | d49eb9e | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 75 | uint hostcapblt2; /* Host controller capabilities register 2 */ |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 76 | char reserved8[8]; /* reserved */ |
Haijun.Zhang | d49eb9e | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 77 | uint tcr; /* Tuning control register */ |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 78 | char reserved9[28]; /* reserved */ |
Haijun.Zhang | d49eb9e | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 79 | uint sddirctl; /* SD direction control register */ |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 80 | char reserved10[712];/* reserved */ |
Haijun.Zhang | d49eb9e | 2013-10-30 11:37:55 +0800 | [diff] [blame] | 81 | uint scr; /* eSDHC control register */ |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 82 | }; |
| 83 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 84 | struct fsl_esdhc_plat { |
| 85 | struct mmc_config cfg; |
| 86 | struct mmc mmc; |
| 87 | }; |
| 88 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 89 | /** |
| 90 | * struct fsl_esdhc_priv |
| 91 | * |
| 92 | * @esdhc_regs: registers of the sdhc controller |
| 93 | * @sdhc_clk: Current clk of the sdhc controller |
| 94 | * @bus_width: bus width, 1bit, 4bit or 8bit |
| 95 | * @cfg: mmc config |
| 96 | * @mmc: mmc |
| 97 | * Following is used when Driver Model is enabled for MMC |
| 98 | * @dev: pointer for the device |
| 99 | * @non_removable: 0: removable; 1: non-removable |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 100 | * @wp_enable: 1: enable checking wp; 0: no check |
Peng Fan | aee7858 | 2017-06-12 17:50:53 +0800 | [diff] [blame] | 101 | * @vs18_enable: 1: use 1.8V voltage; 0: use 3.3V |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 102 | * @cd_gpio: gpio for card detection |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 103 | * @wp_gpio: gpio for write protection |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 104 | */ |
| 105 | struct fsl_esdhc_priv { |
| 106 | struct fsl_esdhc *esdhc_regs; |
| 107 | unsigned int sdhc_clk; |
| 108 | unsigned int bus_width; |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 109 | #if !CONFIG_IS_ENABLED(BLK) |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 110 | struct mmc *mmc; |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 111 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 112 | struct udevice *dev; |
| 113 | int non_removable; |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 114 | int wp_enable; |
Peng Fan | aee7858 | 2017-06-12 17:50:53 +0800 | [diff] [blame] | 115 | int vs18_enable; |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 116 | #ifdef CONFIG_DM_GPIO |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 117 | struct gpio_desc cd_gpio; |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 118 | struct gpio_desc wp_gpio; |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 119 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 120 | }; |
| 121 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 122 | /* Return the XFERTYP flags for a given command and data packet */ |
Kim Phillips | f9e0b60 | 2012-10-29 13:34:44 +0000 | [diff] [blame] | 123 | static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 124 | { |
| 125 | uint xfertyp = 0; |
| 126 | |
| 127 | if (data) { |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 128 | xfertyp |= XFERTYP_DPSEL; |
| 129 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 130 | xfertyp |= XFERTYP_DMAEN; |
| 131 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 132 | if (data->blocks > 1) { |
| 133 | xfertyp |= XFERTYP_MSBSEL; |
| 134 | xfertyp |= XFERTYP_BCEN; |
Jerry Huang | ed41367 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 135 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 136 | xfertyp |= XFERTYP_AC12EN; |
| 137 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | if (data->flags & MMC_DATA_READ) |
| 141 | xfertyp |= XFERTYP_DTDSEL; |
| 142 | } |
| 143 | |
| 144 | if (cmd->resp_type & MMC_RSP_CRC) |
| 145 | xfertyp |= XFERTYP_CCCEN; |
| 146 | if (cmd->resp_type & MMC_RSP_OPCODE) |
| 147 | xfertyp |= XFERTYP_CICEN; |
| 148 | if (cmd->resp_type & MMC_RSP_136) |
| 149 | xfertyp |= XFERTYP_RSPTYP_136; |
| 150 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 151 | xfertyp |= XFERTYP_RSPTYP_48_BUSY; |
| 152 | else if (cmd->resp_type & MMC_RSP_PRESENT) |
| 153 | xfertyp |= XFERTYP_RSPTYP_48; |
| 154 | |
Jason Liu | bef0ff0 | 2011-03-22 01:32:31 +0000 | [diff] [blame] | 155 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 156 | xfertyp |= XFERTYP_CMDTYP_ABORT; |
Yangbo Lu | b73a3d6 | 2016-01-21 17:33:19 +0800 | [diff] [blame] | 157 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 158 | return XFERTYP_CMD(cmd->cmdidx) | xfertyp; |
| 159 | } |
| 160 | |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 161 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 162 | /* |
| 163 | * PIO Read/Write Mode reduce the performace as DMA is not used in this mode. |
| 164 | */ |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 165 | static void esdhc_pio_read_write(struct fsl_esdhc_priv *priv, |
| 166 | struct mmc_data *data) |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 167 | { |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 168 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 169 | uint blocks; |
| 170 | char *buffer; |
| 171 | uint databuf; |
| 172 | uint size; |
| 173 | uint irqstat; |
Benoît Thébaudeau | 2a7b6f5 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 174 | ulong start; |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 175 | |
| 176 | if (data->flags & MMC_DATA_READ) { |
| 177 | blocks = data->blocks; |
| 178 | buffer = data->dest; |
| 179 | while (blocks) { |
Benoît Thébaudeau | 2a7b6f5 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 180 | start = get_timer(0); |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 181 | size = data->blocksize; |
| 182 | irqstat = esdhc_read32(®s->irqstat); |
Benoît Thébaudeau | 2a7b6f5 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 183 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BREN)) { |
| 184 | if (get_timer(start) > PIO_TIMEOUT) { |
| 185 | printf("\nData Read Failed in PIO Mode."); |
| 186 | return; |
| 187 | } |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 188 | } |
| 189 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 190 | udelay(100); /* Wait before last byte transfer complete */ |
| 191 | irqstat = esdhc_read32(®s->irqstat); |
| 192 | databuf = in_le32(®s->datport); |
| 193 | *((uint *)buffer) = databuf; |
| 194 | buffer += 4; |
| 195 | size -= 4; |
| 196 | } |
| 197 | blocks--; |
| 198 | } |
| 199 | } else { |
| 200 | blocks = data->blocks; |
Wolfgang Denk | a40545c | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 201 | buffer = (char *)data->src; |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 202 | while (blocks) { |
Benoît Thébaudeau | 2a7b6f5 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 203 | start = get_timer(0); |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 204 | size = data->blocksize; |
| 205 | irqstat = esdhc_read32(®s->irqstat); |
Benoît Thébaudeau | 2a7b6f5 | 2017-10-29 22:08:58 +0100 | [diff] [blame] | 206 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BWEN)) { |
| 207 | if (get_timer(start) > PIO_TIMEOUT) { |
| 208 | printf("\nData Write Failed in PIO Mode."); |
| 209 | return; |
| 210 | } |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 211 | } |
| 212 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 213 | udelay(100); /* Wait before last byte transfer complete */ |
| 214 | databuf = *((uint *)buffer); |
| 215 | buffer += 4; |
| 216 | size -= 4; |
| 217 | irqstat = esdhc_read32(®s->irqstat); |
| 218 | out_le32(®s->datport, databuf); |
| 219 | } |
| 220 | blocks--; |
| 221 | } |
| 222 | } |
| 223 | } |
| 224 | #endif |
| 225 | |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 226 | static int esdhc_setup_data(struct fsl_esdhc_priv *priv, struct mmc *mmc, |
| 227 | struct mmc_data *data) |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 228 | { |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 229 | int timeout; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 230 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Peng Fan | 3364c4b | 2018-01-10 13:20:40 +0800 | [diff] [blame] | 231 | #if defined(CONFIG_FSL_LAYERSCAPE) || defined(CONFIG_S32V234) || \ |
| 232 | defined(CONFIG_MX8M) |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 233 | dma_addr_t addr; |
| 234 | #endif |
Wolfgang Denk | a40545c | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 235 | uint wml_value; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 236 | |
| 237 | wml_value = data->blocksize/4; |
| 238 | |
| 239 | if (data->flags & MMC_DATA_READ) { |
Priyanka Jain | 0244963 | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 240 | if (wml_value > WML_RD_WML_MAX) |
| 241 | wml_value = WML_RD_WML_MAX_VAL; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 242 | |
Roy Zang | e5853af | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 243 | esdhc_clrsetbits32(®s->wml, WML_RD_WML_MASK, wml_value); |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 244 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Peng Fan | 3364c4b | 2018-01-10 13:20:40 +0800 | [diff] [blame] | 245 | #if defined(CONFIG_FSL_LAYERSCAPE) || defined(CONFIG_S32V234) || \ |
| 246 | defined(CONFIG_MX8M) |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 247 | addr = virt_to_phys((void *)(data->dest)); |
| 248 | if (upper_32_bits(addr)) |
| 249 | printf("Error found for upper 32 bits\n"); |
| 250 | else |
| 251 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 252 | #else |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 253 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 254 | #endif |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 255 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 256 | } else { |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 257 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Eric Nelson | 30e9cad | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 258 | flush_dcache_range((ulong)data->src, |
| 259 | (ulong)data->src+data->blocks |
| 260 | *data->blocksize); |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 261 | #endif |
Priyanka Jain | 0244963 | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 262 | if (wml_value > WML_WR_WML_MAX) |
| 263 | wml_value = WML_WR_WML_MAX_VAL; |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 264 | if (priv->wp_enable) { |
| 265 | if ((esdhc_read32(®s->prsstat) & |
| 266 | PRSSTAT_WPSPL) == 0) { |
| 267 | printf("\nThe SD card is locked. Can not write to a locked card.\n\n"); |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 268 | return -ETIMEDOUT; |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 269 | } |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 270 | } |
Roy Zang | e5853af | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 271 | |
| 272 | esdhc_clrsetbits32(®s->wml, WML_WR_WML_MASK, |
| 273 | wml_value << 16); |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 274 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Peng Fan | 3364c4b | 2018-01-10 13:20:40 +0800 | [diff] [blame] | 275 | #if defined(CONFIG_FSL_LAYERSCAPE) || defined(CONFIG_S32V234) || \ |
| 276 | defined(CONFIG_MX8M) |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 277 | addr = virt_to_phys((void *)(data->src)); |
| 278 | if (upper_32_bits(addr)) |
| 279 | printf("Error found for upper 32 bits\n"); |
| 280 | else |
| 281 | esdhc_write32(®s->dsaddr, lower_32_bits(addr)); |
| 282 | #else |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 283 | esdhc_write32(®s->dsaddr, (u32)data->src); |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 284 | #endif |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 285 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 286 | } |
| 287 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 288 | esdhc_write32(®s->blkattr, data->blocks << 16 | data->blocksize); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 289 | |
| 290 | /* Calculate the timeout period for data transactions */ |
Priyanka Jain | c51b40d | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 291 | /* |
| 292 | * 1)Timeout period = (2^(timeout+13)) SD Clock cycles |
| 293 | * 2)Timeout period should be minimum 0.250sec as per SD Card spec |
| 294 | * So, Number of SD Clock cycles for 0.25sec should be minimum |
| 295 | * (SD Clock/sec * 0.25 sec) SD Clock cycles |
Andrew Gabbasov | d5b4866 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 296 | * = (mmc->clock * 1/4) SD Clock cycles |
Priyanka Jain | c51b40d | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 297 | * As 1) >= 2) |
Andrew Gabbasov | d5b4866 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 298 | * => (2^(timeout+13)) >= mmc->clock * 1/4 |
Priyanka Jain | c51b40d | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 299 | * Taking log2 both the sides |
Andrew Gabbasov | d5b4866 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 300 | * => timeout + 13 >= log2(mmc->clock/4) |
Priyanka Jain | c51b40d | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 301 | * Rounding up to next power of 2 |
Andrew Gabbasov | d5b4866 | 2014-03-24 02:40:41 -0500 | [diff] [blame] | 302 | * => timeout + 13 = log2(mmc->clock/4) + 1 |
| 303 | * => timeout + 13 = fls(mmc->clock/4) |
Yangbo Lu | 9d7f321 | 2015-12-30 14:19:30 +0800 | [diff] [blame] | 304 | * |
| 305 | * However, the MMC spec "It is strongly recommended for hosts to |
| 306 | * implement more than 500ms timeout value even if the card |
| 307 | * indicates the 250ms maximum busy length." Even the previous |
| 308 | * value of 300ms is known to be insufficient for some cards. |
| 309 | * So, we use |
| 310 | * => timeout + 13 = fls(mmc->clock/2) |
Priyanka Jain | c51b40d | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 311 | */ |
Yangbo Lu | 9d7f321 | 2015-12-30 14:19:30 +0800 | [diff] [blame] | 312 | timeout = fls(mmc->clock/2); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 313 | timeout -= 13; |
| 314 | |
| 315 | if (timeout > 14) |
| 316 | timeout = 14; |
| 317 | |
| 318 | if (timeout < 0) |
| 319 | timeout = 0; |
| 320 | |
Kumar Gala | 9a878d5 | 2011-01-29 15:36:10 -0600 | [diff] [blame] | 321 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC_A001 |
| 322 | if ((timeout == 4) || (timeout == 8) || (timeout == 12)) |
| 323 | timeout++; |
| 324 | #endif |
| 325 | |
Haijun.Zhang | edeb83a | 2014-03-18 17:04:23 +0800 | [diff] [blame] | 326 | #ifdef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE |
| 327 | timeout = 0xE; |
| 328 | #endif |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 329 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 330 | |
| 331 | return 0; |
| 332 | } |
| 333 | |
Eric Nelson | 30e9cad | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 334 | static void check_and_invalidate_dcache_range |
| 335 | (struct mmc_cmd *cmd, |
| 336 | struct mmc_data *data) { |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 337 | unsigned start = 0; |
Yangbo Lu | e7702c6 | 2016-05-12 19:12:58 +0800 | [diff] [blame] | 338 | unsigned end = 0; |
Eric Nelson | 30e9cad | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 339 | unsigned size = roundup(ARCH_DMA_MINALIGN, |
| 340 | data->blocks*data->blocksize); |
Peng Fan | 3364c4b | 2018-01-10 13:20:40 +0800 | [diff] [blame] | 341 | #if defined(CONFIG_FSL_LAYERSCAPE) || defined(CONFIG_S32V234) || \ |
| 342 | defined(CONFIG_MX8M) |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 343 | dma_addr_t addr; |
| 344 | |
| 345 | addr = virt_to_phys((void *)(data->dest)); |
| 346 | if (upper_32_bits(addr)) |
| 347 | printf("Error found for upper 32 bits\n"); |
| 348 | else |
| 349 | start = lower_32_bits(addr); |
Yangbo Lu | e7702c6 | 2016-05-12 19:12:58 +0800 | [diff] [blame] | 350 | #else |
| 351 | start = (unsigned)data->dest; |
Yangbo Lu | d0e295d | 2015-03-20 19:28:31 -0700 | [diff] [blame] | 352 | #endif |
Yangbo Lu | e7702c6 | 2016-05-12 19:12:58 +0800 | [diff] [blame] | 353 | end = start + size; |
Eric Nelson | 30e9cad | 2012-04-25 14:28:48 +0000 | [diff] [blame] | 354 | invalidate_dcache_range(start, end); |
| 355 | } |
Tom Rini | 239dd25 | 2014-05-23 09:19:05 -0400 | [diff] [blame] | 356 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 357 | /* |
| 358 | * Sends a command out on the bus. Takes the mmc pointer, |
| 359 | * a command pointer, and an optional data pointer. |
| 360 | */ |
Simon Glass | 6aa55dc | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 361 | static int esdhc_send_cmd_common(struct fsl_esdhc_priv *priv, struct mmc *mmc, |
| 362 | struct mmc_cmd *cmd, struct mmc_data *data) |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 363 | { |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 364 | int err = 0; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 365 | uint xfertyp; |
| 366 | uint irqstat; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 367 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 368 | |
Jerry Huang | ed41367 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 369 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 370 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 371 | return 0; |
| 372 | #endif |
| 373 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 374 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 375 | |
| 376 | sync(); |
| 377 | |
| 378 | /* Wait for the bus to be idle */ |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 379 | while ((esdhc_read32(®s->prsstat) & PRSSTAT_CICHB) || |
| 380 | (esdhc_read32(®s->prsstat) & PRSSTAT_CIDHB)) |
| 381 | ; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 382 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 383 | while (esdhc_read32(®s->prsstat) & PRSSTAT_DLA) |
| 384 | ; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 385 | |
| 386 | /* Wait at least 8 SD clock cycles before the next command */ |
| 387 | /* |
| 388 | * Note: This is way more than 8 cycles, but 1ms seems to |
| 389 | * resolve timing issues with some cards |
| 390 | */ |
| 391 | udelay(1000); |
| 392 | |
| 393 | /* Set up for a data transfer if we have one */ |
| 394 | if (data) { |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 395 | err = esdhc_setup_data(priv, mmc, data); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 396 | if(err) |
| 397 | return err; |
Peng Fan | 9cb5e99 | 2015-06-25 10:32:26 +0800 | [diff] [blame] | 398 | |
| 399 | if (data->flags & MMC_DATA_READ) |
| 400 | check_and_invalidate_dcache_range(cmd, data); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | /* Figure out the transfer arguments */ |
| 404 | xfertyp = esdhc_xfertyp(cmd, data); |
| 405 | |
Andrew Gabbasov | 4816b7a | 2013-06-11 10:34:22 -0500 | [diff] [blame] | 406 | /* Mask all irqs */ |
| 407 | esdhc_write32(®s->irqsigen, 0); |
| 408 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 409 | /* Send the command */ |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 410 | esdhc_write32(®s->cmdarg, cmd->cmdarg); |
Jason Liu | 9919d64 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 411 | #if defined(CONFIG_FSL_USDHC) |
| 412 | esdhc_write32(®s->mixctrl, |
Volodymyr Riazantsev | d251e11 | 2015-01-20 10:16:44 -0500 | [diff] [blame] | 413 | (esdhc_read32(®s->mixctrl) & 0xFFFFFF80) | (xfertyp & 0x7F) |
| 414 | | (mmc->ddr_mode ? XFERTYP_DDREN : 0)); |
Jason Liu | 9919d64 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 415 | esdhc_write32(®s->xfertyp, xfertyp & 0xFFFF0000); |
| 416 | #else |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 417 | esdhc_write32(®s->xfertyp, xfertyp); |
Jason Liu | 9919d64 | 2011-11-25 00:18:04 +0000 | [diff] [blame] | 418 | #endif |
Dirk Behme | d8552d6 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 419 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 420 | /* Wait for the command to complete */ |
Dirk Behme | d8552d6 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 421 | while (!(esdhc_read32(®s->irqstat) & (IRQSTAT_CC | IRQSTAT_CTOE))) |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 422 | ; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 423 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 424 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 425 | |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 426 | if (irqstat & CMD_ERR) { |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 427 | err = -ECOMM; |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 428 | goto out; |
Dirk Behme | d8552d6 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 429 | } |
| 430 | |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 431 | if (irqstat & IRQSTAT_CTOE) { |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 432 | err = -ETIMEDOUT; |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 433 | goto out; |
| 434 | } |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 435 | |
Otavio Salvador | fad3e06 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 436 | /* Switch voltage to 1.8V if CMD11 succeeded */ |
| 437 | if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V) { |
| 438 | esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 439 | |
| 440 | printf("Run CMD11 1.8V switch\n"); |
| 441 | /* Sleep for 5 ms - max time for card to switch to 1.8V */ |
| 442 | udelay(5000); |
| 443 | } |
| 444 | |
Dirk Behme | d8552d6 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 445 | /* Workaround for ESDHC errata ENGcm03648 */ |
| 446 | if (!data && (cmd->resp_type & MMC_RSP_BUSY)) { |
Yangbo Lu | 3ffa851 | 2015-04-15 10:13:12 +0800 | [diff] [blame] | 447 | int timeout = 6000; |
Dirk Behme | d8552d6 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 448 | |
Yangbo Lu | 3ffa851 | 2015-04-15 10:13:12 +0800 | [diff] [blame] | 449 | /* Poll on DATA0 line for cmd with busy signal for 600 ms */ |
Dirk Behme | d8552d6 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 450 | while (timeout > 0 && !(esdhc_read32(®s->prsstat) & |
| 451 | PRSSTAT_DAT0)) { |
| 452 | udelay(100); |
| 453 | timeout--; |
| 454 | } |
| 455 | |
| 456 | if (timeout <= 0) { |
| 457 | printf("Timeout waiting for DAT0 to go high!\n"); |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 458 | err = -ETIMEDOUT; |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 459 | goto out; |
Dirk Behme | d8552d6 | 2012-03-26 03:13:05 +0000 | [diff] [blame] | 460 | } |
| 461 | } |
| 462 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 463 | /* Copy the response to the response buffer */ |
| 464 | if (cmd->resp_type & MMC_RSP_136) { |
| 465 | u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0; |
| 466 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 467 | cmdrsp3 = esdhc_read32(®s->cmdrsp3); |
| 468 | cmdrsp2 = esdhc_read32(®s->cmdrsp2); |
| 469 | cmdrsp1 = esdhc_read32(®s->cmdrsp1); |
| 470 | cmdrsp0 = esdhc_read32(®s->cmdrsp0); |
Rabin Vincent | b6eed94 | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 471 | cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24); |
| 472 | cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24); |
| 473 | cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24); |
| 474 | cmd->response[3] = (cmdrsp0 << 8); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 475 | } else |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 476 | cmd->response[0] = esdhc_read32(®s->cmdrsp0); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 477 | |
| 478 | /* Wait until all of the blocks are transferred */ |
| 479 | if (data) { |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 480 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 481 | esdhc_pio_read_write(priv, data); |
Dipen Dudhat | 5c72f35 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 482 | #else |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 483 | do { |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 484 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 485 | |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 486 | if (irqstat & IRQSTAT_DTOE) { |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 487 | err = -ETIMEDOUT; |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 488 | goto out; |
| 489 | } |
Frans Meulenbroeks | 010ba98 | 2010-07-31 04:45:18 +0000 | [diff] [blame] | 490 | |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 491 | if (irqstat & DATA_ERR) { |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 492 | err = -ECOMM; |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 493 | goto out; |
| 494 | } |
Andrew Gabbasov | 4a92962 | 2013-04-07 23:06:08 +0000 | [diff] [blame] | 495 | } while ((irqstat & DATA_COMPLETE) != DATA_COMPLETE); |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 496 | |
Peng Fan | 9cb5e99 | 2015-06-25 10:32:26 +0800 | [diff] [blame] | 497 | /* |
| 498 | * Need invalidate the dcache here again to avoid any |
| 499 | * cache-fill during the DMA operations such as the |
| 500 | * speculative pre-fetching etc. |
| 501 | */ |
Eric Nelson | 70e6869 | 2013-04-03 12:31:56 +0000 | [diff] [blame] | 502 | if (data->flags & MMC_DATA_READ) |
| 503 | check_and_invalidate_dcache_range(cmd, data); |
Ye.Li | 33a56b1 | 2014-02-20 18:00:57 +0800 | [diff] [blame] | 504 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 505 | } |
| 506 | |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 507 | out: |
| 508 | /* Reset CMD and DATA portions on error */ |
| 509 | if (err) { |
| 510 | esdhc_write32(®s->sysctl, esdhc_read32(®s->sysctl) | |
| 511 | SYSCTL_RSTC); |
| 512 | while (esdhc_read32(®s->sysctl) & SYSCTL_RSTC) |
| 513 | ; |
| 514 | |
| 515 | if (data) { |
| 516 | esdhc_write32(®s->sysctl, |
| 517 | esdhc_read32(®s->sysctl) | |
| 518 | SYSCTL_RSTD); |
| 519 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTD)) |
| 520 | ; |
| 521 | } |
Otavio Salvador | fad3e06 | 2015-02-17 10:42:43 -0200 | [diff] [blame] | 522 | |
| 523 | /* If this was CMD11, then notify that power cycle is needed */ |
| 524 | if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V) |
| 525 | printf("CMD11 to switch to 1.8V mode failed, card requires power cycle.\n"); |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 526 | } |
| 527 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 528 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 529 | |
Andrew Gabbasov | a04a6e0 | 2014-03-24 02:41:06 -0500 | [diff] [blame] | 530 | return err; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 531 | } |
| 532 | |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 533 | static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock) |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 534 | { |
Benoît Thébaudeau | 22464e0 | 2018-01-16 22:44:18 +0100 | [diff] [blame] | 535 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Benoît Thébaudeau | e16e922 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 536 | int div = 1; |
| 537 | #ifdef ARCH_MXC |
Benoît Thébaudeau | 22464e0 | 2018-01-16 22:44:18 +0100 | [diff] [blame] | 538 | #ifdef CONFIG_MX53 |
| 539 | /* For i.MX53 eSDHCv3, SYSCTL.SDCLKFS may not be set to 0. */ |
| 540 | int pre_div = (regs == (struct fsl_esdhc *)MMC_SDHC3_BASE_ADDR) ? 2 : 1; |
| 541 | #else |
Benoît Thébaudeau | e16e922 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 542 | int pre_div = 1; |
Benoît Thébaudeau | 22464e0 | 2018-01-16 22:44:18 +0100 | [diff] [blame] | 543 | #endif |
Benoît Thébaudeau | e16e922 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 544 | #else |
| 545 | int pre_div = 2; |
| 546 | #endif |
| 547 | int ddr_pre_div = mmc->ddr_mode ? 2 : 1; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 548 | int sdhc_clk = priv->sdhc_clk; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 549 | uint clk; |
| 550 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 551 | if (clock < mmc->cfg->f_min) |
| 552 | clock = mmc->cfg->f_min; |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 553 | |
Benoît Thébaudeau | e16e922 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 554 | while (sdhc_clk / (16 * pre_div * ddr_pre_div) > clock && pre_div < 256) |
| 555 | pre_div *= 2; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 556 | |
Benoît Thébaudeau | e16e922 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 557 | while (sdhc_clk / (div * pre_div * ddr_pre_div) > clock && div < 16) |
| 558 | div++; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 559 | |
Benoît Thébaudeau | e16e922 | 2017-05-03 11:59:03 +0200 | [diff] [blame] | 560 | pre_div >>= 1; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 561 | div -= 1; |
| 562 | |
| 563 | clk = (pre_div << 8) | (div << 4); |
| 564 | |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 565 | #ifdef CONFIG_FSL_USDHC |
Ye Li | 5a24f29 | 2016-06-15 10:53:01 +0800 | [diff] [blame] | 566 | esdhc_clrbits32(®s->vendorspec, VENDORSPEC_CKEN); |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 567 | #else |
Kumar Gala | 09876a3 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 568 | esdhc_clrbits32(®s->sysctl, SYSCTL_CKEN); |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 569 | #endif |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 570 | |
| 571 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_CLOCK_MASK, clk); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 572 | |
| 573 | udelay(10000); |
| 574 | |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 575 | #ifdef CONFIG_FSL_USDHC |
Ye Li | 5a24f29 | 2016-06-15 10:53:01 +0800 | [diff] [blame] | 576 | esdhc_setbits32(®s->vendorspec, VENDORSPEC_PEREN | VENDORSPEC_CKEN); |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 577 | #else |
| 578 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_CKEN); |
| 579 | #endif |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 580 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 581 | } |
| 582 | |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 583 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 584 | static void esdhc_clock_control(struct fsl_esdhc_priv *priv, bool enable) |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 585 | { |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 586 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 587 | u32 value; |
| 588 | u32 time_out; |
| 589 | |
| 590 | value = esdhc_read32(®s->sysctl); |
| 591 | |
| 592 | if (enable) |
| 593 | value |= SYSCTL_CKEN; |
| 594 | else |
| 595 | value &= ~SYSCTL_CKEN; |
| 596 | |
| 597 | esdhc_write32(®s->sysctl, value); |
| 598 | |
| 599 | time_out = 20; |
| 600 | value = PRSSTAT_SDSTB; |
| 601 | while (!(esdhc_read32(®s->prsstat) & value)) { |
| 602 | if (time_out == 0) { |
| 603 | printf("fsl_esdhc: Internal clock never stabilised.\n"); |
| 604 | break; |
| 605 | } |
| 606 | time_out--; |
| 607 | mdelay(1); |
| 608 | } |
| 609 | } |
| 610 | #endif |
| 611 | |
Simon Glass | 6aa55dc | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 612 | static int esdhc_set_ios_common(struct fsl_esdhc_priv *priv, struct mmc *mmc) |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 613 | { |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 614 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 615 | |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 616 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
| 617 | /* Select to use peripheral clock */ |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 618 | esdhc_clock_control(priv, false); |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 619 | esdhc_setbits32(®s->scr, ESDHCCTL_PCS); |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 620 | esdhc_clock_control(priv, true); |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 621 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 622 | /* Set the clock speed */ |
Simon Glass | 1d177d4 | 2017-07-29 11:35:17 -0600 | [diff] [blame] | 623 | set_sysctl(priv, mmc, mmc->clock); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 624 | |
| 625 | /* Set the bus width */ |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 626 | esdhc_clrbits32(®s->proctl, PROCTL_DTW_4 | PROCTL_DTW_8); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 627 | |
| 628 | if (mmc->bus_width == 4) |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 629 | esdhc_setbits32(®s->proctl, PROCTL_DTW_4); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 630 | else if (mmc->bus_width == 8) |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 631 | esdhc_setbits32(®s->proctl, PROCTL_DTW_8); |
| 632 | |
Jaehoon Chung | b6cd1d3 | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 633 | return 0; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 634 | } |
| 635 | |
Simon Glass | 6aa55dc | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 636 | static int esdhc_init_common(struct fsl_esdhc_priv *priv, struct mmc *mmc) |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 637 | { |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 638 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Simon Glass | 0c3ef22 | 2017-07-29 11:35:20 -0600 | [diff] [blame] | 639 | ulong start; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 640 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 641 | /* Reset the entire host controller */ |
Dirk Behme | dbe6725 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 642 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 643 | |
| 644 | /* Wait until the controller is available */ |
Simon Glass | 0c3ef22 | 2017-07-29 11:35:20 -0600 | [diff] [blame] | 645 | start = get_timer(0); |
| 646 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA)) { |
| 647 | if (get_timer(start) > 1000) |
| 648 | return -ETIMEDOUT; |
| 649 | } |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 650 | |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 651 | #if defined(CONFIG_FSL_USDHC) |
| 652 | /* RSTA doesn't reset MMC_BOOT register, so manually reset it */ |
| 653 | esdhc_write32(®s->mmcboot, 0x0); |
| 654 | /* Reset MIX_CTRL and CLK_TUNE_CTRL_STATUS regs to 0 */ |
| 655 | esdhc_write32(®s->mixctrl, 0x0); |
| 656 | esdhc_write32(®s->clktunectrlstatus, 0x0); |
| 657 | |
| 658 | /* Put VEND_SPEC to default value */ |
Peng Fan | 283620c | 2018-01-02 16:51:22 +0800 | [diff] [blame] | 659 | if (priv->vs18_enable) |
| 660 | esdhc_write32(®s->vendorspec, (VENDORSPEC_INIT | |
| 661 | ESDHC_VENDORSPEC_VSELECT)); |
| 662 | else |
| 663 | esdhc_write32(®s->vendorspec, VENDORSPEC_INIT); |
Peng Fan | a6eadd5 | 2016-06-15 10:53:00 +0800 | [diff] [blame] | 664 | |
| 665 | /* Disable DLL_CTRL delay line */ |
| 666 | esdhc_write32(®s->dllctrl, 0x0); |
| 667 | #endif |
| 668 | |
Benoît Thébaudeau | c08d11c | 2012-08-13 07:28:16 +0000 | [diff] [blame] | 669 | #ifndef ARCH_MXC |
P.V.Suresh | 7b1868b | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 670 | /* Enable cache snooping */ |
Benoît Thébaudeau | c08d11c | 2012-08-13 07:28:16 +0000 | [diff] [blame] | 671 | esdhc_write32(®s->scr, 0x00000040); |
| 672 | #endif |
P.V.Suresh | 7b1868b | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 673 | |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 674 | #ifndef CONFIG_FSL_USDHC |
Dirk Behme | dbe6725 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 675 | esdhc_setbits32(®s->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN); |
Ye Li | 5a24f29 | 2016-06-15 10:53:01 +0800 | [diff] [blame] | 676 | #else |
| 677 | esdhc_setbits32(®s->vendorspec, VENDORSPEC_HCKEN | VENDORSPEC_IPGEN); |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 678 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 679 | |
| 680 | /* Set the initial clock speed */ |
Kishon Vijay Abraham I | d6246bf | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 681 | mmc_set_clock(mmc, 400000, false); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 682 | |
| 683 | /* Disable the BRR and BWR bits in IRQSTAT */ |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 684 | esdhc_clrbits32(®s->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 685 | |
| 686 | /* Put the PROCTL reg back to the default */ |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 687 | esdhc_write32(®s->proctl, PROCTL_INIT); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 688 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 689 | /* Set timout to the maximum value */ |
| 690 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 691 | |
Thierry Reding | 8cee4c98 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 692 | return 0; |
| 693 | } |
| 694 | |
Simon Glass | 6aa55dc | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 695 | static int esdhc_getcd_common(struct fsl_esdhc_priv *priv) |
Thierry Reding | 8cee4c98 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 696 | { |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 697 | struct fsl_esdhc *regs = priv->esdhc_regs; |
Thierry Reding | 8cee4c98 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 698 | int timeout = 1000; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 699 | |
Haijun.Zhang | 05f5854 | 2014-01-10 13:52:17 +0800 | [diff] [blame] | 700 | #ifdef CONFIG_ESDHC_DETECT_QUIRK |
| 701 | if (CONFIG_ESDHC_DETECT_QUIRK) |
| 702 | return 1; |
| 703 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 704 | |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 705 | #if CONFIG_IS_ENABLED(DM_MMC) |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 706 | if (priv->non_removable) |
| 707 | return 1; |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 708 | #ifdef CONFIG_DM_GPIO |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 709 | if (dm_gpio_is_valid(&priv->cd_gpio)) |
| 710 | return dm_gpio_get_value(&priv->cd_gpio); |
| 711 | #endif |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 712 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 713 | |
Thierry Reding | 8cee4c98 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 714 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_CINS) && --timeout) |
| 715 | udelay(1000); |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 716 | |
Thierry Reding | 8cee4c98 | 2012-01-02 01:15:38 +0000 | [diff] [blame] | 717 | return timeout > 0; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 718 | } |
| 719 | |
Simon Glass | 81357b5 | 2017-07-29 11:35:19 -0600 | [diff] [blame] | 720 | static int esdhc_reset(struct fsl_esdhc *regs) |
Jerry Huang | b7ef756 | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 721 | { |
Simon Glass | 81357b5 | 2017-07-29 11:35:19 -0600 | [diff] [blame] | 722 | ulong start; |
Jerry Huang | b7ef756 | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 723 | |
| 724 | /* reset the controller */ |
Dirk Behme | dbe6725 | 2013-07-15 15:44:29 +0200 | [diff] [blame] | 725 | esdhc_setbits32(®s->sysctl, SYSCTL_RSTA); |
Jerry Huang | b7ef756 | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 726 | |
| 727 | /* hardware clears the bit when it is done */ |
Simon Glass | 81357b5 | 2017-07-29 11:35:19 -0600 | [diff] [blame] | 728 | start = get_timer(0); |
| 729 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA)) { |
| 730 | if (get_timer(start) > 100) { |
| 731 | printf("MMC/SD: Reset never completed.\n"); |
| 732 | return -ETIMEDOUT; |
| 733 | } |
| 734 | } |
| 735 | |
| 736 | return 0; |
Jerry Huang | b7ef756 | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 737 | } |
| 738 | |
Simon Glass | eba48f9 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 739 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 6aa55dc | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 740 | static int esdhc_getcd(struct mmc *mmc) |
| 741 | { |
| 742 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 743 | |
| 744 | return esdhc_getcd_common(priv); |
| 745 | } |
| 746 | |
| 747 | static int esdhc_init(struct mmc *mmc) |
| 748 | { |
| 749 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 750 | |
| 751 | return esdhc_init_common(priv, mmc); |
| 752 | } |
| 753 | |
| 754 | static int esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, |
| 755 | struct mmc_data *data) |
| 756 | { |
| 757 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 758 | |
| 759 | return esdhc_send_cmd_common(priv, mmc, cmd, data); |
| 760 | } |
| 761 | |
| 762 | static int esdhc_set_ios(struct mmc *mmc) |
| 763 | { |
| 764 | struct fsl_esdhc_priv *priv = mmc->priv; |
| 765 | |
| 766 | return esdhc_set_ios_common(priv, mmc); |
| 767 | } |
| 768 | |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 769 | static const struct mmc_ops esdhc_ops = { |
Simon Glass | 6aa55dc | 2017-07-29 11:35:18 -0600 | [diff] [blame] | 770 | .getcd = esdhc_getcd, |
| 771 | .init = esdhc_init, |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 772 | .send_cmd = esdhc_send_cmd, |
| 773 | .set_ios = esdhc_set_ios, |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 774 | }; |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 775 | #endif |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 776 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 777 | static int fsl_esdhc_init(struct fsl_esdhc_priv *priv, |
| 778 | struct fsl_esdhc_plat *plat) |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 779 | { |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 780 | struct mmc_config *cfg; |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 781 | struct fsl_esdhc *regs; |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 782 | u32 caps, voltage_caps; |
Simon Glass | 81357b5 | 2017-07-29 11:35:19 -0600 | [diff] [blame] | 783 | int ret; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 784 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 785 | if (!priv) |
| 786 | return -EINVAL; |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 787 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 788 | regs = priv->esdhc_regs; |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 789 | |
Jerry Huang | b7ef756 | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 790 | /* First reset the eSDHC controller */ |
Simon Glass | 81357b5 | 2017-07-29 11:35:19 -0600 | [diff] [blame] | 791 | ret = esdhc_reset(regs); |
| 792 | if (ret) |
| 793 | return ret; |
Jerry Huang | b7ef756 | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 794 | |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 795 | #ifndef CONFIG_FSL_USDHC |
Jerry Huang | 4e3bfa0 | 2012-05-17 23:57:02 +0000 | [diff] [blame] | 796 | esdhc_setbits32(®s->sysctl, SYSCTL_PEREN | SYSCTL_HCKEN |
| 797 | | SYSCTL_IPGEN | SYSCTL_CKEN); |
Ye Li | 5a24f29 | 2016-06-15 10:53:01 +0800 | [diff] [blame] | 798 | #else |
| 799 | esdhc_setbits32(®s->vendorspec, VENDORSPEC_PEREN | |
| 800 | VENDORSPEC_HCKEN | VENDORSPEC_IPGEN | VENDORSPEC_CKEN); |
Eric Nelson | c8e615c | 2015-12-04 12:32:48 -0700 | [diff] [blame] | 801 | #endif |
Jerry Huang | 4e3bfa0 | 2012-05-17 23:57:02 +0000 | [diff] [blame] | 802 | |
Peng Fan | aee7858 | 2017-06-12 17:50:53 +0800 | [diff] [blame] | 803 | if (priv->vs18_enable) |
| 804 | esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |
| 805 | |
Ye.Li | 3d46c31 | 2014-11-04 15:35:49 +0800 | [diff] [blame] | 806 | writel(SDHCI_IRQ_EN_BITS, ®s->irqstaten); |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 807 | cfg = &plat->cfg; |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 808 | #ifndef CONFIG_DM_MMC |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 809 | memset(cfg, '\0', sizeof(*cfg)); |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 810 | #endif |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 811 | |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 812 | voltage_caps = 0; |
Wang Huan | c929213 | 2014-09-05 13:52:40 +0800 | [diff] [blame] | 813 | caps = esdhc_read32(®s->hostcapblt); |
Roy Zang | 3935661 | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 814 | |
| 815 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135 |
| 816 | caps = caps & ~(ESDHC_HOSTCAPBLT_SRS | |
| 817 | ESDHC_HOSTCAPBLT_VS18 | ESDHC_HOSTCAPBLT_VS30); |
| 818 | #endif |
Haijun.Zhang | 8a065e9 | 2013-10-31 09:38:19 +0800 | [diff] [blame] | 819 | |
| 820 | /* T4240 host controller capabilities register should have VS33 bit */ |
| 821 | #ifdef CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
| 822 | caps = caps | ESDHC_HOSTCAPBLT_VS33; |
| 823 | #endif |
| 824 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 825 | if (caps & ESDHC_HOSTCAPBLT_VS18) |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 826 | voltage_caps |= MMC_VDD_165_195; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 827 | if (caps & ESDHC_HOSTCAPBLT_VS30) |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 828 | voltage_caps |= MMC_VDD_29_30 | MMC_VDD_30_31; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 829 | if (caps & ESDHC_HOSTCAPBLT_VS33) |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 830 | voltage_caps |= MMC_VDD_32_33 | MMC_VDD_33_34; |
| 831 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 832 | cfg->name = "FSL_SDHC"; |
Simon Glass | eba48f9 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 833 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 834 | cfg->ops = &esdhc_ops; |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 835 | #endif |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 836 | #ifdef CONFIG_SYS_SD_VOLTAGE |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 837 | cfg->voltages = CONFIG_SYS_SD_VOLTAGE; |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 838 | #else |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 839 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 840 | #endif |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 841 | if ((cfg->voltages & voltage_caps) == 0) { |
Li Yang | d4933f2 | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 842 | printf("voltage not supported by controller\n"); |
| 843 | return -1; |
| 844 | } |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 845 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 846 | if (priv->bus_width == 8) |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 847 | cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 848 | else if (priv->bus_width == 4) |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 849 | cfg->host_caps = MMC_MODE_4BIT; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 850 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 851 | cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT; |
Volodymyr Riazantsev | d251e11 | 2015-01-20 10:16:44 -0500 | [diff] [blame] | 852 | #ifdef CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 853 | cfg->host_caps |= MMC_MODE_DDR_52MHz; |
Volodymyr Riazantsev | d251e11 | 2015-01-20 10:16:44 -0500 | [diff] [blame] | 854 | #endif |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 855 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 856 | if (priv->bus_width > 0) { |
| 857 | if (priv->bus_width < 8) |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 858 | cfg->host_caps &= ~MMC_MODE_8BIT; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 859 | if (priv->bus_width < 4) |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 860 | cfg->host_caps &= ~MMC_MODE_4BIT; |
Abbas Raza | e6bf977 | 2013-03-25 09:13:34 +0000 | [diff] [blame] | 861 | } |
| 862 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 863 | if (caps & ESDHC_HOSTCAPBLT_HSS) |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 864 | cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 865 | |
Haijun.Zhang | f0fe8ad | 2014-01-10 13:52:18 +0800 | [diff] [blame] | 866 | #ifdef CONFIG_ESDHC_DETECT_8_BIT_QUIRK |
| 867 | if (CONFIG_ESDHC_DETECT_8_BIT_QUIRK) |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 868 | cfg->host_caps &= ~MMC_MODE_8BIT; |
Haijun.Zhang | f0fe8ad | 2014-01-10 13:52:18 +0800 | [diff] [blame] | 869 | #endif |
| 870 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 871 | cfg->f_min = 400000; |
| 872 | cfg->f_max = min(priv->sdhc_clk, (u32)52000000); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 873 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 874 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 875 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 876 | return 0; |
| 877 | } |
| 878 | |
Simon Glass | b9876e2 | 2017-07-29 11:35:28 -0600 | [diff] [blame] | 879 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Jagan Teki | 3c2cc6d | 2017-05-12 17:18:20 +0530 | [diff] [blame] | 880 | static int fsl_esdhc_cfg_to_priv(struct fsl_esdhc_cfg *cfg, |
| 881 | struct fsl_esdhc_priv *priv) |
| 882 | { |
| 883 | if (!cfg || !priv) |
| 884 | return -EINVAL; |
| 885 | |
| 886 | priv->esdhc_regs = (struct fsl_esdhc *)(unsigned long)(cfg->esdhc_base); |
| 887 | priv->bus_width = cfg->max_bus_width; |
| 888 | priv->sdhc_clk = cfg->sdhc_clk; |
| 889 | priv->wp_enable = cfg->wp_enable; |
Peng Fan | aee7858 | 2017-06-12 17:50:53 +0800 | [diff] [blame] | 890 | priv->vs18_enable = cfg->vs18_enable; |
Jagan Teki | 3c2cc6d | 2017-05-12 17:18:20 +0530 | [diff] [blame] | 891 | |
| 892 | return 0; |
| 893 | }; |
| 894 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 895 | int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg) |
| 896 | { |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 897 | struct fsl_esdhc_plat *plat; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 898 | struct fsl_esdhc_priv *priv; |
Simon Glass | 5ee3980 | 2017-07-29 11:35:22 -0600 | [diff] [blame] | 899 | struct mmc *mmc; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 900 | int ret; |
| 901 | |
| 902 | if (!cfg) |
| 903 | return -EINVAL; |
| 904 | |
| 905 | priv = calloc(sizeof(struct fsl_esdhc_priv), 1); |
| 906 | if (!priv) |
| 907 | return -ENOMEM; |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 908 | plat = calloc(sizeof(struct fsl_esdhc_plat), 1); |
| 909 | if (!plat) { |
| 910 | free(priv); |
| 911 | return -ENOMEM; |
| 912 | } |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 913 | |
| 914 | ret = fsl_esdhc_cfg_to_priv(cfg, priv); |
| 915 | if (ret) { |
| 916 | debug("%s xlate failure\n", __func__); |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 917 | free(plat); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 918 | free(priv); |
| 919 | return ret; |
| 920 | } |
| 921 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 922 | ret = fsl_esdhc_init(priv, plat); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 923 | if (ret) { |
| 924 | debug("%s init failure\n", __func__); |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 925 | free(plat); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 926 | free(priv); |
| 927 | return ret; |
| 928 | } |
| 929 | |
Simon Glass | 5ee3980 | 2017-07-29 11:35:22 -0600 | [diff] [blame] | 930 | mmc = mmc_create(&plat->cfg, priv); |
| 931 | if (!mmc) |
| 932 | return -EIO; |
| 933 | |
| 934 | priv->mmc = mmc; |
| 935 | |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 936 | return 0; |
| 937 | } |
| 938 | |
| 939 | int fsl_esdhc_mmc_init(bd_t *bis) |
| 940 | { |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 941 | struct fsl_esdhc_cfg *cfg; |
| 942 | |
Fabio Estevam | 6592a99 | 2012-12-27 08:51:08 +0000 | [diff] [blame] | 943 | cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1); |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 944 | cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR; |
Simon Glass | 9e247d1 | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 945 | cfg->sdhc_clk = gd->arch.sdhc_clk; |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 946 | return fsl_esdhc_initialize(bis, cfg); |
Andy Fleming | e52ffb8 | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 947 | } |
Jagan Teki | 3c2cc6d | 2017-05-12 17:18:20 +0530 | [diff] [blame] | 948 | #endif |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 949 | |
Yangbo Lu | b124f8a | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 950 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 951 | void mmc_adapter_card_type_ident(void) |
| 952 | { |
| 953 | u8 card_id; |
| 954 | u8 value; |
| 955 | |
| 956 | card_id = QIXIS_READ(present) & QIXIS_SDID_MASK; |
| 957 | gd->arch.sdhc_adapter = card_id; |
| 958 | |
| 959 | switch (card_id) { |
| 960 | case QIXIS_ESDHC_ADAPTER_TYPE_EMMC45: |
Yangbo Lu | 81eacd6 | 2015-09-17 10:27:12 +0800 | [diff] [blame] | 961 | value = QIXIS_READ(brdcfg[5]); |
| 962 | value |= (QIXIS_DAT4 | QIXIS_DAT5_6_7); |
| 963 | QIXIS_WRITE(brdcfg[5], value); |
Yangbo Lu | b124f8a | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 964 | break; |
| 965 | case QIXIS_ESDHC_ADAPTER_TYPE_SDMMC_LEGACY: |
Yangbo Lu | c6799ce | 2015-09-17 10:27:48 +0800 | [diff] [blame] | 966 | value = QIXIS_READ(pwr_ctl[1]); |
| 967 | value |= QIXIS_EVDD_BY_SDHC_VS; |
| 968 | QIXIS_WRITE(pwr_ctl[1], value); |
Yangbo Lu | b124f8a | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 969 | break; |
| 970 | case QIXIS_ESDHC_ADAPTER_TYPE_EMMC44: |
| 971 | value = QIXIS_READ(brdcfg[5]); |
| 972 | value |= (QIXIS_SDCLKIN | QIXIS_SDCLKOUT); |
| 973 | QIXIS_WRITE(brdcfg[5], value); |
| 974 | break; |
| 975 | case QIXIS_ESDHC_ADAPTER_TYPE_RSV: |
| 976 | break; |
| 977 | case QIXIS_ESDHC_ADAPTER_TYPE_MMC: |
| 978 | break; |
| 979 | case QIXIS_ESDHC_ADAPTER_TYPE_SD: |
| 980 | break; |
| 981 | case QIXIS_ESDHC_NO_ADAPTER: |
| 982 | break; |
| 983 | default: |
| 984 | break; |
| 985 | } |
| 986 | } |
| 987 | #endif |
| 988 | |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 989 | #ifdef CONFIG_OF_LIBFDT |
Yangbo Lu | d84139c | 2017-01-17 10:43:54 +0800 | [diff] [blame] | 990 | __weak int esdhc_status_fixup(void *blob, const char *compat) |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 991 | { |
Chenhui Zhao | 025eab0 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 992 | #ifdef CONFIG_FSL_ESDHC_PIN_MUX |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 993 | if (!hwconfig("esdhc")) { |
Chenhui Zhao | 025eab0 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 994 | do_fixup_by_compat(blob, compat, "status", "disabled", |
Yangbo Lu | d84139c | 2017-01-17 10:43:54 +0800 | [diff] [blame] | 995 | sizeof("disabled"), 1); |
| 996 | return 1; |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 997 | } |
Chenhui Zhao | 025eab0 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 998 | #endif |
Yangbo Lu | d84139c | 2017-01-17 10:43:54 +0800 | [diff] [blame] | 999 | return 0; |
| 1000 | } |
| 1001 | |
| 1002 | void fdt_fixup_esdhc(void *blob, bd_t *bd) |
| 1003 | { |
| 1004 | const char *compat = "fsl,esdhc"; |
| 1005 | |
| 1006 | if (esdhc_status_fixup(blob, compat)) |
| 1007 | return; |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 1008 | |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 1009 | #ifdef CONFIG_FSL_ESDHC_USE_PERIPHERAL_CLK |
| 1010 | do_fixup_by_compat_u32(blob, compat, "peripheral-frequency", |
| 1011 | gd->arch.sdhc_clk, 1); |
| 1012 | #else |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 1013 | do_fixup_by_compat_u32(blob, compat, "clock-frequency", |
Simon Glass | 9e247d1 | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 1014 | gd->arch.sdhc_clk, 1); |
Yangbo Lu | 163beec | 2015-04-22 13:57:40 +0800 | [diff] [blame] | 1015 | #endif |
Yangbo Lu | b124f8a | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 1016 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 1017 | do_fixup_by_compat_u32(blob, compat, "adapter-type", |
| 1018 | (u32)(gd->arch.sdhc_adapter), 1); |
| 1019 | #endif |
Anton Vorontsov | f751a3c | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 1020 | } |
Stefano Babic | ff7a5ca | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 1021 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1022 | |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1023 | #if CONFIG_IS_ENABLED(DM_MMC) |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1024 | #include <asm/arch/clock.h> |
Peng Fan | af6dbc0 | 2017-02-22 16:21:55 +0800 | [diff] [blame] | 1025 | __weak void init_clk_usdhc(u32 index) |
| 1026 | { |
| 1027 | } |
| 1028 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1029 | static int fsl_esdhc_probe(struct udevice *dev) |
| 1030 | { |
| 1031 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 1032 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1033 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
York Sun | 107a5e4 | 2017-08-08 15:45:13 -0700 | [diff] [blame] | 1034 | #ifdef CONFIG_DM_REGULATOR |
Peng Fan | 5eb8b43 | 2017-06-12 17:50:54 +0800 | [diff] [blame] | 1035 | struct udevice *vqmmc_dev; |
York Sun | 107a5e4 | 2017-08-08 15:45:13 -0700 | [diff] [blame] | 1036 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1037 | fdt_addr_t addr; |
| 1038 | unsigned int val; |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1039 | struct mmc *mmc; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1040 | int ret; |
| 1041 | |
Simon Glass | 80e9df4 | 2017-07-29 11:35:23 -0600 | [diff] [blame] | 1042 | addr = dev_read_addr(dev); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1043 | if (addr == FDT_ADDR_T_NONE) |
| 1044 | return -EINVAL; |
| 1045 | |
| 1046 | priv->esdhc_regs = (struct fsl_esdhc *)addr; |
| 1047 | priv->dev = dev; |
| 1048 | |
Simon Glass | 80e9df4 | 2017-07-29 11:35:23 -0600 | [diff] [blame] | 1049 | val = dev_read_u32_default(dev, "bus-width", -1); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1050 | if (val == 8) |
| 1051 | priv->bus_width = 8; |
| 1052 | else if (val == 4) |
| 1053 | priv->bus_width = 4; |
| 1054 | else |
| 1055 | priv->bus_width = 1; |
| 1056 | |
Simon Glass | 80e9df4 | 2017-07-29 11:35:23 -0600 | [diff] [blame] | 1057 | if (dev_read_bool(dev, "non-removable")) { |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1058 | priv->non_removable = 1; |
| 1059 | } else { |
| 1060 | priv->non_removable = 0; |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 1061 | #ifdef CONFIG_DM_GPIO |
Simon Glass | 80e9df4 | 2017-07-29 11:35:23 -0600 | [diff] [blame] | 1062 | gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, |
| 1063 | GPIOD_IS_IN); |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 1064 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1065 | } |
| 1066 | |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 1067 | priv->wp_enable = 1; |
| 1068 | |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 1069 | #ifdef CONFIG_DM_GPIO |
Simon Glass | 80e9df4 | 2017-07-29 11:35:23 -0600 | [diff] [blame] | 1070 | ret = gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, |
| 1071 | GPIOD_IS_IN); |
Peng Fan | 01eb1c4 | 2016-06-15 10:53:02 +0800 | [diff] [blame] | 1072 | if (ret) |
| 1073 | priv->wp_enable = 0; |
Yangbo Lu | b99647c | 2016-12-07 11:54:30 +0800 | [diff] [blame] | 1074 | #endif |
Peng Fan | 5eb8b43 | 2017-06-12 17:50:54 +0800 | [diff] [blame] | 1075 | |
| 1076 | priv->vs18_enable = 0; |
| 1077 | |
| 1078 | #ifdef CONFIG_DM_REGULATOR |
| 1079 | /* |
| 1080 | * If emmc I/O has a fixed voltage at 1.8V, this must be provided, |
| 1081 | * otherwise, emmc will work abnormally. |
| 1082 | */ |
| 1083 | ret = device_get_supply_regulator(dev, "vqmmc-supply", &vqmmc_dev); |
| 1084 | if (ret) { |
| 1085 | dev_dbg(dev, "no vqmmc-supply\n"); |
| 1086 | } else { |
| 1087 | ret = regulator_set_enable(vqmmc_dev, true); |
| 1088 | if (ret) { |
| 1089 | dev_err(dev, "fail to enable vqmmc-supply\n"); |
| 1090 | return ret; |
| 1091 | } |
| 1092 | |
| 1093 | if (regulator_get_value(vqmmc_dev) == 1800000) |
| 1094 | priv->vs18_enable = 1; |
| 1095 | } |
| 1096 | #endif |
| 1097 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1098 | /* |
| 1099 | * TODO: |
| 1100 | * Because lack of clk driver, if SDHC clk is not enabled, |
| 1101 | * need to enable it first before this driver is invoked. |
| 1102 | * |
| 1103 | * we use MXC_ESDHC_CLK to get clk freq. |
| 1104 | * If one would like to make this function work, |
| 1105 | * the aliases should be provided in dts as this: |
| 1106 | * |
| 1107 | * aliases { |
| 1108 | * mmc0 = &usdhc1; |
| 1109 | * mmc1 = &usdhc2; |
| 1110 | * mmc2 = &usdhc3; |
| 1111 | * mmc3 = &usdhc4; |
| 1112 | * }; |
| 1113 | * Then if your board only supports mmc2 and mmc3, but we can |
| 1114 | * correctly get the seq as 2 and 3, then let mxc_get_clock |
| 1115 | * work as expected. |
| 1116 | */ |
Peng Fan | af6dbc0 | 2017-02-22 16:21:55 +0800 | [diff] [blame] | 1117 | |
| 1118 | init_clk_usdhc(dev->seq); |
| 1119 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1120 | priv->sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK + dev->seq); |
| 1121 | if (priv->sdhc_clk <= 0) { |
| 1122 | dev_err(dev, "Unable to get clk for %s\n", dev->name); |
| 1123 | return -EINVAL; |
| 1124 | } |
| 1125 | |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 1126 | ret = fsl_esdhc_init(priv, plat); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1127 | if (ret) { |
| 1128 | dev_err(dev, "fsl_esdhc_init failure\n"); |
| 1129 | return ret; |
| 1130 | } |
| 1131 | |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1132 | mmc = &plat->mmc; |
| 1133 | mmc->cfg = &plat->cfg; |
| 1134 | mmc->dev = dev; |
| 1135 | upriv->mmc = mmc; |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1136 | |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1137 | return esdhc_init_common(priv, mmc); |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1138 | } |
| 1139 | |
Simon Glass | eba48f9 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 1140 | #if CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1141 | static int fsl_esdhc_get_cd(struct udevice *dev) |
| 1142 | { |
| 1143 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1144 | |
| 1145 | return true; |
| 1146 | return esdhc_getcd_common(priv); |
| 1147 | } |
| 1148 | |
| 1149 | static int fsl_esdhc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, |
| 1150 | struct mmc_data *data) |
| 1151 | { |
| 1152 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 1153 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1154 | |
| 1155 | return esdhc_send_cmd_common(priv, &plat->mmc, cmd, data); |
| 1156 | } |
| 1157 | |
| 1158 | static int fsl_esdhc_set_ios(struct udevice *dev) |
| 1159 | { |
| 1160 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 1161 | struct fsl_esdhc_priv *priv = dev_get_priv(dev); |
| 1162 | |
| 1163 | return esdhc_set_ios_common(priv, &plat->mmc); |
| 1164 | } |
| 1165 | |
| 1166 | static const struct dm_mmc_ops fsl_esdhc_ops = { |
| 1167 | .get_cd = fsl_esdhc_get_cd, |
| 1168 | .send_cmd = fsl_esdhc_send_cmd, |
| 1169 | .set_ios = fsl_esdhc_set_ios, |
| 1170 | }; |
| 1171 | #endif |
| 1172 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1173 | static const struct udevice_id fsl_esdhc_ids[] = { |
| 1174 | { .compatible = "fsl,imx6ul-usdhc", }, |
| 1175 | { .compatible = "fsl,imx6sx-usdhc", }, |
| 1176 | { .compatible = "fsl,imx6sl-usdhc", }, |
| 1177 | { .compatible = "fsl,imx6q-usdhc", }, |
| 1178 | { .compatible = "fsl,imx7d-usdhc", }, |
Peng Fan | af6dbc0 | 2017-02-22 16:21:55 +0800 | [diff] [blame] | 1179 | { .compatible = "fsl,imx7ulp-usdhc", }, |
Yangbo Lu | 2a99b60 | 2016-12-07 11:54:31 +0800 | [diff] [blame] | 1180 | { .compatible = "fsl,esdhc", }, |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1181 | { /* sentinel */ } |
| 1182 | }; |
| 1183 | |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1184 | #if CONFIG_IS_ENABLED(BLK) |
| 1185 | static int fsl_esdhc_bind(struct udevice *dev) |
| 1186 | { |
| 1187 | struct fsl_esdhc_plat *plat = dev_get_platdata(dev); |
| 1188 | |
| 1189 | return mmc_bind(dev, &plat->mmc, &plat->cfg); |
| 1190 | } |
| 1191 | #endif |
| 1192 | |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1193 | U_BOOT_DRIVER(fsl_esdhc) = { |
| 1194 | .name = "fsl-esdhc-mmc", |
| 1195 | .id = UCLASS_MMC, |
| 1196 | .of_match = fsl_esdhc_ids, |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1197 | .ops = &fsl_esdhc_ops, |
Simon Glass | 407025d | 2017-07-29 11:35:24 -0600 | [diff] [blame] | 1198 | #if CONFIG_IS_ENABLED(BLK) |
| 1199 | .bind = fsl_esdhc_bind, |
| 1200 | #endif |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1201 | .probe = fsl_esdhc_probe, |
Simon Glass | fa02ca5 | 2017-07-29 11:35:21 -0600 | [diff] [blame] | 1202 | .platdata_auto_alloc_size = sizeof(struct fsl_esdhc_plat), |
Peng Fan | a4d36f7 | 2016-03-25 14:16:56 +0800 | [diff] [blame] | 1203 | .priv_auto_alloc_size = sizeof(struct fsl_esdhc_priv), |
| 1204 | }; |
| 1205 | #endif |