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,
36 #include <asm/arch/mmc_host_def.h>
37 #include <asm/arch/sys_proto.h>
39 /* simplify defines to OMAP_HSMMC_USE_GPIO */
40 #if (defined(CONFIG_OMAP_GPIO) && !defined(CONFIG_SPL_BUILD)) || \
41 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_GPIO_SUPPORT))
42 #define OMAP_HSMMC_USE_GPIO
44 #undef OMAP_HSMMC_USE_GPIO
47 /* common definitions for all OMAPs */
48 #define SYSCTL_SRC (1 << 25)
49 #define SYSCTL_SRD (1 << 26)
51 struct omap_hsmmc_data {
52 struct hsmmc *base_addr;
53 struct mmc_config cfg;
54 #ifdef OMAP_HSMMC_USE_GPIO
60 /* If we fail after 1 second wait, something is really bad */
61 #define MAX_RETRY_MS 1000
63 static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size);
64 static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
67 #ifdef OMAP_HSMMC_USE_GPIO
68 static int omap_mmc_setup_gpio_in(int gpio, const char *label)
72 #ifndef CONFIG_DM_GPIO
73 if (!gpio_is_valid(gpio))
76 ret = gpio_request(gpio, label);
80 ret = gpio_direction_input(gpio);
88 #if defined(CONFIG_OMAP44XX) && defined(CONFIG_TWL6030_POWER)
89 static void omap4_vmmc_pbias_config(struct mmc *mmc)
93 value = readl((*ctrl)->control_pbiaslite);
94 value &= ~(MMC1_PBIASLITE_PWRDNZ | MMC1_PWRDNZ);
95 writel(value, (*ctrl)->control_pbiaslite);
97 twl6030_power_mmc_init();
98 value = readl((*ctrl)->control_pbiaslite);
99 value |= MMC1_PBIASLITE_VMODE | MMC1_PBIASLITE_PWRDNZ | MMC1_PWRDNZ;
100 writel(value, (*ctrl)->control_pbiaslite);
104 #if defined(CONFIG_OMAP54XX) && defined(CONFIG_PALMAS_POWER)
105 static void omap5_pbias_config(struct mmc *mmc)
109 value = readl((*ctrl)->control_pbias);
110 value &= ~SDCARD_PWRDNZ;
111 writel(value, (*ctrl)->control_pbias);
112 udelay(10); /* wait 10 us */
113 value &= ~SDCARD_BIAS_PWRDNZ;
114 writel(value, (*ctrl)->control_pbias);
116 palmas_mmc1_poweron_ldo();
118 value = readl((*ctrl)->control_pbias);
119 value |= SDCARD_BIAS_PWRDNZ;
120 writel(value, (*ctrl)->control_pbias);
121 udelay(150); /* wait 150 us */
122 value |= SDCARD_PWRDNZ;
123 writel(value, (*ctrl)->control_pbias);
124 udelay(150); /* wait 150 us */
128 static unsigned char mmc_board_init(struct mmc *mmc)
130 #if defined(CONFIG_OMAP34XX)
131 t2_t *t2_base = (t2_t *)T2_BASE;
132 struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
135 pbias_lite = readl(&t2_base->pbias_lite);
136 pbias_lite &= ~(PBIASLITEPWRDNZ1 | PBIASLITEPWRDNZ0);
137 writel(pbias_lite, &t2_base->pbias_lite);
139 #if defined(CONFIG_TWL4030_POWER)
140 twl4030_power_mmc_init();
141 mdelay(100); /* ramp-up delay from Linux code */
143 #if defined(CONFIG_OMAP34XX)
144 writel(pbias_lite | PBIASLITEPWRDNZ1 |
145 PBIASSPEEDCTRL0 | PBIASLITEPWRDNZ0,
146 &t2_base->pbias_lite);
148 writel(readl(&t2_base->devconf0) | MMCSDIO1ADPCLKISEL,
151 writel(readl(&t2_base->devconf1) | MMCSDIO2ADPCLKISEL,
154 /* Change from default of 52MHz to 26MHz if necessary */
155 if (!(mmc->cfg->host_caps & MMC_MODE_HS_52MHz))
156 writel(readl(&t2_base->ctl_prog_io1) & ~CTLPROGIO1SPEEDCTRL,
157 &t2_base->ctl_prog_io1);
159 writel(readl(&prcm_base->fclken1_core) |
160 EN_MMC1 | EN_MMC2 | EN_MMC3,
161 &prcm_base->fclken1_core);
163 writel(readl(&prcm_base->iclken1_core) |
164 EN_MMC1 | EN_MMC2 | EN_MMC3,
165 &prcm_base->iclken1_core);
168 #if defined(CONFIG_OMAP44XX) && defined(CONFIG_TWL6030_POWER)
169 /* PBIAS config needed for MMC1 only */
170 if (mmc->block_dev.dev == 0)
171 omap4_vmmc_pbias_config(mmc);
173 #if defined(CONFIG_OMAP54XX) && defined(CONFIG_PALMAS_POWER)
174 if (mmc->block_dev.dev == 0)
175 omap5_pbias_config(mmc);
181 void mmc_init_stream(struct hsmmc *mmc_base)
185 writel(readl(&mmc_base->con) | INIT_INITSTREAM, &mmc_base->con);
187 writel(MMC_CMD0, &mmc_base->cmd);
188 start = get_timer(0);
189 while (!(readl(&mmc_base->stat) & CC_MASK)) {
190 if (get_timer(0) - start > MAX_RETRY_MS) {
191 printf("%s: timedout waiting for cc!\n", __func__);
195 writel(CC_MASK, &mmc_base->stat)
197 writel(MMC_CMD0, &mmc_base->cmd)
199 start = get_timer(0);
200 while (!(readl(&mmc_base->stat) & CC_MASK)) {
201 if (get_timer(0) - start > MAX_RETRY_MS) {
202 printf("%s: timedout waiting for cc2!\n", __func__);
206 writel(readl(&mmc_base->con) & ~INIT_INITSTREAM, &mmc_base->con);
210 static int omap_hsmmc_init_setup(struct mmc *mmc)
212 struct hsmmc *mmc_base;
213 unsigned int reg_val;
217 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
220 writel(readl(&mmc_base->sysconfig) | MMC_SOFTRESET,
221 &mmc_base->sysconfig);
222 start = get_timer(0);
223 while ((readl(&mmc_base->sysstatus) & RESETDONE) == 0) {
224 if (get_timer(0) - start > MAX_RETRY_MS) {
225 printf("%s: timedout waiting for cc2!\n", __func__);
229 writel(readl(&mmc_base->sysctl) | SOFTRESETALL, &mmc_base->sysctl);
230 start = get_timer(0);
231 while ((readl(&mmc_base->sysctl) & SOFTRESETALL) != 0x0) {
232 if (get_timer(0) - start > MAX_RETRY_MS) {
233 printf("%s: timedout waiting for softresetall!\n",
238 writel(DTW_1_BITMODE | SDBP_PWROFF | SDVS_3V0, &mmc_base->hctl);
239 writel(readl(&mmc_base->capa) | VS30_3V0SUP | VS18_1V8SUP,
242 reg_val = readl(&mmc_base->con) & RESERVED_MASK;
244 writel(CTPL_MMC_SD | reg_val | WPP_ACTIVEHIGH | CDP_ACTIVEHIGH |
245 MIT_CTO | DW8_1_4BITMODE | MODE_FUNC | STR_BLOCK |
246 HR_NOHOSTRESP | INIT_NOINIT | NOOPENDRAIN, &mmc_base->con);
249 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
250 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
251 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
252 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
253 start = get_timer(0);
254 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
255 if (get_timer(0) - start > MAX_RETRY_MS) {
256 printf("%s: timedout waiting for ics!\n", __func__);
260 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
262 writel(readl(&mmc_base->hctl) | SDBP_PWRON, &mmc_base->hctl);
264 writel(IE_BADA | IE_CERR | IE_DEB | IE_DCRC | IE_DTO | IE_CIE |
265 IE_CEB | IE_CCRC | IE_CTO | IE_BRR | IE_BWR | IE_TC | IE_CC,
268 mmc_init_stream(mmc_base);
274 * MMC controller internal finite state machine reset
276 * Used to reset command or data internal state machines, using respectively
277 * SRC or SRD bit of SYSCTL register
279 static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit)
283 mmc_reg_out(&mmc_base->sysctl, bit, bit);
286 * CMD(DAT) lines reset procedures are slightly different
287 * for OMAP3 and OMAP4(AM335x,OMAP5,DRA7xx).
288 * According to OMAP3 TRM:
289 * Set SRC(SRD) bit in MMCHS_SYSCTL register to 0x1 and wait until it
291 * According to OMAP4(AM335x,OMAP5,DRA7xx) TRMs, CMD(DATA) lines reset
292 * procedure steps must be as follows:
293 * 1. Initiate CMD(DAT) line reset by writing 0x1 to SRC(SRD) bit in
294 * MMCHS_SYSCTL register (SD_SYSCTL for AM335x).
295 * 2. Poll the SRC(SRD) bit until it is set to 0x1.
296 * 3. Wait until the SRC (SRD) bit returns to 0x0
297 * (reset procedure is completed).
299 #if defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
300 defined(CONFIG_AM33XX)
301 if (!(readl(&mmc_base->sysctl) & bit)) {
302 start = get_timer(0);
303 while (!(readl(&mmc_base->sysctl) & bit)) {
304 if (get_timer(0) - start > MAX_RETRY_MS)
309 start = get_timer(0);
310 while ((readl(&mmc_base->sysctl) & bit) != 0) {
311 if (get_timer(0) - start > MAX_RETRY_MS) {
312 printf("%s: timedout waiting for sysctl %x to clear\n",
319 static int omap_hsmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
320 struct mmc_data *data)
322 struct hsmmc *mmc_base;
323 unsigned int flags, mmc_stat;
326 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
327 start = get_timer(0);
328 while ((readl(&mmc_base->pstate) & (DATI_MASK | CMDI_MASK)) != 0) {
329 if (get_timer(0) - start > MAX_RETRY_MS) {
330 printf("%s: timedout waiting on cmd inhibit to clear\n",
335 writel(0xFFFFFFFF, &mmc_base->stat);
336 start = get_timer(0);
337 while (readl(&mmc_base->stat)) {
338 if (get_timer(0) - start > MAX_RETRY_MS) {
339 printf("%s: timedout waiting for STAT (%x) to clear\n",
340 __func__, readl(&mmc_base->stat));
346 * CMDIDX[13:8] : Command index
347 * DATAPRNT[5] : Data Present Select
348 * ENCMDIDX[4] : Command Index Check Enable
349 * ENCMDCRC[3] : Command CRC Check Enable
354 * 11 = Length 48 Check busy after response
356 /* Delay added before checking the status of frq change
357 * retry not supported by mmc.c(core file)
359 if (cmd->cmdidx == SD_CMD_APP_SEND_SCR)
360 udelay(50000); /* wait 50 ms */
362 if (!(cmd->resp_type & MMC_RSP_PRESENT))
364 else if (cmd->resp_type & MMC_RSP_136)
365 flags = RSP_TYPE_LGHT136 | CICE_NOCHECK;
366 else if (cmd->resp_type & MMC_RSP_BUSY)
367 flags = RSP_TYPE_LGHT48B;
369 flags = RSP_TYPE_LGHT48;
371 /* enable default flags */
372 flags = flags | (CMD_TYPE_NORMAL | CICE_NOCHECK | CCCE_NOCHECK |
373 MSBS_SGLEBLK | ACEN_DISABLE | BCE_DISABLE | DE_DISABLE);
375 if (cmd->resp_type & MMC_RSP_CRC)
377 if (cmd->resp_type & MMC_RSP_OPCODE)
381 if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) ||
382 (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) {
383 flags |= (MSBS_MULTIBLK | BCE_ENABLE);
384 data->blocksize = 512;
385 writel(data->blocksize | (data->blocks << 16),
388 writel(data->blocksize | NBLK_STPCNT, &mmc_base->blk);
390 if (data->flags & MMC_DATA_READ)
391 flags |= (DP_DATA | DDIR_READ);
393 flags |= (DP_DATA | DDIR_WRITE);
396 writel(cmd->cmdarg, &mmc_base->arg);
397 udelay(20); /* To fix "No status update" error on eMMC */
398 writel((cmd->cmdidx << 24) | flags, &mmc_base->cmd);
400 start = get_timer(0);
402 mmc_stat = readl(&mmc_base->stat);
403 if (get_timer(0) - start > MAX_RETRY_MS) {
404 printf("%s : timeout: No status update\n", __func__);
409 if ((mmc_stat & IE_CTO) != 0) {
410 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
412 } else if ((mmc_stat & ERRI_MASK) != 0)
415 if (mmc_stat & CC_MASK) {
416 writel(CC_MASK, &mmc_base->stat);
417 if (cmd->resp_type & MMC_RSP_PRESENT) {
418 if (cmd->resp_type & MMC_RSP_136) {
419 /* response type 2 */
420 cmd->response[3] = readl(&mmc_base->rsp10);
421 cmd->response[2] = readl(&mmc_base->rsp32);
422 cmd->response[1] = readl(&mmc_base->rsp54);
423 cmd->response[0] = readl(&mmc_base->rsp76);
425 /* response types 1, 1b, 3, 4, 5, 6 */
426 cmd->response[0] = readl(&mmc_base->rsp10);
430 if (data && (data->flags & MMC_DATA_READ)) {
431 mmc_read_data(mmc_base, data->dest,
432 data->blocksize * data->blocks);
433 } else if (data && (data->flags & MMC_DATA_WRITE)) {
434 mmc_write_data(mmc_base, data->src,
435 data->blocksize * data->blocks);
440 static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size)
442 unsigned int *output_buf = (unsigned int *)buf;
443 unsigned int mmc_stat;
449 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
453 ulong start = get_timer(0);
455 mmc_stat = readl(&mmc_base->stat);
456 if (get_timer(0) - start > MAX_RETRY_MS) {
457 printf("%s: timedout waiting for status!\n",
461 } while (mmc_stat == 0);
463 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
464 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
466 if ((mmc_stat & ERRI_MASK) != 0)
469 if (mmc_stat & BRR_MASK) {
472 writel(readl(&mmc_base->stat) | BRR_MASK,
474 for (k = 0; k < count; k++) {
475 *output_buf = readl(&mmc_base->data);
481 if (mmc_stat & BWR_MASK)
482 writel(readl(&mmc_base->stat) | BWR_MASK,
485 if (mmc_stat & TC_MASK) {
486 writel(readl(&mmc_base->stat) | TC_MASK,
494 static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
497 unsigned int *input_buf = (unsigned int *)buf;
498 unsigned int mmc_stat;
504 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
508 ulong start = get_timer(0);
510 mmc_stat = readl(&mmc_base->stat);
511 if (get_timer(0) - start > MAX_RETRY_MS) {
512 printf("%s: timedout waiting for status!\n",
516 } while (mmc_stat == 0);
518 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
519 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
521 if ((mmc_stat & ERRI_MASK) != 0)
524 if (mmc_stat & BWR_MASK) {
527 writel(readl(&mmc_base->stat) | BWR_MASK,
529 for (k = 0; k < count; k++) {
530 writel(*input_buf, &mmc_base->data);
536 if (mmc_stat & BRR_MASK)
537 writel(readl(&mmc_base->stat) | BRR_MASK,
540 if (mmc_stat & TC_MASK) {
541 writel(readl(&mmc_base->stat) | TC_MASK,
549 static void omap_hsmmc_set_ios(struct mmc *mmc)
551 struct hsmmc *mmc_base;
552 unsigned int dsor = 0;
555 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
556 /* configue bus width */
557 switch (mmc->bus_width) {
559 writel(readl(&mmc_base->con) | DTW_8_BITMODE,
564 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
566 writel(readl(&mmc_base->hctl) | DTW_4_BITMODE,
572 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
574 writel(readl(&mmc_base->hctl) & ~DTW_4_BITMODE,
579 /* configure clock with 96Mhz system clock.
581 if (mmc->clock != 0) {
582 dsor = (MMC_CLOCK_REFERENCE * 1000000 / mmc->clock);
583 if ((MMC_CLOCK_REFERENCE * 1000000) / dsor > mmc->clock)
587 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
588 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
590 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
591 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
593 start = get_timer(0);
594 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
595 if (get_timer(0) - start > MAX_RETRY_MS) {
596 printf("%s: timedout waiting for ics!\n", __func__);
600 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
603 #ifdef OMAP_HSMMC_USE_GPIO
604 static int omap_hsmmc_getcd(struct mmc *mmc)
606 struct omap_hsmmc_data *priv_data = mmc->priv;
609 /* if no CD return as 1 */
610 cd_gpio = priv_data->cd_gpio;
614 /* NOTE: assumes card detect signal is active-low */
615 return !gpio_get_value(cd_gpio);
618 static int omap_hsmmc_getwp(struct mmc *mmc)
620 struct omap_hsmmc_data *priv_data = mmc->priv;
623 /* if no WP return as 0 */
624 wp_gpio = priv_data->wp_gpio;
628 /* NOTE: assumes write protect signal is active-high */
629 return gpio_get_value(wp_gpio);
633 static const struct mmc_ops omap_hsmmc_ops = {
634 .send_cmd = omap_hsmmc_send_cmd,
635 .set_ios = omap_hsmmc_set_ios,
636 .init = omap_hsmmc_init_setup,
637 #ifdef OMAP_HSMMC_USE_GPIO
638 .getcd = omap_hsmmc_getcd,
639 .getwp = omap_hsmmc_getwp,
643 int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio,
647 struct omap_hsmmc_data *priv_data;
648 struct mmc_config *cfg;
651 priv_data = malloc(sizeof(*priv_data));
652 if (priv_data == NULL)
655 host_caps_val = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS |
660 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
662 #ifdef OMAP_HSMMC2_BASE
664 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE;
665 #if (defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
666 defined(CONFIG_DRA7XX)) && defined(CONFIG_HSMMC2_8BIT)
667 /* Enable 8-bit interface for eMMC on OMAP4/5 or DRA7XX */
668 host_caps_val |= MMC_MODE_8BIT;
672 #ifdef OMAP_HSMMC3_BASE
674 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC3_BASE;
675 #if defined(CONFIG_DRA7XX) && defined(CONFIG_HSMMC3_8BIT)
676 /* Enable 8-bit interface for eMMC on DRA7XX */
677 host_caps_val |= MMC_MODE_8BIT;
682 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
685 #ifdef OMAP_HSMMC_USE_GPIO
686 /* on error gpio values are set to -1, which is what we want */
687 priv_data->cd_gpio = omap_mmc_setup_gpio_in(cd_gpio, "mmc_cd");
688 priv_data->wp_gpio = omap_mmc_setup_gpio_in(wp_gpio, "mmc_wp");
691 cfg = &priv_data->cfg;
693 cfg->name = "OMAP SD/MMC";
694 cfg->ops = &omap_hsmmc_ops;
696 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
697 cfg->host_caps = host_caps_val & ~host_caps_mask;
704 if (cfg->host_caps & MMC_MODE_HS) {
705 if (cfg->host_caps & MMC_MODE_HS_52MHz)
706 cfg->f_max = 52000000;
708 cfg->f_max = 26000000;
710 cfg->f_max = 20000000;
713 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
715 #if defined(CONFIG_OMAP34XX)
717 * Silicon revs 2.1 and older do not support multiblock transfers.
719 if ((get_cpu_family() == CPU_OMAP34XX) && (get_cpu_rev() <= CPU_3XX_ES21))
722 mmc = mmc_create(cfg, priv_data);