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+
13 #include <asm-generic/errno.h>
15 #define PAGE_SIZE 4096
17 static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
19 unsigned long timeout = 1000;
22 dwmci_writel(host, DWMCI_CTRL, value);
25 ctrl = dwmci_readl(host, DWMCI_CTRL);
26 if (!(ctrl & DWMCI_RESET_ALL))
32 static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
33 u32 desc0, u32 desc1, u32 desc2)
35 struct dwmci_idmac *desc = idmac;
40 desc->next_addr = (unsigned int)desc + sizeof(struct dwmci_idmac);
43 static void dwmci_prepare_data(struct dwmci_host *host,
44 struct mmc_data *data)
47 unsigned int i = 0, flags, cnt, blk_cnt;
48 ulong data_start, data_end, start_addr;
49 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac, data->blocks);
52 blk_cnt = data->blocks;
54 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
56 data_start = (ulong)cur_idmac;
57 dwmci_writel(host, DWMCI_DBADDR, (unsigned int)cur_idmac);
59 if (data->flags == MMC_DATA_READ)
60 start_addr = (unsigned int)data->dest;
62 start_addr = (unsigned int)data->src;
65 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
66 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
68 flags |= DWMCI_IDMAC_LD;
69 cnt = data->blocksize * blk_cnt;
71 cnt = data->blocksize * 8;
73 dwmci_set_idma_desc(cur_idmac, flags, cnt,
74 start_addr + (i * PAGE_SIZE));
83 data_end = (ulong)cur_idmac;
84 flush_dcache_range(data_start, data_end + ARCH_DMA_MINALIGN);
86 ctrl = dwmci_readl(host, DWMCI_CTRL);
87 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
88 dwmci_writel(host, DWMCI_CTRL, ctrl);
90 ctrl = dwmci_readl(host, DWMCI_BMOD);
91 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
92 dwmci_writel(host, DWMCI_BMOD, ctrl);
94 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
95 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
98 static int dwmci_set_transfer_mode(struct dwmci_host *host,
99 struct mmc_data *data)
103 mode = DWMCI_CMD_DATA_EXP;
104 if (data->flags & MMC_DATA_WRITE)
105 mode |= DWMCI_CMD_RW;
110 static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
111 struct mmc_data *data)
113 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
115 unsigned int timeout = 100000;
118 ulong start = get_timer(0);
120 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
121 if (get_timer(start) > timeout) {
122 printf("Timeout on data busy\n");
127 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
130 dwmci_prepare_data(host, data);
132 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
135 flags = dwmci_set_transfer_mode(host, data);
137 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
140 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
141 flags |= DWMCI_CMD_ABORT_STOP;
143 flags |= DWMCI_CMD_PRV_DAT_WAIT;
145 if (cmd->resp_type & MMC_RSP_PRESENT) {
146 flags |= DWMCI_CMD_RESP_EXP;
147 if (cmd->resp_type & MMC_RSP_136)
148 flags |= DWMCI_CMD_RESP_LENGTH;
151 if (cmd->resp_type & MMC_RSP_CRC)
152 flags |= DWMCI_CMD_CHECK_CRC;
154 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
156 debug("Sending CMD%d\n",cmd->cmdidx);
158 dwmci_writel(host, DWMCI_CMD, flags);
160 for (i = 0; i < retry; i++) {
161 mask = dwmci_readl(host, DWMCI_RINTSTS);
162 if (mask & DWMCI_INTMSK_CDONE) {
164 dwmci_writel(host, DWMCI_RINTSTS, mask);
172 if (mask & DWMCI_INTMSK_RTO) {
173 debug("Response Timeout..\n");
175 } else if (mask & DWMCI_INTMSK_RE) {
176 debug("Response Error..\n");
181 if (cmd->resp_type & MMC_RSP_PRESENT) {
182 if (cmd->resp_type & MMC_RSP_136) {
183 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
184 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
185 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
186 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
188 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
194 mask = dwmci_readl(host, DWMCI_RINTSTS);
195 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
196 debug("DATA ERROR!\n");
199 } while (!(mask & DWMCI_INTMSK_DTO));
201 dwmci_writel(host, DWMCI_RINTSTS, mask);
203 ctrl = dwmci_readl(host, DWMCI_CTRL);
204 ctrl &= ~(DWMCI_DMA_EN);
205 dwmci_writel(host, DWMCI_CTRL, ctrl);
213 static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
219 if ((freq == host->clock) || (freq == 0))
222 * If host->mmc_clk didn't define,
223 * then assume that host->bus_hz is source clock value.
224 * host->bus_hz should be set from user.
227 sclk = host->mmc_clk(host->dev_index);
228 else if (host->bus_hz)
231 printf("Didn't get source clock value..\n");
235 div = DIV_ROUND_UP(sclk, 2 * freq);
237 dwmci_writel(host, DWMCI_CLKENA, 0);
238 dwmci_writel(host, DWMCI_CLKSRC, 0);
240 dwmci_writel(host, DWMCI_CLKDIV, div);
241 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
242 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
245 status = dwmci_readl(host, DWMCI_CMD);
247 printf("TIMEOUT error!!\n");
250 } while (status & DWMCI_CMD_START);
252 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
253 DWMCI_CLKEN_LOW_PWR);
255 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
256 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
260 status = dwmci_readl(host, DWMCI_CMD);
262 printf("TIMEOUT error!!\n");
265 } while (status & DWMCI_CMD_START);
272 static void dwmci_set_ios(struct mmc *mmc)
274 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
277 debug("Buswidth = %d, clock: %d\n",mmc->bus_width, mmc->clock);
279 dwmci_setup_bus(host, mmc->clock);
280 switch (mmc->bus_width) {
282 ctype = DWMCI_CTYPE_8BIT;
285 ctype = DWMCI_CTYPE_4BIT;
288 ctype = DWMCI_CTYPE_1BIT;
292 dwmci_writel(host, DWMCI_CTYPE, ctype);
298 static int dwmci_init(struct mmc *mmc)
300 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
303 dwmci_writel(host, DWMCI_PWREN, 1);
305 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
306 debug("%s[%d] Fail-reset!!\n",__func__,__LINE__);
310 /* Enumerate at 400KHz */
311 dwmci_setup_bus(host, mmc->f_min);
313 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
314 dwmci_writel(host, DWMCI_INTMASK, 0);
316 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
318 dwmci_writel(host, DWMCI_IDINTEN, 0);
319 dwmci_writel(host, DWMCI_BMOD, 1);
321 if (!host->fifoth_val) {
322 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
323 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
324 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
325 TX_WMARK(fifo_size / 2);
327 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
329 dwmci_writel(host, DWMCI_CLKENA, 0);
330 dwmci_writel(host, DWMCI_CLKSRC, 0);
335 int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
340 mmc = malloc(sizeof(struct mmc));
342 printf("mmc malloc fail!\n");
349 sprintf(mmc->name, "%s", host->name);
350 mmc->send_cmd = dwmci_send_cmd;
351 mmc->set_ios = dwmci_set_ios;
352 mmc->init = dwmci_init;
353 mmc->f_min = min_clk;
354 mmc->f_max = max_clk;
356 mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
358 mmc->host_caps = host->caps;
360 if (host->buswidth == 8) {
361 mmc->host_caps |= MMC_MODE_8BIT;
362 mmc->host_caps &= ~MMC_MODE_4BIT;
364 mmc->host_caps |= MMC_MODE_4BIT;
365 mmc->host_caps &= ~MMC_MODE_8BIT;
367 mmc->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_HC;
369 err = mmc_register(mmc);