blob: cdeba914f95cac4037eaf9b9eb521963f9048186 [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}
69
70static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data,
71 unsigned int start_addr)
72{
Lei Wena004abd2011-10-08 04:14:57 +000073 unsigned int stat, rdy, mask, timeout, block = 0;
Alex Deymo7dde50d2017-04-02 01:24:34 -070074 bool transfer_done = false;
Masahiro Yamada45a68fe2016-12-07 22:10:29 +090075#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chung804c7f42012-09-20 20:31:55 +000076 unsigned char ctrl;
Juhyun \(Justin\) Oh2c011842013-09-13 18:06:00 +000077 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chung804c7f42012-09-20 20:31:55 +000078 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Juhyun \(Justin\) Oh2c011842013-09-13 18:06:00 +000079 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung804c7f42012-09-20 20:31:55 +000080#endif
Lei Wenaf62a552011-06-28 21:50:06 +000081
Jaehoon Chung5d48e422012-09-20 20:31:54 +000082 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +000083 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
84 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
85 do {
86 stat = sdhci_readl(host, SDHCI_INT_STATUS);
87 if (stat & SDHCI_INT_ERROR) {
Masahiro Yamada61f2e5e2017-12-30 02:00:12 +090088 pr_debug("%s: Error detected in status(0x%X)!\n",
89 __func__, stat);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +090090 return -EIO;
Lei Wenaf62a552011-06-28 21:50:06 +000091 }
Alex Deymo7dde50d2017-04-02 01:24:34 -070092 if (!transfer_done && (stat & rdy)) {
Lei Wenaf62a552011-06-28 21:50:06 +000093 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
94 continue;
95 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
96 sdhci_transfer_pio(host, data);
97 data->dest += data->blocksize;
Alex Deymo7dde50d2017-04-02 01:24:34 -070098 if (++block >= data->blocks) {
99 /* Keep looping until the SDHCI_INT_DATA_END is
100 * cleared, even if we finished sending all the
101 * blocks.
102 */
103 transfer_done = true;
104 continue;
105 }
Lei Wenaf62a552011-06-28 21:50:06 +0000106 }
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900107#ifdef CONFIG_MMC_SDHCI_SDMA
Alex Deymo7dde50d2017-04-02 01:24:34 -0700108 if (!transfer_done && (stat & SDHCI_INT_DMA_END)) {
Lei Wenaf62a552011-06-28 21:50:06 +0000109 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Lei Wen3e81c772011-10-08 04:14:58 +0000110 start_addr &= ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
Lei Wenaf62a552011-06-28 21:50:06 +0000111 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
112 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
113 }
114#endif
Lei Wena004abd2011-10-08 04:14:57 +0000115 if (timeout-- > 0)
116 udelay(10);
117 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800118 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900119 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000120 }
Lei Wenaf62a552011-06-28 21:50:06 +0000121 } while (!(stat & SDHCI_INT_DATA_END));
122 return 0;
123}
124
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200125/*
126 * No command will be sent by driver if card is busy, so driver must wait
127 * for card ready state.
128 * Every time when card is busy after timeout then (last) timeout value will be
129 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900130 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200131 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900132#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900133#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700134#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200135
Simon Glasse7881d82017-07-29 11:35:31 -0600136#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600137static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
138 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000139{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600140 struct mmc *mmc = mmc_get_mmc_dev(dev);
141
142#else
143static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
144 struct mmc_data *data)
145{
146#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200147 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000148 unsigned int stat = 0;
149 int ret = 0;
150 int trans_bytes = 0, is_aligned = 1;
151 u32 mask, flags, mode;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200152 unsigned int time = 0, start_addr = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600153 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Vipul Kumar36332b62018-05-03 12:20:54 +0530154 ulong start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000155
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200156 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900157 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000158
Lei Wenaf62a552011-06-28 21:50:06 +0000159 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
160
161 /* We shouldn't wait for data inihibit for stop commands, even
162 though they might use busy signaling */
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530163 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION ||
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530164 ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
165 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data))
Lei Wenaf62a552011-06-28 21:50:06 +0000166 mask &= ~SDHCI_DATA_INHIBIT;
167
168 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200169 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800170 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900171 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200172 cmd_timeout += cmd_timeout;
173 printf("timeout increasing to: %u ms.\n",
174 cmd_timeout);
175 } else {
176 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900177 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200178 }
Lei Wenaf62a552011-06-28 21:50:06 +0000179 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200180 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000181 udelay(1000);
182 }
183
Jorge Ramirez-Ortiz713e6812017-11-02 15:10:21 +0100184 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
185
Lei Wenaf62a552011-06-28 21:50:06 +0000186 mask = SDHCI_INT_RESPONSE;
Siva Durga Prasad Paladugu1a7414f2018-06-13 11:43:01 +0530187 if ((cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
188 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200) && !data)
Siva Durga Prasad Paladugub88a7a42018-04-19 12:37:05 +0530189 mask = SDHCI_INT_DATA_AVAIL;
190
Lei Wenaf62a552011-06-28 21:50:06 +0000191 if (!(cmd->resp_type & MMC_RSP_PRESENT))
192 flags = SDHCI_CMD_RESP_NONE;
193 else if (cmd->resp_type & MMC_RSP_136)
194 flags = SDHCI_CMD_RESP_LONG;
195 else if (cmd->resp_type & MMC_RSP_BUSY) {
196 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900197 if (data)
198 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000199 } else
200 flags = SDHCI_CMD_RESP_SHORT;
201
202 if (cmd->resp_type & MMC_RSP_CRC)
203 flags |= SDHCI_CMD_CRC;
204 if (cmd->resp_type & MMC_RSP_OPCODE)
205 flags |= SDHCI_CMD_INDEX;
Siva Durga Prasad Paladugu434f9d42018-05-29 20:03:10 +0530206 if (data || cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK ||
207 cmd->cmdidx == MMC_CMD_SEND_TUNING_BLOCK_HS200)
Lei Wenaf62a552011-06-28 21:50:06 +0000208 flags |= SDHCI_CMD_DATA;
209
Darwin Rambo30e6d972013-12-19 15:13:25 -0800210 /* Set Transfer mode regarding to data flag */
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100211 if (data) {
Lei Wenaf62a552011-06-28 21:50:06 +0000212 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
213 mode = SDHCI_TRNS_BLK_CNT_EN;
214 trans_bytes = data->blocks * data->blocksize;
215 if (data->blocks > 1)
216 mode |= SDHCI_TRNS_MULTI;
217
218 if (data->flags == MMC_DATA_READ)
219 mode |= SDHCI_TRNS_READ;
220
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900221#ifdef CONFIG_MMC_SDHCI_SDMA
Lei Wenaf62a552011-06-28 21:50:06 +0000222 if (data->flags == MMC_DATA_READ)
Rob Herring3c1fcb72015-03-17 15:46:38 -0500223 start_addr = (unsigned long)data->dest;
Lei Wenaf62a552011-06-28 21:50:06 +0000224 else
Rob Herring3c1fcb72015-03-17 15:46:38 -0500225 start_addr = (unsigned long)data->src;
Lei Wenaf62a552011-06-28 21:50:06 +0000226 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
227 (start_addr & 0x7) != 0x0) {
228 is_aligned = 0;
Rob Herring3c1fcb72015-03-17 15:46:38 -0500229 start_addr = (unsigned long)aligned_buffer;
Lei Wenaf62a552011-06-28 21:50:06 +0000230 if (data->flags != MMC_DATA_READ)
231 memcpy(aligned_buffer, data->src, trans_bytes);
232 }
233
Stefan Roese492d3222015-06-29 14:58:09 +0200234#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
235 /*
236 * Always use this bounce-buffer when
237 * CONFIG_FIXED_SDHCI_ALIGNED_BUFFER is defined
238 */
239 is_aligned = 0;
240 start_addr = (unsigned long)aligned_buffer;
241 if (data->flags != MMC_DATA_READ)
242 memcpy(aligned_buffer, data->src, trans_bytes);
243#endif
244
Lei Wenaf62a552011-06-28 21:50:06 +0000245 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
246 mode |= SDHCI_TRNS_DMA;
247#endif
248 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
249 data->blocksize),
250 SDHCI_BLOCK_SIZE);
251 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
252 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500253 } else if (cmd->resp_type & MMC_RSP_BUSY) {
254 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000255 }
256
257 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900258#ifdef CONFIG_MMC_SDHCI_SDMA
Heinrich Schuchardtbb7b4ef2017-11-10 21:13:34 +0100259 if (data) {
Kevin Liufa7720b2017-03-08 15:16:44 +0800260 trans_bytes = ALIGN(trans_bytes, CONFIG_SYS_CACHELINE_SIZE);
261 flush_cache(start_addr, trans_bytes);
262 }
Lei Wenaf62a552011-06-28 21:50:06 +0000263#endif
264 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200265 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000266 do {
267 stat = sdhci_readl(host, SDHCI_INT_STATUS);
268 if (stat & SDHCI_INT_ERROR)
269 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000270
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900271 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
272 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
273 return 0;
274 } else {
275 printf("%s: Timeout for status update!\n",
276 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900277 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900278 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000279 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900280 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000281
Lei Wenaf62a552011-06-28 21:50:06 +0000282 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
283 sdhci_cmd_done(host, cmd);
284 sdhci_writel(host, mask, SDHCI_INT_STATUS);
285 } else
286 ret = -1;
287
288 if (!ret && data)
289 ret = sdhci_transfer_data(host, data, start_addr);
290
Tushar Behera13243f22012-09-20 20:31:57 +0000291 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
292 udelay(1000);
293
Lei Wenaf62a552011-06-28 21:50:06 +0000294 stat = sdhci_readl(host, SDHCI_INT_STATUS);
295 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
296 if (!ret) {
297 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
298 !is_aligned && (data->flags == MMC_DATA_READ))
299 memcpy(data->dest, aligned_buffer, trans_bytes);
300 return 0;
301 }
302
303 sdhci_reset(host, SDHCI_RESET_CMD);
304 sdhci_reset(host, SDHCI_RESET_DATA);
305 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900306 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000307 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900308 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000309}
310
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530311#if defined(CONFIG_DM_MMC) && defined(MMC_SUPPORTS_TUNING)
312static int sdhci_execute_tuning(struct udevice *dev, uint opcode)
313{
314 int err;
315 struct mmc *mmc = mmc_get_mmc_dev(dev);
316 struct sdhci_host *host = mmc->priv;
317
318 debug("%s\n", __func__);
319
Ramon Friedb70fe962018-05-14 15:02:30 +0300320 if (host->ops && host->ops->platform_execute_tuning) {
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530321 err = host->ops->platform_execute_tuning(mmc, opcode);
322 if (err)
323 return err;
324 return 0;
325 }
326 return 0;
327}
328#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000329static int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
330{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200331 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100332 unsigned int div, clk = 0, timeout;
Lei Wenaf62a552011-06-28 21:50:06 +0000333
Wenyou Yang79667b72015-09-22 14:59:25 +0800334 /* Wait max 20 ms */
335 timeout = 200;
336 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
337 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
338 if (timeout == 0) {
339 printf("%s: Timeout to wait cmd & data inhibit\n",
340 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900341 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800342 }
343
344 timeout--;
345 udelay(100);
346 }
347
Stefan Roese899fb9e2016-12-12 08:34:42 +0100348 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000349
350 if (clock == 0)
351 return 0;
352
Ramon Friedb70fe962018-05-14 15:02:30 +0300353 if (host->ops && host->ops->set_delay)
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530354 host->ops->set_delay(host);
355
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900356 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800357 /*
358 * Check if the Host Controller supports Programmable Clock
359 * Mode.
360 */
361 if (host->clk_mul) {
362 for (div = 1; div <= 1024; div++) {
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800363 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000364 break;
365 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800366
367 /*
368 * Set Programmable Clock Mode in the Clock
369 * Control register.
370 */
371 clk = SDHCI_PROG_CLOCK_MODE;
372 div--;
373 } else {
374 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100375 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800376 div = 1;
377 } else {
378 for (div = 2;
379 div < SDHCI_MAX_DIV_SPEC_300;
380 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100381 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800382 break;
383 }
384 }
385 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000386 }
387 } else {
388 /* Version 2.00 divisors must be a power of 2. */
389 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100390 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000391 break;
392 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800393 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000394 }
Lei Wenaf62a552011-06-28 21:50:06 +0000395
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900396 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900397 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000398
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800399 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000400 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
401 << SDHCI_DIVIDER_HI_SHIFT;
402 clk |= SDHCI_CLOCK_INT_EN;
403 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
404
405 /* Wait max 20 ms */
406 timeout = 20;
407 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
408 & SDHCI_CLOCK_INT_STABLE)) {
409 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800410 printf("%s: Internal clock never stabilised.\n",
411 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900412 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000413 }
414 timeout--;
415 udelay(1000);
416 }
417
418 clk |= SDHCI_CLOCK_CARD_EN;
419 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
420 return 0;
421}
422
423static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
424{
425 u8 pwr = 0;
426
427 if (power != (unsigned short)-1) {
428 switch (1 << power) {
429 case MMC_VDD_165_195:
430 pwr = SDHCI_POWER_180;
431 break;
432 case MMC_VDD_29_30:
433 case MMC_VDD_30_31:
434 pwr = SDHCI_POWER_300;
435 break;
436 case MMC_VDD_32_33:
437 case MMC_VDD_33_34:
438 pwr = SDHCI_POWER_330;
439 break;
440 }
441 }
442
443 if (pwr == 0) {
444 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
445 return;
446 }
447
448 pwr |= SDHCI_POWER_ON;
449
450 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
451}
452
Simon Glasse7881d82017-07-29 11:35:31 -0600453#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600454static int sdhci_set_ios(struct udevice *dev)
455{
456 struct mmc *mmc = mmc_get_mmc_dev(dev);
457#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900458static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000459{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600460#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000461 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200462 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000463
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900464 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900465 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000466
Lei Wenaf62a552011-06-28 21:50:06 +0000467 if (mmc->clock != host->clock)
468 sdhci_set_clock(mmc, mmc->clock);
469
Siva Durga Prasad Paladugu2a2d7ef2018-04-19 12:37:04 +0530470 if (mmc->clk_disable)
471 sdhci_set_clock(mmc, 0);
472
Lei Wenaf62a552011-06-28 21:50:06 +0000473 /* Set bus width */
474 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
475 if (mmc->bus_width == 8) {
476 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900477 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
478 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000479 ctrl |= SDHCI_CTRL_8BITBUS;
480 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700481 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
482 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000483 ctrl &= ~SDHCI_CTRL_8BITBUS;
484 if (mmc->bus_width == 4)
485 ctrl |= SDHCI_CTRL_4BITBUS;
486 else
487 ctrl &= ~SDHCI_CTRL_4BITBUS;
488 }
489
490 if (mmc->clock > 26000000)
491 ctrl |= SDHCI_CTRL_HISPD;
492 else
493 ctrl &= ~SDHCI_CTRL_HISPD;
494
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100495 if ((host->quirks & SDHCI_QUIRK_NO_HISPD_BIT) ||
496 (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE))
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000497 ctrl &= ~SDHCI_CTRL_HISPD;
498
Lei Wenaf62a552011-06-28 21:50:06 +0000499 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900500
Stefan Roese210841c2016-12-12 08:24:56 +0100501 /* If available, call the driver specific "post" set_ios() function */
502 if (host->ops && host->ops->set_ios_post)
503 host->ops->set_ios_post(host);
504
Simon Glassef1e4ed2016-06-12 23:30:28 -0600505 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000506}
507
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200508static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000509{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200510 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000511
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900512 sdhci_reset(host, SDHCI_RESET_ALL);
513
Lei Wenaf62a552011-06-28 21:50:06 +0000514 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && !aligned_buffer) {
515 aligned_buffer = memalign(8, 512*1024);
516 if (!aligned_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800517 printf("%s: Aligned buffer alloc failed!!!\n",
518 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900519 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000520 }
521 }
522
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200523 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000524
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900525 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900526 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000527
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000528 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800529 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
530 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000531 /* Mask all sdhci interrupt sources */
532 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000533
Lei Wenaf62a552011-06-28 21:50:06 +0000534 return 0;
535}
536
Simon Glasse7881d82017-07-29 11:35:31 -0600537#ifdef CONFIG_DM_MMC
Simon Glassef1e4ed2016-06-12 23:30:28 -0600538int sdhci_probe(struct udevice *dev)
539{
540 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200541
Simon Glassef1e4ed2016-06-12 23:30:28 -0600542 return sdhci_init(mmc);
543}
544
545const struct dm_mmc_ops sdhci_ops = {
546 .send_cmd = sdhci_send_command,
547 .set_ios = sdhci_set_ios,
Siva Durga Prasad Paladuguca992e82018-04-19 12:37:07 +0530548#ifdef MMC_SUPPORTS_TUNING
549 .execute_tuning = sdhci_execute_tuning,
550#endif
Simon Glassef1e4ed2016-06-12 23:30:28 -0600551};
552#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200553static const struct mmc_ops sdhci_ops = {
554 .send_cmd = sdhci_send_command,
555 .set_ios = sdhci_set_ios,
556 .init = sdhci_init,
557};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600558#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200559
Jaehoon Chung14bed522016-07-26 19:06:24 +0900560int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100561 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600562{
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530563 u32 caps, caps_1 = 0;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900564
565 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900566
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900567#ifdef CONFIG_MMC_SDHCI_SDMA
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900568 if (!(caps & SDHCI_CAN_DO_SDMA)) {
569 printf("%s: Your controller doesn't support SDMA!!\n",
570 __func__);
571 return -EINVAL;
572 }
573#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900574 if (host->quirks & SDHCI_QUIRK_REG32_RW)
575 host->version =
576 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
577 else
578 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900579
580 cfg->name = host->name;
Simon Glasse7881d82017-07-29 11:35:31 -0600581#ifndef CONFIG_DM_MMC
Simon Glass2a809092016-06-12 23:30:27 -0600582 cfg->ops = &sdhci_ops;
583#endif
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800584
585 /* Check whether the clock multiplier is supported or not */
586 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
587 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
588 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
589 SDHCI_CLOCK_MUL_SHIFT;
590 }
591
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100592 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900593 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100594 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600595 SDHCI_CLOCK_BASE_SHIFT;
596 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100597 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600598 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100599 host->max_clk *= 1000000;
Wenyou Yang0e0dcc12017-04-26 09:32:30 +0800600 if (host->clk_mul)
601 host->max_clk *= host->clk_mul;
Simon Glass2a809092016-06-12 23:30:27 -0600602 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100603 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900604 printf("%s: Hardware doesn't specify base clock frequency\n",
605 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600606 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900607 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100608 if (f_max && (f_max < host->max_clk))
609 cfg->f_max = f_max;
610 else
611 cfg->f_max = host->max_clk;
612 if (f_min)
613 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600614 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900615 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600616 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
617 else
618 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
619 }
620 cfg->voltages = 0;
621 if (caps & SDHCI_CAN_VDD_330)
622 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
623 if (caps & SDHCI_CAN_VDD_300)
624 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
625 if (caps & SDHCI_CAN_VDD_180)
626 cfg->voltages |= MMC_VDD_165_195;
627
Masahiro Yamada3137e642016-08-25 16:07:36 +0900628 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
629 cfg->voltages |= host->voltages;
630
Masahiro Yamadabe165fb2017-12-30 02:00:08 +0900631 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900632
633 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900634 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900635 if (!(caps & SDHCI_CAN_DO_8BIT))
636 cfg->host_caps &= ~MMC_MODE_8BIT;
Simon Glass2a809092016-06-12 23:30:27 -0600637 }
638
Hannes Schmelzer88a57122018-03-07 08:00:56 +0100639 if (host->quirks & SDHCI_QUIRK_BROKEN_HISPD_MODE) {
640 cfg->host_caps &= ~MMC_MODE_HS;
641 cfg->host_caps &= ~MMC_MODE_HS_52MHz;
642 }
643
Siva Durga Prasad Paladugub8e25ef2018-04-19 12:37:08 +0530644 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
645 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
646
647 if (!(cfg->voltages & MMC_VDD_165_195) ||
648 (host->quirks & SDHCI_QUIRK_NO_1_8_V))
649 caps_1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
650 SDHCI_SUPPORT_DDR50);
651
652 if (caps_1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
653 SDHCI_SUPPORT_DDR50))
654 cfg->host_caps |= MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25);
655
656 if (caps_1 & SDHCI_SUPPORT_SDR104) {
657 cfg->host_caps |= MMC_CAP(UHS_SDR104) | MMC_CAP(UHS_SDR50);
658 /*
659 * SD3.0: SDR104 is supported so (for eMMC) the caps2
660 * field can be promoted to support HS200.
661 */
662 cfg->host_caps |= MMC_CAP(MMC_HS_200);
663 } else if (caps_1 & SDHCI_SUPPORT_SDR50) {
664 cfg->host_caps |= MMC_CAP(UHS_SDR50);
665 }
666
667 if (caps_1 & SDHCI_SUPPORT_DDR50)
668 cfg->host_caps |= MMC_CAP(UHS_DDR50);
669
Jaehoon Chung14bed522016-07-26 19:06:24 +0900670 if (host->host_caps)
671 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -0600672
673 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
674
675 return 0;
676}
677
Simon Glassef1e4ed2016-06-12 23:30:28 -0600678#ifdef CONFIG_BLK
679int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
680{
681 return mmc_bind(dev, mmc, cfg);
682}
683#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100684int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +0000685{
Masahiro Yamada6c679542016-08-25 16:07:35 +0900686 int ret;
687
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100688 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +0900689 if (ret)
690 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000691
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200692 host->mmc = mmc_create(&host->cfg, host);
693 if (host->mmc == NULL) {
694 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900695 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200696 }
Lei Wenaf62a552011-06-28 21:50:06 +0000697
698 return 0;
699}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600700#endif