Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 1 | /* |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 2 | * (C) Copyright 2013 - 2015 Xilinx, Inc. |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 3 | * |
| 4 | * Xilinx Zynq SD Host Controller Interface |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 10 | #include <dm.h> |
Michal Simek | 345d3c0 | 2014-02-24 11:16:31 +0100 | [diff] [blame] | 11 | #include <fdtdec.h> |
| 12 | #include <libfdt.h> |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 13 | #include <malloc.h> |
| 14 | #include <sdhci.h> |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 15 | |
Siva Durga Prasad Paladugu | a57a4a5 | 2016-01-05 12:21:04 +0530 | [diff] [blame] | 16 | #ifndef CONFIG_ZYNQ_SDHCI_MIN_FREQ |
| 17 | # define CONFIG_ZYNQ_SDHCI_MIN_FREQ 0 |
| 18 | #endif |
| 19 | |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 20 | static int arasan_sdhci_probe(struct udevice *dev) |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 21 | { |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 22 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 23 | struct sdhci_host *host = dev_get_priv(dev); |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 24 | |
Siva Durga Prasad Paladugu | eddabd1 | 2014-07-08 15:31:04 +0530 | [diff] [blame] | 25 | host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD | |
Siva Durga Prasad Paladugu | f9ec45d | 2014-01-22 09:17:09 +0100 | [diff] [blame] | 26 | SDHCI_QUIRK_BROKEN_R1B; |
Siva Durga Prasad Paladugu | b215614 | 2016-01-12 15:12:16 +0530 | [diff] [blame] | 27 | |
| 28 | #ifdef CONFIG_ZYNQ_HISPD_BROKEN |
| 29 | host->quirks |= SDHCI_QUIRK_NO_HISPD_BIT; |
| 30 | #endif |
| 31 | |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 32 | host->version = sdhci_readw(host, SDHCI_HOST_VERSION); |
| 33 | |
Siva Durga Prasad Paladugu | a57a4a5 | 2016-01-05 12:21:04 +0530 | [diff] [blame] | 34 | add_sdhci(host, CONFIG_ZYNQ_SDHCI_MAX_FREQ, |
| 35 | CONFIG_ZYNQ_SDHCI_MIN_FREQ); |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 36 | |
| 37 | upriv->mmc = host->mmc; |
Simon Glass | cffe5d8 | 2016-05-01 13:52:34 -0600 | [diff] [blame] | 38 | host->mmc->dev = dev; |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 39 | |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 40 | return 0; |
| 41 | } |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 42 | |
| 43 | static int arasan_sdhci_ofdata_to_platdata(struct udevice *dev) |
| 44 | { |
| 45 | struct sdhci_host *host = dev_get_priv(dev); |
| 46 | |
Masahiro Yamada | cacd1d2 | 2016-04-22 20:59:31 +0900 | [diff] [blame] | 47 | host->name = dev->name; |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 48 | host->ioaddr = (void *)dev_get_addr(dev); |
| 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | static const struct udevice_id arasan_sdhci_ids[] = { |
| 54 | { .compatible = "arasan,sdhci-8.9a" }, |
| 55 | { } |
| 56 | }; |
| 57 | |
| 58 | U_BOOT_DRIVER(arasan_sdhci_drv) = { |
| 59 | .name = "arasan_sdhci", |
| 60 | .id = UCLASS_MMC, |
| 61 | .of_match = arasan_sdhci_ids, |
| 62 | .ofdata_to_platdata = arasan_sdhci_ofdata_to_platdata, |
| 63 | .probe = arasan_sdhci_probe, |
| 64 | .priv_auto_alloc_size = sizeof(struct sdhci_host), |
| 65 | }; |