blob: 45665e517068cb7d7c3735a9aa35582a8a4c4e89 [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
Simon Glasseba48f92017-07-29 11:35:31 -0600248#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900249static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glassff5c1b72016-06-12 23:30:23 -0600250 struct mmc_data *data)
251{
252 struct mmc *mmc = mmc_get_mmc_dev(dev);
253#else
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000254static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
255 struct mmc_data *data)
256{
Simon Glassff5c1b72016-06-12 23:30:23 -0600257#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200258 struct dwmci_host *host = mmc->priv;
Mischa Jonker7423bed2013-07-26 14:08:14 +0200259 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonkera7a60912013-07-26 16:18:40 +0200260 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut81e093f2015-07-27 22:39:38 +0200261 int ret = 0, flags = 0, i;
Xu Ziyuan34a10d32016-07-19 09:38:22 +0800262 unsigned int timeout = 500;
Alexander Graf61c2a662016-03-04 01:09:52 +0100263 u32 retry = 100000;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000264 u32 mask, ctrl;
Amar902664c2013-04-27 11:42:54 +0530265 ulong start = get_timer(0);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400266 struct bounce_buffer bbstate;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000267
268 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
Amar902664c2013-04-27 11:42:54 +0530269 if (get_timer(start) > timeout) {
Yang Xiwen84df6a72024-02-01 22:05:43 +0800270 debug("%s: Timeout on data busy, continue anyway\n", __func__);
271 break;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000272 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000273 }
274
275 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
276
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400277 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800278 if (host->fifo_mode) {
279 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
280 dwmci_writel(host, DWMCI_BYTCNT,
281 data->blocksize * data->blocks);
282 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400283 } else {
huang lin50b73752015-11-17 14:20:22 +0800284 if (data->flags == MMC_DATA_READ) {
Marek Vasut72d37b62019-03-23 18:45:27 +0100285 ret = bounce_buffer_start(&bbstate,
286 (void*)data->dest,
huang lin50b73752015-11-17 14:20:22 +0800287 data->blocksize *
288 data->blocks, GEN_BB_WRITE);
289 } else {
Marek Vasut72d37b62019-03-23 18:45:27 +0100290 ret = bounce_buffer_start(&bbstate,
291 (void*)data->src,
huang lin50b73752015-11-17 14:20:22 +0800292 data->blocksize *
293 data->blocks, GEN_BB_READ);
294 }
Marek Vasut72d37b62019-03-23 18:45:27 +0100295
296 if (ret)
297 return ret;
298
huang lin50b73752015-11-17 14:20:22 +0800299 dwmci_prepare_data(host, data, cur_idmac,
300 bbstate.bounce_buffer);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400301 }
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400302 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000303
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000304 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
305
306 if (data)
307 flags = dwmci_set_transfer_mode(host, data);
308
309 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
John Keepingfeb7fa32021-12-07 16:09:35 +0000310 return -EBUSY;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000311
312 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
313 flags |= DWMCI_CMD_ABORT_STOP;
314 else
315 flags |= DWMCI_CMD_PRV_DAT_WAIT;
316
317 if (cmd->resp_type & MMC_RSP_PRESENT) {
318 flags |= DWMCI_CMD_RESP_EXP;
319 if (cmd->resp_type & MMC_RSP_136)
320 flags |= DWMCI_CMD_RESP_LENGTH;
321 }
322
323 if (cmd->resp_type & MMC_RSP_CRC)
324 flags |= DWMCI_CMD_CHECK_CRC;
325
326 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
327
328 debug("Sending CMD%d\n",cmd->cmdidx);
329
330 dwmci_writel(host, DWMCI_CMD, flags);
331
332 for (i = 0; i < retry; i++) {
333 mask = dwmci_readl(host, DWMCI_RINTSTS);
334 if (mask & DWMCI_INTMSK_CDONE) {
335 if (!data)
336 dwmci_writel(host, DWMCI_RINTSTS, mask);
337 break;
338 }
339 }
340
Pavel Macheka425f5d2014-09-05 12:49:48 +0200341 if (i == retry) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600342 debug("%s: Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900343 return -ETIMEDOUT;
Pavel Macheka425f5d2014-09-05 12:49:48 +0200344 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000345
346 if (mask & DWMCI_INTMSK_RTO) {
Pavel Macheka425f5d2014-09-05 12:49:48 +0200347 /*
348 * Timeout here is not necessarily fatal. (e)MMC cards
349 * will splat here when they receive CMD55 as they do
350 * not support this command and that is exactly the way
351 * to tell them apart from SD cards. Thus, this output
352 * below shall be debug(). eMMC cards also do not favor
353 * CMD8, please keep that in mind.
354 */
355 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900356 return -ETIMEDOUT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000357 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600358 debug("%s: Response Error.\n", __func__);
359 return -EIO;
Marek Vasuta6d91992018-11-06 23:42:11 +0100360 } else if ((cmd->resp_type & MMC_RSP_CRC) &&
361 (mask & DWMCI_INTMSK_RCRC)) {
362 debug("%s: Response CRC Error.\n", __func__);
363 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000364 }
365
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000366 if (cmd->resp_type & MMC_RSP_PRESENT) {
367 if (cmd->resp_type & MMC_RSP_136) {
368 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
369 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
370 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
371 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
372 } else {
373 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
374 }
375 }
376
377 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800378 ret = dwmci_data_transfer(host, data);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000379
huang lin50b73752015-11-17 14:20:22 +0800380 /* only dma mode need it */
381 if (!host->fifo_mode) {
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800382 if (data->flags == MMC_DATA_READ)
383 mask = DWMCI_IDINTEN_RI;
384 else
385 mask = DWMCI_IDINTEN_TI;
386 ret = wait_for_bit_le32(host->ioaddr + DWMCI_IDSTS,
387 mask, true, 1000, false);
388 if (ret)
389 debug("%s: DWMCI_IDINTEN mask 0x%x timeout.\n",
390 __func__, mask);
391 /* clear interrupts */
392 dwmci_writel(host, DWMCI_IDSTS, DWMCI_IDINTEN_MASK);
393
huang lin50b73752015-11-17 14:20:22 +0800394 ctrl = dwmci_readl(host, DWMCI_CTRL);
395 ctrl &= ~(DWMCI_DMA_EN);
396 dwmci_writel(host, DWMCI_CTRL, ctrl);
397 bounce_buffer_stop(&bbstate);
398 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000399 }
400
401 udelay(100);
402
Marek Vasut81e093f2015-07-27 22:39:38 +0200403 return ret;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000404}
405
406static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
407{
408 u32 div, status;
409 int timeout = 10000;
410 unsigned long sclk;
411
Amar902664c2013-04-27 11:42:54 +0530412 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000413 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000414 /*
Pavel Macheka425f5d2014-09-05 12:49:48 +0200415 * If host->get_mmc_clk isn't defined,
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000416 * then assume that host->bus_hz is source clock value.
Pavel Macheka425f5d2014-09-05 12:49:48 +0200417 * host->bus_hz should be set by user.
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000418 */
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900419 if (host->get_mmc_clk)
Simon Glasseff76682015-08-30 16:55:15 -0600420 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000421 else if (host->bus_hz)
422 sclk = host->bus_hz;
423 else {
Simon Glass4c9b9482015-08-06 20:16:27 -0600424 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000425 return -EINVAL;
426 }
427
Chin Liang See4cfff952014-06-10 01:26:52 -0500428 if (sclk == freq)
429 div = 0; /* bypass mode */
430 else
431 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000432
433 dwmci_writel(host, DWMCI_CLKENA, 0);
434 dwmci_writel(host, DWMCI_CLKSRC, 0);
435
436 dwmci_writel(host, DWMCI_CLKDIV, div);
437 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
438 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
439
440 do {
441 status = dwmci_readl(host, DWMCI_CMD);
442 if (timeout-- < 0) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600443 debug("%s: Timeout!\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000444 return -ETIMEDOUT;
445 }
446 } while (status & DWMCI_CMD_START);
447
448 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
449 DWMCI_CLKEN_LOW_PWR);
450
451 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
452 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
453
454 timeout = 10000;
455 do {
456 status = dwmci_readl(host, DWMCI_CMD);
457 if (timeout-- < 0) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600458 debug("%s: Timeout!\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000459 return -ETIMEDOUT;
460 }
461 } while (status & DWMCI_CMD_START);
462
463 host->clock = freq;
464
465 return 0;
466}
467
Simon Glasseba48f92017-07-29 11:35:31 -0600468#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900469static int dwmci_set_ios(struct udevice *dev)
Simon Glassff5c1b72016-06-12 23:30:23 -0600470{
471 struct mmc *mmc = mmc_get_mmc_dev(dev);
472#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900473static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000474{
Simon Glassff5c1b72016-06-12 23:30:23 -0600475#endif
Jaehoon Chunge8672942014-05-16 13:59:55 +0900476 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
477 u32 ctype, regs;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000478
Pavel Macheka425f5d2014-09-05 12:49:48 +0200479 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000480
481 dwmci_setup_bus(host, mmc->clock);
482 switch (mmc->bus_width) {
483 case 8:
484 ctype = DWMCI_CTYPE_8BIT;
485 break;
486 case 4:
487 ctype = DWMCI_CTYPE_4BIT;
488 break;
489 default:
490 ctype = DWMCI_CTYPE_1BIT;
491 break;
492 }
493
494 dwmci_writel(host, DWMCI_CTYPE, ctype);
495
Jaehoon Chunge8672942014-05-16 13:59:55 +0900496 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov54c0e222014-12-01 06:59:12 -0600497 if (mmc->ddr_mode)
Jaehoon Chunge8672942014-05-16 13:59:55 +0900498 regs |= DWMCI_DDR_MODE;
499 else
Jaehoon Chung401fc502015-01-14 17:37:53 +0900500 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chunge8672942014-05-16 13:59:55 +0900501
502 dwmci_writel(host, DWMCI_UHS_REG, regs);
503
Siew Chin Limc51e7e12020-12-24 18:21:03 +0800504 if (host->clksel) {
505 int ret;
506
507 ret = host->clksel(host);
508 if (ret)
509 return ret;
510 }
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900511
Urja Rannikko9932a012019-05-13 13:25:27 +0000512#if CONFIG_IS_ENABLED(DM_REGULATOR)
513 if (mmc->vqmmc_supply) {
514 int ret;
515
Jonas Karlmana117d612023-07-19 21:21:00 +0000516 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, false);
517 if (ret)
518 return ret;
519
Urja Rannikko9932a012019-05-13 13:25:27 +0000520 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
521 regulator_set_value(mmc->vqmmc_supply, 1800000);
522 else
523 regulator_set_value(mmc->vqmmc_supply, 3300000);
524
525 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, true);
526 if (ret)
527 return ret;
528 }
529#endif
530
Simon Glassff5c1b72016-06-12 23:30:23 -0600531 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000532}
533
534static int dwmci_init(struct mmc *mmc)
535{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200536 struct dwmci_host *host = mmc->priv;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000537
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900538 if (host->board_init)
539 host->board_init(host);
Rajeshwari Shinde70163092013-10-29 12:53:13 +0530540
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000541 dwmci_writel(host, DWMCI_PWREN, 1);
542
543 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600544 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
545 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000546 }
547
Amar902664c2013-04-27 11:42:54 +0530548 /* Enumerate at 400KHz */
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200549 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar902664c2013-04-27 11:42:54 +0530550
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000551 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
552 dwmci_writel(host, DWMCI_INTMASK, 0);
553
554 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
555
556 dwmci_writel(host, DWMCI_IDINTEN, 0);
557 dwmci_writel(host, DWMCI_BMOD, 1);
558
Simon Glass6133efa2015-08-06 20:16:29 -0600559 if (!host->fifoth_val) {
560 uint32_t fifo_size;
561
562 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
563 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
564 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
565 TX_WMARK(fifo_size / 2);
Amar902664c2013-04-27 11:42:54 +0530566 }
Simon Glass6133efa2015-08-06 20:16:29 -0600567 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000568
569 dwmci_writel(host, DWMCI_CLKENA, 0);
570 dwmci_writel(host, DWMCI_CLKSRC, 0);
571
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800572 if (!host->fifo_mode)
573 dwmci_writel(host, DWMCI_IDINTEN, DWMCI_IDINTEN_MASK);
574
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000575 return 0;
576}
577
Simon Glasseba48f92017-07-29 11:35:31 -0600578#ifdef CONFIG_DM_MMC
Simon Glassff5c1b72016-06-12 23:30:23 -0600579int dwmci_probe(struct udevice *dev)
580{
581 struct mmc *mmc = mmc_get_mmc_dev(dev);
582
583 return dwmci_init(mmc);
584}
585
586const struct dm_mmc_ops dm_dwmci_ops = {
587 .send_cmd = dwmci_send_cmd,
588 .set_ios = dwmci_set_ios,
589};
590
591#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200592static const struct mmc_ops dwmci_ops = {
593 .send_cmd = dwmci_send_cmd,
594 .set_ios = dwmci_set_ios,
595 .init = dwmci_init,
596};
Simon Glassff5c1b72016-06-12 23:30:23 -0600597#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200598
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900599void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
600 u32 max_clk, u32 min_clk)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000601{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900602 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600603#ifndef CONFIG_DM_MMC
Simon Glass82682542016-05-14 14:03:07 -0600604 cfg->ops = &dwmci_ops;
Simon Glassff5c1b72016-06-12 23:30:23 -0600605#endif
Simon Glass82682542016-05-14 14:03:07 -0600606 cfg->f_min = min_clk;
607 cfg->f_max = max_clk;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000608
Simon Glass82682542016-05-14 14:03:07 -0600609 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000610
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900611 cfg->host_caps = host->caps;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000612
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900613 if (host->buswidth == 8) {
Simon Glass82682542016-05-14 14:03:07 -0600614 cfg->host_caps |= MMC_MODE_8BIT;
615 cfg->host_caps &= ~MMC_MODE_4BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000616 } else {
Simon Glass82682542016-05-14 14:03:07 -0600617 cfg->host_caps |= MMC_MODE_4BIT;
618 cfg->host_caps &= ~MMC_MODE_8BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000619 }
Simon Glass82682542016-05-14 14:03:07 -0600620 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
621
622 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
623}
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200624
Simon Glass82682542016-05-14 14:03:07 -0600625#ifdef CONFIG_BLK
626int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
627{
628 return mmc_bind(dev, mmc, cfg);
629}
630#else
631int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
632{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900633 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000634
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200635 host->mmc = mmc_create(&host->cfg, host);
636 if (host->mmc == NULL)
637 return -1;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000638
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200639 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000640}
Simon Glass82682542016-05-14 14:03:07 -0600641#endif