Merge branch 'rmobile' of git://git.denx.de/u-boot-sh
[platform/kernel/u-boot.git] / drivers / mmc / sdhci.c
1 /*
2  * Copyright 2011, Marvell Semiconductor Inc.
3  * Lei Wen <leiwen@marvell.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  *
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 <errno.h>
13 #include <malloc.h>
14 #include <mmc.h>
15 #include <sdhci.h>
16
17 #if defined(CONFIG_FIXED_SDHCI_ALIGNED_BUFFER)
18 void *aligned_buffer = (void *)CONFIG_FIXED_SDHCI_ALIGNED_BUFFER;
19 #else
20 void *aligned_buffer;
21 #endif
22
23 static 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) {
32                         printf("%s: Reset 0x%x never completed.\n",
33                                __func__, (int)mask);
34                         return;
35                 }
36                 timeout--;
37                 udelay(1000);
38         }
39 }
40
41 static 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
58 static 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
71 static int sdhci_transfer_data(struct sdhci_host *host, struct mmc_data *data,
72                                 unsigned int start_addr)
73 {
74         unsigned int stat, rdy, mask, timeout, block = 0;
75 #ifdef CONFIG_MMC_SDMA
76         unsigned char ctrl;
77         ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
78         ctrl &= ~SDHCI_CTRL_DMA_MASK;
79         sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
80 #endif
81
82         timeout = 1000000;
83         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) {
88                         printf("%s: Error detected in status(0x%X)!\n",
89                                __func__, stat);
90                         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);
104                         start_addr &= ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1);
105                         start_addr += SDHCI_DEFAULT_BOUNDARY_SIZE;
106                         sdhci_writel(host, start_addr, SDHCI_DMA_ADDRESS);
107                 }
108 #endif
109                 if (timeout-- > 0)
110                         udelay(10);
111                 else {
112                         printf("%s: Transfer data timeout\n", __func__);
113                         return -1;
114                 }
115         } while (!(stat & SDHCI_INT_DATA_END));
116         return 0;
117 }
118
119 /*
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
131 #define SDHCI_READ_STATUS_TIMEOUT               1000
132
133 #ifdef CONFIG_DM_MMC_OPS
134 static int sdhci_send_command(struct udevice *dev, struct mmc_cmd *cmd,
135                               struct mmc_data *data)
136 {
137         struct mmc *mmc = mmc_get_mmc_dev(dev);
138
139 #else
140 static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
141                               struct mmc_data *data)
142 {
143 #endif
144         struct sdhci_host *host = mmc->priv;
145         unsigned int stat = 0;
146         int ret = 0;
147         int trans_bytes = 0, is_aligned = 1;
148         u32 mask, flags, mode;
149         unsigned int time = 0, start_addr = 0;
150         int mmc_dev = mmc_get_blk_desc(mmc)->devnum;
151         unsigned start = get_timer(0);
152
153         /* Timeout unit - ms */
154         static unsigned int cmd_timeout = CONFIG_SDHCI_CMD_DEFAULT_TIMEOUT;
155
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) {
165                 if (time >= cmd_timeout) {
166                         printf("%s: MMC: %d busy ", __func__, mmc_dev);
167                         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");
173                                 return -ECOMM;
174                         }
175                 }
176                 time++;
177                 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;
187                 if (data)
188                         mask |= SDHCI_INT_DATA_END;
189         } 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
199         /* Set Transfer mode regarding to data flag */
200         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)
212                         start_addr = (unsigned long)data->dest;
213                 else
214                         start_addr = (unsigned long)data->src;
215                 if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
216                                 (start_addr & 0x7) != 0x0) {
217                         is_aligned = 0;
218                         start_addr = (unsigned long)aligned_buffer;
219                         if (data->flags != MMC_DATA_READ)
220                                 memcpy(aligned_buffer, data->src, trans_bytes);
221                 }
222
223 #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
234                 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);
242         } else if (cmd->resp_type & MMC_RSP_BUSY) {
243                 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
244         }
245
246         sdhci_writel(host, cmd->cmdarg, SDHCI_ARGUMENT);
247 #ifdef CONFIG_MMC_SDMA
248         flush_cache(start_addr, trans_bytes);
249 #endif
250         sdhci_writew(host, SDHCI_MAKE_CMD(cmd->cmdidx, flags), SDHCI_COMMAND);
251         start = get_timer(0);
252         do {
253                 stat = sdhci_readl(host, SDHCI_INT_STATUS);
254                 if (stat & SDHCI_INT_ERROR)
255                         break;
256
257                 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__);
263                                 return -ETIMEDOUT;
264                         }
265                 }
266         } while ((stat & mask) != mask);
267
268         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
277         if (host->quirks & SDHCI_QUIRK_WAIT_SEND_CMD)
278                 udelay(1000);
279
280         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)
292                 return -ETIMEDOUT;
293         else
294                 return -ECOMM;
295 }
296
297 static int sdhci_set_clock(struct mmc *mmc, unsigned int clock)
298 {
299         struct sdhci_host *host = mmc->priv;
300         unsigned int div, clk, timeout, reg;
301
302         /* 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);
317         reg &= ~(SDHCI_CLOCK_CARD_EN | SDHCI_CLOCK_INT_EN);
318         sdhci_writew(host, reg, SDHCI_CLOCK_CONTROL);
319
320         if (clock == 0)
321                 return 0;
322
323         if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
324                 /* Version 3.00 divisors must be a multiple of 2. */
325                 if (mmc->cfg->f_max <= clock)
326                         div = 1;
327                 else {
328                         for (div = 2; div < SDHCI_MAX_DIV_SPEC_300; div += 2) {
329                                 if ((mmc->cfg->f_max / div) <= clock)
330                                         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) {
336                         if ((mmc->cfg->f_max / div) <= clock)
337                                 break;
338                 }
339         }
340         div >>= 1;
341
342         if (host->set_clock)
343                 host->set_clock(host->index, div);
344
345         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) {
356                         printf("%s: Internal clock never stabilised.\n",
357                                __func__);
358                         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
369 static 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
394         if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
395                 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
396
397         pwr |= SDHCI_POWER_ON;
398
399         sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
400 }
401
402 #ifdef CONFIG_DM_MMC_OPS
403 static int sdhci_set_ios(struct udevice *dev)
404 {
405         struct mmc *mmc = mmc_get_mmc_dev(dev);
406 #else
407 static void sdhci_set_ios(struct mmc *mmc)
408 {
409 #endif
410         u32 ctrl;
411         struct sdhci_host *host = mmc->priv;
412
413         if (host->set_control_reg)
414                 host->set_control_reg(host);
415
416         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;
423                 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
424                                 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
425                         ctrl |= SDHCI_CTRL_8BITBUS;
426         } else {
427                 if ((SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) ||
428                                 (host->quirks & SDHCI_QUIRK_USE_WIDE8))
429                         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
441         if (host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)
442                 ctrl &= ~SDHCI_CTRL_HISPD;
443
444         sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
445 #ifdef CONFIG_DM_MMC_OPS
446         return 0;
447 #endif
448 }
449
450 static int sdhci_init(struct mmc *mmc)
451 {
452         struct sdhci_host *host = mmc->priv;
453
454         if ((host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) && !aligned_buffer) {
455                 aligned_buffer = memalign(8, 512*1024);
456                 if (!aligned_buffer) {
457                         printf("%s: Aligned buffer alloc failed!!!\n",
458                                __func__);
459                         return -1;
460                 }
461         }
462
463         sdhci_set_power(host, fls(mmc->cfg->voltages) - 1);
464
465         if (host->quirks & SDHCI_QUIRK_NO_CD) {
466 #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
472                 unsigned int status;
473
474                 sdhci_writeb(host, SDHCI_CTRL_CD_TEST_INS | SDHCI_CTRL_CD_TEST,
475                         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);
482 #endif
483         }
484
485         /* Enable only interrupts served by the SD controller */
486         sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK,
487                      SDHCI_INT_ENABLE);
488         /* Mask all sdhci interrupt sources */
489         sdhci_writel(host, 0x0, SDHCI_SIGNAL_ENABLE);
490
491         return 0;
492 }
493
494 #ifdef CONFIG_DM_MMC_OPS
495 int sdhci_probe(struct udevice *dev)
496 {
497         struct mmc *mmc = mmc_get_mmc_dev(dev);
498
499         return sdhci_init(mmc);
500 }
501
502 const struct dm_mmc_ops sdhci_ops = {
503         .send_cmd       = sdhci_send_command,
504         .set_ios        = sdhci_set_ios,
505 };
506 #else
507 static const struct mmc_ops sdhci_ops = {
508         .send_cmd       = sdhci_send_command,
509         .set_ios        = sdhci_set_ios,
510         .init           = sdhci_init,
511 };
512 #endif
513
514 int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
515                 u32 max_clk, u32 min_clk)
516 {
517         u32 caps;
518
519         caps = sdhci_readl(host, SDHCI_CAPABILITIES);
520         host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
521
522         cfg->name = host->name;
523 #ifndef CONFIG_DM_MMC_OPS
524         cfg->ops = &sdhci_ops;
525 #endif
526         if (max_clk)
527                 cfg->f_max = max_clk;
528         else {
529                 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
530                         cfg->f_max = (caps & SDHCI_CLOCK_V3_BASE_MASK) >>
531                                 SDHCI_CLOCK_BASE_SHIFT;
532                 else
533                         cfg->f_max = (caps & SDHCI_CLOCK_BASE_MASK) >>
534                                 SDHCI_CLOCK_BASE_SHIFT;
535                 cfg->f_max *= 1000000;
536         }
537         if (cfg->f_max == 0)
538                 return -EINVAL;
539         if (min_clk)
540                 cfg->f_min = min_clk;
541         else {
542                 if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300)
543                         cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_300;
544                 else
545                         cfg->f_min = cfg->f_max / SDHCI_MAX_DIV_SPEC_200;
546         }
547         cfg->voltages = 0;
548         if (caps & SDHCI_CAN_VDD_330)
549                 cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
550         if (caps & SDHCI_CAN_VDD_300)
551                 cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
552         if (caps & SDHCI_CAN_VDD_180)
553                 cfg->voltages |= MMC_VDD_165_195;
554
555         cfg->host_caps = MMC_MODE_HS | MMC_MODE_HS_52MHz | MMC_MODE_4BIT;
556         if (SDHCI_GET_VERSION(host) >= SDHCI_SPEC_300) {
557                 if (caps & SDHCI_CAN_DO_8BIT)
558                         cfg->host_caps |= MMC_MODE_8BIT;
559         }
560
561         if (host->host_caps)
562                 cfg->host_caps |= host->host_caps;
563
564
565         cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
566
567         return 0;
568 }
569
570 #ifdef CONFIG_BLK
571 int sdhci_bind(struct udevice *dev, struct mmc *mmc, struct mmc_config *cfg)
572 {
573         return mmc_bind(dev, mmc, cfg);
574 }
575 #else
576 int add_sdhci(struct sdhci_host *host, u32 max_clk, u32 min_clk)
577 {
578 #ifdef CONFIG_MMC_SDMA
579         unsigned int caps;
580
581         caps = sdhci_readl(host, SDHCI_CAPABILITIES);
582         if (!(caps & SDHCI_CAN_DO_SDMA)) {
583                 printf("%s: Your controller doesn't support SDMA!!\n",
584                        __func__);
585                 return -1;
586         }
587 #endif
588
589         if (sdhci_setup_cfg(&host->cfg, host, max_clk, min_clk)) {
590                 printf("%s: Hardware doesn't specify base clock frequency\n",
591                        __func__);
592                 return -EINVAL;
593         }
594
595         if (host->quirks & SDHCI_QUIRK_BROKEN_VOLTAGE)
596                 host->cfg.voltages |= host->voltages;
597
598         sdhci_reset(host, SDHCI_RESET_ALL);
599
600         host->mmc = mmc_create(&host->cfg, host);
601         if (host->mmc == NULL) {
602                 printf("%s: mmc create fail!\n", __func__);
603                 return -1;
604         }
605
606         return 0;
607 }
608 #endif