blob: 6290b7fb5be133c068fa8561f516b47dc61fd440 [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 Glass1eb69ae2019-11-14 12:57:39 -070010#include <cpu_func.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>
Ley Foon Tan79975992018-12-20 17:55:41 +080016#include <wait_bit.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
Urja Rannikko2b157012019-05-13 13:25:27 +000018#include <power/regulator.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000019
20#define PAGE_SIZE 4096
21
22static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
23{
24 unsigned long timeout = 1000;
25 u32 ctrl;
26
27 dwmci_writel(host, DWMCI_CTRL, value);
28
29 while (timeout--) {
30 ctrl = dwmci_readl(host, DWMCI_CTRL);
31 if (!(ctrl & DWMCI_RESET_ALL))
32 return 1;
33 }
34 return 0;
35}
36
37static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
38 u32 desc0, u32 desc1, u32 desc2)
39{
40 struct dwmci_idmac *desc = idmac;
41
42 desc->flags = desc0;
43 desc->cnt = desc1;
44 desc->addr = desc2;
Prabhakar Kushwaha41f7be32015-10-25 13:18:25 +053045 desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac);
Jaehoon Chung757bff42012-10-15 19:10:29 +000046}
47
48static void dwmci_prepare_data(struct dwmci_host *host,
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040049 struct mmc_data *data,
50 struct dwmci_idmac *cur_idmac,
51 void *bounce_buffer)
Jaehoon Chung757bff42012-10-15 19:10:29 +000052{
53 unsigned long ctrl;
54 unsigned int i = 0, flags, cnt, blk_cnt;
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040055 ulong data_start, data_end;
Jaehoon Chung757bff42012-10-15 19:10:29 +000056
57
58 blk_cnt = data->blocks;
59
60 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
61
Ley Foon Tan79975992018-12-20 17:55:41 +080062 /* Clear IDMAC interrupt */
63 dwmci_writel(host, DWMCI_IDSTS, 0xFFFFFFFF);
64
Jaehoon Chung757bff42012-10-15 19:10:29 +000065 data_start = (ulong)cur_idmac;
Prabhakar Kushwaha41f7be32015-10-25 13:18:25 +053066 dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac);
Jaehoon Chung757bff42012-10-15 19:10:29 +000067
Jaehoon Chung757bff42012-10-15 19:10:29 +000068 do {
69 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
70 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
71 if (blk_cnt <= 8) {
72 flags |= DWMCI_IDMAC_LD;
73 cnt = data->blocksize * blk_cnt;
74 } else
75 cnt = data->blocksize * 8;
76
77 dwmci_set_idma_desc(cur_idmac, flags, cnt,
Prabhakar Kushwaha41f7be32015-10-25 13:18:25 +053078 (ulong)bounce_buffer + (i * PAGE_SIZE));
Jaehoon Chung757bff42012-10-15 19:10:29 +000079
Marek Vasutbdb5df12019-02-13 20:16:20 +010080 cur_idmac++;
Mischa Jonker21bd5762013-07-26 16:18:40 +020081 if (blk_cnt <= 8)
Jaehoon Chung757bff42012-10-15 19:10:29 +000082 break;
83 blk_cnt -= 8;
Jaehoon Chung757bff42012-10-15 19:10:29 +000084 i++;
85 } while(1);
86
87 data_end = (ulong)cur_idmac;
Marek Vasutbdb5df12019-02-13 20:16:20 +010088 flush_dcache_range(data_start, roundup(data_end, ARCH_DMA_MINALIGN));
Jaehoon Chung757bff42012-10-15 19:10:29 +000089
90 ctrl = dwmci_readl(host, DWMCI_CTRL);
91 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
92 dwmci_writel(host, DWMCI_CTRL, ctrl);
93
94 ctrl = dwmci_readl(host, DWMCI_BMOD);
95 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
96 dwmci_writel(host, DWMCI_BMOD, ctrl);
97
98 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
99 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
100}
101
Heiko Stuebner05fa06b2018-09-21 10:59:45 +0200102static int dwmci_fifo_ready(struct dwmci_host *host, u32 bit, u32 *len)
103{
104 u32 timeout = 20000;
105
106 *len = dwmci_readl(host, DWMCI_STATUS);
107 while (--timeout && (*len & bit)) {
108 udelay(200);
109 *len = dwmci_readl(host, DWMCI_STATUS);
110 }
111
112 if (!timeout) {
113 debug("%s: FIFO underflow timeout\n", __func__);
114 return -ETIMEDOUT;
115 }
116
117 return 0;
118}
119
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100120static unsigned int dwmci_get_timeout(struct mmc *mmc, const unsigned int size)
121{
122 unsigned int timeout;
123
Kever Yangc077c052019-08-29 15:42:41 +0800124 timeout = size * 8; /* counting in bits */
125 timeout *= 10; /* wait 10 times as long */
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100126 timeout /= mmc->clock;
127 timeout /= mmc->bus_width;
128 timeout /= mmc->ddr_mode ? 2 : 1;
Kever Yangc077c052019-08-29 15:42:41 +0800129 timeout *= 1000; /* counting in msec */
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100130 timeout = (timeout < 1000) ? 1000 : timeout;
131
132 return timeout;
133}
134
huang lina65f51b2015-11-17 14:20:22 +0800135static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
huang linf382eb82015-11-17 14:20:21 +0800136{
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100137 struct mmc *mmc = host->mmc;
huang linf382eb82015-11-17 14:20:21 +0800138 int ret = 0;
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100139 u32 timeout, mask, size, i, len = 0;
huang lina65f51b2015-11-17 14:20:22 +0800140 u32 *buf = NULL;
huang linf382eb82015-11-17 14:20:21 +0800141 ulong start = get_timer(0);
huang lina65f51b2015-11-17 14:20:22 +0800142 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
143 RX_WMARK_SHIFT) + 1) * 2;
144
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100145 size = data->blocksize * data->blocks;
huang lina65f51b2015-11-17 14:20:22 +0800146 if (data->flags == MMC_DATA_READ)
147 buf = (unsigned int *)data->dest;
148 else
149 buf = (unsigned int *)data->src;
huang linf382eb82015-11-17 14:20:21 +0800150
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100151 timeout = dwmci_get_timeout(mmc, size);
152
153 size /= 4;
154
huang linf382eb82015-11-17 14:20:21 +0800155 for (;;) {
156 mask = dwmci_readl(host, DWMCI_RINTSTS);
157 /* Error during data transfer. */
158 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
159 debug("%s: DATA ERROR!\n", __func__);
160 ret = -EINVAL;
161 break;
162 }
163
huang lina65f51b2015-11-17 14:20:22 +0800164 if (host->fifo_mode && size) {
Xu Ziyuan720724d2016-07-28 10:25:48 +0800165 len = 0;
Jacob Chen2b429032016-09-19 10:16:50 +0800166 if (data->flags == MMC_DATA_READ &&
167 (mask & DWMCI_INTMSK_RXDR)) {
168 while (size) {
Heiko Stuebner05fa06b2018-09-21 10:59:45 +0200169 ret = dwmci_fifo_ready(host,
170 DWMCI_FIFO_EMPTY,
171 &len);
172 if (ret < 0)
173 break;
174
huang lina65f51b2015-11-17 14:20:22 +0800175 len = (len >> DWMCI_FIFO_SHIFT) &
176 DWMCI_FIFO_MASK;
Xu Ziyuan2990e072016-07-28 10:25:47 +0800177 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800178 for (i = 0; i < len; i++)
179 *buf++ =
180 dwmci_readl(host, DWMCI_DATA);
Jacob Chen2b429032016-09-19 10:16:50 +0800181 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800182 }
Jacob Chen2b429032016-09-19 10:16:50 +0800183 dwmci_writel(host, DWMCI_RINTSTS,
184 DWMCI_INTMSK_RXDR);
185 } else if (data->flags == MMC_DATA_WRITE &&
186 (mask & DWMCI_INTMSK_TXDR)) {
187 while (size) {
Heiko Stuebner05fa06b2018-09-21 10:59:45 +0200188 ret = dwmci_fifo_ready(host,
189 DWMCI_FIFO_FULL,
190 &len);
191 if (ret < 0)
192 break;
193
huang lina65f51b2015-11-17 14:20:22 +0800194 len = fifo_depth - ((len >>
195 DWMCI_FIFO_SHIFT) &
196 DWMCI_FIFO_MASK);
Xu Ziyuan2990e072016-07-28 10:25:47 +0800197 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800198 for (i = 0; i < len; i++)
199 dwmci_writel(host, DWMCI_DATA,
200 *buf++);
Jacob Chen2b429032016-09-19 10:16:50 +0800201 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800202 }
Jacob Chen2b429032016-09-19 10:16:50 +0800203 dwmci_writel(host, DWMCI_RINTSTS,
204 DWMCI_INTMSK_TXDR);
huang lina65f51b2015-11-17 14:20:22 +0800205 }
huang lina65f51b2015-11-17 14:20:22 +0800206 }
207
huang linf382eb82015-11-17 14:20:21 +0800208 /* Data arrived correctly. */
209 if (mask & DWMCI_INTMSK_DTO) {
210 ret = 0;
211 break;
212 }
213
214 /* Check for timeout. */
215 if (get_timer(start) > timeout) {
216 debug("%s: Timeout waiting for data!\n",
217 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900218 ret = -ETIMEDOUT;
huang linf382eb82015-11-17 14:20:21 +0800219 break;
220 }
221 }
222
223 dwmci_writel(host, DWMCI_RINTSTS, mask);
224
225 return ret;
226}
227
Jaehoon Chung757bff42012-10-15 19:10:29 +0000228static int dwmci_set_transfer_mode(struct dwmci_host *host,
229 struct mmc_data *data)
230{
231 unsigned long mode;
232
233 mode = DWMCI_CMD_DATA_EXP;
234 if (data->flags & MMC_DATA_WRITE)
235 mode |= DWMCI_CMD_RW;
236
237 return mode;
238}
239
Simon Glasse7881d82017-07-29 11:35:31 -0600240#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900241static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glass691272f2016-06-12 23:30:23 -0600242 struct mmc_data *data)
243{
244 struct mmc *mmc = mmc_get_mmc_dev(dev);
245#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000246static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
247 struct mmc_data *data)
248{
Simon Glass691272f2016-06-12 23:30:23 -0600249#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200250 struct dwmci_host *host = mmc->priv;
Mischa Jonker2136d222013-07-26 14:08:14 +0200251 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonker21bd5762013-07-26 16:18:40 +0200252 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut9042d972015-07-27 22:39:38 +0200253 int ret = 0, flags = 0, i;
Xu Ziyuan02ebd422016-07-19 09:38:22 +0800254 unsigned int timeout = 500;
Alexander Graf9b5b8b62016-03-04 01:09:52 +0100255 u32 retry = 100000;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000256 u32 mask, ctrl;
Amar9c50e352013-04-27 11:42:54 +0530257 ulong start = get_timer(0);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400258 struct bounce_buffer bbstate;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000259
260 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
Amar9c50e352013-04-27 11:42:54 +0530261 if (get_timer(start) > timeout) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600262 debug("%s: Timeout on data busy\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900263 return -ETIMEDOUT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000264 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000265 }
266
267 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
268
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400269 if (data) {
huang lina65f51b2015-11-17 14:20:22 +0800270 if (host->fifo_mode) {
271 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
272 dwmci_writel(host, DWMCI_BYTCNT,
273 data->blocksize * data->blocks);
274 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400275 } else {
huang lina65f51b2015-11-17 14:20:22 +0800276 if (data->flags == MMC_DATA_READ) {
Marek Vasut6ad5aec2019-03-23 18:45:27 +0100277 ret = bounce_buffer_start(&bbstate,
278 (void*)data->dest,
huang lina65f51b2015-11-17 14:20:22 +0800279 data->blocksize *
280 data->blocks, GEN_BB_WRITE);
281 } else {
Marek Vasut6ad5aec2019-03-23 18:45:27 +0100282 ret = bounce_buffer_start(&bbstate,
283 (void*)data->src,
huang lina65f51b2015-11-17 14:20:22 +0800284 data->blocksize *
285 data->blocks, GEN_BB_READ);
286 }
Marek Vasut6ad5aec2019-03-23 18:45:27 +0100287
288 if (ret)
289 return ret;
290
huang lina65f51b2015-11-17 14:20:22 +0800291 dwmci_prepare_data(host, data, cur_idmac,
292 bbstate.bounce_buffer);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400293 }
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400294 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000295
Jaehoon Chung757bff42012-10-15 19:10:29 +0000296 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
297
298 if (data)
299 flags = dwmci_set_transfer_mode(host, data);
300
301 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
302 return -1;
303
304 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
305 flags |= DWMCI_CMD_ABORT_STOP;
306 else
307 flags |= DWMCI_CMD_PRV_DAT_WAIT;
308
309 if (cmd->resp_type & MMC_RSP_PRESENT) {
310 flags |= DWMCI_CMD_RESP_EXP;
311 if (cmd->resp_type & MMC_RSP_136)
312 flags |= DWMCI_CMD_RESP_LENGTH;
313 }
314
315 if (cmd->resp_type & MMC_RSP_CRC)
316 flags |= DWMCI_CMD_CHECK_CRC;
317
318 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
319
320 debug("Sending CMD%d\n",cmd->cmdidx);
321
322 dwmci_writel(host, DWMCI_CMD, flags);
323
324 for (i = 0; i < retry; i++) {
325 mask = dwmci_readl(host, DWMCI_RINTSTS);
326 if (mask & DWMCI_INTMSK_CDONE) {
327 if (!data)
328 dwmci_writel(host, DWMCI_RINTSTS, mask);
329 break;
330 }
331 }
332
Pavel Machekf33c9302014-09-05 12:49:48 +0200333 if (i == retry) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600334 debug("%s: Timeout.\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900335 return -ETIMEDOUT;
Pavel Machekf33c9302014-09-05 12:49:48 +0200336 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000337
338 if (mask & DWMCI_INTMSK_RTO) {
Pavel Machekf33c9302014-09-05 12:49:48 +0200339 /*
340 * Timeout here is not necessarily fatal. (e)MMC cards
341 * will splat here when they receive CMD55 as they do
342 * not support this command and that is exactly the way
343 * to tell them apart from SD cards. Thus, this output
344 * below shall be debug(). eMMC cards also do not favor
345 * CMD8, please keep that in mind.
346 */
347 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900348 return -ETIMEDOUT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000349 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600350 debug("%s: Response Error.\n", __func__);
351 return -EIO;
Marek Vasut26cc40d2018-11-06 23:42:11 +0100352 } else if ((cmd->resp_type & MMC_RSP_CRC) &&
353 (mask & DWMCI_INTMSK_RCRC)) {
354 debug("%s: Response CRC Error.\n", __func__);
355 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000356 }
357
358
359 if (cmd->resp_type & MMC_RSP_PRESENT) {
360 if (cmd->resp_type & MMC_RSP_136) {
361 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
362 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
363 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
364 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
365 } else {
366 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
367 }
368 }
369
370 if (data) {
huang lina65f51b2015-11-17 14:20:22 +0800371 ret = dwmci_data_transfer(host, data);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000372
huang lina65f51b2015-11-17 14:20:22 +0800373 /* only dma mode need it */
374 if (!host->fifo_mode) {
Ley Foon Tan79975992018-12-20 17:55:41 +0800375 if (data->flags == MMC_DATA_READ)
376 mask = DWMCI_IDINTEN_RI;
377 else
378 mask = DWMCI_IDINTEN_TI;
379 ret = wait_for_bit_le32(host->ioaddr + DWMCI_IDSTS,
380 mask, true, 1000, false);
381 if (ret)
382 debug("%s: DWMCI_IDINTEN mask 0x%x timeout.\n",
383 __func__, mask);
384 /* clear interrupts */
385 dwmci_writel(host, DWMCI_IDSTS, DWMCI_IDINTEN_MASK);
386
huang lina65f51b2015-11-17 14:20:22 +0800387 ctrl = dwmci_readl(host, DWMCI_CTRL);
388 ctrl &= ~(DWMCI_DMA_EN);
389 dwmci_writel(host, DWMCI_CTRL, ctrl);
390 bounce_buffer_stop(&bbstate);
391 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000392 }
393
394 udelay(100);
395
Marek Vasut9042d972015-07-27 22:39:38 +0200396 return ret;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000397}
398
399static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
400{
401 u32 div, status;
402 int timeout = 10000;
403 unsigned long sclk;
404
Amar9c50e352013-04-27 11:42:54 +0530405 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung757bff42012-10-15 19:10:29 +0000406 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000407 /*
Pavel Machekf33c9302014-09-05 12:49:48 +0200408 * If host->get_mmc_clk isn't defined,
Jaehoon Chung757bff42012-10-15 19:10:29 +0000409 * then assume that host->bus_hz is source clock value.
Pavel Machekf33c9302014-09-05 12:49:48 +0200410 * host->bus_hz should be set by user.
Jaehoon Chung757bff42012-10-15 19:10:29 +0000411 */
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900412 if (host->get_mmc_clk)
Simon Glasse3563f22015-08-30 16:55:15 -0600413 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000414 else if (host->bus_hz)
415 sclk = host->bus_hz;
416 else {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600417 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000418 return -EINVAL;
419 }
420
Chin Liang See6ace1532014-06-10 01:26:52 -0500421 if (sclk == freq)
422 div = 0; /* bypass mode */
423 else
424 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000425
426 dwmci_writel(host, DWMCI_CLKENA, 0);
427 dwmci_writel(host, DWMCI_CLKSRC, 0);
428
429 dwmci_writel(host, DWMCI_CLKDIV, div);
430 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
431 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
432
433 do {
434 status = dwmci_readl(host, DWMCI_CMD);
435 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600436 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000437 return -ETIMEDOUT;
438 }
439 } while (status & DWMCI_CMD_START);
440
441 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
442 DWMCI_CLKEN_LOW_PWR);
443
444 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
445 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
446
447 timeout = 10000;
448 do {
449 status = dwmci_readl(host, DWMCI_CMD);
450 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600451 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000452 return -ETIMEDOUT;
453 }
454 } while (status & DWMCI_CMD_START);
455
456 host->clock = freq;
457
458 return 0;
459}
460
Simon Glasse7881d82017-07-29 11:35:31 -0600461#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900462static int dwmci_set_ios(struct udevice *dev)
Simon Glass691272f2016-06-12 23:30:23 -0600463{
464 struct mmc *mmc = mmc_get_mmc_dev(dev);
465#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900466static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung757bff42012-10-15 19:10:29 +0000467{
Simon Glass691272f2016-06-12 23:30:23 -0600468#endif
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900469 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
470 u32 ctype, regs;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000471
Pavel Machekf33c9302014-09-05 12:49:48 +0200472 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000473
474 dwmci_setup_bus(host, mmc->clock);
475 switch (mmc->bus_width) {
476 case 8:
477 ctype = DWMCI_CTYPE_8BIT;
478 break;
479 case 4:
480 ctype = DWMCI_CTYPE_4BIT;
481 break;
482 default:
483 ctype = DWMCI_CTYPE_1BIT;
484 break;
485 }
486
487 dwmci_writel(host, DWMCI_CTYPE, ctype);
488
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900489 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov2b8a9692014-12-01 06:59:12 -0600490 if (mmc->ddr_mode)
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900491 regs |= DWMCI_DDR_MODE;
492 else
Jaehoon Chungafc9e2b2015-01-14 17:37:53 +0900493 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900494
495 dwmci_writel(host, DWMCI_UHS_REG, regs);
496
Jaehoon Chung757bff42012-10-15 19:10:29 +0000497 if (host->clksel)
498 host->clksel(host);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900499
Urja Rannikko2b157012019-05-13 13:25:27 +0000500#if CONFIG_IS_ENABLED(DM_REGULATOR)
501 if (mmc->vqmmc_supply) {
502 int ret;
503
504 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
505 regulator_set_value(mmc->vqmmc_supply, 1800000);
506 else
507 regulator_set_value(mmc->vqmmc_supply, 3300000);
508
509 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, true);
510 if (ret)
511 return ret;
512 }
513#endif
514
Simon Glass691272f2016-06-12 23:30:23 -0600515 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000516}
517
518static int dwmci_init(struct mmc *mmc)
519{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200520 struct dwmci_host *host = mmc->priv;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000521
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900522 if (host->board_init)
523 host->board_init(host);
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530524
Jaehoon Chung757bff42012-10-15 19:10:29 +0000525 dwmci_writel(host, DWMCI_PWREN, 1);
526
527 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600528 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
529 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000530 }
531
Amar9c50e352013-04-27 11:42:54 +0530532 /* Enumerate at 400KHz */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200533 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar9c50e352013-04-27 11:42:54 +0530534
Jaehoon Chung757bff42012-10-15 19:10:29 +0000535 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
536 dwmci_writel(host, DWMCI_INTMASK, 0);
537
538 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
539
540 dwmci_writel(host, DWMCI_IDINTEN, 0);
541 dwmci_writel(host, DWMCI_BMOD, 1);
542
Simon Glass760177d2015-08-06 20:16:29 -0600543 if (!host->fifoth_val) {
544 uint32_t fifo_size;
545
546 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
547 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
548 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
549 TX_WMARK(fifo_size / 2);
Amar9c50e352013-04-27 11:42:54 +0530550 }
Simon Glass760177d2015-08-06 20:16:29 -0600551 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000552
553 dwmci_writel(host, DWMCI_CLKENA, 0);
554 dwmci_writel(host, DWMCI_CLKSRC, 0);
555
Ley Foon Tan79975992018-12-20 17:55:41 +0800556 if (!host->fifo_mode)
557 dwmci_writel(host, DWMCI_IDINTEN, DWMCI_IDINTEN_MASK);
558
Jaehoon Chung757bff42012-10-15 19:10:29 +0000559 return 0;
560}
561
Simon Glasse7881d82017-07-29 11:35:31 -0600562#ifdef CONFIG_DM_MMC
Simon Glass691272f2016-06-12 23:30:23 -0600563int dwmci_probe(struct udevice *dev)
564{
565 struct mmc *mmc = mmc_get_mmc_dev(dev);
566
567 return dwmci_init(mmc);
568}
569
570const struct dm_mmc_ops dm_dwmci_ops = {
571 .send_cmd = dwmci_send_cmd,
572 .set_ios = dwmci_set_ios,
573};
574
575#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200576static const struct mmc_ops dwmci_ops = {
577 .send_cmd = dwmci_send_cmd,
578 .set_ios = dwmci_set_ios,
579 .init = dwmci_init,
580};
Simon Glass691272f2016-06-12 23:30:23 -0600581#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200582
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900583void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
584 u32 max_clk, u32 min_clk)
Simon Glass5e6ff812016-05-14 14:03:07 -0600585{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900586 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600587#ifndef CONFIG_DM_MMC
Simon Glass5e6ff812016-05-14 14:03:07 -0600588 cfg->ops = &dwmci_ops;
Simon Glass691272f2016-06-12 23:30:23 -0600589#endif
Simon Glass5e6ff812016-05-14 14:03:07 -0600590 cfg->f_min = min_clk;
591 cfg->f_max = max_clk;
592
593 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
594
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900595 cfg->host_caps = host->caps;
Simon Glass5e6ff812016-05-14 14:03:07 -0600596
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900597 if (host->buswidth == 8) {
Simon Glass5e6ff812016-05-14 14:03:07 -0600598 cfg->host_caps |= MMC_MODE_8BIT;
599 cfg->host_caps &= ~MMC_MODE_4BIT;
600 } else {
601 cfg->host_caps |= MMC_MODE_4BIT;
602 cfg->host_caps &= ~MMC_MODE_8BIT;
603 }
604 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
605
606 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
607}
608
609#ifdef CONFIG_BLK
610int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
611{
612 return mmc_bind(dev, mmc, cfg);
613}
614#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000615int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
616{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900617 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000618
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200619 host->mmc = mmc_create(&host->cfg, host);
620 if (host->mmc == NULL)
621 return -1;
622
623 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000624}
Simon Glass5e6ff812016-05-14 14:03:07 -0600625#endif