blob: c82af1e16ecf22153829243aa28f762df6ffd149 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Lei Wenaf62a552011-06-28 21:50:06 +00002/*
3 * Copyright 2011, Marvell Semiconductor Inc.
4 * Lei Wen <leiwen@marvell.com>
5 *
Lei Wenaf62a552011-06-28 21:50:06 +00006 * Back ported to the 8xx platform (from the 8260 platform) by
7 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
8 */
9
10#include <common.h>
Simon Glass2a809092016-06-12 23:30:27 -060011#include <errno.h>
Lei Wenaf62a552011-06-28 21:50:06 +000012#include <malloc.h>
13#include <mmc.h>
14#include <sdhci.h>
15
Stefan Roese492d3222015-06-29 14:58:09 +020016#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
17void *aligned_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
18#else
Lei Wenaf62a552011-06-28 21:50:06 +000019void *aligned_buffer;
Stefan Roese492d3222015-06-29 14:58:09 +020020#endif
Lei Wenaf62a552011-06-28 21:50:06 +000021
22static void sdhci_reset(struct sdhci_host *host, u8 mask)
23{
24 unsigned long timeout;
25
26 /* Wait max 100 ms */
27 timeout = 100;
28 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
29 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
30 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080031 printf("%s: Reset 0x%x never completed.\n",
32 __func__, (int)mask);
Lei Wenaf62a552011-06-28 21:50:06 +000033 return;
34 }
35 timeout--;
36 udelay(1000);
37 }
38}
39
40static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
41{
42 int i;
43 if (cmd->resp_type & MMC_RSP_136) {
44 /* CRC is stripped so we need to do some shifting. */
45 for (i = 0; i < 4; i++) {
46 cmd->response[i] = sdhci_readl(host,
47 SDHCI_RESPONSE + (3-i)*4) << 8;
48 if (i != 3)
49 cmd->response[i] |= sdhci_readb(host,
50 SDHCI_RESPONSE + (3-i)*4-1);
51 }
52 } else {
53 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
54 }
55}
56
57static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
58{
59 int i;
60 char *offs;
61 for (i = 0; i < data->blocksize; i += 4) {
62 offs = data->dest + i;
63 if (data->flags == MMC_DATA_READ)
64 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
65 else
66 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
67 }
68}
Masahiro Yamada45a68fe2016-12-07 22:10:29 +090069#ifdef CONFIG_MMC_SDHCI_SDMA
Faiz Abbas6d6af202019-04-16 23:06:57 +053070static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
71 int *is_aligned, int trans_bytes)
72{
Jaehoon Chung804c7f42012-09-20 20:31:55 +000073 unsigned char ctrl;
Faiz Abbas6d6af202019-04-16 23:06:57 +053074
75 if (data->flags == MMC_DATA_READ)
76 host->start_addr = (dma_addr_t)data->dest;
77 else
78 host->start_addr = (dma_addr_t)data->src;
79
80 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
81 (host->start_addr & 0x7) != 0x0) {
82 *is_aligned = 0;
83 host->start_addr = (unsigned long)aligned_buffer;
84 if (data->flags != MMC_DATA_READ)
85 memcpy(aligned_buffer, data->src, trans_bytes);
86 }
87
Juhyun \(Justin\) Oh2c011842013-09-13 18:06:00 +000088 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chung804c7f42012-09-20 20:31:55 +000089 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Juhyun \(Justin\) Oh2c011842013-09-13 18:06:00 +000090 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Faiz Abbas6d6af202019-04-16 23:06:57 +053091
92#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
93 /*
94 * Always use this bounce-buffer when
95 * CONFIG_FIXED_SDHCI_ALIGNED_BUFFER is defined
96 */
97 *is_aligned = 0;
98 host->start_addr = (unsigned long)aligned_buffer;
99 if (data->flags != MMC_DATA_READ)
100 memcpy(aligned_buffer, data->src, trans_bytes);
Jaehoon Chung804c7f42012-09-20 20:31:55 +0000101#endif
Faiz Abbas6d6af202019-04-16 23:06:57 +0530102 sdhci_writel(host, host->start_addr, SDHCI_DMA_ADDRESS);
103 flush_cache(host->start_addr, ROUND(trans_bytes, ARCH_DMA_MINALIGN));
104}
105#else
106static void sdhci_prepare_dma(struct sdhci_host *host, struct mmc_data *data,
107 int *is_aligned, int trans_bytes)
108{}
109#endif
110static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data)
111{
112 dma_addr_t start_addr = host->start_addr;
113 unsigned int stat, rdy, mask, timeout, block = 0;
114 bool transfer_done = false;
Lei Wenaf62a552011-06-28 21:50:06 +0000115
Jaehoon Chung5d48e422012-09-20 20:31:54 +0000116 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +0000117 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
118 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
119 do {
120 stat = sdhci_readl(host, SDHCI_INT_STATUS);
121 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada61f2e5e2017-12-30 02:00:12 +0900122 pr_debug("%s: Error detected in status(0x%X)!\n",
123 __func__, stat);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900124 return -EIO;
Lei Wenaf62a552011-06-28 21:50:06 +0000125 }
Alex Deymo7dde50d2017-04-02 01:24:34 -0700126 if (!transfer_done && (stat & rdy)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000127 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
128 continue;
129 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
130 sdhci_transfer_pio(host, data);
131 data->dest += data->blocksize;
Alex Deymo7dde50d2017-04-02 01:24:34 -0700132 if (++block >= data->blocks) {
133 /* Keep looping until the SDHCI_INT_DATA_END is
134 * cleared, even if we finished sending all the
135 * blocks.
136 */
137 transfer_done = true;
138 continue;
139 }
Lei Wenaf62a552011-06-28 21:50:06 +0000140 }
Faiz Abbas6d6af202019-04-16 23:06:57 +0530141 if ((host->flags & USE_SDMA) && !transfer_done &&
142 (stat & SDHCI_INT_DMA_END)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000143 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Lei Wen3e81c772011-10-08 04:14:58 +0000144 start_addr &= ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
Lei Wenaf62a552011-06-28 21:50:06 +0000145 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
146 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
147 }
Lei Wena004abd2011-10-08 04:14:57 +0000148 if (timeout-- > 0)
149 udelay(10);
150 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800151 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900152 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000153 }
Lei Wenaf62a552011-06-28 21:50:06 +0000154 } while (!(stat & SDHCI_INT_DATA_END));
155 return 0;
156}
157
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200158/*
159 * No command will be sent by driver if card is busy, so driver must wait
160 * for card ready state.
161 * Every time when card is busy after timeout then (last) timeout value will be
162 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900163 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200164 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900165#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900166#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700167#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200168
Simon Glasse7881d82017-07-29 11:35:31 -0600169#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600170static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
171 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000172{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600173 struct mmc *mmc = mmc_get_mmc_dev(dev);
174
175#else
176static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
177 struct mmc_data *data)
178{
179#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200180 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000181 unsigned int stat = 0;
182 int ret = 0;
183 int trans_bytes = 0, is_aligned = 1;
184 u32 mask, flags, mode;
Faiz Abbas6d6af202019-04-16 23:06:57 +0530185 unsigned int time = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600186 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumar36332b62018-05-03 12:20:54 +0530187 ulong start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000188
Faiz Abbas6d6af202019-04-16 23:06:57 +0530189 host->start_addr = 0;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200190 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900191 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000192
Lei Wenaf62a552011-06-28 21:50:06 +0000193 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
194
195 /* We shouldn't wait for data inihibit for stop commands, even
196 though they might use busy signaling */
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530197 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530198 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
199 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wenaf62a552011-06-28 21:50:06 +0000200 mask &= ~SDHCI_DATA_INHIBIT;
201
202 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200203 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800204 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900205 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200206 cmd_timeout += cmd_timeout;
207 printf("timeout increasing to: %u ms.\n",
208 cmd_timeout);
209 } else {
210 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900211 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200212 }
Lei Wenaf62a552011-06-28 21:50:06 +0000213 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200214 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000215 udelay(1000);
216 }
217
Jorge Ramirez-Ortiz713e6812017-11-02 15:10:21 +0100218 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
219
Lei Wenaf62a552011-06-28 21:50:06 +0000220 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530221 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
222 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530223 mask = SDHCI_INT_DATA_AVAIL;
224
Lei Wenaf62a552011-06-28 21:50:06 +0000225 if (!(cmd->resp_type & MMC_RSP_PRESENT))
226 flags = SDHCI_CMD_RESP_NONE;
227 else if (cmd->resp_type & MMC_RSP_136)
228 flags = SDHCI_CMD_RESP_LONG;
229 else if (cmd->resp_type & MMC_RSP_BUSY) {
230 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900231 if (data)
232 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000233 } else
234 flags = SDHCI_CMD_RESP_SHORT;
235
236 if (cmd->resp_type & MMC_RSP_CRC)
237 flags |= SDHCI_CMD_CRC;
238 if (cmd->resp_type & MMC_RSP_OPCODE)
239 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu434f9d42018-05-29 20:03:10 +0530240 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
241 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wenaf62a552011-06-28 21:50:06 +0000242 flags |= SDHCI_CMD_DATA;
243
Darwin Rambo30e6d972013-12-19 15:13:25 -0800244 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100245 if (data) {
Lei Wenaf62a552011-06-28 21:50:06 +0000246 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
247 mode = SDHCI_TRNS_BLK_CNT_EN;
248 trans_bytes = data->blocks * data->blocksize;
249 if (data->blocks > 1)
250 mode |= SDHCI_TRNS_MULTI;
251
252 if (data->flags == MMC_DATA_READ)
253 mode |= SDHCI_TRNS_READ;
254
Faiz Abbas6d6af202019-04-16 23:06:57 +0530255 if (host->flags & USE_SDMA) {
256 mode |= SDHCI_TRNS_DMA;
257 sdhci_prepare_dma(host, data, &is_aligned, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000258 }
259
Lei Wenaf62a552011-06-28 21:50:06 +0000260 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
261 data->blocksize),
262 SDHCI_BLOCK_SIZE);
263 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
264 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500265 } else if (cmd->resp_type & MMC_RSP_BUSY) {
266 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000267 }
268
269 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Lei Wenaf62a552011-06-28 21:50:06 +0000270 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200271 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000272 do {
273 stat = sdhci_readl(host, SDHCI_INT_STATUS);
274 if (stat & SDHCI_INT_ERROR)
275 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000276
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900277 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
278 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
279 return 0;
280 } else {
281 printf("%s: Timeout for status update!\n",
282 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900283 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900284 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000285 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900286 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000287
Lei Wenaf62a552011-06-28 21:50:06 +0000288 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
289 sdhci_cmd_done(host, cmd);
290 sdhci_writel(host, mask, SDHCI_INT_STATUS);
291 } else
292 ret = -1;
293
294 if (!ret && data)
Faiz Abbas6d6af202019-04-16 23:06:57 +0530295 ret = sdhci_transfer_data(host, data);
Lei Wenaf62a552011-06-28 21:50:06 +0000296
Tushar Behera13243f22012-09-20 20:31:57 +0000297 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
298 udelay(1000);
299
Lei Wenaf62a552011-06-28 21:50:06 +0000300 stat = sdhci_readl(host, SDHCI_INT_STATUS);
301 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
302 if (!ret) {
303 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
304 !is_aligned && (data->flags == MMC_DATA_READ))
305 memcpy(data->dest, aligned_buffer, trans_bytes);
306 return 0;
307 }
308
309 sdhci_reset(host, SDHCI_RESET_CMD);
310 sdhci_reset(host, SDHCI_RESET_DATA);
311 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900312 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000313 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900314 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000315}
316
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530317#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
318static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
319{
320 int err;
321 struct mmc *mmc = mmc_get_mmc_dev(dev);
322 struct sdhci_host *host = mmc->priv;
323
324 debug("%s\n", __func__);
325
Ramon Friedb70fe962018-05-14 15:02:30 +0300326 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530327 err = host->ops->platform_execute_tuning(mmc, opcode);
328 if (err)
329 return err;
330 return 0;
331 }
332 return 0;
333}
334#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000335static int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
336{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200337 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100338 unsigned int div, clk = 0, timeout;
Lei Wenaf62a552011-06-28 21:50:06 +0000339
Wenyou Yang79667b72015-09-22 14:59:25 +0800340 /* Wait max 20 ms */
341 timeout = 200;
342 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
343 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
344 if (timeout == 0) {
345 printf("%s: Timeout to wait cmd & data inhibit\n",
346 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900347 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800348 }
349
350 timeout--;
351 udelay(100);
352 }
353
Stefan Roese899fb9e2016-12-12 08:34:42 +0100354 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000355
356 if (clock == 0)
357 return 0;
358
Ramon Friedb70fe962018-05-14 15:02:30 +0300359 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530360 host->ops->set_delay(host);
361
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900362 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800363 /*
364 * Check if the Host Controller supports Programmable Clock
365 * Mode.
366 */
367 if (host->clk_mul) {
368 for (div = 1; div <= 1024; div++) {
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800369 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000370 break;
371 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800372
373 /*
374 * Set Programmable Clock Mode in the Clock
375 * Control register.
376 */
377 clk = SDHCI_PROG_CLOCK_MODE;
378 div--;
379 } else {
380 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100381 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800382 div = 1;
383 } else {
384 for (div = 2;
385 div < SDHCI_MAX_DIV_SPEC_300;
386 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100387 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800388 break;
389 }
390 }
391 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000392 }
393 } else {
394 /* Version 2.00 divisors must be a power of 2. */
395 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100396 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000397 break;
398 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800399 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000400 }
Lei Wenaf62a552011-06-28 21:50:06 +0000401
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900402 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900403 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000404
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800405 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000406 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
407 << SDHCI_DIVIDER_HI_SHIFT;
408 clk |= SDHCI_CLOCK_INT_EN;
409 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
410
411 /* Wait max 20 ms */
412 timeout = 20;
413 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
414 & SDHCI_CLOCK_INT_STABLE)) {
415 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800416 printf("%s: Internal clock never stabilised.\n",
417 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900418 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000419 }
420 timeout--;
421 udelay(1000);
422 }
423
424 clk |= SDHCI_CLOCK_CARD_EN;
425 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
426 return 0;
427}
428
429static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
430{
431 u8 pwr = 0;
432
433 if (power != (unsigned short)-1) {
434 switch (1 << power) {
435 case MMC_VDD_165_195:
436 pwr = SDHCI_POWER_180;
437 break;
438 case MMC_VDD_29_30:
439 case MMC_VDD_30_31:
440 pwr = SDHCI_POWER_300;
441 break;
442 case MMC_VDD_32_33:
443 case MMC_VDD_33_34:
444 pwr = SDHCI_POWER_330;
445 break;
446 }
447 }
448
449 if (pwr == 0) {
450 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
451 return;
452 }
453
454 pwr |= SDHCI_POWER_ON;
455
456 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
457}
458
Simon Glasse7881d82017-07-29 11:35:31 -0600459#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600460static int sdhci_set_ios(struct udevice *dev)
461{
462 struct mmc *mmc = mmc_get_mmc_dev(dev);
463#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900464static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000465{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600466#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000467 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200468 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000469
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900470 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900471 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000472
Lei Wenaf62a552011-06-28 21:50:06 +0000473 if (mmc->clock != host->clock)
474 sdhci_set_clock(mmc, mmc->clock);
475
Siva Durga Prasad Paladugu2a2d7ef2018-04-19 12:37:04 +0530476 if (mmc->clk_disable)
477 sdhci_set_clock(mmc, 0);
478
Lei Wenaf62a552011-06-28 21:50:06 +0000479 /* Set bus width */
480 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
481 if (mmc->bus_width == 8) {
482 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900483 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
484 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000485 ctrl |= SDHCI_CTRL_8BITBUS;
486 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700487 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
488 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000489 ctrl &= ~SDHCI_CTRL_8BITBUS;
490 if (mmc->bus_width == 4)
491 ctrl |= SDHCI_CTRL_4BITBUS;
492 else
493 ctrl &= ~SDHCI_CTRL_4BITBUS;
494 }
495
496 if (mmc->clock > 26000000)
497 ctrl |= SDHCI_CTRL_HISPD;
498 else
499 ctrl &= ~SDHCI_CTRL_HISPD;
500
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100501 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
502 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE))
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000503 ctrl &= ~SDHCI_CTRL_HISPD;
504
Lei Wenaf62a552011-06-28 21:50:06 +0000505 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900506
Stefan Roese210841c2016-12-12 08:24:56 +0100507 /* If available, call the driver specific "post" set_ios() function */
508 if (host->ops && host->ops->set_ios_post)
509 host->ops->set_ios_post(host);
510
Simon Glassef1e4ed2016-06-12 23:30:28 -0600511 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000512}
513
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200514static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000515{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200516 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000517
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900518 sdhci_reset(host, SDHCI_RESET_ALL);
519
Lei Wenaf62a552011-06-28 21:50:06 +0000520 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && !aligned_buffer) {
521 aligned_buffer = memalign(8, 512*1024);
522 if (!aligned_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800523 printf("%s: Aligned buffer alloc failed!!!\n",
524 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900525 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000526 }
527 }
528
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200529 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000530
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900531 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900532 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000533
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000534 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800535 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
536 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000537 /* Mask all sdhci interrupt sources */
538 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000539
Lei Wenaf62a552011-06-28 21:50:06 +0000540 return 0;
541}
542
Simon Glasse7881d82017-07-29 11:35:31 -0600543#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600544int sdhci_probe(struct udevice *dev)
545{
546 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200547
Simon Glassef1e4ed2016-06-12 23:30:28 -0600548 return sdhci_init(mmc);
549}
550
551const struct dm_mmc_ops sdhci_ops = {
552 .send_cmd = sdhci_send_command,
553 .set_ios = sdhci_set_ios,
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530554#ifdef MMC_SUPPORTS_TUNING
555 .execute_tuning = sdhci_execute_tuning,
556#endif
Simon Glassef1e4ed2016-06-12 23:30:28 -0600557};
558#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200559static const struct mmc_ops sdhci_ops = {
560 .send_cmd = sdhci_send_command,
561 .set_ios = sdhci_set_ios,
562 .init = sdhci_init,
563};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600564#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200565
Jaehoon Chung14bed522016-07-26 19:06:24 +0900566int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100567 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600568{
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530569 u32 caps, caps_1 = 0;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900570
571 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900572
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900573#ifdef CONFIG_MMC_SDHCI_SDMA
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900574 if (!(caps & SDHCI_CAN_DO_SDMA)) {
575 printf("%s: Your controller doesn't support SDMA!!\n",
576 __func__);
577 return -EINVAL;
578 }
Faiz Abbas6d6af202019-04-16 23:06:57 +0530579
580 host->flags |= USE_SDMA;
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900581#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900582 if (host->quirks & SDHCI_QUIRK_REG32_RW)
583 host->version =
584 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
585 else
586 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900587
588 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600589#ifndef CONFIG_DM_MMC
Simon Glass2a809092016-06-12 23:30:27 -0600590 cfg->ops = &sdhci_ops;
591#endif
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800592
593 /* Check whether the clock multiplier is supported or not */
594 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
595 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
596 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
597 SDHCI_CLOCK_MUL_SHIFT;
598 }
599
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100600 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900601 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100602 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600603 SDHCI_CLOCK_BASE_SHIFT;
604 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100605 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600606 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100607 host->max_clk *= 1000000;
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800608 if (host->clk_mul)
609 host->max_clk *= host->clk_mul;
Simon Glass2a809092016-06-12 23:30:27 -0600610 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100611 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900612 printf("%s: Hardware doesn't specify base clock frequency\n",
613 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600614 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900615 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100616 if (f_max && (f_max < host->max_clk))
617 cfg->f_max = f_max;
618 else
619 cfg->f_max = host->max_clk;
620 if (f_min)
621 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600622 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900623 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600624 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
625 else
626 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
627 }
628 cfg->voltages = 0;
629 if (caps & SDHCI_CAN_VDD_330)
630 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
631 if (caps & SDHCI_CAN_VDD_300)
632 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
633 if (caps & SDHCI_CAN_VDD_180)
634 cfg->voltages |= MMC_VDD_165_195;
635
Masahiro Yamada3137e642016-08-25 16:07:36 +0900636 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
637 cfg->voltages |= host->voltages;
638
Masahiro Yamadabe165fb2017-12-30 02:00:08 +0900639 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900640
641 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900642 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900643 if (!(caps & SDHCI_CAN_DO_8BIT))
644 cfg->host_caps &= ~MMC_MODE_8BIT;
Simon Glass2a809092016-06-12 23:30:27 -0600645 }
646
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100647 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
648 cfg->host_caps &= ~MMC_MODE_HS;
649 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
650 }
651
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530652 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
653 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
654
655 if (!(cfg->voltages & MMC_VDD_165_195) ||
656 (host->quirks & SDHCI_QUIRK_NO_1_8_V))
657 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
658 SDHCI_SUPPORT_DDR50);
659
660 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
661 SDHCI_SUPPORT_DDR50))
662 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
663
664 if (caps_1 & SDHCI_SUPPORT_SDR104) {
665 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
666 /*
667 * SD3.0: SDR104 is supported so (for eMMC) the caps2
668 * field can be promoted to support HS200.
669 */
670 cfg->host_caps |= MMC_CAP(MMC_HS_200);
671 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
672 cfg->host_caps |= MMC_CAP(UHS_SDR50);
673 }
674
675 if (caps_1 & SDHCI_SUPPORT_DDR50)
676 cfg->host_caps |= MMC_CAP(UHS_DDR50);
677
Jaehoon Chung14bed522016-07-26 19:06:24 +0900678 if (host->host_caps)
679 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -0600680
681 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
682
683 return 0;
684}
685
Simon Glassef1e4ed2016-06-12 23:30:28 -0600686#ifdef CONFIG_BLK
687int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
688{
689 return mmc_bind(dev, mmc, cfg);
690}
691#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100692int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +0000693{
Masahiro Yamada6c679542016-08-25 16:07:35 +0900694 int ret;
695
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100696 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +0900697 if (ret)
698 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000699
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200700 host->mmc = mmc_create(&host->cfg, host);
701 if (host->mmc == NULL) {
702 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900703 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200704 }
Lei Wenaf62a552011-06-28 21:50:06 +0000705
706 return 0;
707}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600708#endif