1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2016 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
13 #include <dm/device_compat.h>
14 #include <dm/pinctrl.h>
15 #include <linux/compat.h>
16 #include <linux/delay.h>
17 #include <linux/dma-mapping.h>
19 #include <linux/sizes.h>
20 #include <power/regulator.h>
21 #include <asm/unaligned.h>
23 #include "tmio-common.h"
25 DECLARE_GLOBAL_DATA_PTR;
27 static u64 tmio_sd_readq(struct tmio_sd_priv *priv, unsigned int reg)
29 return readq(priv->regbase + (reg << 1));
32 static void tmio_sd_writeq(struct tmio_sd_priv *priv,
33 u64 val, unsigned int reg)
35 writeq(val, priv->regbase + (reg << 1));
38 static u16 tmio_sd_readw(struct tmio_sd_priv *priv, unsigned int reg)
40 return readw(priv->regbase + (reg >> 1));
43 static void tmio_sd_writew(struct tmio_sd_priv *priv,
44 u16 val, unsigned int reg)
46 writew(val, priv->regbase + (reg >> 1));
49 u32 tmio_sd_readl(struct tmio_sd_priv *priv, unsigned int reg)
53 if (priv->caps & TMIO_SD_CAP_64BIT)
54 return readl(priv->regbase + (reg << 1));
55 else if (priv->caps & TMIO_SD_CAP_16BIT) {
56 val = readw(priv->regbase + (reg >> 1)) & 0xffff;
57 if ((reg == TMIO_SD_RSP10) || (reg == TMIO_SD_RSP32) ||
58 (reg == TMIO_SD_RSP54) || (reg == TMIO_SD_RSP76)) {
59 val |= readw(priv->regbase + (reg >> 1) + 2) << 16;
63 return readl(priv->regbase + reg);
66 void tmio_sd_writel(struct tmio_sd_priv *priv,
67 u32 val, unsigned int reg)
69 if (priv->caps & TMIO_SD_CAP_64BIT)
70 writel(val, priv->regbase + (reg << 1));
71 else if (priv->caps & TMIO_SD_CAP_16BIT) {
72 writew(val & 0xffff, priv->regbase + (reg >> 1));
73 if (reg == TMIO_SD_INFO1 || reg == TMIO_SD_INFO1_MASK ||
74 reg == TMIO_SD_INFO2 || reg == TMIO_SD_INFO2_MASK ||
76 writew(val >> 16, priv->regbase + (reg >> 1) + 2);
78 writel(val, priv->regbase + reg);
81 static int tmio_sd_check_error(struct udevice *dev, struct mmc_cmd *cmd)
83 struct tmio_sd_priv *priv = dev_get_priv(dev);
84 u32 info2 = tmio_sd_readl(priv, TMIO_SD_INFO2);
86 if (info2 & TMIO_SD_INFO2_ERR_RTO) {
88 * TIMEOUT must be returned for unsupported command. Do not
89 * display error log since this might be a part of sequence to
90 * distinguish between SD and MMC.
95 if (info2 & TMIO_SD_INFO2_ERR_TO) {
96 dev_err(dev, "timeout error\n");
100 if (info2 & (TMIO_SD_INFO2_ERR_END | TMIO_SD_INFO2_ERR_CRC |
101 TMIO_SD_INFO2_ERR_IDX)) {
102 if ((cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK) &&
103 (cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK_HS200))
104 dev_err(dev, "communication out of sync\n");
108 if (info2 & (TMIO_SD_INFO2_ERR_ILA | TMIO_SD_INFO2_ERR_ILR |
109 TMIO_SD_INFO2_ERR_ILW)) {
110 dev_err(dev, "illegal access\n");
117 static int tmio_sd_wait_for_irq(struct udevice *dev, struct mmc_cmd *cmd,
118 unsigned int reg, u32 flag)
120 struct tmio_sd_priv *priv = dev_get_priv(dev);
124 while (!(tmio_sd_readl(priv, reg) & flag)) {
126 dev_err(dev, "timeout\n");
130 ret = tmio_sd_check_error(dev, cmd);
140 #define tmio_pio_read_fifo(__width, __suffix) \
141 static void tmio_pio_read_fifo_##__width(struct tmio_sd_priv *priv, \
142 char *pbuf, uint blksz) \
144 u##__width *buf = (u##__width *)pbuf; \
147 if (likely(IS_ALIGNED((uintptr_t)buf, ((__width) / 8)))) { \
148 for (i = 0; i < blksz / ((__width) / 8); i++) { \
149 *buf++ = tmio_sd_read##__suffix(priv, \
153 for (i = 0; i < blksz / ((__width) / 8); i++) { \
155 data = tmio_sd_read##__suffix(priv, \
157 put_unaligned(data, buf++); \
162 tmio_pio_read_fifo(64, q)
163 tmio_pio_read_fifo(32, l)
164 tmio_pio_read_fifo(16, w)
166 static int tmio_sd_pio_read_one_block(struct udevice *dev, struct mmc_cmd *cmd,
167 char *pbuf, uint blocksize)
169 struct tmio_sd_priv *priv = dev_get_priv(dev);
172 /* wait until the buffer is filled with data */
173 ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO2,
179 * Clear the status flag _before_ read the buffer out because
180 * TMIO_SD_INFO2_BRE is edge-triggered, not level-triggered.
182 tmio_sd_writel(priv, 0, TMIO_SD_INFO2);
184 if (priv->caps & TMIO_SD_CAP_64BIT)
185 tmio_pio_read_fifo_64(priv, pbuf, blocksize);
186 else if (priv->caps & TMIO_SD_CAP_16BIT)
187 tmio_pio_read_fifo_16(priv, pbuf, blocksize);
189 tmio_pio_read_fifo_32(priv, pbuf, blocksize);
194 #define tmio_pio_write_fifo(__width, __suffix) \
195 static void tmio_pio_write_fifo_##__width(struct tmio_sd_priv *priv, \
196 const char *pbuf, uint blksz)\
198 const u##__width *buf = (const u##__width *)pbuf; \
201 if (likely(IS_ALIGNED((uintptr_t)buf, ((__width) / 8)))) { \
202 for (i = 0; i < blksz / ((__width) / 8); i++) { \
203 tmio_sd_write##__suffix(priv, *buf++, \
207 for (i = 0; i < blksz / ((__width) / 8); i++) { \
208 u##__width data = get_unaligned(buf++); \
209 tmio_sd_write##__suffix(priv, data, \
215 tmio_pio_write_fifo(64, q)
216 tmio_pio_write_fifo(32, l)
217 tmio_pio_write_fifo(16, w)
219 static int tmio_sd_pio_write_one_block(struct udevice *dev, struct mmc_cmd *cmd,
220 const char *pbuf, uint blocksize)
222 struct tmio_sd_priv *priv = dev_get_priv(dev);
225 /* wait until the buffer becomes empty */
226 ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO2,
231 tmio_sd_writel(priv, 0, TMIO_SD_INFO2);
233 if (priv->caps & TMIO_SD_CAP_64BIT)
234 tmio_pio_write_fifo_64(priv, pbuf, blocksize);
235 else if (priv->caps & TMIO_SD_CAP_16BIT)
236 tmio_pio_write_fifo_16(priv, pbuf, blocksize);
238 tmio_pio_write_fifo_32(priv, pbuf, blocksize);
243 static int tmio_sd_pio_xfer(struct udevice *dev, struct mmc_cmd *cmd,
244 struct mmc_data *data)
246 const char *src = data->src;
247 char *dest = data->dest;
250 for (i = 0; i < data->blocks; i++) {
251 if (data->flags & MMC_DATA_READ)
252 ret = tmio_sd_pio_read_one_block(dev, cmd, dest,
255 ret = tmio_sd_pio_write_one_block(dev, cmd, src,
260 if (data->flags & MMC_DATA_READ)
261 dest += data->blocksize;
263 src += data->blocksize;
269 static void tmio_sd_dma_start(struct tmio_sd_priv *priv,
274 tmio_sd_writel(priv, 0, TMIO_SD_DMA_INFO1);
275 tmio_sd_writel(priv, 0, TMIO_SD_DMA_INFO2);
278 tmp = tmio_sd_readl(priv, TMIO_SD_EXTMODE);
279 tmp |= TMIO_SD_EXTMODE_DMA_EN;
280 tmio_sd_writel(priv, tmp, TMIO_SD_EXTMODE);
282 tmio_sd_writel(priv, dma_addr & U32_MAX, TMIO_SD_DMA_ADDR_L);
284 /* suppress the warning "right shift count >= width of type" */
285 dma_addr >>= min_t(int, 32, 8 * sizeof(dma_addr));
287 tmio_sd_writel(priv, dma_addr & U32_MAX, TMIO_SD_DMA_ADDR_H);
289 tmio_sd_writel(priv, TMIO_SD_DMA_CTL_START, TMIO_SD_DMA_CTL);
292 static int tmio_sd_dma_wait_for_irq(struct udevice *dev, u32 flag,
295 struct tmio_sd_priv *priv = dev_get_priv(dev);
296 long wait = 1000000 + 10 * blocks;
298 while (!(tmio_sd_readl(priv, TMIO_SD_DMA_INFO1) & flag)) {
300 dev_err(dev, "timeout during DMA\n");
307 if (tmio_sd_readl(priv, TMIO_SD_DMA_INFO2)) {
308 dev_err(dev, "error during DMA\n");
315 static int tmio_sd_dma_xfer(struct udevice *dev, struct mmc_data *data)
317 struct tmio_sd_priv *priv = dev_get_priv(dev);
318 size_t len = data->blocks * data->blocksize;
320 enum dma_data_direction dir;
325 tmp = tmio_sd_readl(priv, TMIO_SD_DMA_MODE);
327 if (data->flags & MMC_DATA_READ) {
329 dir = DMA_FROM_DEVICE;
331 * The DMA READ completion flag position differs on Socionext
332 * and Renesas SoCs. It is bit 20 on Socionext SoCs and using
333 * bit 17 is a hardware bug and forbidden. It is either bit 17
334 * or bit 20 on Renesas SoCs, depending on SoC.
336 poll_flag = priv->read_poll_flag;
337 tmp |= TMIO_SD_DMA_MODE_DIR_RD;
339 buf = (void *)data->src;
341 poll_flag = TMIO_SD_DMA_INFO1_END_WR;
342 tmp &= ~TMIO_SD_DMA_MODE_DIR_RD;
345 tmio_sd_writel(priv, tmp, TMIO_SD_DMA_MODE);
347 dma_addr = dma_map_single(buf, len, dir);
349 tmio_sd_dma_start(priv, dma_addr);
351 ret = tmio_sd_dma_wait_for_irq(dev, poll_flag, data->blocks);
353 if (poll_flag == TMIO_SD_DMA_INFO1_END_RD)
356 dma_unmap_single(dma_addr, len, dir);
361 /* check if the address is DMA'able */
362 static bool tmio_sd_addr_is_dmaable(struct mmc_data *data)
364 uintptr_t addr = (uintptr_t)data->src;
366 if (!IS_ALIGNED(addr, TMIO_SD_DMA_MINALIGN))
369 #if defined(CONFIG_RCAR_GEN3)
370 if (!(data->flags & MMC_DATA_READ) && !IS_ALIGNED(addr, 128))
372 /* Gen3 DMA has 32bit limit */
377 #if defined(CONFIG_ARCH_UNIPHIER) && !defined(CONFIG_ARM64) && \
378 defined(CONFIG_SPL_BUILD)
380 * For UniPhier ARMv7 SoCs, the stack is allocated in the locked ways
381 * of L2, which is unreachable from the DMA engine.
383 if (addr < CONFIG_SPL_STACK)
390 int tmio_sd_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
391 struct mmc_data *data)
393 struct tmio_sd_priv *priv = dev_get_priv(dev);
397 if (tmio_sd_readl(priv, TMIO_SD_INFO2) & TMIO_SD_INFO2_CBSY) {
398 dev_err(dev, "command busy\n");
402 /* clear all status flags */
403 tmio_sd_writel(priv, 0, TMIO_SD_INFO1);
404 tmio_sd_writel(priv, 0, TMIO_SD_INFO2);
406 /* disable DMA once */
407 tmp = tmio_sd_readl(priv, TMIO_SD_EXTMODE);
408 tmp &= ~TMIO_SD_EXTMODE_DMA_EN;
409 tmio_sd_writel(priv, tmp, TMIO_SD_EXTMODE);
411 tmio_sd_writel(priv, cmd->cmdarg, TMIO_SD_ARG);
416 tmio_sd_writel(priv, data->blocksize, TMIO_SD_SIZE);
417 tmio_sd_writel(priv, data->blocks, TMIO_SD_SECCNT);
419 /* Do not send CMD12 automatically */
420 tmp |= TMIO_SD_CMD_NOSTOP | TMIO_SD_CMD_DATA;
422 if (data->blocks > 1)
423 tmp |= TMIO_SD_CMD_MULTI;
425 if (data->flags & MMC_DATA_READ)
426 tmp |= TMIO_SD_CMD_RD;
430 * Do not use the response type auto-detection on this hardware.
431 * CMD8, for example, has different response types on SD and eMMC,
432 * while this controller always assumes the response type for SD.
433 * Set the response type manually.
435 switch (cmd->resp_type) {
437 tmp |= TMIO_SD_CMD_RSP_NONE;
440 tmp |= TMIO_SD_CMD_RSP_R1;
443 tmp |= TMIO_SD_CMD_RSP_R1B;
446 tmp |= TMIO_SD_CMD_RSP_R2;
449 tmp |= TMIO_SD_CMD_RSP_R3;
452 dev_err(dev, "unknown response type\n");
456 dev_dbg(dev, "sending CMD%d (SD_CMD=%08x, SD_ARG=%08x)\n",
457 cmd->cmdidx, tmp, cmd->cmdarg);
458 tmio_sd_writel(priv, tmp, TMIO_SD_CMD);
460 ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO1,
465 if (cmd->resp_type & MMC_RSP_136) {
466 u32 rsp_127_104 = tmio_sd_readl(priv, TMIO_SD_RSP76);
467 u32 rsp_103_72 = tmio_sd_readl(priv, TMIO_SD_RSP54);
468 u32 rsp_71_40 = tmio_sd_readl(priv, TMIO_SD_RSP32);
469 u32 rsp_39_8 = tmio_sd_readl(priv, TMIO_SD_RSP10);
471 cmd->response[0] = ((rsp_127_104 & 0x00ffffff) << 8) |
472 ((rsp_103_72 & 0xff000000) >> 24);
473 cmd->response[1] = ((rsp_103_72 & 0x00ffffff) << 8) |
474 ((rsp_71_40 & 0xff000000) >> 24);
475 cmd->response[2] = ((rsp_71_40 & 0x00ffffff) << 8) |
476 ((rsp_39_8 & 0xff000000) >> 24);
477 cmd->response[3] = (rsp_39_8 & 0xffffff) << 8;
480 cmd->response[0] = tmio_sd_readl(priv, TMIO_SD_RSP10);
484 /* use DMA if the HW supports it and the buffer is aligned */
485 if (priv->caps & TMIO_SD_CAP_DMA_INTERNAL &&
486 tmio_sd_addr_is_dmaable(data))
487 ret = tmio_sd_dma_xfer(dev, data);
489 ret = tmio_sd_pio_xfer(dev, cmd, data);
493 ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO1,
499 return tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO2,
500 TMIO_SD_INFO2_SCLKDIVEN);
503 static int tmio_sd_set_bus_width(struct tmio_sd_priv *priv,
508 switch (mmc->bus_width) {
511 val = TMIO_SD_OPTION_WIDTH_1;
514 val = TMIO_SD_OPTION_WIDTH_4;
517 val = TMIO_SD_OPTION_WIDTH_8;
523 tmp = tmio_sd_readl(priv, TMIO_SD_OPTION);
524 tmp &= ~TMIO_SD_OPTION_WIDTH_MASK;
526 tmio_sd_writel(priv, tmp, TMIO_SD_OPTION);
531 static void tmio_sd_set_ddr_mode(struct tmio_sd_priv *priv,
536 tmp = tmio_sd_readl(priv, TMIO_SD_IF_MODE);
538 tmp |= TMIO_SD_IF_MODE_DDR;
540 tmp &= ~TMIO_SD_IF_MODE_DDR;
541 tmio_sd_writel(priv, tmp, TMIO_SD_IF_MODE);
544 static ulong tmio_sd_clk_get_rate(struct tmio_sd_priv *priv)
546 return priv->clk_get_rate(priv);
549 static void tmio_sd_set_clk_rate(struct tmio_sd_priv *priv, struct mmc *mmc)
551 unsigned int divisor;
556 mclk = tmio_sd_clk_get_rate(priv);
558 divisor = DIV_ROUND_UP(mclk, mmc->clock);
560 /* Do not set divider to 0xff in DDR mode */
561 if (mmc->ddr_mode && (divisor == 1))
565 val = (priv->caps & TMIO_SD_CAP_RCAR) ?
566 TMIO_SD_CLKCTL_RCAR_DIV1 : TMIO_SD_CLKCTL_DIV1;
567 else if (divisor <= 2)
568 val = TMIO_SD_CLKCTL_DIV2;
569 else if (divisor <= 4)
570 val = TMIO_SD_CLKCTL_DIV4;
571 else if (divisor <= 8)
572 val = TMIO_SD_CLKCTL_DIV8;
573 else if (divisor <= 16)
574 val = TMIO_SD_CLKCTL_DIV16;
575 else if (divisor <= 32)
576 val = TMIO_SD_CLKCTL_DIV32;
577 else if (divisor <= 64)
578 val = TMIO_SD_CLKCTL_DIV64;
579 else if (divisor <= 128)
580 val = TMIO_SD_CLKCTL_DIV128;
581 else if (divisor <= 256)
582 val = TMIO_SD_CLKCTL_DIV256;
583 else if (divisor <= 512 || !(priv->caps & TMIO_SD_CAP_DIV1024))
584 val = TMIO_SD_CLKCTL_DIV512;
586 val = TMIO_SD_CLKCTL_DIV1024;
589 tmp = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
591 !((tmp & TMIO_SD_CLKCTL_SCLKEN) &&
592 ((tmp & TMIO_SD_CLKCTL_DIV_MASK) == val))) {
594 * Stop the clock before changing its rate
595 * to avoid a glitch signal
597 tmp &= ~TMIO_SD_CLKCTL_SCLKEN;
598 tmio_sd_writel(priv, tmp, TMIO_SD_CLKCTL);
600 /* Change the clock rate. */
601 tmp &= ~TMIO_SD_CLKCTL_DIV_MASK;
605 /* Enable or Disable the clock */
606 if (mmc->clk_disable) {
607 tmp |= TMIO_SD_CLKCTL_OFFEN;
608 tmp &= ~TMIO_SD_CLKCTL_SCLKEN;
610 tmp &= ~TMIO_SD_CLKCTL_OFFEN;
611 tmp |= TMIO_SD_CLKCTL_SCLKEN;
614 tmio_sd_writel(priv, tmp, TMIO_SD_CLKCTL);
619 static void tmio_sd_set_pins(struct udevice *dev)
621 __maybe_unused struct mmc *mmc = mmc_get_mmc_dev(dev);
623 #ifdef CONFIG_DM_REGULATOR
624 struct tmio_sd_priv *priv = dev_get_priv(dev);
626 if (priv->vqmmc_dev) {
627 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
628 regulator_set_value(priv->vqmmc_dev, 1800000);
630 regulator_set_value(priv->vqmmc_dev, 3300000);
631 regulator_set_enable(priv->vqmmc_dev, true);
635 #ifdef CONFIG_PINCTRL
636 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
637 pinctrl_select_state(dev, "state_uhs");
639 pinctrl_select_state(dev, "default");
643 int tmio_sd_set_ios(struct udevice *dev)
645 struct tmio_sd_priv *priv = dev_get_priv(dev);
646 struct mmc *mmc = mmc_get_mmc_dev(dev);
649 dev_dbg(dev, "clock %uHz, DDRmode %d, width %u\n",
650 mmc->clock, mmc->ddr_mode, mmc->bus_width);
652 tmio_sd_set_clk_rate(priv, mmc);
653 ret = tmio_sd_set_bus_width(priv, mmc);
656 tmio_sd_set_ddr_mode(priv, mmc);
657 tmio_sd_set_pins(dev);
662 int tmio_sd_get_cd(struct udevice *dev)
664 struct tmio_sd_priv *priv = dev_get_priv(dev);
666 if (priv->caps & TMIO_SD_CAP_NONREMOVABLE)
669 return !!(tmio_sd_readl(priv, TMIO_SD_INFO1) &
673 static void tmio_sd_host_init(struct tmio_sd_priv *priv)
677 /* soft reset of the host */
678 tmp = tmio_sd_readl(priv, TMIO_SD_SOFT_RST);
679 tmp &= ~TMIO_SD_SOFT_RST_RSTX;
680 tmio_sd_writel(priv, tmp, TMIO_SD_SOFT_RST);
681 tmp |= TMIO_SD_SOFT_RST_RSTX;
682 tmio_sd_writel(priv, tmp, TMIO_SD_SOFT_RST);
684 /* FIXME: implement eMMC hw_reset */
686 tmio_sd_writel(priv, TMIO_SD_STOP_SEC, TMIO_SD_STOP);
689 * Connected to 32bit AXI.
690 * This register dropped backward compatibility at version 0x10.
691 * Write an appropriate value depending on the IP version.
693 if (priv->version >= 0x10) {
694 if (priv->caps & TMIO_SD_CAP_64BIT)
695 tmio_sd_writel(priv, 0x000, TMIO_SD_HOST_MODE);
697 tmio_sd_writel(priv, 0x101, TMIO_SD_HOST_MODE);
699 tmio_sd_writel(priv, 0x0, TMIO_SD_HOST_MODE);
702 if (priv->caps & TMIO_SD_CAP_DMA_INTERNAL) {
703 tmp = tmio_sd_readl(priv, TMIO_SD_DMA_MODE);
704 tmp |= TMIO_SD_DMA_MODE_ADDR_INC;
705 tmio_sd_writel(priv, tmp, TMIO_SD_DMA_MODE);
709 int tmio_sd_bind(struct udevice *dev)
711 struct tmio_sd_plat *plat = dev_get_platdata(dev);
713 return mmc_bind(dev, &plat->mmc, &plat->cfg);
716 int tmio_sd_probe(struct udevice *dev, u32 quirks)
718 struct tmio_sd_plat *plat = dev_get_platdata(dev);
719 struct tmio_sd_priv *priv = dev_get_priv(dev);
720 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
725 base = devfdt_get_addr(dev);
726 if (base == FDT_ADDR_T_NONE)
729 priv->regbase = devm_ioremap(dev, base, SZ_2K);
733 #ifdef CONFIG_DM_REGULATOR
734 device_get_supply_regulator(dev, "vqmmc-supply", &priv->vqmmc_dev);
736 regulator_set_value(priv->vqmmc_dev, 3300000);
739 ret = mmc_of_parse(dev, &plat->cfg);
741 dev_err(dev, "failed to parse host caps\n");
745 plat->cfg.name = dev->name;
746 plat->cfg.host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
751 priv->version = tmio_sd_readl(priv, TMIO_SD_VERSION) &
753 dev_dbg(dev, "version %x\n", priv->version);
754 if (priv->version >= 0x10) {
755 priv->caps |= TMIO_SD_CAP_DMA_INTERNAL;
756 priv->caps |= TMIO_SD_CAP_DIV1024;
759 if (fdt_get_property(gd->fdt_blob, dev_of_offset(dev), "non-removable",
761 priv->caps |= TMIO_SD_CAP_NONREMOVABLE;
763 tmio_sd_host_init(priv);
765 mclk = tmio_sd_clk_get_rate(priv);
767 plat->cfg.voltages = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34;
768 plat->cfg.f_min = mclk /
769 (priv->caps & TMIO_SD_CAP_DIV1024 ? 1024 : 512);
770 plat->cfg.f_max = mclk;
771 if (quirks & TMIO_SD_CAP_16BIT)
772 plat->cfg.b_max = U16_MAX; /* max value of TMIO_SD_SECCNT */
774 plat->cfg.b_max = U32_MAX; /* max value of TMIO_SD_SECCNT */
776 upriv->mmc = &plat->mmc;