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 | |
Stefan Herbrechtsmeier | e0f4de1 | 2017-01-17 16:27:32 +0100 | [diff] [blame] | 9 | #include <clk.h> |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 10 | #include <common.h> |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 11 | #include <dm.h> |
Michal Simek | 345d3c0 | 2014-02-24 11:16:31 +0100 | [diff] [blame] | 12 | #include <fdtdec.h> |
| 13 | #include <libfdt.h> |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 14 | #include <malloc.h> |
| 15 | #include <sdhci.h> |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 16 | |
Stefan Herbrechtsmeier | 61e745d | 2017-01-17 16:27:33 +0100 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
Siva Durga Prasad Paladugu | a57a4a5 | 2016-01-05 12:21:04 +0530 | [diff] [blame] | 19 | #ifndef CONFIG_ZYNQ_SDHCI_MIN_FREQ |
| 20 | # define CONFIG_ZYNQ_SDHCI_MIN_FREQ 0 |
| 21 | #endif |
| 22 | |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 23 | struct arasan_sdhci_plat { |
| 24 | struct mmc_config cfg; |
| 25 | struct mmc mmc; |
Stefan Herbrechtsmeier | 61e745d | 2017-01-17 16:27:33 +0100 | [diff] [blame] | 26 | unsigned int f_max; |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 27 | }; |
| 28 | |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 29 | static int arasan_sdhci_probe(struct udevice *dev) |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 30 | { |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 31 | struct arasan_sdhci_plat *plat = dev_get_platdata(dev); |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 32 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 33 | struct sdhci_host *host = dev_get_priv(dev); |
Stefan Herbrechtsmeier | e0f4de1 | 2017-01-17 16:27:32 +0100 | [diff] [blame] | 34 | struct clk clk; |
| 35 | unsigned long clock; |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 36 | int ret; |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 37 | |
Stefan Herbrechtsmeier | e0f4de1 | 2017-01-17 16:27:32 +0100 | [diff] [blame] | 38 | ret = clk_get_by_index(dev, 0, &clk); |
| 39 | if (ret < 0) { |
| 40 | dev_err(dev, "failed to get clock\n"); |
| 41 | return ret; |
| 42 | } |
| 43 | |
| 44 | clock = clk_get_rate(&clk); |
| 45 | if (IS_ERR_VALUE(clock)) { |
| 46 | dev_err(dev, "failed to get rate\n"); |
| 47 | return clock; |
| 48 | } |
| 49 | debug("%s: CLK %ld\n", __func__, clock); |
| 50 | |
| 51 | ret = clk_enable(&clk); |
| 52 | if (ret && ret != -ENOSYS) { |
| 53 | dev_err(dev, "failed to enable clock\n"); |
| 54 | return ret; |
| 55 | } |
| 56 | |
Siva Durga Prasad Paladugu | eddabd1 | 2014-07-08 15:31:04 +0530 | [diff] [blame] | 57 | host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD | |
Siva Durga Prasad Paladugu | f9ec45d | 2014-01-22 09:17:09 +0100 | [diff] [blame] | 58 | SDHCI_QUIRK_BROKEN_R1B; |
Siva Durga Prasad Paladugu | b215614 | 2016-01-12 15:12:16 +0530 | [diff] [blame] | 59 | |
| 60 | #ifdef CONFIG_ZYNQ_HISPD_BROKEN |
| 61 | host->quirks |= SDHCI_QUIRK_NO_HISPD_BIT; |
| 62 | #endif |
| 63 | |
Stefan Herbrechtsmeier | e0f4de1 | 2017-01-17 16:27:32 +0100 | [diff] [blame] | 64 | host->max_clk = clock; |
Stefan Herbrechtsmeier | 6d0e34b | 2017-01-17 15:58:48 +0100 | [diff] [blame] | 65 | |
Stefan Herbrechtsmeier | 61e745d | 2017-01-17 16:27:33 +0100 | [diff] [blame] | 66 | ret = sdhci_setup_cfg(&plat->cfg, host, plat->f_max, |
Jaehoon Chung | 14bed52 | 2016-07-26 19:06:24 +0900 | [diff] [blame] | 67 | CONFIG_ZYNQ_SDHCI_MIN_FREQ); |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 68 | host->mmc = &plat->mmc; |
| 69 | if (ret) |
| 70 | return ret; |
| 71 | host->mmc->priv = host; |
Simon Glass | cffe5d8 | 2016-05-01 13:52:34 -0600 | [diff] [blame] | 72 | host->mmc->dev = dev; |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 73 | upriv->mmc = host->mmc; |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 74 | |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 75 | return sdhci_probe(dev); |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 76 | } |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 77 | |
| 78 | static int arasan_sdhci_ofdata_to_platdata(struct udevice *dev) |
| 79 | { |
Stefan Herbrechtsmeier | 61e745d | 2017-01-17 16:27:33 +0100 | [diff] [blame] | 80 | struct arasan_sdhci_plat *plat = dev_get_platdata(dev); |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 81 | struct sdhci_host *host = dev_get_priv(dev); |
| 82 | |
Masahiro Yamada | cacd1d2 | 2016-04-22 20:59:31 +0900 | [diff] [blame] | 83 | host->name = dev->name; |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 84 | host->ioaddr = (void *)dev_get_addr(dev); |
| 85 | |
Stefan Herbrechtsmeier | 61e745d | 2017-01-17 16:27:33 +0100 | [diff] [blame] | 86 | plat->f_max = fdtdec_get_int(gd->fdt_blob, dev->of_offset, |
| 87 | "max-frequency", CONFIG_ZYNQ_SDHCI_MAX_FREQ); |
| 88 | |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 89 | return 0; |
| 90 | } |
| 91 | |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 92 | static int arasan_sdhci_bind(struct udevice *dev) |
| 93 | { |
| 94 | struct arasan_sdhci_plat *plat = dev_get_platdata(dev); |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 95 | |
Masahiro Yamada | 24f5aec | 2016-09-06 22:17:32 +0900 | [diff] [blame] | 96 | return sdhci_bind(dev, &plat->mmc, &plat->cfg); |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 97 | } |
| 98 | |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 99 | static const struct udevice_id arasan_sdhci_ids[] = { |
| 100 | { .compatible = "arasan,sdhci-8.9a" }, |
| 101 | { } |
| 102 | }; |
| 103 | |
| 104 | U_BOOT_DRIVER(arasan_sdhci_drv) = { |
| 105 | .name = "arasan_sdhci", |
| 106 | .id = UCLASS_MMC, |
| 107 | .of_match = arasan_sdhci_ids, |
| 108 | .ofdata_to_platdata = arasan_sdhci_ofdata_to_platdata, |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 109 | .ops = &sdhci_ops, |
| 110 | .bind = arasan_sdhci_bind, |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 111 | .probe = arasan_sdhci_probe, |
| 112 | .priv_auto_alloc_size = sizeof(struct sdhci_host), |
Simon Glass | 329a449 | 2016-07-05 17:10:15 -0600 | [diff] [blame] | 113 | .platdata_auto_alloc_size = sizeof(struct arasan_sdhci_plat), |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 114 | }; |