blob: 7544b84ab614cbd525ad5a9dc1100e4967886455 [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
Heiko Stuebner05fa06b2018-09-21 10:59:45 +020095static int dwmci_fifo_ready(struct dwmci_host *host, u32 bit, u32 *len)
96{
97 u32 timeout = 20000;
98
99 *len = dwmci_readl(host, DWMCI_STATUS);
100 while (--timeout && (*len & bit)) {
101 udelay(200);
102 *len = dwmci_readl(host, DWMCI_STATUS);
103 }
104
105 if (!timeout) {
106 debug("%s: FIFO underflow timeout\n", __func__);
107 return -ETIMEDOUT;
108 }
109
110 return 0;
111}
112
huang lina65f51b2015-11-17 14:20:22 +0800113static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
huang linf382eb82015-11-17 14:20:21 +0800114{
115 int ret = 0;
huang lina65f51b2015-11-17 14:20:22 +0800116 u32 timeout = 240000;
117 u32 mask, size, i, len = 0;
118 u32 *buf = NULL;
huang linf382eb82015-11-17 14:20:21 +0800119 ulong start = get_timer(0);
huang lina65f51b2015-11-17 14:20:22 +0800120 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
121 RX_WMARK_SHIFT) + 1) * 2;
122
123 size = data->blocksize * data->blocks / 4;
124 if (data->flags == MMC_DATA_READ)
125 buf = (unsigned int *)data->dest;
126 else
127 buf = (unsigned int *)data->src;
huang linf382eb82015-11-17 14:20:21 +0800128
129 for (;;) {
130 mask = dwmci_readl(host, DWMCI_RINTSTS);
131 /* Error during data transfer. */
132 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
133 debug("%s: DATA ERROR!\n", __func__);
134 ret = -EINVAL;
135 break;
136 }
137
huang lina65f51b2015-11-17 14:20:22 +0800138 if (host->fifo_mode && size) {
Xu Ziyuan720724d2016-07-28 10:25:48 +0800139 len = 0;
Jacob Chen2b429032016-09-19 10:16:50 +0800140 if (data->flags == MMC_DATA_READ &&
141 (mask & DWMCI_INTMSK_RXDR)) {
142 while (size) {
Heiko Stuebner05fa06b2018-09-21 10:59:45 +0200143 ret = dwmci_fifo_ready(host,
144 DWMCI_FIFO_EMPTY,
145 &len);
146 if (ret < 0)
147 break;
148
huang lina65f51b2015-11-17 14:20:22 +0800149 len = (len >> DWMCI_FIFO_SHIFT) &
150 DWMCI_FIFO_MASK;
Xu Ziyuan2990e072016-07-28 10:25:47 +0800151 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800152 for (i = 0; i < len; i++)
153 *buf++ =
154 dwmci_readl(host, DWMCI_DATA);
Jacob Chen2b429032016-09-19 10:16:50 +0800155 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800156 }
Jacob Chen2b429032016-09-19 10:16:50 +0800157 dwmci_writel(host, DWMCI_RINTSTS,
158 DWMCI_INTMSK_RXDR);
159 } else if (data->flags == MMC_DATA_WRITE &&
160 (mask & DWMCI_INTMSK_TXDR)) {
161 while (size) {
Heiko Stuebner05fa06b2018-09-21 10:59:45 +0200162 ret = dwmci_fifo_ready(host,
163 DWMCI_FIFO_FULL,
164 &len);
165 if (ret < 0)
166 break;
167
huang lina65f51b2015-11-17 14:20:22 +0800168 len = fifo_depth - ((len >>
169 DWMCI_FIFO_SHIFT) &
170 DWMCI_FIFO_MASK);
Xu Ziyuan2990e072016-07-28 10:25:47 +0800171 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800172 for (i = 0; i < len; i++)
173 dwmci_writel(host, DWMCI_DATA,
174 *buf++);
Jacob Chen2b429032016-09-19 10:16:50 +0800175 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800176 }
Jacob Chen2b429032016-09-19 10:16:50 +0800177 dwmci_writel(host, DWMCI_RINTSTS,
178 DWMCI_INTMSK_TXDR);
huang lina65f51b2015-11-17 14:20:22 +0800179 }
huang lina65f51b2015-11-17 14:20:22 +0800180 }
181
huang linf382eb82015-11-17 14:20:21 +0800182 /* Data arrived correctly. */
183 if (mask & DWMCI_INTMSK_DTO) {
184 ret = 0;
185 break;
186 }
187
188 /* Check for timeout. */
189 if (get_timer(start) > timeout) {
190 debug("%s: Timeout waiting for data!\n",
191 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900192 ret = -ETIMEDOUT;
huang linf382eb82015-11-17 14:20:21 +0800193 break;
194 }
195 }
196
197 dwmci_writel(host, DWMCI_RINTSTS, mask);
198
199 return ret;
200}
201
Jaehoon Chung757bff42012-10-15 19:10:29 +0000202static int dwmci_set_transfer_mode(struct dwmci_host *host,
203 struct mmc_data *data)
204{
205 unsigned long mode;
206
207 mode = DWMCI_CMD_DATA_EXP;
208 if (data->flags & MMC_DATA_WRITE)
209 mode |= DWMCI_CMD_RW;
210
211 return mode;
212}
213
Simon Glasse7881d82017-07-29 11:35:31 -0600214#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900215static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glass691272f2016-06-12 23:30:23 -0600216 struct mmc_data *data)
217{
218 struct mmc *mmc = mmc_get_mmc_dev(dev);
219#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000220static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
221 struct mmc_data *data)
222{
Simon Glass691272f2016-06-12 23:30:23 -0600223#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200224 struct dwmci_host *host = mmc->priv;
Mischa Jonker2136d222013-07-26 14:08:14 +0200225 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonker21bd5762013-07-26 16:18:40 +0200226 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut9042d972015-07-27 22:39:38 +0200227 int ret = 0, flags = 0, i;
Xu Ziyuan02ebd422016-07-19 09:38:22 +0800228 unsigned int timeout = 500;
Alexander Graf9b5b8b62016-03-04 01:09:52 +0100229 u32 retry = 100000;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000230 u32 mask, ctrl;
Amar9c50e352013-04-27 11:42:54 +0530231 ulong start = get_timer(0);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400232 struct bounce_buffer bbstate;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000233
234 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
Amar9c50e352013-04-27 11:42:54 +0530235 if (get_timer(start) > timeout) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600236 debug("%s: Timeout on data busy\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900237 return -ETIMEDOUT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000238 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000239 }
240
241 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
242
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400243 if (data) {
huang lina65f51b2015-11-17 14:20:22 +0800244 if (host->fifo_mode) {
245 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
246 dwmci_writel(host, DWMCI_BYTCNT,
247 data->blocksize * data->blocks);
248 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400249 } else {
huang lina65f51b2015-11-17 14:20:22 +0800250 if (data->flags == MMC_DATA_READ) {
251 bounce_buffer_start(&bbstate, (void*)data->dest,
252 data->blocksize *
253 data->blocks, GEN_BB_WRITE);
254 } else {
255 bounce_buffer_start(&bbstate, (void*)data->src,
256 data->blocksize *
257 data->blocks, GEN_BB_READ);
258 }
259 dwmci_prepare_data(host, data, cur_idmac,
260 bbstate.bounce_buffer);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400261 }
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400262 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000263
Jaehoon Chung757bff42012-10-15 19:10:29 +0000264 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
265
266 if (data)
267 flags = dwmci_set_transfer_mode(host, data);
268
269 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
270 return -1;
271
272 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
273 flags |= DWMCI_CMD_ABORT_STOP;
274 else
275 flags |= DWMCI_CMD_PRV_DAT_WAIT;
276
277 if (cmd->resp_type & MMC_RSP_PRESENT) {
278 flags |= DWMCI_CMD_RESP_EXP;
279 if (cmd->resp_type & MMC_RSP_136)
280 flags |= DWMCI_CMD_RESP_LENGTH;
281 }
282
283 if (cmd->resp_type & MMC_RSP_CRC)
284 flags |= DWMCI_CMD_CHECK_CRC;
285
286 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
287
288 debug("Sending CMD%d\n",cmd->cmdidx);
289
290 dwmci_writel(host, DWMCI_CMD, flags);
291
292 for (i = 0; i < retry; i++) {
293 mask = dwmci_readl(host, DWMCI_RINTSTS);
294 if (mask & DWMCI_INTMSK_CDONE) {
295 if (!data)
296 dwmci_writel(host, DWMCI_RINTSTS, mask);
297 break;
298 }
299 }
300
Pavel Machekf33c9302014-09-05 12:49:48 +0200301 if (i == retry) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600302 debug("%s: Timeout.\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900303 return -ETIMEDOUT;
Pavel Machekf33c9302014-09-05 12:49:48 +0200304 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000305
306 if (mask & DWMCI_INTMSK_RTO) {
Pavel Machekf33c9302014-09-05 12:49:48 +0200307 /*
308 * Timeout here is not necessarily fatal. (e)MMC cards
309 * will splat here when they receive CMD55 as they do
310 * not support this command and that is exactly the way
311 * to tell them apart from SD cards. Thus, this output
312 * below shall be debug(). eMMC cards also do not favor
313 * CMD8, please keep that in mind.
314 */
315 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900316 return -ETIMEDOUT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000317 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600318 debug("%s: Response Error.\n", __func__);
319 return -EIO;
Marek Vasut26cc40d2018-11-06 23:42:11 +0100320 } else if ((cmd->resp_type & MMC_RSP_CRC) &&
321 (mask & DWMCI_INTMSK_RCRC)) {
322 debug("%s: Response CRC Error.\n", __func__);
323 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000324 }
325
326
327 if (cmd->resp_type & MMC_RSP_PRESENT) {
328 if (cmd->resp_type & MMC_RSP_136) {
329 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
330 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
331 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
332 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
333 } else {
334 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
335 }
336 }
337
338 if (data) {
huang lina65f51b2015-11-17 14:20:22 +0800339 ret = dwmci_data_transfer(host, data);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000340
huang lina65f51b2015-11-17 14:20:22 +0800341 /* only dma mode need it */
342 if (!host->fifo_mode) {
343 ctrl = dwmci_readl(host, DWMCI_CTRL);
344 ctrl &= ~(DWMCI_DMA_EN);
345 dwmci_writel(host, DWMCI_CTRL, ctrl);
346 bounce_buffer_stop(&bbstate);
347 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000348 }
349
350 udelay(100);
351
Marek Vasut9042d972015-07-27 22:39:38 +0200352 return ret;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000353}
354
355static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
356{
357 u32 div, status;
358 int timeout = 10000;
359 unsigned long sclk;
360
Amar9c50e352013-04-27 11:42:54 +0530361 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung757bff42012-10-15 19:10:29 +0000362 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000363 /*
Pavel Machekf33c9302014-09-05 12:49:48 +0200364 * If host->get_mmc_clk isn't defined,
Jaehoon Chung757bff42012-10-15 19:10:29 +0000365 * then assume that host->bus_hz is source clock value.
Pavel Machekf33c9302014-09-05 12:49:48 +0200366 * host->bus_hz should be set by user.
Jaehoon Chung757bff42012-10-15 19:10:29 +0000367 */
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900368 if (host->get_mmc_clk)
Simon Glasse3563f22015-08-30 16:55:15 -0600369 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000370 else if (host->bus_hz)
371 sclk = host->bus_hz;
372 else {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600373 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000374 return -EINVAL;
375 }
376
Chin Liang See6ace1532014-06-10 01:26:52 -0500377 if (sclk == freq)
378 div = 0; /* bypass mode */
379 else
380 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000381
382 dwmci_writel(host, DWMCI_CLKENA, 0);
383 dwmci_writel(host, DWMCI_CLKSRC, 0);
384
385 dwmci_writel(host, DWMCI_CLKDIV, div);
386 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
387 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
388
389 do {
390 status = dwmci_readl(host, DWMCI_CMD);
391 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600392 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000393 return -ETIMEDOUT;
394 }
395 } while (status & DWMCI_CMD_START);
396
397 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
398 DWMCI_CLKEN_LOW_PWR);
399
400 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
401 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
402
403 timeout = 10000;
404 do {
405 status = dwmci_readl(host, DWMCI_CMD);
406 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600407 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000408 return -ETIMEDOUT;
409 }
410 } while (status & DWMCI_CMD_START);
411
412 host->clock = freq;
413
414 return 0;
415}
416
Simon Glasse7881d82017-07-29 11:35:31 -0600417#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900418static int dwmci_set_ios(struct udevice *dev)
Simon Glass691272f2016-06-12 23:30:23 -0600419{
420 struct mmc *mmc = mmc_get_mmc_dev(dev);
421#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900422static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung757bff42012-10-15 19:10:29 +0000423{
Simon Glass691272f2016-06-12 23:30:23 -0600424#endif
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900425 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
426 u32 ctype, regs;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000427
Pavel Machekf33c9302014-09-05 12:49:48 +0200428 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000429
430 dwmci_setup_bus(host, mmc->clock);
431 switch (mmc->bus_width) {
432 case 8:
433 ctype = DWMCI_CTYPE_8BIT;
434 break;
435 case 4:
436 ctype = DWMCI_CTYPE_4BIT;
437 break;
438 default:
439 ctype = DWMCI_CTYPE_1BIT;
440 break;
441 }
442
443 dwmci_writel(host, DWMCI_CTYPE, ctype);
444
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900445 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov2b8a9692014-12-01 06:59:12 -0600446 if (mmc->ddr_mode)
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900447 regs |= DWMCI_DDR_MODE;
448 else
Jaehoon Chungafc9e2b2015-01-14 17:37:53 +0900449 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900450
451 dwmci_writel(host, DWMCI_UHS_REG, regs);
452
Jaehoon Chung757bff42012-10-15 19:10:29 +0000453 if (host->clksel)
454 host->clksel(host);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900455
Simon Glass691272f2016-06-12 23:30:23 -0600456 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000457}
458
459static int dwmci_init(struct mmc *mmc)
460{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200461 struct dwmci_host *host = mmc->priv;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000462
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900463 if (host->board_init)
464 host->board_init(host);
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530465
Jaehoon Chung757bff42012-10-15 19:10:29 +0000466 dwmci_writel(host, DWMCI_PWREN, 1);
467
468 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600469 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
470 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000471 }
472
Amar9c50e352013-04-27 11:42:54 +0530473 /* Enumerate at 400KHz */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200474 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar9c50e352013-04-27 11:42:54 +0530475
Jaehoon Chung757bff42012-10-15 19:10:29 +0000476 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
477 dwmci_writel(host, DWMCI_INTMASK, 0);
478
479 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
480
481 dwmci_writel(host, DWMCI_IDINTEN, 0);
482 dwmci_writel(host, DWMCI_BMOD, 1);
483
Simon Glass760177d2015-08-06 20:16:29 -0600484 if (!host->fifoth_val) {
485 uint32_t fifo_size;
486
487 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
488 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
489 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
490 TX_WMARK(fifo_size / 2);
Amar9c50e352013-04-27 11:42:54 +0530491 }
Simon Glass760177d2015-08-06 20:16:29 -0600492 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000493
494 dwmci_writel(host, DWMCI_CLKENA, 0);
495 dwmci_writel(host, DWMCI_CLKSRC, 0);
496
497 return 0;
498}
499
Simon Glasse7881d82017-07-29 11:35:31 -0600500#ifdef CONFIG_DM_MMC
Simon Glass691272f2016-06-12 23:30:23 -0600501int dwmci_probe(struct udevice *dev)
502{
503 struct mmc *mmc = mmc_get_mmc_dev(dev);
504
505 return dwmci_init(mmc);
506}
507
508const struct dm_mmc_ops dm_dwmci_ops = {
509 .send_cmd = dwmci_send_cmd,
510 .set_ios = dwmci_set_ios,
511};
512
513#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200514static const struct mmc_ops dwmci_ops = {
515 .send_cmd = dwmci_send_cmd,
516 .set_ios = dwmci_set_ios,
517 .init = dwmci_init,
518};
Simon Glass691272f2016-06-12 23:30:23 -0600519#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200520
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900521void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
522 u32 max_clk, u32 min_clk)
Simon Glass5e6ff812016-05-14 14:03:07 -0600523{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900524 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600525#ifndef CONFIG_DM_MMC
Simon Glass5e6ff812016-05-14 14:03:07 -0600526 cfg->ops = &dwmci_ops;
Simon Glass691272f2016-06-12 23:30:23 -0600527#endif
Simon Glass5e6ff812016-05-14 14:03:07 -0600528 cfg->f_min = min_clk;
529 cfg->f_max = max_clk;
530
531 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
532
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900533 cfg->host_caps = host->caps;
Simon Glass5e6ff812016-05-14 14:03:07 -0600534
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900535 if (host->buswidth == 8) {
Simon Glass5e6ff812016-05-14 14:03:07 -0600536 cfg->host_caps |= MMC_MODE_8BIT;
537 cfg->host_caps &= ~MMC_MODE_4BIT;
538 } else {
539 cfg->host_caps |= MMC_MODE_4BIT;
540 cfg->host_caps &= ~MMC_MODE_8BIT;
541 }
542 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
543
544 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
545}
546
547#ifdef CONFIG_BLK
548int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
549{
550 return mmc_bind(dev, mmc, cfg);
551}
552#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000553int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
554{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900555 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000556
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200557 host->mmc = mmc_create(&host->cfg, host);
558 if (host->mmc == NULL)
559 return -1;
560
561 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000562}
Simon Glass5e6ff812016-05-14 14:03:07 -0600563#endif