blob: d5066666698c484497654caaf13a594ff94e3620 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andy Fleming50586ef2008-10-30 16:47:16 -05002/*
Jerry Huangd621da02011-01-06 23:42:19 -06003 * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc
Yangbo Luae7020b2021-06-03 10:51:17 +08004 * Copyright 2019-2021 NXP
Andy Fleming50586ef2008-10-30 16:47:16 -05005 * 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 Fleming50586ef2008-10-30 16:47:16 -050010 */
11
12#include <config.h>
13#include <common.h>
14#include <command.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070015#include <cpu_func.h>
Jaehoon Chung915ffa52016-07-19 16:33:36 +090016#include <errno.h>
Anton Vorontsovb33433a2009-06-10 00:25:29 +040017#include <hwconfig.h>
Andy Fleming50586ef2008-10-30 16:47:16 -050018#include <mmc.h>
19#include <part.h>
20#include <malloc.h>
Andy Fleming50586ef2008-10-30 16:47:16 -050021#include <fsl_esdhc.h>
Anton Vorontsovb33433a2009-06-10 00:25:29 +040022#include <fdt_support.h>
Simon Glass90526e92020-05-10 11:39:56 -060023#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060024#include <asm/global_data.h>
Andy Fleming50586ef2008-10-30 16:47:16 -050025#include <asm/io.h>
Peng Fan96f04072016-03-25 14:16:56 +080026#include <dm.h>
Simon Glass336d4612020-02-03 07:36:16 -070027#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060028#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060029#include <linux/delay.h>
Stephen Carlsonee025432021-08-17 12:46:40 -070030#include <linux/iopoll.h>
Michael Walleb1ba1462020-09-23 12:42:48 +020031#include <linux/dma-mapping.h>
Michael Walle361a4222020-10-12 10:07:14 +020032#include <sdhci.h>
Tom Rini7e7d04a2022-06-16 14:04:38 -040033#include "../../board/freescale/common/qixis.h"
Andy Fleming50586ef2008-10-30 16:47:16 -050034
Andy Fleming50586ef2008-10-30 16:47:16 -050035DECLARE_GLOBAL_DATA_PTR;
36
37struct fsl_esdhc {
Haijun.Zhang511948b2013-10-30 11:37:55 +080038 uint dsaddr; /* SDMA system address register */
39 uint blkattr; /* Block attributes register */
40 uint cmdarg; /* Command argument register */
41 uint xfertyp; /* Transfer type register */
42 uint cmdrsp0; /* Command response 0 register */
43 uint cmdrsp1; /* Command response 1 register */
44 uint cmdrsp2; /* Command response 2 register */
45 uint cmdrsp3; /* Command response 3 register */
46 uint datport; /* Buffer data port register */
47 uint prsstat; /* Present state register */
48 uint proctl; /* Protocol control register */
49 uint sysctl; /* System Control Register */
50 uint irqstat; /* Interrupt status register */
51 uint irqstaten; /* Interrupt status enable register */
52 uint irqsigen; /* Interrupt signal enable register */
53 uint autoc12err; /* Auto CMD error status register */
54 uint hostcapblt; /* Host controller capabilities register */
55 uint wml; /* Watermark level register */
Yangbo Lu4d8ff422019-06-21 11:42:29 +080056 char reserved1[8]; /* reserved */
Haijun.Zhang511948b2013-10-30 11:37:55 +080057 uint fevt; /* Force event register */
58 uint admaes; /* ADMA error status register */
Michael Walle361a4222020-10-12 10:07:14 +020059 uint adsaddrl; /* ADMA system address low register */
60 uint adsaddrh; /* ADMA system address high register */
61 char reserved2[156];
Haijun.Zhang511948b2013-10-30 11:37:55 +080062 uint hostver; /* Host controller version register */
Yangbo Lu4d8ff422019-06-21 11:42:29 +080063 char reserved3[4]; /* reserved */
Peng Fan59d37822018-01-21 19:00:22 +080064 uint dmaerraddr; /* DMA error address register */
Yangbo Lu4d8ff422019-06-21 11:42:29 +080065 char reserved4[4]; /* reserved */
Peng Fan59d37822018-01-21 19:00:22 +080066 uint dmaerrattr; /* DMA error attribute register */
Yangbo Lu4d8ff422019-06-21 11:42:29 +080067 char reserved5[4]; /* reserved */
Haijun.Zhang511948b2013-10-30 11:37:55 +080068 uint hostcapblt2; /* Host controller capabilities register 2 */
Yangbo Lub1a42472020-09-01 16:58:01 +080069 char reserved6[8]; /* reserved */
70 uint tbctl; /* Tuning block control register */
Yangbo Ludb8f9362020-09-01 16:58:05 +080071 char reserved7[32]; /* reserved */
72 uint sdclkctl; /* SD clock control register */
73 uint sdtimingctl; /* SD timing control register */
74 char reserved8[20]; /* reserved */
75 uint dllcfg0; /* DLL config 0 register */
Michael Walled3b745f2021-03-17 15:01:37 +010076 uint dllcfg1; /* DLL config 1 register */
77 char reserved9[8]; /* reserved */
Yangbo Lu8ee802f2020-10-20 11:04:52 +080078 uint dllstat0; /* DLL status 0 register */
79 char reserved10[664];/* reserved */
Yangbo Lu4d8ff422019-06-21 11:42:29 +080080 uint esdhcctl; /* eSDHC control register */
Andy Fleming50586ef2008-10-30 16:47:16 -050081};
82
Simon Glasse88e1d92017-07-29 11:35:21 -060083struct fsl_esdhc_plat {
84 struct mmc_config cfg;
85 struct mmc mmc;
86};
87
Peng Fan96f04072016-03-25 14:16:56 +080088/**
89 * struct fsl_esdhc_priv
90 *
91 * @esdhc_regs: registers of the sdhc controller
92 * @sdhc_clk: Current clk of the sdhc controller
93 * @bus_width: bus width, 1bit, 4bit or 8bit
94 * @cfg: mmc config
95 * @mmc: mmc
96 * Following is used when Driver Model is enabled for MMC
97 * @dev: pointer for the device
Peng Fan96f04072016-03-25 14:16:56 +080098 * @cd_gpio: gpio for card detection
Peng Fan14831512016-06-15 10:53:02 +080099 * @wp_gpio: gpio for write protection
Peng Fan96f04072016-03-25 14:16:56 +0800100 */
101struct fsl_esdhc_priv {
102 struct fsl_esdhc *esdhc_regs;
103 unsigned int sdhc_clk;
Yangbo Luf1bce082019-12-19 18:59:30 +0800104 bool is_sdhc_per_clk;
Peng Fan51313b42018-01-21 19:00:24 +0800105 unsigned int clock;
Yangbo Lu41dec2f2019-10-21 18:09:07 +0800106#if !CONFIG_IS_ENABLED(DM_MMC)
Peng Fan96f04072016-03-25 14:16:56 +0800107 struct mmc *mmc;
Simon Glass653282b2017-07-29 11:35:24 -0600108#endif
Peng Fan96f04072016-03-25 14:16:56 +0800109 struct udevice *dev;
Michael Walle361a4222020-10-12 10:07:14 +0200110 struct sdhci_adma_desc *adma_desc_table;
Michael Walleb1ba1462020-09-23 12:42:48 +0200111 dma_addr_t dma_addr;
Peng Fan96f04072016-03-25 14:16:56 +0800112};
113
Andy Fleming50586ef2008-10-30 16:47:16 -0500114/* Return the XFERTYP flags for a given command and data packet */
Kim Phillipseafa90a2012-10-29 13:34:44 +0000115static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data)
Andy Fleming50586ef2008-10-30 16:47:16 -0500116{
117 uint xfertyp = 0;
118
119 if (data) {
Dipen Dudhat77c14582009-10-05 15:41:58 +0530120 xfertyp |= XFERTYP_DPSEL;
Michael Walle52faec32020-10-12 10:07:13 +0200121 if (!IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO) &&
122 cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK &&
Yangbo Lub1a42472020-09-01 16:58:01 +0800123 cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK_HS200)
124 xfertyp |= XFERTYP_DMAEN;
Andy Fleming50586ef2008-10-30 16:47:16 -0500125 if (data->blocks > 1) {
126 xfertyp |= XFERTYP_MSBSEL;
127 xfertyp |= XFERTYP_BCEN;
Michael Walle52faec32020-10-12 10:07:13 +0200128 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC111))
129 xfertyp |= XFERTYP_AC12EN;
Andy Fleming50586ef2008-10-30 16:47:16 -0500130 }
131
132 if (data->flags & MMC_DATA_READ)
133 xfertyp |= XFERTYP_DTDSEL;
134 }
135
136 if (cmd->resp_type & MMC_RSP_CRC)
137 xfertyp |= XFERTYP_CCCEN;
138 if (cmd->resp_type & MMC_RSP_OPCODE)
139 xfertyp |= XFERTYP_CICEN;
140 if (cmd->resp_type & MMC_RSP_136)
141 xfertyp |= XFERTYP_RSPTYP_136;
142 else if (cmd->resp_type & MMC_RSP_BUSY)
143 xfertyp |= XFERTYP_RSPTYP_48_BUSY;
144 else if (cmd->resp_type & MMC_RSP_PRESENT)
145 xfertyp |= XFERTYP_RSPTYP_48;
146
Jason Liu4571de32011-03-22 01:32:31 +0000147 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
148 xfertyp |= XFERTYP_CMDTYP_ABORT;
Yangbo Lu25503442016-01-21 17:33:19 +0800149
Andy Fleming50586ef2008-10-30 16:47:16 -0500150 return XFERTYP_CMD(cmd->cmdidx) | xfertyp;
151}
152
Dipen Dudhat77c14582009-10-05 15:41:58 +0530153/*
154 * PIO Read/Write Mode reduce the performace as DMA is not used in this mode.
155 */
Simon Glass09b465f2017-07-29 11:35:17 -0600156static void esdhc_pio_read_write(struct fsl_esdhc_priv *priv,
157 struct mmc_data *data)
Dipen Dudhat77c14582009-10-05 15:41:58 +0530158{
Peng Fan96f04072016-03-25 14:16:56 +0800159 struct fsl_esdhc *regs = priv->esdhc_regs;
Dipen Dudhat77c14582009-10-05 15:41:58 +0530160 uint blocks;
161 char *buffer;
162 uint databuf;
163 uint size;
164 uint irqstat;
Benoît Thébaudeaubcfb3652017-10-29 22:08:58 +0100165 ulong start;
Dipen Dudhat77c14582009-10-05 15:41:58 +0530166
167 if (data->flags & MMC_DATA_READ) {
168 blocks = data->blocks;
169 buffer = data->dest;
170 while (blocks) {
Benoît Thébaudeaubcfb3652017-10-29 22:08:58 +0100171 start = get_timer(0);
Dipen Dudhat77c14582009-10-05 15:41:58 +0530172 size = data->blocksize;
173 irqstat = esdhc_read32(&regs->irqstat);
Benoît Thébaudeaubcfb3652017-10-29 22:08:58 +0100174 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BREN)) {
175 if (get_timer(start) > PIO_TIMEOUT) {
176 printf("\nData Read Failed in PIO Mode.");
177 return;
178 }
Dipen Dudhat77c14582009-10-05 15:41:58 +0530179 }
180 while (size && (!(irqstat & IRQSTAT_TC))) {
181 udelay(100); /* Wait before last byte transfer complete */
182 irqstat = esdhc_read32(&regs->irqstat);
183 databuf = in_le32(&regs->datport);
184 *((uint *)buffer) = databuf;
185 buffer += 4;
186 size -= 4;
187 }
188 blocks--;
189 }
190 } else {
191 blocks = data->blocks;
Wolfgang Denk7b43db92010-05-09 23:52:59 +0200192 buffer = (char *)data->src;
Dipen Dudhat77c14582009-10-05 15:41:58 +0530193 while (blocks) {
Benoît Thébaudeaubcfb3652017-10-29 22:08:58 +0100194 start = get_timer(0);
Dipen Dudhat77c14582009-10-05 15:41:58 +0530195 size = data->blocksize;
196 irqstat = esdhc_read32(&regs->irqstat);
Benoît Thébaudeaubcfb3652017-10-29 22:08:58 +0100197 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BWEN)) {
198 if (get_timer(start) > PIO_TIMEOUT) {
199 printf("\nData Write Failed in PIO Mode.");
200 return;
201 }
Dipen Dudhat77c14582009-10-05 15:41:58 +0530202 }
203 while (size && (!(irqstat & IRQSTAT_TC))) {
204 udelay(100); /* Wait before last byte transfer complete */
205 databuf = *((uint *)buffer);
206 buffer += 4;
207 size -= 4;
208 irqstat = esdhc_read32(&regs->irqstat);
209 out_le32(&regs->datport, databuf);
210 }
211 blocks--;
212 }
213 }
214}
Dipen Dudhat77c14582009-10-05 15:41:58 +0530215
Michael Walle7e48a022020-09-23 12:42:49 +0200216static void esdhc_setup_watermark_level(struct fsl_esdhc_priv *priv,
217 struct mmc_data *data)
Andy Fleming50586ef2008-10-30 16:47:16 -0500218{
Peng Fan96f04072016-03-25 14:16:56 +0800219 struct fsl_esdhc *regs = priv->esdhc_regs;
Michael Walle7e48a022020-09-23 12:42:49 +0200220 uint wml_value = data->blocksize / 4;
Andy Fleming50586ef2008-10-30 16:47:16 -0500221
222 if (data->flags & MMC_DATA_READ) {
Priyanka Jain32c8cfb2011-02-09 09:24:10 +0530223 if (wml_value > WML_RD_WML_MAX)
224 wml_value = WML_RD_WML_MAX_VAL;
Andy Fleming50586ef2008-10-30 16:47:16 -0500225
Roy Zangab467c52010-02-09 18:23:33 +0800226 esdhc_clrsetbits32(&regs->wml, WML_RD_WML_MASK, wml_value);
Andy Fleming50586ef2008-10-30 16:47:16 -0500227 } else {
Priyanka Jain32c8cfb2011-02-09 09:24:10 +0530228 if (wml_value > WML_WR_WML_MAX)
229 wml_value = WML_WR_WML_MAX_VAL;
Yangbo Lu0cc127c2019-10-31 18:54:25 +0800230
Roy Zangab467c52010-02-09 18:23:33 +0800231 esdhc_clrsetbits32(&regs->wml, WML_WR_WML_MASK,
Michael Walle7e48a022020-09-23 12:42:49 +0200232 wml_value << 16);
233 }
234}
Michael Walle7e48a022020-09-23 12:42:49 +0200235
236static void esdhc_setup_dma(struct fsl_esdhc_priv *priv, struct mmc_data *data)
237{
238 uint trans_bytes = data->blocksize * data->blocks;
239 struct fsl_esdhc *regs = priv->esdhc_regs;
Michael Walle361a4222020-10-12 10:07:14 +0200240 phys_addr_t adma_addr;
Michael Walle7e48a022020-09-23 12:42:49 +0200241 void *buf;
242
243 if (data->flags & MMC_DATA_WRITE)
244 buf = (void *)data->src;
245 else
246 buf = data->dest;
247
248 priv->dma_addr = dma_map_single(buf, trans_bytes,
249 mmc_get_dma_dir(data));
Michael Walle361a4222020-10-12 10:07:14 +0200250
251 if (IS_ENABLED(CONFIG_FSL_ESDHC_SUPPORT_ADMA2) &&
252 priv->adma_desc_table) {
253 debug("Using ADMA2\n");
254 /* prefer ADMA2 if it is available */
255 sdhci_prepare_adma_table(priv->adma_desc_table, data,
256 priv->dma_addr);
257
258 adma_addr = virt_to_phys(priv->adma_desc_table);
259 esdhc_write32(&regs->adsaddrl, lower_32_bits(adma_addr));
260 if (IS_ENABLED(CONFIG_DMA_ADDR_T_64BIT))
261 esdhc_write32(&regs->adsaddrh, upper_32_bits(adma_addr));
262 esdhc_clrsetbits32(&regs->proctl, PROCTL_DMAS_MASK,
263 PROCTL_DMAS_ADMA2);
264 } else {
265 debug("Using SDMA\n");
266 if (upper_32_bits(priv->dma_addr))
267 printf("Cannot use 64 bit addresses with SDMA\n");
268 esdhc_write32(&regs->dsaddr, lower_32_bits(priv->dma_addr));
269 esdhc_clrsetbits32(&regs->proctl, PROCTL_DMAS_MASK,
270 PROCTL_DMAS_SDMA);
271 }
272
Michael Walle7e48a022020-09-23 12:42:49 +0200273 esdhc_write32(&regs->blkattr, data->blocks << 16 | data->blocksize);
274}
275
276static int esdhc_setup_data(struct fsl_esdhc_priv *priv, struct mmc *mmc,
277 struct mmc_data *data)
278{
279 int timeout;
280 bool is_write = data->flags & MMC_DATA_WRITE;
281 struct fsl_esdhc *regs = priv->esdhc_regs;
282
283 if (is_write && !(esdhc_read32(&regs->prsstat) & PRSSTAT_WPSPL)) {
284 printf("Can not write to locked SD card.\n");
285 return -EINVAL;
Andy Fleming50586ef2008-10-30 16:47:16 -0500286 }
287
Michael Walle52faec32020-10-12 10:07:13 +0200288 if (IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO))
289 esdhc_setup_watermark_level(priv, data);
290 else
291 esdhc_setup_dma(priv, data);
Andy Fleming50586ef2008-10-30 16:47:16 -0500292
293 /* Calculate the timeout period for data transactions */
Priyanka Jainb71ea332011-03-03 09:18:56 +0530294 /*
295 * 1)Timeout period = (2^(timeout+13)) SD Clock cycles
296 * 2)Timeout period should be minimum 0.250sec as per SD Card spec
297 * So, Number of SD Clock cycles for 0.25sec should be minimum
298 * (SD Clock/sec * 0.25 sec) SD Clock cycles
Andrew Gabbasovfb823982014-03-24 02:40:41 -0500299 * = (mmc->clock * 1/4) SD Clock cycles
Priyanka Jainb71ea332011-03-03 09:18:56 +0530300 * As 1) >= 2)
Andrew Gabbasovfb823982014-03-24 02:40:41 -0500301 * => (2^(timeout+13)) >= mmc->clock * 1/4
Priyanka Jainb71ea332011-03-03 09:18:56 +0530302 * Taking log2 both the sides
Andrew Gabbasovfb823982014-03-24 02:40:41 -0500303 * => timeout + 13 >= log2(mmc->clock/4)
Priyanka Jainb71ea332011-03-03 09:18:56 +0530304 * Rounding up to next power of 2
Andrew Gabbasovfb823982014-03-24 02:40:41 -0500305 * => timeout + 13 = log2(mmc->clock/4) + 1
306 * => timeout + 13 = fls(mmc->clock/4)
Yangbo Lue978a312015-12-30 14:19:30 +0800307 *
308 * However, the MMC spec "It is strongly recommended for hosts to
309 * implement more than 500ms timeout value even if the card
310 * indicates the 250ms maximum busy length." Even the previous
311 * value of 300ms is known to be insufficient for some cards.
312 * So, we use
313 * => timeout + 13 = fls(mmc->clock/2)
Priyanka Jainb71ea332011-03-03 09:18:56 +0530314 */
Yangbo Lue978a312015-12-30 14:19:30 +0800315 timeout = fls(mmc->clock/2);
Andy Fleming50586ef2008-10-30 16:47:16 -0500316 timeout -= 13;
317
318 if (timeout > 14)
319 timeout = 14;
320
321 if (timeout < 0)
322 timeout = 0;
323
Michael Walle52faec32020-10-12 10:07:13 +0200324 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC_A001) &&
325 (timeout == 4 || timeout == 8 || timeout == 12))
Kumar Gala5103a032011-01-29 15:36:10 -0600326 timeout++;
Kumar Gala5103a032011-01-29 15:36:10 -0600327
Michael Walle52faec32020-10-12 10:07:13 +0200328 if (IS_ENABLED(ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE))
329 timeout = 0xE;
330
Stefano Babicc67bee12010-02-05 15:11:27 +0100331 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16);
Andy Fleming50586ef2008-10-30 16:47:16 -0500332
333 return 0;
334}
335
Andy Fleming50586ef2008-10-30 16:47:16 -0500336/*
337 * Sends a command out on the bus. Takes the mmc pointer,
338 * a command pointer, and an optional data pointer.
339 */
Simon Glass9586aa62017-07-29 11:35:18 -0600340static int esdhc_send_cmd_common(struct fsl_esdhc_priv *priv, struct mmc *mmc,
341 struct mmc_cmd *cmd, struct mmc_data *data)
Andy Fleming50586ef2008-10-30 16:47:16 -0500342{
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500343 int err = 0;
Andy Fleming50586ef2008-10-30 16:47:16 -0500344 uint xfertyp;
345 uint irqstat;
Peng Fan51313b42018-01-21 19:00:24 +0800346 u32 flags = IRQSTAT_CC | IRQSTAT_CTOE;
Peng Fan96f04072016-03-25 14:16:56 +0800347 struct fsl_esdhc *regs = priv->esdhc_regs;
Fabio Estevam29c2edb2018-11-19 10:31:53 -0200348 unsigned long start;
Andy Fleming50586ef2008-10-30 16:47:16 -0500349
Michael Walle52faec32020-10-12 10:07:13 +0200350 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC111) &&
351 cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
Jerry Huangd621da02011-01-06 23:42:19 -0600352 return 0;
Jerry Huangd621da02011-01-06 23:42:19 -0600353
Stefano Babicc67bee12010-02-05 15:11:27 +0100354 esdhc_write32(&regs->irqstat, -1);
Andy Fleming50586ef2008-10-30 16:47:16 -0500355
356 sync();
357
358 /* Wait for the bus to be idle */
Stefano Babicc67bee12010-02-05 15:11:27 +0100359 while ((esdhc_read32(&regs->prsstat) & PRSSTAT_CICHB) ||
360 (esdhc_read32(&regs->prsstat) & PRSSTAT_CIDHB))
361 ;
Andy Fleming50586ef2008-10-30 16:47:16 -0500362
Stefano Babicc67bee12010-02-05 15:11:27 +0100363 while (esdhc_read32(&regs->prsstat) & PRSSTAT_DLA)
364 ;
Andy Fleming50586ef2008-10-30 16:47:16 -0500365
Andy Fleming50586ef2008-10-30 16:47:16 -0500366 /* Set up for a data transfer if we have one */
367 if (data) {
Simon Glass09b465f2017-07-29 11:35:17 -0600368 err = esdhc_setup_data(priv, mmc, data);
Andy Fleming50586ef2008-10-30 16:47:16 -0500369 if(err)
370 return err;
371 }
372
373 /* Figure out the transfer arguments */
374 xfertyp = esdhc_xfertyp(cmd, data);
375
Andrew Gabbasov01b77352013-06-11 10:34:22 -0500376 /* Mask all irqs */
377 esdhc_write32(&regs->irqsigen, 0);
378
Andy Fleming50586ef2008-10-30 16:47:16 -0500379 /* Send the command */
Stefano Babicc67bee12010-02-05 15:11:27 +0100380 esdhc_write32(&regs->cmdarg, cmd->cmdarg);
381 esdhc_write32(&regs->xfertyp, xfertyp);
Dirk Behme7a5b8022012-03-26 03:13:05 +0000382
Yangbo Lub1a42472020-09-01 16:58:01 +0800383 if (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
384 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
385 flags = IRQSTAT_BRR;
386
Andy Fleming50586ef2008-10-30 16:47:16 -0500387 /* Wait for the command to complete */
Fabio Estevam29c2edb2018-11-19 10:31:53 -0200388 start = get_timer(0);
389 while (!(esdhc_read32(&regs->irqstat) & flags)) {
390 if (get_timer(start) > 1000) {
391 err = -ETIMEDOUT;
392 goto out;
393 }
394 }
Andy Fleming50586ef2008-10-30 16:47:16 -0500395
Stefano Babicc67bee12010-02-05 15:11:27 +0100396 irqstat = esdhc_read32(&regs->irqstat);
Andy Fleming50586ef2008-10-30 16:47:16 -0500397
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500398 if (irqstat & CMD_ERR) {
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900399 err = -ECOMM;
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500400 goto out;
Dirk Behme7a5b8022012-03-26 03:13:05 +0000401 }
402
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500403 if (irqstat & IRQSTAT_CTOE) {
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900404 err = -ETIMEDOUT;
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500405 goto out;
406 }
Andy Fleming50586ef2008-10-30 16:47:16 -0500407
Dirk Behme7a5b8022012-03-26 03:13:05 +0000408 /* Workaround for ESDHC errata ENGcm03648 */
409 if (!data && (cmd->resp_type & MMC_RSP_BUSY)) {
Yangbo Lu253d5bd2015-04-15 10:13:12 +0800410 int timeout = 6000;
Dirk Behme7a5b8022012-03-26 03:13:05 +0000411
Yangbo Lu253d5bd2015-04-15 10:13:12 +0800412 /* Poll on DATA0 line for cmd with busy signal for 600 ms */
Dirk Behme7a5b8022012-03-26 03:13:05 +0000413 while (timeout > 0 && !(esdhc_read32(&regs->prsstat) &
414 PRSSTAT_DAT0)) {
415 udelay(100);
416 timeout--;
417 }
418
419 if (timeout <= 0) {
420 printf("Timeout waiting for DAT0 to go high!\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900421 err = -ETIMEDOUT;
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500422 goto out;
Dirk Behme7a5b8022012-03-26 03:13:05 +0000423 }
424 }
425
Andy Fleming50586ef2008-10-30 16:47:16 -0500426 /* Copy the response to the response buffer */
427 if (cmd->resp_type & MMC_RSP_136) {
428 u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0;
429
Stefano Babicc67bee12010-02-05 15:11:27 +0100430 cmdrsp3 = esdhc_read32(&regs->cmdrsp3);
431 cmdrsp2 = esdhc_read32(&regs->cmdrsp2);
432 cmdrsp1 = esdhc_read32(&regs->cmdrsp1);
433 cmdrsp0 = esdhc_read32(&regs->cmdrsp0);
Rabin Vincent998be3d2009-04-05 13:30:56 +0530434 cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24);
435 cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24);
436 cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24);
437 cmd->response[3] = (cmdrsp0 << 8);
Andy Fleming50586ef2008-10-30 16:47:16 -0500438 } else
Stefano Babicc67bee12010-02-05 15:11:27 +0100439 cmd->response[0] = esdhc_read32(&regs->cmdrsp0);
Andy Fleming50586ef2008-10-30 16:47:16 -0500440
441 /* Wait until all of the blocks are transferred */
442 if (data) {
Michael Walle52faec32020-10-12 10:07:13 +0200443 if (IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO)) {
444 esdhc_pio_read_write(priv, data);
445 } else {
446 flags = DATA_COMPLETE;
447 if (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
448 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
449 flags = IRQSTAT_BRR;
Yangbo Lub1a42472020-09-01 16:58:01 +0800450
Michael Walle52faec32020-10-12 10:07:13 +0200451 do {
452 irqstat = esdhc_read32(&regs->irqstat);
Andy Fleming50586ef2008-10-30 16:47:16 -0500453
Michael Walle52faec32020-10-12 10:07:13 +0200454 if (irqstat & IRQSTAT_DTOE) {
455 err = -ETIMEDOUT;
456 goto out;
457 }
Frans Meulenbroeks63fb5a72010-07-31 04:45:18 +0000458
Michael Walle52faec32020-10-12 10:07:13 +0200459 if (irqstat & DATA_ERR) {
460 err = -ECOMM;
461 goto out;
462 }
463 } while ((irqstat & flags) != flags);
Ye.Li71689772014-02-20 18:00:57 +0800464
Michael Walle52faec32020-10-12 10:07:13 +0200465 /*
466 * Need invalidate the dcache here again to avoid any
467 * cache-fill during the DMA operations such as the
468 * speculative pre-fetching etc.
469 */
470 dma_unmap_single(priv->dma_addr,
471 data->blocks * data->blocksize,
472 mmc_get_dma_dir(data));
473 }
Andy Fleming50586ef2008-10-30 16:47:16 -0500474 }
475
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500476out:
477 /* Reset CMD and DATA portions on error */
478 if (err) {
479 esdhc_write32(&regs->sysctl, esdhc_read32(&regs->sysctl) |
480 SYSCTL_RSTC);
481 while (esdhc_read32(&regs->sysctl) & SYSCTL_RSTC)
482 ;
483
484 if (data) {
485 esdhc_write32(&regs->sysctl,
486 esdhc_read32(&regs->sysctl) |
487 SYSCTL_RSTD);
488 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTD))
489 ;
490 }
491 }
492
Stefano Babicc67bee12010-02-05 15:11:27 +0100493 esdhc_write32(&regs->irqstat, -1);
Andy Fleming50586ef2008-10-30 16:47:16 -0500494
Andrew Gabbasov8a573022014-03-24 02:41:06 -0500495 return err;
Andy Fleming50586ef2008-10-30 16:47:16 -0500496}
497
Simon Glass09b465f2017-07-29 11:35:17 -0600498static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock)
Andy Fleming50586ef2008-10-30 16:47:16 -0500499{
Benoît Thébaudeaub9b4f142018-01-16 22:44:18 +0100500 struct fsl_esdhc *regs = priv->esdhc_regs;
Benoît Thébaudeau4f425282017-05-03 11:59:03 +0200501 int div = 1;
Benoît Thébaudeau4f425282017-05-03 11:59:03 +0200502 int pre_div = 2;
Yinbo Zhu6f883e52019-07-16 15:09:11 +0800503 unsigned int sdhc_clk = priv->sdhc_clk;
504 u32 time_out;
505 u32 value;
Andy Fleming50586ef2008-10-30 16:47:16 -0500506 uint clk;
Pali Rohár6dcf1c22022-04-29 20:27:34 +0200507 u32 hostver;
Andy Fleming50586ef2008-10-30 16:47:16 -0500508
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200509 if (clock < mmc->cfg->f_min)
510 clock = mmc->cfg->f_min;
Stefano Babicc67bee12010-02-05 15:11:27 +0100511
Yangbo Lu5d336d12019-10-21 18:09:09 +0800512 while (sdhc_clk / (16 * pre_div) > clock && pre_div < 256)
Lukasz Majewskib6a04272019-05-07 17:47:28 +0200513 pre_div *= 2;
Andy Fleming50586ef2008-10-30 16:47:16 -0500514
Yangbo Lu5d336d12019-10-21 18:09:09 +0800515 while (sdhc_clk / (div * pre_div) > clock && div < 16)
Lukasz Majewskib6a04272019-05-07 17:47:28 +0200516 div++;
Andy Fleming50586ef2008-10-30 16:47:16 -0500517
Michael Wallebd7b8502021-03-17 15:01:36 +0100518 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_A011334) &&
519 clock == 200000000 && mmc->selected_mode == MMC_HS_400) {
520 u32 div_ratio = pre_div * div;
521
522 if (div_ratio <= 4) {
523 pre_div = 4;
524 div = 1;
525 } else if (div_ratio <= 8) {
526 pre_div = 4;
527 div = 2;
528 } else if (div_ratio <= 12) {
529 pre_div = 4;
530 div = 3;
531 } else {
532 printf("unsupported clock division.\n");
533 }
534 }
535
Yangbo Lu30f64442020-09-01 16:58:06 +0800536 mmc->clock = sdhc_clk / pre_div / div;
537 priv->clock = mmc->clock;
538
Benoît Thébaudeau4f425282017-05-03 11:59:03 +0200539 pre_div >>= 1;
Andy Fleming50586ef2008-10-30 16:47:16 -0500540 div -= 1;
541
542 clk = (pre_div << 8) | (div << 4);
543
Kumar Galacc4d1222010-03-18 15:51:05 -0500544 esdhc_clrbits32(&regs->sysctl, SYSCTL_CKEN);
Stefano Babicc67bee12010-02-05 15:11:27 +0100545
546 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_CLOCK_MASK, clk);
Andy Fleming50586ef2008-10-30 16:47:16 -0500547
Pali Rohár6dcf1c22022-04-29 20:27:34 +0200548 /* Only newer eSDHC controllers set PRSSTAT_SDSTB flag */
549 hostver = esdhc_read32(&priv->esdhc_regs->hostver);
550 if (HOSTVER_VENDOR(hostver) <= VENDOR_V_22) {
551 udelay(10000);
552 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
553 return;
554 }
555
Yinbo Zhu6f883e52019-07-16 15:09:11 +0800556 time_out = 20;
557 value = PRSSTAT_SDSTB;
558 while (!(esdhc_read32(&regs->prsstat) & value)) {
559 if (time_out == 0) {
560 printf("fsl_esdhc: Internal clock never stabilised.\n");
561 break;
562 }
563 time_out--;
564 mdelay(1);
565 }
Andy Fleming50586ef2008-10-30 16:47:16 -0500566
Eric Nelsonf0b5f232015-12-04 12:32:48 -0700567 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
Andy Fleming50586ef2008-10-30 16:47:16 -0500568}
569
Simon Glass09b465f2017-07-29 11:35:17 -0600570static void esdhc_clock_control(struct fsl_esdhc_priv *priv, bool enable)
Yangbo Lu2d9ca2c2015-04-22 13:57:40 +0800571{
Peng Fan96f04072016-03-25 14:16:56 +0800572 struct fsl_esdhc *regs = priv->esdhc_regs;
Yangbo Lu2d9ca2c2015-04-22 13:57:40 +0800573 u32 value;
574 u32 time_out;
Pali Rohár6dcf1c22022-04-29 20:27:34 +0200575 u32 hostver;
Yangbo Lu2d9ca2c2015-04-22 13:57:40 +0800576
577 value = esdhc_read32(&regs->sysctl);
578
579 if (enable)
580 value |= SYSCTL_CKEN;
581 else
582 value &= ~SYSCTL_CKEN;
583
584 esdhc_write32(&regs->sysctl, value);
585
Pali Rohár6dcf1c22022-04-29 20:27:34 +0200586 /* Only newer eSDHC controllers set PRSSTAT_SDSTB flag */
587 hostver = esdhc_read32(&priv->esdhc_regs->hostver);
588 if (HOSTVER_VENDOR(hostver) <= VENDOR_V_22) {
589 udelay(10000);
590 return;
591 }
592
Yangbo Lu2d9ca2c2015-04-22 13:57:40 +0800593 time_out = 20;
594 value = PRSSTAT_SDSTB;
595 while (!(esdhc_read32(&regs->prsstat) & value)) {
596 if (time_out == 0) {
597 printf("fsl_esdhc: Internal clock never stabilised.\n");
598 break;
599 }
600 time_out--;
601 mdelay(1);
602 }
603}
Yangbo Lu2d9ca2c2015-04-22 13:57:40 +0800604
Yangbo Ludb8f9362020-09-01 16:58:05 +0800605static void esdhc_flush_async_fifo(struct fsl_esdhc_priv *priv)
606{
607 struct fsl_esdhc *regs = priv->esdhc_regs;
608 u32 time_out;
609
610 esdhc_setbits32(&regs->esdhcctl, ESDHCCTL_FAF);
611
612 time_out = 20;
613 while (esdhc_read32(&regs->esdhcctl) & ESDHCCTL_FAF) {
614 if (time_out == 0) {
615 printf("fsl_esdhc: Flush asynchronous FIFO timeout.\n");
616 break;
617 }
618 time_out--;
619 mdelay(1);
620 }
621}
622
623static void esdhc_tuning_block_enable(struct fsl_esdhc_priv *priv,
624 bool en)
625{
626 struct fsl_esdhc *regs = priv->esdhc_regs;
627
628 esdhc_clock_control(priv, false);
629 esdhc_flush_async_fifo(priv);
630 if (en)
631 esdhc_setbits32(&regs->tbctl, TBCTL_TB_EN);
632 else
633 esdhc_clrbits32(&regs->tbctl, TBCTL_TB_EN);
634 esdhc_clock_control(priv, true);
635}
636
637static void esdhc_exit_hs400(struct fsl_esdhc_priv *priv)
638{
639 struct fsl_esdhc *regs = priv->esdhc_regs;
640
641 esdhc_clrbits32(&regs->sdtimingctl, FLW_CTL_BG);
642 esdhc_clrbits32(&regs->sdclkctl, CMD_CLK_CTL);
643
644 esdhc_clock_control(priv, false);
645 esdhc_clrbits32(&regs->tbctl, HS400_MODE);
646 esdhc_clock_control(priv, true);
647
648 esdhc_clrbits32(&regs->dllcfg0, DLL_FREQ_SEL | DLL_ENABLE);
649 esdhc_clrbits32(&regs->tbctl, HS400_WNDW_ADJUST);
650
651 esdhc_tuning_block_enable(priv, false);
652}
653
Yangbo Lu8ee802f2020-10-20 11:04:52 +0800654static int esdhc_set_timing(struct fsl_esdhc_priv *priv, enum bus_mode mode)
Yangbo Lub1a42472020-09-01 16:58:01 +0800655{
656 struct fsl_esdhc *regs = priv->esdhc_regs;
Yangbo Lu8ee802f2020-10-20 11:04:52 +0800657 ulong start;
658 u32 val;
Yangbo Lub1a42472020-09-01 16:58:01 +0800659
Yangbo Ludb8f9362020-09-01 16:58:05 +0800660 /* Exit HS400 mode before setting any other mode */
661 if (esdhc_read32(&regs->tbctl) & HS400_MODE &&
662 mode != MMC_HS_400)
663 esdhc_exit_hs400(priv);
664
Yangbo Lub1a42472020-09-01 16:58:01 +0800665 esdhc_clock_control(priv, false);
666
667 if (mode == MMC_HS_200)
668 esdhc_clrsetbits32(&regs->autoc12err, UHSM_MASK,
669 UHSM_SDR104_HS200);
Yangbo Ludb8f9362020-09-01 16:58:05 +0800670 if (mode == MMC_HS_400) {
671 esdhc_setbits32(&regs->tbctl, HS400_MODE);
672 esdhc_setbits32(&regs->sdclkctl, CMD_CLK_CTL);
673 esdhc_clock_control(priv, true);
Yangbo Lub1a42472020-09-01 16:58:01 +0800674
Yangbo Lu78804de2020-09-01 16:58:07 +0800675 if (priv->clock == 200000000)
676 esdhc_setbits32(&regs->dllcfg0, DLL_FREQ_SEL);
677
678 esdhc_setbits32(&regs->dllcfg0, DLL_ENABLE);
Yangbo Lu8ee802f2020-10-20 11:04:52 +0800679
680 esdhc_setbits32(&regs->dllcfg0, DLL_RESET);
681 udelay(1);
682 esdhc_clrbits32(&regs->dllcfg0, DLL_RESET);
683
684 start = get_timer(0);
685 val = DLL_STS_SLV_LOCK;
686 while (!(esdhc_read32(&regs->dllstat0) & val)) {
687 if (get_timer(start) > 1000) {
688 printf("fsl_esdhc: delay chain lock timeout\n");
689 return -ETIMEDOUT;
690 }
691 }
692
Yangbo Ludb8f9362020-09-01 16:58:05 +0800693 esdhc_setbits32(&regs->tbctl, HS400_WNDW_ADJUST);
694
695 esdhc_clock_control(priv, false);
696 esdhc_flush_async_fifo(priv);
697 }
Yangbo Lub1a42472020-09-01 16:58:01 +0800698 esdhc_clock_control(priv, true);
Yangbo Lu8ee802f2020-10-20 11:04:52 +0800699 return 0;
Yangbo Lub1a42472020-09-01 16:58:01 +0800700}
701
Simon Glass9586aa62017-07-29 11:35:18 -0600702static int esdhc_set_ios_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
Andy Fleming50586ef2008-10-30 16:47:16 -0500703{
Peng Fan96f04072016-03-25 14:16:56 +0800704 struct fsl_esdhc *regs = priv->esdhc_regs;
Yangbo Lu8ee802f2020-10-20 11:04:52 +0800705 int ret;
Andy Fleming50586ef2008-10-30 16:47:16 -0500706
Yangbo Luf1bce082019-12-19 18:59:30 +0800707 if (priv->is_sdhc_per_clk) {
708 /* Select to use peripheral clock */
709 esdhc_clock_control(priv, false);
710 esdhc_setbits32(&regs->esdhcctl, ESDHCCTL_PCS);
711 esdhc_clock_control(priv, true);
712 }
713
Yangbo Ludb8f9362020-09-01 16:58:05 +0800714 if (mmc->selected_mode == MMC_HS_400)
715 esdhc_tuning_block_enable(priv, true);
716
Andy Fleming50586ef2008-10-30 16:47:16 -0500717 /* Set the clock speed */
Peng Fan51313b42018-01-21 19:00:24 +0800718 if (priv->clock != mmc->clock)
719 set_sysctl(priv, mmc, mmc->clock);
720
Yangbo Lub1a42472020-09-01 16:58:01 +0800721 /* Set timing */
Yangbo Lu8ee802f2020-10-20 11:04:52 +0800722 ret = esdhc_set_timing(priv, mmc->selected_mode);
723 if (ret)
724 return ret;
Yangbo Lub1a42472020-09-01 16:58:01 +0800725
Andy Fleming50586ef2008-10-30 16:47:16 -0500726 /* Set the bus width */
Stefano Babicc67bee12010-02-05 15:11:27 +0100727 esdhc_clrbits32(&regs->proctl, PROCTL_DTW_4 | PROCTL_DTW_8);
Andy Fleming50586ef2008-10-30 16:47:16 -0500728
729 if (mmc->bus_width == 4)
Stefano Babicc67bee12010-02-05 15:11:27 +0100730 esdhc_setbits32(&regs->proctl, PROCTL_DTW_4);
Andy Fleming50586ef2008-10-30 16:47:16 -0500731 else if (mmc->bus_width == 8)
Stefano Babicc67bee12010-02-05 15:11:27 +0100732 esdhc_setbits32(&regs->proctl, PROCTL_DTW_8);
733
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900734 return 0;
Andy Fleming50586ef2008-10-30 16:47:16 -0500735}
736
Rasmus Villemoesede28222020-01-30 12:06:45 +0000737static void esdhc_enable_cache_snooping(struct fsl_esdhc *regs)
738{
739#ifdef CONFIG_ARCH_MPC830X
740 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
741 sysconf83xx_t *sysconf = &immr->sysconf;
742
743 setbits_be32(&sysconf->sdhccr, 0x02000000);
744#else
Pali Rohár44564e72022-04-04 18:32:13 +0200745 esdhc_write32(&regs->esdhcctl, ESDHCCTL_SNOOP);
Rasmus Villemoesede28222020-01-30 12:06:45 +0000746#endif
747}
748
Simon Glass9586aa62017-07-29 11:35:18 -0600749static int esdhc_init_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
Andy Fleming50586ef2008-10-30 16:47:16 -0500750{
Peng Fan96f04072016-03-25 14:16:56 +0800751 struct fsl_esdhc *regs = priv->esdhc_regs;
Simon Glass201e8282017-07-29 11:35:20 -0600752 ulong start;
Andy Fleming50586ef2008-10-30 16:47:16 -0500753
Stefano Babicc67bee12010-02-05 15:11:27 +0100754 /* Reset the entire host controller */
Dirk Behmea61da722013-07-15 15:44:29 +0200755 esdhc_setbits32(&regs->sysctl, SYSCTL_RSTA);
Stefano Babicc67bee12010-02-05 15:11:27 +0100756
757 /* Wait until the controller is available */
Simon Glass201e8282017-07-29 11:35:20 -0600758 start = get_timer(0);
759 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTA)) {
760 if (get_timer(start) > 1000)
761 return -ETIMEDOUT;
762 }
Stefano Babicc67bee12010-02-05 15:11:27 +0100763
Yangbo Lu1b5f0ba2020-09-01 16:58:02 +0800764 /* Clean TBCTL[TB_EN] which is not able to be reset by reset all */
765 esdhc_clrbits32(&regs->tbctl, TBCTL_TB_EN);
766
Rasmus Villemoesede28222020-01-30 12:06:45 +0000767 esdhc_enable_cache_snooping(regs);
P.V.Suresh2c1764e2010-12-04 10:37:23 +0530768
Dirk Behmea61da722013-07-15 15:44:29 +0200769 esdhc_setbits32(&regs->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN);
Andy Fleming50586ef2008-10-30 16:47:16 -0500770
771 /* Set the initial clock speed */
Yangbo Lu263ddfc2020-10-20 11:04:51 +0800772 set_sysctl(priv, mmc, 400000);
Andy Fleming50586ef2008-10-30 16:47:16 -0500773
774 /* Disable the BRR and BWR bits in IRQSTAT */
Stefano Babicc67bee12010-02-05 15:11:27 +0100775 esdhc_clrbits32(&regs->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR);
Andy Fleming50586ef2008-10-30 16:47:16 -0500776
777 /* Put the PROCTL reg back to the default */
Stefano Babicc67bee12010-02-05 15:11:27 +0100778 esdhc_write32(&regs->proctl, PROCTL_INIT);
Andy Fleming50586ef2008-10-30 16:47:16 -0500779
Stefano Babicc67bee12010-02-05 15:11:27 +0100780 /* Set timout to the maximum value */
781 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16);
Andy Fleming50586ef2008-10-30 16:47:16 -0500782
Michael Walled3b745f2021-03-17 15:01:37 +0100783 if (IS_ENABLED(CONFIG_SYS_FSL_ESDHC_UNRELIABLE_PULSE_DETECTION_WORKAROUND))
784 esdhc_clrbits32(&regs->dllcfg1, DLL_PD_PULSE_STRETCH_SEL);
785
Thierry Redingd48d2e22012-01-02 01:15:38 +0000786 return 0;
787}
Andy Fleming50586ef2008-10-30 16:47:16 -0500788
Simon Glass9586aa62017-07-29 11:35:18 -0600789static int esdhc_getcd_common(struct fsl_esdhc_priv *priv)
Thierry Redingd48d2e22012-01-02 01:15:38 +0000790{
Peng Fan96f04072016-03-25 14:16:56 +0800791 struct fsl_esdhc *regs = priv->esdhc_regs;
Stefano Babicc67bee12010-02-05 15:11:27 +0100792
Haijun.Zhangf7e27cc2014-01-10 13:52:17 +0800793#ifdef CONFIG_ESDHC_DETECT_QUIRK
Tom Rini7e7d04a2022-06-16 14:04:38 -0400794 if (qixis_esdhc_detect_quirk())
Haijun.Zhangf7e27cc2014-01-10 13:52:17 +0800795 return 1;
796#endif
Yangbo Lu9abf6482020-05-19 11:06:43 +0800797 if (esdhc_read32(&regs->prsstat) & PRSSTAT_CINS)
798 return 1;
Thierry Redingd48d2e22012-01-02 01:15:38 +0000799
Yangbo Lu9abf6482020-05-19 11:06:43 +0800800 return 0;
Andy Fleming50586ef2008-10-30 16:47:16 -0500801}
802
Yangbo Lu57059732019-10-31 18:54:23 +0800803static void fsl_esdhc_get_cfg_common(struct fsl_esdhc_priv *priv,
804 struct mmc_config *cfg)
Andy Fleming50586ef2008-10-30 16:47:16 -0500805{
Yangbo Lu57059732019-10-31 18:54:23 +0800806 struct fsl_esdhc *regs = priv->esdhc_regs;
Yangbo Lu5b05fc02019-10-31 18:54:21 +0800807 u32 caps;
Andy Fleming50586ef2008-10-30 16:47:16 -0500808
Wang Huan19060bd2014-09-05 13:52:40 +0800809 caps = esdhc_read32(&regs->hostcapblt);
Yangbo Luae7020b2021-06-03 10:51:17 +0800810
811 /*
812 * For eSDHC, power supply is through peripheral circuit. Some eSDHC
813 * versions have value 0 of the bit but that does not reflect the
814 * truth. 3.3V is common for SD/MMC, and is supported for all boards
815 * with eSDHC in current u-boot. So, make 3.3V is supported in
816 * default in code. CONFIG_FSL_ESDHC_VS33_NOT_SUPPORT can be enabled
817 * if future board does not support 3.3V.
818 */
819 caps |= HOSTCAPBLT_VS33;
820 if (IS_ENABLED(CONFIG_FSL_ESDHC_VS33_NOT_SUPPORT))
821 caps &= ~HOSTCAPBLT_VS33;
822
Michael Walle52faec32020-10-12 10:07:13 +0200823 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC135))
824 caps &= ~(HOSTCAPBLT_SRS | HOSTCAPBLT_VS18 | HOSTCAPBLT_VS30);
Yangbo Lu5b05fc02019-10-31 18:54:21 +0800825 if (caps & HOSTCAPBLT_VS18)
826 cfg->voltages |= MMC_VDD_165_195;
827 if (caps & HOSTCAPBLT_VS30)
828 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
829 if (caps & HOSTCAPBLT_VS33)
830 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Li Yang030955c2010-11-25 17:06:09 +0000831
Simon Glasse88e1d92017-07-29 11:35:21 -0600832 cfg->name = "FSL_SDHC";
Abbas Razaaad46592013-03-25 09:13:34 +0000833
Yangbo Lu5b05fc02019-10-31 18:54:21 +0800834 if (caps & HOSTCAPBLT_HSS)
Simon Glasse88e1d92017-07-29 11:35:21 -0600835 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Andy Fleming50586ef2008-10-30 16:47:16 -0500836
Simon Glasse88e1d92017-07-29 11:35:21 -0600837 cfg->f_min = 400000;
Peng Fan51313b42018-01-21 19:00:24 +0800838 cfg->f_max = min(priv->sdhc_clk, (u32)200000000);
Simon Glasse88e1d92017-07-29 11:35:21 -0600839 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
Peng Fan96f04072016-03-25 14:16:56 +0800840}
841
Stefano Babicc67bee12010-02-05 15:11:27 +0100842#ifdef CONFIG_OF_LIBFDT
Yangbo Lufce1e162017-01-17 10:43:54 +0800843__weak int esdhc_status_fixup(void *blob, const char *compat)
844{
Michael Walle52faec32020-10-12 10:07:13 +0200845 if (IS_ENABLED(CONFIG_FSL_ESDHC_PIN_MUX) && !hwconfig("esdhc")) {
Yangbo Lufce1e162017-01-17 10:43:54 +0800846 do_fixup_by_compat(blob, compat, "status", "disabled",
847 sizeof("disabled"), 1);
848 return 1;
849 }
Michael Walle52faec32020-10-12 10:07:13 +0200850
Yangbo Lufce1e162017-01-17 10:43:54 +0800851 return 0;
852}
853
Yangbo Luc927d652020-05-19 11:06:44 +0800854
Michael Walle52faec32020-10-12 10:07:13 +0200855#if CONFIG_IS_ENABLED(DM_MMC)
856static int fsl_esdhc_get_cd(struct udevice *dev);
Yangbo Luc927d652020-05-19 11:06:44 +0800857static void esdhc_disable_for_no_card(void *blob)
858{
859 struct udevice *dev;
860
861 for (uclass_first_device(UCLASS_MMC, &dev);
862 dev;
863 uclass_next_device(&dev)) {
864 char esdhc_path[50];
865
866 if (fsl_esdhc_get_cd(dev))
867 continue;
868
869 snprintf(esdhc_path, sizeof(esdhc_path), "/soc/esdhc@%lx",
870 (unsigned long)dev_read_addr(dev));
871 do_fixup_by_path(blob, esdhc_path, "status", "disabled",
872 sizeof("disabled"), 1);
873 }
874}
Michael Walle52faec32020-10-12 10:07:13 +0200875#else
876static void esdhc_disable_for_no_card(void *blob)
877{
878}
Yangbo Luc927d652020-05-19 11:06:44 +0800879#endif
880
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900881void fdt_fixup_esdhc(void *blob, struct bd_info *bd)
Anton Vorontsovb33433a2009-06-10 00:25:29 +0400882{
883 const char *compat = "fsl,esdhc";
Anton Vorontsovb33433a2009-06-10 00:25:29 +0400884
Yangbo Lufce1e162017-01-17 10:43:54 +0800885 if (esdhc_status_fixup(blob, compat))
Chenhui Zhaoa6da8b82011-01-04 17:23:05 +0800886 return;
Michael Walle52faec32020-10-12 10:07:13 +0200887
888 if (IS_ENABLED(CONFIG_FSL_ESDHC_33V_IO_RELIABILITY_WORKAROUND))
889 esdhc_disable_for_no_card(blob);
890
Anton Vorontsovb33433a2009-06-10 00:25:29 +0400891 do_fixup_by_compat_u32(blob, compat, "clock-frequency",
Simon Glasse9adeca2012-12-13 20:49:05 +0000892 gd->arch.sdhc_clk, 1);
Anton Vorontsovb33433a2009-06-10 00:25:29 +0400893}
Stefano Babicc67bee12010-02-05 15:11:27 +0100894#endif
Peng Fan96f04072016-03-25 14:16:56 +0800895
Yangbo Lu61870472019-10-31 18:54:26 +0800896#if !CONFIG_IS_ENABLED(DM_MMC)
897static int esdhc_getcd(struct mmc *mmc)
898{
899 struct fsl_esdhc_priv *priv = mmc->priv;
900
901 return esdhc_getcd_common(priv);
902}
903
904static int esdhc_init(struct mmc *mmc)
905{
906 struct fsl_esdhc_priv *priv = mmc->priv;
907
908 return esdhc_init_common(priv, mmc);
909}
910
911static int esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
912 struct mmc_data *data)
913{
914 struct fsl_esdhc_priv *priv = mmc->priv;
915
916 return esdhc_send_cmd_common(priv, mmc, cmd, data);
917}
918
919static int esdhc_set_ios(struct mmc *mmc)
920{
921 struct fsl_esdhc_priv *priv = mmc->priv;
922
923 return esdhc_set_ios_common(priv, mmc);
924}
925
926static const struct mmc_ops esdhc_ops = {
927 .getcd = esdhc_getcd,
928 .init = esdhc_init,
929 .send_cmd = esdhc_send_cmd,
930 .set_ios = esdhc_set_ios,
931};
932
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900933int fsl_esdhc_initialize(struct bd_info *bis, struct fsl_esdhc_cfg *cfg)
Yangbo Lu61870472019-10-31 18:54:26 +0800934{
935 struct fsl_esdhc_plat *plat;
936 struct fsl_esdhc_priv *priv;
937 struct mmc_config *mmc_cfg;
938 struct mmc *mmc;
939
940 if (!cfg)
941 return -EINVAL;
942
943 priv = calloc(sizeof(struct fsl_esdhc_priv), 1);
944 if (!priv)
945 return -ENOMEM;
946 plat = calloc(sizeof(struct fsl_esdhc_plat), 1);
947 if (!plat) {
948 free(priv);
949 return -ENOMEM;
950 }
951
952 priv->esdhc_regs = (struct fsl_esdhc *)(unsigned long)(cfg->esdhc_base);
953 priv->sdhc_clk = cfg->sdhc_clk;
Yangbo Luf1bce082019-12-19 18:59:30 +0800954 if (gd->arch.sdhc_per_clk)
955 priv->is_sdhc_per_clk = true;
Yangbo Lu61870472019-10-31 18:54:26 +0800956
957 mmc_cfg = &plat->cfg;
958
959 if (cfg->max_bus_width == 8) {
960 mmc_cfg->host_caps |= MMC_MODE_1BIT | MMC_MODE_4BIT |
961 MMC_MODE_8BIT;
962 } else if (cfg->max_bus_width == 4) {
963 mmc_cfg->host_caps |= MMC_MODE_1BIT | MMC_MODE_4BIT;
964 } else if (cfg->max_bus_width == 1) {
965 mmc_cfg->host_caps |= MMC_MODE_1BIT;
966 } else {
Pali Rohára29eb312022-05-11 20:27:12 +0200967 mmc_cfg->host_caps |= MMC_MODE_1BIT;
968 printf("No max bus width provided. Fallback to 1-bit mode.\n");
Yangbo Lu61870472019-10-31 18:54:26 +0800969 }
970
Michael Walle52faec32020-10-12 10:07:13 +0200971 if (IS_ENABLED(CONFIG_ESDHC_DETECT_8_BIT_QUIRK))
Yangbo Lu61870472019-10-31 18:54:26 +0800972 mmc_cfg->host_caps &= ~MMC_MODE_8BIT;
Michael Walle52faec32020-10-12 10:07:13 +0200973
Yangbo Lu61870472019-10-31 18:54:26 +0800974 mmc_cfg->ops = &esdhc_ops;
975
976 fsl_esdhc_get_cfg_common(priv, mmc_cfg);
977
978 mmc = mmc_create(mmc_cfg, priv);
979 if (!mmc)
980 return -EIO;
981
982 priv->mmc = mmc;
983 return 0;
984}
985
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900986int fsl_esdhc_mmc_init(struct bd_info *bis)
Yangbo Lu61870472019-10-31 18:54:26 +0800987{
988 struct fsl_esdhc_cfg *cfg;
989
990 cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1);
Tom Rini6cc04542022-10-28 20:27:13 -0400991 cfg->esdhc_base = CFG_SYS_FSL_ESDHC_ADDR;
Pali Rohár8f3f8ba2022-05-11 20:27:13 +0200992 cfg->max_bus_width = CONFIG_SYS_FSL_ESDHC_DEFAULT_BUS_WIDTH;
Yangbo Luf1bce082019-12-19 18:59:30 +0800993 /* Prefer peripheral clock which provides higher frequency. */
994 if (gd->arch.sdhc_per_clk)
995 cfg->sdhc_clk = gd->arch.sdhc_per_clk;
996 else
997 cfg->sdhc_clk = gd->arch.sdhc_clk;
Yangbo Lu61870472019-10-31 18:54:26 +0800998 return fsl_esdhc_initialize(bis, cfg);
999}
1000#else /* DM_MMC */
Peng Fan96f04072016-03-25 14:16:56 +08001001static int fsl_esdhc_probe(struct udevice *dev)
1002{
1003 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -07001004 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Peng Fan96f04072016-03-25 14:16:56 +08001005 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
Michael Walle361a4222020-10-12 10:07:14 +02001006 u32 caps, hostver;
Peng Fan96f04072016-03-25 14:16:56 +08001007 fdt_addr_t addr;
Simon Glass653282b2017-07-29 11:35:24 -06001008 struct mmc *mmc;
Yangbo Luc927d652020-05-19 11:06:44 +08001009 int ret;
Peng Fan96f04072016-03-25 14:16:56 +08001010
Simon Glass4aac33f2017-07-29 11:35:23 -06001011 addr = dev_read_addr(dev);
Peng Fan96f04072016-03-25 14:16:56 +08001012 if (addr == FDT_ADDR_T_NONE)
1013 return -EINVAL;
Yinbo Zhub69e1d02019-04-11 11:01:50 +00001014#ifdef CONFIG_PPC
1015 priv->esdhc_regs = (struct fsl_esdhc *)lower_32_bits(addr);
1016#else
Peng Fan96f04072016-03-25 14:16:56 +08001017 priv->esdhc_regs = (struct fsl_esdhc *)addr;
Yinbo Zhub69e1d02019-04-11 11:01:50 +00001018#endif
Peng Fan96f04072016-03-25 14:16:56 +08001019 priv->dev = dev;
1020
Michael Walle361a4222020-10-12 10:07:14 +02001021 if (IS_ENABLED(CONFIG_FSL_ESDHC_SUPPORT_ADMA2)) {
1022 /*
1023 * Only newer eSDHC controllers can do ADMA2 if the ADMA flag
1024 * is set in the host capabilities register.
1025 */
1026 caps = esdhc_read32(&priv->esdhc_regs->hostcapblt);
1027 hostver = esdhc_read32(&priv->esdhc_regs->hostver);
1028 if (caps & HOSTCAPBLT_DMAS &&
1029 HOSTVER_VENDOR(hostver) > VENDOR_V_22) {
1030 priv->adma_desc_table = sdhci_adma_init();
1031 if (!priv->adma_desc_table)
1032 debug("Could not allocate ADMA tables, falling back to SDMA\n");
1033 }
1034 }
1035
Yangbo Luf1bce082019-12-19 18:59:30 +08001036 if (gd->arch.sdhc_per_clk) {
1037 priv->sdhc_clk = gd->arch.sdhc_per_clk;
1038 priv->is_sdhc_per_clk = true;
1039 } else {
1040 priv->sdhc_clk = gd->arch.sdhc_clk;
1041 }
1042
Yangbo Lu5e81cbf2019-11-12 19:28:36 +08001043 if (priv->sdhc_clk <= 0) {
1044 dev_err(dev, "Unable to get clk for %s\n", dev->name);
1045 return -EINVAL;
Peng Fan96f04072016-03-25 14:16:56 +08001046 }
1047
Yangbo Lu57059732019-10-31 18:54:23 +08001048 fsl_esdhc_get_cfg_common(priv, &plat->cfg);
Peng Fan96f04072016-03-25 14:16:56 +08001049
Yinbo Zhu6f883e52019-07-16 15:09:11 +08001050 mmc_of_parse(dev, &plat->cfg);
1051
Simon Glass653282b2017-07-29 11:35:24 -06001052 mmc = &plat->mmc;
1053 mmc->cfg = &plat->cfg;
1054 mmc->dev = dev;
Yangbo Lu66fa0352019-05-23 11:05:46 +08001055
Simon Glass653282b2017-07-29 11:35:24 -06001056 upriv->mmc = mmc;
Peng Fan96f04072016-03-25 14:16:56 +08001057
Yangbo Luc927d652020-05-19 11:06:44 +08001058 ret = esdhc_init_common(priv, mmc);
1059 if (ret)
1060 return ret;
1061
Michael Walle52faec32020-10-12 10:07:13 +02001062 if (IS_ENABLED(CONFIG_FSL_ESDHC_33V_IO_RELIABILITY_WORKAROUND) &&
1063 !fsl_esdhc_get_cd(dev))
Yangbo Luc927d652020-05-19 11:06:44 +08001064 esdhc_setbits32(&priv->esdhc_regs->proctl, PROCTL_VOLT_SEL);
Michael Walle52faec32020-10-12 10:07:13 +02001065
Yangbo Luc927d652020-05-19 11:06:44 +08001066 return 0;
Peng Fan96f04072016-03-25 14:16:56 +08001067}
1068
Simon Glass653282b2017-07-29 11:35:24 -06001069static int fsl_esdhc_get_cd(struct udevice *dev)
1070{
Simon Glassc69cda22020-12-03 16:55:20 -07001071 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Simon Glass653282b2017-07-29 11:35:24 -06001072 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1073
Yangbo Lu08197cb2019-10-31 18:54:24 +08001074 if (plat->cfg.host_caps & MMC_CAP_NONREMOVABLE)
1075 return 1;
1076
Simon Glass653282b2017-07-29 11:35:24 -06001077 return esdhc_getcd_common(priv);
1078}
1079
1080static int fsl_esdhc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
1081 struct mmc_data *data)
1082{
Simon Glassc69cda22020-12-03 16:55:20 -07001083 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Simon Glass653282b2017-07-29 11:35:24 -06001084 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1085
1086 return esdhc_send_cmd_common(priv, &plat->mmc, cmd, data);
1087}
1088
1089static int fsl_esdhc_set_ios(struct udevice *dev)
1090{
Simon Glassc69cda22020-12-03 16:55:20 -07001091 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Simon Glass653282b2017-07-29 11:35:24 -06001092 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1093
1094 return esdhc_set_ios_common(priv, &plat->mmc);
1095}
1096
Yangbo Lu1fdefd12020-09-01 16:58:00 +08001097static int fsl_esdhc_reinit(struct udevice *dev)
1098{
Simon Glassc69cda22020-12-03 16:55:20 -07001099 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lu1fdefd12020-09-01 16:58:00 +08001100 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1101
1102 return esdhc_init_common(priv, &plat->mmc);
1103}
1104
Yangbo Lub1a42472020-09-01 16:58:01 +08001105#ifdef MMC_SUPPORTS_TUNING
Yangbo Lub1a42472020-09-01 16:58:01 +08001106static int fsl_esdhc_execute_tuning(struct udevice *dev, uint32_t opcode)
1107{
Simon Glassc69cda22020-12-03 16:55:20 -07001108 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lub1a42472020-09-01 16:58:01 +08001109 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1110 struct fsl_esdhc *regs = priv->esdhc_regs;
Michael Wallebd7b8502021-03-17 15:01:36 +01001111 struct mmc *mmc = &plat->mmc;
Yangbo Lub1a42472020-09-01 16:58:01 +08001112 u32 val, irqstaten;
1113 int i;
1114
Michael Wallebd7b8502021-03-17 15:01:36 +01001115 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_A011334) &&
1116 plat->mmc.hs400_tuning)
1117 set_sysctl(priv, mmc, mmc->clock);
1118
Yangbo Lub1a42472020-09-01 16:58:01 +08001119 esdhc_tuning_block_enable(priv, true);
1120 esdhc_setbits32(&regs->autoc12err, EXECUTE_TUNING);
1121
1122 irqstaten = esdhc_read32(&regs->irqstaten);
1123 esdhc_write32(&regs->irqstaten, IRQSTATEN_BRR);
1124
1125 for (i = 0; i < MAX_TUNING_LOOP; i++) {
Michael Wallebd7b8502021-03-17 15:01:36 +01001126 mmc_send_tuning(mmc, opcode, NULL);
Yangbo Lub1a42472020-09-01 16:58:01 +08001127 mdelay(1);
1128
1129 val = esdhc_read32(&regs->autoc12err);
1130 if (!(val & EXECUTE_TUNING)) {
1131 if (val & SMPCLKSEL)
1132 break;
1133 }
1134 }
1135
1136 esdhc_write32(&regs->irqstaten, irqstaten);
1137
Yangbo Ludb8f9362020-09-01 16:58:05 +08001138 if (i != MAX_TUNING_LOOP) {
1139 if (plat->mmc.hs400_tuning)
1140 esdhc_setbits32(&regs->sdtimingctl, FLW_CTL_BG);
Yangbo Lub1a42472020-09-01 16:58:01 +08001141 return 0;
Yangbo Ludb8f9362020-09-01 16:58:05 +08001142 }
Yangbo Lub1a42472020-09-01 16:58:01 +08001143
1144 printf("fsl_esdhc: tuning failed!\n");
1145 esdhc_clrbits32(&regs->autoc12err, SMPCLKSEL);
1146 esdhc_clrbits32(&regs->autoc12err, EXECUTE_TUNING);
1147 esdhc_tuning_block_enable(priv, false);
1148 return -ETIMEDOUT;
1149}
1150#endif
1151
Yangbo Ludb8f9362020-09-01 16:58:05 +08001152int fsl_esdhc_hs400_prepare_ddr(struct udevice *dev)
1153{
1154 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1155
1156 esdhc_tuning_block_enable(priv, false);
1157 return 0;
1158}
1159
Stephen Carlsonee025432021-08-17 12:46:40 -07001160static int fsl_esdhc_wait_dat0(struct udevice *dev, int state,
1161 int timeout_us)
1162{
1163 int ret;
1164 u32 tmp;
1165 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1166 struct fsl_esdhc *regs = priv->esdhc_regs;
1167
1168 ret = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp,
1169 !!(tmp & PRSSTAT_DAT0) == !!state,
1170 timeout_us);
1171 return ret;
1172}
1173
Simon Glass653282b2017-07-29 11:35:24 -06001174static const struct dm_mmc_ops fsl_esdhc_ops = {
1175 .get_cd = fsl_esdhc_get_cd,
1176 .send_cmd = fsl_esdhc_send_cmd,
1177 .set_ios = fsl_esdhc_set_ios,
Yinbo Zhu6f883e52019-07-16 15:09:11 +08001178#ifdef MMC_SUPPORTS_TUNING
1179 .execute_tuning = fsl_esdhc_execute_tuning,
1180#endif
Yangbo Lu1fdefd12020-09-01 16:58:00 +08001181 .reinit = fsl_esdhc_reinit,
Yangbo Ludb8f9362020-09-01 16:58:05 +08001182 .hs400_prepare_ddr = fsl_esdhc_hs400_prepare_ddr,
Stephen Carlsonee025432021-08-17 12:46:40 -07001183 .wait_dat0 = fsl_esdhc_wait_dat0,
Simon Glass653282b2017-07-29 11:35:24 -06001184};
Simon Glass653282b2017-07-29 11:35:24 -06001185
Peng Fan96f04072016-03-25 14:16:56 +08001186static const struct udevice_id fsl_esdhc_ids[] = {
Yangbo Lua6473f82016-12-07 11:54:31 +08001187 { .compatible = "fsl,esdhc", },
Peng Fan96f04072016-03-25 14:16:56 +08001188 { /* sentinel */ }
1189};
1190
Simon Glass653282b2017-07-29 11:35:24 -06001191static int fsl_esdhc_bind(struct udevice *dev)
1192{
Simon Glassc69cda22020-12-03 16:55:20 -07001193 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Simon Glass653282b2017-07-29 11:35:24 -06001194
1195 return mmc_bind(dev, &plat->mmc, &plat->cfg);
1196}
Simon Glass653282b2017-07-29 11:35:24 -06001197
Peng Fan96f04072016-03-25 14:16:56 +08001198U_BOOT_DRIVER(fsl_esdhc) = {
1199 .name = "fsl-esdhc-mmc",
1200 .id = UCLASS_MMC,
1201 .of_match = fsl_esdhc_ids,
Simon Glass653282b2017-07-29 11:35:24 -06001202 .ops = &fsl_esdhc_ops,
Simon Glass653282b2017-07-29 11:35:24 -06001203 .bind = fsl_esdhc_bind,
Peng Fan96f04072016-03-25 14:16:56 +08001204 .probe = fsl_esdhc_probe,
Simon Glasscaa4daa2020-12-03 16:55:18 -07001205 .plat_auto = sizeof(struct fsl_esdhc_plat),
Simon Glass41575d82020-12-03 16:55:17 -07001206 .priv_auto = sizeof(struct fsl_esdhc_priv),
Peng Fan96f04072016-03-25 14:16:56 +08001207};
1208#endif