2 * Copyright 2011, Marvell Semiconductor Inc.
3 * Lei Wen <leiwen@marvell.com>
5 * SPDX-License-Identifier: GPL-2.0+
7 * Back ported to the 8xx platform (from the 8260 platform) by
8 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
17 #if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
18 void *aligned_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
23 static void sdhci_reset(struct sdhci_host *host, u8 mask)
25 unsigned long timeout;
29 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
30 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
32 printf("%s: Reset 0x%x never completed.\n",
41 static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
44 if (cmd->resp_type & MMC_RSP_136) {
45 /* CRC is stripped so we need to do some shifting. */
46 for (i = 0; i < 4; i++) {
47 cmd->response[i] = sdhci_readl(host,
48 SDHCI_RESPONSE + (3-i)*4) << 8;
50 cmd->response[i] |= sdhci_readb(host,
51 SDHCI_RESPONSE + (3-i)*4-1);
54 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
58 static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
62 for (i = 0; i < data->blocksize; i += 4) {
63 offs = data->dest + i;
64 if (data->flags == MMC_DATA_READ)
65 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
67 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
71 static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data,
72 unsigned int start_addr)
74 unsigned int stat, rdy, mask, timeout, block = 0;
75 bool transfer_done = false;
76 #ifdef CONFIG_MMC_SDHCI_SDMA
78 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
79 ctrl &= ~SDHCI_CTRL_DMA_MASK;
80 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
84 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
85 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
87 stat = sdhci_readl(host, SDHCI_INT_STATUS);
88 if (stat & SDHCI_INT_ERROR) {
89 printf("%s: Error detected in status(0x%X)!\n",
93 if (!transfer_done && (stat & rdy)) {
94 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
96 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
97 sdhci_transfer_pio(host, data);
98 data->dest += data->blocksize;
99 if (++block >= data->blocks) {
100 /* Keep looping until the SDHCI_INT_DATA_END is
101 * cleared, even if we finished sending all the
104 transfer_done = true;
108 #ifdef CONFIG_MMC_SDHCI_SDMA
109 if (!transfer_done && (stat & SDHCI_INT_DMA_END)) {
110 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
111 start_addr &= ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
112 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
113 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
119 printf("%s: Transfer data timeout\n", __func__);
122 } while (!(stat & SDHCI_INT_DATA_END));
127 * No command will be sent by driver if card is busy, so driver must wait
128 * for card ready state.
129 * Every time when card is busy after timeout then (last) timeout value will be
130 * increased twice but only if it doesn't exceed global defined maximum.
131 * Each function call will use last timeout value.
133 #define SDHCI_CMD_MAX_TIMEOUT 3200
134 #define SDHCI_CMD_DEFAULT_TIMEOUT 100
135 #define SDHCI_READ_STATUS_TIMEOUT 1000
137 #ifdef CONFIG_DM_MMC_OPS
138 static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
139 struct mmc_data *data)
141 struct mmc *mmc = mmc_get_mmc_dev(dev);
144 static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
145 struct mmc_data *data)
148 struct sdhci_host *host = mmc->priv;
149 unsigned int stat = 0;
151 int trans_bytes = 0, is_aligned = 1;
152 u32 mask, flags, mode;
153 unsigned int time = 0, start_addr = 0;
154 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
155 unsigned start = get_timer(0);
157 /* Timeout unit - ms */
158 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
160 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
161 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
163 /* We shouldn't wait for data inihibit for stop commands, even
164 though they might use busy signaling */
165 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
166 mask &= ~SDHCI_DATA_INHIBIT;
168 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
169 if (time >= cmd_timeout) {
170 printf("%s: MMC: %d busy ", __func__, mmc_dev);
171 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
172 cmd_timeout += cmd_timeout;
173 printf("timeout increasing to: %u ms.\n",
184 mask = SDHCI_INT_RESPONSE;
185 if (!(cmd->resp_type & MMC_RSP_PRESENT))
186 flags = SDHCI_CMD_RESP_NONE;
187 else if (cmd->resp_type & MMC_RSP_136)
188 flags = SDHCI_CMD_RESP_LONG;
189 else if (cmd->resp_type & MMC_RSP_BUSY) {
190 flags = SDHCI_CMD_RESP_SHORT_BUSY;
192 mask |= SDHCI_INT_DATA_END;
194 flags = SDHCI_CMD_RESP_SHORT;
196 if (cmd->resp_type & MMC_RSP_CRC)
197 flags |= SDHCI_CMD_CRC;
198 if (cmd->resp_type & MMC_RSP_OPCODE)
199 flags |= SDHCI_CMD_INDEX;
201 flags |= SDHCI_CMD_DATA;
203 /* Set Transfer mode regarding to data flag */
205 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
206 mode = SDHCI_TRNS_BLK_CNT_EN;
207 trans_bytes = data->blocks * data->blocksize;
208 if (data->blocks > 1)
209 mode |= SDHCI_TRNS_MULTI;
211 if (data->flags == MMC_DATA_READ)
212 mode |= SDHCI_TRNS_READ;
214 #ifdef CONFIG_MMC_SDHCI_SDMA
215 if (data->flags == MMC_DATA_READ)
216 start_addr = (unsigned long)data->dest;
218 start_addr = (unsigned long)data->src;
219 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
220 (start_addr & 0x7) != 0x0) {
222 start_addr = (unsigned long)aligned_buffer;
223 if (data->flags != MMC_DATA_READ)
224 memcpy(aligned_buffer, data->src, trans_bytes);
227 #if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
229 * Always use this bounce-buffer when
230 * CONFIG_FIXED_SDHCI_ALIGNED_BUFFER is defined
233 start_addr = (unsigned long)aligned_buffer;
234 if (data->flags != MMC_DATA_READ)
235 memcpy(aligned_buffer, data->src, trans_bytes);
238 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
239 mode |= SDHCI_TRNS_DMA;
241 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
244 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
245 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
246 } else if (cmd->resp_type & MMC_RSP_BUSY) {
247 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
250 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
251 #ifdef CONFIG_MMC_SDHCI_SDMA
253 trans_bytes = ALIGN(trans_bytes, CONFIG_SYS_CACHELINE_SIZE);
254 flush_cache(start_addr, trans_bytes);
257 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
258 start = get_timer(0);
260 stat = sdhci_readl(host, SDHCI_INT_STATUS);
261 if (stat & SDHCI_INT_ERROR)
264 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
265 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
268 printf("%s: Timeout for status update!\n",
273 } while ((stat & mask) != mask);
275 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
276 sdhci_cmd_done(host, cmd);
277 sdhci_writel(host, mask, SDHCI_INT_STATUS);
282 ret = sdhci_transfer_data(host, data, start_addr);
284 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
287 stat = sdhci_readl(host, SDHCI_INT_STATUS);
288 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
290 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
291 !is_aligned && (data->flags == MMC_DATA_READ))
292 memcpy(data->dest, aligned_buffer, trans_bytes);
296 sdhci_reset(host, SDHCI_RESET_CMD);
297 sdhci_reset(host, SDHCI_RESET_DATA);
298 if (stat & SDHCI_INT_TIMEOUT)
304 static int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
306 struct sdhci_host *host = mmc->priv;
307 unsigned int div, clk = 0, timeout;
311 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
312 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
314 printf("%s: Timeout to wait cmd & data inhibit\n",
323 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
328 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
330 * Check if the Host Controller supports Programmable Clock
334 for (div = 1; div <= 1024; div++) {
335 if ((host->max_clk / div) <= clock)
340 * Set Programmable Clock Mode in the Clock
343 clk = SDHCI_PROG_CLOCK_MODE;
346 /* Version 3.00 divisors must be a multiple of 2. */
347 if (host->max_clk <= clock) {
351 div < SDHCI_MAX_DIV_SPEC_300;
353 if ((host->max_clk / div) <= clock)
360 /* Version 2.00 divisors must be a power of 2. */
361 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
362 if ((host->max_clk / div) <= clock)
368 if (host->ops && host->ops->set_clock)
369 host->ops->set_clock(host, div);
371 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
372 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
373 << SDHCI_DIVIDER_HI_SHIFT;
374 clk |= SDHCI_CLOCK_INT_EN;
375 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
379 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
380 & SDHCI_CLOCK_INT_STABLE)) {
382 printf("%s: Internal clock never stabilised.\n",
390 clk |= SDHCI_CLOCK_CARD_EN;
391 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
395 static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
399 if (power != (unsigned short)-1) {
400 switch (1 << power) {
401 case MMC_VDD_165_195:
402 pwr = SDHCI_POWER_180;
406 pwr = SDHCI_POWER_300;
410 pwr = SDHCI_POWER_330;
416 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
420 pwr |= SDHCI_POWER_ON;
422 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
425 #ifdef CONFIG_DM_MMC_OPS
426 static int sdhci_set_ios(struct udevice *dev)
428 struct mmc *mmc = mmc_get_mmc_dev(dev);
430 static int sdhci_set_ios(struct mmc *mmc)
434 struct sdhci_host *host = mmc->priv;
436 if (host->ops && host->ops->set_control_reg)
437 host->ops->set_control_reg(host);
439 if (mmc->clock != host->clock)
440 sdhci_set_clock(mmc, mmc->clock);
443 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
444 if (mmc->bus_width == 8) {
445 ctrl &= ~SDHCI_CTRL_4BITBUS;
446 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
447 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
448 ctrl |= SDHCI_CTRL_8BITBUS;
450 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
451 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
452 ctrl &= ~SDHCI_CTRL_8BITBUS;
453 if (mmc->bus_width == 4)
454 ctrl |= SDHCI_CTRL_4BITBUS;
456 ctrl &= ~SDHCI_CTRL_4BITBUS;
459 if (mmc->clock > 26000000)
460 ctrl |= SDHCI_CTRL_HISPD;
462 ctrl &= ~SDHCI_CTRL_HISPD;
464 if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
465 ctrl &= ~SDHCI_CTRL_HISPD;
467 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
469 /* If available, call the driver specific "post" set_ios() function */
470 if (host->ops && host->ops->set_ios_post)
471 host->ops->set_ios_post(host);
476 static int sdhci_init(struct mmc *mmc)
478 struct sdhci_host *host = mmc->priv;
480 sdhci_reset(host, SDHCI_RESET_ALL);
482 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && !aligned_buffer) {
483 aligned_buffer = memalign(8, 512*1024);
484 if (!aligned_buffer) {
485 printf("%s: Aligned buffer alloc failed!!!\n",
491 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
493 if (host->ops && host->ops->get_cd)
494 host->ops->get_cd(host);
496 /* Enable only interrupts served by the SD controller */
497 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
499 /* Mask all sdhci interrupt sources */
500 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
505 #ifdef CONFIG_DM_MMC_OPS
506 int sdhci_probe(struct udevice *dev)
508 struct mmc *mmc = mmc_get_mmc_dev(dev);
510 return sdhci_init(mmc);
513 const struct dm_mmc_ops sdhci_ops = {
514 .send_cmd = sdhci_send_command,
515 .set_ios = sdhci_set_ios,
518 static const struct mmc_ops sdhci_ops = {
519 .send_cmd = sdhci_send_command,
520 .set_ios = sdhci_set_ios,
525 int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
526 u32 f_max, u32 f_min)
530 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
532 #ifdef CONFIG_MMC_SDHCI_SDMA
533 if (!(caps & SDHCI_CAN_DO_SDMA)) {
534 printf("%s: Your controller doesn't support SDMA!!\n",
539 if (host->quirks & SDHCI_QUIRK_REG32_RW)
541 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
543 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
545 cfg->name = host->name;
546 #ifndef CONFIG_DM_MMC_OPS
547 cfg->ops = &sdhci_ops;
550 /* Check whether the clock multiplier is supported or not */
551 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
552 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
553 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
554 SDHCI_CLOCK_MUL_SHIFT;
557 if (host->max_clk == 0) {
558 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
559 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
560 SDHCI_CLOCK_BASE_SHIFT;
562 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
563 SDHCI_CLOCK_BASE_SHIFT;
564 host->max_clk *= 1000000;
566 host->max_clk *= host->clk_mul;
568 if (host->max_clk == 0) {
569 printf("%s: Hardware doesn't specify base clock frequency\n",
573 if (f_max && (f_max < host->max_clk))
576 cfg->f_max = host->max_clk;
580 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
581 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
583 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
586 if (caps & SDHCI_CAN_VDD_330)
587 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
588 if (caps & SDHCI_CAN_VDD_300)
589 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
590 if (caps & SDHCI_CAN_VDD_180)
591 cfg->voltages |= MMC_VDD_165_195;
593 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
594 cfg->voltages |= host->voltages;
596 cfg->host_caps = MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
598 /* Since Host Controller Version3.0 */
599 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
600 if (!(caps & SDHCI_CAN_DO_8BIT))
601 cfg->host_caps &= ~MMC_MODE_8BIT;
605 cfg->host_caps |= host->host_caps;
607 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
613 int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
615 return mmc_bind(dev, mmc, cfg);
618 int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
622 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
626 host->mmc = mmc_create(&host->cfg, host);
627 if (host->mmc == NULL) {
628 printf("%s: mmc create fail!\n", __func__);