2 * (C) Copyright 2012 SAMSUNG Electronics
3 * Jaehoon Chung <jh80.chung@samsung.com>
4 * Rajeshawari Shinde <rajeshwari.s@samsung.com>
6 * SPDX-License-Identifier: GPL-2.0+
17 #define PAGE_SIZE 4096
19 static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
21 unsigned long timeout = 1000;
24 dwmci_writel(host, DWMCI_CTRL, value);
27 ctrl = dwmci_readl(host, DWMCI_CTRL);
28 if (!(ctrl & DWMCI_RESET_ALL))
34 static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
35 u32 desc0, u32 desc1, u32 desc2)
37 struct dwmci_idmac *desc = idmac;
42 desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac);
45 static void dwmci_prepare_data(struct dwmci_host *host,
46 struct mmc_data *data,
47 struct dwmci_idmac *cur_idmac,
51 unsigned int i = 0, flags, cnt, blk_cnt;
52 ulong data_start, data_end;
55 blk_cnt = data->blocks;
57 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
59 data_start = (ulong)cur_idmac;
60 dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac);
63 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
64 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
66 flags |= DWMCI_IDMAC_LD;
67 cnt = data->blocksize * blk_cnt;
69 cnt = data->blocksize * 8;
71 dwmci_set_idma_desc(cur_idmac, flags, cnt,
72 (ulong)bounce_buffer + (i * PAGE_SIZE));
81 data_end = (ulong)cur_idmac;
82 flush_dcache_range(data_start, data_end + ARCH_DMA_MINALIGN);
84 ctrl = dwmci_readl(host, DWMCI_CTRL);
85 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
86 dwmci_writel(host, DWMCI_CTRL, ctrl);
88 ctrl = dwmci_readl(host, DWMCI_BMOD);
89 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
90 dwmci_writel(host, DWMCI_BMOD, ctrl);
92 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
93 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
96 static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
100 u32 mask, size, i, len = 0;
102 ulong start = get_timer(0);
103 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
104 RX_WMARK_SHIFT) + 1) * 2;
106 size = data->blocksize * data->blocks / 4;
107 if (data->flags == MMC_DATA_READ)
108 buf = (unsigned int *)data->dest;
110 buf = (unsigned int *)data->src;
113 mask = dwmci_readl(host, DWMCI_RINTSTS);
114 /* Error during data transfer. */
115 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
116 debug("%s: DATA ERROR!\n", __func__);
121 if (host->fifo_mode && size) {
123 if (data->flags == MMC_DATA_READ &&
124 (mask & DWMCI_INTMSK_RXDR)) {
126 len = dwmci_readl(host, DWMCI_STATUS);
127 len = (len >> DWMCI_FIFO_SHIFT) &
129 len = min(size, len);
130 for (i = 0; i < len; i++)
132 dwmci_readl(host, DWMCI_DATA);
133 size = size > len ? (size - len) : 0;
135 dwmci_writel(host, DWMCI_RINTSTS,
137 } else if (data->flags == MMC_DATA_WRITE &&
138 (mask & DWMCI_INTMSK_TXDR)) {
140 len = dwmci_readl(host, DWMCI_STATUS);
141 len = fifo_depth - ((len >>
144 len = min(size, len);
145 for (i = 0; i < len; i++)
146 dwmci_writel(host, DWMCI_DATA,
148 size = size > len ? (size - len) : 0;
150 dwmci_writel(host, DWMCI_RINTSTS,
155 /* Data arrived correctly. */
156 if (mask & DWMCI_INTMSK_DTO) {
161 /* Check for timeout. */
162 if (get_timer(start) > timeout) {
163 debug("%s: Timeout waiting for data!\n",
170 dwmci_writel(host, DWMCI_RINTSTS, mask);
175 static int dwmci_set_transfer_mode(struct dwmci_host *host,
176 struct mmc_data *data)
180 mode = DWMCI_CMD_DATA_EXP;
181 if (data->flags & MMC_DATA_WRITE)
182 mode |= DWMCI_CMD_RW;
188 static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
189 struct mmc_data *data)
191 struct mmc *mmc = mmc_get_mmc_dev(dev);
193 static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
194 struct mmc_data *data)
197 struct dwmci_host *host = mmc->priv;
198 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
199 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
200 int ret = 0, flags = 0, i;
201 unsigned int timeout = 500;
204 ulong start = get_timer(0);
205 struct bounce_buffer bbstate;
207 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
208 if (get_timer(start) > timeout) {
209 debug("%s: Timeout on data busy\n", __func__);
214 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
217 if (host->fifo_mode) {
218 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
219 dwmci_writel(host, DWMCI_BYTCNT,
220 data->blocksize * data->blocks);
221 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
223 if (data->flags == MMC_DATA_READ) {
224 bounce_buffer_start(&bbstate, (void*)data->dest,
226 data->blocks, GEN_BB_WRITE);
228 bounce_buffer_start(&bbstate, (void*)data->src,
230 data->blocks, GEN_BB_READ);
232 dwmci_prepare_data(host, data, cur_idmac,
233 bbstate.bounce_buffer);
237 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
240 flags = dwmci_set_transfer_mode(host, data);
242 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
245 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
246 flags |= DWMCI_CMD_ABORT_STOP;
248 flags |= DWMCI_CMD_PRV_DAT_WAIT;
250 if (cmd->resp_type & MMC_RSP_PRESENT) {
251 flags |= DWMCI_CMD_RESP_EXP;
252 if (cmd->resp_type & MMC_RSP_136)
253 flags |= DWMCI_CMD_RESP_LENGTH;
256 if (cmd->resp_type & MMC_RSP_CRC)
257 flags |= DWMCI_CMD_CHECK_CRC;
259 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
261 debug("Sending CMD%d\n",cmd->cmdidx);
263 dwmci_writel(host, DWMCI_CMD, flags);
265 for (i = 0; i < retry; i++) {
266 mask = dwmci_readl(host, DWMCI_RINTSTS);
267 if (mask & DWMCI_INTMSK_CDONE) {
269 dwmci_writel(host, DWMCI_RINTSTS, mask);
275 debug("%s: Timeout.\n", __func__);
279 if (mask & DWMCI_INTMSK_RTO) {
281 * Timeout here is not necessarily fatal. (e)MMC cards
282 * will splat here when they receive CMD55 as they do
283 * not support this command and that is exactly the way
284 * to tell them apart from SD cards. Thus, this output
285 * below shall be debug(). eMMC cards also do not favor
286 * CMD8, please keep that in mind.
288 debug("%s: Response Timeout.\n", __func__);
290 } else if (mask & DWMCI_INTMSK_RE) {
291 debug("%s: Response Error.\n", __func__);
296 if (cmd->resp_type & MMC_RSP_PRESENT) {
297 if (cmd->resp_type & MMC_RSP_136) {
298 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
299 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
300 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
301 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
303 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
308 ret = dwmci_data_transfer(host, data);
310 /* only dma mode need it */
311 if (!host->fifo_mode) {
312 ctrl = dwmci_readl(host, DWMCI_CTRL);
313 ctrl &= ~(DWMCI_DMA_EN);
314 dwmci_writel(host, DWMCI_CTRL, ctrl);
315 bounce_buffer_stop(&bbstate);
324 static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
330 if ((freq == host->clock) || (freq == 0))
333 * If host->get_mmc_clk isn't defined,
334 * then assume that host->bus_hz is source clock value.
335 * host->bus_hz should be set by user.
337 if (host->get_mmc_clk)
338 sclk = host->get_mmc_clk(host, freq);
339 else if (host->bus_hz)
342 debug("%s: Didn't get source clock value.\n", __func__);
347 div = 0; /* bypass mode */
349 div = DIV_ROUND_UP(sclk, 2 * freq);
351 dwmci_writel(host, DWMCI_CLKENA, 0);
352 dwmci_writel(host, DWMCI_CLKSRC, 0);
354 dwmci_writel(host, DWMCI_CLKDIV, div);
355 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
356 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
359 status = dwmci_readl(host, DWMCI_CMD);
361 debug("%s: Timeout!\n", __func__);
364 } while (status & DWMCI_CMD_START);
366 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
367 DWMCI_CLKEN_LOW_PWR);
369 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
370 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
374 status = dwmci_readl(host, DWMCI_CMD);
376 debug("%s: Timeout!\n", __func__);
379 } while (status & DWMCI_CMD_START);
387 static int dwmci_set_ios(struct udevice *dev)
389 struct mmc *mmc = mmc_get_mmc_dev(dev);
391 static int dwmci_set_ios(struct mmc *mmc)
394 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
397 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
399 dwmci_setup_bus(host, mmc->clock);
400 switch (mmc->bus_width) {
402 ctype = DWMCI_CTYPE_8BIT;
405 ctype = DWMCI_CTYPE_4BIT;
408 ctype = DWMCI_CTYPE_1BIT;
412 dwmci_writel(host, DWMCI_CTYPE, ctype);
414 regs = dwmci_readl(host, DWMCI_UHS_REG);
416 regs |= DWMCI_DDR_MODE;
418 regs &= ~DWMCI_DDR_MODE;
420 dwmci_writel(host, DWMCI_UHS_REG, regs);
428 static int dwmci_init(struct mmc *mmc)
430 struct dwmci_host *host = mmc->priv;
432 if (host->board_init)
433 host->board_init(host);
435 dwmci_writel(host, DWMCI_PWREN, 1);
437 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
438 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
442 /* Enumerate at 400KHz */
443 dwmci_setup_bus(host, mmc->cfg->f_min);
445 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
446 dwmci_writel(host, DWMCI_INTMASK, 0);
448 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
450 dwmci_writel(host, DWMCI_IDINTEN, 0);
451 dwmci_writel(host, DWMCI_BMOD, 1);
453 if (!host->fifoth_val) {
456 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
457 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
458 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
459 TX_WMARK(fifo_size / 2);
461 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
463 dwmci_writel(host, DWMCI_CLKENA, 0);
464 dwmci_writel(host, DWMCI_CLKSRC, 0);
470 int dwmci_probe(struct udevice *dev)
472 struct mmc *mmc = mmc_get_mmc_dev(dev);
474 return dwmci_init(mmc);
477 const struct dm_mmc_ops dm_dwmci_ops = {
478 .send_cmd = dwmci_send_cmd,
479 .set_ios = dwmci_set_ios,
483 static const struct mmc_ops dwmci_ops = {
484 .send_cmd = dwmci_send_cmd,
485 .set_ios = dwmci_set_ios,
490 void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
491 u32 max_clk, u32 min_clk)
493 cfg->name = host->name;
494 #ifndef CONFIG_DM_MMC
495 cfg->ops = &dwmci_ops;
497 cfg->f_min = min_clk;
498 cfg->f_max = max_clk;
500 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
502 cfg->host_caps = host->caps;
504 if (host->buswidth == 8) {
505 cfg->host_caps |= MMC_MODE_8BIT;
506 cfg->host_caps &= ~MMC_MODE_4BIT;
508 cfg->host_caps |= MMC_MODE_4BIT;
509 cfg->host_caps &= ~MMC_MODE_8BIT;
511 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
513 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
517 int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
519 return mmc_bind(dev, mmc, cfg);
522 int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
524 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
526 host->mmc = mmc_create(&host->cfg, host);
527 if (host->mmc == NULL)