blob: e6107c770fe3069be59112f41e41cdd0b0066cd3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung7cf73072012-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 Chung7cf73072012-10-15 19:10:29 +00006 */
7
Alexey Brodkin55bab5e2013-12-26 15:29:07 +04008#include <bouncebuf.h>
Simon Glass63334482019-11-14 12:57:39 -07009#include <cpu_func.h>
Simon Glass4c9b9482015-08-06 20:16:27 -060010#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Jaehoon Chung7cf73072012-10-15 19:10:29 +000012#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060013#include <memalign.h>
Jaehoon Chung7cf73072012-10-15 19:10:29 +000014#include <mmc.h>
15#include <dwmmc.h>
Ley Foon Tanb98e8922018-12-20 17:55:41 +080016#include <wait_bit.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glassdbd79542020-05-10 11:40:11 -060018#include <linux/delay.h>
Urja Rannikko9932a012019-05-13 13:25:27 +000019#include <power/regulator.h>
Jaehoon Chung7cf73072012-10-15 19:10:29 +000020
21#define PAGE_SIZE 4096
22
23static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
24{
25 unsigned long timeout = 1000;
26 u32 ctrl;
27
28 dwmci_writel(host, DWMCI_CTRL, value);
29
30 while (timeout--) {
31 ctrl = dwmci_readl(host, DWMCI_CTRL);
32 if (!(ctrl & DWMCI_RESET_ALL))
33 return 1;
34 }
35 return 0;
36}
37
38static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
39 u32 desc0, u32 desc1, u32 desc2)
40{
41 struct dwmci_idmac *desc = idmac;
42
43 desc->flags = desc0;
44 desc->cnt = desc1;
45 desc->addr = desc2;
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053046 desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac);
Jaehoon Chung7cf73072012-10-15 19:10:29 +000047}
48
49static void dwmci_prepare_data(struct dwmci_host *host,
Alexey Brodkin55bab5e2013-12-26 15:29:07 +040050 struct mmc_data *data,
51 struct dwmci_idmac *cur_idmac,
52 void *bounce_buffer)
Jaehoon Chung7cf73072012-10-15 19:10:29 +000053{
54 unsigned long ctrl;
55 unsigned int i = 0, flags, cnt, blk_cnt;
Alexey Brodkin55bab5e2013-12-26 15:29:07 +040056 ulong data_start, data_end;
Jaehoon Chung7cf73072012-10-15 19:10:29 +000057
58
59 blk_cnt = data->blocks;
60
61 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
62
Ley Foon Tanb98e8922018-12-20 17:55:41 +080063 /* Clear IDMAC interrupt */
64 dwmci_writel(host, DWMCI_IDSTS, 0xFFFFFFFF);
65
Jaehoon Chung7cf73072012-10-15 19:10:29 +000066 data_start = (ulong)cur_idmac;
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053067 dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac);
Jaehoon Chung7cf73072012-10-15 19:10:29 +000068
Jaehoon Chung7cf73072012-10-15 19:10:29 +000069 do {
70 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
71 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
72 if (blk_cnt <= 8) {
73 flags |= DWMCI_IDMAC_LD;
74 cnt = data->blocksize * blk_cnt;
75 } else
76 cnt = data->blocksize * 8;
77
78 dwmci_set_idma_desc(cur_idmac, flags, cnt,
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053079 (ulong)bounce_buffer + (i * PAGE_SIZE));
Jaehoon Chung7cf73072012-10-15 19:10:29 +000080
Marek Vasutb6da37b2019-02-13 20:16:20 +010081 cur_idmac++;
Mischa Jonkera7a60912013-07-26 16:18:40 +020082 if (blk_cnt <= 8)
Jaehoon Chung7cf73072012-10-15 19:10:29 +000083 break;
84 blk_cnt -= 8;
Jaehoon Chung7cf73072012-10-15 19:10:29 +000085 i++;
86 } while(1);
87
88 data_end = (ulong)cur_idmac;
Marek Vasutb6da37b2019-02-13 20:16:20 +010089 flush_dcache_range(data_start, roundup(data_end, ARCH_DMA_MINALIGN));
Jaehoon Chung7cf73072012-10-15 19:10:29 +000090
91 ctrl = dwmci_readl(host, DWMCI_CTRL);
92 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
93 dwmci_writel(host, DWMCI_CTRL, ctrl);
94
95 ctrl = dwmci_readl(host, DWMCI_BMOD);
96 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
97 dwmci_writel(host, DWMCI_BMOD, ctrl);
98
99 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
100 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
101}
102
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200103static int dwmci_fifo_ready(struct dwmci_host *host, u32 bit, u32 *len)
104{
105 u32 timeout = 20000;
106
107 *len = dwmci_readl(host, DWMCI_STATUS);
108 while (--timeout && (*len & bit)) {
109 udelay(200);
110 *len = dwmci_readl(host, DWMCI_STATUS);
111 }
112
113 if (!timeout) {
114 debug("%s: FIFO underflow timeout\n", __func__);
115 return -ETIMEDOUT;
116 }
117
118 return 0;
119}
120
Marek Vasutffac5122019-03-23 03:32:24 +0100121static unsigned int dwmci_get_timeout(struct mmc *mmc, const unsigned int size)
122{
123 unsigned int timeout;
124
Kever Yang4889d832019-08-29 15:42:41 +0800125 timeout = size * 8; /* counting in bits */
126 timeout *= 10; /* wait 10 times as long */
Marek Vasutffac5122019-03-23 03:32:24 +0100127 timeout /= mmc->clock;
128 timeout /= mmc->bus_width;
129 timeout /= mmc->ddr_mode ? 2 : 1;
Kever Yang4889d832019-08-29 15:42:41 +0800130 timeout *= 1000; /* counting in msec */
Marek Vasutffac5122019-03-23 03:32:24 +0100131 timeout = (timeout < 1000) ? 1000 : timeout;
132
133 return timeout;
134}
135
huang lin50b73752015-11-17 14:20:22 +0800136static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
huang linf9836762015-11-17 14:20:21 +0800137{
Marek Vasutffac5122019-03-23 03:32:24 +0100138 struct mmc *mmc = host->mmc;
huang linf9836762015-11-17 14:20:21 +0800139 int ret = 0;
Marek Vasutffac5122019-03-23 03:32:24 +0100140 u32 timeout, mask, size, i, len = 0;
huang lin50b73752015-11-17 14:20:22 +0800141 u32 *buf = NULL;
huang linf9836762015-11-17 14:20:21 +0800142 ulong start = get_timer(0);
huang lin50b73752015-11-17 14:20:22 +0800143 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
144 RX_WMARK_SHIFT) + 1) * 2;
145
Marek Vasutffac5122019-03-23 03:32:24 +0100146 size = data->blocksize * data->blocks;
huang lin50b73752015-11-17 14:20:22 +0800147 if (data->flags == MMC_DATA_READ)
148 buf = (unsigned int *)data->dest;
149 else
150 buf = (unsigned int *)data->src;
huang linf9836762015-11-17 14:20:21 +0800151
Marek Vasutffac5122019-03-23 03:32:24 +0100152 timeout = dwmci_get_timeout(mmc, size);
153
154 size /= 4;
155
huang linf9836762015-11-17 14:20:21 +0800156 for (;;) {
157 mask = dwmci_readl(host, DWMCI_RINTSTS);
158 /* Error during data transfer. */
159 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
160 debug("%s: DATA ERROR!\n", __func__);
161 ret = -EINVAL;
162 break;
163 }
164
huang lin50b73752015-11-17 14:20:22 +0800165 if (host->fifo_mode && size) {
Xu Ziyuan5b8bf122016-07-28 10:25:48 +0800166 len = 0;
Jacob Chen953d9752016-09-19 10:16:50 +0800167 if (data->flags == MMC_DATA_READ &&
Ley Foon Tan1cead232021-04-26 11:35:05 +0800168 (mask & (DWMCI_INTMSK_RXDR | DWMCI_INTMSK_DTO))) {
169 dwmci_writel(host, DWMCI_RINTSTS,
John Keepinga6a71572022-09-15 18:56:56 +0100170 mask & (DWMCI_INTMSK_RXDR |
171 DWMCI_INTMSK_DTO));
Jacob Chen953d9752016-09-19 10:16:50 +0800172 while (size) {
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200173 ret = dwmci_fifo_ready(host,
174 DWMCI_FIFO_EMPTY,
175 &len);
176 if (ret < 0)
177 break;
178
huang lin50b73752015-11-17 14:20:22 +0800179 len = (len >> DWMCI_FIFO_SHIFT) &
180 DWMCI_FIFO_MASK;
Xu Ziyuan6577a2a2016-07-28 10:25:47 +0800181 len = min(size, len);
huang lin50b73752015-11-17 14:20:22 +0800182 for (i = 0; i < len; i++)
183 *buf++ =
184 dwmci_readl(host, DWMCI_DATA);
Jacob Chen953d9752016-09-19 10:16:50 +0800185 size = size > len ? (size - len) : 0;
huang lin50b73752015-11-17 14:20:22 +0800186 }
Jacob Chen953d9752016-09-19 10:16:50 +0800187 } else if (data->flags == MMC_DATA_WRITE &&
188 (mask & DWMCI_INTMSK_TXDR)) {
189 while (size) {
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200190 ret = dwmci_fifo_ready(host,
191 DWMCI_FIFO_FULL,
192 &len);
193 if (ret < 0)
194 break;
195
huang lin50b73752015-11-17 14:20:22 +0800196 len = fifo_depth - ((len >>
197 DWMCI_FIFO_SHIFT) &
198 DWMCI_FIFO_MASK);
Xu Ziyuan6577a2a2016-07-28 10:25:47 +0800199 len = min(size, len);
huang lin50b73752015-11-17 14:20:22 +0800200 for (i = 0; i < len; i++)
201 dwmci_writel(host, DWMCI_DATA,
202 *buf++);
Jacob Chen953d9752016-09-19 10:16:50 +0800203 size = size > len ? (size - len) : 0;
huang lin50b73752015-11-17 14:20:22 +0800204 }
Jacob Chen953d9752016-09-19 10:16:50 +0800205 dwmci_writel(host, DWMCI_RINTSTS,
206 DWMCI_INTMSK_TXDR);
huang lin50b73752015-11-17 14:20:22 +0800207 }
huang lin50b73752015-11-17 14:20:22 +0800208 }
209
huang linf9836762015-11-17 14:20:21 +0800210 /* Data arrived correctly. */
211 if (mask & DWMCI_INTMSK_DTO) {
212 ret = 0;
213 break;
214 }
215
216 /* Check for timeout. */
217 if (get_timer(start) > timeout) {
218 debug("%s: Timeout waiting for data!\n",
219 __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900220 ret = -ETIMEDOUT;
huang linf9836762015-11-17 14:20:21 +0800221 break;
222 }
223 }
224
225 dwmci_writel(host, DWMCI_RINTSTS, mask);
226
227 return ret;
228}
229
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000230static int dwmci_set_transfer_mode(struct dwmci_host *host,
231 struct mmc_data *data)
232{
233 unsigned long mode;
234
235 mode = DWMCI_CMD_DATA_EXP;
236 if (data->flags & MMC_DATA_WRITE)
237 mode |= DWMCI_CMD_RW;
238
239 return mode;
240}
241
Simon Glasseba48f92017-07-29 11:35:31 -0600242#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900243static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glassff5c1b72016-06-12 23:30:23 -0600244 struct mmc_data *data)
245{
246 struct mmc *mmc = mmc_get_mmc_dev(dev);
247#else
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000248static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
249 struct mmc_data *data)
250{
Simon Glassff5c1b72016-06-12 23:30:23 -0600251#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200252 struct dwmci_host *host = mmc->priv;
Mischa Jonker7423bed2013-07-26 14:08:14 +0200253 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonkera7a60912013-07-26 16:18:40 +0200254 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut81e093f2015-07-27 22:39:38 +0200255 int ret = 0, flags = 0, i;
Xu Ziyuan34a10d32016-07-19 09:38:22 +0800256 unsigned int timeout = 500;
Alexander Graf61c2a662016-03-04 01:09:52 +0100257 u32 retry = 100000;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000258 u32 mask, ctrl;
Amar902664c2013-04-27 11:42:54 +0530259 ulong start = get_timer(0);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400260 struct bounce_buffer bbstate;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000261
262 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
Amar902664c2013-04-27 11:42:54 +0530263 if (get_timer(start) > timeout) {
Yang Xiwen84df6a72024-02-01 22:05:43 +0800264 debug("%s: Timeout on data busy, continue anyway\n", __func__);
265 break;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000266 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000267 }
268
269 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
270
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400271 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800272 if (host->fifo_mode) {
273 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
274 dwmci_writel(host, DWMCI_BYTCNT,
275 data->blocksize * data->blocks);
276 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400277 } else {
huang lin50b73752015-11-17 14:20:22 +0800278 if (data->flags == MMC_DATA_READ) {
Marek Vasut72d37b62019-03-23 18:45:27 +0100279 ret = bounce_buffer_start(&bbstate,
280 (void*)data->dest,
huang lin50b73752015-11-17 14:20:22 +0800281 data->blocksize *
282 data->blocks, GEN_BB_WRITE);
283 } else {
Marek Vasut72d37b62019-03-23 18:45:27 +0100284 ret = bounce_buffer_start(&bbstate,
285 (void*)data->src,
huang lin50b73752015-11-17 14:20:22 +0800286 data->blocksize *
287 data->blocks, GEN_BB_READ);
288 }
Marek Vasut72d37b62019-03-23 18:45:27 +0100289
290 if (ret)
291 return ret;
292
huang lin50b73752015-11-17 14:20:22 +0800293 dwmci_prepare_data(host, data, cur_idmac,
294 bbstate.bounce_buffer);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400295 }
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400296 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000297
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000298 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
299
300 if (data)
301 flags = dwmci_set_transfer_mode(host, data);
302
303 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
John Keepingfeb7fa32021-12-07 16:09:35 +0000304 return -EBUSY;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000305
306 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
307 flags |= DWMCI_CMD_ABORT_STOP;
308 else
309 flags |= DWMCI_CMD_PRV_DAT_WAIT;
310
311 if (cmd->resp_type & MMC_RSP_PRESENT) {
312 flags |= DWMCI_CMD_RESP_EXP;
313 if (cmd->resp_type & MMC_RSP_136)
314 flags |= DWMCI_CMD_RESP_LENGTH;
315 }
316
317 if (cmd->resp_type & MMC_RSP_CRC)
318 flags |= DWMCI_CMD_CHECK_CRC;
319
320 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
321
322 debug("Sending CMD%d\n",cmd->cmdidx);
323
324 dwmci_writel(host, DWMCI_CMD, flags);
325
326 for (i = 0; i < retry; i++) {
327 mask = dwmci_readl(host, DWMCI_RINTSTS);
328 if (mask & DWMCI_INTMSK_CDONE) {
329 if (!data)
330 dwmci_writel(host, DWMCI_RINTSTS, mask);
331 break;
332 }
333 }
334
Pavel Macheka425f5d2014-09-05 12:49:48 +0200335 if (i == retry) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600336 debug("%s: Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900337 return -ETIMEDOUT;
Pavel Macheka425f5d2014-09-05 12:49:48 +0200338 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000339
340 if (mask & DWMCI_INTMSK_RTO) {
Pavel Macheka425f5d2014-09-05 12:49:48 +0200341 /*
342 * Timeout here is not necessarily fatal. (e)MMC cards
343 * will splat here when they receive CMD55 as they do
344 * not support this command and that is exactly the way
345 * to tell them apart from SD cards. Thus, this output
346 * below shall be debug(). eMMC cards also do not favor
347 * CMD8, please keep that in mind.
348 */
349 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900350 return -ETIMEDOUT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000351 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600352 debug("%s: Response Error.\n", __func__);
353 return -EIO;
Marek Vasuta6d91992018-11-06 23:42:11 +0100354 } else if ((cmd->resp_type & MMC_RSP_CRC) &&
355 (mask & DWMCI_INTMSK_RCRC)) {
356 debug("%s: Response CRC Error.\n", __func__);
357 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000358 }
359
360
361 if (cmd->resp_type & MMC_RSP_PRESENT) {
362 if (cmd->resp_type & MMC_RSP_136) {
363 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
364 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
365 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
366 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
367 } else {
368 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
369 }
370 }
371
372 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800373 ret = dwmci_data_transfer(host, data);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000374
huang lin50b73752015-11-17 14:20:22 +0800375 /* only dma mode need it */
376 if (!host->fifo_mode) {
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800377 if (data->flags == MMC_DATA_READ)
378 mask = DWMCI_IDINTEN_RI;
379 else
380 mask = DWMCI_IDINTEN_TI;
381 ret = wait_for_bit_le32(host->ioaddr + DWMCI_IDSTS,
382 mask, true, 1000, false);
383 if (ret)
384 debug("%s: DWMCI_IDINTEN mask 0x%x timeout.\n",
385 __func__, mask);
386 /* clear interrupts */
387 dwmci_writel(host, DWMCI_IDSTS, DWMCI_IDINTEN_MASK);
388
huang lin50b73752015-11-17 14:20:22 +0800389 ctrl = dwmci_readl(host, DWMCI_CTRL);
390 ctrl &= ~(DWMCI_DMA_EN);
391 dwmci_writel(host, DWMCI_CTRL, ctrl);
392 bounce_buffer_stop(&bbstate);
393 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000394 }
395
396 udelay(100);
397
Marek Vasut81e093f2015-07-27 22:39:38 +0200398 return ret;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000399}
400
401static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
402{
403 u32 div, status;
404 int timeout = 10000;
405 unsigned long sclk;
406
Amar902664c2013-04-27 11:42:54 +0530407 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000408 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000409 /*
Pavel Macheka425f5d2014-09-05 12:49:48 +0200410 * If host->get_mmc_clk isn't defined,
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000411 * then assume that host->bus_hz is source clock value.
Pavel Macheka425f5d2014-09-05 12:49:48 +0200412 * host->bus_hz should be set by user.
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000413 */
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900414 if (host->get_mmc_clk)
Simon Glasseff76682015-08-30 16:55:15 -0600415 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000416 else if (host->bus_hz)
417 sclk = host->bus_hz;
418 else {
Simon Glass4c9b9482015-08-06 20:16:27 -0600419 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000420 return -EINVAL;
421 }
422
Chin Liang See4cfff952014-06-10 01:26:52 -0500423 if (sclk == freq)
424 div = 0; /* bypass mode */
425 else
426 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000427
428 dwmci_writel(host, DWMCI_CLKENA, 0);
429 dwmci_writel(host, DWMCI_CLKSRC, 0);
430
431 dwmci_writel(host, DWMCI_CLKDIV, div);
432 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
433 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
434
435 do {
436 status = dwmci_readl(host, DWMCI_CMD);
437 if (timeout-- < 0) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600438 debug("%s: Timeout!\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000439 return -ETIMEDOUT;
440 }
441 } while (status & DWMCI_CMD_START);
442
443 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
444 DWMCI_CLKEN_LOW_PWR);
445
446 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
447 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
448
449 timeout = 10000;
450 do {
451 status = dwmci_readl(host, DWMCI_CMD);
452 if (timeout-- < 0) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600453 debug("%s: Timeout!\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000454 return -ETIMEDOUT;
455 }
456 } while (status & DWMCI_CMD_START);
457
458 host->clock = freq;
459
460 return 0;
461}
462
Simon Glasseba48f92017-07-29 11:35:31 -0600463#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900464static int dwmci_set_ios(struct udevice *dev)
Simon Glassff5c1b72016-06-12 23:30:23 -0600465{
466 struct mmc *mmc = mmc_get_mmc_dev(dev);
467#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900468static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000469{
Simon Glassff5c1b72016-06-12 23:30:23 -0600470#endif
Jaehoon Chunge8672942014-05-16 13:59:55 +0900471 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
472 u32 ctype, regs;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000473
Pavel Macheka425f5d2014-09-05 12:49:48 +0200474 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000475
476 dwmci_setup_bus(host, mmc->clock);
477 switch (mmc->bus_width) {
478 case 8:
479 ctype = DWMCI_CTYPE_8BIT;
480 break;
481 case 4:
482 ctype = DWMCI_CTYPE_4BIT;
483 break;
484 default:
485 ctype = DWMCI_CTYPE_1BIT;
486 break;
487 }
488
489 dwmci_writel(host, DWMCI_CTYPE, ctype);
490
Jaehoon Chunge8672942014-05-16 13:59:55 +0900491 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov54c0e222014-12-01 06:59:12 -0600492 if (mmc->ddr_mode)
Jaehoon Chunge8672942014-05-16 13:59:55 +0900493 regs |= DWMCI_DDR_MODE;
494 else
Jaehoon Chung401fc502015-01-14 17:37:53 +0900495 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chunge8672942014-05-16 13:59:55 +0900496
497 dwmci_writel(host, DWMCI_UHS_REG, regs);
498
Siew Chin Limc51e7e12020-12-24 18:21:03 +0800499 if (host->clksel) {
500 int ret;
501
502 ret = host->clksel(host);
503 if (ret)
504 return ret;
505 }
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900506
Urja Rannikko9932a012019-05-13 13:25:27 +0000507#if CONFIG_IS_ENABLED(DM_REGULATOR)
508 if (mmc->vqmmc_supply) {
509 int ret;
510
Jonas Karlmana117d612023-07-19 21:21:00 +0000511 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, false);
512 if (ret)
513 return ret;
514
Urja Rannikko9932a012019-05-13 13:25:27 +0000515 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
516 regulator_set_value(mmc->vqmmc_supply, 1800000);
517 else
518 regulator_set_value(mmc->vqmmc_supply, 3300000);
519
520 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, true);
521 if (ret)
522 return ret;
523 }
524#endif
525
Simon Glassff5c1b72016-06-12 23:30:23 -0600526 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000527}
528
529static int dwmci_init(struct mmc *mmc)
530{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200531 struct dwmci_host *host = mmc->priv;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000532
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900533 if (host->board_init)
534 host->board_init(host);
Rajeshwari Shinde70163092013-10-29 12:53:13 +0530535
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000536 dwmci_writel(host, DWMCI_PWREN, 1);
537
538 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600539 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
540 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000541 }
542
Amar902664c2013-04-27 11:42:54 +0530543 /* Enumerate at 400KHz */
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200544 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar902664c2013-04-27 11:42:54 +0530545
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000546 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
547 dwmci_writel(host, DWMCI_INTMASK, 0);
548
549 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
550
551 dwmci_writel(host, DWMCI_IDINTEN, 0);
552 dwmci_writel(host, DWMCI_BMOD, 1);
553
Simon Glass6133efa2015-08-06 20:16:29 -0600554 if (!host->fifoth_val) {
555 uint32_t fifo_size;
556
557 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
558 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
559 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
560 TX_WMARK(fifo_size / 2);
Amar902664c2013-04-27 11:42:54 +0530561 }
Simon Glass6133efa2015-08-06 20:16:29 -0600562 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000563
564 dwmci_writel(host, DWMCI_CLKENA, 0);
565 dwmci_writel(host, DWMCI_CLKSRC, 0);
566
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800567 if (!host->fifo_mode)
568 dwmci_writel(host, DWMCI_IDINTEN, DWMCI_IDINTEN_MASK);
569
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000570 return 0;
571}
572
Simon Glasseba48f92017-07-29 11:35:31 -0600573#ifdef CONFIG_DM_MMC
Simon Glassff5c1b72016-06-12 23:30:23 -0600574int dwmci_probe(struct udevice *dev)
575{
576 struct mmc *mmc = mmc_get_mmc_dev(dev);
577
578 return dwmci_init(mmc);
579}
580
581const struct dm_mmc_ops dm_dwmci_ops = {
582 .send_cmd = dwmci_send_cmd,
583 .set_ios = dwmci_set_ios,
584};
585
586#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200587static const struct mmc_ops dwmci_ops = {
588 .send_cmd = dwmci_send_cmd,
589 .set_ios = dwmci_set_ios,
590 .init = dwmci_init,
591};
Simon Glassff5c1b72016-06-12 23:30:23 -0600592#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200593
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900594void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
595 u32 max_clk, u32 min_clk)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000596{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900597 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600598#ifndef CONFIG_DM_MMC
Simon Glass82682542016-05-14 14:03:07 -0600599 cfg->ops = &dwmci_ops;
Simon Glassff5c1b72016-06-12 23:30:23 -0600600#endif
Simon Glass82682542016-05-14 14:03:07 -0600601 cfg->f_min = min_clk;
602 cfg->f_max = max_clk;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000603
Simon Glass82682542016-05-14 14:03:07 -0600604 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000605
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900606 cfg->host_caps = host->caps;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000607
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900608 if (host->buswidth == 8) {
Simon Glass82682542016-05-14 14:03:07 -0600609 cfg->host_caps |= MMC_MODE_8BIT;
610 cfg->host_caps &= ~MMC_MODE_4BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000611 } else {
Simon Glass82682542016-05-14 14:03:07 -0600612 cfg->host_caps |= MMC_MODE_4BIT;
613 cfg->host_caps &= ~MMC_MODE_8BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000614 }
Simon Glass82682542016-05-14 14:03:07 -0600615 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
616
617 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
618}
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200619
Simon Glass82682542016-05-14 14:03:07 -0600620#ifdef CONFIG_BLK
621int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
622{
623 return mmc_bind(dev, mmc, cfg);
624}
625#else
626int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
627{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900628 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000629
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200630 host->mmc = mmc_create(&host->cfg, host);
631 if (host->mmc == NULL)
632 return -1;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000633
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200634 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000635}
Simon Glass82682542016-05-14 14:03:07 -0600636#endif