]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
eee20f81 | 2 | /* |
fb48bc44 PC |
3 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
4 | * Author(s): Patrice Chotard, <[email protected]> for STMicroelectronics. | |
eee20f81 PC |
5 | */ |
6 | ||
7 | #include <common.h> | |
8 | #include <dm.h> | |
f7ae49fc | 9 | #include <log.h> |
eee20f81 | 10 | #include <mmc.h> |
dca3166f | 11 | #include <reset-uclass.h> |
eee20f81 PC |
12 | #include <sdhci.h> |
13 | #include <asm/arch/sdhci.h> | |
14 | ||
15 | DECLARE_GLOBAL_DATA_PTR; | |
16 | ||
17 | struct sti_sdhci_plat { | |
18 | struct mmc_config cfg; | |
19 | struct mmc mmc; | |
dca3166f | 20 | struct reset_ctl reset; |
819c626b | 21 | int instance; |
eee20f81 PC |
22 | }; |
23 | ||
eee20f81 PC |
24 | /** |
25 | * sti_mmc_core_config: configure the Arasan HC | |
819c626b PC |
26 | * @dev : udevice |
27 | * | |
eee20f81 PC |
28 | * Description: this function is to configure the Arasan MMC HC. |
29 | * This should be called when the system starts in case of, on the SoC, | |
30 | * it is needed to configure the host controller. | |
31 | * This happens on some SoCs, i.e. StiH410, where the MMC0 inside the flashSS | |
32 | * needs to be configured as MMC 4.5 to have full capabilities. | |
33 | * W/o these settings the SDHCI could configure and use the embedded controller | |
34 | * with limited features. | |
35 | */ | |
dca3166f | 36 | static int sti_mmc_core_config(struct udevice *dev) |
eee20f81 | 37 | { |
819c626b PC |
38 | struct sti_sdhci_plat *plat = dev_get_platdata(dev); |
39 | struct sdhci_host *host = dev_get_priv(dev); | |
dca3166f | 40 | int ret; |
eee20f81 PC |
41 | |
42 | /* only MMC1 has a reset line */ | |
819c626b | 43 | if (plat->instance) { |
dca3166f PC |
44 | ret = reset_deassert(&plat->reset); |
45 | if (ret < 0) { | |
9b643e31 | 46 | pr_err("MMC1 deassert failed: %d", ret); |
dca3166f PC |
47 | return ret; |
48 | } | |
eee20f81 PC |
49 | } |
50 | ||
51 | writel(STI_FLASHSS_MMC_CORE_CONFIG_1, | |
819c626b | 52 | host->ioaddr + FLASHSS_MMC_CORE_CONFIG_1); |
eee20f81 | 53 | |
819c626b | 54 | if (plat->instance) { |
eee20f81 | 55 | writel(STI_FLASHSS_MMC_CORE_CONFIG2, |
819c626b | 56 | host->ioaddr + FLASHSS_MMC_CORE_CONFIG_2); |
eee20f81 | 57 | writel(STI_FLASHSS_MMC_CORE_CONFIG3, |
819c626b | 58 | host->ioaddr + FLASHSS_MMC_CORE_CONFIG_3); |
eee20f81 PC |
59 | } else { |
60 | writel(STI_FLASHSS_SDCARD_CORE_CONFIG2, | |
819c626b | 61 | host->ioaddr + FLASHSS_MMC_CORE_CONFIG_2); |
eee20f81 | 62 | writel(STI_FLASHSS_SDCARD_CORE_CONFIG3, |
819c626b | 63 | host->ioaddr + FLASHSS_MMC_CORE_CONFIG_3); |
eee20f81 PC |
64 | } |
65 | writel(STI_FLASHSS_MMC_CORE_CONFIG4, | |
819c626b | 66 | host->ioaddr + FLASHSS_MMC_CORE_CONFIG_4); |
dca3166f PC |
67 | |
68 | return 0; | |
eee20f81 PC |
69 | } |
70 | ||
71 | static int sti_sdhci_probe(struct udevice *dev) | |
72 | { | |
73 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); | |
74 | struct sti_sdhci_plat *plat = dev_get_platdata(dev); | |
75 | struct sdhci_host *host = dev_get_priv(dev); | |
819c626b | 76 | int ret; |
eee20f81 PC |
77 | |
78 | /* | |
79 | * identify current mmc instance, mmc1 has a reset, not mmc0 | |
80 | * MMC0 is wired to the SD slot, | |
81 | * MMC1 is wired on the high speed connector | |
82 | */ | |
dca3166f PC |
83 | ret = reset_get_by_index(dev, 0, &plat->reset); |
84 | if (!ret) | |
819c626b | 85 | plat->instance = 1; |
eee20f81 | 86 | else |
dca3166f PC |
87 | if (ret == -ENOENT) |
88 | plat->instance = 0; | |
89 | else | |
90 | return ret; | |
eee20f81 | 91 | |
dca3166f PC |
92 | ret = sti_mmc_core_config(dev); |
93 | if (ret) | |
94 | return ret; | |
eee20f81 PC |
95 | |
96 | host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD | | |
97 | SDHCI_QUIRK_32BIT_DMA_ADDR | | |
98 | SDHCI_QUIRK_NO_HISPD_BIT; | |
99 | ||
100 | host->host_caps = MMC_MODE_DDR_52MHz; | |
2e01fcf1 PC |
101 | host->mmc = &plat->mmc; |
102 | host->mmc->dev = dev; | |
103 | host->mmc->priv = host; | |
eee20f81 PC |
104 | |
105 | ret = sdhci_setup_cfg(&plat->cfg, host, 50000000, 400000); | |
106 | if (ret) | |
107 | return ret; | |
108 | ||
eee20f81 PC |
109 | upriv->mmc = host->mmc; |
110 | ||
111 | return sdhci_probe(dev); | |
112 | } | |
113 | ||
114 | static int sti_sdhci_ofdata_to_platdata(struct udevice *dev) | |
115 | { | |
116 | struct sdhci_host *host = dev_get_priv(dev); | |
117 | ||
118 | host->name = strdup(dev->name); | |
a821c4af | 119 | host->ioaddr = (void *)devfdt_get_addr(dev); |
eee20f81 PC |
120 | |
121 | host->bus_width = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), | |
122 | "bus-width", 4); | |
123 | ||
124 | return 0; | |
125 | } | |
126 | ||
127 | static int sti_sdhci_bind(struct udevice *dev) | |
128 | { | |
129 | struct sti_sdhci_plat *plat = dev_get_platdata(dev); | |
130 | ||
131 | return sdhci_bind(dev, &plat->mmc, &plat->cfg); | |
132 | } | |
133 | ||
134 | static const struct udevice_id sti_sdhci_ids[] = { | |
135 | { .compatible = "st,sdhci" }, | |
136 | { } | |
137 | }; | |
138 | ||
139 | U_BOOT_DRIVER(sti_mmc) = { | |
140 | .name = "sti_sdhci", | |
141 | .id = UCLASS_MMC, | |
142 | .of_match = sti_sdhci_ids, | |
143 | .bind = sti_sdhci_bind, | |
144 | .ops = &sdhci_ops, | |
145 | .ofdata_to_platdata = sti_sdhci_ofdata_to_platdata, | |
146 | .probe = sti_sdhci_probe, | |
147 | .priv_auto_alloc_size = sizeof(struct sdhci_host), | |
148 | .platdata_auto_alloc_size = sizeof(struct sti_sdhci_plat), | |
149 | }; |