blob: c275314f51bdabf9dde37e22fc9b12775fd6a98a [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;
Jaehoon Chung804c7f42012-09-20 20:31:55 +000075#ifdef CONFIG_MMC_SDMA
76 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);
Lei Wenaf62a552011-06-28 21:50:06 +000090 return -1;
91 }
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 }
101#ifdef CONFIG_MMC_SDMA
102 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__);
Lei Wena004abd2011-10-08 04:14:57 +0000113 return -1;
114 }
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.
124 * Each function call will use last timeout value. Max timeout can be redefined
125 * in board config file.
126 */
127#ifndef CONFIG_SDHCI_CMD_MAX_TIMEOUT
128#define CONFIG_SDHCI_CMD_MAX_TIMEOUT 3200
129#endif
130#define CONFIG_SDHCI_CMD_DEFAULT_TIMEOUT 100
Steve Raed90bb432016-06-29 13:42:01 -0700131#define SDHCI_READ_STATUS_TIMEOUT 1000
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200132
Simon Glassef1e4ed2016-06-12 23:30:28 -0600133#ifdef CONFIG_DM_MMC_OPS
134static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
135 struct mmc_data *data)
Lei Wenaf62a552011-06-28 21:50:06 +0000136{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600137 struct mmc *mmc = mmc_get_mmc_dev(dev);
138
139#else
140static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
141 struct mmc_data *data)
142{
143#endif
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200144 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000145 unsigned int stat = 0;
146 int ret = 0;
147 int trans_bytes = 0, is_aligned = 1;
148 u32 mask, flags, mode;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200149 unsigned int time = 0, start_addr = 0;
Simon Glass19d2e342016-05-14 14:03:04 -0600150 int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
Stefan Roese29905a42015-06-29 14:58:08 +0200151 unsigned start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000152
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200153 /* Timeout unit - ms */
154 static unsigned int cmd_timeout = CONFIG_SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000155
156 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
157 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
158
159 /* We shouldn't wait for data inihibit for stop commands, even
160 though they might use busy signaling */
161 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
162 mask &= ~SDHCI_DATA_INHIBIT;
163
164 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200165 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800166 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200167 if (2 * cmd_timeout <= CONFIG_SDHCI_CMD_MAX_TIMEOUT) {
168 cmd_timeout += cmd_timeout;
169 printf("timeout increasing to: %u ms.\n",
170 cmd_timeout);
171 } else {
172 puts("timeout.\n");
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900173 return -ECOMM;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200174 }
Lei Wenaf62a552011-06-28 21:50:06 +0000175 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200176 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000177 udelay(1000);
178 }
179
180 mask = SDHCI_INT_RESPONSE;
181 if (!(cmd->resp_type & MMC_RSP_PRESENT))
182 flags = SDHCI_CMD_RESP_NONE;
183 else if (cmd->resp_type & MMC_RSP_136)
184 flags = SDHCI_CMD_RESP_LONG;
185 else if (cmd->resp_type & MMC_RSP_BUSY) {
186 flags = SDHCI_CMD_RESP_SHORT_BUSY;
Jaehoon Chung17ea3c82016-07-12 21:18:46 +0900187 if (data)
188 mask |= SDHCI_INT_DATA_END;
Lei Wenaf62a552011-06-28 21:50:06 +0000189 } else
190 flags = SDHCI_CMD_RESP_SHORT;
191
192 if (cmd->resp_type & MMC_RSP_CRC)
193 flags |= SDHCI_CMD_CRC;
194 if (cmd->resp_type & MMC_RSP_OPCODE)
195 flags |= SDHCI_CMD_INDEX;
196 if (data)
197 flags |= SDHCI_CMD_DATA;
198
Darwin Rambo30e6d972013-12-19 15:13:25 -0800199 /* Set Transfer mode regarding to data flag */
Lei Wenaf62a552011-06-28 21:50:06 +0000200 if (data != 0) {
201 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
202 mode = SDHCI_TRNS_BLK_CNT_EN;
203 trans_bytes = data->blocks * data->blocksize;
204 if (data->blocks > 1)
205 mode |= SDHCI_TRNS_MULTI;
206
207 if (data->flags == MMC_DATA_READ)
208 mode |= SDHCI_TRNS_READ;
209
210#ifdef CONFIG_MMC_SDMA
211 if (data->flags == MMC_DATA_READ)
Rob Herring3c1fcb72015-03-17 15:46:38 -0500212 start_addr = (unsigned long)data->dest;
Lei Wenaf62a552011-06-28 21:50:06 +0000213 else
Rob Herring3c1fcb72015-03-17 15:46:38 -0500214 start_addr = (unsigned long)data->src;
Lei Wenaf62a552011-06-28 21:50:06 +0000215 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
216 (start_addr & 0x7) != 0x0) {
217 is_aligned = 0;
Rob Herring3c1fcb72015-03-17 15:46:38 -0500218 start_addr = (unsigned long)aligned_buffer;
Lei Wenaf62a552011-06-28 21:50:06 +0000219 if (data->flags != MMC_DATA_READ)
220 memcpy(aligned_buffer, data->src, trans_bytes);
221 }
222
Stefan Roese492d3222015-06-29 14:58:09 +0200223#if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
224 /*
225 * Always use this bounce-buffer when
226 * CONFIG_FIXED_SDHCI_ALIGNED_BUFFER is defined
227 */
228 is_aligned = 0;
229 start_addr = (unsigned long)aligned_buffer;
230 if (data->flags != MMC_DATA_READ)
231 memcpy(aligned_buffer, data->src, trans_bytes);
232#endif
233
Lei Wenaf62a552011-06-28 21:50:06 +0000234 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
235 mode |= SDHCI_TRNS_DMA;
236#endif
237 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
238 data->blocksize),
239 SDHCI_BLOCK_SIZE);
240 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
241 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500242 } else if (cmd->resp_type & MMC_RSP_BUSY) {
243 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000244 }
245
246 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
247#ifdef CONFIG_MMC_SDMA
Lei Wen2c2ec4c2011-10-08 04:14:54 +0000248 flush_cache(start_addr, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000249#endif
250 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
Stefan Roese29905a42015-06-29 14:58:08 +0200251 start = get_timer(0);
Lei Wenaf62a552011-06-28 21:50:06 +0000252 do {
253 stat = sdhci_readl(host, SDHCI_INT_STATUS);
254 if (stat & SDHCI_INT_ERROR)
255 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000256
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900257 if (get_timer(start) >= SDHCI_READ_STATUS_TIMEOUT) {
258 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B) {
259 return 0;
260 } else {
261 printf("%s: Timeout for status update!\n",
262 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900263 return -ETIMEDOUT;
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900264 }
Jaehoon Chung3a638322012-04-23 02:36:25 +0000265 }
Masahiro Yamadabae4a1f2016-07-10 00:40:22 +0900266 } while ((stat & mask) != mask);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000267
Lei Wenaf62a552011-06-28 21:50:06 +0000268 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
269 sdhci_cmd_done(host, cmd);
270 sdhci_writel(host, mask, SDHCI_INT_STATUS);
271 } else
272 ret = -1;
273
274 if (!ret && data)
275 ret = sdhci_transfer_data(host, data, start_addr);
276
Tushar Behera13243f22012-09-20 20:31:57 +0000277 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
278 udelay(1000);
279
Lei Wenaf62a552011-06-28 21:50:06 +0000280 stat = sdhci_readl(host, SDHCI_INT_STATUS);
281 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
282 if (!ret) {
283 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
284 !is_aligned && (data->flags == MMC_DATA_READ))
285 memcpy(data->dest, aligned_buffer, trans_bytes);
286 return 0;
287 }
288
289 sdhci_reset(host, SDHCI_RESET_CMD);
290 sdhci_reset(host, SDHCI_RESET_DATA);
291 if (stat & SDHCI_INT_TIMEOUT)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900292 return -ETIMEDOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000293 else
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900294 return -ECOMM;
Lei Wenaf62a552011-06-28 21:50:06 +0000295}
296
297static int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
298{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200299 struct sdhci_host *host = mmc->priv;
Wenyou Yang79667b72015-09-22 14:59:25 +0800300 unsigned int div, clk, timeout, reg;
Lei Wenaf62a552011-06-28 21:50:06 +0000301
Wenyou Yang79667b72015-09-22 14:59:25 +0800302 /* Wait max 20 ms */
303 timeout = 200;
304 while (sdhci_readl(host, SDHCI_PRESENT_STATE) &
305 (SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT)) {
306 if (timeout == 0) {
307 printf("%s: Timeout to wait cmd & data inhibit\n",
308 __func__);
309 return -1;
310 }
311
312 timeout--;
313 udelay(100);
314 }
315
316 reg = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
Siva Durga Prasad Paladugu1d405e22016-02-25 12:51:50 +0530317 reg &= ~(SDHCI_CLOCK_CARD_EN | SDHCI_CLOCK_INT_EN);
Wenyou Yang79667b72015-09-22 14:59:25 +0800318 sdhci_writew(host, reg, SDHCI_CLOCK_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000319
320 if (clock == 0)
321 return 0;
322
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900323 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Lei Wenaf62a552011-06-28 21:50:06 +0000324 /* Version 3.00 divisors must be a multiple of 2. */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200325 if (mmc->cfg->f_max <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000326 div = 1;
327 else {
328 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300; div += 2) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200329 if ((mmc->cfg->f_max / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000330 break;
331 }
332 }
333 } else {
334 /* Version 2.00 divisors must be a power of 2. */
335 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200336 if ((mmc->cfg->f_max / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000337 break;
338 }
339 }
340 div >>= 1;
341
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000342 if (host->set_clock)
343 host->set_clock(host->index, div);
344
Lei Wenaf62a552011-06-28 21:50:06 +0000345 clk = (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
346 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
347 << SDHCI_DIVIDER_HI_SHIFT;
348 clk |= SDHCI_CLOCK_INT_EN;
349 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
350
351 /* Wait max 20 ms */
352 timeout = 20;
353 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
354 & SDHCI_CLOCK_INT_STABLE)) {
355 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800356 printf("%s: Internal clock never stabilised.\n",
357 __func__);
Lei Wenaf62a552011-06-28 21:50:06 +0000358 return -1;
359 }
360 timeout--;
361 udelay(1000);
362 }
363
364 clk |= SDHCI_CLOCK_CARD_EN;
365 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
366 return 0;
367}
368
369static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
370{
371 u8 pwr = 0;
372
373 if (power != (unsigned short)-1) {
374 switch (1 << power) {
375 case MMC_VDD_165_195:
376 pwr = SDHCI_POWER_180;
377 break;
378 case MMC_VDD_29_30:
379 case MMC_VDD_30_31:
380 pwr = SDHCI_POWER_300;
381 break;
382 case MMC_VDD_32_33:
383 case MMC_VDD_33_34:
384 pwr = SDHCI_POWER_330;
385 break;
386 }
387 }
388
389 if (pwr == 0) {
390 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
391 return;
392 }
393
Mela Custodio688c2d12012-11-03 17:40:16 +0000394 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
395 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
396
Lei Wenaf62a552011-06-28 21:50:06 +0000397 pwr |= SDHCI_POWER_ON;
398
399 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
400}
401
Simon Glassef1e4ed2016-06-12 23:30:28 -0600402#ifdef CONFIG_DM_MMC_OPS
403static int sdhci_set_ios(struct udevice *dev)
404{
405 struct mmc *mmc = mmc_get_mmc_dev(dev);
406#else
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200407static void sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000408{
Simon Glassef1e4ed2016-06-12 23:30:28 -0600409#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000410 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200411 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000412
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000413 if (host->set_control_reg)
414 host->set_control_reg(host);
415
Lei Wenaf62a552011-06-28 21:50:06 +0000416 if (mmc->clock != host->clock)
417 sdhci_set_clock(mmc, mmc->clock);
418
419 /* Set bus width */
420 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
421 if (mmc->bus_width == 8) {
422 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900423 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
424 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000425 ctrl |= SDHCI_CTRL_8BITBUS;
426 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700427 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
428 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000429 ctrl &= ~SDHCI_CTRL_8BITBUS;
430 if (mmc->bus_width == 4)
431 ctrl |= SDHCI_CTRL_4BITBUS;
432 else
433 ctrl &= ~SDHCI_CTRL_4BITBUS;
434 }
435
436 if (mmc->clock > 26000000)
437 ctrl |= SDHCI_CTRL_HISPD;
438 else
439 ctrl &= ~SDHCI_CTRL_HISPD;
440
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000441 if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
442 ctrl &= ~SDHCI_CTRL_HISPD;
443
Lei Wenaf62a552011-06-28 21:50:06 +0000444 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Simon Glassef1e4ed2016-06-12 23:30:28 -0600445#ifdef CONFIG_DM_MMC_OPS
446 return 0;
447#endif
Lei Wenaf62a552011-06-28 21:50:06 +0000448}
449
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200450static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000451{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200452 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000453
454 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && !aligned_buffer) {
455 aligned_buffer = memalign(8, 512*1024);
456 if (!aligned_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800457 printf("%s: Aligned buffer alloc failed!!!\n",
458 __func__);
Lei Wenaf62a552011-06-28 21:50:06 +0000459 return -1;
460 }
461 }
462
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200463 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000464
465 if (host->quirks & SDHCI_QUIRK_NO_CD) {
Andrei Pistirica102142c2016-01-28 15:30:18 +0530466#if defined(CONFIG_PIC32_SDHCI)
467 /* PIC32 SDHCI CD errata:
468 * - set CD_TEST and clear CD_TEST_INS bit
469 */
470 sdhci_writeb(host, SDHCI_CTRL_CD_TEST, SDHCI_HOST_CONTROL);
471#else
Joe Hershberger470dcc72012-08-17 10:18:55 +0000472 unsigned int status;
473
Matt Reimere113fe32015-02-23 14:56:58 -0700474 sdhci_writeb(host, SDHCI_CTRL_CD_TEST_INS | SDHCI_CTRL_CD_TEST,
Joe Hershberger470dcc72012-08-17 10:18:55 +0000475 SDHCI_HOST_CONTROL);
476
477 status = sdhci_readl(host, SDHCI_PRESENT_STATE);
478 while ((!(status & SDHCI_CARD_PRESENT)) ||
479 (!(status & SDHCI_CARD_STATE_STABLE)) ||
480 (!(status & SDHCI_CARD_DETECT_PIN_LEVEL)))
481 status = sdhci_readl(host, SDHCI_PRESENT_STATE);
Andrei Pistirica102142c2016-01-28 15:30:18 +0530482#endif
Joe Hershberger470dcc72012-08-17 10:18:55 +0000483 }
484
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000485 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800486 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
487 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000488 /* Mask all sdhci interrupt sources */
489 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000490
Lei Wenaf62a552011-06-28 21:50:06 +0000491 return 0;
492}
493
Simon Glassef1e4ed2016-06-12 23:30:28 -0600494#ifdef CONFIG_DM_MMC_OPS
495int sdhci_probe(struct udevice *dev)
496{
497 struct mmc *mmc = mmc_get_mmc_dev(dev);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200498
Simon Glassef1e4ed2016-06-12 23:30:28 -0600499 return sdhci_init(mmc);
500}
501
502const struct dm_mmc_ops sdhci_ops = {
503 .send_cmd = sdhci_send_command,
504 .set_ios = sdhci_set_ios,
505};
506#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200507static const struct mmc_ops sdhci_ops = {
508 .send_cmd = sdhci_send_command,
509 .set_ios = sdhci_set_ios,
510 .init = sdhci_init,
511};
Simon Glassef1e4ed2016-06-12 23:30:28 -0600512#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200513
Jaehoon Chung6a879ec2016-07-26 19:06:23 +0900514int sdhci_setup_cfg(struct mmc_config *cfg, const char *name,
Simon Glass2a809092016-06-12 23:30:27 -0600515 uint caps, u32 max_clk, u32 min_clk, uint version,
516 uint quirks, uint host_caps)
517{
518 cfg->name = name;
519#ifndef CONFIG_DM_MMC_OPS
520 cfg->ops = &sdhci_ops;
521#endif
522 if (max_clk)
523 cfg->f_max = max_clk;
524 else {
525 if (version >= SDHCI_SPEC_300)
526 cfg->f_max = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
527 SDHCI_CLOCK_BASE_SHIFT;
528 else
529 cfg->f_max = (caps & SDHCI_CLOCK_BASE_MASK) >>
530 SDHCI_CLOCK_BASE_SHIFT;
531 cfg->f_max *= 1000000;
532 }
533 if (cfg->f_max == 0)
534 return -EINVAL;
535 if (min_clk)
536 cfg->f_min = min_clk;
537 else {
538 if (version >= SDHCI_SPEC_300)
539 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
540 else
541 cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
542 }
543 cfg->voltages = 0;
544 if (caps & SDHCI_CAN_VDD_330)
545 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
546 if (caps & SDHCI_CAN_VDD_300)
547 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
548 if (caps & SDHCI_CAN_VDD_180)
549 cfg->voltages |= MMC_VDD_165_195;
550
551 cfg->host_caps = MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
552 if (version >= SDHCI_SPEC_300) {
553 if (caps & SDHCI_CAN_DO_8BIT)
554 cfg->host_caps |= MMC_MODE_8BIT;
555 }
556
Simon Glass2a809092016-06-12 23:30:27 -0600557 if (host_caps)
558 cfg->host_caps |= host_caps;
559
Simon Glassef1e4ed2016-06-12 23:30:28 -0600560
Simon Glass2a809092016-06-12 23:30:27 -0600561 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
562
563 return 0;
564}
565
Simon Glassef1e4ed2016-06-12 23:30:28 -0600566#ifdef CONFIG_BLK
567int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
568{
569 return mmc_bind(dev, mmc, cfg);
570}
571#else
Lei Wenaf62a552011-06-28 21:50:06 +0000572int add_sdhci(struct sdhci_host *host, u32 max_clk, u32 min_clk)
573{
Lei Wenaf62a552011-06-28 21:50:06 +0000574 unsigned int caps;
575
Lei Wenaf62a552011-06-28 21:50:06 +0000576 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
577#ifdef CONFIG_MMC_SDMA
578 if (!(caps & SDHCI_CAN_DO_SDMA)) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800579 printf("%s: Your controller doesn't support SDMA!!\n",
580 __func__);
Lei Wenaf62a552011-06-28 21:50:06 +0000581 return -1;
582 }
583#endif
584
Jaehoon Chung6a879ec2016-07-26 19:06:23 +0900585 if (sdhci_setup_cfg(&host->cfg, host->name, caps,
Simon Glass2a809092016-06-12 23:30:27 -0600586 max_clk, min_clk, SDHCI_GET_VERSION(host),
587 host->quirks, host->host_caps)) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800588 printf("%s: Hardware doesn't specify base clock frequency\n",
589 __func__);
Simon Glass2a809092016-06-12 23:30:27 -0600590 return -EINVAL;
Lei Wenaf62a552011-06-28 21:50:06 +0000591 }
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000592
593 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200594 host->cfg.voltages |= host->voltages;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000595
Lei Wenaf62a552011-06-28 21:50:06 +0000596 sdhci_reset(host, SDHCI_RESET_ALL);
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200597
598 host->mmc = mmc_create(&host->cfg, host);
599 if (host->mmc == NULL) {
600 printf("%s: mmc create fail!\n", __func__);
601 return -1;
602 }
Lei Wenaf62a552011-06-28 21:50:06 +0000603
604 return 0;
605}
Simon Glassef1e4ed2016-06-12 23:30:28 -0600606#endif