blob: 22f6c7eefdf0519b6ce9dfa5e17652080225167e [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>
Jaehoon Chung7cf73072012-10-15 19:10:29 +00009#include <common.h>
Simon Glass4c9b9482015-08-06 20:16:27 -060010#include <errno.h>
Jaehoon Chung7cf73072012-10-15 19:10:29 +000011#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060012#include <memalign.h>
Jaehoon Chung7cf73072012-10-15 19:10:29 +000013#include <mmc.h>
14#include <dwmmc.h>
Ley Foon Tanb98e8922018-12-20 17:55:41 +080015#include <wait_bit.h>
Urja Rannikko9932a012019-05-13 13:25:27 +000016#include <power/regulator.h>
Jaehoon Chung7cf73072012-10-15 19:10:29 +000017
18#define PAGE_SIZE 4096
19
20static int dwmci_wait_reset(struct dwmci_host *host, u32 value)
21{
22 unsigned long timeout = 1000;
23 u32 ctrl;
24
25 dwmci_writel(host, DWMCI_CTRL, value);
26
27 while (timeout--) {
28 ctrl = dwmci_readl(host, DWMCI_CTRL);
29 if (!(ctrl & DWMCI_RESET_ALL))
30 return 1;
31 }
32 return 0;
33}
34
35static void dwmci_set_idma_desc(struct dwmci_idmac *idmac,
36 u32 desc0, u32 desc1, u32 desc2)
37{
38 struct dwmci_idmac *desc = idmac;
39
40 desc->flags = desc0;
41 desc->cnt = desc1;
42 desc->addr = desc2;
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053043 desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac);
Jaehoon Chung7cf73072012-10-15 19:10:29 +000044}
45
46static void dwmci_prepare_data(struct dwmci_host *host,
Alexey Brodkin55bab5e2013-12-26 15:29:07 +040047 struct mmc_data *data,
48 struct dwmci_idmac *cur_idmac,
49 void *bounce_buffer)
Jaehoon Chung7cf73072012-10-15 19:10:29 +000050{
51 unsigned long ctrl;
52 unsigned int i = 0, flags, cnt, blk_cnt;
Alexey Brodkin55bab5e2013-12-26 15:29:07 +040053 ulong data_start, data_end;
Jaehoon Chung7cf73072012-10-15 19:10:29 +000054
55
56 blk_cnt = data->blocks;
57
58 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
59
Ley Foon Tanb98e8922018-12-20 17:55:41 +080060 /* Clear IDMAC interrupt */
61 dwmci_writel(host, DWMCI_IDSTS, 0xFFFFFFFF);
62
Jaehoon Chung7cf73072012-10-15 19:10:29 +000063 data_start = (ulong)cur_idmac;
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053064 dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac);
Jaehoon Chung7cf73072012-10-15 19:10:29 +000065
Jaehoon Chung7cf73072012-10-15 19:10:29 +000066 do {
67 flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ;
68 flags |= (i == 0) ? DWMCI_IDMAC_FS : 0;
69 if (blk_cnt <= 8) {
70 flags |= DWMCI_IDMAC_LD;
71 cnt = data->blocksize * blk_cnt;
72 } else
73 cnt = data->blocksize * 8;
74
75 dwmci_set_idma_desc(cur_idmac, flags, cnt,
Prabhakar Kushwahafdefb902015-10-25 13:18:25 +053076 (ulong)bounce_buffer + (i * PAGE_SIZE));
Jaehoon Chung7cf73072012-10-15 19:10:29 +000077
Marek Vasutb6da37b2019-02-13 20:16:20 +010078 cur_idmac++;
Mischa Jonkera7a60912013-07-26 16:18:40 +020079 if (blk_cnt <= 8)
Jaehoon Chung7cf73072012-10-15 19:10:29 +000080 break;
81 blk_cnt -= 8;
Jaehoon Chung7cf73072012-10-15 19:10:29 +000082 i++;
83 } while(1);
84
85 data_end = (ulong)cur_idmac;
Marek Vasutb6da37b2019-02-13 20:16:20 +010086 flush_dcache_range(data_start, roundup(data_end, ARCH_DMA_MINALIGN));
Jaehoon Chung7cf73072012-10-15 19:10:29 +000087
88 ctrl = dwmci_readl(host, DWMCI_CTRL);
89 ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN;
90 dwmci_writel(host, DWMCI_CTRL, ctrl);
91
92 ctrl = dwmci_readl(host, DWMCI_BMOD);
93 ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN;
94 dwmci_writel(host, DWMCI_BMOD, ctrl);
95
96 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
97 dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks);
98}
99
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200100static int dwmci_fifo_ready(struct dwmci_host *host, u32 bit, u32 *len)
101{
102 u32 timeout = 20000;
103
104 *len = dwmci_readl(host, DWMCI_STATUS);
105 while (--timeout && (*len & bit)) {
106 udelay(200);
107 *len = dwmci_readl(host, DWMCI_STATUS);
108 }
109
110 if (!timeout) {
111 debug("%s: FIFO underflow timeout\n", __func__);
112 return -ETIMEDOUT;
113 }
114
115 return 0;
116}
117
Marek Vasutffac5122019-03-23 03:32:24 +0100118static unsigned int dwmci_get_timeout(struct mmc *mmc, const unsigned int size)
119{
120 unsigned int timeout;
121
122 timeout = size * 8 * 1000; /* counting in bits and msec */
123 timeout *= 2; /* wait twice as long */
124 timeout /= mmc->clock;
125 timeout /= mmc->bus_width;
126 timeout /= mmc->ddr_mode ? 2 : 1;
127 timeout = (timeout < 1000) ? 1000 : timeout;
128
129 return timeout;
130}
131
huang lin50b73752015-11-17 14:20:22 +0800132static int dwmci_data_transfer(struct dwmci_host *host, struct mmc_data *data)
huang linf9836762015-11-17 14:20:21 +0800133{
Marek Vasutffac5122019-03-23 03:32:24 +0100134 struct mmc *mmc = host->mmc;
huang linf9836762015-11-17 14:20:21 +0800135 int ret = 0;
Marek Vasutffac5122019-03-23 03:32:24 +0100136 u32 timeout, mask, size, i, len = 0;
huang lin50b73752015-11-17 14:20:22 +0800137 u32 *buf = NULL;
huang linf9836762015-11-17 14:20:21 +0800138 ulong start = get_timer(0);
huang lin50b73752015-11-17 14:20:22 +0800139 u32 fifo_depth = (((host->fifoth_val & RX_WMARK_MASK) >>
140 RX_WMARK_SHIFT) + 1) * 2;
141
Marek Vasutffac5122019-03-23 03:32:24 +0100142 size = data->blocksize * data->blocks;
huang lin50b73752015-11-17 14:20:22 +0800143 if (data->flags == MMC_DATA_READ)
144 buf = (unsigned int *)data->dest;
145 else
146 buf = (unsigned int *)data->src;
huang linf9836762015-11-17 14:20:21 +0800147
Marek Vasutffac5122019-03-23 03:32:24 +0100148 timeout = dwmci_get_timeout(mmc, size);
149
150 size /= 4;
151
huang linf9836762015-11-17 14:20:21 +0800152 for (;;) {
153 mask = dwmci_readl(host, DWMCI_RINTSTS);
154 /* Error during data transfer. */
155 if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) {
156 debug("%s: DATA ERROR!\n", __func__);
157 ret = -EINVAL;
158 break;
159 }
160
huang lin50b73752015-11-17 14:20:22 +0800161 if (host->fifo_mode && size) {
Xu Ziyuan5b8bf122016-07-28 10:25:48 +0800162 len = 0;
Jacob Chen953d9752016-09-19 10:16:50 +0800163 if (data->flags == MMC_DATA_READ &&
164 (mask & DWMCI_INTMSK_RXDR)) {
165 while (size) {
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200166 ret = dwmci_fifo_ready(host,
167 DWMCI_FIFO_EMPTY,
168 &len);
169 if (ret < 0)
170 break;
171
huang lin50b73752015-11-17 14:20:22 +0800172 len = (len >> DWMCI_FIFO_SHIFT) &
173 DWMCI_FIFO_MASK;
Xu Ziyuan6577a2a2016-07-28 10:25:47 +0800174 len = min(size, len);
huang lin50b73752015-11-17 14:20:22 +0800175 for (i = 0; i < len; i++)
176 *buf++ =
177 dwmci_readl(host, DWMCI_DATA);
Jacob Chen953d9752016-09-19 10:16:50 +0800178 size = size > len ? (size - len) : 0;
huang lin50b73752015-11-17 14:20:22 +0800179 }
Jacob Chen953d9752016-09-19 10:16:50 +0800180 dwmci_writel(host, DWMCI_RINTSTS,
181 DWMCI_INTMSK_RXDR);
182 } else if (data->flags == MMC_DATA_WRITE &&
183 (mask & DWMCI_INTMSK_TXDR)) {
184 while (size) {
Heiko Stuebner46b7a4f2018-09-21 10:59:45 +0200185 ret = dwmci_fifo_ready(host,
186 DWMCI_FIFO_FULL,
187 &len);
188 if (ret < 0)
189 break;
190
huang lin50b73752015-11-17 14:20:22 +0800191 len = fifo_depth - ((len >>
192 DWMCI_FIFO_SHIFT) &
193 DWMCI_FIFO_MASK);
Xu Ziyuan6577a2a2016-07-28 10:25:47 +0800194 len = min(size, len);
huang lin50b73752015-11-17 14:20:22 +0800195 for (i = 0; i < len; i++)
196 dwmci_writel(host, DWMCI_DATA,
197 *buf++);
Jacob Chen953d9752016-09-19 10:16:50 +0800198 size = size > len ? (size - len) : 0;
huang lin50b73752015-11-17 14:20:22 +0800199 }
Jacob Chen953d9752016-09-19 10:16:50 +0800200 dwmci_writel(host, DWMCI_RINTSTS,
201 DWMCI_INTMSK_TXDR);
huang lin50b73752015-11-17 14:20:22 +0800202 }
huang lin50b73752015-11-17 14:20:22 +0800203 }
204
huang linf9836762015-11-17 14:20:21 +0800205 /* Data arrived correctly. */
206 if (mask & DWMCI_INTMSK_DTO) {
207 ret = 0;
208 break;
209 }
210
211 /* Check for timeout. */
212 if (get_timer(start) > timeout) {
213 debug("%s: Timeout waiting for data!\n",
214 __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900215 ret = -ETIMEDOUT;
huang linf9836762015-11-17 14:20:21 +0800216 break;
217 }
218 }
219
220 dwmci_writel(host, DWMCI_RINTSTS, mask);
221
222 return ret;
223}
224
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000225static int dwmci_set_transfer_mode(struct dwmci_host *host,
226 struct mmc_data *data)
227{
228 unsigned long mode;
229
230 mode = DWMCI_CMD_DATA_EXP;
231 if (data->flags & MMC_DATA_WRITE)
232 mode |= DWMCI_CMD_RW;
233
234 return mode;
235}
236
Simon Glasseba48f92017-07-29 11:35:31 -0600237#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900238static int dwmci_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
Simon Glassff5c1b72016-06-12 23:30:23 -0600239 struct mmc_data *data)
240{
241 struct mmc *mmc = mmc_get_mmc_dev(dev);
242#else
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000243static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
244 struct mmc_data *data)
245{
Simon Glassff5c1b72016-06-12 23:30:23 -0600246#endif
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200247 struct dwmci_host *host = mmc->priv;
Mischa Jonker7423bed2013-07-26 14:08:14 +0200248 ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac,
Mischa Jonkera7a60912013-07-26 16:18:40 +0200249 data ? DIV_ROUND_UP(data->blocks, 8) : 0);
Marek Vasut81e093f2015-07-27 22:39:38 +0200250 int ret = 0, flags = 0, i;
Xu Ziyuan34a10d32016-07-19 09:38:22 +0800251 unsigned int timeout = 500;
Alexander Graf61c2a662016-03-04 01:09:52 +0100252 u32 retry = 100000;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000253 u32 mask, ctrl;
Amar902664c2013-04-27 11:42:54 +0530254 ulong start = get_timer(0);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400255 struct bounce_buffer bbstate;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000256
257 while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
Amar902664c2013-04-27 11:42:54 +0530258 if (get_timer(start) > timeout) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600259 debug("%s: Timeout on data busy\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900260 return -ETIMEDOUT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000261 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000262 }
263
264 dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
265
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400266 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800267 if (host->fifo_mode) {
268 dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize);
269 dwmci_writel(host, DWMCI_BYTCNT,
270 data->blocksize * data->blocks);
271 dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400272 } else {
huang lin50b73752015-11-17 14:20:22 +0800273 if (data->flags == MMC_DATA_READ) {
Marek Vasut72d37b62019-03-23 18:45:27 +0100274 ret = bounce_buffer_start(&bbstate,
275 (void*)data->dest,
huang lin50b73752015-11-17 14:20:22 +0800276 data->blocksize *
277 data->blocks, GEN_BB_WRITE);
278 } else {
Marek Vasut72d37b62019-03-23 18:45:27 +0100279 ret = bounce_buffer_start(&bbstate,
280 (void*)data->src,
huang lin50b73752015-11-17 14:20:22 +0800281 data->blocksize *
282 data->blocks, GEN_BB_READ);
283 }
Marek Vasut72d37b62019-03-23 18:45:27 +0100284
285 if (ret)
286 return ret;
287
huang lin50b73752015-11-17 14:20:22 +0800288 dwmci_prepare_data(host, data, cur_idmac,
289 bbstate.bounce_buffer);
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400290 }
Alexey Brodkin55bab5e2013-12-26 15:29:07 +0400291 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000292
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000293 dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
294
295 if (data)
296 flags = dwmci_set_transfer_mode(host, data);
297
298 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
299 return -1;
300
301 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
302 flags |= DWMCI_CMD_ABORT_STOP;
303 else
304 flags |= DWMCI_CMD_PRV_DAT_WAIT;
305
306 if (cmd->resp_type & MMC_RSP_PRESENT) {
307 flags |= DWMCI_CMD_RESP_EXP;
308 if (cmd->resp_type & MMC_RSP_136)
309 flags |= DWMCI_CMD_RESP_LENGTH;
310 }
311
312 if (cmd->resp_type & MMC_RSP_CRC)
313 flags |= DWMCI_CMD_CHECK_CRC;
314
315 flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG);
316
317 debug("Sending CMD%d\n",cmd->cmdidx);
318
319 dwmci_writel(host, DWMCI_CMD, flags);
320
321 for (i = 0; i < retry; i++) {
322 mask = dwmci_readl(host, DWMCI_RINTSTS);
323 if (mask & DWMCI_INTMSK_CDONE) {
324 if (!data)
325 dwmci_writel(host, DWMCI_RINTSTS, mask);
326 break;
327 }
328 }
329
Pavel Macheka425f5d2014-09-05 12:49:48 +0200330 if (i == retry) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600331 debug("%s: Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900332 return -ETIMEDOUT;
Pavel Macheka425f5d2014-09-05 12:49:48 +0200333 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000334
335 if (mask & DWMCI_INTMSK_RTO) {
Pavel Macheka425f5d2014-09-05 12:49:48 +0200336 /*
337 * Timeout here is not necessarily fatal. (e)MMC cards
338 * will splat here when they receive CMD55 as they do
339 * not support this command and that is exactly the way
340 * to tell them apart from SD cards. Thus, this output
341 * below shall be debug(). eMMC cards also do not favor
342 * CMD8, please keep that in mind.
343 */
344 debug("%s: Response Timeout.\n", __func__);
Jaehoon Chung7825d202016-07-19 16:33:36 +0900345 return -ETIMEDOUT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000346 } else if (mask & DWMCI_INTMSK_RE) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600347 debug("%s: Response Error.\n", __func__);
348 return -EIO;
Marek Vasuta6d91992018-11-06 23:42:11 +0100349 } else if ((cmd->resp_type & MMC_RSP_CRC) &&
350 (mask & DWMCI_INTMSK_RCRC)) {
351 debug("%s: Response CRC Error.\n", __func__);
352 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000353 }
354
355
356 if (cmd->resp_type & MMC_RSP_PRESENT) {
357 if (cmd->resp_type & MMC_RSP_136) {
358 cmd->response[0] = dwmci_readl(host, DWMCI_RESP3);
359 cmd->response[1] = dwmci_readl(host, DWMCI_RESP2);
360 cmd->response[2] = dwmci_readl(host, DWMCI_RESP1);
361 cmd->response[3] = dwmci_readl(host, DWMCI_RESP0);
362 } else {
363 cmd->response[0] = dwmci_readl(host, DWMCI_RESP0);
364 }
365 }
366
367 if (data) {
huang lin50b73752015-11-17 14:20:22 +0800368 ret = dwmci_data_transfer(host, data);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000369
huang lin50b73752015-11-17 14:20:22 +0800370 /* only dma mode need it */
371 if (!host->fifo_mode) {
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800372 if (data->flags == MMC_DATA_READ)
373 mask = DWMCI_IDINTEN_RI;
374 else
375 mask = DWMCI_IDINTEN_TI;
376 ret = wait_for_bit_le32(host->ioaddr + DWMCI_IDSTS,
377 mask, true, 1000, false);
378 if (ret)
379 debug("%s: DWMCI_IDINTEN mask 0x%x timeout.\n",
380 __func__, mask);
381 /* clear interrupts */
382 dwmci_writel(host, DWMCI_IDSTS, DWMCI_IDINTEN_MASK);
383
huang lin50b73752015-11-17 14:20:22 +0800384 ctrl = dwmci_readl(host, DWMCI_CTRL);
385 ctrl &= ~(DWMCI_DMA_EN);
386 dwmci_writel(host, DWMCI_CTRL, ctrl);
387 bounce_buffer_stop(&bbstate);
388 }
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000389 }
390
391 udelay(100);
392
Marek Vasut81e093f2015-07-27 22:39:38 +0200393 return ret;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000394}
395
396static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
397{
398 u32 div, status;
399 int timeout = 10000;
400 unsigned long sclk;
401
Amar902664c2013-04-27 11:42:54 +0530402 if ((freq == host->clock) || (freq == 0))
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000403 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000404 /*
Pavel Macheka425f5d2014-09-05 12:49:48 +0200405 * If host->get_mmc_clk isn't defined,
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000406 * then assume that host->bus_hz is source clock value.
Pavel Macheka425f5d2014-09-05 12:49:48 +0200407 * host->bus_hz should be set by user.
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000408 */
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900409 if (host->get_mmc_clk)
Simon Glasseff76682015-08-30 16:55:15 -0600410 sclk = host->get_mmc_clk(host, freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000411 else if (host->bus_hz)
412 sclk = host->bus_hz;
413 else {
Simon Glass4c9b9482015-08-06 20:16:27 -0600414 debug("%s: Didn't get source clock value.\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000415 return -EINVAL;
416 }
417
Chin Liang See4cfff952014-06-10 01:26:52 -0500418 if (sclk == freq)
419 div = 0; /* bypass mode */
420 else
421 div = DIV_ROUND_UP(sclk, 2 * freq);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000422
423 dwmci_writel(host, DWMCI_CLKENA, 0);
424 dwmci_writel(host, DWMCI_CLKSRC, 0);
425
426 dwmci_writel(host, DWMCI_CLKDIV, div);
427 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
428 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
429
430 do {
431 status = dwmci_readl(host, DWMCI_CMD);
432 if (timeout-- < 0) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600433 debug("%s: Timeout!\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000434 return -ETIMEDOUT;
435 }
436 } while (status & DWMCI_CMD_START);
437
438 dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE |
439 DWMCI_CLKEN_LOW_PWR);
440
441 dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT |
442 DWMCI_CMD_UPD_CLK | DWMCI_CMD_START);
443
444 timeout = 10000;
445 do {
446 status = dwmci_readl(host, DWMCI_CMD);
447 if (timeout-- < 0) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600448 debug("%s: Timeout!\n", __func__);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000449 return -ETIMEDOUT;
450 }
451 } while (status & DWMCI_CMD_START);
452
453 host->clock = freq;
454
455 return 0;
456}
457
Simon Glasseba48f92017-07-29 11:35:31 -0600458#ifdef CONFIG_DM_MMC
Jaehoon Chungad220ac2016-06-28 15:52:21 +0900459static int dwmci_set_ios(struct udevice *dev)
Simon Glassff5c1b72016-06-12 23:30:23 -0600460{
461 struct mmc *mmc = mmc_get_mmc_dev(dev);
462#else
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900463static int dwmci_set_ios(struct mmc *mmc)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000464{
Simon Glassff5c1b72016-06-12 23:30:23 -0600465#endif
Jaehoon Chunge8672942014-05-16 13:59:55 +0900466 struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
467 u32 ctype, regs;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000468
Pavel Macheka425f5d2014-09-05 12:49:48 +0200469 debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000470
471 dwmci_setup_bus(host, mmc->clock);
472 switch (mmc->bus_width) {
473 case 8:
474 ctype = DWMCI_CTYPE_8BIT;
475 break;
476 case 4:
477 ctype = DWMCI_CTYPE_4BIT;
478 break;
479 default:
480 ctype = DWMCI_CTYPE_1BIT;
481 break;
482 }
483
484 dwmci_writel(host, DWMCI_CTYPE, ctype);
485
Jaehoon Chunge8672942014-05-16 13:59:55 +0900486 regs = dwmci_readl(host, DWMCI_UHS_REG);
Andrew Gabbasov54c0e222014-12-01 06:59:12 -0600487 if (mmc->ddr_mode)
Jaehoon Chunge8672942014-05-16 13:59:55 +0900488 regs |= DWMCI_DDR_MODE;
489 else
Jaehoon Chung401fc502015-01-14 17:37:53 +0900490 regs &= ~DWMCI_DDR_MODE;
Jaehoon Chunge8672942014-05-16 13:59:55 +0900491
492 dwmci_writel(host, DWMCI_UHS_REG, regs);
493
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000494 if (host->clksel)
495 host->clksel(host);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900496
Urja Rannikko9932a012019-05-13 13:25:27 +0000497#if CONFIG_IS_ENABLED(DM_REGULATOR)
498 if (mmc->vqmmc_supply) {
499 int ret;
500
501 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
502 regulator_set_value(mmc->vqmmc_supply, 1800000);
503 else
504 regulator_set_value(mmc->vqmmc_supply, 3300000);
505
506 ret = regulator_set_enable_if_allowed(mmc->vqmmc_supply, true);
507 if (ret)
508 return ret;
509 }
510#endif
511
Simon Glassff5c1b72016-06-12 23:30:23 -0600512 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000513}
514
515static int dwmci_init(struct mmc *mmc)
516{
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200517 struct dwmci_host *host = mmc->priv;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000518
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900519 if (host->board_init)
520 host->board_init(host);
Rajeshwari Shinde70163092013-10-29 12:53:13 +0530521
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000522 dwmci_writel(host, DWMCI_PWREN, 1);
523
524 if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) {
Simon Glass4c9b9482015-08-06 20:16:27 -0600525 debug("%s[%d] Fail-reset!!\n", __func__, __LINE__);
526 return -EIO;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000527 }
528
Amar902664c2013-04-27 11:42:54 +0530529 /* Enumerate at 400KHz */
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200530 dwmci_setup_bus(host, mmc->cfg->f_min);
Amar902664c2013-04-27 11:42:54 +0530531
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000532 dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
533 dwmci_writel(host, DWMCI_INTMASK, 0);
534
535 dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF);
536
537 dwmci_writel(host, DWMCI_IDINTEN, 0);
538 dwmci_writel(host, DWMCI_BMOD, 1);
539
Simon Glass6133efa2015-08-06 20:16:29 -0600540 if (!host->fifoth_val) {
541 uint32_t fifo_size;
542
543 fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
544 fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
545 host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
546 TX_WMARK(fifo_size / 2);
Amar902664c2013-04-27 11:42:54 +0530547 }
Simon Glass6133efa2015-08-06 20:16:29 -0600548 dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000549
550 dwmci_writel(host, DWMCI_CLKENA, 0);
551 dwmci_writel(host, DWMCI_CLKSRC, 0);
552
Ley Foon Tanb98e8922018-12-20 17:55:41 +0800553 if (!host->fifo_mode)
554 dwmci_writel(host, DWMCI_IDINTEN, DWMCI_IDINTEN_MASK);
555
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000556 return 0;
557}
558
Simon Glasseba48f92017-07-29 11:35:31 -0600559#ifdef CONFIG_DM_MMC
Simon Glassff5c1b72016-06-12 23:30:23 -0600560int dwmci_probe(struct udevice *dev)
561{
562 struct mmc *mmc = mmc_get_mmc_dev(dev);
563
564 return dwmci_init(mmc);
565}
566
567const struct dm_mmc_ops dm_dwmci_ops = {
568 .send_cmd = dwmci_send_cmd,
569 .set_ios = dwmci_set_ios,
570};
571
572#else
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200573static const struct mmc_ops dwmci_ops = {
574 .send_cmd = dwmci_send_cmd,
575 .set_ios = dwmci_set_ios,
576 .init = dwmci_init,
577};
Simon Glassff5c1b72016-06-12 23:30:23 -0600578#endif
Pantelis Antoniouc9e75912014-02-26 19:28:45 +0200579
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900580void dwmci_setup_cfg(struct mmc_config *cfg, struct dwmci_host *host,
581 u32 max_clk, u32 min_clk)
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000582{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900583 cfg->name = host->name;
Simon Glasseba48f92017-07-29 11:35:31 -0600584#ifndef CONFIG_DM_MMC
Simon Glass82682542016-05-14 14:03:07 -0600585 cfg->ops = &dwmci_ops;
Simon Glassff5c1b72016-06-12 23:30:23 -0600586#endif
Simon Glass82682542016-05-14 14:03:07 -0600587 cfg->f_min = min_clk;
588 cfg->f_max = max_clk;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000589
Simon Glass82682542016-05-14 14:03:07 -0600590 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000591
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900592 cfg->host_caps = host->caps;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000593
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900594 if (host->buswidth == 8) {
Simon Glass82682542016-05-14 14:03:07 -0600595 cfg->host_caps |= MMC_MODE_8BIT;
596 cfg->host_caps &= ~MMC_MODE_4BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000597 } else {
Simon Glass82682542016-05-14 14:03:07 -0600598 cfg->host_caps |= MMC_MODE_4BIT;
599 cfg->host_caps &= ~MMC_MODE_8BIT;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000600 }
Simon Glass82682542016-05-14 14:03:07 -0600601 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
602
603 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
604}
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200605
Simon Glass82682542016-05-14 14:03:07 -0600606#ifdef CONFIG_BLK
607int dwmci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
608{
609 return mmc_bind(dev, mmc, cfg);
610}
611#else
612int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk)
613{
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900614 dwmci_setup_cfg(&host->cfg, host, max_clk, min_clk);
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000615
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200616 host->mmc = mmc_create(&host->cfg, host);
617 if (host->mmc == NULL)
618 return -1;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000619
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200620 return 0;
Jaehoon Chung7cf73072012-10-15 19:10:29 +0000621}
Simon Glass82682542016-05-14 14:03:07 -0600622#endif