blob: 93cefd89cd4bd96bfd0f3bafaca43c34d5be494f [file] [log] [blame]
Lei Wenaf62a552011-06-28 21:50:06 +00001/*
2 * Copyright 2011, Marvell Semiconductor Inc.
3 * Lei Wen <leiwen@marvell.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Lei Wenaf62a552011-06-28 21:50:06 +00006 *
7 * Back ported to the 8xx platform (from the 8260 platform) by
8 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
9 */
10
11#include <common.h>
Simon Glass2a809092016-06-12 23:30:27 -060012#include <errno.h>
Lei Wenaf62a552011-06-28 21:50:06 +000013#include <malloc.h>
14#include <mmc.h>
15#include <sdhci.h>
16
Stefan Roese492d3222015-06-29 14:58:09 +020017#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
18void *aligned_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
19#else
Lei Wenaf62a552011-06-28 21:50:06 +000020void *aligned_buffer;
Stefan Roese492d3222015-06-29 14:58:09 +020021#endif
Lei Wenaf62a552011-06-28 21:50:06 +000022
23static void sdhci_reset(struct sdhci_host *host, u8 mask)
24{
25 unsigned long timeout;
26
27 /* Wait max 100 ms */
28 timeout = 100;
29 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
30 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
31 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080032 printf("%s: Reset 0x%x never completed.\n",
33 __func__, (int)mask);
Lei Wenaf62a552011-06-28 21:50:06 +000034 return;
35 }
36 timeout--;
37 udelay(1000);
38 }
39}
40
41static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
42{
43 int i;
44 if (cmd->resp_type & MMC_RSP_136) {
45 /* CRC is stripped so we need to do some shifting. */
46 for (i = 0; i < 4; i++) {
47 cmd->response[i] = sdhci_readl(host,
48 SDHCI_RESPONSE + (3-i)*4) << 8;
49 if (i != 3)
50 cmd->response[i] |= sdhci_readb(host,
51 SDHCI_RESPONSE + (3-i)*4-1);
52 }
53 } else {
54 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
55 }
56}
57
58static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
59{
60 int i;
61 char *offs;
62 for (i = 0; i < data->blocksize; i += 4) {
63 offs = data->dest + i;
64 if (data->flags == MMC_DATA_READ)
65 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
66 else
67 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
68 }
69}
70
71static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data,
72 unsigned int start_addr)
73{
Lei Wena004abd2011-10-08 04:14:57 +000074 unsigned int stat, rdy, mask, timeout, block = 0;
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) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080088 printf("%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 }
92 if (stat & rdy) {
93 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;
98 if (++block >= data->blocks)
99 break;
100 }
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900101#ifdef CONFIG_MMC_SDHCI_SDMA
Lei Wenaf62a552011-06-28 21:50:06 +0000102 if (stat & SDHCI_INT_DMA_END) {
103 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Lei Wen3e81c772011-10-08 04:14:58 +0000104 start_addr &= ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
Lei Wenaf62a552011-06-28 21:50:06 +0000105 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
106 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
107 }
108#endif
Lei Wena004abd2011-10-08 04:14:57 +0000109 if (timeout-- > 0)
110 udelay(10);
111 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800112 printf("%s: Transfer data timeout\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900113 return -ETIMEDOUT;
Lei Wena004abd2011-10-08 04:14:57 +0000114 }
Lei Wenaf62a552011-06-28 21:50:06 +0000115 } while (!(stat & SDHCI_INT_DATA_END));
116 return 0;
117}
118
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200119/*
120 * No command will be sent by driver if card is busy, so driver must wait
121 * for card ready state.
122 * Every time when card is busy after timeout then (last) timeout value will be
123 * increased twice but only if it doesn't exceed global defined maximum.
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900124 * Each function call will use last timeout value.
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200125 */
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900126#define SDHCI_CMD_MAX_TIMEOUT 3200
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900127#define SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700128#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200129
Simon Glassef1e4ed2016-06-12 23:30:28 -0600130#ifdef CONFIG_DM_MMC_OPS
131static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
132 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000133{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600134 struct mmc *mmc = mmc_get_mmc_dev(dev);
135
136#else
137static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
138 struct mmc_data *data)
139{
140#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200141 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000142 unsigned int stat = 0;
143 int ret = 0;
144 int trans_bytes = 0, is_aligned = 1;
145 u32 mask, flags, mode;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200146 unsigned int time = 0, start_addr = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600147 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Stefan Roese29905a42015-06-29 14:58:08 +0200148 unsigned start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000149
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200150 /* Timeout unit - ms */
Masahiro Yamadad8ce77b2016-08-25 16:07:38 +0900151 static unsigned int cmd_timeout = SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000152
153 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
154 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
155
156 /* We shouldn't wait for data inihibit for stop commands, even
157 though they might use busy signaling */
158 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
159 mask &= ~SDHCI_DATA_INHIBIT;
160
161 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200162 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800163 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Masahiro Yamada65a25b22016-08-25 16:07:39 +0900164 if (2 * cmd_timeout <= SDHCI_CMD_MAX_TIMEOUT) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200165 cmd_timeout += cmd_timeout;
166 printf("timeout increasing to: %u ms.\n",
167 cmd_timeout);
168 } else {
169 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900170 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200171 }
Lei Wenaf62a552011-06-28 21:50:06 +0000172 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200173 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000174 udelay(1000);
175 }
176
177 mask = SDHCI_INT_RESPONSE;
178 if (!(cmd->resp_type & MMC_RSP_PRESENT))
179 flags = SDHCI_CMD_RESP_NONE;
180 else if (cmd->resp_type & MMC_RSP_136)
181 flags = SDHCI_CMD_RESP_LONG;
182 else if (cmd->resp_type & MMC_RSP_BUSY) {
183 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900184 if (data)
185 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000186 } else
187 flags = SDHCI_CMD_RESP_SHORT;
188
189 if (cmd->resp_type & MMC_RSP_CRC)
190 flags |= SDHCI_CMD_CRC;
191 if (cmd->resp_type & MMC_RSP_OPCODE)
192 flags |= SDHCI_CMD_INDEX;
193 if (data)
194 flags |= SDHCI_CMD_DATA;
195
Darwin Rambo30e6d972013-12-19 15:13:25 -0800196 /* Set Transfer mode regarding to data flag */
Lei Wenaf62a552011-06-28 21:50:06 +0000197 if (data != 0) {
198 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
199 mode = SDHCI_TRNS_BLK_CNT_EN;
200 trans_bytes = data->blocks * data->blocksize;
201 if (data->blocks > 1)
202 mode |= SDHCI_TRNS_MULTI;
203
204 if (data->flags == MMC_DATA_READ)
205 mode |= SDHCI_TRNS_READ;
206
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900207#ifdef CONFIG_MMC_SDHCI_SDMA
Lei Wenaf62a552011-06-28 21:50:06 +0000208 if (data->flags == MMC_DATA_READ)
Rob Herring3c1fcb72015-03-17 15:46:38 -0500209 start_addr = (unsigned long)data->dest;
Lei Wenaf62a552011-06-28 21:50:06 +0000210 else
Rob Herring3c1fcb72015-03-17 15:46:38 -0500211 start_addr = (unsigned long)data->src;
Lei Wenaf62a552011-06-28 21:50:06 +0000212 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
213 (start_addr & 0x7) != 0x0) {
214 is_aligned = 0;
Rob Herring3c1fcb72015-03-17 15:46:38 -0500215 start_addr = (unsigned long)aligned_buffer;
Lei Wenaf62a552011-06-28 21:50:06 +0000216 if (data->flags != MMC_DATA_READ)
217 memcpy(aligned_buffer, data->src, trans_bytes);
218 }
219
Stefan Roese492d3222015-06-29 14:58:09 +0200220#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
221 /*
222 * Always use this bounce-buffer when
223 * CONFIG_FIXED_SDHCI_ALIGNED_BUFFER is defined
224 */
225 is_aligned = 0;
226 start_addr = (unsigned long)aligned_buffer;
227 if (data->flags != MMC_DATA_READ)
228 memcpy(aligned_buffer, data->src, trans_bytes);
229#endif
230
Lei Wenaf62a552011-06-28 21:50:06 +0000231 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
232 mode |= SDHCI_TRNS_DMA;
233#endif
234 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
235 data->blocksize),
236 SDHCI_BLOCK_SIZE);
237 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
238 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500239 } else if (cmd->resp_type & MMC_RSP_BUSY) {
240 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000241 }
242
243 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900244#ifdef CONFIG_MMC_SDHCI_SDMA
Jaehoon Chungbe256cb2016-10-13 10:33:06 +0900245 trans_bytes = ALIGN(trans_bytes, CONFIG_SYS_CACHELINE_SIZE);
Lei Wen2c2ec4c2011-10-08 04:14:54 +0000246 flush_cache(start_addr, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000247#endif
248 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200249 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000250 do {
251 stat = sdhci_readl(host, SDHCI_INT_STATUS);
252 if (stat & SDHCI_INT_ERROR)
253 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000254
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900255 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
256 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
257 return 0;
258 } else {
259 printf("%s: Timeout for status update!\n",
260 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900261 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900262 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000263 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900264 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000265
Lei Wenaf62a552011-06-28 21:50:06 +0000266 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
267 sdhci_cmd_done(host, cmd);
268 sdhci_writel(host, mask, SDHCI_INT_STATUS);
269 } else
270 ret = -1;
271
272 if (!ret && data)
273 ret = sdhci_transfer_data(host, data, start_addr);
274
Tushar Behera13243f22012-09-20 20:31:57 +0000275 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
276 udelay(1000);
277
Lei Wenaf62a552011-06-28 21:50:06 +0000278 stat = sdhci_readl(host, SDHCI_INT_STATUS);
279 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
280 if (!ret) {
281 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
282 !is_aligned && (data->flags == MMC_DATA_READ))
283 memcpy(data->dest, aligned_buffer, trans_bytes);
284 return 0;
285 }
286
287 sdhci_reset(host, SDHCI_RESET_CMD);
288 sdhci_reset(host, SDHCI_RESET_DATA);
289 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900290 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000291 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900292 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000293}
294
295static int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
296{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200297 struct sdhci_host *host = mmc->priv;
Stefan Roese899fb9e2016-12-12 08:34:42 +0100298 unsigned int div, clk = 0, timeout;
Lei Wenaf62a552011-06-28 21:50:06 +0000299
Wenyou Yang79667b72015-09-22 14:59:25 +0800300 /* Wait max 20 ms */
301 timeout = 200;
302 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
303 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
304 if (timeout == 0) {
305 printf("%s: Timeout to wait cmd & data inhibit\n",
306 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900307 return -EBUSY;
Wenyou Yang79667b72015-09-22 14:59:25 +0800308 }
309
310 timeout--;
311 udelay(100);
312 }
313
Stefan Roese899fb9e2016-12-12 08:34:42 +0100314 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000315
316 if (clock == 0)
317 return 0;
318
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900319 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800320 /*
321 * Check if the Host Controller supports Programmable Clock
322 * Mode.
323 */
324 if (host->clk_mul) {
325 for (div = 1; div <= 1024; div++) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100326 if ((host->max_clk * host->clk_mul / div)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800327 <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000328 break;
329 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800330
331 /*
332 * Set Programmable Clock Mode in the Clock
333 * Control register.
334 */
335 clk = SDHCI_PROG_CLOCK_MODE;
336 div--;
337 } else {
338 /* Version 3.00 divisors must be a multiple of 2. */
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100339 if (host->max_clk <= clock) {
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800340 div = 1;
341 } else {
342 for (div = 2;
343 div < SDHCI_MAX_DIV_SPEC_300;
344 div += 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100345 if ((host->max_clk / div) <= clock)
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800346 break;
347 }
348 }
349 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000350 }
351 } else {
352 /* Version 2.00 divisors must be a power of 2. */
353 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100354 if ((host->max_clk / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000355 break;
356 }
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800357 div >>= 1;
Lei Wenaf62a552011-06-28 21:50:06 +0000358 }
Lei Wenaf62a552011-06-28 21:50:06 +0000359
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900360 if (host->ops && host->ops->set_clock)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900361 host->ops->set_clock(host, div);
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000362
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800363 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Lei Wenaf62a552011-06-28 21:50:06 +0000364 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
365 << SDHCI_DIVIDER_HI_SHIFT;
366 clk |= SDHCI_CLOCK_INT_EN;
367 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
368
369 /* Wait max 20 ms */
370 timeout = 20;
371 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
372 & SDHCI_CLOCK_INT_STABLE)) {
373 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800374 printf("%s: Internal clock never stabilised.\n",
375 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900376 return -EBUSY;
Lei Wenaf62a552011-06-28 21:50:06 +0000377 }
378 timeout--;
379 udelay(1000);
380 }
381
382 clk |= SDHCI_CLOCK_CARD_EN;
383 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
384 return 0;
385}
386
387static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
388{
389 u8 pwr = 0;
390
391 if (power != (unsigned short)-1) {
392 switch (1 << power) {
393 case MMC_VDD_165_195:
394 pwr = SDHCI_POWER_180;
395 break;
396 case MMC_VDD_29_30:
397 case MMC_VDD_30_31:
398 pwr = SDHCI_POWER_300;
399 break;
400 case MMC_VDD_32_33:
401 case MMC_VDD_33_34:
402 pwr = SDHCI_POWER_330;
403 break;
404 }
405 }
406
407 if (pwr == 0) {
408 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
409 return;
410 }
411
412 pwr |= SDHCI_POWER_ON;
413
414 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
415}
416
Simon Glassef1e4ed2016-06-12 23:30:28 -0600417#ifdef CONFIG_DM_MMC_OPS
418static int sdhci_set_ios(struct udevice *dev)
419{
420 struct mmc *mmc = mmc_get_mmc_dev(dev);
421#else
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900422static int sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000423{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600424#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000425 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200426 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000427
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900428 if (host->ops && host->ops->set_control_reg)
Jaehoon Chung62226b62016-12-30 15:30:18 +0900429 host->ops->set_control_reg(host);
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000430
Lei Wenaf62a552011-06-28 21:50:06 +0000431 if (mmc->clock != host->clock)
432 sdhci_set_clock(mmc, mmc->clock);
433
434 /* Set bus width */
435 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
436 if (mmc->bus_width == 8) {
437 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900438 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
439 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000440 ctrl |= SDHCI_CTRL_8BITBUS;
441 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700442 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
443 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000444 ctrl &= ~SDHCI_CTRL_8BITBUS;
445 if (mmc->bus_width == 4)
446 ctrl |= SDHCI_CTRL_4BITBUS;
447 else
448 ctrl &= ~SDHCI_CTRL_4BITBUS;
449 }
450
451 if (mmc->clock > 26000000)
452 ctrl |= SDHCI_CTRL_HISPD;
453 else
454 ctrl &= ~SDHCI_CTRL_HISPD;
455
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000456 if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
457 ctrl &= ~SDHCI_CTRL_HISPD;
458
Lei Wenaf62a552011-06-28 21:50:06 +0000459 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900460
Stefan Roese210841c2016-12-12 08:24:56 +0100461 /* If available, call the driver specific "post" set_ios() function */
462 if (host->ops && host->ops->set_ios_post)
463 host->ops->set_ios_post(host);
464
Simon Glassef1e4ed2016-06-12 23:30:28 -0600465 return 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000466}
467
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200468static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000469{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200470 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000471
Masahiro Yamada8d549b62016-08-25 16:07:34 +0900472 sdhci_reset(host, SDHCI_RESET_ALL);
473
Lei Wenaf62a552011-06-28 21:50:06 +0000474 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && !aligned_buffer) {
475 aligned_buffer = memalign(8, 512*1024);
476 if (!aligned_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800477 printf("%s: Aligned buffer alloc failed!!!\n",
478 __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900479 return -ENOMEM;
Lei Wenaf62a552011-06-28 21:50:06 +0000480 }
481 }
482
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200483 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000484
Masahiro Yamadabf9c4d12017-01-13 11:51:51 +0900485 if (host->ops && host->ops->get_cd)
Jaehoon Chung6f88a3a2016-12-30 15:30:15 +0900486 host->ops->get_cd(host);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000487
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000488 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800489 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
490 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000491 /* Mask all sdhci interrupt sources */
492 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000493
Lei Wenaf62a552011-06-28 21:50:06 +0000494 return 0;
495}
496
Simon Glassef1e4ed2016-06-12 23:30:28 -0600497#ifdef CONFIG_DM_MMC_OPS
498int sdhci_probe(struct udevice *dev)
499{
500 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200501
Simon Glassef1e4ed2016-06-12 23:30:28 -0600502 return sdhci_init(mmc);
503}
504
505const struct dm_mmc_ops sdhci_ops = {
506 .send_cmd = sdhci_send_command,
507 .set_ios = sdhci_set_ios,
508};
509#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200510static const struct mmc_ops sdhci_ops = {
511 .send_cmd = sdhci_send_command,
512 .set_ios = sdhci_set_ios,
513 .init = sdhci_init,
514};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600515#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200516
Jaehoon Chung14bed522016-07-26 19:06:24 +0900517int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100518 u32 f_max, u32 f_min)
Simon Glass2a809092016-06-12 23:30:27 -0600519{
Wenyou Yang6dffdbc2016-09-18 09:01:22 +0800520 u32 caps, caps_1;
Jaehoon Chung14bed522016-07-26 19:06:24 +0900521
522 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900523
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900524#ifdef CONFIG_MMC_SDHCI_SDMA
Masahiro Yamada15bd0992016-08-25 16:07:37 +0900525 if (!(caps & SDHCI_CAN_DO_SDMA)) {
526 printf("%s: Your controller doesn't support SDMA!!\n",
527 __func__);
528 return -EINVAL;
529 }
530#endif
Jaehoon Chung895549a2016-09-26 08:10:01 +0900531 if (host->quirks & SDHCI_QUIRK_REG32_RW)
532 host->version =
533 sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
534 else
535 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chung14bed522016-07-26 19:06:24 +0900536
537 cfg->name = host->name;
Simon Glass2a809092016-06-12 23:30:27 -0600538#ifndef CONFIG_DM_MMC_OPS
539 cfg->ops = &sdhci_ops;
540#endif
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100541 if (host->max_clk == 0) {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900542 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100543 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600544 SDHCI_CLOCK_BASE_SHIFT;
545 else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100546 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK) >>
Simon Glass2a809092016-06-12 23:30:27 -0600547 SDHCI_CLOCK_BASE_SHIFT;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100548 host->max_clk *= 1000000;
Simon Glass2a809092016-06-12 23:30:27 -0600549 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100550 if (host->max_clk == 0) {
Masahiro Yamada6c679542016-08-25 16:07:35 +0900551 printf("%s: Hardware doesn't specify base clock frequency\n",
552 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600553 return -EINVAL;
Masahiro Yamada6c679542016-08-25 16:07:35 +0900554 }
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100555 if (f_max && (f_max < host->max_clk))
556 cfg->f_max = f_max;
557 else
558 cfg->f_max = host->max_clk;
559 if (f_min)
560 cfg->f_min = f_min;
Simon Glass2a809092016-06-12 23:30:27 -0600561 else {
Jaehoon Chung14bed522016-07-26 19:06:24 +0900562 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Simon Glass2a809092016-06-12 23:30:27 -0600563 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
564 else
565 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
566 }
567 cfg->voltages = 0;
568 if (caps & SDHCI_CAN_VDD_330)
569 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
570 if (caps & SDHCI_CAN_VDD_300)
571 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
572 if (caps & SDHCI_CAN_VDD_180)
573 cfg->voltages |= MMC_VDD_165_195;
574
Masahiro Yamada3137e642016-08-25 16:07:36 +0900575 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
576 cfg->voltages |= host->voltages;
577
Simon Glass2a809092016-06-12 23:30:27 -0600578 cfg->host_caps = MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900579
580 /* Since Host Controller Version3.0 */
Jaehoon Chung14bed522016-07-26 19:06:24 +0900581 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jaehoon Chungecd7b242016-12-30 15:30:11 +0900582 if (!(caps & SDHCI_CAN_DO_8BIT))
583 cfg->host_caps &= ~MMC_MODE_8BIT;
Jaehoon Chung3fd0a9b2016-12-30 15:30:21 +0900584
585 /* Find out whether clock multiplier is supported */
586 caps_1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
587 host->clk_mul = (caps_1 & SDHCI_CLOCK_MUL_MASK) >>
588 SDHCI_CLOCK_MUL_SHIFT;
Simon Glass2a809092016-06-12 23:30:27 -0600589 }
590
Jaehoon Chung14bed522016-07-26 19:06:24 +0900591 if (host->host_caps)
592 cfg->host_caps |= host->host_caps;
Simon Glass2a809092016-06-12 23:30:27 -0600593
594 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
595
596 return 0;
597}
598
Simon Glassef1e4ed2016-06-12 23:30:28 -0600599#ifdef CONFIG_BLK
600int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
601{
602 return mmc_bind(dev, mmc, cfg);
603}
604#else
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100605int add_sdhci(struct sdhci_host *host, u32 f_max, u32 f_min)
Lei Wenaf62a552011-06-28 21:50:06 +0000606{
Masahiro Yamada6c679542016-08-25 16:07:35 +0900607 int ret;
608
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100609 ret = sdhci_setup_cfg(&host->cfg, host, f_max, f_min);
Masahiro Yamada6c679542016-08-25 16:07:35 +0900610 if (ret)
611 return ret;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000612
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200613 host->mmc = mmc_create(&host->cfg, host);
614 if (host->mmc == NULL) {
615 printf("%s: mmc create fail!\n", __func__);
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900616 return -ENOMEM;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200617 }
Lei Wenaf62a552011-06-28 21:50:06 +0000618
619 return 0;
620}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600621#endif