blob: 26d34ae5ccc4d0349b27e1dda3128dfbfb84ebf9 [file] [log] [blame]
Jaehoon Chung757bff42012-10-15 19:10:29 +00001/*
2 * (C) Copyright 2012 SAMSUNG Electronics
3 * Jaehoon Chung <jh80.chung@samsung.com>
4 * Rajeshawari Shinde <rajeshwari.s@samsung.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung757bff42012-10-15 19:10:29 +00007 */
8
Alexey Brodkin2a7a2102013-12-26 15:29:07 +04009#include <bouncebuf.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000010#include <common.h>
Simon Glass1c87ffe2015-08-06 20:16:27 -060011#include <errno.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000012#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060013#include <memalign.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000014#include <mmc.h>
15#include <dwmmc.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000016#include <asm-generic/errno.h>
17
18#define PAGE_SIZE 4096
19
20static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
21{
22 unsigned long timeout = 1000;
23 u32 ctrl;
24
25 dwmci_writel(host, DWMCI_CTRL, value);
26
27 while (timeout--) {
28 ctrl = dwmci_readl(host, DWMCI_CTRL);
29 if (!(ctrl & DWMCI_RESET_ALL))
30 return 1;
31 }
32 return 0;
33}
34
35static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
36 u32 desc0, u32 desc1, u32 desc2)
37{
38 struct dwmci_idmac *desc = idmac;
39
40 desc->flags = desc0;
41 desc->cnt = desc1;
42 desc->addr = desc2;
43 desc->next_addr = (unsigned int)desc + sizeof(struct dwmci_idmac);
44}
45
46static void dwmci_prepare_data(struct dwmci_host *host,
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040047 struct mmc_data *data,
48 struct dwmci_idmac *cur_idmac,
49 void *bounce_buffer)
Jaehoon Chung757bff42012-10-15 19:10:29 +000050{
51 unsigned long ctrl;
52 unsigned int i = 0, flags, cnt, blk_cnt;
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040053 ulong data_start, data_end;
Jaehoon Chung757bff42012-10-15 19:10:29 +000054
55
56 blk_cnt = data->blocks;
57
58 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
59
60 data_start = (ulong)cur_idmac;
61 dwmci_writel(host, DWMCI_DBADDR, (unsigned int)cur_idmac);
62
Jaehoon Chung757bff42012-10-15 19:10:29 +000063 do {
64 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
65 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
66 if (blk_cnt <= 8) {
67 flags |= DWMCI_IDMAC_LD;
68 cnt = data->blocksize * blk_cnt;
69 } else
70 cnt = data->blocksize * 8;
71
72 dwmci_set_idma_desc(cur_idmac, flags, cnt,
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040073 (u32)bounce_buffer + (i * PAGE_SIZE));
Jaehoon Chung757bff42012-10-15 19:10:29 +000074
Mischa Jonker21bd5762013-07-26 16:18:40 +020075 if (blk_cnt <= 8)
Jaehoon Chung757bff42012-10-15 19:10:29 +000076 break;
77 blk_cnt -= 8;
78 cur_idmac++;
79 i++;
80 } while(1);
81
82 data_end = (ulong)cur_idmac;
83 flush_dcache_range(data_start, data_end + ARCH_DMA_MINALIGN);
84
85 ctrl = dwmci_readl(host, DWMCI_CTRL);
86 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
87 dwmci_writel(host, DWMCI_CTRL, ctrl);
88
89 ctrl = dwmci_readl(host, DWMCI_BMOD);
90 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
91 dwmci_writel(host, DWMCI_BMOD, ctrl);
92
93 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
94 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
95}
96
97static int dwmci_set_transfer_mode(struct dwmci_host *host,
98 struct mmc_data *data)
99{
100 unsigned long mode;
101
102 mode = DWMCI_CMD_DATA_EXP;
103 if (data->flags & MMC_DATA_WRITE)
104 mode |= DWMCI_CMD_RW;
105
106 return mode;
107}
108
109static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
110 struct mmc_data *data)
111{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200112 struct dwmci_host *host = mmc->priv;
Mischa Jonker2136d222013-07-26 14:08:14 +0200113 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonker21bd5762013-07-26 16:18:40 +0200114 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut9042d972015-07-27 22:39:38 +0200115 int ret = 0, flags = 0, i;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000116 unsigned int timeout = 100000;
117 u32 retry = 10000;
118 u32 mask, ctrl;
Amar9c50e352013-04-27 11:42:54 +0530119 ulong start = get_timer(0);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400120 struct bounce_buffer bbstate;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000121
122 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
Amar9c50e352013-04-27 11:42:54 +0530123 if (get_timer(start) > timeout) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600124 debug("%s: Timeout on data busy\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000125 return TIMEOUT;
126 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000127 }
128
129 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
130
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400131 if (data) {
132 if (data->flags == MMC_DATA_READ) {
133 bounce_buffer_start(&bbstate, (void*)data->dest,
134 data->blocksize *
135 data->blocks, GEN_BB_WRITE);
136 } else {
137 bounce_buffer_start(&bbstate, (void*)data->src,
138 data->blocksize *
139 data->blocks, GEN_BB_READ);
140 }
141 dwmci_prepare_data(host, data, cur_idmac,
142 bbstate.bounce_buffer);
143 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000144
Jaehoon Chung757bff42012-10-15 19:10:29 +0000145 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
146
147 if (data)
148 flags = dwmci_set_transfer_mode(host, data);
149
150 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
151 return -1;
152
153 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
154 flags |= DWMCI_CMD_ABORT_STOP;
155 else
156 flags |= DWMCI_CMD_PRV_DAT_WAIT;
157
158 if (cmd->resp_type & MMC_RSP_PRESENT) {
159 flags |= DWMCI_CMD_RESP_EXP;
160 if (cmd->resp_type & MMC_RSP_136)
161 flags |= DWMCI_CMD_RESP_LENGTH;
162 }
163
164 if (cmd->resp_type & MMC_RSP_CRC)
165 flags |= DWMCI_CMD_CHECK_CRC;
166
167 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
168
169 debug("Sending CMD%d\n",cmd->cmdidx);
170
171 dwmci_writel(host, DWMCI_CMD, flags);
172
173 for (i = 0; i < retry; i++) {
174 mask = dwmci_readl(host, DWMCI_RINTSTS);
175 if (mask & DWMCI_INTMSK_CDONE) {
176 if (!data)
177 dwmci_writel(host, DWMCI_RINTSTS, mask);
178 break;
179 }
180 }
181
Pavel Machekf33c9302014-09-05 12:49:48 +0200182 if (i == retry) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600183 debug("%s: Timeout.\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000184 return TIMEOUT;
Pavel Machekf33c9302014-09-05 12:49:48 +0200185 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000186
187 if (mask & DWMCI_INTMSK_RTO) {
Pavel Machekf33c9302014-09-05 12:49:48 +0200188 /*
189 * Timeout here is not necessarily fatal. (e)MMC cards
190 * will splat here when they receive CMD55 as they do
191 * not support this command and that is exactly the way
192 * to tell them apart from SD cards. Thus, this output
193 * below shall be debug(). eMMC cards also do not favor
194 * CMD8, please keep that in mind.
195 */
196 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000197 return TIMEOUT;
198 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600199 debug("%s: Response Error.\n", __func__);
200 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000201 }
202
203
204 if (cmd->resp_type & MMC_RSP_PRESENT) {
205 if (cmd->resp_type & MMC_RSP_136) {
206 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
207 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
208 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
209 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
210 } else {
211 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
212 }
213 }
214
215 if (data) {
Marek Vasutd9dbb972015-07-27 22:39:37 +0200216 start = get_timer(0);
Łukasz Majewski4d58e102015-09-25 18:25:25 +0200217 timeout = 240000;
Marek Vasutd9dbb972015-07-27 22:39:37 +0200218 for (;;) {
Jaehoon Chung757bff42012-10-15 19:10:29 +0000219 mask = dwmci_readl(host, DWMCI_RINTSTS);
Marek Vasutd9dbb972015-07-27 22:39:37 +0200220 /* Error during data transfer. */
Jaehoon Chung757bff42012-10-15 19:10:29 +0000221 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600222 debug("%s: DATA ERROR!\n", __func__);
Marek Vasut9042d972015-07-27 22:39:38 +0200223 ret = -EINVAL;
224 break;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000225 }
Marek Vasutd9dbb972015-07-27 22:39:37 +0200226
227 /* Data arrived correctly. */
Marek Vasut9042d972015-07-27 22:39:38 +0200228 if (mask & DWMCI_INTMSK_DTO) {
229 ret = 0;
Marek Vasutd9dbb972015-07-27 22:39:37 +0200230 break;
Marek Vasut9042d972015-07-27 22:39:38 +0200231 }
Marek Vasutd9dbb972015-07-27 22:39:37 +0200232
233 /* Check for timeout. */
234 if (get_timer(start) > timeout) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600235 debug("%s: Timeout waiting for data!\n",
Marek Vasutd9dbb972015-07-27 22:39:37 +0200236 __func__);
Marek Vasut9042d972015-07-27 22:39:38 +0200237 ret = TIMEOUT;
238 break;
Marek Vasutd9dbb972015-07-27 22:39:37 +0200239 }
240 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000241
242 dwmci_writel(host, DWMCI_RINTSTS, mask);
243
244 ctrl = dwmci_readl(host, DWMCI_CTRL);
245 ctrl &= ~(DWMCI_DMA_EN);
246 dwmci_writel(host, DWMCI_CTRL, ctrl);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400247
248 bounce_buffer_stop(&bbstate);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000249 }
250
251 udelay(100);
252
Marek Vasut9042d972015-07-27 22:39:38 +0200253 return ret;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000254}
255
256static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
257{
258 u32 div, status;
259 int timeout = 10000;
260 unsigned long sclk;
261
Amar9c50e352013-04-27 11:42:54 +0530262 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung757bff42012-10-15 19:10:29 +0000263 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000264 /*
Pavel Machekf33c9302014-09-05 12:49:48 +0200265 * If host->get_mmc_clk isn't defined,
Jaehoon Chung757bff42012-10-15 19:10:29 +0000266 * then assume that host->bus_hz is source clock value.
Pavel Machekf33c9302014-09-05 12:49:48 +0200267 * host->bus_hz should be set by user.
Jaehoon Chung757bff42012-10-15 19:10:29 +0000268 */
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900269 if (host->get_mmc_clk)
Simon Glasse3563f22015-08-30 16:55:15 -0600270 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000271 else if (host->bus_hz)
272 sclk = host->bus_hz;
273 else {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600274 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000275 return -EINVAL;
276 }
277
Chin Liang See6ace1532014-06-10 01:26:52 -0500278 if (sclk == freq)
279 div = 0; /* bypass mode */
280 else
281 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000282
283 dwmci_writel(host, DWMCI_CLKENA, 0);
284 dwmci_writel(host, DWMCI_CLKSRC, 0);
285
286 dwmci_writel(host, DWMCI_CLKDIV, div);
287 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
288 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
289
290 do {
291 status = dwmci_readl(host, DWMCI_CMD);
292 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600293 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000294 return -ETIMEDOUT;
295 }
296 } while (status & DWMCI_CMD_START);
297
298 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
299 DWMCI_CLKEN_LOW_PWR);
300
301 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
302 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
303
304 timeout = 10000;
305 do {
306 status = dwmci_readl(host, DWMCI_CMD);
307 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600308 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000309 return -ETIMEDOUT;
310 }
311 } while (status & DWMCI_CMD_START);
312
313 host->clock = freq;
314
315 return 0;
316}
317
318static void dwmci_set_ios(struct mmc *mmc)
319{
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900320 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
321 u32 ctype, regs;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000322
Pavel Machekf33c9302014-09-05 12:49:48 +0200323 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000324
325 dwmci_setup_bus(host, mmc->clock);
326 switch (mmc->bus_width) {
327 case 8:
328 ctype = DWMCI_CTYPE_8BIT;
329 break;
330 case 4:
331 ctype = DWMCI_CTYPE_4BIT;
332 break;
333 default:
334 ctype = DWMCI_CTYPE_1BIT;
335 break;
336 }
337
338 dwmci_writel(host, DWMCI_CTYPE, ctype);
339
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900340 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov2b8a9692014-12-01 06:59:12 -0600341 if (mmc->ddr_mode)
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900342 regs |= DWMCI_DDR_MODE;
343 else
Jaehoon Chungafc9e2b2015-01-14 17:37:53 +0900344 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900345
346 dwmci_writel(host, DWMCI_UHS_REG, regs);
347
Jaehoon Chung757bff42012-10-15 19:10:29 +0000348 if (host->clksel)
349 host->clksel(host);
350}
351
352static int dwmci_init(struct mmc *mmc)
353{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200354 struct dwmci_host *host = mmc->priv;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000355
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900356 if (host->board_init)
357 host->board_init(host);
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530358
Jaehoon Chung757bff42012-10-15 19:10:29 +0000359 dwmci_writel(host, DWMCI_PWREN, 1);
360
361 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600362 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
363 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000364 }
365
Amar9c50e352013-04-27 11:42:54 +0530366 /* Enumerate at 400KHz */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200367 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar9c50e352013-04-27 11:42:54 +0530368
Jaehoon Chung757bff42012-10-15 19:10:29 +0000369 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
370 dwmci_writel(host, DWMCI_INTMASK, 0);
371
372 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
373
374 dwmci_writel(host, DWMCI_IDINTEN, 0);
375 dwmci_writel(host, DWMCI_BMOD, 1);
376
Simon Glass760177d2015-08-06 20:16:29 -0600377 if (!host->fifoth_val) {
378 uint32_t fifo_size;
379
380 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
381 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
382 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
383 TX_WMARK(fifo_size / 2);
Amar9c50e352013-04-27 11:42:54 +0530384 }
Simon Glass760177d2015-08-06 20:16:29 -0600385 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000386
387 dwmci_writel(host, DWMCI_CLKENA, 0);
388 dwmci_writel(host, DWMCI_CLKSRC, 0);
389
390 return 0;
391}
392
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200393static const struct mmc_ops dwmci_ops = {
394 .send_cmd = dwmci_send_cmd,
395 .set_ios = dwmci_set_ios,
396 .init = dwmci_init,
397};
398
Jaehoon Chung757bff42012-10-15 19:10:29 +0000399int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
400{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200401 host->cfg.name = host->name;
402 host->cfg.ops = &dwmci_ops;
403 host->cfg.f_min = min_clk;
404 host->cfg.f_max = max_clk;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000405
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200406 host->cfg.voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000407
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200408 host->cfg.host_caps = host->caps;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000409
410 if (host->buswidth == 8) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200411 host->cfg.host_caps |= MMC_MODE_8BIT;
412 host->cfg.host_caps &= ~MMC_MODE_4BIT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000413 } else {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200414 host->cfg.host_caps |= MMC_MODE_4BIT;
415 host->cfg.host_caps &= ~MMC_MODE_8BIT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000416 }
Rob Herring5a203972015-03-23 17:56:59 -0500417 host->cfg.host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000418
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200419 host->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000420
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200421 host->mmc = mmc_create(&host->cfg, host);
422 if (host->mmc == NULL)
423 return -1;
424
425 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000426}