blob: 7c39c86c5e9c5d6bf6b1644190be3a40669e8eb2 [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>
Simon Glass1e94b462023-09-14 18:21:46 -060029#include <linux/printk.h>
Yangbo Lufa33d202019-06-21 11:42:27 +080030#include <power/regulator.h>
31#include <malloc.h>
32#include <fsl_esdhc_imx.h>
33#include <fdt_support.h>
34#include <asm/io.h>
35#include <dm.h>
36#include <asm-generic/gpio.h>
37#include <dm/pinctrl.h>
Walter Lozano23721772020-07-29 12:31:17 -030038#include <dt-structs.h>
39#include <mapmem.h>
40#include <dm/ofnode.h>
Haibo Chenf9c3a812020-09-01 15:34:06 +080041#include <linux/iopoll.h>
Sean Anderson01672672021-11-23 15:03:43 -050042#include <linux/dma-mapping.h>
Yangbo Lufa33d202019-06-21 11:42:27 +080043
Haibo Chen0ba116a2021-02-19 11:25:32 -080044#ifndef ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE
45#ifdef CONFIG_FSL_USDHC
46#define ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE 1
47#endif
48#endif
49
Yangbo Lufa33d202019-06-21 11:42:27 +080050DECLARE_GLOBAL_DATA_PTR;
51
52#define SDHCI_IRQ_EN_BITS (IRQSTATEN_CC | IRQSTATEN_TC | \
53 IRQSTATEN_CINT | \
54 IRQSTATEN_CTOE | IRQSTATEN_CCE | IRQSTATEN_CEBE | \
55 IRQSTATEN_CIE | IRQSTATEN_DTOE | IRQSTATEN_DCE | \
56 IRQSTATEN_DEBE | IRQSTATEN_BRR | IRQSTATEN_BWR | \
57 IRQSTATEN_DINT)
58#define MAX_TUNING_LOOP 40
Yangbo Lufa33d202019-06-21 11:42:27 +080059
60struct fsl_esdhc {
61 uint dsaddr; /* SDMA system address register */
62 uint blkattr; /* Block attributes register */
63 uint cmdarg; /* Command argument register */
64 uint xfertyp; /* Transfer type register */
65 uint cmdrsp0; /* Command response 0 register */
66 uint cmdrsp1; /* Command response 1 register */
67 uint cmdrsp2; /* Command response 2 register */
68 uint cmdrsp3; /* Command response 3 register */
69 uint datport; /* Buffer data port register */
70 uint prsstat; /* Present state register */
71 uint proctl; /* Protocol control register */
72 uint sysctl; /* System Control Register */
73 uint irqstat; /* Interrupt status register */
74 uint irqstaten; /* Interrupt status enable register */
75 uint irqsigen; /* Interrupt signal enable register */
76 uint autoc12err; /* Auto CMD error status register */
77 uint hostcapblt; /* Host controller capabilities register */
78 uint wml; /* Watermark level register */
79 uint mixctrl; /* For USDHC */
80 char reserved1[4]; /* reserved */
81 uint fevt; /* Force event register */
82 uint admaes; /* ADMA error status register */
83 uint adsaddr; /* ADMA system address register */
84 char reserved2[4];
85 uint dllctrl;
86 uint dllstat;
87 uint clktunectrlstatus;
88 char reserved3[4];
89 uint strobe_dllctrl;
90 uint strobe_dllstat;
91 char reserved4[72];
92 uint vendorspec;
93 uint mmcboot;
94 uint vendorspec2;
Giulio Benetti6a63a872020-01-10 15:51:46 +010095 uint tuning_ctrl; /* on i.MX6/7/8/RT */
Yangbo Lufa33d202019-06-21 11:42:27 +080096 char reserved5[44];
97 uint hostver; /* Host controller version register */
98 char reserved6[4]; /* reserved */
99 uint dmaerraddr; /* DMA error address register */
100 char reserved7[4]; /* reserved */
101 uint dmaerrattr; /* DMA error attribute register */
102 char reserved8[4]; /* reserved */
103 uint hostcapblt2; /* Host controller capabilities register 2 */
104 char reserved9[8]; /* reserved */
105 uint tcr; /* Tuning control register */
106 char reserved10[28]; /* reserved */
107 uint sddirctl; /* SD direction control register */
108 char reserved11[712];/* reserved */
109 uint scr; /* eSDHC control register */
110};
111
112struct fsl_esdhc_plat {
Walter Lozano23721772020-07-29 12:31:17 -0300113#if CONFIG_IS_ENABLED(OF_PLATDATA)
114 /* Put this first since driver model will copy the data here */
115 struct dtd_fsl_esdhc dtplat;
116#endif
117
Yangbo Lufa33d202019-06-21 11:42:27 +0800118 struct mmc_config cfg;
119 struct mmc mmc;
120};
121
122struct esdhc_soc_data {
123 u32 flags;
Yangbo Lufa33d202019-06-21 11:42:27 +0800124};
125
126/**
127 * struct fsl_esdhc_priv
128 *
129 * @esdhc_regs: registers of the sdhc controller
130 * @sdhc_clk: Current clk of the sdhc controller
Yangbo Lufa33d202019-06-21 11:42:27 +0800131 * @cfg: mmc config
132 * @mmc: mmc
133 * Following is used when Driver Model is enabled for MMC
134 * @dev: pointer for the device
Fabio Estevam29230f32020-01-06 20:11:27 -0300135 * @broken_cd: 0: use GPIO for card detect; 1: Do not use GPIO for card detect
Yangbo Lufa33d202019-06-21 11:42:27 +0800136 * @wp_enable: 1: enable checking wp; 0: no check
137 * @vs18_enable: 1: use 1.8V voltage; 0: use 3.3V
138 * @flags: ESDHC_FLAG_xx in include/fsl_esdhc_imx.h
139 * @caps: controller capabilities
140 * @tuning_step: tuning step setting in tuning_ctrl register
141 * @start_tuning_tap: the start point for tuning in tuning_ctrl register
142 * @strobe_dll_delay_target: settings in strobe_dllctrl
143 * @signal_voltage: indicating the current voltage
Haibo Chen8974ff12021-03-22 18:55:38 +0800144 * @signal_voltage_switch_extra_delay_ms: extra delay for IO voltage switch
Yangbo Lufa33d202019-06-21 11:42:27 +0800145 * @cd_gpio: gpio for card detection
146 * @wp_gpio: gpio for write protection
147 */
148struct fsl_esdhc_priv {
149 struct fsl_esdhc *esdhc_regs;
150 unsigned int sdhc_clk;
151 struct clk per_clk;
152 unsigned int clock;
153 unsigned int mode;
Sean Anderson297d2de2022-01-12 08:18:52 +0900154#if !CONFIG_IS_ENABLED(DM_MMC)
Yangbo Lufa33d202019-06-21 11:42:27 +0800155 struct mmc *mmc;
156#endif
157 struct udevice *dev;
Fabio Estevam29230f32020-01-06 20:11:27 -0300158 int broken_cd;
Yangbo Lufa33d202019-06-21 11:42:27 +0800159 int wp_enable;
160 int vs18_enable;
161 u32 flags;
162 u32 caps;
163 u32 tuning_step;
164 u32 tuning_start_tap;
165 u32 strobe_dll_delay_target;
166 u32 signal_voltage;
Haibo Chen8974ff12021-03-22 18:55:38 +0800167 u32 signal_voltage_switch_extra_delay_ms;
Yangbo Lufa33d202019-06-21 11:42:27 +0800168 struct udevice *vqmmc_dev;
169 struct udevice *vmmc_dev;
Simon Glassbcee8d62019-12-06 21:41:35 -0700170#if CONFIG_IS_ENABLED(DM_GPIO)
Yangbo Lufa33d202019-06-21 11:42:27 +0800171 struct gpio_desc cd_gpio;
172 struct gpio_desc wp_gpio;
173#endif
Sean Anderson01672672021-11-23 15:03:43 -0500174 dma_addr_t dma_addr;
Yangbo Lufa33d202019-06-21 11:42:27 +0800175};
176
177/* Return the XFERTYP flags for a given command and data packet */
178static uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data)
179{
180 uint xfertyp = 0;
181
182 if (data) {
183 xfertyp |= XFERTYP_DPSEL;
Sean Anderson4f01db82021-11-23 15:03:45 -0500184 if (!IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO) &&
185 cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK &&
186 cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK_HS200)
187 xfertyp |= XFERTYP_DMAEN;
Yangbo Lufa33d202019-06-21 11:42:27 +0800188 if (data->blocks > 1) {
189 xfertyp |= XFERTYP_MSBSEL;
190 xfertyp |= XFERTYP_BCEN;
Sean Anderson4f01db82021-11-23 15:03:45 -0500191 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC111))
192 xfertyp |= XFERTYP_AC12EN;
Yangbo Lufa33d202019-06-21 11:42:27 +0800193 }
194
195 if (data->flags & MMC_DATA_READ)
196 xfertyp |= XFERTYP_DTDSEL;
197 }
198
199 if (cmd->resp_type & MMC_RSP_CRC)
200 xfertyp |= XFERTYP_CCCEN;
201 if (cmd->resp_type & MMC_RSP_OPCODE)
202 xfertyp |= XFERTYP_CICEN;
203 if (cmd->resp_type & MMC_RSP_136)
204 xfertyp |= XFERTYP_RSPTYP_136;
205 else if (cmd->resp_type & MMC_RSP_BUSY)
206 xfertyp |= XFERTYP_RSPTYP_48_BUSY;
207 else if (cmd->resp_type & MMC_RSP_PRESENT)
208 xfertyp |= XFERTYP_RSPTYP_48;
209
210 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
211 xfertyp |= XFERTYP_CMDTYP_ABORT;
212
213 return XFERTYP_CMD(cmd->cmdidx) | xfertyp;
214}
215
Yangbo Lufa33d202019-06-21 11:42:27 +0800216/*
217 * PIO Read/Write Mode reduce the performace as DMA is not used in this mode.
218 */
219static void esdhc_pio_read_write(struct fsl_esdhc_priv *priv,
220 struct mmc_data *data)
221{
222 struct fsl_esdhc *regs = priv->esdhc_regs;
223 uint blocks;
224 char *buffer;
225 uint databuf;
226 uint size;
227 uint irqstat;
228 ulong start;
229
230 if (data->flags & MMC_DATA_READ) {
231 blocks = data->blocks;
232 buffer = data->dest;
233 while (blocks) {
234 start = get_timer(0);
235 size = data->blocksize;
236 irqstat = esdhc_read32(&regs->irqstat);
237 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BREN)) {
238 if (get_timer(start) > PIO_TIMEOUT) {
239 printf("\nData Read Failed in PIO Mode.");
240 return;
241 }
242 }
243 while (size && (!(irqstat & IRQSTAT_TC))) {
244 udelay(100); /* Wait before last byte transfer complete */
245 irqstat = esdhc_read32(&regs->irqstat);
246 databuf = in_le32(&regs->datport);
247 *((uint *)buffer) = databuf;
248 buffer += 4;
249 size -= 4;
250 }
251 blocks--;
252 }
253 } else {
254 blocks = data->blocks;
255 buffer = (char *)data->src;
256 while (blocks) {
257 start = get_timer(0);
258 size = data->blocksize;
259 irqstat = esdhc_read32(&regs->irqstat);
260 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_BWEN)) {
261 if (get_timer(start) > PIO_TIMEOUT) {
262 printf("\nData Write Failed in PIO Mode.");
263 return;
264 }
265 }
266 while (size && (!(irqstat & IRQSTAT_TC))) {
267 udelay(100); /* Wait before last byte transfer complete */
268 databuf = *((uint *)buffer);
269 buffer += 4;
270 size -= 4;
271 irqstat = esdhc_read32(&regs->irqstat);
272 out_le32(&regs->datport, databuf);
273 }
274 blocks--;
275 }
276 }
277}
Yangbo Lufa33d202019-06-21 11:42:27 +0800278
Sean Anderson41c6a222021-11-23 15:03:44 -0500279static void esdhc_setup_watermark_level(struct fsl_esdhc_priv *priv,
280 struct mmc_data *data)
Yangbo Lufa33d202019-06-21 11:42:27 +0800281{
Yangbo Lufa33d202019-06-21 11:42:27 +0800282 struct fsl_esdhc *regs = priv->esdhc_regs;
Sean Anderson41c6a222021-11-23 15:03:44 -0500283 uint wml_value = data->blocksize / 4;
Yangbo Lufa33d202019-06-21 11:42:27 +0800284
285 if (data->flags & MMC_DATA_READ) {
286 if (wml_value > WML_RD_WML_MAX)
287 wml_value = WML_RD_WML_MAX_VAL;
288
289 esdhc_clrsetbits32(&regs->wml, WML_RD_WML_MASK, wml_value);
Yangbo Lufa33d202019-06-21 11:42:27 +0800290 } else {
Yangbo Lufa33d202019-06-21 11:42:27 +0800291 if (wml_value > WML_WR_WML_MAX)
292 wml_value = WML_WR_WML_MAX_VAL;
Sean Anderson41c6a222021-11-23 15:03:44 -0500293
294 esdhc_clrsetbits32(&regs->wml, WML_WR_WML_MASK,
295 wml_value << 16);
296 }
297}
Sean Anderson41c6a222021-11-23 15:03:44 -0500298
299static void esdhc_setup_dma(struct fsl_esdhc_priv *priv, struct mmc_data *data)
300{
301 uint trans_bytes = data->blocksize * data->blocks;
302 struct fsl_esdhc *regs = priv->esdhc_regs;
303 void *buf;
304
305 if (data->flags & MMC_DATA_WRITE)
306 buf = (void *)data->src;
307 else
308 buf = data->dest;
309
310 priv->dma_addr = dma_map_single(buf, trans_bytes,
311 mmc_get_dma_dir(data));
312 if (upper_32_bits(priv->dma_addr))
313 printf("Cannot use 64 bit addresses with SDMA\n");
314 esdhc_write32(&regs->dsaddr, lower_32_bits(priv->dma_addr));
315 esdhc_write32(&regs->blkattr, data->blocks << 16 | data->blocksize);
316}
317
318static int esdhc_setup_data(struct fsl_esdhc_priv *priv, struct mmc *mmc,
319 struct mmc_data *data)
320{
321 int timeout;
322 bool is_write = data->flags & MMC_DATA_WRITE;
323 struct fsl_esdhc *regs = priv->esdhc_regs;
324
325 if (is_write) {
326 if (priv->wp_enable && !(esdhc_read32(&regs->prsstat) & PRSSTAT_WPSPL)) {
327 printf("Cannot write to locked SD card.\n");
328 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +0800329 } else {
Simon Glassbcee8d62019-12-06 21:41:35 -0700330#if CONFIG_IS_ENABLED(DM_GPIO)
331 if (dm_gpio_is_valid(&priv->wp_gpio) &&
332 dm_gpio_get_value(&priv->wp_gpio)) {
Sean Anderson41c6a222021-11-23 15:03:44 -0500333 printf("Cannot write to locked SD card.\n");
334 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +0800335 }
336#endif
337 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800338 }
339
Marcel Ziswiler14448e92022-01-31 23:08:31 +0100340 esdhc_setup_watermark_level(priv, data);
341 if (!IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO))
Sean Anderson4f01db82021-11-23 15:03:45 -0500342 esdhc_setup_dma(priv, data);
Yangbo Lufa33d202019-06-21 11:42:27 +0800343
344 /* Calculate the timeout period for data transactions */
345 /*
346 * 1)Timeout period = (2^(timeout+13)) SD Clock cycles
347 * 2)Timeout period should be minimum 0.250sec as per SD Card spec
348 * So, Number of SD Clock cycles for 0.25sec should be minimum
349 * (SD Clock/sec * 0.25 sec) SD Clock cycles
350 * = (mmc->clock * 1/4) SD Clock cycles
351 * As 1) >= 2)
352 * => (2^(timeout+13)) >= mmc->clock * 1/4
353 * Taking log2 both the sides
354 * => timeout + 13 >= log2(mmc->clock/4)
355 * Rounding up to next power of 2
356 * => timeout + 13 = log2(mmc->clock/4) + 1
357 * => timeout + 13 = fls(mmc->clock/4)
358 *
359 * However, the MMC spec "It is strongly recommended for hosts to
360 * implement more than 500ms timeout value even if the card
361 * indicates the 250ms maximum busy length." Even the previous
362 * value of 300ms is known to be insufficient for some cards.
363 * So, we use
364 * => timeout + 13 = fls(mmc->clock/2)
365 */
366 timeout = fls(mmc->clock/2);
367 timeout -= 13;
368
369 if (timeout > 14)
370 timeout = 14;
371
372 if (timeout < 0)
373 timeout = 0;
374
Sean Anderson4f01db82021-11-23 15:03:45 -0500375 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC_A001) &&
376 (timeout == 4 || timeout == 8 || timeout == 12))
Yangbo Lufa33d202019-06-21 11:42:27 +0800377 timeout++;
Yangbo Lufa33d202019-06-21 11:42:27 +0800378
Sean Anderson4f01db82021-11-23 15:03:45 -0500379 if (IS_ENABLED(ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE))
380 timeout = 0xE;
381
Yangbo Lufa33d202019-06-21 11:42:27 +0800382 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16);
383
384 return 0;
385}
386
Sean Anderson00e0cd72021-11-23 15:03:46 -0500387#if IS_ENABLED(CONFIG_MCF5441x)
Yangbo Lufa33d202019-06-21 11:42:27 +0800388/*
389 * Swaps 32-bit words to little-endian byte order.
390 */
391static inline void sd_swap_dma_buff(struct mmc_data *data)
392{
393 int i, size = data->blocksize >> 2;
394 u32 *buffer = (u32 *)data->dest;
395 u32 sw;
396
397 while (data->blocks--) {
398 for (i = 0; i < size; i++) {
399 sw = __sw32(*buffer);
400 *buffer++ = sw;
401 }
402 }
403}
Sean Anderson4f01db82021-11-23 15:03:45 -0500404#else
405static inline void sd_swap_dma_buff(struct mmc_data *data)
406{
407 return;
408}
Yangbo Lufa33d202019-06-21 11:42:27 +0800409#endif
410
411/*
412 * Sends a command out on the bus. Takes the mmc pointer,
413 * a command pointer, and an optional data pointer.
414 */
415static int esdhc_send_cmd_common(struct fsl_esdhc_priv *priv, struct mmc *mmc,
416 struct mmc_cmd *cmd, struct mmc_data *data)
417{
418 int err = 0;
419 uint xfertyp;
420 uint irqstat;
421 u32 flags = IRQSTAT_CC | IRQSTAT_CTOE;
422 struct fsl_esdhc *regs = priv->esdhc_regs;
423 unsigned long start;
424
Sean Anderson4f01db82021-11-23 15:03:45 -0500425 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC111) &&
426 cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
Yangbo Lufa33d202019-06-21 11:42:27 +0800427 return 0;
Yangbo Lufa33d202019-06-21 11:42:27 +0800428
429 esdhc_write32(&regs->irqstat, -1);
430
431 sync();
432
433 /* Wait for the bus to be idle */
434 while ((esdhc_read32(&regs->prsstat) & PRSSTAT_CICHB) ||
435 (esdhc_read32(&regs->prsstat) & PRSSTAT_CIDHB))
436 ;
437
438 while (esdhc_read32(&regs->prsstat) & PRSSTAT_DLA)
439 ;
440
Yangbo Lufa33d202019-06-21 11:42:27 +0800441 /* Set up for a data transfer if we have one */
442 if (data) {
443 err = esdhc_setup_data(priv, mmc, data);
444 if(err)
445 return err;
Yangbo Lufa33d202019-06-21 11:42:27 +0800446 }
447
448 /* Figure out the transfer arguments */
449 xfertyp = esdhc_xfertyp(cmd, data);
450
451 /* Mask all irqs */
452 esdhc_write32(&regs->irqsigen, 0);
453
454 /* Send the command */
455 esdhc_write32(&regs->cmdarg, cmd->cmdarg);
Simon Glass93cb5152022-01-22 05:07:24 -0700456 if (IS_ENABLED(CONFIG_FSL_USDHC)) {
Sean Anderson00e0cd72021-11-23 15:03:46 -0500457 u32 mixctrl = esdhc_read32(&regs->mixctrl);
458
459 esdhc_write32(&regs->mixctrl,
460 (mixctrl & 0xFFFFFF80) | (xfertyp & 0x7F)
461 | (mmc->ddr_mode ? XFERTYP_DDREN : 0));
462 esdhc_write32(&regs->xfertyp, xfertyp & 0xFFFF0000);
463 } else {
464 esdhc_write32(&regs->xfertyp, xfertyp);
465 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800466
467 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK) ||
468 (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200))
469 flags = IRQSTAT_BRR;
470
471 /* Wait for the command to complete */
472 start = get_timer(0);
473 while (!(esdhc_read32(&regs->irqstat) & flags)) {
474 if (get_timer(start) > 1000) {
475 err = -ETIMEDOUT;
476 goto out;
477 }
478 }
479
480 irqstat = esdhc_read32(&regs->irqstat);
481
482 if (irqstat & CMD_ERR) {
483 err = -ECOMM;
484 goto out;
485 }
486
487 if (irqstat & IRQSTAT_CTOE) {
488 err = -ETIMEDOUT;
489 goto out;
490 }
491
Yangbo Lufa33d202019-06-21 11:42:27 +0800492 /* Workaround for ESDHC errata ENGcm03648 */
493 if (!data && (cmd->resp_type & MMC_RSP_BUSY)) {
Peng Fan356f7822019-07-10 09:35:30 +0000494 int timeout = 50000;
Yangbo Lufa33d202019-06-21 11:42:27 +0800495
Peng Fan356f7822019-07-10 09:35:30 +0000496 /* Poll on DATA0 line for cmd with busy signal for 5000 ms */
Yangbo Lufa33d202019-06-21 11:42:27 +0800497 while (timeout > 0 && !(esdhc_read32(&regs->prsstat) &
498 PRSSTAT_DAT0)) {
499 udelay(100);
500 timeout--;
501 }
502
503 if (timeout <= 0) {
504 printf("Timeout waiting for DAT0 to go high!\n");
505 err = -ETIMEDOUT;
506 goto out;
507 }
508 }
509
510 /* Copy the response to the response buffer */
511 if (cmd->resp_type & MMC_RSP_136) {
512 u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0;
513
514 cmdrsp3 = esdhc_read32(&regs->cmdrsp3);
515 cmdrsp2 = esdhc_read32(&regs->cmdrsp2);
516 cmdrsp1 = esdhc_read32(&regs->cmdrsp1);
517 cmdrsp0 = esdhc_read32(&regs->cmdrsp0);
518 cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24);
519 cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24);
520 cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24);
521 cmd->response[3] = (cmdrsp0 << 8);
522 } else
523 cmd->response[0] = esdhc_read32(&regs->cmdrsp0);
524
525 /* Wait until all of the blocks are transferred */
526 if (data) {
Sean Anderson4f01db82021-11-23 15:03:45 -0500527 if (IS_ENABLED(CONFIG_SYS_FSL_ESDHC_USE_PIO)) {
528 esdhc_pio_read_write(priv, data);
529 } else {
530 flags = DATA_COMPLETE;
531 if (cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
532 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
533 flags = IRQSTAT_BRR;
534
535 do {
536 irqstat = esdhc_read32(&regs->irqstat);
537
538 if (irqstat & IRQSTAT_DTOE) {
539 err = -ETIMEDOUT;
540 goto out;
541 }
542
543 if (irqstat & DATA_ERR) {
544 err = -ECOMM;
545 goto out;
546 }
547 } while ((irqstat & flags) != flags);
548
549 /*
550 * Need invalidate the dcache here again to avoid any
551 * cache-fill during the DMA operations such as the
552 * speculative pre-fetching etc.
553 */
554 dma_unmap_single(priv->dma_addr,
555 data->blocks * data->blocksize,
556 mmc_get_dma_dir(data));
557 if (IS_ENABLED(CONFIG_MCF5441x) &&
558 (data->flags & MMC_DATA_READ))
559 sd_swap_dma_buff(data);
Yangbo Lufa33d202019-06-21 11:42:27 +0800560 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800561 }
562
563out:
564 /* Reset CMD and DATA portions on error */
565 if (err) {
566 esdhc_write32(&regs->sysctl, esdhc_read32(&regs->sysctl) |
567 SYSCTL_RSTC);
568 while (esdhc_read32(&regs->sysctl) & SYSCTL_RSTC)
569 ;
570
571 if (data) {
572 esdhc_write32(&regs->sysctl,
573 esdhc_read32(&regs->sysctl) |
574 SYSCTL_RSTD);
575 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTD))
576 ;
577 }
578
579 /* If this was CMD11, then notify that power cycle is needed */
580 if (cmd->cmdidx == SD_CMD_SWITCH_UHS18V)
581 printf("CMD11 to switch to 1.8V mode failed, card requires power cycle.\n");
582 }
583
584 esdhc_write32(&regs->irqstat, -1);
585
586 return err;
587}
588
589static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock)
590{
591 struct fsl_esdhc *regs = priv->esdhc_regs;
592 int div = 1;
Haibo Chenf9c3a812020-09-01 15:34:06 +0800593 u32 tmp;
Sean Anderson4f01db82021-11-23 15:03:45 -0500594 int ret, pre_div;
Yangbo Lufa33d202019-06-21 11:42:27 +0800595 int ddr_pre_div = mmc->ddr_mode ? 2 : 1;
596 int sdhc_clk = priv->sdhc_clk;
597 uint clk;
598
Sean Anderson00e0cd72021-11-23 15:03:46 -0500599#if IS_ENABLED(CONFIG_MX53)
Haibo Chen45254ed2022-02-11 19:16:56 +0800600 /* 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;
Sean Anderson4f01db82021-11-23 15:03:45 -0500602#else
Haibo Chen45254ed2022-02-11 19:16:56 +0800603 pre_div = 1;
Sean Anderson4f01db82021-11-23 15:03:45 -0500604#endif
Sean Anderson4f01db82021-11-23 15:03:45 -0500605
Yangbo Lufa33d202019-06-21 11:42:27 +0800606 while (sdhc_clk / (16 * pre_div * ddr_pre_div) > clock && pre_div < 256)
607 pre_div *= 2;
608
609 while (sdhc_clk / (div * pre_div * ddr_pre_div) > clock && div < 16)
610 div++;
611
Haibo Chend7d042e2022-02-11 19:16:57 +0800612 mmc->clock = sdhc_clk / pre_div / div / ddr_pre_div;
613
Yangbo Lufa33d202019-06-21 11:42:27 +0800614 pre_div >>= 1;
615 div -= 1;
616
617 clk = (pre_div << 8) | (div << 4);
618
Sean Anderson4f01db82021-11-23 15:03:45 -0500619 if (IS_ENABLED(CONFIG_FSL_USDHC))
620 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_CKEN);
621 else
622 esdhc_clrbits32(&regs->sysctl, SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800623
624 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_CLOCK_MASK, clk);
625
Haibo Chenf9c3a812020-09-01 15:34:06 +0800626 ret = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp, tmp & PRSSTAT_SDSTB, 100);
627 if (ret)
628 pr_warn("fsl_esdhc_imx: Internal clock never stabilised.\n");
Yangbo Lufa33d202019-06-21 11:42:27 +0800629
Sean Anderson4f01db82021-11-23 15:03:45 -0500630 if (IS_ENABLED(CONFIG_FSL_USDHC))
631 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN | VENDORSPEC_CKEN);
632 else
633 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800634
635 priv->clock = clock;
636}
637
Yangbo Lufa33d202019-06-21 11:42:27 +0800638#ifdef MMC_SUPPORTS_TUNING
639static int esdhc_change_pinstate(struct udevice *dev)
640{
641 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
642 int ret;
643
644 switch (priv->mode) {
645 case UHS_SDR50:
646 case UHS_DDR50:
647 ret = pinctrl_select_state(dev, "state_100mhz");
648 break;
649 case UHS_SDR104:
650 case MMC_HS_200:
651 case MMC_HS_400:
Peng Fane9c22552019-07-10 09:35:26 +0000652 case MMC_HS_400_ES:
Yangbo Lufa33d202019-06-21 11:42:27 +0800653 ret = pinctrl_select_state(dev, "state_200mhz");
654 break;
655 default:
656 ret = pinctrl_select_state(dev, "default");
657 break;
658 }
659
660 if (ret)
661 printf("%s %d error\n", __func__, priv->mode);
662
663 return ret;
664}
665
666static void esdhc_reset_tuning(struct mmc *mmc)
667{
668 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
669 struct fsl_esdhc *regs = priv->esdhc_regs;
670
671 if (priv->flags & ESDHC_FLAG_USDHC) {
672 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
673 esdhc_clrbits32(&regs->autoc12err,
674 MIX_CTRL_SMPCLK_SEL |
675 MIX_CTRL_EXE_TUNE);
676 }
677 }
678}
679
680static void esdhc_set_strobe_dll(struct mmc *mmc)
681{
682 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
683 struct fsl_esdhc *regs = priv->esdhc_regs;
684 u32 val;
685
686 if (priv->clock > ESDHC_STROBE_DLL_CLK_FREQ) {
Haibo Chenc7f44182020-09-30 15:52:23 +0800687 esdhc_write32(&regs->strobe_dllctrl, ESDHC_STROBE_DLL_CTRL_RESET);
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300688 /* clear the reset bit on strobe dll before any setting */
689 esdhc_write32(&regs->strobe_dllctrl, 0);
Yangbo Lufa33d202019-06-21 11:42:27 +0800690
691 /*
692 * enable strobe dll ctrl and adjust the delay target
693 * for the uSDHC loopback read clock
694 */
695 val = ESDHC_STROBE_DLL_CTRL_ENABLE |
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300696 ESDHC_STROBE_DLL_CTRL_SLV_UPDATE_INT_DEFAULT |
Yangbo Lufa33d202019-06-21 11:42:27 +0800697 (priv->strobe_dll_delay_target <<
698 ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_SHIFT);
Haibo Chenc7f44182020-09-30 15:52:23 +0800699 esdhc_write32(&regs->strobe_dllctrl, val);
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +0300700 /* wait 5us to make sure strobe dll status register stable */
701 mdelay(5);
Haibo Chenc7f44182020-09-30 15:52:23 +0800702 val = esdhc_read32(&regs->strobe_dllstat);
Yangbo Lufa33d202019-06-21 11:42:27 +0800703 if (!(val & ESDHC_STROBE_DLL_STS_REF_LOCK))
704 pr_warn("HS400 strobe DLL status REF not lock!\n");
705 if (!(val & ESDHC_STROBE_DLL_STS_SLV_LOCK))
706 pr_warn("HS400 strobe DLL status SLV not lock!\n");
707 }
708}
709
710static int esdhc_set_timing(struct mmc *mmc)
711{
712 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
713 struct fsl_esdhc *regs = priv->esdhc_regs;
714 u32 mixctrl;
715
Haibo Chenc7f44182020-09-30 15:52:23 +0800716 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800717 mixctrl &= ~(MIX_CTRL_DDREN | MIX_CTRL_HS400_EN);
718
719 switch (mmc->selected_mode) {
720 case MMC_LEGACY:
Yangbo Lufa33d202019-06-21 11:42:27 +0800721 esdhc_reset_tuning(mmc);
Haibo Chenc7f44182020-09-30 15:52:23 +0800722 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800723 break;
724 case MMC_HS_400:
Peng Fane9c22552019-07-10 09:35:26 +0000725 case MMC_HS_400_ES:
Yangbo Lufa33d202019-06-21 11:42:27 +0800726 mixctrl |= MIX_CTRL_DDREN | MIX_CTRL_HS400_EN;
Haibo Chenc7f44182020-09-30 15:52:23 +0800727 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800728 break;
729 case MMC_HS:
730 case MMC_HS_52:
731 case MMC_HS_200:
732 case SD_HS:
733 case UHS_SDR12:
734 case UHS_SDR25:
735 case UHS_SDR50:
736 case UHS_SDR104:
Haibo Chenc7f44182020-09-30 15:52:23 +0800737 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800738 break;
739 case UHS_DDR50:
740 case MMC_DDR_52:
741 mixctrl |= MIX_CTRL_DDREN;
Haibo Chenc7f44182020-09-30 15:52:23 +0800742 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800743 break;
744 default:
745 printf("Not supported %d\n", mmc->selected_mode);
746 return -EINVAL;
747 }
748
749 priv->mode = mmc->selected_mode;
750
751 return esdhc_change_pinstate(mmc->dev);
752}
753
754static int esdhc_set_voltage(struct mmc *mmc)
755{
756 struct fsl_esdhc_priv *priv = dev_get_priv(mmc->dev);
757 struct fsl_esdhc *regs = priv->esdhc_regs;
758 int ret;
759
760 priv->signal_voltage = mmc->signal_voltage;
761 switch (mmc->signal_voltage) {
762 case MMC_SIGNAL_VOLTAGE_330:
763 if (priv->vs18_enable)
Marek Vasut50a17a62020-05-22 18:28:33 +0200764 return -ENOTSUPP;
Sean Anderson00e0cd72021-11-23 15:03:46 -0500765 if (CONFIG_IS_ENABLED(DM_REGULATOR) &&
766 !IS_ERR_OR_NULL(priv->vqmmc_dev)) {
767 ret = regulator_set_value(priv->vqmmc_dev,
768 3300000);
Yangbo Lufa33d202019-06-21 11:42:27 +0800769 if (ret) {
770 printf("Setting to 3.3V error");
771 return -EIO;
772 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800773 mdelay(5);
774 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800775
776 esdhc_clrbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
777 if (!(esdhc_read32(&regs->vendorspec) &
778 ESDHC_VENDORSPEC_VSELECT))
779 return 0;
780
781 return -EAGAIN;
782 case MMC_SIGNAL_VOLTAGE_180:
Sean Anderson00e0cd72021-11-23 15:03:46 -0500783 if (CONFIG_IS_ENABLED(DM_REGULATOR) &&
784 !IS_ERR_OR_NULL(priv->vqmmc_dev)) {
785 ret = regulator_set_value(priv->vqmmc_dev,
786 1800000);
Yangbo Lufa33d202019-06-21 11:42:27 +0800787 if (ret) {
788 printf("Setting to 1.8V error");
789 return -EIO;
790 }
791 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800792 esdhc_setbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
Haibo Chen8974ff12021-03-22 18:55:38 +0800793 /*
794 * some board like imx8mm-evk need about 18ms to switch
795 * the IO voltage from 3.3v to 1.8v, common code only
796 * delay 10ms, so need to delay extra time to make sure
797 * the IO voltage change to 1.8v.
798 */
799 if (priv->signal_voltage_switch_extra_delay_ms)
800 mdelay(priv->signal_voltage_switch_extra_delay_ms);
Yangbo Lufa33d202019-06-21 11:42:27 +0800801 if (esdhc_read32(&regs->vendorspec) & ESDHC_VENDORSPEC_VSELECT)
802 return 0;
803
804 return -EAGAIN;
805 case MMC_SIGNAL_VOLTAGE_120:
806 return -ENOTSUPP;
807 default:
808 return 0;
809 }
810}
811
812static void esdhc_stop_tuning(struct mmc *mmc)
813{
814 struct mmc_cmd cmd;
815
816 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
817 cmd.cmdarg = 0;
818 cmd.resp_type = MMC_RSP_R1b;
819
Jaehoon Chung2da23352021-05-31 08:31:49 +0900820 mmc_send_cmd(mmc, &cmd, NULL);
Yangbo Lufa33d202019-06-21 11:42:27 +0800821}
822
823static int fsl_esdhc_execute_tuning(struct udevice *dev, uint32_t opcode)
824{
Simon Glassc69cda22020-12-03 16:55:20 -0700825 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +0800826 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
827 struct fsl_esdhc *regs = priv->esdhc_regs;
828 struct mmc *mmc = &plat->mmc;
Haibo Chenc7f44182020-09-30 15:52:23 +0800829 u32 irqstaten = esdhc_read32(&regs->irqstaten);
830 u32 irqsigen = esdhc_read32(&regs->irqsigen);
Haibo Chen925f6902022-02-22 11:28:18 +0800831 int i, err, ret = -ETIMEDOUT;
832 u32 val, mixctrl, tmp;
Yangbo Lufa33d202019-06-21 11:42:27 +0800833
834 /* clock tuning is not needed for upto 52MHz */
835 if (mmc->clock <= 52000000)
836 return 0;
837
Haibo Chen925f6902022-02-22 11:28:18 +0800838 /* make sure the card clock keep on */
839 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_FRC_SDCLK_ON);
840
Yangbo Lufa33d202019-06-21 11:42:27 +0800841 /* This is readw/writew SDHCI_HOST_CONTROL2 when tuning */
842 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
Haibo Chenc7f44182020-09-30 15:52:23 +0800843 val = esdhc_read32(&regs->autoc12err);
844 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800845 val &= ~MIX_CTRL_SMPCLK_SEL;
846 mixctrl &= ~(MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN);
847
848 val |= MIX_CTRL_EXE_TUNE;
849 mixctrl |= MIX_CTRL_FBCLK_SEL | MIX_CTRL_AUTO_TUNE_EN;
850
Haibo Chenc7f44182020-09-30 15:52:23 +0800851 esdhc_write32(&regs->autoc12err, val);
852 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800853 }
854
855 /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE); */
Haibo Chenc7f44182020-09-30 15:52:23 +0800856 mixctrl = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800857 mixctrl = MIX_CTRL_DTDSEL_READ | (mixctrl & ~MIX_CTRL_SDHCI_MASK);
Haibo Chenc7f44182020-09-30 15:52:23 +0800858 esdhc_write32(&regs->mixctrl, mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800859
Haibo Chenc7f44182020-09-30 15:52:23 +0800860 esdhc_write32(&regs->irqstaten, IRQSTATEN_BRR);
861 esdhc_write32(&regs->irqsigen, IRQSTATEN_BRR);
Yangbo Lufa33d202019-06-21 11:42:27 +0800862
863 /*
864 * Issue opcode repeatedly till Execute Tuning is set to 0 or the number
865 * of loops reaches 40 times.
866 */
867 for (i = 0; i < MAX_TUNING_LOOP; i++) {
868 u32 ctrl;
869
870 if (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200) {
871 if (mmc->bus_width == 8)
Haibo Chenc7f44182020-09-30 15:52:23 +0800872 esdhc_write32(&regs->blkattr, 0x7080);
Yangbo Lufa33d202019-06-21 11:42:27 +0800873 else if (mmc->bus_width == 4)
Haibo Chenc7f44182020-09-30 15:52:23 +0800874 esdhc_write32(&regs->blkattr, 0x7040);
Yangbo Lufa33d202019-06-21 11:42:27 +0800875 } else {
Haibo Chenc7f44182020-09-30 15:52:23 +0800876 esdhc_write32(&regs->blkattr, 0x7040);
Yangbo Lufa33d202019-06-21 11:42:27 +0800877 }
878
879 /* sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE) */
Haibo Chenc7f44182020-09-30 15:52:23 +0800880 val = esdhc_read32(&regs->mixctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +0800881 val = MIX_CTRL_DTDSEL_READ | (val & ~MIX_CTRL_SDHCI_MASK);
Haibo Chenc7f44182020-09-30 15:52:23 +0800882 esdhc_write32(&regs->mixctrl, val);
Yangbo Lufa33d202019-06-21 11:42:27 +0800883
884 /* We are using STD tuning, no need to check return value */
885 mmc_send_tuning(mmc, opcode, NULL);
886
Haibo Chenc7f44182020-09-30 15:52:23 +0800887 ctrl = esdhc_read32(&regs->autoc12err);
Yangbo Lufa33d202019-06-21 11:42:27 +0800888 if ((!(ctrl & MIX_CTRL_EXE_TUNE)) &&
889 (ctrl & MIX_CTRL_SMPCLK_SEL)) {
Yangbo Lufa33d202019-06-21 11:42:27 +0800890 ret = 0;
891 break;
892 }
Yangbo Lufa33d202019-06-21 11:42:27 +0800893 }
894
Haibo Chenc7f44182020-09-30 15:52:23 +0800895 esdhc_write32(&regs->irqstaten, irqstaten);
896 esdhc_write32(&regs->irqsigen, irqsigen);
Yangbo Lufa33d202019-06-21 11:42:27 +0800897
898 esdhc_stop_tuning(mmc);
899
Haibo Chen925f6902022-02-22 11:28:18 +0800900 /* change to default setting, let host control the card clock */
901 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_FRC_SDCLK_ON);
902 err = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp, tmp & PRSSTAT_SDOFF, 100);
903 if (err)
904 dev_warn(dev, "card clock not gate off as expect.\n");
905
Yangbo Lufa33d202019-06-21 11:42:27 +0800906 return ret;
907}
908#endif
909
910static int esdhc_set_ios_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
911{
912 struct fsl_esdhc *regs = priv->esdhc_regs;
913 int ret __maybe_unused;
Peng Fan1d01c982019-11-04 17:14:15 +0800914 u32 clock;
Yangbo Lufa33d202019-06-21 11:42:27 +0800915
Haibo Chen5d772192020-11-03 17:18:35 +0800916#ifdef MMC_SUPPORTS_TUNING
917 /*
918 * call esdhc_set_timing() before update the clock rate,
919 * This is because current we support DDR and SDR mode,
920 * Once the DDR_EN bit is set, the card clock will be
921 * divide by 2 automatically. So need to do this before
922 * setting clock rate.
923 */
924 if (priv->mode != mmc->selected_mode) {
925 ret = esdhc_set_timing(mmc);
926 if (ret) {
927 printf("esdhc_set_timing error %d\n", ret);
928 return ret;
929 }
930 }
931#endif
932
Yangbo Lufa33d202019-06-21 11:42:27 +0800933 /* Set the clock speed */
Peng Fan1d01c982019-11-04 17:14:15 +0800934 clock = mmc->clock;
935 if (clock < mmc->cfg->f_min)
936 clock = mmc->cfg->f_min;
937
938 if (priv->clock != clock)
939 set_sysctl(priv, mmc, clock);
Yangbo Lufa33d202019-06-21 11:42:27 +0800940
Yangbo Lufa33d202019-06-21 11:42:27 +0800941 if (mmc->clk_disable) {
Sean Anderson00e0cd72021-11-23 15:03:46 -0500942 if (IS_ENABLED(CONFIG_FSL_USDHC))
943 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_CKEN);
944 else
945 esdhc_clrbits32(&regs->sysctl, SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800946 } else {
Sean Anderson00e0cd72021-11-23 15:03:46 -0500947 if (IS_ENABLED(CONFIG_FSL_USDHC))
948 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN |
949 VENDORSPEC_CKEN);
950 else
951 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_CKEN);
Yangbo Lufa33d202019-06-21 11:42:27 +0800952 }
953
Ye Li9b7c3492021-08-17 17:09:20 +0800954#ifdef MMC_SUPPORTS_TUNING
Haibo Chen5d772192020-11-03 17:18:35 +0800955 /*
956 * For HS400/HS400ES mode, make sure set the strobe dll in the
957 * target clock rate. So call esdhc_set_strobe_dll() after the
958 * clock updated.
959 */
960 if (mmc->selected_mode == MMC_HS_400 || mmc->selected_mode == MMC_HS_400_ES)
961 esdhc_set_strobe_dll(mmc);
Yangbo Lufa33d202019-06-21 11:42:27 +0800962
963 if (priv->signal_voltage != mmc->signal_voltage) {
964 ret = esdhc_set_voltage(mmc);
965 if (ret) {
Marek Vasut50a17a62020-05-22 18:28:33 +0200966 if (ret != -ENOTSUPP)
967 printf("esdhc_set_voltage error %d\n", ret);
Yangbo Lufa33d202019-06-21 11:42:27 +0800968 return ret;
969 }
970 }
971#endif
972
973 /* Set the bus width */
974 esdhc_clrbits32(&regs->proctl, PROCTL_DTW_4 | PROCTL_DTW_8);
975
976 if (mmc->bus_width == 4)
977 esdhc_setbits32(&regs->proctl, PROCTL_DTW_4);
978 else if (mmc->bus_width == 8)
979 esdhc_setbits32(&regs->proctl, PROCTL_DTW_8);
980
981 return 0;
982}
983
984static int esdhc_init_common(struct fsl_esdhc_priv *priv, struct mmc *mmc)
985{
986 struct fsl_esdhc *regs = priv->esdhc_regs;
987 ulong start;
988
989 /* Reset the entire host controller */
990 esdhc_setbits32(&regs->sysctl, SYSCTL_RSTA);
991
992 /* Wait until the controller is available */
993 start = get_timer(0);
994 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTA)) {
995 if (get_timer(start) > 1000)
996 return -ETIMEDOUT;
997 }
998
Sean Anderson00e0cd72021-11-23 15:03:46 -0500999 if (IS_ENABLED(CONFIG_FSL_USDHC)) {
1000 /* RSTA doesn't reset MMC_BOOT register, so manually reset it */
1001 esdhc_write32(&regs->mmcboot, 0x0);
1002 /* Reset MIX_CTRL and CLK_TUNE_CTRL_STATUS regs to 0 */
1003 esdhc_write32(&regs->mixctrl, 0x0);
1004 esdhc_write32(&regs->clktunectrlstatus, 0x0);
Yangbo Lufa33d202019-06-21 11:42:27 +08001005
Sean Anderson00e0cd72021-11-23 15:03:46 -05001006 /* Put VEND_SPEC to default value */
1007 if (priv->vs18_enable)
1008 esdhc_write32(&regs->vendorspec, VENDORSPEC_INIT |
1009 ESDHC_VENDORSPEC_VSELECT);
1010 else
1011 esdhc_write32(&regs->vendorspec, VENDORSPEC_INIT);
Yangbo Lufa33d202019-06-21 11:42:27 +08001012
Sean Anderson00e0cd72021-11-23 15:03:46 -05001013 /* Disable DLL_CTRL delay line */
1014 esdhc_write32(&regs->dllctrl, 0x0);
1015 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001016
Sean Anderson00e0cd72021-11-23 15:03:46 -05001017 if (IS_ENABLED(CONFIG_FSL_USDHC))
1018 esdhc_setbits32(&regs->vendorspec,
1019 VENDORSPEC_HCKEN | VENDORSPEC_IPGEN);
1020 else
1021 esdhc_setbits32(&regs->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN);
Yangbo Lufa33d202019-06-21 11:42:27 +08001022
1023 /* Set the initial clock speed */
Sean Andersonb2acee42021-11-23 15:03:47 -05001024 set_sysctl(priv, mmc, 400000);
Yangbo Lufa33d202019-06-21 11:42:27 +08001025
1026 /* Disable the BRR and BWR bits in IRQSTAT */
1027 esdhc_clrbits32(&regs->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR);
1028
Yangbo Lufa33d202019-06-21 11:42:27 +08001029 /* Put the PROCTL reg back to the default */
Sean Anderson00e0cd72021-11-23 15:03:46 -05001030 if (IS_ENABLED(CONFIG_MCF5441x))
1031 esdhc_write32(&regs->proctl, PROCTL_INIT | PROCTL_D3CD);
1032 else
1033 esdhc_write32(&regs->proctl, PROCTL_INIT);
Yangbo Lufa33d202019-06-21 11:42:27 +08001034
1035 /* Set timout to the maximum value */
1036 esdhc_clrsetbits32(&regs->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16);
1037
1038 return 0;
1039}
1040
1041static int esdhc_getcd_common(struct fsl_esdhc_priv *priv)
1042{
1043 struct fsl_esdhc *regs = priv->esdhc_regs;
1044 int timeout = 1000;
1045
Sean Anderson00e0cd72021-11-23 15:03:46 -05001046 if (IS_ENABLED(CONFIG_ESDHC_DETECT_QUIRK))
Yangbo Lufa33d202019-06-21 11:42:27 +08001047 return 1;
Yangbo Lufa33d202019-06-21 11:42:27 +08001048
Sean Anderson00e0cd72021-11-23 15:03:46 -05001049 if (CONFIG_IS_ENABLED(DM_MMC)) {
1050 if (priv->broken_cd)
1051 return 1;
Simon Glassbcee8d62019-12-06 21:41:35 -07001052#if CONFIG_IS_ENABLED(DM_GPIO)
Sean Anderson00e0cd72021-11-23 15:03:46 -05001053 if (dm_gpio_is_valid(&priv->cd_gpio))
1054 return dm_gpio_get_value(&priv->cd_gpio);
Yangbo Lufa33d202019-06-21 11:42:27 +08001055#endif
Sean Anderson00e0cd72021-11-23 15:03:46 -05001056 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001057
1058 while (!(esdhc_read32(&regs->prsstat) & PRSSTAT_CINS) && --timeout)
1059 udelay(1000);
1060
1061 return timeout > 0;
1062}
1063
Loic Poulain12a29d32022-05-26 16:37:22 +02001064static int esdhc_wait_dat0_common(struct fsl_esdhc_priv *priv, int state,
1065 int timeout_us)
1066{
1067 struct fsl_esdhc *regs = priv->esdhc_regs;
1068 int ret, err;
1069 u32 tmp;
1070
1071 /* make sure the card clock keep on */
1072 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_FRC_SDCLK_ON);
1073
1074 ret = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp,
1075 !!(tmp & PRSSTAT_DAT0) == !!state,
1076 timeout_us);
1077
1078 /* change to default setting, let host control the card clock */
1079 esdhc_clrbits32(&regs->vendorspec, VENDORSPEC_FRC_SDCLK_ON);
1080
1081 err = readx_poll_timeout(esdhc_read32, &regs->prsstat, tmp, tmp & PRSSTAT_SDOFF, 100);
1082 if (err)
1083 pr_warn("card clock not gate off as expect.\n");
1084
1085 return ret;
1086}
1087
Yangbo Lufa33d202019-06-21 11:42:27 +08001088static int esdhc_reset(struct fsl_esdhc *regs)
1089{
1090 ulong start;
1091
1092 /* reset the controller */
1093 esdhc_setbits32(&regs->sysctl, SYSCTL_RSTA);
1094
1095 /* hardware clears the bit when it is done */
1096 start = get_timer(0);
1097 while ((esdhc_read32(&regs->sysctl) & SYSCTL_RSTA)) {
1098 if (get_timer(start) > 100) {
1099 printf("MMC/SD: Reset never completed.\n");
1100 return -ETIMEDOUT;
1101 }
1102 }
1103
1104 return 0;
1105}
1106
1107#if !CONFIG_IS_ENABLED(DM_MMC)
1108static int esdhc_getcd(struct mmc *mmc)
1109{
1110 struct fsl_esdhc_priv *priv = mmc->priv;
1111
1112 return esdhc_getcd_common(priv);
1113}
1114
1115static int esdhc_init(struct mmc *mmc)
1116{
1117 struct fsl_esdhc_priv *priv = mmc->priv;
1118
1119 return esdhc_init_common(priv, mmc);
1120}
1121
1122static int esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
1123 struct mmc_data *data)
1124{
1125 struct fsl_esdhc_priv *priv = mmc->priv;
1126
1127 return esdhc_send_cmd_common(priv, mmc, cmd, data);
1128}
1129
1130static int esdhc_set_ios(struct mmc *mmc)
1131{
1132 struct fsl_esdhc_priv *priv = mmc->priv;
1133
1134 return esdhc_set_ios_common(priv, mmc);
1135}
1136
Loic Poulain12a29d32022-05-26 16:37:22 +02001137static int esdhc_wait_dat0(struct mmc *mmc, int state, int timeout_us)
1138{
1139 struct fsl_esdhc_priv *priv = mmc->priv;
1140
1141 return esdhc_wait_dat0_common(priv, state, timeout_us);
1142}
1143
Yangbo Lufa33d202019-06-21 11:42:27 +08001144static const struct mmc_ops esdhc_ops = {
1145 .getcd = esdhc_getcd,
1146 .init = esdhc_init,
1147 .send_cmd = esdhc_send_cmd,
1148 .set_ios = esdhc_set_ios,
Loic Poulain12a29d32022-05-26 16:37:22 +02001149 .wait_dat0 = esdhc_wait_dat0,
Yangbo Lufa33d202019-06-21 11:42:27 +08001150};
1151#endif
1152
1153static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
1154 struct fsl_esdhc_plat *plat)
1155{
1156 struct mmc_config *cfg;
1157 struct fsl_esdhc *regs;
Sean Anderson2fd7d1f2021-11-23 15:03:38 -05001158 u32 caps;
Yangbo Lufa33d202019-06-21 11:42:27 +08001159 int ret;
1160
1161 if (!priv)
1162 return -EINVAL;
1163
1164 regs = priv->esdhc_regs;
1165
1166 /* First reset the eSDHC controller */
1167 ret = esdhc_reset(regs);
1168 if (ret)
1169 return ret;
1170
Yangbo Lufa33d202019-06-21 11:42:27 +08001171 /* ColdFire, using SDHC_DATA[3] for card detection */
Sean Anderson4f01db82021-11-23 15:03:45 -05001172 if (IS_ENABLED(CONFIG_MCF5441x))
1173 esdhc_write32(&regs->proctl, PROCTL_INIT | PROCTL_D3CD);
Yangbo Lufa33d202019-06-21 11:42:27 +08001174
Sean Anderson4f01db82021-11-23 15:03:45 -05001175 if (IS_ENABLED(CONFIG_FSL_USDHC)) {
1176 esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN |
1177 VENDORSPEC_HCKEN | VENDORSPEC_IPGEN | VENDORSPEC_CKEN);
1178 } else {
1179 esdhc_setbits32(&regs->sysctl, SYSCTL_PEREN | SYSCTL_HCKEN
1180 | SYSCTL_IPGEN | SYSCTL_CKEN);
1181 /* Clearing tuning bits in case ROM has set it already */
1182 esdhc_write32(&regs->mixctrl, 0);
1183 esdhc_write32(&regs->autoc12err, 0);
1184 esdhc_write32(&regs->clktunectrlstatus, 0);
1185 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001186
1187 if (priv->vs18_enable)
1188 esdhc_setbits32(&regs->vendorspec, ESDHC_VENDORSPEC_VSELECT);
1189
Haibo Chenc7f44182020-09-30 15:52:23 +08001190 esdhc_write32(&regs->irqstaten, SDHCI_IRQ_EN_BITS);
Yangbo Lufa33d202019-06-21 11:42:27 +08001191 cfg = &plat->cfg;
Sean Anderson00e0cd72021-11-23 15:03:46 -05001192 if (!CONFIG_IS_ENABLED(DM_MMC))
1193 memset(cfg, '\0', sizeof(*cfg));
Yangbo Lufa33d202019-06-21 11:42:27 +08001194
Yangbo Lufa33d202019-06-21 11:42:27 +08001195 caps = esdhc_read32(&regs->hostcapblt);
Sean Anderson4f01db82021-11-23 15:03:45 -05001196
Yangbo Lufa33d202019-06-21 11:42:27 +08001197 /*
1198 * MCF5441x RM declares in more points that sdhc clock speed must
1199 * never exceed 25 Mhz. From this, the HS bit needs to be disabled
1200 * from host capabilities.
1201 */
Sean Anderson4f01db82021-11-23 15:03:45 -05001202 if (IS_ENABLED(CONFIG_MCF5441x))
1203 caps &= ~HOSTCAPBLT_HSS;
Yangbo Lufa33d202019-06-21 11:42:27 +08001204
Sean Anderson4f01db82021-11-23 15:03:45 -05001205 if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_ESDHC135))
1206 caps &= ~(HOSTCAPBLT_SRS | HOSTCAPBLT_VS18 | HOSTCAPBLT_VS30);
Yangbo Lufa33d202019-06-21 11:42:27 +08001207
Sean Anderson4f01db82021-11-23 15:03:45 -05001208 if (IS_ENABLED(CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33))
1209 caps |= HOSTCAPBLT_VS33;
Sean Anderson2fd7d1f2021-11-23 15:03:38 -05001210
1211 if (caps & HOSTCAPBLT_VS18)
1212 cfg->voltages |= MMC_VDD_165_195;
1213 if (caps & HOSTCAPBLT_VS30)
1214 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
1215 if (caps & HOSTCAPBLT_VS33)
1216 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Yangbo Lufa33d202019-06-21 11:42:27 +08001217
1218 cfg->name = "FSL_SDHC";
Sean Anderson4f01db82021-11-23 15:03:45 -05001219
Yangbo Lufa33d202019-06-21 11:42:27 +08001220#if !CONFIG_IS_ENABLED(DM_MMC)
1221 cfg->ops = &esdhc_ops;
1222#endif
Sean Anderson4f01db82021-11-23 15:03:45 -05001223
1224 if (IS_ENABLED(CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE))
1225 cfg->host_caps |= MMC_MODE_DDR_52MHz;
Yangbo Lufa33d202019-06-21 11:42:27 +08001226
Sean Anderson2fd7d1f2021-11-23 15:03:38 -05001227 if (caps & HOSTCAPBLT_HSS)
Yangbo Lufa33d202019-06-21 11:42:27 +08001228 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
1229
Yangbo Lufa33d202019-06-21 11:42:27 +08001230 cfg->host_caps |= priv->caps;
1231
1232 cfg->f_min = 400000;
1233 cfg->f_max = min(priv->sdhc_clk, (u32)200000000);
1234
1235 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
1236
Haibo Chenc7f44182020-09-30 15:52:23 +08001237 esdhc_write32(&regs->dllctrl, 0);
Yangbo Lufa33d202019-06-21 11:42:27 +08001238 if (priv->flags & ESDHC_FLAG_USDHC) {
1239 if (priv->flags & ESDHC_FLAG_STD_TUNING) {
Haibo Chenc7f44182020-09-30 15:52:23 +08001240 u32 val = esdhc_read32(&regs->tuning_ctrl);
Yangbo Lufa33d202019-06-21 11:42:27 +08001241
1242 val |= ESDHC_STD_TUNING_EN;
1243 val &= ~ESDHC_TUNING_START_TAP_MASK;
1244 val |= priv->tuning_start_tap;
1245 val &= ~ESDHC_TUNING_STEP_MASK;
1246 val |= (priv->tuning_step) << ESDHC_TUNING_STEP_SHIFT;
Haibo Chenba616762020-06-22 19:38:04 +08001247
1248 /* Disable the CMD CRC check for tuning, if not, need to
1249 * add some delay after every tuning command, because
1250 * hardware standard tuning logic will directly go to next
1251 * step once it detect the CMD CRC error, will not wait for
1252 * the card side to finally send out the tuning data, trigger
1253 * the buffer read ready interrupt immediately. If usdhc send
1254 * the next tuning command some eMMC card will stuck, can't
1255 * response, block the tuning procedure or the first command
1256 * after the whole tuning procedure always can't get any response.
1257 */
1258 val |= ESDHC_TUNING_CMD_CRC_CHECK_DISABLE;
Haibo Chenc7f44182020-09-30 15:52:23 +08001259 esdhc_write32(&regs->tuning_ctrl, val);
Yangbo Lufa33d202019-06-21 11:42:27 +08001260 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001261
Adam Ford1a7904f2022-01-12 07:53:56 -06001262 /*
1263 * UHS doesn't have explicit ESDHC flags, so if it's
1264 * not supported, disable it in config.
1265 */
1266 if (CONFIG_IS_ENABLED(MMC_UHS_SUPPORT))
1267 cfg->host_caps |= UHS_CAPS;
1268
1269 if (CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)) {
1270 if (priv->flags & ESDHC_FLAG_HS200)
1271 cfg->host_caps |= MMC_CAP(MMC_HS_200);
1272 }
1273
1274 if (CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)) {
1275 if (priv->flags & ESDHC_FLAG_HS400)
1276 cfg->host_caps |= MMC_CAP(MMC_HS_400);
1277 }
1278
1279 if (CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)) {
1280 if (priv->flags & ESDHC_FLAG_HS400_ES)
1281 cfg->host_caps |= MMC_CAP(MMC_HS_400_ES);
1282 }
1283 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001284 return 0;
1285}
1286
1287#if !CONFIG_IS_ENABLED(DM_MMC)
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001288int fsl_esdhc_initialize(struct bd_info *bis, struct fsl_esdhc_cfg *cfg)
Yangbo Lufa33d202019-06-21 11:42:27 +08001289{
1290 struct fsl_esdhc_plat *plat;
1291 struct fsl_esdhc_priv *priv;
Sean Anderson95d6b742021-11-23 15:03:39 -05001292 struct mmc_config *mmc_cfg;
Yangbo Lufa33d202019-06-21 11:42:27 +08001293 struct mmc *mmc;
1294 int ret;
1295
1296 if (!cfg)
1297 return -EINVAL;
1298
1299 priv = calloc(sizeof(struct fsl_esdhc_priv), 1);
1300 if (!priv)
1301 return -ENOMEM;
1302 plat = calloc(sizeof(struct fsl_esdhc_plat), 1);
1303 if (!plat) {
1304 free(priv);
1305 return -ENOMEM;
1306 }
1307
Sean Anderson95d6b742021-11-23 15:03:39 -05001308 priv->esdhc_regs = (struct fsl_esdhc *)(unsigned long)(cfg->esdhc_base);
1309 priv->sdhc_clk = cfg->sdhc_clk;
1310 priv->wp_enable = cfg->wp_enable;
1311
1312 mmc_cfg = &plat->cfg;
1313
1314 switch (cfg->max_bus_width) {
1315 case 0: /* Not set in config; assume everything is supported */
1316 case 8:
1317 mmc_cfg->host_caps |= MMC_MODE_8BIT;
1318 fallthrough;
1319 case 4:
1320 mmc_cfg->host_caps |= MMC_MODE_4BIT;
1321 fallthrough;
1322 case 1:
1323 mmc_cfg->host_caps |= MMC_MODE_1BIT;
1324 break;
1325 default:
1326 printf("invalid max bus width %u\n", cfg->max_bus_width);
1327 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +08001328 }
1329
Sean Anderson4f01db82021-11-23 15:03:45 -05001330 if (IS_ENABLED(CONFIG_ESDHC_DETECT_8_BIT_QUIRK))
Sean Anderson95d6b742021-11-23 15:03:39 -05001331 mmc_cfg->host_caps &= ~MMC_MODE_8BIT;
Sean Anderson95d6b742021-11-23 15:03:39 -05001332
Yangbo Lufa33d202019-06-21 11:42:27 +08001333 ret = fsl_esdhc_init(priv, plat);
1334 if (ret) {
1335 debug("%s init failure\n", __func__);
1336 free(plat);
1337 free(priv);
1338 return ret;
1339 }
1340
1341 mmc = mmc_create(&plat->cfg, priv);
1342 if (!mmc)
1343 return -EIO;
1344
1345 priv->mmc = mmc;
1346
1347 return 0;
1348}
1349
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001350int fsl_esdhc_mmc_init(struct bd_info *bis)
Yangbo Lufa33d202019-06-21 11:42:27 +08001351{
1352 struct fsl_esdhc_cfg *cfg;
1353
1354 cfg = calloc(sizeof(struct fsl_esdhc_cfg), 1);
Tom Rini6cc04542022-10-28 20:27:13 -04001355 cfg->esdhc_base = CFG_SYS_FSL_ESDHC_ADDR;
Yangbo Lufa33d202019-06-21 11:42:27 +08001356 cfg->sdhc_clk = gd->arch.sdhc_clk;
1357 return fsl_esdhc_initialize(bis, cfg);
1358}
1359#endif
1360
Sean Anderson00e0cd72021-11-23 15:03:46 -05001361#if CONFIG_IS_ENABLED(OF_LIBFDT)
Yangbo Lufa33d202019-06-21 11:42:27 +08001362__weak int esdhc_status_fixup(void *blob, const char *compat)
1363{
Tom Rini5388aa22022-12-02 16:42:22 -05001364 if (IS_ENABLED(CONFIG_FSL_ESDHC_PIN_MUX) && !hwconfig("esdhc")) {
Yangbo Lufa33d202019-06-21 11:42:27 +08001365 do_fixup_by_compat(blob, compat, "status", "disabled",
1366 sizeof("disabled"), 1);
1367 return 1;
1368 }
Yangbo Lufa33d202019-06-21 11:42:27 +08001369 return 0;
1370}
1371
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001372void fdt_fixup_esdhc(void *blob, struct bd_info *bd)
Yangbo Lufa33d202019-06-21 11:42:27 +08001373{
1374 const char *compat = "fsl,esdhc";
1375
1376 if (esdhc_status_fixup(blob, compat))
1377 return;
1378
Yangbo Lufa33d202019-06-21 11:42:27 +08001379 do_fixup_by_compat_u32(blob, compat, "clock-frequency",
1380 gd->arch.sdhc_clk, 1);
Yangbo Lufa33d202019-06-21 11:42:27 +08001381}
1382#endif
1383
1384#if CONFIG_IS_ENABLED(DM_MMC)
Yangbo Lufa33d202019-06-21 11:42:27 +08001385#include <asm/arch/clock.h>
Yangbo Lufa33d202019-06-21 11:42:27 +08001386__weak void init_clk_usdhc(u32 index)
1387{
1388}
1389
Simon Glassd1998a92020-12-03 16:55:21 -07001390static int fsl_esdhc_of_to_plat(struct udevice *dev)
Yangbo Lufa33d202019-06-21 11:42:27 +08001391{
Yangbo Lufa33d202019-06-21 11:42:27 +08001392 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001393 struct udevice *vqmmc_dev;
Walter Lozano23721772020-07-29 12:31:17 -03001394 int ret;
Sean Anderson00e0cd72021-11-23 15:03:46 -05001395
Walter Lozano23721772020-07-29 12:31:17 -03001396 const void *fdt = gd->fdt_blob;
1397 int node = dev_of_offset(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001398 fdt_addr_t addr;
1399 unsigned int val;
Yangbo Lufa33d202019-06-21 11:42:27 +08001400
Simon Glassdcfc42b2021-08-07 07:24:06 -06001401 if (!CONFIG_IS_ENABLED(OF_REAL))
1402 return 0;
1403
Yangbo Lufa33d202019-06-21 11:42:27 +08001404 addr = dev_read_addr(dev);
1405 if (addr == FDT_ADDR_T_NONE)
1406 return -EINVAL;
Yangbo Lufa33d202019-06-21 11:42:27 +08001407 priv->esdhc_regs = (struct fsl_esdhc *)addr;
Yangbo Lufa33d202019-06-21 11:42:27 +08001408 priv->dev = dev;
1409 priv->mode = -1;
Yangbo Lufa33d202019-06-21 11:42:27 +08001410
Yangbo Lufa33d202019-06-21 11:42:27 +08001411 val = fdtdec_get_int(fdt, node, "fsl,tuning-step", 1);
1412 priv->tuning_step = val;
1413 val = fdtdec_get_int(fdt, node, "fsl,tuning-start-tap",
1414 ESDHC_TUNING_START_TAP_DEFAULT);
1415 priv->tuning_start_tap = val;
1416 val = fdtdec_get_int(fdt, node, "fsl,strobe-dll-delay-target",
1417 ESDHC_STROBE_DLL_CTRL_SLV_DLY_TARGET_DEFAULT);
1418 priv->strobe_dll_delay_target = val;
Haibo Chen8974ff12021-03-22 18:55:38 +08001419 val = fdtdec_get_int(fdt, node, "fsl,signal-voltage-switch-extra-delay-ms", 0);
1420 priv->signal_voltage_switch_extra_delay_ms = val;
Yangbo Lufa33d202019-06-21 11:42:27 +08001421
Fabio Estevam29230f32020-01-06 20:11:27 -03001422 if (dev_read_bool(dev, "broken-cd"))
1423 priv->broken_cd = 1;
1424
Yangbo Lufa33d202019-06-21 11:42:27 +08001425 if (dev_read_prop(dev, "fsl,wp-controller", NULL)) {
1426 priv->wp_enable = 1;
1427 } else {
1428 priv->wp_enable = 0;
Yangbo Lufa33d202019-06-21 11:42:27 +08001429 }
1430
Sean Andersond39aa732021-11-23 15:03:40 -05001431#if CONFIG_IS_ENABLED(DM_GPIO)
1432 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio,
1433 GPIOD_IS_IN);
1434 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio,
1435 GPIOD_IS_IN);
1436#endif
1437
Yangbo Lufa33d202019-06-21 11:42:27 +08001438 priv->vs18_enable = 0;
1439
Sean Anderson00e0cd72021-11-23 15:03:46 -05001440 if (!CONFIG_IS_ENABLED(DM_REGULATOR))
1441 return 0;
1442
Yangbo Lufa33d202019-06-21 11:42:27 +08001443 /*
1444 * If emmc I/O has a fixed voltage at 1.8V, this must be provided,
1445 * otherwise, emmc will work abnormally.
1446 */
1447 ret = device_get_supply_regulator(dev, "vqmmc-supply", &vqmmc_dev);
1448 if (ret) {
1449 dev_dbg(dev, "no vqmmc-supply\n");
1450 } else {
Marek Vasut406df852020-05-22 18:19:08 +02001451 priv->vqmmc_dev = vqmmc_dev;
Yangbo Lufa33d202019-06-21 11:42:27 +08001452 ret = regulator_set_enable(vqmmc_dev, true);
1453 if (ret) {
1454 dev_err(dev, "fail to enable vqmmc-supply\n");
1455 return ret;
1456 }
1457
1458 if (regulator_get_value(vqmmc_dev) == 1800000)
1459 priv->vs18_enable = 1;
1460 }
Walter Lozano23721772020-07-29 12:31:17 -03001461 return 0;
1462}
1463
1464static int fsl_esdhc_probe(struct udevice *dev)
1465{
1466 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -07001467 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Walter Lozano23721772020-07-29 12:31:17 -03001468 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1469 struct esdhc_soc_data *data =
1470 (struct esdhc_soc_data *)dev_get_driver_data(dev);
1471 struct mmc *mmc;
Walter Lozano23721772020-07-29 12:31:17 -03001472 int ret;
1473
1474#if CONFIG_IS_ENABLED(OF_PLATDATA)
1475 struct dtd_fsl_esdhc *dtplat = &plat->dtplat;
Walter Lozano23721772020-07-29 12:31:17 -03001476
1477 priv->esdhc_regs = map_sysmem(dtplat->reg[0], dtplat->reg[1]);
Walter Lozano7142ff92020-07-29 12:31:19 -03001478
1479 if (dtplat->non_removable)
Sean Andersond39aa732021-11-23 15:03:40 -05001480 plat->cfg.host_caps |= MMC_CAP_NONREMOVABLE;
Walter Lozano7142ff92020-07-29 12:31:19 -03001481 else
Sean Andersond39aa732021-11-23 15:03:40 -05001482 plat->cfg.host_caps &= ~MMC_CAP_NONREMOVABLE;
Walter Lozano7142ff92020-07-29 12:31:19 -03001483
Sean Andersond39aa732021-11-23 15:03:40 -05001484 if (CONFIG_IS_ENABLED(DM_GPIO) && !dtplat->non_removable) {
Walter Lozano7142ff92020-07-29 12:31:19 -03001485 struct udevice *gpiodev;
Walter Lozano7142ff92020-07-29 12:31:19 -03001486
Simon Glasscc469b72021-03-15 17:25:28 +13001487 ret = device_get_by_ofplat_idx(dtplat->cd_gpios->idx, &gpiodev);
Walter Lozano7142ff92020-07-29 12:31:19 -03001488 if (ret)
1489 return ret;
1490
1491 ret = gpio_dev_request_index(gpiodev, gpiodev->name, "cd-gpios",
1492 dtplat->cd_gpios->arg[0], GPIOD_IS_IN,
1493 dtplat->cd_gpios->arg[1], &priv->cd_gpio);
1494
1495 if (ret)
1496 return ret;
1497 }
Walter Lozano23721772020-07-29 12:31:17 -03001498#endif
1499
1500 if (data)
1501 priv->flags = data->flags;
Yangbo Lufa33d202019-06-21 11:42:27 +08001502
Yangbo Lufa33d202019-06-21 11:42:27 +08001503 /*
1504 * TODO:
1505 * Because lack of clk driver, if SDHC clk is not enabled,
1506 * need to enable it first before this driver is invoked.
1507 *
1508 * we use MXC_ESDHC_CLK to get clk freq.
1509 * If one would like to make this function work,
1510 * the aliases should be provided in dts as this:
1511 *
1512 * aliases {
1513 * mmc0 = &usdhc1;
1514 * mmc1 = &usdhc2;
1515 * mmc2 = &usdhc3;
1516 * mmc3 = &usdhc4;
1517 * };
1518 * Then if your board only supports mmc2 and mmc3, but we can
1519 * correctly get the seq as 2 and 3, then let mxc_get_clock
1520 * work as expected.
1521 */
1522
Giulio Benettia820bed2020-01-10 15:51:45 +01001523#if CONFIG_IS_ENABLED(CLK)
1524 /* Assigned clock already set clock */
1525 ret = clk_get_by_name(dev, "per", &priv->per_clk);
1526 if (ret) {
1527 printf("Failed to get per_clk\n");
1528 return ret;
Yangbo Lufa33d202019-06-21 11:42:27 +08001529 }
Giulio Benettia820bed2020-01-10 15:51:45 +01001530 ret = clk_enable(&priv->per_clk);
1531 if (ret) {
1532 printf("Failed to enable per_clk\n");
1533 return ret;
1534 }
1535
1536 priv->sdhc_clk = clk_get_rate(&priv->per_clk);
1537#else
Ye Lie0709af2022-09-24 00:29:33 +02001538 init_clk_usdhc(dev_seq(dev));
1539
Simon Glass8b85dfc2020-12-16 21:20:07 -07001540 priv->sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK + dev_seq(dev));
Giulio Benettia820bed2020-01-10 15:51:45 +01001541 if (priv->sdhc_clk <= 0) {
1542 dev_err(dev, "Unable to get clk for %s\n", dev->name);
1543 return -EINVAL;
1544 }
1545#endif
Yangbo Lufa33d202019-06-21 11:42:27 +08001546
1547 ret = fsl_esdhc_init(priv, plat);
1548 if (ret) {
1549 dev_err(dev, "fsl_esdhc_init failure\n");
1550 return ret;
1551 }
1552
Simon Glassdcfc42b2021-08-07 07:24:06 -06001553 if (CONFIG_IS_ENABLED(OF_REAL)) {
1554 ret = mmc_of_parse(dev, &plat->cfg);
1555 if (ret)
1556 return ret;
1557 }
Peng Fanb0155ac2019-07-10 09:35:24 +00001558
Yangbo Lufa33d202019-06-21 11:42:27 +08001559 mmc = &plat->mmc;
1560 mmc->cfg = &plat->cfg;
1561 mmc->dev = dev;
Yangbo Lufa33d202019-06-21 11:42:27 +08001562
1563 upriv->mmc = mmc;
1564
1565 return esdhc_init_common(priv, mmc);
1566}
1567
Yangbo Lufa33d202019-06-21 11:42:27 +08001568static int fsl_esdhc_get_cd(struct udevice *dev)
1569{
Sean Andersond39aa732021-11-23 15:03:40 -05001570 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001571 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1572
Sean Andersond39aa732021-11-23 15:03:40 -05001573 if (plat->cfg.host_caps & MMC_CAP_NONREMOVABLE)
1574 return 1;
1575
Yangbo Lufa33d202019-06-21 11:42:27 +08001576 return esdhc_getcd_common(priv);
1577}
1578
1579static int fsl_esdhc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
1580 struct mmc_data *data)
1581{
Simon Glassc69cda22020-12-03 16:55:20 -07001582 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001583 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1584
1585 return esdhc_send_cmd_common(priv, &plat->mmc, cmd, data);
1586}
1587
1588static int fsl_esdhc_set_ios(struct udevice *dev)
1589{
Simon Glassc69cda22020-12-03 16:55:20 -07001590 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001591 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1592
1593 return esdhc_set_ios_common(priv, &plat->mmc);
1594}
1595
Sean Anderson00e0cd72021-11-23 15:03:46 -05001596static int __maybe_unused fsl_esdhc_set_enhanced_strobe(struct udevice *dev)
Peng Fane9c22552019-07-10 09:35:26 +00001597{
1598 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
1599 struct fsl_esdhc *regs = priv->esdhc_regs;
1600 u32 m;
1601
Haibo Chenc7f44182020-09-30 15:52:23 +08001602 m = esdhc_read32(&regs->mixctrl);
Peng Fane9c22552019-07-10 09:35:26 +00001603 m |= MIX_CTRL_HS400_ES;
Haibo Chenc7f44182020-09-30 15:52:23 +08001604 esdhc_write32(&regs->mixctrl, m);
Peng Fane9c22552019-07-10 09:35:26 +00001605
1606 return 0;
1607}
Peng Fane9c22552019-07-10 09:35:26 +00001608
Haibo Chenb5874b52020-11-05 14:57:13 +08001609static int fsl_esdhc_wait_dat0(struct udevice *dev, int state,
1610 int timeout_us)
1611{
Haibo Chenb5874b52020-11-05 14:57:13 +08001612 struct fsl_esdhc_priv *priv = dev_get_priv(dev);
Haibo Chenb5874b52020-11-05 14:57:13 +08001613
Loic Poulain12a29d32022-05-26 16:37:22 +02001614 return esdhc_wait_dat0_common(priv, state, timeout_us);
Haibo Chenb5874b52020-11-05 14:57:13 +08001615}
1616
Yangbo Lufa33d202019-06-21 11:42:27 +08001617static const struct dm_mmc_ops fsl_esdhc_ops = {
1618 .get_cd = fsl_esdhc_get_cd,
1619 .send_cmd = fsl_esdhc_send_cmd,
1620 .set_ios = fsl_esdhc_set_ios,
1621#ifdef MMC_SUPPORTS_TUNING
1622 .execute_tuning = fsl_esdhc_execute_tuning,
1623#endif
Peng Fane9c22552019-07-10 09:35:26 +00001624#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1625 .set_enhanced_strobe = fsl_esdhc_set_enhanced_strobe,
1626#endif
Haibo Chenb5874b52020-11-05 14:57:13 +08001627 .wait_dat0 = fsl_esdhc_wait_dat0,
Yangbo Lufa33d202019-06-21 11:42:27 +08001628};
Yangbo Lufa33d202019-06-21 11:42:27 +08001629
1630static struct esdhc_soc_data usdhc_imx7d_data = {
1631 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING
1632 | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200
1633 | ESDHC_FLAG_HS400,
Yangbo Lufa33d202019-06-21 11:42:27 +08001634};
1635
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001636static struct esdhc_soc_data usdhc_imx7ulp_data = {
1637 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING
Oleksandr Suvorovfa0223a2021-09-08 21:56:43 +03001638 | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200
1639 | ESDHC_FLAG_HS400,
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001640};
1641
Peng Fan609ba122019-07-10 09:35:28 +00001642static struct esdhc_soc_data usdhc_imx8qm_data = {
1643 .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING |
1644 ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 |
1645 ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES,
1646};
1647
Yangbo Lufa33d202019-06-21 11:42:27 +08001648static const struct udevice_id fsl_esdhc_ids[] = {
Fabio Estevamc3e6f992021-02-15 08:58:15 -03001649 { .compatible = "fsl,imx51-esdhc", },
Yangbo Lufa33d202019-06-21 11:42:27 +08001650 { .compatible = "fsl,imx53-esdhc", },
1651 { .compatible = "fsl,imx6ul-usdhc", },
1652 { .compatible = "fsl,imx6sx-usdhc", },
1653 { .compatible = "fsl,imx6sl-usdhc", },
1654 { .compatible = "fsl,imx6q-usdhc", },
1655 { .compatible = "fsl,imx7d-usdhc", .data = (ulong)&usdhc_imx7d_data,},
Jorge Ramirez-Ortizc1412cb2021-09-08 21:56:42 +03001656 { .compatible = "fsl,imx7ulp-usdhc", .data = (ulong)&usdhc_imx7ulp_data,},
Peng Fan609ba122019-07-10 09:35:28 +00001657 { .compatible = "fsl,imx8qm-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Peng Fanf65d0842019-11-04 17:31:17 +08001658 { .compatible = "fsl,imx8mm-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
1659 { .compatible = "fsl,imx8mn-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Marek Vasutc8009c12022-03-10 21:27:04 +01001660 { .compatible = "fsl,imx8mp-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Peng Fanf65d0842019-11-04 17:31:17 +08001661 { .compatible = "fsl,imx8mq-usdhc", .data = (ulong)&usdhc_imx8qm_data,},
Giulio Benetti6a63a872020-01-10 15:51:46 +01001662 { .compatible = "fsl,imxrt-usdhc", },
Yangbo Lufa33d202019-06-21 11:42:27 +08001663 { .compatible = "fsl,esdhc", },
1664 { /* sentinel */ }
1665};
1666
Yangbo Lufa33d202019-06-21 11:42:27 +08001667static int fsl_esdhc_bind(struct udevice *dev)
1668{
Simon Glassc69cda22020-12-03 16:55:20 -07001669 struct fsl_esdhc_plat *plat = dev_get_plat(dev);
Yangbo Lufa33d202019-06-21 11:42:27 +08001670
1671 return mmc_bind(dev, &plat->mmc, &plat->cfg);
1672}
Yangbo Lufa33d202019-06-21 11:42:27 +08001673
1674U_BOOT_DRIVER(fsl_esdhc) = {
Walter Lozano45154f02020-07-29 12:31:16 -03001675 .name = "fsl_esdhc",
Yangbo Lufa33d202019-06-21 11:42:27 +08001676 .id = UCLASS_MMC,
1677 .of_match = fsl_esdhc_ids,
Simon Glassd1998a92020-12-03 16:55:21 -07001678 .of_to_plat = fsl_esdhc_of_to_plat,
Yangbo Lufa33d202019-06-21 11:42:27 +08001679 .ops = &fsl_esdhc_ops,
Yangbo Lufa33d202019-06-21 11:42:27 +08001680 .bind = fsl_esdhc_bind,
Yangbo Lufa33d202019-06-21 11:42:27 +08001681 .probe = fsl_esdhc_probe,
Simon Glasscaa4daa2020-12-03 16:55:18 -07001682 .plat_auto = sizeof(struct fsl_esdhc_plat),
Simon Glass41575d82020-12-03 16:55:17 -07001683 .priv_auto = sizeof(struct fsl_esdhc_priv),
Yangbo Lufa33d202019-06-21 11:42:27 +08001684};
Walter Lozano23721772020-07-29 12:31:17 -03001685
Simon Glassbdf8fd72020-12-28 20:34:57 -07001686DM_DRIVER_ALIAS(fsl_esdhc, fsl_imx6q_usdhc)
Yangbo Lufa33d202019-06-21 11:42:27 +08001687#endif