blob: 13180fc0d69fa0bc178f8c29b877d18abedb3ce8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung757bff42012-10-15 19:10:29 +00002/*
3 * (C) Copyright 2012 SAMSUNG Electronics
4 * Jaehoon Chung <jh80.chung@samsung.com>
5 * Rajeshawari Shinde <rajeshwari.s@samsung.com>
Jaehoon Chung757bff42012-10-15 19:10:29 +00006 */
7
Alexey Brodkin2a7a2102013-12-26 15:29:07 +04008#include <bouncebuf.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +00009#include <common.h>
Simon Glass1c87ffe2015-08-06 20:16:27 -060010#include <errno.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000011#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060012#include <memalign.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000013#include <mmc.h>
14#include <dwmmc.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000015
16#define PAGE_SIZE 4096
17
18static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
19{
20 unsigned long timeout = 1000;
21 u32 ctrl;
22
23 dwmci_writel(host, DWMCI_CTRL, value);
24
25 while (timeout--) {
26 ctrl = dwmci_readl(host, DWMCI_CTRL);
27 if (!(ctrl & DWMCI_RESET_ALL))
28 return 1;
29 }
30 return 0;
31}
32
33static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
34 u32 desc0, u32 desc1, u32 desc2)
35{
36 struct dwmci_idmac *desc = idmac;
37
38 desc->flags = desc0;
39 desc->cnt = desc1;
40 desc->addr = desc2;
Prabhakar Kushwaha41f7be32015-10-25 13:18:25 +053041 desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac);
Jaehoon Chung757bff42012-10-15 19:10:29 +000042}
43
44static void dwmci_prepare_data(struct dwmci_host *host,
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040045 struct mmc_data *data,
46 struct dwmci_idmac *cur_idmac,
47 void *bounce_buffer)
Jaehoon Chung757bff42012-10-15 19:10:29 +000048{
49 unsigned long ctrl;
50 unsigned int i = 0, flags, cnt, blk_cnt;
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040051 ulong data_start, data_end;
Jaehoon Chung757bff42012-10-15 19:10:29 +000052
53
54 blk_cnt = data->blocks;
55
56 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
57
58 data_start = (ulong)cur_idmac;
Prabhakar Kushwaha41f7be32015-10-25 13:18:25 +053059 dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac);
Jaehoon Chung757bff42012-10-15 19:10:29 +000060
Jaehoon Chung757bff42012-10-15 19:10:29 +000061 do {
62 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
63 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
64 if (blk_cnt <= 8) {
65 flags |= DWMCI_IDMAC_LD;
66 cnt = data->blocksize * blk_cnt;
67 } else
68 cnt = data->blocksize * 8;
69
70 dwmci_set_idma_desc(cur_idmac, flags, cnt,
Prabhakar Kushwaha41f7be32015-10-25 13:18:25 +053071 (ulong)bounce_buffer + (i * PAGE_SIZE));
Jaehoon Chung757bff42012-10-15 19:10:29 +000072
Mischa Jonker21bd5762013-07-26 16:18:40 +020073 if (blk_cnt <= 8)
Jaehoon Chung757bff42012-10-15 19:10:29 +000074 break;
75 blk_cnt -= 8;
76 cur_idmac++;
77 i++;
78 } while(1);
79
80 data_end = (ulong)cur_idmac;
81 flush_dcache_range(data_start, data_end + ARCH_DMA_MINALIGN);
82
83 ctrl = dwmci_readl(host, DWMCI_CTRL);
84 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
85 dwmci_writel(host, DWMCI_CTRL, ctrl);
86
87 ctrl = dwmci_readl(host, DWMCI_BMOD);
88 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
89 dwmci_writel(host, DWMCI_BMOD, ctrl);
90
91 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
92 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
93}
94
huang lina65f51b2015-11-17 14:20:22 +080095static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
huang linf382eb82015-11-17 14:20:21 +080096{
97 int ret = 0;
huang lina65f51b2015-11-17 14:20:22 +080098 u32 timeout = 240000;
99 u32 mask, size, i, len = 0;
100 u32 *buf = NULL;
huang linf382eb82015-11-17 14:20:21 +0800101 ulong start = get_timer(0);
huang lina65f51b2015-11-17 14:20:22 +0800102 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
103 RX_WMARK_SHIFT) + 1) * 2;
104
105 size = data->blocksize * data->blocks / 4;
106 if (data->flags == MMC_DATA_READ)
107 buf = (unsigned int *)data->dest;
108 else
109 buf = (unsigned int *)data->src;
huang linf382eb82015-11-17 14:20:21 +0800110
111 for (;;) {
112 mask = dwmci_readl(host, DWMCI_RINTSTS);
113 /* Error during data transfer. */
114 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
115 debug("%s: DATA ERROR!\n", __func__);
116 ret = -EINVAL;
117 break;
118 }
119
huang lina65f51b2015-11-17 14:20:22 +0800120 if (host->fifo_mode && size) {
Xu Ziyuan720724d2016-07-28 10:25:48 +0800121 len = 0;
Jacob Chen2b429032016-09-19 10:16:50 +0800122 if (data->flags == MMC_DATA_READ &&
123 (mask & DWMCI_INTMSK_RXDR)) {
124 while (size) {
huang lina65f51b2015-11-17 14:20:22 +0800125 len = dwmci_readl(host, DWMCI_STATUS);
126 len = (len >> DWMCI_FIFO_SHIFT) &
127 DWMCI_FIFO_MASK;
Xu Ziyuan2990e072016-07-28 10:25:47 +0800128 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800129 for (i = 0; i < len; i++)
130 *buf++ =
131 dwmci_readl(host, DWMCI_DATA);
Jacob Chen2b429032016-09-19 10:16:50 +0800132 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800133 }
Jacob Chen2b429032016-09-19 10:16:50 +0800134 dwmci_writel(host, DWMCI_RINTSTS,
135 DWMCI_INTMSK_RXDR);
136 } else if (data->flags == MMC_DATA_WRITE &&
137 (mask & DWMCI_INTMSK_TXDR)) {
138 while (size) {
huang lina65f51b2015-11-17 14:20:22 +0800139 len = dwmci_readl(host, DWMCI_STATUS);
140 len = fifo_depth - ((len >>
141 DWMCI_FIFO_SHIFT) &
142 DWMCI_FIFO_MASK);
Xu Ziyuan2990e072016-07-28 10:25:47 +0800143 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800144 for (i = 0; i < len; i++)
145 dwmci_writel(host, DWMCI_DATA,
146 *buf++);
Jacob Chen2b429032016-09-19 10:16:50 +0800147 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800148 }
Jacob Chen2b429032016-09-19 10:16:50 +0800149 dwmci_writel(host, DWMCI_RINTSTS,
150 DWMCI_INTMSK_TXDR);
huang lina65f51b2015-11-17 14:20:22 +0800151 }
huang lina65f51b2015-11-17 14:20:22 +0800152 }
153
huang linf382eb82015-11-17 14:20:21 +0800154 /* Data arrived correctly. */
155 if (mask & DWMCI_INTMSK_DTO) {
156 ret = 0;
157 break;
158 }
159
160 /* Check for timeout. */
161 if (get_timer(start) > timeout) {
162 debug("%s: Timeout waiting for data!\n",
163 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900164 ret = -ETIMEDOUT;
huang linf382eb82015-11-17 14:20:21 +0800165 break;
166 }
167 }
168
169 dwmci_writel(host, DWMCI_RINTSTS, mask);
170
171 return ret;
172}
173
Jaehoon Chung757bff42012-10-15 19:10:29 +0000174static int dwmci_set_transfer_mode(struct dwmci_host *host,
175 struct mmc_data *data)
176{
177 unsigned long mode;
178
179 mode = DWMCI_CMD_DATA_EXP;
180 if (data->flags & MMC_DATA_WRITE)
181 mode |= DWMCI_CMD_RW;
182
183 return mode;
184}
185
Simon Glasse7881d82017-07-29 11:35:31 -0600186#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900187static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glass691272f2016-06-12 23:30:23 -0600188 struct mmc_data *data)
189{
190 struct mmc *mmc = mmc_get_mmc_dev(dev);
191#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000192static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
193 struct mmc_data *data)
194{
Simon Glass691272f2016-06-12 23:30:23 -0600195#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200196 struct dwmci_host *host = mmc->priv;
Mischa Jonker2136d222013-07-26 14:08:14 +0200197 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonker21bd5762013-07-26 16:18:40 +0200198 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut9042d972015-07-27 22:39:38 +0200199 int ret = 0, flags = 0, i;
Xu Ziyuan02ebd422016-07-19 09:38:22 +0800200 unsigned int timeout = 500;
Alexander Graf9b5b8b62016-03-04 01:09:52 +0100201 u32 retry = 100000;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000202 u32 mask, ctrl;
Amar9c50e352013-04-27 11:42:54 +0530203 ulong start = get_timer(0);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400204 struct bounce_buffer bbstate;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000205
206 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
Amar9c50e352013-04-27 11:42:54 +0530207 if (get_timer(start) > timeout) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600208 debug("%s: Timeout on data busy\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900209 return -ETIMEDOUT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000210 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000211 }
212
213 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
214
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400215 if (data) {
huang lina65f51b2015-11-17 14:20:22 +0800216 if (host->fifo_mode) {
217 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
218 dwmci_writel(host, DWMCI_BYTCNT,
219 data->blocksize * data->blocks);
220 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400221 } else {
huang lina65f51b2015-11-17 14:20:22 +0800222 if (data->flags == MMC_DATA_READ) {
223 bounce_buffer_start(&bbstate, (void*)data->dest,
224 data->blocksize *
225 data->blocks, GEN_BB_WRITE);
226 } else {
227 bounce_buffer_start(&bbstate, (void*)data->src,
228 data->blocksize *
229 data->blocks, GEN_BB_READ);
230 }
231 dwmci_prepare_data(host, data, cur_idmac,
232 bbstate.bounce_buffer);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400233 }
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400234 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000235
Jaehoon Chung757bff42012-10-15 19:10:29 +0000236 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
237
238 if (data)
239 flags = dwmci_set_transfer_mode(host, data);
240
241 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
242 return -1;
243
244 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
245 flags |= DWMCI_CMD_ABORT_STOP;
246 else
247 flags |= DWMCI_CMD_PRV_DAT_WAIT;
248
249 if (cmd->resp_type & MMC_RSP_PRESENT) {
250 flags |= DWMCI_CMD_RESP_EXP;
251 if (cmd->resp_type & MMC_RSP_136)
252 flags |= DWMCI_CMD_RESP_LENGTH;
253 }
254
255 if (cmd->resp_type & MMC_RSP_CRC)
256 flags |= DWMCI_CMD_CHECK_CRC;
257
258 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
259
260 debug("Sending CMD%d\n",cmd->cmdidx);
261
262 dwmci_writel(host, DWMCI_CMD, flags);
263
264 for (i = 0; i < retry; i++) {
265 mask = dwmci_readl(host, DWMCI_RINTSTS);
266 if (mask & DWMCI_INTMSK_CDONE) {
267 if (!data)
268 dwmci_writel(host, DWMCI_RINTSTS, mask);
269 break;
270 }
271 }
272
Pavel Machekf33c9302014-09-05 12:49:48 +0200273 if (i == retry) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600274 debug("%s: Timeout.\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900275 return -ETIMEDOUT;
Pavel Machekf33c9302014-09-05 12:49:48 +0200276 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000277
278 if (mask & DWMCI_INTMSK_RTO) {
Pavel Machekf33c9302014-09-05 12:49:48 +0200279 /*
280 * Timeout here is not necessarily fatal. (e)MMC cards
281 * will splat here when they receive CMD55 as they do
282 * not support this command and that is exactly the way
283 * to tell them apart from SD cards. Thus, this output
284 * below shall be debug(). eMMC cards also do not favor
285 * CMD8, please keep that in mind.
286 */
287 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900288 return -ETIMEDOUT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000289 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600290 debug("%s: Response Error.\n", __func__);
291 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000292 }
293
294
295 if (cmd->resp_type & MMC_RSP_PRESENT) {
296 if (cmd->resp_type & MMC_RSP_136) {
297 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
298 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
299 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
300 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
301 } else {
302 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
303 }
304 }
305
306 if (data) {
huang lina65f51b2015-11-17 14:20:22 +0800307 ret = dwmci_data_transfer(host, data);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000308
huang lina65f51b2015-11-17 14:20:22 +0800309 /* only dma mode need it */
310 if (!host->fifo_mode) {
311 ctrl = dwmci_readl(host, DWMCI_CTRL);
312 ctrl &= ~(DWMCI_DMA_EN);
313 dwmci_writel(host, DWMCI_CTRL, ctrl);
314 bounce_buffer_stop(&bbstate);
315 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000316 }
317
318 udelay(100);
319
Marek Vasut9042d972015-07-27 22:39:38 +0200320 return ret;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000321}
322
323static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
324{
325 u32 div, status;
326 int timeout = 10000;
327 unsigned long sclk;
328
Amar9c50e352013-04-27 11:42:54 +0530329 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung757bff42012-10-15 19:10:29 +0000330 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000331 /*
Pavel Machekf33c9302014-09-05 12:49:48 +0200332 * If host->get_mmc_clk isn't defined,
Jaehoon Chung757bff42012-10-15 19:10:29 +0000333 * then assume that host->bus_hz is source clock value.
Pavel Machekf33c9302014-09-05 12:49:48 +0200334 * host->bus_hz should be set by user.
Jaehoon Chung757bff42012-10-15 19:10:29 +0000335 */
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900336 if (host->get_mmc_clk)
Simon Glasse3563f22015-08-30 16:55:15 -0600337 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000338 else if (host->bus_hz)
339 sclk = host->bus_hz;
340 else {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600341 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000342 return -EINVAL;
343 }
344
Chin Liang See6ace1532014-06-10 01:26:52 -0500345 if (sclk == freq)
346 div = 0; /* bypass mode */
347 else
348 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000349
350 dwmci_writel(host, DWMCI_CLKENA, 0);
351 dwmci_writel(host, DWMCI_CLKSRC, 0);
352
353 dwmci_writel(host, DWMCI_CLKDIV, div);
354 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
355 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
356
357 do {
358 status = dwmci_readl(host, DWMCI_CMD);
359 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600360 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000361 return -ETIMEDOUT;
362 }
363 } while (status & DWMCI_CMD_START);
364
365 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
366 DWMCI_CLKEN_LOW_PWR);
367
368 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
369 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
370
371 timeout = 10000;
372 do {
373 status = dwmci_readl(host, DWMCI_CMD);
374 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600375 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000376 return -ETIMEDOUT;
377 }
378 } while (status & DWMCI_CMD_START);
379
380 host->clock = freq;
381
382 return 0;
383}
384
Simon Glasse7881d82017-07-29 11:35:31 -0600385#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900386static int dwmci_set_ios(struct udevice *dev)
Simon Glass691272f2016-06-12 23:30:23 -0600387{
388 struct mmc *mmc = mmc_get_mmc_dev(dev);
389#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900390static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung757bff42012-10-15 19:10:29 +0000391{
Simon Glass691272f2016-06-12 23:30:23 -0600392#endif
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900393 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
394 u32 ctype, regs;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000395
Pavel Machekf33c9302014-09-05 12:49:48 +0200396 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000397
398 dwmci_setup_bus(host, mmc->clock);
399 switch (mmc->bus_width) {
400 case 8:
401 ctype = DWMCI_CTYPE_8BIT;
402 break;
403 case 4:
404 ctype = DWMCI_CTYPE_4BIT;
405 break;
406 default:
407 ctype = DWMCI_CTYPE_1BIT;
408 break;
409 }
410
411 dwmci_writel(host, DWMCI_CTYPE, ctype);
412
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900413 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov2b8a9692014-12-01 06:59:12 -0600414 if (mmc->ddr_mode)
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900415 regs |= DWMCI_DDR_MODE;
416 else
Jaehoon Chungafc9e2b2015-01-14 17:37:53 +0900417 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900418
419 dwmci_writel(host, DWMCI_UHS_REG, regs);
420
Jaehoon Chung757bff42012-10-15 19:10:29 +0000421 if (host->clksel)
422 host->clksel(host);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900423
Simon Glass691272f2016-06-12 23:30:23 -0600424 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000425}
426
427static int dwmci_init(struct mmc *mmc)
428{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200429 struct dwmci_host *host = mmc->priv;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000430
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900431 if (host->board_init)
432 host->board_init(host);
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530433
Jaehoon Chung757bff42012-10-15 19:10:29 +0000434 dwmci_writel(host, DWMCI_PWREN, 1);
435
436 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600437 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
438 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000439 }
440
Amar9c50e352013-04-27 11:42:54 +0530441 /* Enumerate at 400KHz */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200442 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar9c50e352013-04-27 11:42:54 +0530443
Jaehoon Chung757bff42012-10-15 19:10:29 +0000444 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
445 dwmci_writel(host, DWMCI_INTMASK, 0);
446
447 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
448
449 dwmci_writel(host, DWMCI_IDINTEN, 0);
450 dwmci_writel(host, DWMCI_BMOD, 1);
451
Simon Glass760177d2015-08-06 20:16:29 -0600452 if (!host->fifoth_val) {
453 uint32_t fifo_size;
454
455 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
456 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
457 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
458 TX_WMARK(fifo_size / 2);
Amar9c50e352013-04-27 11:42:54 +0530459 }
Simon Glass760177d2015-08-06 20:16:29 -0600460 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000461
462 dwmci_writel(host, DWMCI_CLKENA, 0);
463 dwmci_writel(host, DWMCI_CLKSRC, 0);
464
465 return 0;
466}
467
Simon Glasse7881d82017-07-29 11:35:31 -0600468#ifdef CONFIG_DM_MMC
Simon Glass691272f2016-06-12 23:30:23 -0600469int dwmci_probe(struct udevice *dev)
470{
471 struct mmc *mmc = mmc_get_mmc_dev(dev);
472
473 return dwmci_init(mmc);
474}
475
476const struct dm_mmc_ops dm_dwmci_ops = {
477 .send_cmd = dwmci_send_cmd,
478 .set_ios = dwmci_set_ios,
479};
480
481#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200482static const struct mmc_ops dwmci_ops = {
483 .send_cmd = dwmci_send_cmd,
484 .set_ios = dwmci_set_ios,
485 .init = dwmci_init,
486};
Simon Glass691272f2016-06-12 23:30:23 -0600487#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200488
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900489void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
490 u32 max_clk, u32 min_clk)
Simon Glass5e6ff812016-05-14 14:03:07 -0600491{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900492 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600493#ifndef CONFIG_DM_MMC
Simon Glass5e6ff812016-05-14 14:03:07 -0600494 cfg->ops = &dwmci_ops;
Simon Glass691272f2016-06-12 23:30:23 -0600495#endif
Simon Glass5e6ff812016-05-14 14:03:07 -0600496 cfg->f_min = min_clk;
497 cfg->f_max = max_clk;
498
499 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
500
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900501 cfg->host_caps = host->caps;
Simon Glass5e6ff812016-05-14 14:03:07 -0600502
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900503 if (host->buswidth == 8) {
Simon Glass5e6ff812016-05-14 14:03:07 -0600504 cfg->host_caps |= MMC_MODE_8BIT;
505 cfg->host_caps &= ~MMC_MODE_4BIT;
506 } else {
507 cfg->host_caps |= MMC_MODE_4BIT;
508 cfg->host_caps &= ~MMC_MODE_8BIT;
509 }
510 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
511
512 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
513}
514
515#ifdef CONFIG_BLK
516int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
517{
518 return mmc_bind(dev, mmc, cfg);
519}
520#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000521int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
522{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900523 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000524
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200525 host->mmc = mmc_create(&host->cfg, host);
526 if (host->mmc == NULL)
527 return -1;
528
529 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000530}
Simon Glass5e6ff812016-05-14 14:03:07 -0600531#endif