1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2009 SAMSUNG Electronics
4 * Minkyu Kang <mk7.kang@samsung.com>
5 * Jaehoon Chung <jh80.chung@samsung.com>
6 * Portions Copyright 2011-2019 NVIDIA Corporation
17 #include <asm/arch-tegra/tegra_mmc.h>
18 #include <linux/bitops.h>
19 #include <linux/delay.h>
20 #include <linux/err.h>
21 #if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA210)
22 #include <asm/arch/clock.h>
25 struct tegra_mmc_plat {
26 struct mmc_config cfg;
30 struct tegra_mmc_priv {
31 struct tegra_mmc *reg;
32 struct reset_ctl reset_ctl;
34 struct gpio_desc cd_gpio; /* Change Detect GPIO */
35 struct gpio_desc pwr_gpio; /* Power GPIO */
36 struct gpio_desc wp_gpio; /* Write Protect GPIO */
37 unsigned int version; /* SDHCI spec. version */
38 unsigned int clock; /* Current clock (MHz) */
39 int mmc_id; /* peripheral id */
42 static void tegra_mmc_set_power(struct tegra_mmc_priv *priv,
46 debug("%s: power = %x\n", __func__, power);
48 if (power != (unsigned short)-1) {
51 pwr = TEGRA_MMC_PWRCTL_SD_BUS_VOLTAGE_V1_8;
55 pwr = TEGRA_MMC_PWRCTL_SD_BUS_VOLTAGE_V3_0;
59 pwr = TEGRA_MMC_PWRCTL_SD_BUS_VOLTAGE_V3_3;
63 debug("%s: pwr = %X\n", __func__, pwr);
65 /* Set the bus voltage first (if any) */
66 writeb(pwr, &priv->reg->pwrcon);
70 /* Now enable bus power */
71 pwr |= TEGRA_MMC_PWRCTL_SD_BUS_POWER;
72 writeb(pwr, &priv->reg->pwrcon);
75 static void tegra_mmc_prepare_data(struct tegra_mmc_priv *priv,
76 struct mmc_data *data,
77 struct bounce_buffer *bbstate)
82 debug("buf: %p (%p), data->blocks: %u, data->blocksize: %u\n",
83 bbstate->bounce_buffer, bbstate->user_buffer, data->blocks,
86 writel((u32)(unsigned long)bbstate->bounce_buffer, &priv->reg->sysad);
91 * 10 = Selects 32-bit Address ADMA2
92 * 11 = Selects 64-bit Address ADMA2
94 ctrl = readb(&priv->reg->hostctl);
95 ctrl &= ~TEGRA_MMC_HOSTCTL_DMASEL_MASK;
96 ctrl |= TEGRA_MMC_HOSTCTL_DMASEL_SDMA;
97 writeb(ctrl, &priv->reg->hostctl);
99 /* We do not handle DMA boundaries, so set it to max (512 KiB) */
100 writew((7 << 12) | (data->blocksize & 0xFFF), &priv->reg->blksize);
101 writew(data->blocks, &priv->reg->blkcnt);
104 static void tegra_mmc_set_transfer_mode(struct tegra_mmc_priv *priv,
105 struct mmc_data *data)
108 debug(" mmc_set_transfer_mode called\n");
111 * MUL1SIN0[5] : Multi/Single Block Select
112 * RD1WT0[4] : Data Transfer Direction Select
115 * ENACMD12[2] : Auto CMD12 Enable
116 * ENBLKCNT[1] : Block Count Enable
117 * ENDMA[0] : DMA Enable
119 mode = (TEGRA_MMC_TRNMOD_DMA_ENABLE |
120 TEGRA_MMC_TRNMOD_BLOCK_COUNT_ENABLE);
122 if (data->blocks > 1)
123 mode |= TEGRA_MMC_TRNMOD_MULTI_BLOCK_SELECT;
125 if (data->flags & MMC_DATA_READ)
126 mode |= TEGRA_MMC_TRNMOD_DATA_XFER_DIR_SEL_READ;
128 writew(mode, &priv->reg->trnmod);
131 static int tegra_mmc_wait_inhibit(struct tegra_mmc_priv *priv,
133 struct mmc_data *data,
134 unsigned int timeout)
138 * CMDINHDAT[1] : Command Inhibit (DAT)
139 * CMDINHCMD[0] : Command Inhibit (CMD)
141 unsigned int mask = TEGRA_MMC_PRNSTS_CMD_INHIBIT_CMD;
144 * We shouldn't wait for data inhibit for stop commands, even
145 * though they might use busy signaling
147 if ((data == NULL) && (cmd->resp_type & MMC_RSP_BUSY))
148 mask |= TEGRA_MMC_PRNSTS_CMD_INHIBIT_DAT;
150 while (readl(&priv->reg->prnsts) & mask) {
152 printf("%s: timeout error\n", __func__);
162 static int tegra_mmc_send_cmd_bounced(struct udevice *dev, struct mmc_cmd *cmd,
163 struct mmc_data *data,
164 struct bounce_buffer *bbstate)
166 struct tegra_mmc_priv *priv = dev_get_priv(dev);
169 unsigned int mask = 0;
170 unsigned int retry = 0x100000;
171 debug(" mmc_send_cmd called\n");
173 result = tegra_mmc_wait_inhibit(priv, cmd, data, 10 /* ms */);
179 tegra_mmc_prepare_data(priv, data, bbstate);
181 debug("cmd->arg: %08x\n", cmd->cmdarg);
182 writel(cmd->cmdarg, &priv->reg->argument);
185 tegra_mmc_set_transfer_mode(priv, data);
187 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
192 * CMDIDX[13:8] : Command index
193 * DATAPRNT[5] : Data Present Select
194 * ENCMDIDX[4] : Command Index Check Enable
195 * ENCMDCRC[3] : Command CRC Check Enable
200 * 11 = Length 48 Check busy after response
202 if (!(cmd->resp_type & MMC_RSP_PRESENT))
203 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_NO_RESPONSE;
204 else if (cmd->resp_type & MMC_RSP_136)
205 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_136;
206 else if (cmd->resp_type & MMC_RSP_BUSY)
207 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48_BUSY;
209 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48;
211 if (cmd->resp_type & MMC_RSP_CRC)
212 flags |= TEGRA_MMC_TRNMOD_CMD_CRC_CHECK;
213 if (cmd->resp_type & MMC_RSP_OPCODE)
214 flags |= TEGRA_MMC_TRNMOD_CMD_INDEX_CHECK;
216 flags |= TEGRA_MMC_TRNMOD_DATA_PRESENT_SELECT_DATA_TRANSFER;
218 debug("cmd: %d\n", cmd->cmdidx);
220 writew((cmd->cmdidx << 8) | flags, &priv->reg->cmdreg);
222 for (i = 0; i < retry; i++) {
223 mask = readl(&priv->reg->norintsts);
224 /* Command Complete */
225 if (mask & TEGRA_MMC_NORINTSTS_CMD_COMPLETE) {
227 writel(mask, &priv->reg->norintsts);
233 printf("%s: waiting for status update\n", __func__);
234 writel(mask, &priv->reg->norintsts);
238 if (mask & TEGRA_MMC_NORINTSTS_CMD_TIMEOUT) {
240 debug("timeout: %08x cmd %d\n", mask, cmd->cmdidx);
241 writel(mask, &priv->reg->norintsts);
243 } else if (mask & TEGRA_MMC_NORINTSTS_ERR_INTERRUPT) {
244 /* Error Interrupt */
245 debug("error: %08x cmd %d\n", mask, cmd->cmdidx);
246 writel(mask, &priv->reg->norintsts);
250 if (cmd->resp_type & MMC_RSP_PRESENT) {
251 if (cmd->resp_type & MMC_RSP_136) {
252 /* CRC is stripped so we need to do some shifting. */
253 for (i = 0; i < 4; i++) {
254 unsigned long offset = (unsigned long)
255 (&priv->reg->rspreg3 - i);
256 cmd->response[i] = readl(offset) << 8;
262 debug("cmd->resp[%d]: %08x\n",
263 i, cmd->response[i]);
265 } else if (cmd->resp_type & MMC_RSP_BUSY) {
266 for (i = 0; i < retry; i++) {
267 /* PRNTDATA[23:20] : DAT[3:0] Line Signal */
268 if (readl(&priv->reg->prnsts)
269 & (1 << 20)) /* DAT[0] */
274 printf("%s: card is still busy\n", __func__);
275 writel(mask, &priv->reg->norintsts);
279 cmd->response[0] = readl(&priv->reg->rspreg0);
280 debug("cmd->resp[0]: %08x\n", cmd->response[0]);
282 cmd->response[0] = readl(&priv->reg->rspreg0);
283 debug("cmd->resp[0]: %08x\n", cmd->response[0]);
288 unsigned long start = get_timer(0);
291 mask = readl(&priv->reg->norintsts);
293 if (mask & TEGRA_MMC_NORINTSTS_ERR_INTERRUPT) {
294 /* Error Interrupt */
295 writel(mask, &priv->reg->norintsts);
296 printf("%s: error during transfer: 0x%08x\n",
299 } else if (mask & TEGRA_MMC_NORINTSTS_DMA_INTERRUPT) {
301 * DMA Interrupt, restart the transfer where
302 * it was interrupted.
304 unsigned int address = readl(&priv->reg->sysad);
307 writel(TEGRA_MMC_NORINTSTS_DMA_INTERRUPT,
308 &priv->reg->norintsts);
309 writel(address, &priv->reg->sysad);
310 } else if (mask & TEGRA_MMC_NORINTSTS_XFER_COMPLETE) {
311 /* Transfer Complete */
312 debug("r/w is done\n");
314 } else if (get_timer(start) > 8000UL) {
315 writel(mask, &priv->reg->norintsts);
316 printf("%s: MMC Timeout\n"
317 " Interrupt status 0x%08x\n"
318 " Interrupt status enable 0x%08x\n"
319 " Interrupt signal enable 0x%08x\n"
320 " Present status 0x%08x\n",
322 readl(&priv->reg->norintstsen),
323 readl(&priv->reg->norintsigen),
324 readl(&priv->reg->prnsts));
328 writel(mask, &priv->reg->norintsts);
335 static int tegra_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
336 struct mmc_data *data)
339 unsigned int bbflags;
341 struct bounce_buffer bbstate;
345 if (data->flags & MMC_DATA_READ) {
347 bbflags = GEN_BB_WRITE;
349 buf = (void *)data->src;
350 bbflags = GEN_BB_READ;
352 len = data->blocks * data->blocksize;
354 bounce_buffer_start(&bbstate, buf, len, bbflags);
357 ret = tegra_mmc_send_cmd_bounced(dev, cmd, data, &bbstate);
360 bounce_buffer_stop(&bbstate);
365 static void tegra_mmc_change_clock(struct tegra_mmc_priv *priv, uint clock)
370 unsigned long timeout;
372 debug(" mmc_change_clock called\n");
375 * Change Tegra SDMMCx clock divisor here. Source is PLLP_OUT0
380 rate = clk_set_rate(&priv->clk, clock);
381 div = (rate + clock - 1) / clock;
383 #if defined(CONFIG_TEGRA210)
384 if (priv->mmc_id == PERIPH_ID_SDMMC1 && clock <= 400000) {
385 /* clock_adjust_periph_pll_div() chooses a 'bad' clock
386 * on SDMMC1 T210, so skip it here and force a clock
387 * that's been spec'd in the table in the TRM for
388 * card-detect (400KHz).
390 uint effective_rate = clock_adjust_periph_pll_div(priv->mmc_id,
391 CLOCK_ID_PERIPH, 24727273, NULL);
394 debug("%s: WAR: Using SDMMC1 clock of %u, div %d to achieve %dHz card clock ...\n",
395 __func__, effective_rate, div, clock);
397 clock_adjust_periph_pll_div(priv->mmc_id, CLOCK_ID_PERIPH,
401 debug("div = %d\n", div);
403 writew(0, &priv->reg->clkcon);
407 * SELFREQ[15:8] : base clock divided by value
408 * ENSDCLK[2] : SD Clock Enable
409 * STBLINTCLK[1] : Internal Clock Stable
410 * ENINTCLK[0] : Internal Clock Enable
413 clk = ((div << TEGRA_MMC_CLKCON_SDCLK_FREQ_SEL_SHIFT) |
414 TEGRA_MMC_CLKCON_INTERNAL_CLOCK_ENABLE);
415 writew(clk, &priv->reg->clkcon);
419 while (!(readw(&priv->reg->clkcon) &
420 TEGRA_MMC_CLKCON_INTERNAL_CLOCK_STABLE)) {
422 printf("%s: timeout error\n", __func__);
429 clk |= TEGRA_MMC_CLKCON_SD_CLOCK_ENABLE;
430 writew(clk, &priv->reg->clkcon);
432 debug("mmc_change_clock: clkcon = %08X\n", clk);
438 static int tegra_mmc_set_ios(struct udevice *dev)
440 struct tegra_mmc_priv *priv = dev_get_priv(dev);
441 struct mmc *mmc = mmc_get_mmc_dev(dev);
443 debug(" mmc_set_ios called\n");
445 debug("bus_width: %x, clock: %d\n", mmc->bus_width, mmc->clock);
447 /* Change clock first */
448 tegra_mmc_change_clock(priv, mmc->clock);
450 ctrl = readb(&priv->reg->hostctl);
454 * 0 = Depend on WIDE4
460 if (mmc->bus_width == 8)
462 else if (mmc->bus_width == 4)
465 ctrl &= ~(1 << 1 | 1 << 5);
467 writeb(ctrl, &priv->reg->hostctl);
468 debug("mmc_set_ios: hostctl = %08X\n", ctrl);
473 static void tegra_mmc_pad_init(struct tegra_mmc_priv *priv)
475 #if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA210)
479 int id = priv->mmc_id;
481 debug("%s: sdmmc address = %p, id = %d\n", __func__,
484 /* Set the pad drive strength for SDMMC1 or 3 only */
485 if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
486 debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
491 val = readl(&priv->reg->sdmemcmppadctl);
493 val |= MEMCOMP_PADCTRL_VREF;
494 writel(val, &priv->reg->sdmemcmppadctl);
496 /* Disable SD Clock Enable before running auto-cal as per TRM */
497 clk_con = readw(&priv->reg->clkcon);
498 debug("%s: CLOCK_CONTROL = 0x%04X\n", __func__, clk_con);
499 clk_con &= ~TEGRA_MMC_CLKCON_SD_CLOCK_ENABLE;
500 writew(clk_con, &priv->reg->clkcon);
502 val = readl(&priv->reg->autocalcfg);
504 val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET;
505 writel(val, &priv->reg->autocalcfg);
506 val |= AUTO_CAL_START | AUTO_CAL_ENABLE;
507 writel(val, &priv->reg->autocalcfg);
508 debug("%s: AUTO_CAL_CFG = 0x%08X\n", __func__, val);
510 timeout = 100; /* 10 mSec max (100*100uS) */
512 val = readl(&priv->reg->autocalsts);
514 } while ((val & AUTO_CAL_ACTIVE) && --timeout);
515 val = readl(&priv->reg->autocalsts);
516 debug("%s: Final AUTO_CAL_STATUS = 0x%08X, timeout = %d\n",
517 __func__, val, timeout);
519 /* Re-enable SD Clock Enable when auto-cal is done */
520 clk_con |= TEGRA_MMC_CLKCON_SD_CLOCK_ENABLE;
521 writew(clk_con, &priv->reg->clkcon);
522 clk_con = readw(&priv->reg->clkcon);
523 debug("%s: final CLOCK_CONTROL = 0x%04X\n", __func__, clk_con);
526 printf("%s: Warning: Autocal timed out!\n", __func__);
527 /* TBD: Set CFG2TMC_SDMMC1_PAD_CAL_DRV* regs here */
530 #if defined(CONFIG_TEGRA210)
531 u32 tap_value, trim_value;
533 /* Set tap/trim values for SDMMC1/3 @ <48MHz here */
534 val = readl(&priv->reg->venspictl); /* aka VENDOR_SYS_SW_CNTL */
535 val &= IO_TRIM_BYPASS_MASK;
536 if (id == PERIPH_ID_SDMMC1) {
537 tap_value = 4; /* default */
541 } else { /* SDMMC3 */
546 val = readl(&priv->reg->venclkctl);
547 val &= ~TRIM_VAL_MASK;
548 val |= (trim_value << TRIM_VAL_SHIFT);
549 val &= ~TAP_VAL_MASK;
550 val |= (tap_value << TAP_VAL_SHIFT);
551 writel(val, &priv->reg->venclkctl);
552 debug("%s: VENDOR_CLOCK_CNTRL = 0x%08X\n", __func__, val);
554 #endif /* T30/T210 */
557 static void tegra_mmc_reset(struct tegra_mmc_priv *priv, struct mmc *mmc)
559 unsigned int timeout;
560 debug(" mmc_reset called\n");
563 * RSTALL[0] : Software reset for all
567 writeb(TEGRA_MMC_SWRST_SW_RESET_FOR_ALL, &priv->reg->swrst);
571 /* Wait max 100 ms */
574 /* hw clears the bit when it's done */
575 while (readb(&priv->reg->swrst) & TEGRA_MMC_SWRST_SW_RESET_FOR_ALL) {
577 printf("%s: timeout error\n", __func__);
584 /* Set SD bus voltage & enable bus power */
585 tegra_mmc_set_power(priv, fls(mmc->cfg->voltages) - 1);
586 debug("%s: power control = %02X, host control = %02X\n", __func__,
587 readb(&priv->reg->pwrcon), readb(&priv->reg->hostctl));
589 /* Make sure SDIO pads are set up */
590 tegra_mmc_pad_init(priv);
593 static int tegra_mmc_init(struct udevice *dev)
595 struct tegra_mmc_priv *priv = dev_get_priv(dev);
596 struct mmc *mmc = mmc_get_mmc_dev(dev);
598 debug(" tegra_mmc_init called\n");
600 #if defined(CONFIG_TEGRA210)
601 priv->mmc_id = clock_decode_periph_id(dev);
602 if (priv->mmc_id == PERIPH_ID_NONE) {
603 printf("%s: Missing/invalid peripheral ID\n", __func__);
607 tegra_mmc_reset(priv, mmc);
609 #if defined(CONFIG_TEGRA124_MMC_DISABLE_EXT_LOOPBACK)
611 * Disable the external clock loopback and use the internal one on
612 * SDMMC3 as per the SDMMC_VENDOR_MISC_CNTRL_0 register's SDMMC_SPARE1
613 * bits being set to 0xfffd according to the TRM.
615 * TODO(marcel.ziswiler@toradex.com): Move to device tree controlled
616 * approach once proper kernel integration made it mainline.
618 if (priv->reg == (void *)0x700b0400) {
619 mask = readl(&priv->reg->venmiscctl);
620 mask &= ~TEGRA_MMC_MISCON_ENABLE_EXT_LOOPBACK;
621 writel(mask, &priv->reg->venmiscctl);
625 priv->version = readw(&priv->reg->hcver);
626 debug("host version = %x\n", priv->version);
629 writel(0xffffffff, &priv->reg->norintstsen);
630 writel(0xffffffff, &priv->reg->norintsigen);
632 writeb(0xe, &priv->reg->timeoutcon); /* TMCLK * 2^27 */
634 * NORMAL Interrupt Status Enable Register init
635 * [5] ENSTABUFRDRDY : Buffer Read Ready Status Enable
636 * [4] ENSTABUFWTRDY : Buffer write Ready Status Enable
637 * [3] ENSTADMAINT : DMA boundary interrupt
638 * [1] ENSTASTANSCMPLT : Transfre Complete Status Enable
639 * [0] ENSTACMDCMPLT : Command Complete Status Enable
641 mask = readl(&priv->reg->norintstsen);
643 mask |= (TEGRA_MMC_NORINTSTSEN_CMD_COMPLETE |
644 TEGRA_MMC_NORINTSTSEN_XFER_COMPLETE |
645 TEGRA_MMC_NORINTSTSEN_DMA_INTERRUPT |
646 TEGRA_MMC_NORINTSTSEN_BUFFER_WRITE_READY |
647 TEGRA_MMC_NORINTSTSEN_BUFFER_READ_READY);
648 writel(mask, &priv->reg->norintstsen);
651 * NORMAL Interrupt Signal Enable Register init
652 * [1] ENSTACMDCMPLT : Transfer Complete Signal Enable
654 mask = readl(&priv->reg->norintsigen);
656 mask |= TEGRA_MMC_NORINTSIGEN_XFER_COMPLETE;
657 writel(mask, &priv->reg->norintsigen);
662 static int tegra_mmc_getcd(struct udevice *dev)
664 struct tegra_mmc_priv *priv = dev_get_priv(dev);
666 debug("tegra_mmc_getcd called\n");
668 if (dm_gpio_is_valid(&priv->cd_gpio))
669 return dm_gpio_get_value(&priv->cd_gpio);
674 static const struct dm_mmc_ops tegra_mmc_ops = {
675 .send_cmd = tegra_mmc_send_cmd,
676 .set_ios = tegra_mmc_set_ios,
677 .get_cd = tegra_mmc_getcd,
680 static int tegra_mmc_probe(struct udevice *dev)
682 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
683 struct tegra_mmc_plat *plat = dev_get_plat(dev);
684 struct tegra_mmc_priv *priv = dev_get_priv(dev);
685 struct mmc_config *cfg = &plat->cfg;
688 cfg->name = dev->name;
690 bus_width = dev_read_u32_default(dev, "bus-width", 1);
692 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
695 cfg->host_caps |= MMC_MODE_8BIT;
697 cfg->host_caps |= MMC_MODE_4BIT;
698 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
701 * min freq is for card identification, and is the highest
702 * low-speed SDIO card frequency (actually 400KHz)
703 * max freq is highest HS eMMC clock as per the SD/MMC spec
707 cfg->f_max = 48000000;
709 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
711 priv->reg = (void *)dev_read_addr(dev);
713 ret = reset_get_by_name(dev, "sdhci", &priv->reset_ctl);
715 debug("reset_get_by_name() failed: %d\n", ret);
718 ret = clk_get_by_index(dev, 0, &priv->clk);
720 debug("clk_get_by_index() failed: %d\n", ret);
724 ret = reset_assert(&priv->reset_ctl);
727 ret = clk_enable(&priv->clk);
730 ret = clk_set_rate(&priv->clk, 20000000);
731 if (IS_ERR_VALUE(ret))
733 ret = reset_deassert(&priv->reset_ctl);
737 /* These GPIOs are optional */
738 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
739 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
740 gpio_request_by_name(dev, "power-gpios", 0, &priv->pwr_gpio,
742 if (dm_gpio_is_valid(&priv->pwr_gpio))
743 dm_gpio_set_value(&priv->pwr_gpio, 1);
745 upriv->mmc = &plat->mmc;
747 return tegra_mmc_init(dev);
750 static int tegra_mmc_bind(struct udevice *dev)
752 struct tegra_mmc_plat *plat = dev_get_plat(dev);
754 return mmc_bind(dev, &plat->mmc, &plat->cfg);
757 static const struct udevice_id tegra_mmc_ids[] = {
758 { .compatible = "nvidia,tegra20-sdhci" },
759 { .compatible = "nvidia,tegra30-sdhci" },
760 { .compatible = "nvidia,tegra114-sdhci" },
761 { .compatible = "nvidia,tegra124-sdhci" },
762 { .compatible = "nvidia,tegra210-sdhci" },
763 { .compatible = "nvidia,tegra186-sdhci" },
767 U_BOOT_DRIVER(tegra_mmc_drv) = {
770 .of_match = tegra_mmc_ids,
771 .bind = tegra_mmc_bind,
772 .probe = tegra_mmc_probe,
773 .ops = &tegra_mmc_ops,
774 .plat_auto = sizeof(struct tegra_mmc_plat),
775 .priv_auto = sizeof(struct tegra_mmc_priv),