blob: b9c14fe6857bff19eb8249e42fa3280b6ee2fc76 [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
Sam Protsenko2543c322024-08-07 22:14:08 -050023struct dwmci_idmac {
24 u32 flags;
25 u32 cnt;
26 u32 addr;
27 u32 next_addr;
28} __aligned(ARCH_DMA_MINALIGN);
29
Jaehoon Chung7cf73072012-10-15 19:10:29 +000030static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
31{
32 unsigned long timeout = 1000;
33 u32 ctrl;
34
35 dwmci_writel(host, DWMCI_CTRL, value);
36
37 while (timeout--) {
38 ctrl = dwmci_readl(host, DWMCI_CTRL);
39 if (!(ctrl & DWMCI_RESET_ALL))
40 return 1;
41 }
42 return 0;
43}
44
45static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
46 u32 desc0, u32 desc1, u32 desc2)
47{
48 struct dwmci_idmac *desc = idmac;
49
50 desc->flags = desc0;
51 desc->cnt = desc1;
52 desc->addr = desc2;
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053053 desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac);
Jaehoon Chung7cf73072012-10-15 19:10:29 +000054}
55
56static void dwmci_prepare_data(struct dwmci_host *host,
Alexey Brodkin55bab5e2013-12-26 15:29:07 +040057 struct mmc_data *data,
58 struct dwmci_idmac *cur_idmac,
59 void *bounce_buffer)
Jaehoon Chung7cf73072012-10-15 19:10:29 +000060{
61 unsigned long ctrl;
62 unsigned int i = 0, flags, cnt, blk_cnt;
Alexey Brodkin55bab5e2013-12-26 15:29:07 +040063 ulong data_start, data_end;
Jaehoon Chung7cf73072012-10-15 19:10:29 +000064
Jaehoon Chung7cf73072012-10-15 19:10:29 +000065 blk_cnt = data->blocks;
66
67 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
68
Ley Foon Tanb98e8922018-12-20 17:55:41 +080069 /* Clear IDMAC interrupt */
70 dwmci_writel(host, DWMCI_IDSTS, 0xFFFFFFFF);
71
Jaehoon Chung7cf73072012-10-15 19:10:29 +000072 data_start = (ulong)cur_idmac;
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053073 dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac);
Jaehoon Chung7cf73072012-10-15 19:10:29 +000074
Jaehoon Chung7cf73072012-10-15 19:10:29 +000075 do {
76 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
77 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
78 if (blk_cnt <= 8) {
79 flags |= DWMCI_IDMAC_LD;
80 cnt = data->blocksize * blk_cnt;
81 } else
82 cnt = data->blocksize * 8;
83
84 dwmci_set_idma_desc(cur_idmac, flags, cnt,
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053085 (ulong)bounce_buffer + (i * PAGE_SIZE));
Jaehoon Chung7cf73072012-10-15 19:10:29 +000086
Marek Vasutb6da37b2019-02-13 20:16:20 +010087 cur_idmac++;
Mischa Jonkera7a60912013-07-26 16:18:40 +020088 if (blk_cnt <= 8)
Jaehoon Chung7cf73072012-10-15 19:10:29 +000089 break;
90 blk_cnt -= 8;
Jaehoon Chung7cf73072012-10-15 19:10:29 +000091 i++;
92 } while(1);
93
94 data_end = (ulong)cur_idmac;
Marek Vasutb6da37b2019-02-13 20:16:20 +010095 flush_dcache_range(data_start, roundup(data_end, ARCH_DMA_MINALIGN));
Jaehoon Chung7cf73072012-10-15 19:10:29 +000096
97 ctrl = dwmci_readl(host, DWMCI_CTRL);
98 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
99 dwmci_writel(host, DWMCI_CTRL, ctrl);
100
101 ctrl = dwmci_readl(host, DWMCI_BMOD);
102 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
103 dwmci_writel(host, DWMCI_BMOD, ctrl);
104
105 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
106 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
107}
108
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200109static int dwmci_fifo_ready(struct dwmci_host *host, u32 bit, u32 *len)
110{
111 u32 timeout = 20000;
112
113 *len = dwmci_readl(host, DWMCI_STATUS);
114 while (--timeout && (*len & bit)) {
115 udelay(200);
116 *len = dwmci_readl(host, DWMCI_STATUS);
117 }
118
119 if (!timeout) {
120 debug("%s: FIFO underflow timeout\n", __func__);
121 return -ETIMEDOUT;
122 }
123
124 return 0;
125}
126
Marek Vasutffac5122019-03-23 03:32:24 +0100127static unsigned int dwmci_get_timeout(struct mmc *mmc, const unsigned int size)
128{
129 unsigned int timeout;
130
Kever Yang4889d832019-08-29 15:42:41 +0800131 timeout = size * 8; /* counting in bits */
132 timeout *= 10; /* wait 10 times as long */
Marek Vasutffac5122019-03-23 03:32:24 +0100133 timeout /= mmc->clock;
134 timeout /= mmc->bus_width;
135 timeout /= mmc->ddr_mode ? 2 : 1;
Kever Yang4889d832019-08-29 15:42:41 +0800136 timeout *= 1000; /* counting in msec */
Marek Vasutffac5122019-03-23 03:32:24 +0100137 timeout = (timeout < 1000) ? 1000 : timeout;
138
139 return timeout;
140}
141
huang lin50b73752015-11-17 14:20:22 +0800142static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
huang linf9836762015-11-17 14:20:21 +0800143{
Marek Vasutffac5122019-03-23 03:32:24 +0100144 struct mmc *mmc = host->mmc;
huang linf9836762015-11-17 14:20:21 +0800145 int ret = 0;
Marek Vasutffac5122019-03-23 03:32:24 +0100146 u32 timeout, mask, size, i, len = 0;
huang lin50b73752015-11-17 14:20:22 +0800147 u32 *buf = NULL;
huang linf9836762015-11-17 14:20:21 +0800148 ulong start = get_timer(0);
huang lin50b73752015-11-17 14:20:22 +0800149 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
150 RX_WMARK_SHIFT) + 1) * 2;
151
Marek Vasutffac5122019-03-23 03:32:24 +0100152 size = data->blocksize * data->blocks;
huang lin50b73752015-11-17 14:20:22 +0800153 if (data->flags == MMC_DATA_READ)
154 buf = (unsigned int *)data->dest;
155 else
156 buf = (unsigned int *)data->src;
huang linf9836762015-11-17 14:20:21 +0800157
Marek Vasutffac5122019-03-23 03:32:24 +0100158 timeout = dwmci_get_timeout(mmc, size);
159
160 size /= 4;
161
huang linf9836762015-11-17 14:20:21 +0800162 for (;;) {
163 mask = dwmci_readl(host, DWMCI_RINTSTS);
164 /* Error during data transfer. */
165 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
166 debug("%s: DATA ERROR!\n", __func__);
167 ret = -EINVAL;
168 break;
169 }
170
huang lin50b73752015-11-17 14:20:22 +0800171 if (host->fifo_mode && size) {
Xu Ziyuan5b8bf122016-07-28 10:25:48 +0800172 len = 0;
Jacob Chen953d9752016-09-19 10:16:50 +0800173 if (data->flags == MMC_DATA_READ &&
Ley Foon Tan1cead232021-04-26 11:35:05 +0800174 (mask & (DWMCI_INTMSK_RXDR | DWMCI_INTMSK_DTO))) {
175 dwmci_writel(host, DWMCI_RINTSTS,
John Keepinga6a71572022-09-15 18:56:56 +0100176 mask & (DWMCI_INTMSK_RXDR |
177 DWMCI_INTMSK_DTO));
Jacob Chen953d9752016-09-19 10:16:50 +0800178 while (size) {
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200179 ret = dwmci_fifo_ready(host,
180 DWMCI_FIFO_EMPTY,
181 &len);
182 if (ret < 0)
183 break;
184
huang lin50b73752015-11-17 14:20:22 +0800185 len = (len >> DWMCI_FIFO_SHIFT) &
186 DWMCI_FIFO_MASK;
Xu Ziyuan6577a2a2016-07-28 10:25:47 +0800187 len = min(size, len);
huang lin50b73752015-11-17 14:20:22 +0800188 for (i = 0; i < len; i++)
189 *buf++ =
190 dwmci_readl(host, DWMCI_DATA);
Jacob Chen953d9752016-09-19 10:16:50 +0800191 size = size > len ? (size - len) : 0;
huang lin50b73752015-11-17 14:20:22 +0800192 }
Jacob Chen953d9752016-09-19 10:16:50 +0800193 } else if (data->flags == MMC_DATA_WRITE &&
194 (mask & DWMCI_INTMSK_TXDR)) {
195 while (size) {
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200196 ret = dwmci_fifo_ready(host,
197 DWMCI_FIFO_FULL,
198 &len);
199 if (ret < 0)
200 break;
201
huang lin50b73752015-11-17 14:20:22 +0800202 len = fifo_depth - ((len >>
203 DWMCI_FIFO_SHIFT) &
204 DWMCI_FIFO_MASK);
Xu Ziyuan6577a2a2016-07-28 10:25:47 +0800205 len = min(size, len);
huang lin50b73752015-11-17 14:20:22 +0800206 for (i = 0; i < len; i++)
207 dwmci_writel(host, DWMCI_DATA,
208 *buf++);
Jacob Chen953d9752016-09-19 10:16:50 +0800209 size = size > len ? (size - len) : 0;
huang lin50b73752015-11-17 14:20:22 +0800210 }
Jacob Chen953d9752016-09-19 10:16:50 +0800211 dwmci_writel(host, DWMCI_RINTSTS,
212 DWMCI_INTMSK_TXDR);
huang lin50b73752015-11-17 14:20:22 +0800213 }
huang lin50b73752015-11-17 14:20:22 +0800214 }
215
huang linf9836762015-11-17 14:20:21 +0800216 /* Data arrived correctly. */
217 if (mask & DWMCI_INTMSK_DTO) {
218 ret = 0;
219 break;
220 }
221
222 /* Check for timeout. */
223 if (get_timer(start) > timeout) {
224 debug("%s: Timeout waiting for data!\n",
225 __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900226 ret = -ETIMEDOUT;
huang linf9836762015-11-17 14:20:21 +0800227 break;
228 }
229 }
230
231 dwmci_writel(host, DWMCI_RINTSTS, mask);
232
233 return ret;
234}
235
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000236static int dwmci_set_transfer_mode(struct dwmci_host *host,
237 struct mmc_data *data)
238{
239 unsigned long mode;
240
241 mode = DWMCI_CMD_DATA_EXP;
242 if (data->flags & MMC_DATA_WRITE)
243 mode |= DWMCI_CMD_RW;
244
245 return mode;
246}
247
Sam Protsenkocf812042024-08-07 22:14:09 -0500248static void dwmci_wait_while_busy(struct dwmci_host *host, struct mmc_cmd *cmd)
249{
250 unsigned int timeout = 500; /* msec */
251 ulong start;
252
253 start = get_timer(0);
254 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
255 if (get_timer(start) > timeout) {
256 debug("%s: Timeout on data busy, continue anyway\n",
257 __func__);
258 break;
259 }
260 }
261}
262
Simon Glasseba48f92017-07-29 11:35:31 -0600263#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900264static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glassff5c1b72016-06-12 23:30:23 -0600265 struct mmc_data *data)
266{
267 struct mmc *mmc = mmc_get_mmc_dev(dev);
268#else
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000269static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
270 struct mmc_data *data)
271{
Simon Glassff5c1b72016-06-12 23:30:23 -0600272#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200273 struct dwmci_host *host = mmc->priv;
Mischa Jonker7423bed2013-07-26 14:08:14 +0200274 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonkera7a60912013-07-26 16:18:40 +0200275 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut81e093f2015-07-27 22:39:38 +0200276 int ret = 0, flags = 0, i;
Alexander Graf61c2a662016-03-04 01:09:52 +0100277 u32 retry = 100000;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000278 u32 mask, ctrl;
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400279 struct bounce_buffer bbstate;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000280
Sam Protsenkocf812042024-08-07 22:14:09 -0500281 dwmci_wait_while_busy(host, cmd);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000282 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
283
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400284 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800285 if (host->fifo_mode) {
286 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
287 dwmci_writel(host, DWMCI_BYTCNT,
288 data->blocksize * data->blocks);
289 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400290 } else {
huang lin50b73752015-11-17 14:20:22 +0800291 if (data->flags == MMC_DATA_READ) {
Marek Vasut72d37b62019-03-23 18:45:27 +0100292 ret = bounce_buffer_start(&bbstate,
293 (void*)data->dest,
huang lin50b73752015-11-17 14:20:22 +0800294 data->blocksize *
295 data->blocks, GEN_BB_WRITE);
296 } else {
Marek Vasut72d37b62019-03-23 18:45:27 +0100297 ret = bounce_buffer_start(&bbstate,
298 (void*)data->src,
huang lin50b73752015-11-17 14:20:22 +0800299 data->blocksize *
300 data->blocks, GEN_BB_READ);
301 }
Marek Vasut72d37b62019-03-23 18:45:27 +0100302
303 if (ret)
304 return ret;
305
huang lin50b73752015-11-17 14:20:22 +0800306 dwmci_prepare_data(host, data, cur_idmac,
307 bbstate.bounce_buffer);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400308 }
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400309 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000310
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000311 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
312
313 if (data)
314 flags = dwmci_set_transfer_mode(host, data);
315
316 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
John Keepingfeb7fa32021-12-07 16:09:35 +0000317 return -EBUSY;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000318
319 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
320 flags |= DWMCI_CMD_ABORT_STOP;
321 else
322 flags |= DWMCI_CMD_PRV_DAT_WAIT;
323
324 if (cmd->resp_type & MMC_RSP_PRESENT) {
325 flags |= DWMCI_CMD_RESP_EXP;
326 if (cmd->resp_type & MMC_RSP_136)
327 flags |= DWMCI_CMD_RESP_LENGTH;
328 }
329
330 if (cmd->resp_type & MMC_RSP_CRC)
331 flags |= DWMCI_CMD_CHECK_CRC;
332
333 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
334
335 debug("Sending CMD%d\n",cmd->cmdidx);
336
337 dwmci_writel(host, DWMCI_CMD, flags);
338
339 for (i = 0; i < retry; i++) {
340 mask = dwmci_readl(host, DWMCI_RINTSTS);
341 if (mask & DWMCI_INTMSK_CDONE) {
342 if (!data)
343 dwmci_writel(host, DWMCI_RINTSTS, mask);
344 break;
345 }
346 }
347
Pavel Macheka425f5d2014-09-05 12:49:48 +0200348 if (i == retry) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600349 debug("%s: Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900350 return -ETIMEDOUT;
Pavel Macheka425f5d2014-09-05 12:49:48 +0200351 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000352
353 if (mask & DWMCI_INTMSK_RTO) {
Pavel Macheka425f5d2014-09-05 12:49:48 +0200354 /*
355 * Timeout here is not necessarily fatal. (e)MMC cards
356 * will splat here when they receive CMD55 as they do
357 * not support this command and that is exactly the way
358 * to tell them apart from SD cards. Thus, this output
359 * below shall be debug(). eMMC cards also do not favor
360 * CMD8, please keep that in mind.
361 */
362 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900363 return -ETIMEDOUT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000364 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600365 debug("%s: Response Error.\n", __func__);
366 return -EIO;
Marek Vasuta6d91992018-11-06 23:42:11 +0100367 } else if ((cmd->resp_type & MMC_RSP_CRC) &&
368 (mask & DWMCI_INTMSK_RCRC)) {
369 debug("%s: Response CRC Error.\n", __func__);
370 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000371 }
372
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000373 if (cmd->resp_type & MMC_RSP_PRESENT) {
374 if (cmd->resp_type & MMC_RSP_136) {
375 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
376 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
377 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
378 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
379 } else {
380 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
381 }
382 }
383
384 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800385 ret = dwmci_data_transfer(host, data);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000386
huang lin50b73752015-11-17 14:20:22 +0800387 /* only dma mode need it */
388 if (!host->fifo_mode) {
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800389 if (data->flags == MMC_DATA_READ)
390 mask = DWMCI_IDINTEN_RI;
391 else
392 mask = DWMCI_IDINTEN_TI;
393 ret = wait_for_bit_le32(host->ioaddr + DWMCI_IDSTS,
394 mask, true, 1000, false);
395 if (ret)
396 debug("%s: DWMCI_IDINTEN mask 0x%x timeout.\n",
397 __func__, mask);
398 /* clear interrupts */
399 dwmci_writel(host, DWMCI_IDSTS, DWMCI_IDINTEN_MASK);
400
huang lin50b73752015-11-17 14:20:22 +0800401 ctrl = dwmci_readl(host, DWMCI_CTRL);
402 ctrl &= ~(DWMCI_DMA_EN);
403 dwmci_writel(host, DWMCI_CTRL, ctrl);
404 bounce_buffer_stop(&bbstate);
405 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000406 }
407
408 udelay(100);
409
Marek Vasut81e093f2015-07-27 22:39:38 +0200410 return ret;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000411}
412
Sam Protsenkofd5387f2024-08-07 22:14:11 -0500413static int dwmci_control_clken(struct dwmci_host *host, bool on)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000414{
Sam Protsenkofd5387f2024-08-07 22:14:11 -0500415 const u32 val = on ? DWMCI_CLKEN_ENABLE | DWMCI_CLKEN_LOW_PWR : 0;
416 const u32 cmd_only_clk = DWMCI_CMD_PRV_DAT_WAIT | DWMCI_CMD_UPD_CLK;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000417 int timeout = 10000;
Sam Protsenkofd5387f2024-08-07 22:14:11 -0500418 u32 status;
419
420 dwmci_writel(host, DWMCI_CLKENA, val);
421
422 /* Inform CIU */
423 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_START | cmd_only_clk);
424 do {
425 status = dwmci_readl(host, DWMCI_CMD);
426 if (timeout-- < 0) {
427 debug("%s: Timeout!\n", __func__);
428 return -ETIMEDOUT;
429 }
430 } while (status & DWMCI_CMD_START);
431
432 return 0;
433}
434
435/*
436 * Update the clock divider.
437 *
438 * To prevent a clock glitch keep the clock stopped during the update of
439 * clock divider and clock source.
440 */
441static int dwmci_update_div(struct dwmci_host *host, u32 div)
442{
443 int ret;
444
445 /* Disable clock */
446 ret = dwmci_control_clken(host, false);
447 if (ret)
448 return ret;
449
450 /* Set clock to desired speed */
451 dwmci_writel(host, DWMCI_CLKDIV, div);
452 dwmci_writel(host, DWMCI_CLKSRC, 0);
453
454 /* Enable clock */
455 return dwmci_control_clken(host, true);
456}
457
458static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
459{
460 u32 div;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000461 unsigned long sclk;
Sam Protsenkofd5387f2024-08-07 22:14:11 -0500462 int ret;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000463
Amar902664c2013-04-27 11:42:54 +0530464 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000465 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000466 /*
Pavel Macheka425f5d2014-09-05 12:49:48 +0200467 * If host->get_mmc_clk isn't defined,
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000468 * then assume that host->bus_hz is source clock value.
Pavel Macheka425f5d2014-09-05 12:49:48 +0200469 * host->bus_hz should be set by user.
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000470 */
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900471 if (host->get_mmc_clk)
Simon Glasseff76682015-08-30 16:55:15 -0600472 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000473 else if (host->bus_hz)
474 sclk = host->bus_hz;
475 else {
Simon Glass4c9b9482015-08-06 20:16:27 -0600476 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000477 return -EINVAL;
478 }
479
Chin Liang See4cfff952014-06-10 01:26:52 -0500480 if (sclk == freq)
481 div = 0; /* bypass mode */
482 else
483 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000484
Sam Protsenkofd5387f2024-08-07 22:14:11 -0500485 ret = dwmci_update_div(host, div);
486 if (ret)
487 return ret;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000488
489 host->clock = freq;
490
491 return 0;
492}
493
Simon Glasseba48f92017-07-29 11:35:31 -0600494#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900495static int dwmci_set_ios(struct udevice *dev)
Simon Glassff5c1b72016-06-12 23:30:23 -0600496{
497 struct mmc *mmc = mmc_get_mmc_dev(dev);
498#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900499static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000500{
Simon Glassff5c1b72016-06-12 23:30:23 -0600501#endif
Jaehoon Chunge8672942014-05-16 13:59:55 +0900502 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
503 u32 ctype, regs;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000504
Pavel Macheka425f5d2014-09-05 12:49:48 +0200505 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000506
507 dwmci_setup_bus(host, mmc->clock);
508 switch (mmc->bus_width) {
509 case 8:
510 ctype = DWMCI_CTYPE_8BIT;
511 break;
512 case 4:
513 ctype = DWMCI_CTYPE_4BIT;
514 break;
515 default:
516 ctype = DWMCI_CTYPE_1BIT;
517 break;
518 }
519
520 dwmci_writel(host, DWMCI_CTYPE, ctype);
521
Jaehoon Chunge8672942014-05-16 13:59:55 +0900522 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov54c0e222014-12-01 06:59:12 -0600523 if (mmc->ddr_mode)
Jaehoon Chunge8672942014-05-16 13:59:55 +0900524 regs |= DWMCI_DDR_MODE;
525 else
Jaehoon Chung401fc502015-01-14 17:37:53 +0900526 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chunge8672942014-05-16 13:59:55 +0900527
528 dwmci_writel(host, DWMCI_UHS_REG, regs);
529
Siew Chin Limc51e7e12020-12-24 18:21:03 +0800530 if (host->clksel) {
531 int ret;
532
533 ret = host->clksel(host);
534 if (ret)
535 return ret;
536 }
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900537
Urja Rannikko9932a012019-05-13 13:25:27 +0000538#if CONFIG_IS_ENABLED(DM_REGULATOR)
539 if (mmc->vqmmc_supply) {
540 int ret;
541
Jonas Karlmana117d612023-07-19 21:21:00 +0000542 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, false);
543 if (ret)
544 return ret;
545
Urja Rannikko9932a012019-05-13 13:25:27 +0000546 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
547 regulator_set_value(mmc->vqmmc_supply, 1800000);
548 else
549 regulator_set_value(mmc->vqmmc_supply, 3300000);
550
551 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, true);
552 if (ret)
553 return ret;
554 }
555#endif
556
Simon Glassff5c1b72016-06-12 23:30:23 -0600557 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000558}
559
Sam Protsenko0845f4f2024-08-07 22:14:10 -0500560static void dwmci_init_fifo(struct dwmci_host *host)
561{
562 if (!host->fifoth_val) {
563 u32 fifo_size;
564
565 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
566 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
567 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
568 TX_WMARK(fifo_size / 2);
569 }
570
571 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
572}
573
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000574static int dwmci_init(struct mmc *mmc)
575{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200576 struct dwmci_host *host = mmc->priv;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000577
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900578 if (host->board_init)
579 host->board_init(host);
Rajeshwari Shinde70163092013-10-29 12:53:13 +0530580
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000581 dwmci_writel(host, DWMCI_PWREN, 1);
582
583 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600584 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
585 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000586 }
587
Amar902664c2013-04-27 11:42:54 +0530588 /* Enumerate at 400KHz */
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200589 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar902664c2013-04-27 11:42:54 +0530590
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000591 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
592 dwmci_writel(host, DWMCI_INTMASK, 0);
593
594 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
595
596 dwmci_writel(host, DWMCI_IDINTEN, 0);
597 dwmci_writel(host, DWMCI_BMOD, 1);
Sam Protsenko0845f4f2024-08-07 22:14:10 -0500598 dwmci_init_fifo(host);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000599
600 dwmci_writel(host, DWMCI_CLKENA, 0);
601 dwmci_writel(host, DWMCI_CLKSRC, 0);
602
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800603 if (!host->fifo_mode)
604 dwmci_writel(host, DWMCI_IDINTEN, DWMCI_IDINTEN_MASK);
605
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000606 return 0;
607}
608
Simon Glasseba48f92017-07-29 11:35:31 -0600609#ifdef CONFIG_DM_MMC
Simon Glassff5c1b72016-06-12 23:30:23 -0600610int dwmci_probe(struct udevice *dev)
611{
612 struct mmc *mmc = mmc_get_mmc_dev(dev);
613
614 return dwmci_init(mmc);
615}
616
617const struct dm_mmc_ops dm_dwmci_ops = {
618 .send_cmd = dwmci_send_cmd,
619 .set_ios = dwmci_set_ios,
620};
621
622#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200623static const struct mmc_ops dwmci_ops = {
624 .send_cmd = dwmci_send_cmd,
625 .set_ios = dwmci_set_ios,
626 .init = dwmci_init,
627};
Simon Glassff5c1b72016-06-12 23:30:23 -0600628#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200629
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900630void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
631 u32 max_clk, u32 min_clk)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000632{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900633 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600634#ifndef CONFIG_DM_MMC
Simon Glass82682542016-05-14 14:03:07 -0600635 cfg->ops = &dwmci_ops;
Simon Glassff5c1b72016-06-12 23:30:23 -0600636#endif
Simon Glass82682542016-05-14 14:03:07 -0600637 cfg->f_min = min_clk;
638 cfg->f_max = max_clk;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000639
Simon Glass82682542016-05-14 14:03:07 -0600640 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000641
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900642 cfg->host_caps = host->caps;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000643
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900644 if (host->buswidth == 8) {
Simon Glass82682542016-05-14 14:03:07 -0600645 cfg->host_caps |= MMC_MODE_8BIT;
646 cfg->host_caps &= ~MMC_MODE_4BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000647 } else {
Simon Glass82682542016-05-14 14:03:07 -0600648 cfg->host_caps |= MMC_MODE_4BIT;
649 cfg->host_caps &= ~MMC_MODE_8BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000650 }
Simon Glass82682542016-05-14 14:03:07 -0600651 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
652
653 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
654}
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200655
Simon Glass82682542016-05-14 14:03:07 -0600656#ifdef CONFIG_BLK
657int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
658{
659 return mmc_bind(dev, mmc, cfg);
660}
661#else
662int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
663{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900664 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000665
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200666 host->mmc = mmc_create(&host->cfg, host);
667 if (host->mmc == NULL)
668 return -1;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000669
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200670 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000671}
Simon Glass82682542016-05-14 14:03:07 -0600672#endif