3 * Texas Instruments, <www.ti.com>
4 * Sukumar Ghorai <s-ghorai@ti.com>
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation's version 2 of
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
35 #include <asm/arch/mmc_host_def.h>
36 #if !defined(CONFIG_SOC_KEYSTONE)
38 #include <asm/arch/sys_proto.h>
41 #include <asm/arch-omap3/mux.h>
43 DECLARE_GLOBAL_DATA_PTR;
45 /* simplify defines to OMAP_HSMMC_USE_GPIO */
46 #if (defined(CONFIG_OMAP_GPIO) && !defined(CONFIG_SPL_BUILD)) || \
47 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_GPIO_SUPPORT))
48 #define OMAP_HSMMC_USE_GPIO
50 #undef OMAP_HSMMC_USE_GPIO
53 /* common definitions for all OMAPs */
54 #define SYSCTL_SRC (1 << 25)
55 #define SYSCTL_SRD (1 << 26)
57 struct omap_hsmmc_data {
58 struct hsmmc *base_addr;
59 struct mmc_config cfg;
60 #ifdef OMAP_HSMMC_USE_GPIO
62 struct gpio_desc cd_gpio; /* Change Detect GPIO */
63 struct gpio_desc wp_gpio; /* Write Protect GPIO */
72 /* If we fail after 1 second wait, something is really bad */
73 #define MAX_RETRY_MS 1000
75 static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size);
76 static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
79 #if defined(OMAP_HSMMC_USE_GPIO) && !defined(CONFIG_DM_MMC)
80 static int omap_mmc_setup_gpio_in(int gpio, const char *label)
84 #ifndef CONFIG_DM_GPIO
85 if (!gpio_is_valid(gpio))
88 ret = gpio_request(gpio, label);
92 ret = gpio_direction_input(gpio);
100 static unsigned char mmc_board_init(struct mmc *mmc)
102 #if defined(CONFIG_OMAP34XX)
103 t2_t *t2_base = (t2_t *)T2_BASE;
104 struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
106 #ifdef CONFIG_MMC_OMAP36XX_PINS
107 u32 wkup_ctrl = readl(OMAP34XX_CTRL_WKUP_CTRL);
110 pbias_lite = readl(&t2_base->pbias_lite);
111 pbias_lite &= ~(PBIASLITEPWRDNZ1 | PBIASLITEPWRDNZ0);
112 #ifdef CONFIG_TARGET_OMAP3_CAIRO
113 /* for cairo board, we need to set up 1.8 Volt bias level on MMC1 */
114 pbias_lite &= ~PBIASLITEVMODE0;
116 #ifdef CONFIG_MMC_OMAP36XX_PINS
117 if (get_cpu_family() == CPU_OMAP36XX) {
118 /* Disable extended drain IO before changing PBIAS */
119 wkup_ctrl &= ~OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ;
120 writel(wkup_ctrl, OMAP34XX_CTRL_WKUP_CTRL);
123 writel(pbias_lite, &t2_base->pbias_lite);
125 writel(pbias_lite | PBIASLITEPWRDNZ1 |
126 PBIASSPEEDCTRL0 | PBIASLITEPWRDNZ0,
127 &t2_base->pbias_lite);
129 #ifdef CONFIG_MMC_OMAP36XX_PINS
130 if (get_cpu_family() == CPU_OMAP36XX)
131 /* Enable extended drain IO after changing PBIAS */
133 OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ,
134 OMAP34XX_CTRL_WKUP_CTRL);
136 writel(readl(&t2_base->devconf0) | MMCSDIO1ADPCLKISEL,
139 writel(readl(&t2_base->devconf1) | MMCSDIO2ADPCLKISEL,
142 /* Change from default of 52MHz to 26MHz if necessary */
143 if (!(mmc->cfg->host_caps & MMC_MODE_HS_52MHz))
144 writel(readl(&t2_base->ctl_prog_io1) & ~CTLPROGIO1SPEEDCTRL,
145 &t2_base->ctl_prog_io1);
147 writel(readl(&prcm_base->fclken1_core) |
148 EN_MMC1 | EN_MMC2 | EN_MMC3,
149 &prcm_base->fclken1_core);
151 writel(readl(&prcm_base->iclken1_core) |
152 EN_MMC1 | EN_MMC2 | EN_MMC3,
153 &prcm_base->iclken1_core);
156 #if defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX)
157 /* PBIAS config needed for MMC1 only */
158 if (mmc->block_dev.devnum == 0)
159 vmmc_pbias_config(LDO_VOLT_3V0);
165 void mmc_init_stream(struct hsmmc *mmc_base)
169 writel(readl(&mmc_base->con) | INIT_INITSTREAM, &mmc_base->con);
171 writel(MMC_CMD0, &mmc_base->cmd);
172 start = get_timer(0);
173 while (!(readl(&mmc_base->stat) & CC_MASK)) {
174 if (get_timer(0) - start > MAX_RETRY_MS) {
175 printf("%s: timedout waiting for cc!\n", __func__);
179 writel(CC_MASK, &mmc_base->stat)
181 writel(MMC_CMD0, &mmc_base->cmd)
183 start = get_timer(0);
184 while (!(readl(&mmc_base->stat) & CC_MASK)) {
185 if (get_timer(0) - start > MAX_RETRY_MS) {
186 printf("%s: timedout waiting for cc2!\n", __func__);
190 writel(readl(&mmc_base->con) & ~INIT_INITSTREAM, &mmc_base->con);
193 static int omap_hsmmc_init_setup(struct mmc *mmc)
195 struct hsmmc *mmc_base;
196 unsigned int reg_val;
200 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
203 writel(readl(&mmc_base->sysconfig) | MMC_SOFTRESET,
204 &mmc_base->sysconfig);
205 start = get_timer(0);
206 while ((readl(&mmc_base->sysstatus) & RESETDONE) == 0) {
207 if (get_timer(0) - start > MAX_RETRY_MS) {
208 printf("%s: timedout waiting for cc2!\n", __func__);
212 writel(readl(&mmc_base->sysctl) | SOFTRESETALL, &mmc_base->sysctl);
213 start = get_timer(0);
214 while ((readl(&mmc_base->sysctl) & SOFTRESETALL) != 0x0) {
215 if (get_timer(0) - start > MAX_RETRY_MS) {
216 printf("%s: timedout waiting for softresetall!\n",
221 writel(DTW_1_BITMODE | SDBP_PWROFF | SDVS_3V0, &mmc_base->hctl);
222 writel(readl(&mmc_base->capa) | VS30_3V0SUP | VS18_1V8SUP,
225 reg_val = readl(&mmc_base->con) & RESERVED_MASK;
227 writel(CTPL_MMC_SD | reg_val | WPP_ACTIVEHIGH | CDP_ACTIVEHIGH |
228 MIT_CTO | DW8_1_4BITMODE | MODE_FUNC | STR_BLOCK |
229 HR_NOHOSTRESP | INIT_NOINIT | NOOPENDRAIN, &mmc_base->con);
232 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
233 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
234 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
235 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
236 start = get_timer(0);
237 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
238 if (get_timer(0) - start > MAX_RETRY_MS) {
239 printf("%s: timedout waiting for ics!\n", __func__);
243 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
245 writel(readl(&mmc_base->hctl) | SDBP_PWRON, &mmc_base->hctl);
247 writel(IE_BADA | IE_CERR | IE_DEB | IE_DCRC | IE_DTO | IE_CIE |
248 IE_CEB | IE_CCRC | IE_CTO | IE_BRR | IE_BWR | IE_TC | IE_CC,
251 mmc_init_stream(mmc_base);
257 * MMC controller internal finite state machine reset
259 * Used to reset command or data internal state machines, using respectively
260 * SRC or SRD bit of SYSCTL register
262 static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit)
266 mmc_reg_out(&mmc_base->sysctl, bit, bit);
269 * CMD(DAT) lines reset procedures are slightly different
270 * for OMAP3 and OMAP4(AM335x,OMAP5,DRA7xx).
271 * According to OMAP3 TRM:
272 * Set SRC(SRD) bit in MMCHS_SYSCTL register to 0x1 and wait until it
274 * According to OMAP4(AM335x,OMAP5,DRA7xx) TRMs, CMD(DATA) lines reset
275 * procedure steps must be as follows:
276 * 1. Initiate CMD(DAT) line reset by writing 0x1 to SRC(SRD) bit in
277 * MMCHS_SYSCTL register (SD_SYSCTL for AM335x).
278 * 2. Poll the SRC(SRD) bit until it is set to 0x1.
279 * 3. Wait until the SRC (SRD) bit returns to 0x0
280 * (reset procedure is completed).
282 #if defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
283 defined(CONFIG_AM33XX) || defined(CONFIG_AM43XX)
284 if (!(readl(&mmc_base->sysctl) & bit)) {
285 start = get_timer(0);
286 while (!(readl(&mmc_base->sysctl) & bit)) {
287 if (get_timer(0) - start > MAX_RETRY_MS)
292 start = get_timer(0);
293 while ((readl(&mmc_base->sysctl) & bit) != 0) {
294 if (get_timer(0) - start > MAX_RETRY_MS) {
295 printf("%s: timedout waiting for sysctl %x to clear\n",
302 static int omap_hsmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
303 struct mmc_data *data)
305 struct hsmmc *mmc_base;
306 unsigned int flags, mmc_stat;
309 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
310 start = get_timer(0);
311 while ((readl(&mmc_base->pstate) & (DATI_MASK | CMDI_MASK)) != 0) {
312 if (get_timer(0) - start > MAX_RETRY_MS) {
313 printf("%s: timedout waiting on cmd inhibit to clear\n",
318 writel(0xFFFFFFFF, &mmc_base->stat);
319 start = get_timer(0);
320 while (readl(&mmc_base->stat)) {
321 if (get_timer(0) - start > MAX_RETRY_MS) {
322 printf("%s: timedout waiting for STAT (%x) to clear\n",
323 __func__, readl(&mmc_base->stat));
329 * CMDIDX[13:8] : Command index
330 * DATAPRNT[5] : Data Present Select
331 * ENCMDIDX[4] : Command Index Check Enable
332 * ENCMDCRC[3] : Command CRC Check Enable
337 * 11 = Length 48 Check busy after response
339 /* Delay added before checking the status of frq change
340 * retry not supported by mmc.c(core file)
342 if (cmd->cmdidx == SD_CMD_APP_SEND_SCR)
343 udelay(50000); /* wait 50 ms */
345 if (!(cmd->resp_type & MMC_RSP_PRESENT))
347 else if (cmd->resp_type & MMC_RSP_136)
348 flags = RSP_TYPE_LGHT136 | CICE_NOCHECK;
349 else if (cmd->resp_type & MMC_RSP_BUSY)
350 flags = RSP_TYPE_LGHT48B;
352 flags = RSP_TYPE_LGHT48;
354 /* enable default flags */
355 flags = flags | (CMD_TYPE_NORMAL | CICE_NOCHECK | CCCE_NOCHECK |
356 MSBS_SGLEBLK | ACEN_DISABLE | BCE_DISABLE | DE_DISABLE);
358 if (cmd->resp_type & MMC_RSP_CRC)
360 if (cmd->resp_type & MMC_RSP_OPCODE)
364 if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) ||
365 (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) {
366 flags |= (MSBS_MULTIBLK | BCE_ENABLE);
367 data->blocksize = 512;
368 writel(data->blocksize | (data->blocks << 16),
371 writel(data->blocksize | NBLK_STPCNT, &mmc_base->blk);
373 if (data->flags & MMC_DATA_READ)
374 flags |= (DP_DATA | DDIR_READ);
376 flags |= (DP_DATA | DDIR_WRITE);
379 writel(cmd->cmdarg, &mmc_base->arg);
380 udelay(20); /* To fix "No status update" error on eMMC */
381 writel((cmd->cmdidx << 24) | flags, &mmc_base->cmd);
383 start = get_timer(0);
385 mmc_stat = readl(&mmc_base->stat);
386 if (get_timer(0) - start > MAX_RETRY_MS) {
387 printf("%s : timeout: No status update\n", __func__);
392 if ((mmc_stat & IE_CTO) != 0) {
393 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
395 } else if ((mmc_stat & ERRI_MASK) != 0)
398 if (mmc_stat & CC_MASK) {
399 writel(CC_MASK, &mmc_base->stat);
400 if (cmd->resp_type & MMC_RSP_PRESENT) {
401 if (cmd->resp_type & MMC_RSP_136) {
402 /* response type 2 */
403 cmd->response[3] = readl(&mmc_base->rsp10);
404 cmd->response[2] = readl(&mmc_base->rsp32);
405 cmd->response[1] = readl(&mmc_base->rsp54);
406 cmd->response[0] = readl(&mmc_base->rsp76);
408 /* response types 1, 1b, 3, 4, 5, 6 */
409 cmd->response[0] = readl(&mmc_base->rsp10);
413 if (data && (data->flags & MMC_DATA_READ)) {
414 mmc_read_data(mmc_base, data->dest,
415 data->blocksize * data->blocks);
416 } else if (data && (data->flags & MMC_DATA_WRITE)) {
417 mmc_write_data(mmc_base, data->src,
418 data->blocksize * data->blocks);
423 static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size)
425 unsigned int *output_buf = (unsigned int *)buf;
426 unsigned int mmc_stat;
432 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
436 ulong start = get_timer(0);
438 mmc_stat = readl(&mmc_base->stat);
439 if (get_timer(0) - start > MAX_RETRY_MS) {
440 printf("%s: timedout waiting for status!\n",
444 } while (mmc_stat == 0);
446 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
447 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
449 if ((mmc_stat & ERRI_MASK) != 0)
452 if (mmc_stat & BRR_MASK) {
455 writel(readl(&mmc_base->stat) | BRR_MASK,
457 for (k = 0; k < count; k++) {
458 *output_buf = readl(&mmc_base->data);
464 if (mmc_stat & BWR_MASK)
465 writel(readl(&mmc_base->stat) | BWR_MASK,
468 if (mmc_stat & TC_MASK) {
469 writel(readl(&mmc_base->stat) | TC_MASK,
477 static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
480 unsigned int *input_buf = (unsigned int *)buf;
481 unsigned int mmc_stat;
487 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
491 ulong start = get_timer(0);
493 mmc_stat = readl(&mmc_base->stat);
494 if (get_timer(0) - start > MAX_RETRY_MS) {
495 printf("%s: timedout waiting for status!\n",
499 } while (mmc_stat == 0);
501 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
502 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
504 if ((mmc_stat & ERRI_MASK) != 0)
507 if (mmc_stat & BWR_MASK) {
510 writel(readl(&mmc_base->stat) | BWR_MASK,
512 for (k = 0; k < count; k++) {
513 writel(*input_buf, &mmc_base->data);
519 if (mmc_stat & BRR_MASK)
520 writel(readl(&mmc_base->stat) | BRR_MASK,
523 if (mmc_stat & TC_MASK) {
524 writel(readl(&mmc_base->stat) | TC_MASK,
532 static int omap_hsmmc_set_ios(struct mmc *mmc)
534 struct hsmmc *mmc_base;
535 unsigned int dsor = 0;
538 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
539 /* configue bus width */
540 switch (mmc->bus_width) {
542 writel(readl(&mmc_base->con) | DTW_8_BITMODE,
547 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
549 writel(readl(&mmc_base->hctl) | DTW_4_BITMODE,
555 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
557 writel(readl(&mmc_base->hctl) & ~DTW_4_BITMODE,
562 /* configure clock with 96Mhz system clock.
564 if (mmc->clock != 0) {
565 dsor = (MMC_CLOCK_REFERENCE * 1000000 / mmc->clock);
566 if ((MMC_CLOCK_REFERENCE * 1000000) / dsor > mmc->clock)
570 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
571 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
573 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
574 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
576 start = get_timer(0);
577 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
578 if (get_timer(0) - start > MAX_RETRY_MS) {
579 printf("%s: timedout waiting for ics!\n", __func__);
583 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
588 #ifdef OMAP_HSMMC_USE_GPIO
590 static int omap_hsmmc_getcd(struct mmc *mmc)
592 struct omap_hsmmc_data *priv = mmc->priv;
595 value = dm_gpio_get_value(&priv->cd_gpio);
596 /* if no CD return as 1 */
600 if (priv->cd_inverted)
605 static int omap_hsmmc_getwp(struct mmc *mmc)
607 struct omap_hsmmc_data *priv = mmc->priv;
610 value = dm_gpio_get_value(&priv->wp_gpio);
611 /* if no WP return as 0 */
617 static int omap_hsmmc_getcd(struct mmc *mmc)
619 struct omap_hsmmc_data *priv_data = mmc->priv;
622 /* if no CD return as 1 */
623 cd_gpio = priv_data->cd_gpio;
627 /* NOTE: assumes card detect signal is active-low */
628 return !gpio_get_value(cd_gpio);
631 static int omap_hsmmc_getwp(struct mmc *mmc)
633 struct omap_hsmmc_data *priv_data = mmc->priv;
636 /* if no WP return as 0 */
637 wp_gpio = priv_data->wp_gpio;
641 /* NOTE: assumes write protect signal is active-high */
642 return gpio_get_value(wp_gpio);
647 static const struct mmc_ops omap_hsmmc_ops = {
648 .send_cmd = omap_hsmmc_send_cmd,
649 .set_ios = omap_hsmmc_set_ios,
650 .init = omap_hsmmc_init_setup,
651 #ifdef OMAP_HSMMC_USE_GPIO
652 .getcd = omap_hsmmc_getcd,
653 .getwp = omap_hsmmc_getwp,
657 #ifndef CONFIG_DM_MMC
658 int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio,
662 struct omap_hsmmc_data *priv_data;
663 struct mmc_config *cfg;
666 priv_data = malloc(sizeof(*priv_data));
667 if (priv_data == NULL)
670 host_caps_val = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
674 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
676 #ifdef OMAP_HSMMC2_BASE
678 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE;
679 #if (defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
680 defined(CONFIG_DRA7XX) || defined(CONFIG_AM33XX) || \
681 defined(CONFIG_AM43XX) || defined(CONFIG_SOC_KEYSTONE)) && \
682 defined(CONFIG_HSMMC2_8BIT)
683 /* Enable 8-bit interface for eMMC on OMAP4/5 or DRA7XX */
684 host_caps_val |= MMC_MODE_8BIT;
688 #ifdef OMAP_HSMMC3_BASE
690 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC3_BASE;
691 #if defined(CONFIG_DRA7XX) && defined(CONFIG_HSMMC3_8BIT)
692 /* Enable 8-bit interface for eMMC on DRA7XX */
693 host_caps_val |= MMC_MODE_8BIT;
698 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
701 #ifdef OMAP_HSMMC_USE_GPIO
702 /* on error gpio values are set to -1, which is what we want */
703 priv_data->cd_gpio = omap_mmc_setup_gpio_in(cd_gpio, "mmc_cd");
704 priv_data->wp_gpio = omap_mmc_setup_gpio_in(wp_gpio, "mmc_wp");
707 cfg = &priv_data->cfg;
709 cfg->name = "OMAP SD/MMC";
710 cfg->ops = &omap_hsmmc_ops;
712 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
713 cfg->host_caps = host_caps_val & ~host_caps_mask;
720 if (cfg->host_caps & MMC_MODE_HS) {
721 if (cfg->host_caps & MMC_MODE_HS_52MHz)
722 cfg->f_max = 52000000;
724 cfg->f_max = 26000000;
726 cfg->f_max = 20000000;
729 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
731 #if defined(CONFIG_OMAP34XX)
733 * Silicon revs 2.1 and older do not support multiblock transfers.
735 if ((get_cpu_family() == CPU_OMAP34XX) && (get_cpu_rev() <= CPU_3XX_ES21))
738 mmc = mmc_create(cfg, priv_data);
745 static int omap_hsmmc_ofdata_to_platdata(struct udevice *dev)
747 struct omap_hsmmc_data *priv = dev_get_priv(dev);
748 const void *fdt = gd->fdt_blob;
749 int node = dev_of_offset(dev);
750 struct mmc_config *cfg;
753 priv->base_addr = map_physmem(dev_get_addr(dev), sizeof(struct hsmmc *),
757 cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
758 val = fdtdec_get_int(fdt, node, "bus-width", -1);
760 printf("error: bus-width property missing\n");
766 cfg->host_caps |= MMC_MODE_8BIT;
768 cfg->host_caps |= MMC_MODE_4BIT;
771 printf("error: invalid bus-width property\n");
776 cfg->f_max = fdtdec_get_int(fdt, node, "max-frequency", 52000000);
777 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
778 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
780 #ifdef OMAP_HSMMC_USE_GPIO
781 priv->cd_inverted = fdtdec_get_bool(fdt, node, "cd-inverted");
787 static int omap_hsmmc_probe(struct udevice *dev)
789 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
790 struct omap_hsmmc_data *priv = dev_get_priv(dev);
791 struct mmc_config *cfg;
795 cfg->name = "OMAP SD/MMC";
796 cfg->ops = &omap_hsmmc_ops;
798 mmc = mmc_create(cfg, priv);
802 #ifdef OMAP_HSMMC_USE_GPIO
803 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
804 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
813 static const struct udevice_id omap_hsmmc_ids[] = {
814 { .compatible = "ti,omap3-hsmmc" },
815 { .compatible = "ti,omap4-hsmmc" },
816 { .compatible = "ti,am33xx-hsmmc" },
820 U_BOOT_DRIVER(omap_hsmmc) = {
821 .name = "omap_hsmmc",
823 .of_match = omap_hsmmc_ids,
824 .ofdata_to_platdata = omap_hsmmc_ofdata_to_platdata,
825 .probe = omap_hsmmc_probe,
826 .priv_auto_alloc_size = sizeof(struct omap_hsmmc_data),