blob: 75556a332de216f368612536d4ee5a3c770cf90c [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>
12#include <malloc.h>
13#include <mmc.h>
14#include <sdhci.h>
15
16void *aligned_buffer;
17
18static void sdhci_reset(struct sdhci_host *host, u8 mask)
19{
20 unsigned long timeout;
21
22 /* Wait max 100 ms */
23 timeout = 100;
24 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
25 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
26 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080027 printf("%s: Reset 0x%x never completed.\n",
28 __func__, (int)mask);
Lei Wenaf62a552011-06-28 21:50:06 +000029 return;
30 }
31 timeout--;
32 udelay(1000);
33 }
34}
35
36static void sdhci_cmd_done(struct sdhci_host *host, struct mmc_cmd *cmd)
37{
38 int i;
39 if (cmd->resp_type & MMC_RSP_136) {
40 /* CRC is stripped so we need to do some shifting. */
41 for (i = 0; i < 4; i++) {
42 cmd->response[i] = sdhci_readl(host,
43 SDHCI_RESPONSE + (3-i)*4) << 8;
44 if (i != 3)
45 cmd->response[i] |= sdhci_readb(host,
46 SDHCI_RESPONSE + (3-i)*4-1);
47 }
48 } else {
49 cmd->response[0] = sdhci_readl(host, SDHCI_RESPONSE);
50 }
51}
52
53static void sdhci_transfer_pio(struct sdhci_host *host, struct mmc_data *data)
54{
55 int i;
56 char *offs;
57 for (i = 0; i < data->blocksize; i += 4) {
58 offs = data->dest + i;
59 if (data->flags == MMC_DATA_READ)
60 *(u32 *)offs = sdhci_readl(host, SDHCI_BUFFER);
61 else
62 sdhci_writel(host, *(u32 *)offs, SDHCI_BUFFER);
63 }
64}
65
66static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data,
67 unsigned int start_addr)
68{
Lei Wena004abd2011-10-08 04:14:57 +000069 unsigned int stat, rdy, mask, timeout, block = 0;
Jaehoon Chung804c7f42012-09-20 20:31:55 +000070#ifdef CONFIG_MMC_SDMA
71 unsigned char ctrl;
Juhyun \(Justin\) Oh2c011842013-09-13 18:06:00 +000072 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Jaehoon Chung804c7f42012-09-20 20:31:55 +000073 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Juhyun \(Justin\) Oh2c011842013-09-13 18:06:00 +000074 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Jaehoon Chung804c7f42012-09-20 20:31:55 +000075#endif
Lei Wenaf62a552011-06-28 21:50:06 +000076
Jaehoon Chung5d48e422012-09-20 20:31:54 +000077 timeout = 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +000078 rdy = SDHCI_INT_SPACE_AVAIL | SDHCI_INT_DATA_AVAIL;
79 mask = SDHCI_DATA_AVAILABLE | SDHCI_SPACE_AVAILABLE;
80 do {
81 stat = sdhci_readl(host, SDHCI_INT_STATUS);
82 if (stat & SDHCI_INT_ERROR) {
Darwin Rambo30e6d972013-12-19 15:13:25 -080083 printf("%s: Error detected in status(0x%X)!\n",
84 __func__, stat);
Lei Wenaf62a552011-06-28 21:50:06 +000085 return -1;
86 }
87 if (stat & rdy) {
88 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & mask))
89 continue;
90 sdhci_writel(host, rdy, SDHCI_INT_STATUS);
91 sdhci_transfer_pio(host, data);
92 data->dest += data->blocksize;
93 if (++block >= data->blocks)
94 break;
95 }
96#ifdef CONFIG_MMC_SDMA
97 if (stat & SDHCI_INT_DMA_END) {
98 sdhci_writel(host, SDHCI_INT_DMA_END, SDHCI_INT_STATUS);
Lei Wen3e81c772011-10-08 04:14:58 +000099 start_addr &= ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
Lei Wenaf62a552011-06-28 21:50:06 +0000100 start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
101 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
102 }
103#endif
Lei Wena004abd2011-10-08 04:14:57 +0000104 if (timeout-- > 0)
105 udelay(10);
106 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800107 printf("%s: Transfer data timeout\n", __func__);
Lei Wena004abd2011-10-08 04:14:57 +0000108 return -1;
109 }
Lei Wenaf62a552011-06-28 21:50:06 +0000110 } while (!(stat & SDHCI_INT_DATA_END));
111 return 0;
112}
113
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200114/*
115 * No command will be sent by driver if card is busy, so driver must wait
116 * for card ready state.
117 * Every time when card is busy after timeout then (last) timeout value will be
118 * increased twice but only if it doesn't exceed global defined maximum.
119 * Each function call will use last timeout value. Max timeout can be redefined
120 * in board config file.
121 */
122#ifndef CONFIG_SDHCI_CMD_MAX_TIMEOUT
123#define CONFIG_SDHCI_CMD_MAX_TIMEOUT 3200
124#endif
125#define CONFIG_SDHCI_CMD_DEFAULT_TIMEOUT 100
126
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200127static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
Lei Wenaf62a552011-06-28 21:50:06 +0000128 struct mmc_data *data)
129{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200130 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000131 unsigned int stat = 0;
132 int ret = 0;
133 int trans_bytes = 0, is_aligned = 1;
134 u32 mask, flags, mode;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200135 unsigned int time = 0, start_addr = 0;
Jaehoon Chung3a638322012-04-23 02:36:25 +0000136 unsigned int retry = 10000;
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200137 int mmc_dev = mmc->block_dev.dev;
Lei Wenaf62a552011-06-28 21:50:06 +0000138
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200139 /* Timeout unit - ms */
140 static unsigned int cmd_timeout = CONFIG_SDHCI_CMD_DEFAULT_TIMEOUT;
Lei Wenaf62a552011-06-28 21:50:06 +0000141
142 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
143 mask = SDHCI_CMD_INHIBIT | SDHCI_DATA_INHIBIT;
144
145 /* We shouldn't wait for data inihibit for stop commands, even
146 though they might use busy signaling */
147 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
148 mask &= ~SDHCI_DATA_INHIBIT;
149
150 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200151 if (time >= cmd_timeout) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800152 printf("%s: MMC: %d busy ", __func__, mmc_dev);
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200153 if (2 * cmd_timeout <= CONFIG_SDHCI_CMD_MAX_TIMEOUT) {
154 cmd_timeout += cmd_timeout;
155 printf("timeout increasing to: %u ms.\n",
156 cmd_timeout);
157 } else {
158 puts("timeout.\n");
159 return COMM_ERR;
160 }
Lei Wenaf62a552011-06-28 21:50:06 +0000161 }
Przemyslaw Marczak56b34bc2013-10-08 18:12:09 +0200162 time++;
Lei Wenaf62a552011-06-28 21:50:06 +0000163 udelay(1000);
164 }
165
166 mask = SDHCI_INT_RESPONSE;
167 if (!(cmd->resp_type & MMC_RSP_PRESENT))
168 flags = SDHCI_CMD_RESP_NONE;
169 else if (cmd->resp_type & MMC_RSP_136)
170 flags = SDHCI_CMD_RESP_LONG;
171 else if (cmd->resp_type & MMC_RSP_BUSY) {
172 flags = SDHCI_CMD_RESP_SHORT_BUSY;
173 mask |= SDHCI_INT_DATA_END;
174 } else
175 flags = SDHCI_CMD_RESP_SHORT;
176
177 if (cmd->resp_type & MMC_RSP_CRC)
178 flags |= SDHCI_CMD_CRC;
179 if (cmd->resp_type & MMC_RSP_OPCODE)
180 flags |= SDHCI_CMD_INDEX;
181 if (data)
182 flags |= SDHCI_CMD_DATA;
183
Darwin Rambo30e6d972013-12-19 15:13:25 -0800184 /* Set Transfer mode regarding to data flag */
Lei Wenaf62a552011-06-28 21:50:06 +0000185 if (data != 0) {
186 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
187 mode = SDHCI_TRNS_BLK_CNT_EN;
188 trans_bytes = data->blocks * data->blocksize;
189 if (data->blocks > 1)
190 mode |= SDHCI_TRNS_MULTI;
191
192 if (data->flags == MMC_DATA_READ)
193 mode |= SDHCI_TRNS_READ;
194
195#ifdef CONFIG_MMC_SDMA
196 if (data->flags == MMC_DATA_READ)
Rob Herring3c1fcb72015-03-17 15:46:38 -0500197 start_addr = (unsigned long)data->dest;
Lei Wenaf62a552011-06-28 21:50:06 +0000198 else
Rob Herring3c1fcb72015-03-17 15:46:38 -0500199 start_addr = (unsigned long)data->src;
Lei Wenaf62a552011-06-28 21:50:06 +0000200 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
201 (start_addr & 0x7) != 0x0) {
202 is_aligned = 0;
Rob Herring3c1fcb72015-03-17 15:46:38 -0500203 start_addr = (unsigned long)aligned_buffer;
Lei Wenaf62a552011-06-28 21:50:06 +0000204 if (data->flags != MMC_DATA_READ)
205 memcpy(aligned_buffer, data->src, trans_bytes);
206 }
207
208 sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
209 mode |= SDHCI_TRNS_DMA;
210#endif
211 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
212 data->blocksize),
213 SDHCI_BLOCK_SIZE);
214 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
215 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Kevin Liu5e1c23c2015-03-23 17:57:00 -0500216 } else if (cmd->resp_type & MMC_RSP_BUSY) {
217 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
Lei Wenaf62a552011-06-28 21:50:06 +0000218 }
219
220 sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
221#ifdef CONFIG_MMC_SDMA
Lei Wen2c2ec4c2011-10-08 04:14:54 +0000222 flush_cache(start_addr, trans_bytes);
Lei Wenaf62a552011-06-28 21:50:06 +0000223#endif
224 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
225 do {
226 stat = sdhci_readl(host, SDHCI_INT_STATUS);
227 if (stat & SDHCI_INT_ERROR)
228 break;
Jaehoon Chung3a638322012-04-23 02:36:25 +0000229 if (--retry == 0)
230 break;
Lei Wenaf62a552011-06-28 21:50:06 +0000231 } while ((stat & mask) != mask);
232
Jaehoon Chung3a638322012-04-23 02:36:25 +0000233 if (retry == 0) {
234 if (host->quirks & SDHCI_QUIRK_BROKEN_R1B)
235 return 0;
236 else {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800237 printf("%s: Timeout for status update!\n", __func__);
Jaehoon Chung3a638322012-04-23 02:36:25 +0000238 return TIMEOUT;
239 }
240 }
241
Lei Wenaf62a552011-06-28 21:50:06 +0000242 if ((stat & (SDHCI_INT_ERROR | mask)) == mask) {
243 sdhci_cmd_done(host, cmd);
244 sdhci_writel(host, mask, SDHCI_INT_STATUS);
245 } else
246 ret = -1;
247
248 if (!ret && data)
249 ret = sdhci_transfer_data(host, data, start_addr);
250
Tushar Behera13243f22012-09-20 20:31:57 +0000251 if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
252 udelay(1000);
253
Lei Wenaf62a552011-06-28 21:50:06 +0000254 stat = sdhci_readl(host, SDHCI_INT_STATUS);
255 sdhci_writel(host, SDHCI_INT_ALL_MASK, SDHCI_INT_STATUS);
256 if (!ret) {
257 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
258 !is_aligned && (data->flags == MMC_DATA_READ))
259 memcpy(data->dest, aligned_buffer, trans_bytes);
260 return 0;
261 }
262
263 sdhci_reset(host, SDHCI_RESET_CMD);
264 sdhci_reset(host, SDHCI_RESET_DATA);
265 if (stat & SDHCI_INT_TIMEOUT)
266 return TIMEOUT;
267 else
268 return COMM_ERR;
269}
270
271static int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
272{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200273 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000274 unsigned int div, clk, timeout;
275
276 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
277
278 if (clock == 0)
279 return 0;
280
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900281 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Lei Wenaf62a552011-06-28 21:50:06 +0000282 /* Version 3.00 divisors must be a multiple of 2. */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200283 if (mmc->cfg->f_max <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000284 div = 1;
285 else {
286 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300; div += 2) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200287 if ((mmc->cfg->f_max / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000288 break;
289 }
290 }
291 } else {
292 /* Version 2.00 divisors must be a power of 2. */
293 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200294 if ((mmc->cfg->f_max / div) <= clock)
Lei Wenaf62a552011-06-28 21:50:06 +0000295 break;
296 }
297 }
298 div >>= 1;
299
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +0000300 if (host->set_clock)
301 host->set_clock(host->index, div);
302
Lei Wenaf62a552011-06-28 21:50:06 +0000303 clk = (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
304 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
305 << SDHCI_DIVIDER_HI_SHIFT;
306 clk |= SDHCI_CLOCK_INT_EN;
307 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
308
309 /* Wait max 20 ms */
310 timeout = 20;
311 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
312 & SDHCI_CLOCK_INT_STABLE)) {
313 if (timeout == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800314 printf("%s: Internal clock never stabilised.\n",
315 __func__);
Lei Wenaf62a552011-06-28 21:50:06 +0000316 return -1;
317 }
318 timeout--;
319 udelay(1000);
320 }
321
322 clk |= SDHCI_CLOCK_CARD_EN;
323 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
324 return 0;
325}
326
327static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
328{
329 u8 pwr = 0;
330
331 if (power != (unsigned short)-1) {
332 switch (1 << power) {
333 case MMC_VDD_165_195:
334 pwr = SDHCI_POWER_180;
335 break;
336 case MMC_VDD_29_30:
337 case MMC_VDD_30_31:
338 pwr = SDHCI_POWER_300;
339 break;
340 case MMC_VDD_32_33:
341 case MMC_VDD_33_34:
342 pwr = SDHCI_POWER_330;
343 break;
344 }
345 }
346
347 if (pwr == 0) {
348 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
349 return;
350 }
351
Mela Custodio688c2d12012-11-03 17:40:16 +0000352 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
353 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
354
Lei Wenaf62a552011-06-28 21:50:06 +0000355 pwr |= SDHCI_POWER_ON;
356
357 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
358}
359
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200360static void sdhci_set_ios(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000361{
362 u32 ctrl;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200363 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000364
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000365 if (host->set_control_reg)
366 host->set_control_reg(host);
367
Lei Wenaf62a552011-06-28 21:50:06 +0000368 if (mmc->clock != host->clock)
369 sdhci_set_clock(mmc, mmc->clock);
370
371 /* Set bus width */
372 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
373 if (mmc->bus_width == 8) {
374 ctrl &= ~SDHCI_CTRL_4BITBUS;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900375 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
376 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000377 ctrl |= SDHCI_CTRL_8BITBUS;
378 } else {
Matt Reimerf88a4292015-02-19 11:22:53 -0700379 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
380 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
Lei Wenaf62a552011-06-28 21:50:06 +0000381 ctrl &= ~SDHCI_CTRL_8BITBUS;
382 if (mmc->bus_width == 4)
383 ctrl |= SDHCI_CTRL_4BITBUS;
384 else
385 ctrl &= ~SDHCI_CTRL_4BITBUS;
386 }
387
388 if (mmc->clock > 26000000)
389 ctrl |= SDHCI_CTRL_HISPD;
390 else
391 ctrl &= ~SDHCI_CTRL_HISPD;
392
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000393 if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
394 ctrl &= ~SDHCI_CTRL_HISPD;
395
Lei Wenaf62a552011-06-28 21:50:06 +0000396 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
397}
398
Jeroen Hofstee6588c782014-10-08 22:57:43 +0200399static int sdhci_init(struct mmc *mmc)
Lei Wenaf62a552011-06-28 21:50:06 +0000400{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200401 struct sdhci_host *host = mmc->priv;
Lei Wenaf62a552011-06-28 21:50:06 +0000402
403 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && !aligned_buffer) {
404 aligned_buffer = memalign(8, 512*1024);
405 if (!aligned_buffer) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800406 printf("%s: Aligned buffer alloc failed!!!\n",
407 __func__);
Lei Wenaf62a552011-06-28 21:50:06 +0000408 return -1;
409 }
410 }
411
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200412 sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
Joe Hershberger470dcc72012-08-17 10:18:55 +0000413
414 if (host->quirks & SDHCI_QUIRK_NO_CD) {
415 unsigned int status;
416
Matt Reimere113fe32015-02-23 14:56:58 -0700417 sdhci_writeb(host, SDHCI_CTRL_CD_TEST_INS | SDHCI_CTRL_CD_TEST,
Joe Hershberger470dcc72012-08-17 10:18:55 +0000418 SDHCI_HOST_CONTROL);
419
420 status = sdhci_readl(host, SDHCI_PRESENT_STATE);
421 while ((!(status & SDHCI_CARD_PRESENT)) ||
422 (!(status & SDHCI_CARD_STATE_STABLE)) ||
423 (!(status & SDHCI_CARD_DETECT_PIN_LEVEL)))
424 status = sdhci_readl(host, SDHCI_PRESENT_STATE);
425 }
426
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000427 /* Enable only interrupts served by the SD controller */
Darwin Rambo30e6d972013-12-19 15:13:25 -0800428 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
429 SDHCI_INT_ENABLE);
Łukasz Majewskice0c1bc2013-01-11 05:08:54 +0000430 /* Mask all sdhci interrupt sources */
431 sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
Lei Wenaf62a552011-06-28 21:50:06 +0000432
Lei Wenaf62a552011-06-28 21:50:06 +0000433 return 0;
434}
435
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200436
437static const struct mmc_ops sdhci_ops = {
438 .send_cmd = sdhci_send_command,
439 .set_ios = sdhci_set_ios,
440 .init = sdhci_init,
441};
442
Lei Wenaf62a552011-06-28 21:50:06 +0000443int add_sdhci(struct sdhci_host *host, u32 max_clk, u32 min_clk)
444{
Lei Wenaf62a552011-06-28 21:50:06 +0000445 unsigned int caps;
446
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200447 host->cfg.name = host->name;
448 host->cfg.ops = &sdhci_ops;
Lei Wenaf62a552011-06-28 21:50:06 +0000449
450 caps = sdhci_readl(host, SDHCI_CAPABILITIES);
451#ifdef CONFIG_MMC_SDMA
452 if (!(caps & SDHCI_CAN_DO_SDMA)) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800453 printf("%s: Your controller doesn't support SDMA!!\n",
454 __func__);
Lei Wenaf62a552011-06-28 21:50:06 +0000455 return -1;
456 }
457#endif
458
459 if (max_clk)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200460 host->cfg.f_max = max_clk;
Lei Wenaf62a552011-06-28 21:50:06 +0000461 else {
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900462 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200463 host->cfg.f_max = (caps & SDHCI_CLOCK_V3_BASE_MASK)
Lei Wenaf62a552011-06-28 21:50:06 +0000464 >> SDHCI_CLOCK_BASE_SHIFT;
465 else
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200466 host->cfg.f_max = (caps & SDHCI_CLOCK_BASE_MASK)
Lei Wenaf62a552011-06-28 21:50:06 +0000467 >> SDHCI_CLOCK_BASE_SHIFT;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200468 host->cfg.f_max *= 1000000;
Lei Wenaf62a552011-06-28 21:50:06 +0000469 }
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200470 if (host->cfg.f_max == 0) {
Darwin Rambo30e6d972013-12-19 15:13:25 -0800471 printf("%s: Hardware doesn't specify base clock frequency\n",
472 __func__);
Lei Wenaf62a552011-06-28 21:50:06 +0000473 return -1;
474 }
475 if (min_clk)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200476 host->cfg.f_min = min_clk;
Lei Wenaf62a552011-06-28 21:50:06 +0000477 else {
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900478 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200479 host->cfg.f_min = host->cfg.f_max /
480 SDHCI_MAX_DIV_SPEC_300;
Lei Wenaf62a552011-06-28 21:50:06 +0000481 else
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200482 host->cfg.f_min = host->cfg.f_max /
483 SDHCI_MAX_DIV_SPEC_200;
Lei Wenaf62a552011-06-28 21:50:06 +0000484 }
485
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200486 host->cfg.voltages = 0;
Lei Wenaf62a552011-06-28 21:50:06 +0000487 if (caps & SDHCI_CAN_VDD_330)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200488 host->cfg.voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
Lei Wenaf62a552011-06-28 21:50:06 +0000489 if (caps & SDHCI_CAN_VDD_300)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200490 host->cfg.voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
Lei Wenaf62a552011-06-28 21:50:06 +0000491 if (caps & SDHCI_CAN_VDD_180)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200492 host->cfg.voltages |= MMC_VDD_165_195;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000493
494 if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200495 host->cfg.voltages |= host->voltages;
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000496
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200497 host->cfg.host_caps = MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
Jaehoon Chung113e5df2013-07-19 17:44:49 +0900498 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
Jagannadha Sutradharudu Teki1695b292013-05-21 15:01:36 +0530499 if (caps & SDHCI_CAN_DO_8BIT)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200500 host->cfg.host_caps |= MMC_MODE_8BIT;
Jagannadha Sutradharudu Teki1695b292013-05-21 15:01:36 +0530501 }
Jaehoon Chung236bfec2012-04-23 02:36:26 +0000502 if (host->host_caps)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200503 host->cfg.host_caps |= host->host_caps;
504
505 host->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
Lei Wenaf62a552011-06-28 21:50:06 +0000506
507 sdhci_reset(host, SDHCI_RESET_ALL);
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200508
509 host->mmc = mmc_create(&host->cfg, host);
510 if (host->mmc == NULL) {
511 printf("%s: mmc create fail!\n", __func__);
512 return -1;
513 }
Lei Wenaf62a552011-06-28 21:50:06 +0000514
515 return 0;
516}