blob: 32b42c3fd5cb8be7b153b5c94224ed3c25e2d3d8 [file] [log] [blame]
Yangbo Lufa33d202019-06-21 11:42:27 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc
Yangbo Lub1d59862021-06-03 10:51:18 +08004 * Copyright 2019, 2021 NXP
Yangbo Lufa33d202019-06-21 11:42:27 +08005 * Andy Fleming
6 * Yangbo Lu <yangbo.lu@nxp.com>
7 *
8 * Based vaguely on the pxa mmc code:
9 * (C) Copyright 2003
10 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
11 */
12
13#include <config.h>
14#include <common.h>
15#include <command.h>
16#include <clk.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070017#include <cpu_func.h>
Yangbo Lufa33d202019-06-21 11:42:27 +080018#include <errno.h>
19#include <hwconfig.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060020#include <log.h>
Yangbo Lufa33d202019-06-21 11:42:27 +080021#include <mmc.h>
22#include <part.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>
Simon Glass336d4612020-02-03 07:36:16 -070025#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060026#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060027#include <linux/delay.h>
Simon Glass61b29b82020-02-03 07:36:15 -070028#include <linux/err.h>
Yangbo Lufa33d202019-06-21 11:42:27 +080029#include <power/regulator.h>
30#include <malloc.h>
31#include <fsl_esdhc_imx.h>
32#include <fdt_support.h>
33#include <asm/io.h>
34#include <dm.h>
35#include <asm-generic/gpio.h>
36#include <dm/pinctrl.h>
Walter Lozano23721772020-07-29 12:31:17 -030037#include <dt-structs.h>
38#include <mapmem.h>
39#include <dm/ofnode.h>
Haibo Chenf9c3a812020-09-01 15:34:06 +080040#include <linux/iopoll.h>
Sean Anderson01672672021-11-23 15:03:43 -050041#include <linux/dma-mapping.h>
Yangbo Lufa33d202019-06-21 11:42:27 +080042
Haibo Chen0ba116a2021-02-19 11:25:32 -080043#ifndef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE
44#ifdef CONFIG_FSL_USDHC
45#define ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE 1
46#endif
47#endif
48
Yangbo Lufa33d202019-06-21 11:42:27 +080049DECLARE_GLOBAL_DATA_PTR;
50
51#define SDHCI_IRQ_EN_BITS (IRQSTATEN_CC | IRQSTATEN_TC | \
52 IRQSTATEN_CINT | \
53 IRQSTATEN_CTOE | IRQSTATEN_CCE | IRQSTATEN_CEBE | \
54 IRQSTATEN_CIE | IRQSTATEN_DTOE | IRQSTATEN_DCE | \
55 IRQSTATEN_DEBE | IRQSTATEN_BRR | IRQSTATEN_BWR | \
56 IRQSTATEN_DINT)
57#define MAX_TUNING_LOOP 40
Yangbo Lufa33d202019-06-21 11:42:27 +080058
59struct fsl_esdhc {
60 uint dsaddr; /* SDMA system address register */
61 uint blkattr; /* Block attributes register */
62 uint cmdarg; /* Command argument register */
63 uint xfertyp; /* Transfer type register */
64 uint cmdrsp0; /* Command response 0 register */
65 uint cmdrsp1; /* Command response 1 register */
66 uint cmdrsp2; /* Command response 2 register */
67 uint cmdrsp3; /* Command response 3 register */
68 uint datport; /* Buffer data port register */
69 uint prsstat; /* Present state register */
70 uint proctl; /* Protocol control register */
71 uint sysctl; /* System Control Register */
72 uint irqstat; /* Interrupt status register */
73 uint irqstaten; /* Interrupt status enable register */
74 uint irqsigen; /* Interrupt signal enable register */
75 uint autoc12err; /* Auto CMD error status register */
76 uint hostcapblt; /* Host controller capabilities register */
77 uint wml; /* Watermark level register */
78 uint mixctrl; /* For USDHC */
79 char reserved1[4]; /* reserved */
80 uint fevt; /* Force event register */
81 uint admaes; /* ADMA error status register */
82 uint adsaddr; /* ADMA system address register */
83 char reserved2[4];
84 uint dllctrl;
85 uint dllstat;
86 uint clktunectrlstatus;
87 char reserved3[4];
88 uint strobe_dllctrl;
89 uint strobe_dllstat;
90 char reserved4[72];
91 uint vendorspec;
92 uint mmcboot;
93 uint vendorspec2;
Giulio Benetti6a63a872020-01-10 15:51:46 +010094 uint tuning_ctrl; /* on i.MX6/7/8/RT */
Yangbo Lufa33d202019-06-21 11:42:27 +080095 char reserved5[44];
96 uint hostver; /* Host controller version register */
97 char reserved6[4]; /* reserved */
98 uint dmaerraddr; /* DMA error address register */
99 char reserved7[4]; /* reserved */
100 uint dmaerrattr; /* DMA error attribute register */
101 char reserved8[4]; /* reserved */
102 uint hostcapblt2; /* Host controller capabilities register 2 */
103 char reserved9[8]; /* reserved */
104 uint tcr; /* Tuning control register */
105 char reserved10[28]; /* reserved */
106 uint sddirctl; /* SD direction control register */
107 char reserved11[712];/* reserved */
108 uint scr; /* eSDHC control register */
109};
110
111struct fsl_esdhc_plat {
Walter Lozano23721772020-07-29 12:31:17 -0300112#if CONFIG_IS_ENABLED(OF_PLATDATA)
113 /* Put this first since driver model will copy the data here */
114 struct dtd_fsl_esdhc dtplat;
115#endif
116
Yangbo Lufa33d202019-06-21 11:42:27 +0800117 struct mmc_config cfg;
118 struct mmc mmc;
119};
120
121struct esdhc_soc_data {
122 u32 flags;
Yangbo Lufa33d202019-06-21 11:42:27 +0800123};
124
125/**
126 * struct fsl_esdhc_priv
127 *
128 * @esdhc_regs: registers of the sdhc controller
129 * @sdhc_clk: Current clk of the sdhc controller
Yangbo Lufa33d202019-06-21 11:42:27 +0800130 * @cfg: mmc config
131 * @mmc: mmc
132 * Following is used when Driver Model is enabled for MMC
133 * @dev: pointer for the device
Fabio Estevam29230f32020-01-06 20:11:27 -0300134 * @broken_cd: 0: use GPIO for card detect; 1: Do not use GPIO for card detect
Yangbo Lufa33d202019-06-21 11:42:27 +0800135 * @wp_enable: 1: enable checking wp; 0: no check
136 * @vs18_enable: 1: use 1.8V voltage; 0: use 3.3V
137 * @flags: ESDHC_FLAG_xx in include/fsl_esdhc_imx.h
138 * @caps: controller capabilities
139 * @tuning_step: tuning step setting in tuning_ctrl register
140 * @start_tuning_tap: the start point for tuning in tuning_ctrl register
141 * @strobe_dll_delay_target: settings in strobe_dllctrl
142 * @signal_voltage: indicating the current voltage
Haibo Chen8974ff12021-03-22 18:55:38 +0800143 * @signal_voltage_switch_extra_delay_ms: extra delay for IO voltage switch
Yangbo Lufa33d202019-06-21 11:42:27 +0800144 * @cd_gpio: gpio for card detection
145 * @wp_gpio: gpio for write protection
146 */
147struct fsl_esdhc_priv {
148 struct fsl_esdhc *esdhc_regs;
149 unsigned int sdhc_clk;
150 struct clk per_clk;
151 unsigned int clock;
152 unsigned int mode;
Sean Anderson297d2de2022-01-12 08:18:52 +0900153#if !CONFIG_IS_ENABLED(DM_MMC)
Yangbo Lufa33d202019-06-21 11:42:27 +0800154 struct mmc *mmc;
155#endif
156 struct udevice *dev;
Fabio Estevam29230f32020-01-06 20:11:27 -0300157 int broken_cd;
Yangbo Lufa33d202019-06-21 11:42:27 +0800158 int wp_enable;
159 int vs18_enable;
160 u32 flags;
161 u32 caps;
162 u32 tuning_step;
163 u32 tuning_start_tap;
164 u32 strobe_dll_delay_target;
165 u32 signal_voltage;
Haibo Chen8974ff12021-03-22 18:55:38 +0800166 u32 signal_voltage_switch_extra_delay_ms;
Yangbo Lufa33d202019-06-21 11:42:27 +0800167 struct udevice *vqmmc_dev;
168 struct udevice *vmmc_dev;
Simon Glassbcee8d62019-12-06 21:41:35 -0700169#if CONFIG_IS_ENABLED(DM_GPIO)
Yangbo Lufa33d202019-06-21 11:42:27 +0800170 struct gpio_desc cd_gpio;
171 struct gpio_desc wp_gpio;
172#endif
Sean Anderson01672672021-11-23 15:03:43 -0500173 dma_addr_t dma_addr;
Yangbo Lufa33d202019-06-21 11:42:27 +0800174};
175
176/* Return the XFERTYP flags for a given command and data packet */
177static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data)
178{
179 uint xfertyp = 0;
180
181 if (data) {
182 xfertyp |= XFERTYP_DPSEL;
Sean Anderson4f01db82021-11-23 15:03:45 -0500183 if (!IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO) &&
184 cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK &&
185 cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK_HS200)
186 xfertyp |= XFERTYP_DMAEN;
Yangbo Lufa33d202019-06-21 11:42:27 +0800187 if (data->blocks > 1) {
188 xfertyp |= XFERTYP_MSBSEL;
189 xfertyp |= XFERTYP_BCEN;
Sean Anderson4f01db82021-11-23 15:03:45 -0500190 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC111))
191 xfertyp |= XFERTYP_AC12EN;
Yangbo Lufa33d202019-06-21 11:42:27 +0800192 }
193
194 if (data->flags & MMC_DATA_READ)
195 xfertyp |= XFERTYP_DTDSEL;
196 }
197
198 if (cmd->resp_type & MMC_RSP_CRC)
199 xfertyp |= XFERTYP_CCCEN;
200 if (cmd->resp_type & MMC_RSP_OPCODE)
201 xfertyp |= XFERTYP_CICEN;
202 if (cmd->resp_type & MMC_RSP_136)
203 xfertyp |= XFERTYP_RSPTYP_136;
204 else if (cmd->resp_type & MMC_RSP_BUSY)
205 xfertyp |= XFERTYP_RSPTYP_48_BUSY;
206 else if (cmd->resp_type & MMC_RSP_PRESENT)
207 xfertyp |= XFERTYP_RSPTYP_48;
208
209 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
210 xfertyp |= XFERTYP_CMDTYP_ABORT;
211
212 return XFERTYP_CMD(cmd->cmdidx) | xfertyp;
213}
214
Yangbo Lufa33d202019-06-21 11:42:27 +0800215/*
216 * PIO Read/Write Mode reduce the performace as DMA is not used in this mode.
217 */
218static void esdhc_pio_read_write(struct fsl_esdhc_priv *priv,
219 struct mmc_data *data)
220{
221 struct fsl_esdhc *regs = priv->esdhc_regs;
222 uint blocks;
223 char *buffer;
224 uint databuf;
225 uint size;
226 uint irqstat;
227 ulong start;
228
229 if (data->flags & MMC_DATA_READ) {
230 blocks = data->blocks;
231 buffer = data->dest;
232 while (blocks) {
233 start = get_timer(0);
234 size = data->blocksize;
235 irqstat = esdhc_read32(&regs->irqstat);
236 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BREN)) {
237 if (get_timer(start) > PIO_TIMEOUT) {
238 printf("\nData Read Failed in PIO Mode.");
239 return;
240 }
241 }
242 while (size && (!(irqstat & IRQSTAT_TC))) {
243 udelay(100); /* Wait before last byte transfer complete */
244 irqstat = esdhc_read32(&regs->irqstat);
245 databuf = in_le32(&regs->datport);
246 *((uint *)buffer) = databuf;
247 buffer += 4;
248 size -= 4;
249 }
250 blocks--;
251 }
252 } else {
253 blocks = data->blocks;
254 buffer = (char *)data->src;
255 while (blocks) {
256 start = get_timer(0);
257 size = data->blocksize;
258 irqstat = esdhc_read32(&regs->irqstat);
259 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BWEN)) {
260 if (get_timer(start) > PIO_TIMEOUT) {
261 printf("\nData Write Failed in PIO Mode.");
262 return;
263 }
264 }
265 while (size && (!(irqstat & IRQSTAT_TC))) {
266 udelay(100); /* Wait before last byte transfer complete */
267 databuf = *((uint *)buffer);
268 buffer += 4;
269 size -= 4;
270 irqstat = esdhc_read32(&regs->irqstat);
271 out_le32(&regs->datport, databuf);
272 }
273 blocks--;
274 }
275 }
276}
Yangbo Lufa33d202019-06-21 11:42:27 +0800277
Sean Anderson41c6a222021-11-23 15:03:44 -0500278static void esdhc_setup_watermark_level(struct fsl_esdhc_priv *priv,
279 struct mmc_data *data)
Yangbo Lufa33d202019-06-21 11:42:27 +0800280{
Yangbo Lufa33d202019-06-21 11:42:27 +0800281 struct fsl_esdhc *regs = priv->esdhc_regs;
Sean Anderson41c6a222021-11-23 15:03:44 -0500282 uint wml_value = data->blocksize / 4;
Yangbo Lufa33d202019-06-21 11:42:27 +0800283
284 if (data->flags & MMC_DATA_READ) {
285 if (wml_value > WML_RD_WML_MAX)
286 wml_value = WML_RD_WML_MAX_VAL;
287
288 esdhc_clrsetbits32(&regs->wml, WML_RD_WML_MASK, wml_value);
Yangbo Lufa33d202019-06-21 11:42:27 +0800289 } else {
Yangbo Lufa33d202019-06-21 11:42:27 +0800290 if (wml_value > WML_WR_WML_MAX)
291 wml_value = WML_WR_WML_MAX_VAL;
Sean Anderson41c6a222021-11-23 15:03:44 -0500292
293 esdhc_clrsetbits32(&regs->wml, WML_WR_WML_MASK,
294 wml_value << 16);
295 }
296}
Sean Anderson41c6a222021-11-23 15:03:44 -0500297
298static void esdhc_setup_dma(struct fsl_esdhc_priv *priv, struct mmc_data *data)
299{
300 uint trans_bytes = data->blocksize * data->blocks;
301 struct fsl_esdhc *regs = priv->esdhc_regs;
302 void *buf;
303
304 if (data->flags & MMC_DATA_WRITE)
305 buf = (void *)data->src;
306 else
307 buf = data->dest;
308
309 priv->dma_addr = dma_map_single(buf, trans_bytes,
310 mmc_get_dma_dir(data));
311 if (upper_32_bits(priv->dma_addr))
312 printf("Cannot use 64 bit addresses with SDMA\n");
313 esdhc_write32(&regs->dsaddr, lower_32_bits(priv->dma_addr));
314 esdhc_write32(&regs->blkattr, data->blocks << 16 | data->blocksize);
315}
316
317static int esdhc_setup_data(struct fsl_esdhc_priv *priv, struct mmc *mmc,
318 struct mmc_data *data)
319{
320 int timeout;
321 bool is_write = data->flags & MMC_DATA_WRITE;
322 struct fsl_esdhc *regs = priv->esdhc_regs;
323
324 if (is_write) {
325 if (priv->wp_enable && !(esdhc_read32(&regs->prsstat) & PRSSTAT_WPSPL)) {
326 printf("Cannot write to locked SD card.\n");
327 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +0800328 } else {
Simon Glassbcee8d62019-12-06 21:41:35 -0700329#if CONFIG_IS_ENABLED(DM_GPIO)
330 if (dm_gpio_is_valid(&priv->wp_gpio) &&
331 dm_gpio_get_value(&priv->wp_gpio)) {
Sean Anderson41c6a222021-11-23 15:03:44 -0500332 printf("Cannot write to locked SD card.\n");
333 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +0800334 }
335#endif
336 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800337 }
338
Marcel Ziswiler14448e92022-01-31 23:08:31 +0100339 esdhc_setup_watermark_level(priv, data);
340 if (!IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO))
Sean Anderson4f01db82021-11-23 15:03:45 -0500341 esdhc_setup_dma(priv, data);
Yangbo Lufa33d202019-06-21 11:42:27 +0800342
343 /* Calculate the timeout period for data transactions */
344 /*
345 * 1)Timeout period = (2^(timeout+13)) SD Clock cycles
346 * 2)Timeout period should be minimum 0.250sec as per SD Card spec
347 * So, Number of SD Clock cycles for 0.25sec should be minimum
348 * (SD Clock/sec * 0.25 sec) SD Clock cycles
349 * = (mmc->clock * 1/4) SD Clock cycles
350 * As 1) >= 2)
351 * => (2^(timeout+13)) >= mmc->clock * 1/4
352 * Taking log2 both the sides
353 * => timeout + 13 >= log2(mmc->clock/4)
354 * Rounding up to next power of 2
355 * => timeout + 13 = log2(mmc->clock/4) + 1
356 * => timeout + 13 = fls(mmc->clock/4)
357 *
358 * However, the MMC spec "It is strongly recommended for hosts to
359 * implement more than 500ms timeout value even if the card
360 * indicates the 250ms maximum busy length." Even the previous
361 * value of 300ms is known to be insufficient for some cards.
362 * So, we use
363 * => timeout + 13 = fls(mmc->clock/2)
364 */
365 timeout = fls(mmc->clock/2);
366 timeout -= 13;
367
368 if (timeout > 14)
369 timeout = 14;
370
371 if (timeout < 0)
372 timeout = 0;
373
Sean Anderson4f01db82021-11-23 15:03:45 -0500374 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC_A001) &&
375 (timeout == 4 || timeout == 8 || timeout == 12))
Yangbo Lufa33d202019-06-21 11:42:27 +0800376 timeout++;
Yangbo Lufa33d202019-06-21 11:42:27 +0800377
Sean Anderson4f01db82021-11-23 15:03:45 -0500378 if (IS_ENABLED(ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE))
379 timeout = 0xE;
380
Yangbo Lufa33d202019-06-21 11:42:27 +0800381 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16);
382
383 return 0;
384}
385
Sean Anderson00e0cd72021-11-23 15:03:46 -0500386#if IS_ENABLED(CONFIG_MCF5441x)
Yangbo Lufa33d202019-06-21 11:42:27 +0800387/*
388 * Swaps 32-bit words to little-endian byte order.
389 */
390static inline void sd_swap_dma_buff(struct mmc_data *data)
391{
392 int i, size = data->blocksize >> 2;
393 u32 *buffer = (u32 *)data->dest;
394 u32 sw;
395
396 while (data->blocks--) {
397 for (i = 0; i < size; i++) {
398 sw = __sw32(*buffer);
399 *buffer++ = sw;
400 }
401 }
402}
Sean Anderson4f01db82021-11-23 15:03:45 -0500403#else
404static inline void sd_swap_dma_buff(struct mmc_data *data)
405{
406 return;
407}
Yangbo Lufa33d202019-06-21 11:42:27 +0800408#endif
409
410/*
411 * Sends a command out on the bus. Takes the mmc pointer,
412 * a command pointer, and an optional data pointer.
413 */
414static int esdhc_send_cmd_common(struct fsl_esdhc_priv *priv, struct mmc *mmc,
415 struct mmc_cmd *cmd, struct mmc_data *data)
416{
417 int err = 0;
418 uint xfertyp;
419 uint irqstat;
420 u32 flags = IRQSTAT_CC | IRQSTAT_CTOE;
421 struct fsl_esdhc *regs = priv->esdhc_regs;
422 unsigned long start;
423
Sean Anderson4f01db82021-11-23 15:03:45 -0500424 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC111) &&
425 cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
Yangbo Lufa33d202019-06-21 11:42:27 +0800426 return 0;
Yangbo Lufa33d202019-06-21 11:42:27 +0800427
428 esdhc_write32(&regs->irqstat, -1);
429
430 sync();
431
432 /* Wait for the bus to be idle */
433 while ((esdhc_read32(&regs->prsstat) & PRSSTAT_CICHB) ||
434 (esdhc_read32(&regs->prsstat) & PRSSTAT_CIDHB))
435 ;
436
437 while (esdhc_read32(&regs->prsstat) & PRSSTAT_DLA)
438 ;
439
Yangbo Lufa33d202019-06-21 11:42:27 +0800440 /* Set up for a data transfer if we have one */
441 if (data) {
442 err = esdhc_setup_data(priv, mmc, data);
443 if(err)
444 return err;
Yangbo Lufa33d202019-06-21 11:42:27 +0800445 }
446
447 /* Figure out the transfer arguments */
448 xfertyp = esdhc_xfertyp(cmd, data);
449
450 /* Mask all irqs */
451 esdhc_write32(&regs->irqsigen, 0);
452
453 /* Send the command */
454 esdhc_write32(&regs->cmdarg, cmd->cmdarg);
Simon Glass93cb5152022-01-22 05:07:24 -0700455 if (IS_ENABLED(CONFIG_FSL_USDHC)) {
Sean Anderson00e0cd72021-11-23 15:03:46 -0500456 u32 mixctrl = esdhc_read32(&regs->mixctrl);
457
458 esdhc_write32(&regs->mixctrl,
459 (mixctrl & 0xFFFFFF80) | (xfertyp & 0x7F)
460 | (mmc->ddr_mode ? XFERTYP_DDREN : 0));
461 esdhc_write32(&regs->xfertyp, xfertyp & 0xFFFF0000);
462 } else {
463 esdhc_write32(&regs->xfertyp, xfertyp);
464 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800465
466 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK) ||
467 (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200))
468 flags = IRQSTAT_BRR;
469
470 /* Wait for the command to complete */
471 start = get_timer(0);
472 while (!(esdhc_read32(&regs->irqstat) & flags)) {
473 if (get_timer(start) > 1000) {
474 err = -ETIMEDOUT;
475 goto out;
476 }
477 }
478
479 irqstat = esdhc_read32(&regs->irqstat);
480
481 if (irqstat & CMD_ERR) {
482 err = -ECOMM;
483 goto out;
484 }
485
486 if (irqstat & IRQSTAT_CTOE) {
487 err = -ETIMEDOUT;
488 goto out;
489 }
490
Yangbo Lufa33d202019-06-21 11:42:27 +0800491 /* Workaround for ESDHC errata ENGcm03648 */
492 if (!data && (cmd->resp_type & MMC_RSP_BUSY)) {
Peng Fan356f7822019-07-10 09:35:30 +0000493 int timeout = 50000;
Yangbo Lufa33d202019-06-21 11:42:27 +0800494
Peng Fan356f7822019-07-10 09:35:30 +0000495 /* Poll on DATA0 line for cmd with busy signal for 5000 ms */
Yangbo Lufa33d202019-06-21 11:42:27 +0800496 while (timeout > 0 && !(esdhc_read32(&regs->prsstat) &
497 PRSSTAT_DAT0)) {
498 udelay(100);
499 timeout--;
500 }
501
502 if (timeout <= 0) {
503 printf("Timeout waiting for DAT0 to go high!\n");
504 err = -ETIMEDOUT;
505 goto out;
506 }
507 }
508
509 /* Copy the response to the response buffer */
510 if (cmd->resp_type & MMC_RSP_136) {
511 u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0;
512
513 cmdrsp3 = esdhc_read32(&regs->cmdrsp3);
514 cmdrsp2 = esdhc_read32(&regs->cmdrsp2);
515 cmdrsp1 = esdhc_read32(&regs->cmdrsp1);
516 cmdrsp0 = esdhc_read32(&regs->cmdrsp0);
517 cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24);
518 cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24);
519 cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24);
520 cmd->response[3] = (cmdrsp0 << 8);
521 } else
522 cmd->response[0] = esdhc_read32(&regs->cmdrsp0);
523
524 /* Wait until all of the blocks are transferred */
525 if (data) {
Sean Anderson4f01db82021-11-23 15:03:45 -0500526 if (IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO)) {
527 esdhc_pio_read_write(priv, data);
528 } else {
529 flags = DATA_COMPLETE;
530 if (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
531 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
532 flags = IRQSTAT_BRR;
533
534 do {
535 irqstat = esdhc_read32(&regs->irqstat);
536
537 if (irqstat & IRQSTAT_DTOE) {
538 err = -ETIMEDOUT;
539 goto out;
540 }
541
542 if (irqstat & DATA_ERR) {
543 err = -ECOMM;
544 goto out;
545 }
546 } while ((irqstat & flags) != flags);
547
548 /*
549 * Need invalidate the dcache here again to avoid any
550 * cache-fill during the DMA operations such as the
551 * speculative pre-fetching etc.
552 */
553 dma_unmap_single(priv->dma_addr,
554 data->blocks * data->blocksize,
555 mmc_get_dma_dir(data));
556 if (IS_ENABLED(CONFIG_MCF5441x) &&
557 (data->flags & MMC_DATA_READ))
558 sd_swap_dma_buff(data);
Yangbo Lufa33d202019-06-21 11:42:27 +0800559 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800560 }
561
562out:
563 /* Reset CMD and DATA portions on error */
564 if (err) {
565 esdhc_write32(&regs->sysctl, esdhc_read32(&regs->sysctl) |
566 SYSCTL_RSTC);
567 while (esdhc_read32(&regs->sysctl) & SYSCTL_RSTC)
568 ;
569
570 if (data) {
571 esdhc_write32(&regs->sysctl,
572 esdhc_read32(&regs->sysctl) |
573 SYSCTL_RSTD);
574 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTD))
575 ;
576 }
577
578 /* If this was CMD11, then notify that power cycle is needed */
579 if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V)
580 printf("CMD11 to switch to 1.8V mode failed, card requires power cycle.\n");
581 }
582
583 esdhc_write32(&regs->irqstat, -1);
584
585 return err;
586}
587
588static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock)
589{
590 struct fsl_esdhc *regs = priv->esdhc_regs;
591 int div = 1;
Haibo Chenf9c3a812020-09-01 15:34:06 +0800592 u32 tmp;
Sean Anderson4f01db82021-11-23 15:03:45 -0500593 int ret, pre_div;
Yangbo Lufa33d202019-06-21 11:42:27 +0800594 int ddr_pre_div = mmc->ddr_mode ? 2 : 1;
595 int sdhc_clk = priv->sdhc_clk;
596 uint clk;
597
Sean Anderson4f01db82021-11-23 15:03:45 -0500598 if (IS_ENABLED(ARCH_MXC)) {
Sean Anderson00e0cd72021-11-23 15:03:46 -0500599#if IS_ENABLED(CONFIG_MX53)
Sean Anderson4f01db82021-11-23 15:03:45 -0500600 /* For i.MX53 eSDHCv3, SYSCTL.SDCLKFS may not be set to 0. */
601 pre_div = (regs == (struct fsl_esdhc *)MMC_SDHC3_BASE_ADDR) ? 2 : 1;
602#else
603 pre_div = 1;
604#endif
605 } else {
606 pre_div = 2;
607 }
608
Yangbo Lufa33d202019-06-21 11:42:27 +0800609 while (sdhc_clk / (16 * pre_div * ddr_pre_div) > clock && pre_div < 256)
610 pre_div *= 2;
611
612 while (sdhc_clk / (div * pre_div * ddr_pre_div) > clock && div < 16)
613 div++;
614
615 pre_div >>= 1;
616 div -= 1;
617
618 clk = (pre_div << 8) | (div << 4);
619
Sean Anderson4f01db82021-11-23 15:03:45 -0500620 if (IS_ENABLED(CONFIG_FSL_USDHC))
621 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_CKEN);
622 else
623 esdhc_clrbits32(&regs->sysctl, SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800624
625 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_CLOCK_MASK, clk);
626
Haibo Chenf9c3a812020-09-01 15:34:06 +0800627 ret = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp, tmp & PRSSTAT_SDSTB, 100);
628 if (ret)
629 pr_warn("fsl_esdhc_imx: Internal clock never stabilised.\n");
Yangbo Lufa33d202019-06-21 11:42:27 +0800630
Sean Anderson4f01db82021-11-23 15:03:45 -0500631 if (IS_ENABLED(CONFIG_FSL_USDHC))
632 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN | VENDORSPEC_CKEN);
633 else
634 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800635
Sean Anderson4ea11bf2021-11-23 15:03:41 -0500636 mmc->clock = sdhc_clk / pre_div / div;
Yangbo Lufa33d202019-06-21 11:42:27 +0800637 priv->clock = clock;
638}
639
Yangbo Lufa33d202019-06-21 11:42:27 +0800640#ifdef MMC_SUPPORTS_TUNING
641static int esdhc_change_pinstate(struct udevice *dev)
642{
643 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
644 int ret;
645
646 switch (priv->mode) {
647 case UHS_SDR50:
648 case UHS_DDR50:
649 ret = pinctrl_select_state(dev, "state_100mhz");
650 break;
651 case UHS_SDR104:
652 case MMC_HS_200:
653 case MMC_HS_400:
Peng Fane9c22552019-07-10 09:35:26 +0000654 case MMC_HS_400_ES:
Yangbo Lufa33d202019-06-21 11:42:27 +0800655 ret = pinctrl_select_state(dev, "state_200mhz");
656 break;
657 default:
658 ret = pinctrl_select_state(dev, "default");
659 break;
660 }
661
662 if (ret)
663 printf("%s %d error\n", __func__, priv->mode);
664
665 return ret;
666}
667
668static void esdhc_reset_tuning(struct mmc *mmc)
669{
670 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
671 struct fsl_esdhc *regs = priv->esdhc_regs;
672
673 if (priv->flags & ESDHC_FLAG_USDHC) {
674 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
675 esdhc_clrbits32(&regs->autoc12err,
676 MIX_CTRL_SMPCLK_SEL |
677 MIX_CTRL_EXE_TUNE);
678 }
679 }
680}
681
682static void esdhc_set_strobe_dll(struct mmc *mmc)
683{
684 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
685 struct fsl_esdhc *regs = priv->esdhc_regs;
686 u32 val;
687
688 if (priv->clock > ESDHC_STROBE_DLL_CLK_FREQ) {
Haibo Chenc7f44182020-09-30 15:52:23 +0800689 esdhc_write32(&regs->strobe_dllctrl, ESDHC_STROBE_DLL_CTRL_RESET);
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300690 /* clear the reset bit on strobe dll before any setting */
691 esdhc_write32(&regs->strobe_dllctrl, 0);
Yangbo Lufa33d202019-06-21 11:42:27 +0800692
693 /*
694 * enable strobe dll ctrl and adjust the delay target
695 * for the uSDHC loopback read clock
696 */
697 val = ESDHC_STROBE_DLL_CTRL_ENABLE |
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300698 ESDHC_STROBE_DLL_CTRL_SLV_UPDATE_INT_DEFAULT |
Yangbo Lufa33d202019-06-21 11:42:27 +0800699 (priv->strobe_dll_delay_target <<
700 ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_SHIFT);
Haibo Chenc7f44182020-09-30 15:52:23 +0800701 esdhc_write32(&regs->strobe_dllctrl, val);
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300702 /* wait 5us to make sure strobe dll status register stable */
703 mdelay(5);
Haibo Chenc7f44182020-09-30 15:52:23 +0800704 val = esdhc_read32(&regs->strobe_dllstat);
Yangbo Lufa33d202019-06-21 11:42:27 +0800705 if (!(val & ESDHC_STROBE_DLL_STS_REF_LOCK))
706 pr_warn("HS400 strobe DLL status REF not lock!\n");
707 if (!(val & ESDHC_STROBE_DLL_STS_SLV_LOCK))
708 pr_warn("HS400 strobe DLL status SLV not lock!\n");
709 }
710}
711
712static int esdhc_set_timing(struct mmc *mmc)
713{
714 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
715 struct fsl_esdhc *regs = priv->esdhc_regs;
716 u32 mixctrl;
717
Haibo Chenc7f44182020-09-30 15:52:23 +0800718 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800719 mixctrl &= ~(MIX_CTRL_DDREN | MIX_CTRL_HS400_EN);
720
721 switch (mmc->selected_mode) {
722 case MMC_LEGACY:
Yangbo Lufa33d202019-06-21 11:42:27 +0800723 esdhc_reset_tuning(mmc);
Haibo Chenc7f44182020-09-30 15:52:23 +0800724 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800725 break;
726 case MMC_HS_400:
Peng Fane9c22552019-07-10 09:35:26 +0000727 case MMC_HS_400_ES:
Yangbo Lufa33d202019-06-21 11:42:27 +0800728 mixctrl |= MIX_CTRL_DDREN | MIX_CTRL_HS400_EN;
Haibo Chenc7f44182020-09-30 15:52:23 +0800729 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800730 break;
731 case MMC_HS:
732 case MMC_HS_52:
733 case MMC_HS_200:
734 case SD_HS:
735 case UHS_SDR12:
736 case UHS_SDR25:
737 case UHS_SDR50:
738 case UHS_SDR104:
Haibo Chenc7f44182020-09-30 15:52:23 +0800739 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800740 break;
741 case UHS_DDR50:
742 case MMC_DDR_52:
743 mixctrl |= MIX_CTRL_DDREN;
Haibo Chenc7f44182020-09-30 15:52:23 +0800744 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800745 break;
746 default:
747 printf("Not supported %d\n", mmc->selected_mode);
748 return -EINVAL;
749 }
750
751 priv->mode = mmc->selected_mode;
752
753 return esdhc_change_pinstate(mmc->dev);
754}
755
756static int esdhc_set_voltage(struct mmc *mmc)
757{
758 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
759 struct fsl_esdhc *regs = priv->esdhc_regs;
760 int ret;
761
762 priv->signal_voltage = mmc->signal_voltage;
763 switch (mmc->signal_voltage) {
764 case MMC_SIGNAL_VOLTAGE_330:
765 if (priv->vs18_enable)
Marek Vasut50a17a62020-05-22 18:28:33 +0200766 return -ENOTSUPP;
Sean Anderson00e0cd72021-11-23 15:03:46 -0500767 if (CONFIG_IS_ENABLED(DM_REGULATOR) &&
768 !IS_ERR_OR_NULL(priv->vqmmc_dev)) {
769 ret = regulator_set_value(priv->vqmmc_dev,
770 3300000);
Yangbo Lufa33d202019-06-21 11:42:27 +0800771 if (ret) {
772 printf("Setting to 3.3V error");
773 return -EIO;
774 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800775 mdelay(5);
776 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800777
778 esdhc_clrbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
779 if (!(esdhc_read32(&regs->vendorspec) &
780 ESDHC_VENDORSPEC_VSELECT))
781 return 0;
782
783 return -EAGAIN;
784 case MMC_SIGNAL_VOLTAGE_180:
Sean Anderson00e0cd72021-11-23 15:03:46 -0500785 if (CONFIG_IS_ENABLED(DM_REGULATOR) &&
786 !IS_ERR_OR_NULL(priv->vqmmc_dev)) {
787 ret = regulator_set_value(priv->vqmmc_dev,
788 1800000);
Yangbo Lufa33d202019-06-21 11:42:27 +0800789 if (ret) {
790 printf("Setting to 1.8V error");
791 return -EIO;
792 }
793 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800794 esdhc_setbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
Haibo Chen8974ff12021-03-22 18:55:38 +0800795 /*
796 * some board like imx8mm-evk need about 18ms to switch
797 * the IO voltage from 3.3v to 1.8v, common code only
798 * delay 10ms, so need to delay extra time to make sure
799 * the IO voltage change to 1.8v.
800 */
801 if (priv->signal_voltage_switch_extra_delay_ms)
802 mdelay(priv->signal_voltage_switch_extra_delay_ms);
Yangbo Lufa33d202019-06-21 11:42:27 +0800803 if (esdhc_read32(&regs->vendorspec) & ESDHC_VENDORSPEC_VSELECT)
804 return 0;
805
806 return -EAGAIN;
807 case MMC_SIGNAL_VOLTAGE_120:
808 return -ENOTSUPP;
809 default:
810 return 0;
811 }
812}
813
814static void esdhc_stop_tuning(struct mmc *mmc)
815{
816 struct mmc_cmd cmd;
817
818 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
819 cmd.cmdarg = 0;
820 cmd.resp_type = MMC_RSP_R1b;
821
Jaehoon Chung2da23352021-05-31 08:31:49 +0900822 mmc_send_cmd(mmc, &cmd, NULL);
Yangbo Lufa33d202019-06-21 11:42:27 +0800823}
824
825static int fsl_esdhc_execute_tuning(struct udevice *dev, uint32_t opcode)
826{
Simon Glassc69cda22020-12-03 16:55:20 -0700827 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +0800828 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
829 struct fsl_esdhc *regs = priv->esdhc_regs;
830 struct mmc *mmc = &plat->mmc;
Haibo Chenc7f44182020-09-30 15:52:23 +0800831 u32 irqstaten = esdhc_read32(&regs->irqstaten);
832 u32 irqsigen = esdhc_read32(&regs->irqsigen);
Yangbo Lufa33d202019-06-21 11:42:27 +0800833 int i, ret = -ETIMEDOUT;
834 u32 val, mixctrl;
835
836 /* clock tuning is not needed for upto 52MHz */
837 if (mmc->clock <= 52000000)
838 return 0;
839
840 /* This is readw/writew SDHCI_HOST_CONTROL2 when tuning */
841 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
Haibo Chenc7f44182020-09-30 15:52:23 +0800842 val = esdhc_read32(&regs->autoc12err);
843 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800844 val &= ~MIX_CTRL_SMPCLK_SEL;
845 mixctrl &= ~(MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN);
846
847 val |= MIX_CTRL_EXE_TUNE;
848 mixctrl |= MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN;
849
Haibo Chenc7f44182020-09-30 15:52:23 +0800850 esdhc_write32(&regs->autoc12err, val);
851 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800852 }
853
854 /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE); */
Haibo Chenc7f44182020-09-30 15:52:23 +0800855 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800856 mixctrl = MIX_CTRL_DTDSEL_READ | (mixctrl & ~MIX_CTRL_SDHCI_MASK);
Haibo Chenc7f44182020-09-30 15:52:23 +0800857 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800858
Haibo Chenc7f44182020-09-30 15:52:23 +0800859 esdhc_write32(&regs->irqstaten, IRQSTATEN_BRR);
860 esdhc_write32(&regs->irqsigen, IRQSTATEN_BRR);
Yangbo Lufa33d202019-06-21 11:42:27 +0800861
862 /*
863 * Issue opcode repeatedly till Execute Tuning is set to 0 or the number
864 * of loops reaches 40 times.
865 */
866 for (i = 0; i < MAX_TUNING_LOOP; i++) {
867 u32 ctrl;
868
869 if (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200) {
870 if (mmc->bus_width == 8)
Haibo Chenc7f44182020-09-30 15:52:23 +0800871 esdhc_write32(&regs->blkattr, 0x7080);
Yangbo Lufa33d202019-06-21 11:42:27 +0800872 else if (mmc->bus_width == 4)
Haibo Chenc7f44182020-09-30 15:52:23 +0800873 esdhc_write32(&regs->blkattr, 0x7040);
Yangbo Lufa33d202019-06-21 11:42:27 +0800874 } else {
Haibo Chenc7f44182020-09-30 15:52:23 +0800875 esdhc_write32(&regs->blkattr, 0x7040);
Yangbo Lufa33d202019-06-21 11:42:27 +0800876 }
877
878 /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE) */
Haibo Chenc7f44182020-09-30 15:52:23 +0800879 val = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800880 val = MIX_CTRL_DTDSEL_READ | (val & ~MIX_CTRL_SDHCI_MASK);
Haibo Chenc7f44182020-09-30 15:52:23 +0800881 esdhc_write32(&regs->mixctrl, val);
Yangbo Lufa33d202019-06-21 11:42:27 +0800882
883 /* We are using STD tuning, no need to check return value */
884 mmc_send_tuning(mmc, opcode, NULL);
885
Haibo Chenc7f44182020-09-30 15:52:23 +0800886 ctrl = esdhc_read32(&regs->autoc12err);
Yangbo Lufa33d202019-06-21 11:42:27 +0800887 if ((!(ctrl & MIX_CTRL_EXE_TUNE)) &&
888 (ctrl & MIX_CTRL_SMPCLK_SEL)) {
Yangbo Lufa33d202019-06-21 11:42:27 +0800889 ret = 0;
890 break;
891 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800892 }
893
Haibo Chenc7f44182020-09-30 15:52:23 +0800894 esdhc_write32(&regs->irqstaten, irqstaten);
895 esdhc_write32(&regs->irqsigen, irqsigen);
Yangbo Lufa33d202019-06-21 11:42:27 +0800896
897 esdhc_stop_tuning(mmc);
898
899 return ret;
900}
901#endif
902
903static int esdhc_set_ios_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
904{
905 struct fsl_esdhc *regs = priv->esdhc_regs;
906 int ret __maybe_unused;
Peng Fan1d01c982019-11-04 17:14:15 +0800907 u32 clock;
Yangbo Lufa33d202019-06-21 11:42:27 +0800908
Haibo Chen5d772192020-11-03 17:18:35 +0800909#ifdef MMC_SUPPORTS_TUNING
910 /*
911 * call esdhc_set_timing() before update the clock rate,
912 * This is because current we support DDR and SDR mode,
913 * Once the DDR_EN bit is set, the card clock will be
914 * divide by 2 automatically. So need to do this before
915 * setting clock rate.
916 */
917 if (priv->mode != mmc->selected_mode) {
918 ret = esdhc_set_timing(mmc);
919 if (ret) {
920 printf("esdhc_set_timing error %d\n", ret);
921 return ret;
922 }
923 }
924#endif
925
Yangbo Lufa33d202019-06-21 11:42:27 +0800926 /* Set the clock speed */
Peng Fan1d01c982019-11-04 17:14:15 +0800927 clock = mmc->clock;
928 if (clock < mmc->cfg->f_min)
929 clock = mmc->cfg->f_min;
930
931 if (priv->clock != clock)
932 set_sysctl(priv, mmc, clock);
Yangbo Lufa33d202019-06-21 11:42:27 +0800933
Yangbo Lufa33d202019-06-21 11:42:27 +0800934 if (mmc->clk_disable) {
Sean Anderson00e0cd72021-11-23 15:03:46 -0500935 if (IS_ENABLED(CONFIG_FSL_USDHC))
936 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_CKEN);
937 else
938 esdhc_clrbits32(&regs->sysctl, SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800939 } else {
Sean Anderson00e0cd72021-11-23 15:03:46 -0500940 if (IS_ENABLED(CONFIG_FSL_USDHC))
941 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN |
942 VENDORSPEC_CKEN);
943 else
944 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800945 }
946
Ye Li9b7c3492021-08-17 17:09:20 +0800947#ifdef MMC_SUPPORTS_TUNING
Haibo Chen5d772192020-11-03 17:18:35 +0800948 /*
949 * For HS400/HS400ES mode, make sure set the strobe dll in the
950 * target clock rate. So call esdhc_set_strobe_dll() after the
951 * clock updated.
952 */
953 if (mmc->selected_mode == MMC_HS_400 || mmc->selected_mode == MMC_HS_400_ES)
954 esdhc_set_strobe_dll(mmc);
Yangbo Lufa33d202019-06-21 11:42:27 +0800955
956 if (priv->signal_voltage != mmc->signal_voltage) {
957 ret = esdhc_set_voltage(mmc);
958 if (ret) {
Marek Vasut50a17a62020-05-22 18:28:33 +0200959 if (ret != -ENOTSUPP)
960 printf("esdhc_set_voltage error %d\n", ret);
Yangbo Lufa33d202019-06-21 11:42:27 +0800961 return ret;
962 }
963 }
964#endif
965
966 /* Set the bus width */
967 esdhc_clrbits32(&regs->proctl, PROCTL_DTW_4 | PROCTL_DTW_8);
968
969 if (mmc->bus_width == 4)
970 esdhc_setbits32(&regs->proctl, PROCTL_DTW_4);
971 else if (mmc->bus_width == 8)
972 esdhc_setbits32(&regs->proctl, PROCTL_DTW_8);
973
974 return 0;
975}
976
977static int esdhc_init_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
978{
979 struct fsl_esdhc *regs = priv->esdhc_regs;
980 ulong start;
981
982 /* Reset the entire host controller */
983 esdhc_setbits32(&regs->sysctl, SYSCTL_RSTA);
984
985 /* Wait until the controller is available */
986 start = get_timer(0);
987 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTA)) {
988 if (get_timer(start) > 1000)
989 return -ETIMEDOUT;
990 }
991
Sean Anderson00e0cd72021-11-23 15:03:46 -0500992 if (IS_ENABLED(CONFIG_FSL_USDHC)) {
993 /* RSTA doesn't reset MMC_BOOT register, so manually reset it */
994 esdhc_write32(&regs->mmcboot, 0x0);
995 /* Reset MIX_CTRL and CLK_TUNE_CTRL_STATUS regs to 0 */
996 esdhc_write32(&regs->mixctrl, 0x0);
997 esdhc_write32(&regs->clktunectrlstatus, 0x0);
Yangbo Lufa33d202019-06-21 11:42:27 +0800998
Sean Anderson00e0cd72021-11-23 15:03:46 -0500999 /* Put VEND_SPEC to default value */
1000 if (priv->vs18_enable)
1001 esdhc_write32(&regs->vendorspec, VENDORSPEC_INIT |
1002 ESDHC_VENDORSPEC_VSELECT);
1003 else
1004 esdhc_write32(&regs->vendorspec, VENDORSPEC_INIT);
Yangbo Lufa33d202019-06-21 11:42:27 +08001005
Sean Anderson00e0cd72021-11-23 15:03:46 -05001006 /* Disable DLL_CTRL delay line */
1007 esdhc_write32(&regs->dllctrl, 0x0);
1008 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001009
1010#ifndef ARCH_MXC
1011 /* Enable cache snooping */
1012 esdhc_write32(&regs->scr, 0x00000040);
1013#endif
1014
Sean Anderson00e0cd72021-11-23 15:03:46 -05001015 if (IS_ENABLED(CONFIG_FSL_USDHC))
1016 esdhc_setbits32(&regs->vendorspec,
1017 VENDORSPEC_HCKEN | VENDORSPEC_IPGEN);
1018 else
1019 esdhc_setbits32(&regs->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN);
Yangbo Lufa33d202019-06-21 11:42:27 +08001020
1021 /* Set the initial clock speed */
Sean Andersonb2acee42021-11-23 15:03:47 -05001022 set_sysctl(priv, mmc, 400000);
Yangbo Lufa33d202019-06-21 11:42:27 +08001023
1024 /* Disable the BRR and BWR bits in IRQSTAT */
1025 esdhc_clrbits32(&regs->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR);
1026
Yangbo Lufa33d202019-06-21 11:42:27 +08001027 /* Put the PROCTL reg back to the default */
Sean Anderson00e0cd72021-11-23 15:03:46 -05001028 if (IS_ENABLED(CONFIG_MCF5441x))
1029 esdhc_write32(&regs->proctl, PROCTL_INIT | PROCTL_D3CD);
1030 else
1031 esdhc_write32(&regs->proctl, PROCTL_INIT);
Yangbo Lufa33d202019-06-21 11:42:27 +08001032
1033 /* Set timout to the maximum value */
1034 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16);
1035
1036 return 0;
1037}
1038
1039static int esdhc_getcd_common(struct fsl_esdhc_priv *priv)
1040{
1041 struct fsl_esdhc *regs = priv->esdhc_regs;
1042 int timeout = 1000;
1043
Sean Anderson00e0cd72021-11-23 15:03:46 -05001044 if (IS_ENABLED(CONFIG_ESDHC_DETECT_QUIRK))
Yangbo Lufa33d202019-06-21 11:42:27 +08001045 return 1;
Yangbo Lufa33d202019-06-21 11:42:27 +08001046
Sean Anderson00e0cd72021-11-23 15:03:46 -05001047 if (CONFIG_IS_ENABLED(DM_MMC)) {
1048 if (priv->broken_cd)
1049 return 1;
Simon Glassbcee8d62019-12-06 21:41:35 -07001050#if CONFIG_IS_ENABLED(DM_GPIO)
Sean Anderson00e0cd72021-11-23 15:03:46 -05001051 if (dm_gpio_is_valid(&priv->cd_gpio))
1052 return dm_gpio_get_value(&priv->cd_gpio);
Yangbo Lufa33d202019-06-21 11:42:27 +08001053#endif
Sean Anderson00e0cd72021-11-23 15:03:46 -05001054 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001055
1056 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_CINS) && --timeout)
1057 udelay(1000);
1058
1059 return timeout > 0;
1060}
1061
1062static int esdhc_reset(struct fsl_esdhc *regs)
1063{
1064 ulong start;
1065
1066 /* reset the controller */
1067 esdhc_setbits32(&regs->sysctl, SYSCTL_RSTA);
1068
1069 /* hardware clears the bit when it is done */
1070 start = get_timer(0);
1071 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTA)) {
1072 if (get_timer(start) > 100) {
1073 printf("MMC/SD: Reset never completed.\n");
1074 return -ETIMEDOUT;
1075 }
1076 }
1077
1078 return 0;
1079}
1080
1081#if !CONFIG_IS_ENABLED(DM_MMC)
1082static int esdhc_getcd(struct mmc *mmc)
1083{
1084 struct fsl_esdhc_priv *priv = mmc->priv;
1085
1086 return esdhc_getcd_common(priv);
1087}
1088
1089static int esdhc_init(struct mmc *mmc)
1090{
1091 struct fsl_esdhc_priv *priv = mmc->priv;
1092
1093 return esdhc_init_common(priv, mmc);
1094}
1095
1096static int esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
1097 struct mmc_data *data)
1098{
1099 struct fsl_esdhc_priv *priv = mmc->priv;
1100
1101 return esdhc_send_cmd_common(priv, mmc, cmd, data);
1102}
1103
1104static int esdhc_set_ios(struct mmc *mmc)
1105{
1106 struct fsl_esdhc_priv *priv = mmc->priv;
1107
1108 return esdhc_set_ios_common(priv, mmc);
1109}
1110
1111static const struct mmc_ops esdhc_ops = {
1112 .getcd = esdhc_getcd,
1113 .init = esdhc_init,
1114 .send_cmd = esdhc_send_cmd,
1115 .set_ios = esdhc_set_ios,
1116};
1117#endif
1118
1119static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
1120 struct fsl_esdhc_plat *plat)
1121{
1122 struct mmc_config *cfg;
1123 struct fsl_esdhc *regs;
Sean Anderson2fd7d1f2021-11-23 15:03:38 -05001124 u32 caps;
Yangbo Lufa33d202019-06-21 11:42:27 +08001125 int ret;
1126
1127 if (!priv)
1128 return -EINVAL;
1129
1130 regs = priv->esdhc_regs;
1131
1132 /* First reset the eSDHC controller */
1133 ret = esdhc_reset(regs);
1134 if (ret)
1135 return ret;
1136
Yangbo Lufa33d202019-06-21 11:42:27 +08001137 /* ColdFire, using SDHC_DATA[3] for card detection */
Sean Anderson4f01db82021-11-23 15:03:45 -05001138 if (IS_ENABLED(CONFIG_MCF5441x))
1139 esdhc_write32(&regs->proctl, PROCTL_INIT | PROCTL_D3CD);
Yangbo Lufa33d202019-06-21 11:42:27 +08001140
Sean Anderson4f01db82021-11-23 15:03:45 -05001141 if (IS_ENABLED(CONFIG_FSL_USDHC)) {
1142 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN |
1143 VENDORSPEC_HCKEN | VENDORSPEC_IPGEN | VENDORSPEC_CKEN);
1144 } else {
1145 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_HCKEN
1146 | SYSCTL_IPGEN | SYSCTL_CKEN);
1147 /* Clearing tuning bits in case ROM has set it already */
1148 esdhc_write32(&regs->mixctrl, 0);
1149 esdhc_write32(&regs->autoc12err, 0);
1150 esdhc_write32(&regs->clktunectrlstatus, 0);
1151 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001152
1153 if (priv->vs18_enable)
1154 esdhc_setbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
1155
Haibo Chenc7f44182020-09-30 15:52:23 +08001156 esdhc_write32(&regs->irqstaten, SDHCI_IRQ_EN_BITS);
Yangbo Lufa33d202019-06-21 11:42:27 +08001157 cfg = &plat->cfg;
Sean Anderson00e0cd72021-11-23 15:03:46 -05001158 if (!CONFIG_IS_ENABLED(DM_MMC))
1159 memset(cfg, '\0', sizeof(*cfg));
Yangbo Lufa33d202019-06-21 11:42:27 +08001160
Yangbo Lufa33d202019-06-21 11:42:27 +08001161 caps = esdhc_read32(&regs->hostcapblt);
Sean Anderson4f01db82021-11-23 15:03:45 -05001162
Yangbo Lufa33d202019-06-21 11:42:27 +08001163 /*
1164 * MCF5441x RM declares in more points that sdhc clock speed must
1165 * never exceed 25 Mhz. From this, the HS bit needs to be disabled
1166 * from host capabilities.
1167 */
Sean Anderson4f01db82021-11-23 15:03:45 -05001168 if (IS_ENABLED(CONFIG_MCF5441x))
1169 caps &= ~HOSTCAPBLT_HSS;
Yangbo Lufa33d202019-06-21 11:42:27 +08001170
Sean Anderson4f01db82021-11-23 15:03:45 -05001171 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC135))
1172 caps &= ~(HOSTCAPBLT_SRS | HOSTCAPBLT_VS18 | HOSTCAPBLT_VS30);
Yangbo Lufa33d202019-06-21 11:42:27 +08001173
Sean Anderson4f01db82021-11-23 15:03:45 -05001174 if (IS_ENABLED(CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33))
1175 caps |= HOSTCAPBLT_VS33;
Sean Anderson2fd7d1f2021-11-23 15:03:38 -05001176
1177 if (caps & HOSTCAPBLT_VS18)
1178 cfg->voltages |= MMC_VDD_165_195;
1179 if (caps & HOSTCAPBLT_VS30)
1180 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
1181 if (caps & HOSTCAPBLT_VS33)
1182 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Yangbo Lufa33d202019-06-21 11:42:27 +08001183
1184 cfg->name = "FSL_SDHC";
Sean Anderson4f01db82021-11-23 15:03:45 -05001185
Yangbo Lufa33d202019-06-21 11:42:27 +08001186#if !CONFIG_IS_ENABLED(DM_MMC)
1187 cfg->ops = &esdhc_ops;
1188#endif
Sean Anderson4f01db82021-11-23 15:03:45 -05001189
1190 if (IS_ENABLED(CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE))
1191 cfg->host_caps |= MMC_MODE_DDR_52MHz;
Yangbo Lufa33d202019-06-21 11:42:27 +08001192
Sean Anderson2fd7d1f2021-11-23 15:03:38 -05001193 if (caps & HOSTCAPBLT_HSS)
Yangbo Lufa33d202019-06-21 11:42:27 +08001194 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
1195
Yangbo Lufa33d202019-06-21 11:42:27 +08001196 cfg->host_caps |= priv->caps;
1197
1198 cfg->f_min = 400000;
1199 cfg->f_max = min(priv->sdhc_clk, (u32)200000000);
1200
1201 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
1202
Haibo Chenc7f44182020-09-30 15:52:23 +08001203 esdhc_write32(&regs->dllctrl, 0);
Yangbo Lufa33d202019-06-21 11:42:27 +08001204 if (priv->flags & ESDHC_FLAG_USDHC) {
1205 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
Haibo Chenc7f44182020-09-30 15:52:23 +08001206 u32 val = esdhc_read32(&regs->tuning_ctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +08001207
1208 val |= ESDHC_STD_TUNING_EN;
1209 val &= ~ESDHC_TUNING_START_TAP_MASK;
1210 val |= priv->tuning_start_tap;
1211 val &= ~ESDHC_TUNING_STEP_MASK;
1212 val |= (priv->tuning_step) << ESDHC_TUNING_STEP_SHIFT;
Haibo Chenba616762020-06-22 19:38:04 +08001213
1214 /* Disable the CMD CRC check for tuning, if not, need to
1215 * add some delay after every tuning command, because
1216 * hardware standard tuning logic will directly go to next
1217 * step once it detect the CMD CRC error, will not wait for
1218 * the card side to finally send out the tuning data, trigger
1219 * the buffer read ready interrupt immediately. If usdhc send
1220 * the next tuning command some eMMC card will stuck, can't
1221 * response, block the tuning procedure or the first command
1222 * after the whole tuning procedure always can't get any response.
1223 */
1224 val |= ESDHC_TUNING_CMD_CRC_CHECK_DISABLE;
Haibo Chenc7f44182020-09-30 15:52:23 +08001225 esdhc_write32(&regs->tuning_ctrl, val);
Yangbo Lufa33d202019-06-21 11:42:27 +08001226 }
1227 }
1228
1229 return 0;
1230}
1231
1232#if !CONFIG_IS_ENABLED(DM_MMC)
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001233int fsl_esdhc_initialize(struct bd_info *bis, struct fsl_esdhc_cfg *cfg)
Yangbo Lufa33d202019-06-21 11:42:27 +08001234{
1235 struct fsl_esdhc_plat *plat;
1236 struct fsl_esdhc_priv *priv;
Sean Anderson95d6b742021-11-23 15:03:39 -05001237 struct mmc_config *mmc_cfg;
Yangbo Lufa33d202019-06-21 11:42:27 +08001238 struct mmc *mmc;
1239 int ret;
1240
1241 if (!cfg)
1242 return -EINVAL;
1243
1244 priv = calloc(sizeof(struct fsl_esdhc_priv), 1);
1245 if (!priv)
1246 return -ENOMEM;
1247 plat = calloc(sizeof(struct fsl_esdhc_plat), 1);
1248 if (!plat) {
1249 free(priv);
1250 return -ENOMEM;
1251 }
1252
Sean Anderson95d6b742021-11-23 15:03:39 -05001253 priv->esdhc_regs = (struct fsl_esdhc *)(unsigned long)(cfg->esdhc_base);
1254 priv->sdhc_clk = cfg->sdhc_clk;
1255 priv->wp_enable = cfg->wp_enable;
1256
1257 mmc_cfg = &plat->cfg;
1258
1259 switch (cfg->max_bus_width) {
1260 case 0: /* Not set in config; assume everything is supported */
1261 case 8:
1262 mmc_cfg->host_caps |= MMC_MODE_8BIT;
1263 fallthrough;
1264 case 4:
1265 mmc_cfg->host_caps |= MMC_MODE_4BIT;
1266 fallthrough;
1267 case 1:
1268 mmc_cfg->host_caps |= MMC_MODE_1BIT;
1269 break;
1270 default:
1271 printf("invalid max bus width %u\n", cfg->max_bus_width);
1272 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +08001273 }
1274
Sean Anderson4f01db82021-11-23 15:03:45 -05001275 if (IS_ENABLED(CONFIG_ESDHC_DETECT_8_BIT_QUIRK))
Sean Anderson95d6b742021-11-23 15:03:39 -05001276 mmc_cfg->host_caps &= ~MMC_MODE_8BIT;
Sean Anderson95d6b742021-11-23 15:03:39 -05001277
Yangbo Lufa33d202019-06-21 11:42:27 +08001278 ret = fsl_esdhc_init(priv, plat);
1279 if (ret) {
1280 debug("%s init failure\n", __func__);
1281 free(plat);
1282 free(priv);
1283 return ret;
1284 }
1285
1286 mmc = mmc_create(&plat->cfg, priv);
1287 if (!mmc)
1288 return -EIO;
1289
1290 priv->mmc = mmc;
1291
1292 return 0;
1293}
1294
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001295int fsl_esdhc_mmc_init(struct bd_info *bis)
Yangbo Lufa33d202019-06-21 11:42:27 +08001296{
1297 struct fsl_esdhc_cfg *cfg;
1298
1299 cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1);
1300 cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR;
1301 cfg->sdhc_clk = gd->arch.sdhc_clk;
1302 return fsl_esdhc_initialize(bis, cfg);
1303}
1304#endif
1305
Sean Anderson00e0cd72021-11-23 15:03:46 -05001306#if CONFIG_IS_ENABLED(OF_LIBFDT)
Yangbo Lufa33d202019-06-21 11:42:27 +08001307__weak int esdhc_status_fixup(void *blob, const char *compat)
1308{
Sean Anderson00e0cd72021-11-23 15:03:46 -05001309 if (IS_ENABLED(FSL_ESDHC_PIN_MUX) && !hwconfig("esdhc")) {
Yangbo Lufa33d202019-06-21 11:42:27 +08001310 do_fixup_by_compat(blob, compat, "status", "disabled",
1311 sizeof("disabled"), 1);
1312 return 1;
1313 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001314 return 0;
1315}
1316
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001317void fdt_fixup_esdhc(void *blob, struct bd_info *bd)
Yangbo Lufa33d202019-06-21 11:42:27 +08001318{
1319 const char *compat = "fsl,esdhc";
1320
1321 if (esdhc_status_fixup(blob, compat))
1322 return;
1323
Yangbo Lufa33d202019-06-21 11:42:27 +08001324 do_fixup_by_compat_u32(blob, compat, "clock-frequency",
1325 gd->arch.sdhc_clk, 1);
Yangbo Lufa33d202019-06-21 11:42:27 +08001326}
1327#endif
1328
1329#if CONFIG_IS_ENABLED(DM_MMC)
Yangbo Lufa33d202019-06-21 11:42:27 +08001330#include <asm/arch/clock.h>
Yangbo Lufa33d202019-06-21 11:42:27 +08001331__weak void init_clk_usdhc(u32 index)
1332{
1333}
1334
Simon Glassd1998a92020-12-03 16:55:21 -07001335static int fsl_esdhc_of_to_plat(struct udevice *dev)
Yangbo Lufa33d202019-06-21 11:42:27 +08001336{
Yangbo Lufa33d202019-06-21 11:42:27 +08001337 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001338 struct udevice *vqmmc_dev;
Walter Lozano23721772020-07-29 12:31:17 -03001339 int ret;
Sean Anderson00e0cd72021-11-23 15:03:46 -05001340
Walter Lozano23721772020-07-29 12:31:17 -03001341 const void *fdt = gd->fdt_blob;
1342 int node = dev_of_offset(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001343 fdt_addr_t addr;
1344 unsigned int val;
Yangbo Lufa33d202019-06-21 11:42:27 +08001345
Simon Glassdcfc42b2021-08-07 07:24:06 -06001346 if (!CONFIG_IS_ENABLED(OF_REAL))
1347 return 0;
1348
Yangbo Lufa33d202019-06-21 11:42:27 +08001349 addr = dev_read_addr(dev);
1350 if (addr == FDT_ADDR_T_NONE)
1351 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +08001352 priv->esdhc_regs = (struct fsl_esdhc *)addr;
Yangbo Lufa33d202019-06-21 11:42:27 +08001353 priv->dev = dev;
1354 priv->mode = -1;
Yangbo Lufa33d202019-06-21 11:42:27 +08001355
Yangbo Lufa33d202019-06-21 11:42:27 +08001356 val = fdtdec_get_int(fdt, node, "fsl,tuning-step", 1);
1357 priv->tuning_step = val;
1358 val = fdtdec_get_int(fdt, node, "fsl,tuning-start-tap",
1359 ESDHC_TUNING_START_TAP_DEFAULT);
1360 priv->tuning_start_tap = val;
1361 val = fdtdec_get_int(fdt, node, "fsl,strobe-dll-delay-target",
1362 ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_DEFAULT);
1363 priv->strobe_dll_delay_target = val;
Haibo Chen8974ff12021-03-22 18:55:38 +08001364 val = fdtdec_get_int(fdt, node, "fsl,signal-voltage-switch-extra-delay-ms", 0);
1365 priv->signal_voltage_switch_extra_delay_ms = val;
Yangbo Lufa33d202019-06-21 11:42:27 +08001366
Fabio Estevam29230f32020-01-06 20:11:27 -03001367 if (dev_read_bool(dev, "broken-cd"))
1368 priv->broken_cd = 1;
1369
Yangbo Lufa33d202019-06-21 11:42:27 +08001370 if (dev_read_prop(dev, "fsl,wp-controller", NULL)) {
1371 priv->wp_enable = 1;
1372 } else {
1373 priv->wp_enable = 0;
Yangbo Lufa33d202019-06-21 11:42:27 +08001374 }
1375
Sean Andersond39aa732021-11-23 15:03:40 -05001376#if CONFIG_IS_ENABLED(DM_GPIO)
1377 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
1378 GPIOD_IS_IN);
1379 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio,
1380 GPIOD_IS_IN);
1381#endif
1382
Yangbo Lufa33d202019-06-21 11:42:27 +08001383 priv->vs18_enable = 0;
1384
Sean Anderson00e0cd72021-11-23 15:03:46 -05001385 if (!CONFIG_IS_ENABLED(DM_REGULATOR))
1386 return 0;
1387
Yangbo Lufa33d202019-06-21 11:42:27 +08001388 /*
1389 * If emmc I/O has a fixed voltage at 1.8V, this must be provided,
1390 * otherwise, emmc will work abnormally.
1391 */
1392 ret = device_get_supply_regulator(dev, "vqmmc-supply", &vqmmc_dev);
1393 if (ret) {
1394 dev_dbg(dev, "no vqmmc-supply\n");
1395 } else {
Marek Vasut406df852020-05-22 18:19:08 +02001396 priv->vqmmc_dev = vqmmc_dev;
Yangbo Lufa33d202019-06-21 11:42:27 +08001397 ret = regulator_set_enable(vqmmc_dev, true);
1398 if (ret) {
1399 dev_err(dev, "fail to enable vqmmc-supply\n");
1400 return ret;
1401 }
1402
1403 if (regulator_get_value(vqmmc_dev) == 1800000)
1404 priv->vs18_enable = 1;
1405 }
Walter Lozano23721772020-07-29 12:31:17 -03001406 return 0;
1407}
1408
1409static int fsl_esdhc_probe(struct udevice *dev)
1410{
1411 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -07001412 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Walter Lozano23721772020-07-29 12:31:17 -03001413 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1414 struct esdhc_soc_data *data =
1415 (struct esdhc_soc_data *)dev_get_driver_data(dev);
1416 struct mmc *mmc;
Walter Lozano23721772020-07-29 12:31:17 -03001417 int ret;
1418
1419#if CONFIG_IS_ENABLED(OF_PLATDATA)
1420 struct dtd_fsl_esdhc *dtplat = &plat->dtplat;
Walter Lozano23721772020-07-29 12:31:17 -03001421
1422 priv->esdhc_regs = map_sysmem(dtplat->reg[0], dtplat->reg[1]);
Walter Lozano7142ff92020-07-29 12:31:19 -03001423
1424 if (dtplat->non_removable)
Sean Andersond39aa732021-11-23 15:03:40 -05001425 plat->cfg.host_caps |= MMC_CAP_NONREMOVABLE;
Walter Lozano7142ff92020-07-29 12:31:19 -03001426 else
Sean Andersond39aa732021-11-23 15:03:40 -05001427 plat->cfg.host_caps &= ~MMC_CAP_NONREMOVABLE;
Walter Lozano7142ff92020-07-29 12:31:19 -03001428
Sean Andersond39aa732021-11-23 15:03:40 -05001429 if (CONFIG_IS_ENABLED(DM_GPIO) && !dtplat->non_removable) {
Walter Lozano7142ff92020-07-29 12:31:19 -03001430 struct udevice *gpiodev;
Walter Lozano7142ff92020-07-29 12:31:19 -03001431
Simon Glasscc469b72021-03-15 17:25:28 +13001432 ret = device_get_by_ofplat_idx(dtplat->cd_gpios->idx, &gpiodev);
Walter Lozano7142ff92020-07-29 12:31:19 -03001433 if (ret)
1434 return ret;
1435
1436 ret = gpio_dev_request_index(gpiodev, gpiodev->name, "cd-gpios",
1437 dtplat->cd_gpios->arg[0], GPIOD_IS_IN,
1438 dtplat->cd_gpios->arg[1], &priv->cd_gpio);
1439
1440 if (ret)
1441 return ret;
1442 }
Walter Lozano23721772020-07-29 12:31:17 -03001443#endif
1444
1445 if (data)
1446 priv->flags = data->flags;
Yangbo Lufa33d202019-06-21 11:42:27 +08001447
Yangbo Lufa33d202019-06-21 11:42:27 +08001448 /*
1449 * TODO:
1450 * Because lack of clk driver, if SDHC clk is not enabled,
1451 * need to enable it first before this driver is invoked.
1452 *
1453 * we use MXC_ESDHC_CLK to get clk freq.
1454 * If one would like to make this function work,
1455 * the aliases should be provided in dts as this:
1456 *
1457 * aliases {
1458 * mmc0 = &usdhc1;
1459 * mmc1 = &usdhc2;
1460 * mmc2 = &usdhc3;
1461 * mmc3 = &usdhc4;
1462 * };
1463 * Then if your board only supports mmc2 and mmc3, but we can
1464 * correctly get the seq as 2 and 3, then let mxc_get_clock
1465 * work as expected.
1466 */
1467
Simon Glass8b85dfc2020-12-16 21:20:07 -07001468 init_clk_usdhc(dev_seq(dev));
Yangbo Lufa33d202019-06-21 11:42:27 +08001469
Giulio Benettia820bed2020-01-10 15:51:45 +01001470#if CONFIG_IS_ENABLED(CLK)
1471 /* Assigned clock already set clock */
1472 ret = clk_get_by_name(dev, "per", &priv->per_clk);
1473 if (ret) {
1474 printf("Failed to get per_clk\n");
1475 return ret;
Yangbo Lufa33d202019-06-21 11:42:27 +08001476 }
Giulio Benettia820bed2020-01-10 15:51:45 +01001477 ret = clk_enable(&priv->per_clk);
1478 if (ret) {
1479 printf("Failed to enable per_clk\n");
1480 return ret;
1481 }
1482
1483 priv->sdhc_clk = clk_get_rate(&priv->per_clk);
1484#else
Simon Glass8b85dfc2020-12-16 21:20:07 -07001485 priv->sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK + dev_seq(dev));
Giulio Benettia820bed2020-01-10 15:51:45 +01001486 if (priv->sdhc_clk <= 0) {
1487 dev_err(dev, "Unable to get clk for %s\n", dev->name);
1488 return -EINVAL;
1489 }
1490#endif
Yangbo Lufa33d202019-06-21 11:42:27 +08001491
1492 ret = fsl_esdhc_init(priv, plat);
1493 if (ret) {
1494 dev_err(dev, "fsl_esdhc_init failure\n");
1495 return ret;
1496 }
1497
Simon Glassdcfc42b2021-08-07 07:24:06 -06001498 if (CONFIG_IS_ENABLED(OF_REAL)) {
1499 ret = mmc_of_parse(dev, &plat->cfg);
1500 if (ret)
1501 return ret;
1502 }
Peng Fanb0155ac2019-07-10 09:35:24 +00001503
Yangbo Lufa33d202019-06-21 11:42:27 +08001504 mmc = &plat->mmc;
1505 mmc->cfg = &plat->cfg;
1506 mmc->dev = dev;
Yangbo Lufa33d202019-06-21 11:42:27 +08001507
1508 upriv->mmc = mmc;
1509
1510 return esdhc_init_common(priv, mmc);
1511}
1512
Yangbo Lufa33d202019-06-21 11:42:27 +08001513static int fsl_esdhc_get_cd(struct udevice *dev)
1514{
Sean Andersond39aa732021-11-23 15:03:40 -05001515 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001516 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1517
Sean Andersond39aa732021-11-23 15:03:40 -05001518 if (plat->cfg.host_caps & MMC_CAP_NONREMOVABLE)
1519 return 1;
1520
Yangbo Lufa33d202019-06-21 11:42:27 +08001521 return esdhc_getcd_common(priv);
1522}
1523
1524static int fsl_esdhc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
1525 struct mmc_data *data)
1526{
Simon Glassc69cda22020-12-03 16:55:20 -07001527 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001528 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1529
1530 return esdhc_send_cmd_common(priv, &plat->mmc, cmd, data);
1531}
1532
1533static int fsl_esdhc_set_ios(struct udevice *dev)
1534{
Simon Glassc69cda22020-12-03 16:55:20 -07001535 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001536 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1537
1538 return esdhc_set_ios_common(priv, &plat->mmc);
1539}
1540
Sean Anderson00e0cd72021-11-23 15:03:46 -05001541static int __maybe_unused fsl_esdhc_set_enhanced_strobe(struct udevice *dev)
Peng Fane9c22552019-07-10 09:35:26 +00001542{
1543 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1544 struct fsl_esdhc *regs = priv->esdhc_regs;
1545 u32 m;
1546
Haibo Chenc7f44182020-09-30 15:52:23 +08001547 m = esdhc_read32(&regs->mixctrl);
Peng Fane9c22552019-07-10 09:35:26 +00001548 m |= MIX_CTRL_HS400_ES;
Haibo Chenc7f44182020-09-30 15:52:23 +08001549 esdhc_write32(&regs->mixctrl, m);
Peng Fane9c22552019-07-10 09:35:26 +00001550
1551 return 0;
1552}
Peng Fane9c22552019-07-10 09:35:26 +00001553
Haibo Chenb5874b52020-11-05 14:57:13 +08001554static int fsl_esdhc_wait_dat0(struct udevice *dev, int state,
1555 int timeout_us)
1556{
1557 int ret;
1558 u32 tmp;
1559 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1560 struct fsl_esdhc *regs = priv->esdhc_regs;
1561
1562 ret = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp,
1563 !!(tmp & PRSSTAT_DAT0) == !!state,
1564 timeout_us);
1565 return ret;
1566}
1567
Yangbo Lufa33d202019-06-21 11:42:27 +08001568static const struct dm_mmc_ops fsl_esdhc_ops = {
1569 .get_cd = fsl_esdhc_get_cd,
1570 .send_cmd = fsl_esdhc_send_cmd,
1571 .set_ios = fsl_esdhc_set_ios,
1572#ifdef MMC_SUPPORTS_TUNING
1573 .execute_tuning = fsl_esdhc_execute_tuning,
1574#endif
Peng Fane9c22552019-07-10 09:35:26 +00001575#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1576 .set_enhanced_strobe = fsl_esdhc_set_enhanced_strobe,
1577#endif
Haibo Chenb5874b52020-11-05 14:57:13 +08001578 .wait_dat0 = fsl_esdhc_wait_dat0,
Yangbo Lufa33d202019-06-21 11:42:27 +08001579};
Yangbo Lufa33d202019-06-21 11:42:27 +08001580
1581static struct esdhc_soc_data usdhc_imx7d_data = {
1582 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING
1583 | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200
1584 | ESDHC_FLAG_HS400,
Yangbo Lufa33d202019-06-21 11:42:27 +08001585};
1586
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001587static struct esdhc_soc_data usdhc_imx7ulp_data = {
1588 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +03001589 | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200
1590 | ESDHC_FLAG_HS400,
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001591};
1592
Peng Fan609ba122019-07-10 09:35:28 +00001593static struct esdhc_soc_data usdhc_imx8qm_data = {
1594 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING |
1595 ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 |
1596 ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES,
1597};
1598
Yangbo Lufa33d202019-06-21 11:42:27 +08001599static const struct udevice_id fsl_esdhc_ids[] = {
Fabio Estevamc3e6f992021-02-15 08:58:15 -03001600 { .compatible = "fsl,imx51-esdhc", },
Yangbo Lufa33d202019-06-21 11:42:27 +08001601 { .compatible = "fsl,imx53-esdhc", },
1602 { .compatible = "fsl,imx6ul-usdhc", },
1603 { .compatible = "fsl,imx6sx-usdhc", },
1604 { .compatible = "fsl,imx6sl-usdhc", },
1605 { .compatible = "fsl,imx6q-usdhc", },
1606 { .compatible = "fsl,imx7d-usdhc", .data = (ulong)&usdhc_imx7d_data,},
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001607 { .compatible = "fsl,imx7ulp-usdhc", .data = (ulong)&usdhc_imx7ulp_data,},
Peng Fan609ba122019-07-10 09:35:28 +00001608 { .compatible = "fsl,imx8qm-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Peng Fanf65d0842019-11-04 17:31:17 +08001609 { .compatible = "fsl,imx8mm-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
1610 { .compatible = "fsl,imx8mn-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
1611 { .compatible = "fsl,imx8mq-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Giulio Benetti6a63a872020-01-10 15:51:46 +01001612 { .compatible = "fsl,imxrt-usdhc", },
Yangbo Lufa33d202019-06-21 11:42:27 +08001613 { .compatible = "fsl,esdhc", },
1614 { /* sentinel */ }
1615};
1616
Yangbo Lufa33d202019-06-21 11:42:27 +08001617static int fsl_esdhc_bind(struct udevice *dev)
1618{
Simon Glassc69cda22020-12-03 16:55:20 -07001619 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001620
1621 return mmc_bind(dev, &plat->mmc, &plat->cfg);
1622}
Yangbo Lufa33d202019-06-21 11:42:27 +08001623
1624U_BOOT_DRIVER(fsl_esdhc) = {
Walter Lozano45154f02020-07-29 12:31:16 -03001625 .name = "fsl_esdhc",
Yangbo Lufa33d202019-06-21 11:42:27 +08001626 .id = UCLASS_MMC,
1627 .of_match = fsl_esdhc_ids,
Simon Glassd1998a92020-12-03 16:55:21 -07001628 .of_to_plat = fsl_esdhc_of_to_plat,
Yangbo Lufa33d202019-06-21 11:42:27 +08001629 .ops = &fsl_esdhc_ops,
Yangbo Lufa33d202019-06-21 11:42:27 +08001630 .bind = fsl_esdhc_bind,
Yangbo Lufa33d202019-06-21 11:42:27 +08001631 .probe = fsl_esdhc_probe,
Simon Glasscaa4daa2020-12-03 16:55:18 -07001632 .plat_auto = sizeof(struct fsl_esdhc_plat),
Simon Glass41575d82020-12-03 16:55:17 -07001633 .priv_auto = sizeof(struct fsl_esdhc_priv),
Yangbo Lufa33d202019-06-21 11:42:27 +08001634};
Walter Lozano23721772020-07-29 12:31:17 -03001635
Simon Glassbdf8fd72020-12-28 20:34:57 -07001636DM_DRIVER_ALIAS(fsl_esdhc, fsl_imx6q_usdhc)
Yangbo Lufa33d202019-06-21 11:42:27 +08001637#endif