blob: 4c06361beefdf117bb11352dee46ab0d7ee4451b [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>
Yangbo Lufa33d202019-06-21 11:42:27 +080041
42#if !CONFIG_IS_ENABLED(BLK)
43#include "mmc_private.h"
44#endif
45
Haibo Chen0ba116a2021-02-19 11:25:32 -080046#ifndef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE
47#ifdef CONFIG_FSL_USDHC
48#define ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE 1
49#endif
50#endif
51
Yangbo Lufa33d202019-06-21 11:42:27 +080052DECLARE_GLOBAL_DATA_PTR;
53
54#define SDHCI_IRQ_EN_BITS (IRQSTATEN_CC | IRQSTATEN_TC | \
55 IRQSTATEN_CINT | \
56 IRQSTATEN_CTOE | IRQSTATEN_CCE | IRQSTATEN_CEBE | \
57 IRQSTATEN_CIE | IRQSTATEN_DTOE | IRQSTATEN_DCE | \
58 IRQSTATEN_DEBE | IRQSTATEN_BRR | IRQSTATEN_BWR | \
59 IRQSTATEN_DINT)
60#define MAX_TUNING_LOOP 40
61#define ESDHC_DRIVER_STAGE_VALUE 0xffffffff
62
63struct fsl_esdhc {
64 uint dsaddr; /* SDMA system address register */
65 uint blkattr; /* Block attributes register */
66 uint cmdarg; /* Command argument register */
67 uint xfertyp; /* Transfer type register */
68 uint cmdrsp0; /* Command response 0 register */
69 uint cmdrsp1; /* Command response 1 register */
70 uint cmdrsp2; /* Command response 2 register */
71 uint cmdrsp3; /* Command response 3 register */
72 uint datport; /* Buffer data port register */
73 uint prsstat; /* Present state register */
74 uint proctl; /* Protocol control register */
75 uint sysctl; /* System Control Register */
76 uint irqstat; /* Interrupt status register */
77 uint irqstaten; /* Interrupt status enable register */
78 uint irqsigen; /* Interrupt signal enable register */
79 uint autoc12err; /* Auto CMD error status register */
80 uint hostcapblt; /* Host controller capabilities register */
81 uint wml; /* Watermark level register */
82 uint mixctrl; /* For USDHC */
83 char reserved1[4]; /* reserved */
84 uint fevt; /* Force event register */
85 uint admaes; /* ADMA error status register */
86 uint adsaddr; /* ADMA system address register */
87 char reserved2[4];
88 uint dllctrl;
89 uint dllstat;
90 uint clktunectrlstatus;
91 char reserved3[4];
92 uint strobe_dllctrl;
93 uint strobe_dllstat;
94 char reserved4[72];
95 uint vendorspec;
96 uint mmcboot;
97 uint vendorspec2;
Giulio Benetti6a63a872020-01-10 15:51:46 +010098 uint tuning_ctrl; /* on i.MX6/7/8/RT */
Yangbo Lufa33d202019-06-21 11:42:27 +080099 char reserved5[44];
100 uint hostver; /* Host controller version register */
101 char reserved6[4]; /* reserved */
102 uint dmaerraddr; /* DMA error address register */
103 char reserved7[4]; /* reserved */
104 uint dmaerrattr; /* DMA error attribute register */
105 char reserved8[4]; /* reserved */
106 uint hostcapblt2; /* Host controller capabilities register 2 */
107 char reserved9[8]; /* reserved */
108 uint tcr; /* Tuning control register */
109 char reserved10[28]; /* reserved */
110 uint sddirctl; /* SD direction control register */
111 char reserved11[712];/* reserved */
112 uint scr; /* eSDHC control register */
113};
114
115struct fsl_esdhc_plat {
Walter Lozano23721772020-07-29 12:31:17 -0300116#if CONFIG_IS_ENABLED(OF_PLATDATA)
117 /* Put this first since driver model will copy the data here */
118 struct dtd_fsl_esdhc dtplat;
119#endif
120
Yangbo Lufa33d202019-06-21 11:42:27 +0800121 struct mmc_config cfg;
122 struct mmc mmc;
123};
124
125struct esdhc_soc_data {
126 u32 flags;
Yangbo Lufa33d202019-06-21 11:42:27 +0800127};
128
129/**
130 * struct fsl_esdhc_priv
131 *
132 * @esdhc_regs: registers of the sdhc controller
133 * @sdhc_clk: Current clk of the sdhc controller
134 * @bus_width: bus width, 1bit, 4bit or 8bit
135 * @cfg: mmc config
136 * @mmc: mmc
137 * Following is used when Driver Model is enabled for MMC
138 * @dev: pointer for the device
139 * @non_removable: 0: removable; 1: non-removable
Fabio Estevam29230f32020-01-06 20:11:27 -0300140 * @broken_cd: 0: use GPIO for card detect; 1: Do not use GPIO for card detect
Yangbo Lufa33d202019-06-21 11:42:27 +0800141 * @wp_enable: 1: enable checking wp; 0: no check
142 * @vs18_enable: 1: use 1.8V voltage; 0: use 3.3V
143 * @flags: ESDHC_FLAG_xx in include/fsl_esdhc_imx.h
144 * @caps: controller capabilities
145 * @tuning_step: tuning step setting in tuning_ctrl register
146 * @start_tuning_tap: the start point for tuning in tuning_ctrl register
147 * @strobe_dll_delay_target: settings in strobe_dllctrl
148 * @signal_voltage: indicating the current voltage
Haibo Chen8974ff12021-03-22 18:55:38 +0800149 * @signal_voltage_switch_extra_delay_ms: extra delay for IO voltage switch
Yangbo Lufa33d202019-06-21 11:42:27 +0800150 * @cd_gpio: gpio for card detection
151 * @wp_gpio: gpio for write protection
152 */
153struct fsl_esdhc_priv {
154 struct fsl_esdhc *esdhc_regs;
155 unsigned int sdhc_clk;
156 struct clk per_clk;
157 unsigned int clock;
158 unsigned int mode;
159 unsigned int bus_width;
160#if !CONFIG_IS_ENABLED(BLK)
161 struct mmc *mmc;
162#endif
163 struct udevice *dev;
164 int non_removable;
Fabio Estevam29230f32020-01-06 20:11:27 -0300165 int broken_cd;
Yangbo Lufa33d202019-06-21 11:42:27 +0800166 int wp_enable;
167 int vs18_enable;
168 u32 flags;
169 u32 caps;
170 u32 tuning_step;
171 u32 tuning_start_tap;
172 u32 strobe_dll_delay_target;
173 u32 signal_voltage;
Haibo Chen8974ff12021-03-22 18:55:38 +0800174 u32 signal_voltage_switch_extra_delay_ms;
Ye Li82771712019-07-11 03:29:02 +0000175#if CONFIG_IS_ENABLED(DM_REGULATOR)
Yangbo Lufa33d202019-06-21 11:42:27 +0800176 struct udevice *vqmmc_dev;
177 struct udevice *vmmc_dev;
178#endif
Simon Glassbcee8d62019-12-06 21:41:35 -0700179#if CONFIG_IS_ENABLED(DM_GPIO)
Yangbo Lufa33d202019-06-21 11:42:27 +0800180 struct gpio_desc cd_gpio;
181 struct gpio_desc wp_gpio;
182#endif
183};
184
185/* Return the XFERTYP flags for a given command and data packet */
186static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data)
187{
188 uint xfertyp = 0;
189
190 if (data) {
191 xfertyp |= XFERTYP_DPSEL;
192#ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO
193 xfertyp |= XFERTYP_DMAEN;
194#endif
195 if (data->blocks > 1) {
196 xfertyp |= XFERTYP_MSBSEL;
197 xfertyp |= XFERTYP_BCEN;
198#ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111
199 xfertyp |= XFERTYP_AC12EN;
200#endif
201 }
202
203 if (data->flags & MMC_DATA_READ)
204 xfertyp |= XFERTYP_DTDSEL;
205 }
206
207 if (cmd->resp_type & MMC_RSP_CRC)
208 xfertyp |= XFERTYP_CCCEN;
209 if (cmd->resp_type & MMC_RSP_OPCODE)
210 xfertyp |= XFERTYP_CICEN;
211 if (cmd->resp_type & MMC_RSP_136)
212 xfertyp |= XFERTYP_RSPTYP_136;
213 else if (cmd->resp_type & MMC_RSP_BUSY)
214 xfertyp |= XFERTYP_RSPTYP_48_BUSY;
215 else if (cmd->resp_type & MMC_RSP_PRESENT)
216 xfertyp |= XFERTYP_RSPTYP_48;
217
218 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
219 xfertyp |= XFERTYP_CMDTYP_ABORT;
220
221 return XFERTYP_CMD(cmd->cmdidx) | xfertyp;
222}
223
224#ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO
225/*
226 * PIO Read/Write Mode reduce the performace as DMA is not used in this mode.
227 */
228static void esdhc_pio_read_write(struct fsl_esdhc_priv *priv,
229 struct mmc_data *data)
230{
231 struct fsl_esdhc *regs = priv->esdhc_regs;
232 uint blocks;
233 char *buffer;
234 uint databuf;
235 uint size;
236 uint irqstat;
237 ulong start;
238
239 if (data->flags & MMC_DATA_READ) {
240 blocks = data->blocks;
241 buffer = data->dest;
242 while (blocks) {
243 start = get_timer(0);
244 size = data->blocksize;
245 irqstat = esdhc_read32(&regs->irqstat);
246 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BREN)) {
247 if (get_timer(start) > PIO_TIMEOUT) {
248 printf("\nData Read Failed in PIO Mode.");
249 return;
250 }
251 }
252 while (size && (!(irqstat & IRQSTAT_TC))) {
253 udelay(100); /* Wait before last byte transfer complete */
254 irqstat = esdhc_read32(&regs->irqstat);
255 databuf = in_le32(&regs->datport);
256 *((uint *)buffer) = databuf;
257 buffer += 4;
258 size -= 4;
259 }
260 blocks--;
261 }
262 } else {
263 blocks = data->blocks;
264 buffer = (char *)data->src;
265 while (blocks) {
266 start = get_timer(0);
267 size = data->blocksize;
268 irqstat = esdhc_read32(&regs->irqstat);
269 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BWEN)) {
270 if (get_timer(start) > PIO_TIMEOUT) {
271 printf("\nData Write Failed in PIO Mode.");
272 return;
273 }
274 }
275 while (size && (!(irqstat & IRQSTAT_TC))) {
276 udelay(100); /* Wait before last byte transfer complete */
277 databuf = *((uint *)buffer);
278 buffer += 4;
279 size -= 4;
280 irqstat = esdhc_read32(&regs->irqstat);
281 out_le32(&regs->datport, databuf);
282 }
283 blocks--;
284 }
285 }
286}
287#endif
288
289static int esdhc_setup_data(struct fsl_esdhc_priv *priv, struct mmc *mmc,
290 struct mmc_data *data)
291{
292 int timeout;
293 struct fsl_esdhc *regs = priv->esdhc_regs;
Peng Fan744c5fd2021-08-07 16:00:46 +0800294#if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) || \
295 defined(CONFIG_IMX8ULP)
Yangbo Lufa33d202019-06-21 11:42:27 +0800296 dma_addr_t addr;
297#endif
298 uint wml_value;
299
300 wml_value = data->blocksize/4;
301
302 if (data->flags & MMC_DATA_READ) {
303 if (wml_value > WML_RD_WML_MAX)
304 wml_value = WML_RD_WML_MAX_VAL;
305
306 esdhc_clrsetbits32(&regs->wml, WML_RD_WML_MASK, wml_value);
307#ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO
Peng Fan744c5fd2021-08-07 16:00:46 +0800308#if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) || \
309 defined(CONFIG_IMX8ULP)
Yangbo Lufa33d202019-06-21 11:42:27 +0800310 addr = virt_to_phys((void *)(data->dest));
311 if (upper_32_bits(addr))
312 printf("Error found for upper 32 bits\n");
313 else
314 esdhc_write32(&regs->dsaddr, lower_32_bits(addr));
315#else
316 esdhc_write32(&regs->dsaddr, (u32)data->dest);
317#endif
318#endif
319 } else {
320#ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO
321 flush_dcache_range((ulong)data->src,
322 (ulong)data->src+data->blocks
323 *data->blocksize);
324#endif
325 if (wml_value > WML_WR_WML_MAX)
326 wml_value = WML_WR_WML_MAX_VAL;
327 if (priv->wp_enable) {
328 if ((esdhc_read32(&regs->prsstat) &
329 PRSSTAT_WPSPL) == 0) {
330 printf("\nThe SD card is locked. Can not write to a locked card.\n\n");
331 return -ETIMEDOUT;
332 }
333 } else {
Simon Glassbcee8d62019-12-06 21:41:35 -0700334#if CONFIG_IS_ENABLED(DM_GPIO)
335 if (dm_gpio_is_valid(&priv->wp_gpio) &&
336 dm_gpio_get_value(&priv->wp_gpio)) {
Yangbo Lufa33d202019-06-21 11:42:27 +0800337 printf("\nThe SD card is locked. Can not write to a locked card.\n\n");
338 return -ETIMEDOUT;
339 }
340#endif
341 }
342
343 esdhc_clrsetbits32(&regs->wml, WML_WR_WML_MASK,
344 wml_value << 16);
345#ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO
Peng Fan744c5fd2021-08-07 16:00:46 +0800346#if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) || \
347 defined(CONFIG_IMX8ULP)
Yangbo Lufa33d202019-06-21 11:42:27 +0800348 addr = virt_to_phys((void *)(data->src));
349 if (upper_32_bits(addr))
350 printf("Error found for upper 32 bits\n");
351 else
352 esdhc_write32(&regs->dsaddr, lower_32_bits(addr));
353#else
354 esdhc_write32(&regs->dsaddr, (u32)data->src);
355#endif
356#endif
357 }
358
359 esdhc_write32(&regs->blkattr, data->blocks << 16 | data->blocksize);
360
361 /* Calculate the timeout period for data transactions */
362 /*
363 * 1)Timeout period = (2^(timeout+13)) SD Clock cycles
364 * 2)Timeout period should be minimum 0.250sec as per SD Card spec
365 * So, Number of SD Clock cycles for 0.25sec should be minimum
366 * (SD Clock/sec * 0.25 sec) SD Clock cycles
367 * = (mmc->clock * 1/4) SD Clock cycles
368 * As 1) >= 2)
369 * => (2^(timeout+13)) >= mmc->clock * 1/4
370 * Taking log2 both the sides
371 * => timeout + 13 >= log2(mmc->clock/4)
372 * Rounding up to next power of 2
373 * => timeout + 13 = log2(mmc->clock/4) + 1
374 * => timeout + 13 = fls(mmc->clock/4)
375 *
376 * However, the MMC spec "It is strongly recommended for hosts to
377 * implement more than 500ms timeout value even if the card
378 * indicates the 250ms maximum busy length." Even the previous
379 * value of 300ms is known to be insufficient for some cards.
380 * So, we use
381 * => timeout + 13 = fls(mmc->clock/2)
382 */
383 timeout = fls(mmc->clock/2);
384 timeout -= 13;
385
386 if (timeout > 14)
387 timeout = 14;
388
389 if (timeout < 0)
390 timeout = 0;
391
392#ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC_A001
393 if ((timeout == 4) || (timeout == 8) || (timeout == 12))
394 timeout++;
395#endif
396
397#ifdef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE
398 timeout = 0xE;
399#endif
400 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16);
401
402 return 0;
403}
404
405static void check_and_invalidate_dcache_range
406 (struct mmc_cmd *cmd,
407 struct mmc_data *data) {
408 unsigned start = 0;
409 unsigned end = 0;
410 unsigned size = roundup(ARCH_DMA_MINALIGN,
411 data->blocks*data->blocksize);
Peng Fan744c5fd2021-08-07 16:00:46 +0800412#if defined(CONFIG_S32V234) || defined(CONFIG_IMX8) || defined(CONFIG_IMX8M) || \
413 defined(CONFIG_IMX8ULP)
Yangbo Lufa33d202019-06-21 11:42:27 +0800414 dma_addr_t addr;
415
416 addr = virt_to_phys((void *)(data->dest));
417 if (upper_32_bits(addr))
418 printf("Error found for upper 32 bits\n");
419 else
420 start = lower_32_bits(addr);
421#else
422 start = (unsigned)data->dest;
423#endif
424 end = start + size;
425 invalidate_dcache_range(start, end);
426}
427
428#ifdef CONFIG_MCF5441x
429/*
430 * Swaps 32-bit words to little-endian byte order.
431 */
432static inline void sd_swap_dma_buff(struct mmc_data *data)
433{
434 int i, size = data->blocksize >> 2;
435 u32 *buffer = (u32 *)data->dest;
436 u32 sw;
437
438 while (data->blocks--) {
439 for (i = 0; i < size; i++) {
440 sw = __sw32(*buffer);
441 *buffer++ = sw;
442 }
443 }
444}
445#endif
446
447/*
448 * Sends a command out on the bus. Takes the mmc pointer,
449 * a command pointer, and an optional data pointer.
450 */
451static int esdhc_send_cmd_common(struct fsl_esdhc_priv *priv, struct mmc *mmc,
452 struct mmc_cmd *cmd, struct mmc_data *data)
453{
454 int err = 0;
455 uint xfertyp;
456 uint irqstat;
457 u32 flags = IRQSTAT_CC | IRQSTAT_CTOE;
458 struct fsl_esdhc *regs = priv->esdhc_regs;
459 unsigned long start;
460
461#ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111
462 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
463 return 0;
464#endif
465
466 esdhc_write32(&regs->irqstat, -1);
467
468 sync();
469
470 /* Wait for the bus to be idle */
471 while ((esdhc_read32(&regs->prsstat) & PRSSTAT_CICHB) ||
472 (esdhc_read32(&regs->prsstat) & PRSSTAT_CIDHB))
473 ;
474
475 while (esdhc_read32(&regs->prsstat) & PRSSTAT_DLA)
476 ;
477
Yangbo Lufa33d202019-06-21 11:42:27 +0800478 /* Set up for a data transfer if we have one */
479 if (data) {
480 err = esdhc_setup_data(priv, mmc, data);
481 if(err)
482 return err;
483
484 if (data->flags & MMC_DATA_READ)
485 check_and_invalidate_dcache_range(cmd, data);
486 }
487
488 /* Figure out the transfer arguments */
489 xfertyp = esdhc_xfertyp(cmd, data);
490
491 /* Mask all irqs */
492 esdhc_write32(&regs->irqsigen, 0);
493
494 /* Send the command */
495 esdhc_write32(&regs->cmdarg, cmd->cmdarg);
496#if defined(CONFIG_FSL_USDHC)
497 esdhc_write32(&regs->mixctrl,
498 (esdhc_read32(&regs->mixctrl) & 0xFFFFFF80) | (xfertyp & 0x7F)
499 | (mmc->ddr_mode ? XFERTYP_DDREN : 0));
500 esdhc_write32(&regs->xfertyp, xfertyp & 0xFFFF0000);
501#else
502 esdhc_write32(&regs->xfertyp, xfertyp);
503#endif
504
505 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK) ||
506 (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200))
507 flags = IRQSTAT_BRR;
508
509 /* Wait for the command to complete */
510 start = get_timer(0);
511 while (!(esdhc_read32(&regs->irqstat) & flags)) {
512 if (get_timer(start) > 1000) {
513 err = -ETIMEDOUT;
514 goto out;
515 }
516 }
517
518 irqstat = esdhc_read32(&regs->irqstat);
519
520 if (irqstat & CMD_ERR) {
521 err = -ECOMM;
522 goto out;
523 }
524
525 if (irqstat & IRQSTAT_CTOE) {
526 err = -ETIMEDOUT;
527 goto out;
528 }
529
Yangbo Lufa33d202019-06-21 11:42:27 +0800530 /* Workaround for ESDHC errata ENGcm03648 */
531 if (!data && (cmd->resp_type & MMC_RSP_BUSY)) {
Peng Fan356f7822019-07-10 09:35:30 +0000532 int timeout = 50000;
Yangbo Lufa33d202019-06-21 11:42:27 +0800533
Peng Fan356f7822019-07-10 09:35:30 +0000534 /* Poll on DATA0 line for cmd with busy signal for 5000 ms */
Yangbo Lufa33d202019-06-21 11:42:27 +0800535 while (timeout > 0 && !(esdhc_read32(&regs->prsstat) &
536 PRSSTAT_DAT0)) {
537 udelay(100);
538 timeout--;
539 }
540
541 if (timeout <= 0) {
542 printf("Timeout waiting for DAT0 to go high!\n");
543 err = -ETIMEDOUT;
544 goto out;
545 }
546 }
547
548 /* Copy the response to the response buffer */
549 if (cmd->resp_type & MMC_RSP_136) {
550 u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0;
551
552 cmdrsp3 = esdhc_read32(&regs->cmdrsp3);
553 cmdrsp2 = esdhc_read32(&regs->cmdrsp2);
554 cmdrsp1 = esdhc_read32(&regs->cmdrsp1);
555 cmdrsp0 = esdhc_read32(&regs->cmdrsp0);
556 cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24);
557 cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24);
558 cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24);
559 cmd->response[3] = (cmdrsp0 << 8);
560 } else
561 cmd->response[0] = esdhc_read32(&regs->cmdrsp0);
562
563 /* Wait until all of the blocks are transferred */
564 if (data) {
565#ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO
566 esdhc_pio_read_write(priv, data);
567#else
568 flags = DATA_COMPLETE;
569 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK) ||
570 (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)) {
571 flags = IRQSTAT_BRR;
572 }
573
574 do {
575 irqstat = esdhc_read32(&regs->irqstat);
576
577 if (irqstat & IRQSTAT_DTOE) {
578 err = -ETIMEDOUT;
579 goto out;
580 }
581
582 if (irqstat & DATA_ERR) {
583 err = -ECOMM;
584 goto out;
585 }
586 } while ((irqstat & flags) != flags);
587
588 /*
589 * Need invalidate the dcache here again to avoid any
590 * cache-fill during the DMA operations such as the
591 * speculative pre-fetching etc.
592 */
593 if (data->flags & MMC_DATA_READ) {
594 check_and_invalidate_dcache_range(cmd, data);
595#ifdef CONFIG_MCF5441x
596 sd_swap_dma_buff(data);
597#endif
598 }
599#endif
600 }
601
602out:
603 /* Reset CMD and DATA portions on error */
604 if (err) {
605 esdhc_write32(&regs->sysctl, esdhc_read32(&regs->sysctl) |
606 SYSCTL_RSTC);
607 while (esdhc_read32(&regs->sysctl) & SYSCTL_RSTC)
608 ;
609
610 if (data) {
611 esdhc_write32(&regs->sysctl,
612 esdhc_read32(&regs->sysctl) |
613 SYSCTL_RSTD);
614 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTD))
615 ;
616 }
617
618 /* If this was CMD11, then notify that power cycle is needed */
619 if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V)
620 printf("CMD11 to switch to 1.8V mode failed, card requires power cycle.\n");
621 }
622
623 esdhc_write32(&regs->irqstat, -1);
624
625 return err;
626}
627
628static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock)
629{
630 struct fsl_esdhc *regs = priv->esdhc_regs;
631 int div = 1;
Haibo Chenf9c3a812020-09-01 15:34:06 +0800632 u32 tmp;
633 int ret;
Yangbo Lufa33d202019-06-21 11:42:27 +0800634#ifdef ARCH_MXC
635#ifdef CONFIG_MX53
636 /* For i.MX53 eSDHCv3, SYSCTL.SDCLKFS may not be set to 0. */
637 int pre_div = (regs == (struct fsl_esdhc *)MMC_SDHC3_BASE_ADDR) ? 2 : 1;
638#else
639 int pre_div = 1;
640#endif
641#else
642 int pre_div = 2;
643#endif
644 int ddr_pre_div = mmc->ddr_mode ? 2 : 1;
645 int sdhc_clk = priv->sdhc_clk;
646 uint clk;
647
Yangbo Lufa33d202019-06-21 11:42:27 +0800648 while (sdhc_clk / (16 * pre_div * ddr_pre_div) > clock && pre_div < 256)
649 pre_div *= 2;
650
651 while (sdhc_clk / (div * pre_div * ddr_pre_div) > clock && div < 16)
652 div++;
653
654 pre_div >>= 1;
655 div -= 1;
656
657 clk = (pre_div << 8) | (div << 4);
658
659#ifdef CONFIG_FSL_USDHC
Fabio Estevamf132aab2021-06-07 17:40:09 -0300660 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800661#else
662 esdhc_clrbits32(&regs->sysctl, SYSCTL_CKEN);
663#endif
664
665 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_CLOCK_MASK, clk);
666
Haibo Chenf9c3a812020-09-01 15:34:06 +0800667 ret = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp, tmp & PRSSTAT_SDSTB, 100);
668 if (ret)
669 pr_warn("fsl_esdhc_imx: Internal clock never stabilised.\n");
Yangbo Lufa33d202019-06-21 11:42:27 +0800670
671#ifdef CONFIG_FSL_USDHC
Fabio Estevamf132aab2021-06-07 17:40:09 -0300672 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN | VENDORSPEC_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800673#else
674 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
675#endif
676
677 priv->clock = clock;
678}
679
Yangbo Lufa33d202019-06-21 11:42:27 +0800680#ifdef MMC_SUPPORTS_TUNING
681static int esdhc_change_pinstate(struct udevice *dev)
682{
683 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
684 int ret;
685
686 switch (priv->mode) {
687 case UHS_SDR50:
688 case UHS_DDR50:
689 ret = pinctrl_select_state(dev, "state_100mhz");
690 break;
691 case UHS_SDR104:
692 case MMC_HS_200:
693 case MMC_HS_400:
Peng Fane9c22552019-07-10 09:35:26 +0000694 case MMC_HS_400_ES:
Yangbo Lufa33d202019-06-21 11:42:27 +0800695 ret = pinctrl_select_state(dev, "state_200mhz");
696 break;
697 default:
698 ret = pinctrl_select_state(dev, "default");
699 break;
700 }
701
702 if (ret)
703 printf("%s %d error\n", __func__, priv->mode);
704
705 return ret;
706}
707
708static void esdhc_reset_tuning(struct mmc *mmc)
709{
710 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
711 struct fsl_esdhc *regs = priv->esdhc_regs;
712
713 if (priv->flags & ESDHC_FLAG_USDHC) {
714 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
715 esdhc_clrbits32(&regs->autoc12err,
716 MIX_CTRL_SMPCLK_SEL |
717 MIX_CTRL_EXE_TUNE);
718 }
719 }
720}
721
722static void esdhc_set_strobe_dll(struct mmc *mmc)
723{
724 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
725 struct fsl_esdhc *regs = priv->esdhc_regs;
726 u32 val;
727
728 if (priv->clock > ESDHC_STROBE_DLL_CLK_FREQ) {
Haibo Chenc7f44182020-09-30 15:52:23 +0800729 esdhc_write32(&regs->strobe_dllctrl, ESDHC_STROBE_DLL_CTRL_RESET);
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300730 /* clear the reset bit on strobe dll before any setting */
731 esdhc_write32(&regs->strobe_dllctrl, 0);
Yangbo Lufa33d202019-06-21 11:42:27 +0800732
733 /*
734 * enable strobe dll ctrl and adjust the delay target
735 * for the uSDHC loopback read clock
736 */
737 val = ESDHC_STROBE_DLL_CTRL_ENABLE |
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300738 ESDHC_STROBE_DLL_CTRL_SLV_UPDATE_INT_DEFAULT |
Yangbo Lufa33d202019-06-21 11:42:27 +0800739 (priv->strobe_dll_delay_target <<
740 ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_SHIFT);
Haibo Chenc7f44182020-09-30 15:52:23 +0800741 esdhc_write32(&regs->strobe_dllctrl, val);
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300742 /* wait 5us to make sure strobe dll status register stable */
743 mdelay(5);
Haibo Chenc7f44182020-09-30 15:52:23 +0800744 val = esdhc_read32(&regs->strobe_dllstat);
Yangbo Lufa33d202019-06-21 11:42:27 +0800745 if (!(val & ESDHC_STROBE_DLL_STS_REF_LOCK))
746 pr_warn("HS400 strobe DLL status REF not lock!\n");
747 if (!(val & ESDHC_STROBE_DLL_STS_SLV_LOCK))
748 pr_warn("HS400 strobe DLL status SLV not lock!\n");
749 }
750}
751
752static int esdhc_set_timing(struct mmc *mmc)
753{
754 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
755 struct fsl_esdhc *regs = priv->esdhc_regs;
756 u32 mixctrl;
757
Haibo Chenc7f44182020-09-30 15:52:23 +0800758 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800759 mixctrl &= ~(MIX_CTRL_DDREN | MIX_CTRL_HS400_EN);
760
761 switch (mmc->selected_mode) {
762 case MMC_LEGACY:
Yangbo Lufa33d202019-06-21 11:42:27 +0800763 esdhc_reset_tuning(mmc);
Haibo Chenc7f44182020-09-30 15:52:23 +0800764 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800765 break;
766 case MMC_HS_400:
Peng Fane9c22552019-07-10 09:35:26 +0000767 case MMC_HS_400_ES:
Yangbo Lufa33d202019-06-21 11:42:27 +0800768 mixctrl |= MIX_CTRL_DDREN | MIX_CTRL_HS400_EN;
Haibo Chenc7f44182020-09-30 15:52:23 +0800769 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800770 break;
771 case MMC_HS:
772 case MMC_HS_52:
773 case MMC_HS_200:
774 case SD_HS:
775 case UHS_SDR12:
776 case UHS_SDR25:
777 case UHS_SDR50:
778 case UHS_SDR104:
Haibo Chenc7f44182020-09-30 15:52:23 +0800779 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800780 break;
781 case UHS_DDR50:
782 case MMC_DDR_52:
783 mixctrl |= MIX_CTRL_DDREN;
Haibo Chenc7f44182020-09-30 15:52:23 +0800784 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800785 break;
786 default:
787 printf("Not supported %d\n", mmc->selected_mode);
788 return -EINVAL;
789 }
790
791 priv->mode = mmc->selected_mode;
792
793 return esdhc_change_pinstate(mmc->dev);
794}
795
796static int esdhc_set_voltage(struct mmc *mmc)
797{
798 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
799 struct fsl_esdhc *regs = priv->esdhc_regs;
Heiko Schocher50125bd2021-01-15 10:37:09 +0100800#if CONFIG_IS_ENABLED(DM_REGULATOR)
Yangbo Lufa33d202019-06-21 11:42:27 +0800801 int ret;
Heiko Schocher50125bd2021-01-15 10:37:09 +0100802#endif
Yangbo Lufa33d202019-06-21 11:42:27 +0800803
804 priv->signal_voltage = mmc->signal_voltage;
805 switch (mmc->signal_voltage) {
806 case MMC_SIGNAL_VOLTAGE_330:
807 if (priv->vs18_enable)
Marek Vasut50a17a62020-05-22 18:28:33 +0200808 return -ENOTSUPP;
Yangbo Lufa33d202019-06-21 11:42:27 +0800809#if CONFIG_IS_ENABLED(DM_REGULATOR)
810 if (!IS_ERR_OR_NULL(priv->vqmmc_dev)) {
811 ret = regulator_set_value(priv->vqmmc_dev, 3300000);
812 if (ret) {
813 printf("Setting to 3.3V error");
814 return -EIO;
815 }
816 /* Wait for 5ms */
817 mdelay(5);
818 }
819#endif
820
821 esdhc_clrbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
822 if (!(esdhc_read32(&regs->vendorspec) &
823 ESDHC_VENDORSPEC_VSELECT))
824 return 0;
825
826 return -EAGAIN;
827 case MMC_SIGNAL_VOLTAGE_180:
828#if CONFIG_IS_ENABLED(DM_REGULATOR)
829 if (!IS_ERR_OR_NULL(priv->vqmmc_dev)) {
830 ret = regulator_set_value(priv->vqmmc_dev, 1800000);
831 if (ret) {
832 printf("Setting to 1.8V error");
833 return -EIO;
834 }
835 }
836#endif
837 esdhc_setbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
Haibo Chen8974ff12021-03-22 18:55:38 +0800838 /*
839 * some board like imx8mm-evk need about 18ms to switch
840 * the IO voltage from 3.3v to 1.8v, common code only
841 * delay 10ms, so need to delay extra time to make sure
842 * the IO voltage change to 1.8v.
843 */
844 if (priv->signal_voltage_switch_extra_delay_ms)
845 mdelay(priv->signal_voltage_switch_extra_delay_ms);
Yangbo Lufa33d202019-06-21 11:42:27 +0800846 if (esdhc_read32(&regs->vendorspec) & ESDHC_VENDORSPEC_VSELECT)
847 return 0;
848
849 return -EAGAIN;
850 case MMC_SIGNAL_VOLTAGE_120:
851 return -ENOTSUPP;
852 default:
853 return 0;
854 }
855}
856
857static void esdhc_stop_tuning(struct mmc *mmc)
858{
859 struct mmc_cmd cmd;
860
861 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
862 cmd.cmdarg = 0;
863 cmd.resp_type = MMC_RSP_R1b;
864
Jaehoon Chung2da23352021-05-31 08:31:49 +0900865 mmc_send_cmd(mmc, &cmd, NULL);
Yangbo Lufa33d202019-06-21 11:42:27 +0800866}
867
868static int fsl_esdhc_execute_tuning(struct udevice *dev, uint32_t opcode)
869{
Simon Glassc69cda22020-12-03 16:55:20 -0700870 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +0800871 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
872 struct fsl_esdhc *regs = priv->esdhc_regs;
873 struct mmc *mmc = &plat->mmc;
Haibo Chenc7f44182020-09-30 15:52:23 +0800874 u32 irqstaten = esdhc_read32(&regs->irqstaten);
875 u32 irqsigen = esdhc_read32(&regs->irqsigen);
Yangbo Lufa33d202019-06-21 11:42:27 +0800876 int i, ret = -ETIMEDOUT;
877 u32 val, mixctrl;
878
879 /* clock tuning is not needed for upto 52MHz */
880 if (mmc->clock <= 52000000)
881 return 0;
882
883 /* This is readw/writew SDHCI_HOST_CONTROL2 when tuning */
884 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
Haibo Chenc7f44182020-09-30 15:52:23 +0800885 val = esdhc_read32(&regs->autoc12err);
886 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800887 val &= ~MIX_CTRL_SMPCLK_SEL;
888 mixctrl &= ~(MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN);
889
890 val |= MIX_CTRL_EXE_TUNE;
891 mixctrl |= MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN;
892
Haibo Chenc7f44182020-09-30 15:52:23 +0800893 esdhc_write32(&regs->autoc12err, val);
894 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800895 }
896
897 /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE); */
Haibo Chenc7f44182020-09-30 15:52:23 +0800898 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800899 mixctrl = MIX_CTRL_DTDSEL_READ | (mixctrl & ~MIX_CTRL_SDHCI_MASK);
Haibo Chenc7f44182020-09-30 15:52:23 +0800900 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800901
Haibo Chenc7f44182020-09-30 15:52:23 +0800902 esdhc_write32(&regs->irqstaten, IRQSTATEN_BRR);
903 esdhc_write32(&regs->irqsigen, IRQSTATEN_BRR);
Yangbo Lufa33d202019-06-21 11:42:27 +0800904
905 /*
906 * Issue opcode repeatedly till Execute Tuning is set to 0 or the number
907 * of loops reaches 40 times.
908 */
909 for (i = 0; i < MAX_TUNING_LOOP; i++) {
910 u32 ctrl;
911
912 if (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200) {
913 if (mmc->bus_width == 8)
Haibo Chenc7f44182020-09-30 15:52:23 +0800914 esdhc_write32(&regs->blkattr, 0x7080);
Yangbo Lufa33d202019-06-21 11:42:27 +0800915 else if (mmc->bus_width == 4)
Haibo Chenc7f44182020-09-30 15:52:23 +0800916 esdhc_write32(&regs->blkattr, 0x7040);
Yangbo Lufa33d202019-06-21 11:42:27 +0800917 } else {
Haibo Chenc7f44182020-09-30 15:52:23 +0800918 esdhc_write32(&regs->blkattr, 0x7040);
Yangbo Lufa33d202019-06-21 11:42:27 +0800919 }
920
921 /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE) */
Haibo Chenc7f44182020-09-30 15:52:23 +0800922 val = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800923 val = MIX_CTRL_DTDSEL_READ | (val & ~MIX_CTRL_SDHCI_MASK);
Haibo Chenc7f44182020-09-30 15:52:23 +0800924 esdhc_write32(&regs->mixctrl, val);
Yangbo Lufa33d202019-06-21 11:42:27 +0800925
926 /* We are using STD tuning, no need to check return value */
927 mmc_send_tuning(mmc, opcode, NULL);
928
Haibo Chenc7f44182020-09-30 15:52:23 +0800929 ctrl = esdhc_read32(&regs->autoc12err);
Yangbo Lufa33d202019-06-21 11:42:27 +0800930 if ((!(ctrl & MIX_CTRL_EXE_TUNE)) &&
931 (ctrl & MIX_CTRL_SMPCLK_SEL)) {
Yangbo Lufa33d202019-06-21 11:42:27 +0800932 ret = 0;
933 break;
934 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800935 }
936
Haibo Chenc7f44182020-09-30 15:52:23 +0800937 esdhc_write32(&regs->irqstaten, irqstaten);
938 esdhc_write32(&regs->irqsigen, irqsigen);
Yangbo Lufa33d202019-06-21 11:42:27 +0800939
940 esdhc_stop_tuning(mmc);
941
942 return ret;
943}
944#endif
945
946static int esdhc_set_ios_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
947{
948 struct fsl_esdhc *regs = priv->esdhc_regs;
949 int ret __maybe_unused;
Peng Fan1d01c982019-11-04 17:14:15 +0800950 u32 clock;
Yangbo Lufa33d202019-06-21 11:42:27 +0800951
Haibo Chen5d772192020-11-03 17:18:35 +0800952#ifdef MMC_SUPPORTS_TUNING
953 /*
954 * call esdhc_set_timing() before update the clock rate,
955 * This is because current we support DDR and SDR mode,
956 * Once the DDR_EN bit is set, the card clock will be
957 * divide by 2 automatically. So need to do this before
958 * setting clock rate.
959 */
960 if (priv->mode != mmc->selected_mode) {
961 ret = esdhc_set_timing(mmc);
962 if (ret) {
963 printf("esdhc_set_timing error %d\n", ret);
964 return ret;
965 }
966 }
967#endif
968
Yangbo Lufa33d202019-06-21 11:42:27 +0800969 /* Set the clock speed */
Peng Fan1d01c982019-11-04 17:14:15 +0800970 clock = mmc->clock;
971 if (clock < mmc->cfg->f_min)
972 clock = mmc->cfg->f_min;
973
974 if (priv->clock != clock)
975 set_sysctl(priv, mmc, clock);
Yangbo Lufa33d202019-06-21 11:42:27 +0800976
Yangbo Lufa33d202019-06-21 11:42:27 +0800977 if (mmc->clk_disable) {
978#ifdef CONFIG_FSL_USDHC
Fabio Estevamf132aab2021-06-07 17:40:09 -0300979 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800980#else
981 esdhc_clrbits32(&regs->sysctl, SYSCTL_CKEN);
982#endif
983 } else {
984#ifdef CONFIG_FSL_USDHC
Fabio Estevamf132aab2021-06-07 17:40:09 -0300985 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN |
986 VENDORSPEC_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800987#else
988 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
989#endif
990 }
991
Ye Li9b7c3492021-08-17 17:09:20 +0800992#ifdef MMC_SUPPORTS_TUNING
Haibo Chen5d772192020-11-03 17:18:35 +0800993 /*
994 * For HS400/HS400ES mode, make sure set the strobe dll in the
995 * target clock rate. So call esdhc_set_strobe_dll() after the
996 * clock updated.
997 */
998 if (mmc->selected_mode == MMC_HS_400 || mmc->selected_mode == MMC_HS_400_ES)
999 esdhc_set_strobe_dll(mmc);
Yangbo Lufa33d202019-06-21 11:42:27 +08001000
1001 if (priv->signal_voltage != mmc->signal_voltage) {
1002 ret = esdhc_set_voltage(mmc);
1003 if (ret) {
Marek Vasut50a17a62020-05-22 18:28:33 +02001004 if (ret != -ENOTSUPP)
1005 printf("esdhc_set_voltage error %d\n", ret);
Yangbo Lufa33d202019-06-21 11:42:27 +08001006 return ret;
1007 }
1008 }
1009#endif
1010
1011 /* Set the bus width */
1012 esdhc_clrbits32(&regs->proctl, PROCTL_DTW_4 | PROCTL_DTW_8);
1013
1014 if (mmc->bus_width == 4)
1015 esdhc_setbits32(&regs->proctl, PROCTL_DTW_4);
1016 else if (mmc->bus_width == 8)
1017 esdhc_setbits32(&regs->proctl, PROCTL_DTW_8);
1018
1019 return 0;
1020}
1021
1022static int esdhc_init_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
1023{
1024 struct fsl_esdhc *regs = priv->esdhc_regs;
1025 ulong start;
1026
1027 /* Reset the entire host controller */
1028 esdhc_setbits32(&regs->sysctl, SYSCTL_RSTA);
1029
1030 /* Wait until the controller is available */
1031 start = get_timer(0);
1032 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTA)) {
1033 if (get_timer(start) > 1000)
1034 return -ETIMEDOUT;
1035 }
1036
1037#if defined(CONFIG_FSL_USDHC)
1038 /* RSTA doesn't reset MMC_BOOT register, so manually reset it */
1039 esdhc_write32(&regs->mmcboot, 0x0);
1040 /* Reset MIX_CTRL and CLK_TUNE_CTRL_STATUS regs to 0 */
1041 esdhc_write32(&regs->mixctrl, 0x0);
1042 esdhc_write32(&regs->clktunectrlstatus, 0x0);
1043
1044 /* Put VEND_SPEC to default value */
1045 if (priv->vs18_enable)
1046 esdhc_write32(&regs->vendorspec, (VENDORSPEC_INIT |
1047 ESDHC_VENDORSPEC_VSELECT));
1048 else
1049 esdhc_write32(&regs->vendorspec, VENDORSPEC_INIT);
1050
1051 /* Disable DLL_CTRL delay line */
1052 esdhc_write32(&regs->dllctrl, 0x0);
1053#endif
1054
1055#ifndef ARCH_MXC
1056 /* Enable cache snooping */
1057 esdhc_write32(&regs->scr, 0x00000040);
1058#endif
1059
1060#ifndef CONFIG_FSL_USDHC
1061 esdhc_setbits32(&regs->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN);
1062#else
Fabio Estevamf132aab2021-06-07 17:40:09 -03001063 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_HCKEN | VENDORSPEC_IPGEN);
Yangbo Lufa33d202019-06-21 11:42:27 +08001064#endif
1065
1066 /* Set the initial clock speed */
1067 mmc_set_clock(mmc, 400000, MMC_CLK_ENABLE);
1068
1069 /* Disable the BRR and BWR bits in IRQSTAT */
1070 esdhc_clrbits32(&regs->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR);
1071
1072#ifdef CONFIG_MCF5441x
1073 esdhc_write32(&regs->proctl, PROCTL_INIT | PROCTL_D3CD);
1074#else
1075 /* Put the PROCTL reg back to the default */
1076 esdhc_write32(&regs->proctl, PROCTL_INIT);
1077#endif
1078
1079 /* Set timout to the maximum value */
1080 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16);
1081
1082 return 0;
1083}
1084
1085static int esdhc_getcd_common(struct fsl_esdhc_priv *priv)
1086{
1087 struct fsl_esdhc *regs = priv->esdhc_regs;
1088 int timeout = 1000;
1089
1090#ifdef CONFIG_ESDHC_DETECT_QUIRK
1091 if (CONFIG_ESDHC_DETECT_QUIRK)
1092 return 1;
1093#endif
1094
1095#if CONFIG_IS_ENABLED(DM_MMC)
1096 if (priv->non_removable)
1097 return 1;
Fabio Estevam29230f32020-01-06 20:11:27 -03001098
1099 if (priv->broken_cd)
1100 return 1;
Simon Glassbcee8d62019-12-06 21:41:35 -07001101#if CONFIG_IS_ENABLED(DM_GPIO)
Yangbo Lufa33d202019-06-21 11:42:27 +08001102 if (dm_gpio_is_valid(&priv->cd_gpio))
1103 return dm_gpio_get_value(&priv->cd_gpio);
1104#endif
1105#endif
1106
1107 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_CINS) && --timeout)
1108 udelay(1000);
1109
1110 return timeout > 0;
1111}
1112
1113static int esdhc_reset(struct fsl_esdhc *regs)
1114{
1115 ulong start;
1116
1117 /* reset the controller */
1118 esdhc_setbits32(&regs->sysctl, SYSCTL_RSTA);
1119
1120 /* hardware clears the bit when it is done */
1121 start = get_timer(0);
1122 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTA)) {
1123 if (get_timer(start) > 100) {
1124 printf("MMC/SD: Reset never completed.\n");
1125 return -ETIMEDOUT;
1126 }
1127 }
1128
1129 return 0;
1130}
1131
1132#if !CONFIG_IS_ENABLED(DM_MMC)
1133static int esdhc_getcd(struct mmc *mmc)
1134{
1135 struct fsl_esdhc_priv *priv = mmc->priv;
1136
1137 return esdhc_getcd_common(priv);
1138}
1139
1140static int esdhc_init(struct mmc *mmc)
1141{
1142 struct fsl_esdhc_priv *priv = mmc->priv;
1143
1144 return esdhc_init_common(priv, mmc);
1145}
1146
1147static int esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
1148 struct mmc_data *data)
1149{
1150 struct fsl_esdhc_priv *priv = mmc->priv;
1151
1152 return esdhc_send_cmd_common(priv, mmc, cmd, data);
1153}
1154
1155static int esdhc_set_ios(struct mmc *mmc)
1156{
1157 struct fsl_esdhc_priv *priv = mmc->priv;
1158
1159 return esdhc_set_ios_common(priv, mmc);
1160}
1161
1162static const struct mmc_ops esdhc_ops = {
1163 .getcd = esdhc_getcd,
1164 .init = esdhc_init,
1165 .send_cmd = esdhc_send_cmd,
1166 .set_ios = esdhc_set_ios,
1167};
1168#endif
1169
1170static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
1171 struct fsl_esdhc_plat *plat)
1172{
1173 struct mmc_config *cfg;
1174 struct fsl_esdhc *regs;
1175 u32 caps, voltage_caps;
1176 int ret;
1177
1178 if (!priv)
1179 return -EINVAL;
1180
1181 regs = priv->esdhc_regs;
1182
1183 /* First reset the eSDHC controller */
1184 ret = esdhc_reset(regs);
1185 if (ret)
1186 return ret;
1187
1188#ifdef CONFIG_MCF5441x
1189 /* ColdFire, using SDHC_DATA[3] for card detection */
1190 esdhc_write32(&regs->proctl, PROCTL_INIT | PROCTL_D3CD);
1191#endif
1192
1193#ifndef CONFIG_FSL_USDHC
1194 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_HCKEN
1195 | SYSCTL_IPGEN | SYSCTL_CKEN);
1196 /* Clearing tuning bits in case ROM has set it already */
1197 esdhc_write32(&regs->mixctrl, 0);
1198 esdhc_write32(&regs->autoc12err, 0);
1199 esdhc_write32(&regs->clktunectrlstatus, 0);
1200#else
Fabio Estevamf132aab2021-06-07 17:40:09 -03001201 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN |
1202 VENDORSPEC_HCKEN | VENDORSPEC_IPGEN | VENDORSPEC_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +08001203#endif
1204
1205 if (priv->vs18_enable)
1206 esdhc_setbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
1207
Haibo Chenc7f44182020-09-30 15:52:23 +08001208 esdhc_write32(&regs->irqstaten, SDHCI_IRQ_EN_BITS);
Yangbo Lufa33d202019-06-21 11:42:27 +08001209 cfg = &plat->cfg;
1210#ifndef CONFIG_DM_MMC
1211 memset(cfg, '\0', sizeof(*cfg));
1212#endif
1213
1214 voltage_caps = 0;
1215 caps = esdhc_read32(&regs->hostcapblt);
1216
1217#ifdef CONFIG_MCF5441x
1218 /*
1219 * MCF5441x RM declares in more points that sdhc clock speed must
1220 * never exceed 25 Mhz. From this, the HS bit needs to be disabled
1221 * from host capabilities.
1222 */
1223 caps &= ~ESDHC_HOSTCAPBLT_HSS;
1224#endif
1225
1226#ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135
1227 caps = caps & ~(ESDHC_HOSTCAPBLT_SRS |
1228 ESDHC_HOSTCAPBLT_VS18 | ESDHC_HOSTCAPBLT_VS30);
1229#endif
1230
Yangbo Lufa33d202019-06-21 11:42:27 +08001231 if (caps & ESDHC_HOSTCAPBLT_VS18)
1232 voltage_caps |= MMC_VDD_165_195;
1233 if (caps & ESDHC_HOSTCAPBLT_VS30)
1234 voltage_caps |= MMC_VDD_29_30 | MMC_VDD_30_31;
1235 if (caps & ESDHC_HOSTCAPBLT_VS33)
1236 voltage_caps |= MMC_VDD_32_33 | MMC_VDD_33_34;
1237
1238 cfg->name = "FSL_SDHC";
1239#if !CONFIG_IS_ENABLED(DM_MMC)
1240 cfg->ops = &esdhc_ops;
1241#endif
1242#ifdef CONFIG_SYS_SD_VOLTAGE
1243 cfg->voltages = CONFIG_SYS_SD_VOLTAGE;
1244#else
1245 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
1246#endif
1247 if ((cfg->voltages & voltage_caps) == 0) {
1248 printf("voltage not supported by controller\n");
1249 return -1;
1250 }
1251
1252 if (priv->bus_width == 8)
1253 cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT;
1254 else if (priv->bus_width == 4)
1255 cfg->host_caps = MMC_MODE_4BIT;
1256
1257 cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT;
1258#ifdef CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE
1259 cfg->host_caps |= MMC_MODE_DDR_52MHz;
1260#endif
1261
1262 if (priv->bus_width > 0) {
1263 if (priv->bus_width < 8)
1264 cfg->host_caps &= ~MMC_MODE_8BIT;
1265 if (priv->bus_width < 4)
1266 cfg->host_caps &= ~MMC_MODE_4BIT;
1267 }
1268
1269 if (caps & ESDHC_HOSTCAPBLT_HSS)
1270 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
1271
1272#ifdef CONFIG_ESDHC_DETECT_8_BIT_QUIRK
1273 if (CONFIG_ESDHC_DETECT_8_BIT_QUIRK)
1274 cfg->host_caps &= ~MMC_MODE_8BIT;
1275#endif
1276
1277 cfg->host_caps |= priv->caps;
1278
1279 cfg->f_min = 400000;
1280 cfg->f_max = min(priv->sdhc_clk, (u32)200000000);
1281
1282 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
1283
Haibo Chenc7f44182020-09-30 15:52:23 +08001284 esdhc_write32(&regs->dllctrl, 0);
Yangbo Lufa33d202019-06-21 11:42:27 +08001285 if (priv->flags & ESDHC_FLAG_USDHC) {
1286 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
Haibo Chenc7f44182020-09-30 15:52:23 +08001287 u32 val = esdhc_read32(&regs->tuning_ctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +08001288
1289 val |= ESDHC_STD_TUNING_EN;
1290 val &= ~ESDHC_TUNING_START_TAP_MASK;
1291 val |= priv->tuning_start_tap;
1292 val &= ~ESDHC_TUNING_STEP_MASK;
1293 val |= (priv->tuning_step) << ESDHC_TUNING_STEP_SHIFT;
Haibo Chenba616762020-06-22 19:38:04 +08001294
1295 /* Disable the CMD CRC check for tuning, if not, need to
1296 * add some delay after every tuning command, because
1297 * hardware standard tuning logic will directly go to next
1298 * step once it detect the CMD CRC error, will not wait for
1299 * the card side to finally send out the tuning data, trigger
1300 * the buffer read ready interrupt immediately. If usdhc send
1301 * the next tuning command some eMMC card will stuck, can't
1302 * response, block the tuning procedure or the first command
1303 * after the whole tuning procedure always can't get any response.
1304 */
1305 val |= ESDHC_TUNING_CMD_CRC_CHECK_DISABLE;
Haibo Chenc7f44182020-09-30 15:52:23 +08001306 esdhc_write32(&regs->tuning_ctrl, val);
Yangbo Lufa33d202019-06-21 11:42:27 +08001307 }
1308 }
1309
1310 return 0;
1311}
1312
1313#if !CONFIG_IS_ENABLED(DM_MMC)
1314static int fsl_esdhc_cfg_to_priv(struct fsl_esdhc_cfg *cfg,
1315 struct fsl_esdhc_priv *priv)
1316{
1317 if (!cfg || !priv)
1318 return -EINVAL;
1319
1320 priv->esdhc_regs = (struct fsl_esdhc *)(unsigned long)(cfg->esdhc_base);
1321 priv->bus_width = cfg->max_bus_width;
1322 priv->sdhc_clk = cfg->sdhc_clk;
1323 priv->wp_enable = cfg->wp_enable;
1324 priv->vs18_enable = cfg->vs18_enable;
1325
1326 return 0;
1327};
1328
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001329int fsl_esdhc_initialize(struct bd_info *bis, struct fsl_esdhc_cfg *cfg)
Yangbo Lufa33d202019-06-21 11:42:27 +08001330{
1331 struct fsl_esdhc_plat *plat;
1332 struct fsl_esdhc_priv *priv;
1333 struct mmc *mmc;
1334 int ret;
1335
1336 if (!cfg)
1337 return -EINVAL;
1338
1339 priv = calloc(sizeof(struct fsl_esdhc_priv), 1);
1340 if (!priv)
1341 return -ENOMEM;
1342 plat = calloc(sizeof(struct fsl_esdhc_plat), 1);
1343 if (!plat) {
1344 free(priv);
1345 return -ENOMEM;
1346 }
1347
1348 ret = fsl_esdhc_cfg_to_priv(cfg, priv);
1349 if (ret) {
1350 debug("%s xlate failure\n", __func__);
1351 free(plat);
1352 free(priv);
1353 return ret;
1354 }
1355
1356 ret = fsl_esdhc_init(priv, plat);
1357 if (ret) {
1358 debug("%s init failure\n", __func__);
1359 free(plat);
1360 free(priv);
1361 return ret;
1362 }
1363
1364 mmc = mmc_create(&plat->cfg, priv);
1365 if (!mmc)
1366 return -EIO;
1367
1368 priv->mmc = mmc;
1369
1370 return 0;
1371}
1372
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001373int fsl_esdhc_mmc_init(struct bd_info *bis)
Yangbo Lufa33d202019-06-21 11:42:27 +08001374{
1375 struct fsl_esdhc_cfg *cfg;
1376
1377 cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1);
1378 cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR;
1379 cfg->sdhc_clk = gd->arch.sdhc_clk;
1380 return fsl_esdhc_initialize(bis, cfg);
1381}
1382#endif
1383
Yangbo Lufa33d202019-06-21 11:42:27 +08001384#ifdef CONFIG_OF_LIBFDT
1385__weak int esdhc_status_fixup(void *blob, const char *compat)
1386{
1387#ifdef CONFIG_FSL_ESDHC_PIN_MUX
1388 if (!hwconfig("esdhc")) {
1389 do_fixup_by_compat(blob, compat, "status", "disabled",
1390 sizeof("disabled"), 1);
1391 return 1;
1392 }
1393#endif
1394 return 0;
1395}
1396
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001397void fdt_fixup_esdhc(void *blob, struct bd_info *bd)
Yangbo Lufa33d202019-06-21 11:42:27 +08001398{
1399 const char *compat = "fsl,esdhc";
1400
1401 if (esdhc_status_fixup(blob, compat))
1402 return;
1403
Yangbo Lufa33d202019-06-21 11:42:27 +08001404 do_fixup_by_compat_u32(blob, compat, "clock-frequency",
1405 gd->arch.sdhc_clk, 1);
Yangbo Lufa33d202019-06-21 11:42:27 +08001406}
1407#endif
1408
1409#if CONFIG_IS_ENABLED(DM_MMC)
Yangbo Lufa33d202019-06-21 11:42:27 +08001410#include <asm/arch/clock.h>
Yangbo Lufa33d202019-06-21 11:42:27 +08001411__weak void init_clk_usdhc(u32 index)
1412{
1413}
1414
Simon Glassd1998a92020-12-03 16:55:21 -07001415static int fsl_esdhc_of_to_plat(struct udevice *dev)
Yangbo Lufa33d202019-06-21 11:42:27 +08001416{
Yangbo Lufa33d202019-06-21 11:42:27 +08001417 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001418#if CONFIG_IS_ENABLED(DM_REGULATOR)
1419 struct udevice *vqmmc_dev;
Walter Lozano23721772020-07-29 12:31:17 -03001420 int ret;
Yangbo Lufa33d202019-06-21 11:42:27 +08001421#endif
Walter Lozano23721772020-07-29 12:31:17 -03001422 const void *fdt = gd->fdt_blob;
1423 int node = dev_of_offset(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001424 fdt_addr_t addr;
1425 unsigned int val;
Yangbo Lufa33d202019-06-21 11:42:27 +08001426
Simon Glassdcfc42b2021-08-07 07:24:06 -06001427 if (!CONFIG_IS_ENABLED(OF_REAL))
1428 return 0;
1429
Yangbo Lufa33d202019-06-21 11:42:27 +08001430 addr = dev_read_addr(dev);
1431 if (addr == FDT_ADDR_T_NONE)
1432 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +08001433 priv->esdhc_regs = (struct fsl_esdhc *)addr;
Yangbo Lufa33d202019-06-21 11:42:27 +08001434 priv->dev = dev;
1435 priv->mode = -1;
Yangbo Lufa33d202019-06-21 11:42:27 +08001436
1437 val = dev_read_u32_default(dev, "bus-width", -1);
1438 if (val == 8)
1439 priv->bus_width = 8;
1440 else if (val == 4)
1441 priv->bus_width = 4;
1442 else
1443 priv->bus_width = 1;
1444
1445 val = fdtdec_get_int(fdt, node, "fsl,tuning-step", 1);
1446 priv->tuning_step = val;
1447 val = fdtdec_get_int(fdt, node, "fsl,tuning-start-tap",
1448 ESDHC_TUNING_START_TAP_DEFAULT);
1449 priv->tuning_start_tap = val;
1450 val = fdtdec_get_int(fdt, node, "fsl,strobe-dll-delay-target",
1451 ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_DEFAULT);
1452 priv->strobe_dll_delay_target = val;
Haibo Chen8974ff12021-03-22 18:55:38 +08001453 val = fdtdec_get_int(fdt, node, "fsl,signal-voltage-switch-extra-delay-ms", 0);
1454 priv->signal_voltage_switch_extra_delay_ms = val;
Yangbo Lufa33d202019-06-21 11:42:27 +08001455
Fabio Estevam29230f32020-01-06 20:11:27 -03001456 if (dev_read_bool(dev, "broken-cd"))
1457 priv->broken_cd = 1;
1458
Yangbo Lufa33d202019-06-21 11:42:27 +08001459 if (dev_read_bool(dev, "non-removable")) {
1460 priv->non_removable = 1;
1461 } else {
1462 priv->non_removable = 0;
Simon Glassbcee8d62019-12-06 21:41:35 -07001463#if CONFIG_IS_ENABLED(DM_GPIO)
Yangbo Lufa33d202019-06-21 11:42:27 +08001464 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
1465 GPIOD_IS_IN);
1466#endif
1467 }
1468
1469 if (dev_read_prop(dev, "fsl,wp-controller", NULL)) {
1470 priv->wp_enable = 1;
1471 } else {
1472 priv->wp_enable = 0;
Simon Glassbcee8d62019-12-06 21:41:35 -07001473#if CONFIG_IS_ENABLED(DM_GPIO)
Yangbo Lufa33d202019-06-21 11:42:27 +08001474 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio,
1475 GPIOD_IS_IN);
1476#endif
1477 }
1478
1479 priv->vs18_enable = 0;
1480
1481#if CONFIG_IS_ENABLED(DM_REGULATOR)
1482 /*
1483 * If emmc I/O has a fixed voltage at 1.8V, this must be provided,
1484 * otherwise, emmc will work abnormally.
1485 */
1486 ret = device_get_supply_regulator(dev, "vqmmc-supply", &vqmmc_dev);
1487 if (ret) {
1488 dev_dbg(dev, "no vqmmc-supply\n");
1489 } else {
Marek Vasut406df852020-05-22 18:19:08 +02001490 priv->vqmmc_dev = vqmmc_dev;
Yangbo Lufa33d202019-06-21 11:42:27 +08001491 ret = regulator_set_enable(vqmmc_dev, true);
1492 if (ret) {
1493 dev_err(dev, "fail to enable vqmmc-supply\n");
1494 return ret;
1495 }
1496
1497 if (regulator_get_value(vqmmc_dev) == 1800000)
1498 priv->vs18_enable = 1;
1499 }
1500#endif
Simon Glassdcfc42b2021-08-07 07:24:06 -06001501
Walter Lozano23721772020-07-29 12:31:17 -03001502 return 0;
1503}
1504
1505static int fsl_esdhc_probe(struct udevice *dev)
1506{
1507 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -07001508 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Walter Lozano23721772020-07-29 12:31:17 -03001509 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1510 struct esdhc_soc_data *data =
1511 (struct esdhc_soc_data *)dev_get_driver_data(dev);
1512 struct mmc *mmc;
1513#if !CONFIG_IS_ENABLED(BLK)
1514 struct blk_desc *bdesc;
1515#endif
1516 int ret;
1517
1518#if CONFIG_IS_ENABLED(OF_PLATDATA)
1519 struct dtd_fsl_esdhc *dtplat = &plat->dtplat;
1520 unsigned int val;
1521
1522 priv->esdhc_regs = map_sysmem(dtplat->reg[0], dtplat->reg[1]);
1523 val = plat->dtplat.bus_width;
1524 if (val == 8)
1525 priv->bus_width = 8;
1526 else if (val == 4)
1527 priv->bus_width = 4;
1528 else
1529 priv->bus_width = 1;
Walter Lozano7142ff92020-07-29 12:31:19 -03001530
1531 if (dtplat->non_removable)
1532 priv->non_removable = 1;
1533 else
1534 priv->non_removable = 0;
1535
1536 if (CONFIG_IS_ENABLED(DM_GPIO) && !priv->non_removable) {
1537 struct udevice *gpiodev;
Walter Lozano7142ff92020-07-29 12:31:19 -03001538
Simon Glasscc469b72021-03-15 17:25:28 +13001539 ret = device_get_by_ofplat_idx(dtplat->cd_gpios->idx, &gpiodev);
Walter Lozano7142ff92020-07-29 12:31:19 -03001540 if (ret)
1541 return ret;
1542
1543 ret = gpio_dev_request_index(gpiodev, gpiodev->name, "cd-gpios",
1544 dtplat->cd_gpios->arg[0], GPIOD_IS_IN,
1545 dtplat->cd_gpios->arg[1], &priv->cd_gpio);
1546
1547 if (ret)
1548 return ret;
1549 }
Walter Lozano23721772020-07-29 12:31:17 -03001550#endif
1551
1552 if (data)
1553 priv->flags = data->flags;
Yangbo Lufa33d202019-06-21 11:42:27 +08001554
Yangbo Lufa33d202019-06-21 11:42:27 +08001555 /*
1556 * TODO:
1557 * Because lack of clk driver, if SDHC clk is not enabled,
1558 * need to enable it first before this driver is invoked.
1559 *
1560 * we use MXC_ESDHC_CLK to get clk freq.
1561 * If one would like to make this function work,
1562 * the aliases should be provided in dts as this:
1563 *
1564 * aliases {
1565 * mmc0 = &usdhc1;
1566 * mmc1 = &usdhc2;
1567 * mmc2 = &usdhc3;
1568 * mmc3 = &usdhc4;
1569 * };
1570 * Then if your board only supports mmc2 and mmc3, but we can
1571 * correctly get the seq as 2 and 3, then let mxc_get_clock
1572 * work as expected.
1573 */
1574
Simon Glass8b85dfc2020-12-16 21:20:07 -07001575 init_clk_usdhc(dev_seq(dev));
Yangbo Lufa33d202019-06-21 11:42:27 +08001576
Giulio Benettia820bed2020-01-10 15:51:45 +01001577#if CONFIG_IS_ENABLED(CLK)
1578 /* Assigned clock already set clock */
1579 ret = clk_get_by_name(dev, "per", &priv->per_clk);
1580 if (ret) {
1581 printf("Failed to get per_clk\n");
1582 return ret;
Yangbo Lufa33d202019-06-21 11:42:27 +08001583 }
Giulio Benettia820bed2020-01-10 15:51:45 +01001584 ret = clk_enable(&priv->per_clk);
1585 if (ret) {
1586 printf("Failed to enable per_clk\n");
1587 return ret;
1588 }
1589
1590 priv->sdhc_clk = clk_get_rate(&priv->per_clk);
1591#else
Simon Glass8b85dfc2020-12-16 21:20:07 -07001592 priv->sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK + dev_seq(dev));
Giulio Benettia820bed2020-01-10 15:51:45 +01001593 if (priv->sdhc_clk <= 0) {
1594 dev_err(dev, "Unable to get clk for %s\n", dev->name);
1595 return -EINVAL;
1596 }
1597#endif
Yangbo Lufa33d202019-06-21 11:42:27 +08001598
1599 ret = fsl_esdhc_init(priv, plat);
1600 if (ret) {
1601 dev_err(dev, "fsl_esdhc_init failure\n");
1602 return ret;
1603 }
1604
Simon Glassdcfc42b2021-08-07 07:24:06 -06001605 if (CONFIG_IS_ENABLED(OF_REAL)) {
1606 ret = mmc_of_parse(dev, &plat->cfg);
1607 if (ret)
1608 return ret;
1609 }
Peng Fanb0155ac2019-07-10 09:35:24 +00001610
Yangbo Lufa33d202019-06-21 11:42:27 +08001611 mmc = &plat->mmc;
1612 mmc->cfg = &plat->cfg;
1613 mmc->dev = dev;
1614#if !CONFIG_IS_ENABLED(BLK)
1615 mmc->priv = priv;
1616
1617 /* Setup dsr related values */
1618 mmc->dsr_imp = 0;
1619 mmc->dsr = ESDHC_DRIVER_STAGE_VALUE;
1620 /* Setup the universal parts of the block interface just once */
1621 bdesc = mmc_get_blk_desc(mmc);
1622 bdesc->if_type = IF_TYPE_MMC;
1623 bdesc->removable = 1;
1624 bdesc->devnum = mmc_get_next_devnum();
1625 bdesc->block_read = mmc_bread;
1626 bdesc->block_write = mmc_bwrite;
1627 bdesc->block_erase = mmc_berase;
1628
1629 /* setup initial part type */
1630 bdesc->part_type = mmc->cfg->part_type;
1631 mmc_list_add(mmc);
1632#endif
1633
1634 upriv->mmc = mmc;
1635
1636 return esdhc_init_common(priv, mmc);
1637}
1638
1639#if CONFIG_IS_ENABLED(DM_MMC)
1640static int fsl_esdhc_get_cd(struct udevice *dev)
1641{
1642 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1643
1644 return esdhc_getcd_common(priv);
1645}
1646
1647static int fsl_esdhc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
1648 struct mmc_data *data)
1649{
Simon Glassc69cda22020-12-03 16:55:20 -07001650 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001651 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1652
1653 return esdhc_send_cmd_common(priv, &plat->mmc, cmd, data);
1654}
1655
1656static int fsl_esdhc_set_ios(struct udevice *dev)
1657{
Simon Glassc69cda22020-12-03 16:55:20 -07001658 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001659 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1660
1661 return esdhc_set_ios_common(priv, &plat->mmc);
1662}
1663
Peng Fane9c22552019-07-10 09:35:26 +00001664#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1665static int fsl_esdhc_set_enhanced_strobe(struct udevice *dev)
1666{
1667 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1668 struct fsl_esdhc *regs = priv->esdhc_regs;
1669 u32 m;
1670
Haibo Chenc7f44182020-09-30 15:52:23 +08001671 m = esdhc_read32(&regs->mixctrl);
Peng Fane9c22552019-07-10 09:35:26 +00001672 m |= MIX_CTRL_HS400_ES;
Haibo Chenc7f44182020-09-30 15:52:23 +08001673 esdhc_write32(&regs->mixctrl, m);
Peng Fane9c22552019-07-10 09:35:26 +00001674
1675 return 0;
1676}
1677#endif
1678
Haibo Chenb5874b52020-11-05 14:57:13 +08001679static int fsl_esdhc_wait_dat0(struct udevice *dev, int state,
1680 int timeout_us)
1681{
1682 int ret;
1683 u32 tmp;
1684 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1685 struct fsl_esdhc *regs = priv->esdhc_regs;
1686
1687 ret = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp,
1688 !!(tmp & PRSSTAT_DAT0) == !!state,
1689 timeout_us);
1690 return ret;
1691}
1692
Yangbo Lufa33d202019-06-21 11:42:27 +08001693static const struct dm_mmc_ops fsl_esdhc_ops = {
1694 .get_cd = fsl_esdhc_get_cd,
1695 .send_cmd = fsl_esdhc_send_cmd,
1696 .set_ios = fsl_esdhc_set_ios,
1697#ifdef MMC_SUPPORTS_TUNING
1698 .execute_tuning = fsl_esdhc_execute_tuning,
1699#endif
Peng Fane9c22552019-07-10 09:35:26 +00001700#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1701 .set_enhanced_strobe = fsl_esdhc_set_enhanced_strobe,
1702#endif
Haibo Chenb5874b52020-11-05 14:57:13 +08001703 .wait_dat0 = fsl_esdhc_wait_dat0,
Yangbo Lufa33d202019-06-21 11:42:27 +08001704};
1705#endif
1706
1707static struct esdhc_soc_data usdhc_imx7d_data = {
1708 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING
1709 | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200
1710 | ESDHC_FLAG_HS400,
Yangbo Lufa33d202019-06-21 11:42:27 +08001711};
1712
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001713static struct esdhc_soc_data usdhc_imx7ulp_data = {
1714 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +03001715 | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200
1716 | ESDHC_FLAG_HS400,
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001717};
1718
Peng Fan609ba122019-07-10 09:35:28 +00001719static struct esdhc_soc_data usdhc_imx8qm_data = {
1720 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING |
1721 ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 |
1722 ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES,
1723};
1724
Yangbo Lufa33d202019-06-21 11:42:27 +08001725static const struct udevice_id fsl_esdhc_ids[] = {
Fabio Estevamc3e6f992021-02-15 08:58:15 -03001726 { .compatible = "fsl,imx51-esdhc", },
Yangbo Lufa33d202019-06-21 11:42:27 +08001727 { .compatible = "fsl,imx53-esdhc", },
1728 { .compatible = "fsl,imx6ul-usdhc", },
1729 { .compatible = "fsl,imx6sx-usdhc", },
1730 { .compatible = "fsl,imx6sl-usdhc", },
1731 { .compatible = "fsl,imx6q-usdhc", },
1732 { .compatible = "fsl,imx7d-usdhc", .data = (ulong)&usdhc_imx7d_data,},
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001733 { .compatible = "fsl,imx7ulp-usdhc", .data = (ulong)&usdhc_imx7ulp_data,},
Peng Fan609ba122019-07-10 09:35:28 +00001734 { .compatible = "fsl,imx8qm-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Peng Fanf65d0842019-11-04 17:31:17 +08001735 { .compatible = "fsl,imx8mm-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
1736 { .compatible = "fsl,imx8mn-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
1737 { .compatible = "fsl,imx8mq-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Giulio Benetti6a63a872020-01-10 15:51:46 +01001738 { .compatible = "fsl,imxrt-usdhc", },
Yangbo Lufa33d202019-06-21 11:42:27 +08001739 { .compatible = "fsl,esdhc", },
1740 { /* sentinel */ }
1741};
1742
1743#if CONFIG_IS_ENABLED(BLK)
1744static int fsl_esdhc_bind(struct udevice *dev)
1745{
Simon Glassc69cda22020-12-03 16:55:20 -07001746 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001747
1748 return mmc_bind(dev, &plat->mmc, &plat->cfg);
1749}
1750#endif
1751
1752U_BOOT_DRIVER(fsl_esdhc) = {
Walter Lozano45154f02020-07-29 12:31:16 -03001753 .name = "fsl_esdhc",
Yangbo Lufa33d202019-06-21 11:42:27 +08001754 .id = UCLASS_MMC,
1755 .of_match = fsl_esdhc_ids,
Simon Glassd1998a92020-12-03 16:55:21 -07001756 .of_to_plat = fsl_esdhc_of_to_plat,
Yangbo Lufa33d202019-06-21 11:42:27 +08001757 .ops = &fsl_esdhc_ops,
1758#if CONFIG_IS_ENABLED(BLK)
1759 .bind = fsl_esdhc_bind,
1760#endif
1761 .probe = fsl_esdhc_probe,
Simon Glasscaa4daa2020-12-03 16:55:18 -07001762 .plat_auto = sizeof(struct fsl_esdhc_plat),
Simon Glass41575d82020-12-03 16:55:17 -07001763 .priv_auto = sizeof(struct fsl_esdhc_priv),
Yangbo Lufa33d202019-06-21 11:42:27 +08001764};
Walter Lozano23721772020-07-29 12:31:17 -03001765
Simon Glassbdf8fd72020-12-28 20:34:57 -07001766DM_DRIVER_ALIAS(fsl_esdhc, fsl_imx6q_usdhc)
Yangbo Lufa33d202019-06-21 11:42:27 +08001767#endif