blob: 395b699b0a0a26833170e709c7486ea7653d1a10 [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>
Simon Glass1eb69ae2019-11-14 12:57:39 -07009#include <cpu_func.h>
Simon Glass1c87ffe2015-08-06 20:16:27 -060010#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.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>
Simon Glassc05ed002020-05-10 11:40:11 -060018#include <linux/delay.h>
Urja Rannikko2b157012019-05-13 13:25:27 +000019#include <power/regulator.h>
Jaehoon Chung757bff42012-10-15 19:10:29 +000020
21#define PAGE_SIZE 4096
22
Sam Protsenko96ea8902024-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 Chung757bff42012-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 Kushwaha41f7be32015-10-25 13:18:25 +053053 desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac);
Jaehoon Chung757bff42012-10-15 19:10:29 +000054}
55
56static void dwmci_prepare_data(struct dwmci_host *host,
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040057 struct mmc_data *data,
58 struct dwmci_idmac *cur_idmac,
59 void *bounce_buffer)
Jaehoon Chung757bff42012-10-15 19:10:29 +000060{
61 unsigned long ctrl;
62 unsigned int i = 0, flags, cnt, blk_cnt;
Alexey Brodkin2a7a2102013-12-26 15:29:07 +040063 ulong data_start, data_end;
Jaehoon Chung757bff42012-10-15 19:10:29 +000064
Jaehoon Chung757bff42012-10-15 19:10:29 +000065 blk_cnt = data->blocks;
66
67 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
68
Ley Foon Tan79975992018-12-20 17:55:41 +080069 /* Clear IDMAC interrupt */
70 dwmci_writel(host, DWMCI_IDSTS, 0xFFFFFFFF);
71
Jaehoon Chung757bff42012-10-15 19:10:29 +000072 data_start = (ulong)cur_idmac;
Prabhakar Kushwaha41f7be32015-10-25 13:18:25 +053073 dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac);
Jaehoon Chung757bff42012-10-15 19:10:29 +000074
Jaehoon Chung757bff42012-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 Kushwaha41f7be32015-10-25 13:18:25 +053085 (ulong)bounce_buffer + (i * PAGE_SIZE));
Jaehoon Chung757bff42012-10-15 19:10:29 +000086
Marek Vasutbdb5df12019-02-13 20:16:20 +010087 cur_idmac++;
Mischa Jonker21bd5762013-07-26 16:18:40 +020088 if (blk_cnt <= 8)
Jaehoon Chung757bff42012-10-15 19:10:29 +000089 break;
90 blk_cnt -= 8;
Jaehoon Chung757bff42012-10-15 19:10:29 +000091 i++;
92 } while(1);
93
94 data_end = (ulong)cur_idmac;
Marek Vasutbdb5df12019-02-13 20:16:20 +010095 flush_dcache_range(data_start, roundup(data_end, ARCH_DMA_MINALIGN));
Jaehoon Chung757bff42012-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 Stuebner05fa06b2018-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 Vasut4e16f0a2019-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 Yangc077c052019-08-29 15:42:41 +0800131 timeout = size * 8; /* counting in bits */
132 timeout *= 10; /* wait 10 times as long */
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100133 timeout /= mmc->clock;
134 timeout /= mmc->bus_width;
135 timeout /= mmc->ddr_mode ? 2 : 1;
Kever Yangc077c052019-08-29 15:42:41 +0800136 timeout *= 1000; /* counting in msec */
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100137 timeout = (timeout < 1000) ? 1000 : timeout;
138
139 return timeout;
140}
141
huang lina65f51b2015-11-17 14:20:22 +0800142static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
huang linf382eb82015-11-17 14:20:21 +0800143{
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100144 struct mmc *mmc = host->mmc;
huang linf382eb82015-11-17 14:20:21 +0800145 int ret = 0;
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100146 u32 timeout, mask, size, i, len = 0;
huang lina65f51b2015-11-17 14:20:22 +0800147 u32 *buf = NULL;
huang linf382eb82015-11-17 14:20:21 +0800148 ulong start = get_timer(0);
huang lina65f51b2015-11-17 14:20:22 +0800149 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
150 RX_WMARK_SHIFT) + 1) * 2;
151
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100152 size = data->blocksize * data->blocks;
huang lina65f51b2015-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 linf382eb82015-11-17 14:20:21 +0800157
Marek Vasut4e16f0a2019-03-23 03:32:24 +0100158 timeout = dwmci_get_timeout(mmc, size);
159
160 size /= 4;
161
huang linf382eb82015-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 lina65f51b2015-11-17 14:20:22 +0800171 if (host->fifo_mode && size) {
Xu Ziyuan720724d2016-07-28 10:25:48 +0800172 len = 0;
Jacob Chen2b429032016-09-19 10:16:50 +0800173 if (data->flags == MMC_DATA_READ &&
Ley Foon Tan8cb9d3e2021-04-26 11:35:05 +0800174 (mask & (DWMCI_INTMSK_RXDR | DWMCI_INTMSK_DTO))) {
175 dwmci_writel(host, DWMCI_RINTSTS,
John Keeping7ff2f302022-09-15 18:56:56 +0100176 mask & (DWMCI_INTMSK_RXDR |
177 DWMCI_INTMSK_DTO));
Jacob Chen2b429032016-09-19 10:16:50 +0800178 while (size) {
Heiko Stuebner05fa06b2018-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 lina65f51b2015-11-17 14:20:22 +0800185 len = (len >> DWMCI_FIFO_SHIFT) &
186 DWMCI_FIFO_MASK;
Xu Ziyuan2990e072016-07-28 10:25:47 +0800187 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800188 for (i = 0; i < len; i++)
189 *buf++ =
190 dwmci_readl(host, DWMCI_DATA);
Jacob Chen2b429032016-09-19 10:16:50 +0800191 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800192 }
Jacob Chen2b429032016-09-19 10:16:50 +0800193 } else if (data->flags == MMC_DATA_WRITE &&
194 (mask & DWMCI_INTMSK_TXDR)) {
195 while (size) {
Heiko Stuebner05fa06b2018-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 lina65f51b2015-11-17 14:20:22 +0800202 len = fifo_depth - ((len >>
203 DWMCI_FIFO_SHIFT) &
204 DWMCI_FIFO_MASK);
Xu Ziyuan2990e072016-07-28 10:25:47 +0800205 len = min(size, len);
huang lina65f51b2015-11-17 14:20:22 +0800206 for (i = 0; i < len; i++)
207 dwmci_writel(host, DWMCI_DATA,
208 *buf++);
Jacob Chen2b429032016-09-19 10:16:50 +0800209 size = size > len ? (size - len) : 0;
huang lina65f51b2015-11-17 14:20:22 +0800210 }
Jacob Chen2b429032016-09-19 10:16:50 +0800211 dwmci_writel(host, DWMCI_RINTSTS,
212 DWMCI_INTMSK_TXDR);
huang lina65f51b2015-11-17 14:20:22 +0800213 }
huang lina65f51b2015-11-17 14:20:22 +0800214 }
215
huang linf382eb82015-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 Chung915ffa52016-07-19 16:33:36 +0900226 ret = -ETIMEDOUT;
huang linf382eb82015-11-17 14:20:21 +0800227 break;
228 }
229 }
230
231 dwmci_writel(host, DWMCI_RINTSTS, mask);
232
233 return ret;
234}
235
Jaehoon Chung757bff42012-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 Protsenko2015f242024-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 Glasse7881d82017-07-29 11:35:31 -0600263#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900264static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glass691272f2016-06-12 23:30:23 -0600265 struct mmc_data *data)
266{
267 struct mmc *mmc = mmc_get_mmc_dev(dev);
268#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000269static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
270 struct mmc_data *data)
271{
Simon Glass691272f2016-06-12 23:30:23 -0600272#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200273 struct dwmci_host *host = mmc->priv;
Mischa Jonker2136d222013-07-26 14:08:14 +0200274 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonker21bd5762013-07-26 16:18:40 +0200275 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut9042d972015-07-27 22:39:38 +0200276 int ret = 0, flags = 0, i;
Alexander Graf9b5b8b62016-03-04 01:09:52 +0100277 u32 retry = 100000;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000278 u32 mask, ctrl;
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400279 struct bounce_buffer bbstate;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000280
Sam Protsenko2015f242024-08-07 22:14:09 -0500281 dwmci_wait_while_busy(host, cmd);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000282 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
283
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400284 if (data) {
huang lina65f51b2015-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 Brodkin2a7a2102013-12-26 15:29:07 +0400290 } else {
huang lina65f51b2015-11-17 14:20:22 +0800291 if (data->flags == MMC_DATA_READ) {
Marek Vasut6ad5aec2019-03-23 18:45:27 +0100292 ret = bounce_buffer_start(&bbstate,
293 (void*)data->dest,
huang lina65f51b2015-11-17 14:20:22 +0800294 data->blocksize *
295 data->blocks, GEN_BB_WRITE);
296 } else {
Marek Vasut6ad5aec2019-03-23 18:45:27 +0100297 ret = bounce_buffer_start(&bbstate,
298 (void*)data->src,
huang lina65f51b2015-11-17 14:20:22 +0800299 data->blocksize *
300 data->blocks, GEN_BB_READ);
301 }
Marek Vasut6ad5aec2019-03-23 18:45:27 +0100302
303 if (ret)
304 return ret;
305
huang lina65f51b2015-11-17 14:20:22 +0800306 dwmci_prepare_data(host, data, cur_idmac,
307 bbstate.bounce_buffer);
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400308 }
Alexey Brodkin2a7a2102013-12-26 15:29:07 +0400309 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000310
Jaehoon Chung757bff42012-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 Keeping66d0b7e2021-12-07 16:09:35 +0000317 return -EBUSY;
Jaehoon Chung757bff42012-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 Machekf33c9302014-09-05 12:49:48 +0200348 if (i == retry) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600349 debug("%s: Timeout.\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900350 return -ETIMEDOUT;
Pavel Machekf33c9302014-09-05 12:49:48 +0200351 }
Jaehoon Chung757bff42012-10-15 19:10:29 +0000352
353 if (mask & DWMCI_INTMSK_RTO) {
Pavel Machekf33c9302014-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 Chung915ffa52016-07-19 16:33:36 +0900363 return -ETIMEDOUT;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000364 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600365 debug("%s: Response Error.\n", __func__);
366 return -EIO;
Marek Vasut26cc40d2018-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 Chung757bff42012-10-15 19:10:29 +0000371 }
372
Jaehoon Chung757bff42012-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 lina65f51b2015-11-17 14:20:22 +0800385 ret = dwmci_data_transfer(host, data);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000386
huang lina65f51b2015-11-17 14:20:22 +0800387 /* only dma mode need it */
388 if (!host->fifo_mode) {
Ley Foon Tan79975992018-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 lina65f51b2015-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 Chung757bff42012-10-15 19:10:29 +0000406 }
407
408 udelay(100);
409
Marek Vasut9042d972015-07-27 22:39:38 +0200410 return ret;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000411}
412
413static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
414{
415 u32 div, status;
416 int timeout = 10000;
417 unsigned long sclk;
418
Amar9c50e352013-04-27 11:42:54 +0530419 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung757bff42012-10-15 19:10:29 +0000420 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000421 /*
Pavel Machekf33c9302014-09-05 12:49:48 +0200422 * If host->get_mmc_clk isn't defined,
Jaehoon Chung757bff42012-10-15 19:10:29 +0000423 * then assume that host->bus_hz is source clock value.
Pavel Machekf33c9302014-09-05 12:49:48 +0200424 * host->bus_hz should be set by user.
Jaehoon Chung757bff42012-10-15 19:10:29 +0000425 */
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900426 if (host->get_mmc_clk)
Simon Glasse3563f22015-08-30 16:55:15 -0600427 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000428 else if (host->bus_hz)
429 sclk = host->bus_hz;
430 else {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600431 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000432 return -EINVAL;
433 }
434
Chin Liang See6ace1532014-06-10 01:26:52 -0500435 if (sclk == freq)
436 div = 0; /* bypass mode */
437 else
438 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000439
440 dwmci_writel(host, DWMCI_CLKENA, 0);
441 dwmci_writel(host, DWMCI_CLKSRC, 0);
442
443 dwmci_writel(host, DWMCI_CLKDIV, div);
444 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
445 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
446
447 do {
448 status = dwmci_readl(host, DWMCI_CMD);
449 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600450 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000451 return -ETIMEDOUT;
452 }
453 } while (status & DWMCI_CMD_START);
454
455 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
456 DWMCI_CLKEN_LOW_PWR);
457
458 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
459 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
460
461 timeout = 10000;
462 do {
463 status = dwmci_readl(host, DWMCI_CMD);
464 if (timeout-- < 0) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600465 debug("%s: Timeout!\n", __func__);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000466 return -ETIMEDOUT;
467 }
468 } while (status & DWMCI_CMD_START);
469
470 host->clock = freq;
471
472 return 0;
473}
474
Simon Glasse7881d82017-07-29 11:35:31 -0600475#ifdef CONFIG_DM_MMC
Jaehoon Chung56283472016-06-28 15:52:21 +0900476static int dwmci_set_ios(struct udevice *dev)
Simon Glass691272f2016-06-12 23:30:23 -0600477{
478 struct mmc *mmc = mmc_get_mmc_dev(dev);
479#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900480static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung757bff42012-10-15 19:10:29 +0000481{
Simon Glass691272f2016-06-12 23:30:23 -0600482#endif
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900483 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
484 u32 ctype, regs;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000485
Pavel Machekf33c9302014-09-05 12:49:48 +0200486 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000487
488 dwmci_setup_bus(host, mmc->clock);
489 switch (mmc->bus_width) {
490 case 8:
491 ctype = DWMCI_CTYPE_8BIT;
492 break;
493 case 4:
494 ctype = DWMCI_CTYPE_4BIT;
495 break;
496 default:
497 ctype = DWMCI_CTYPE_1BIT;
498 break;
499 }
500
501 dwmci_writel(host, DWMCI_CTYPE, ctype);
502
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900503 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov2b8a9692014-12-01 06:59:12 -0600504 if (mmc->ddr_mode)
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900505 regs |= DWMCI_DDR_MODE;
506 else
Jaehoon Chungafc9e2b2015-01-14 17:37:53 +0900507 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chung045bdcd2014-05-16 13:59:55 +0900508
509 dwmci_writel(host, DWMCI_UHS_REG, regs);
510
Siew Chin Limd456dfb2020-12-24 18:21:03 +0800511 if (host->clksel) {
512 int ret;
513
514 ret = host->clksel(host);
515 if (ret)
516 return ret;
517 }
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900518
Urja Rannikko2b157012019-05-13 13:25:27 +0000519#if CONFIG_IS_ENABLED(DM_REGULATOR)
520 if (mmc->vqmmc_supply) {
521 int ret;
522
Jonas Karlman01b29172023-07-19 21:21:00 +0000523 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, false);
524 if (ret)
525 return ret;
526
Urja Rannikko2b157012019-05-13 13:25:27 +0000527 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
528 regulator_set_value(mmc->vqmmc_supply, 1800000);
529 else
530 regulator_set_value(mmc->vqmmc_supply, 3300000);
531
532 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, true);
533 if (ret)
534 return ret;
535 }
536#endif
537
Simon Glass691272f2016-06-12 23:30:23 -0600538 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000539}
540
541static int dwmci_init(struct mmc *mmc)
542{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200543 struct dwmci_host *host = mmc->priv;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000544
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900545 if (host->board_init)
546 host->board_init(host);
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530547
Jaehoon Chung757bff42012-10-15 19:10:29 +0000548 dwmci_writel(host, DWMCI_PWREN, 1);
549
550 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass1c87ffe2015-08-06 20:16:27 -0600551 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
552 return -EIO;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000553 }
554
Amar9c50e352013-04-27 11:42:54 +0530555 /* Enumerate at 400KHz */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200556 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar9c50e352013-04-27 11:42:54 +0530557
Jaehoon Chung757bff42012-10-15 19:10:29 +0000558 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
559 dwmci_writel(host, DWMCI_INTMASK, 0);
560
561 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
562
563 dwmci_writel(host, DWMCI_IDINTEN, 0);
564 dwmci_writel(host, DWMCI_BMOD, 1);
565
Simon Glass760177d2015-08-06 20:16:29 -0600566 if (!host->fifoth_val) {
567 uint32_t fifo_size;
568
569 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
570 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
571 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
572 TX_WMARK(fifo_size / 2);
Amar9c50e352013-04-27 11:42:54 +0530573 }
Simon Glass760177d2015-08-06 20:16:29 -0600574 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000575
576 dwmci_writel(host, DWMCI_CLKENA, 0);
577 dwmci_writel(host, DWMCI_CLKSRC, 0);
578
Ley Foon Tan79975992018-12-20 17:55:41 +0800579 if (!host->fifo_mode)
580 dwmci_writel(host, DWMCI_IDINTEN, DWMCI_IDINTEN_MASK);
581
Jaehoon Chung757bff42012-10-15 19:10:29 +0000582 return 0;
583}
584
Simon Glasse7881d82017-07-29 11:35:31 -0600585#ifdef CONFIG_DM_MMC
Simon Glass691272f2016-06-12 23:30:23 -0600586int dwmci_probe(struct udevice *dev)
587{
588 struct mmc *mmc = mmc_get_mmc_dev(dev);
589
590 return dwmci_init(mmc);
591}
592
593const struct dm_mmc_ops dm_dwmci_ops = {
594 .send_cmd = dwmci_send_cmd,
595 .set_ios = dwmci_set_ios,
596};
597
598#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200599static const struct mmc_ops dwmci_ops = {
600 .send_cmd = dwmci_send_cmd,
601 .set_ios = dwmci_set_ios,
602 .init = dwmci_init,
603};
Simon Glass691272f2016-06-12 23:30:23 -0600604#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200605
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900606void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
607 u32 max_clk, u32 min_clk)
Simon Glass5e6ff812016-05-14 14:03:07 -0600608{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900609 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600610#ifndef CONFIG_DM_MMC
Simon Glass5e6ff812016-05-14 14:03:07 -0600611 cfg->ops = &dwmci_ops;
Simon Glass691272f2016-06-12 23:30:23 -0600612#endif
Simon Glass5e6ff812016-05-14 14:03:07 -0600613 cfg->f_min = min_clk;
614 cfg->f_max = max_clk;
615
616 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
617
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900618 cfg->host_caps = host->caps;
Simon Glass5e6ff812016-05-14 14:03:07 -0600619
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900620 if (host->buswidth == 8) {
Simon Glass5e6ff812016-05-14 14:03:07 -0600621 cfg->host_caps |= MMC_MODE_8BIT;
622 cfg->host_caps &= ~MMC_MODE_4BIT;
623 } else {
624 cfg->host_caps |= MMC_MODE_4BIT;
625 cfg->host_caps &= ~MMC_MODE_8BIT;
626 }
627 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
628
629 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
630}
631
632#ifdef CONFIG_BLK
633int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
634{
635 return mmc_bind(dev, mmc, cfg);
636}
637#else
Jaehoon Chung757bff42012-10-15 19:10:29 +0000638int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
639{
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900640 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung757bff42012-10-15 19:10:29 +0000641
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200642 host->mmc = mmc_create(&host->cfg, host);
643 if (host->mmc == NULL)
644 return -1;
645
646 return 0;
Jaehoon Chung757bff42012-10-15 19:10:29 +0000647}
Simon Glass5e6ff812016-05-14 14:03:07 -0600648#endif