1
2
3
4
5
6
7
8
9
10#include <common.h>
11#include <clk.h>
12#include <dm.h>
13#include <sdhci.h>
14#include <wait_bit.h>
15#include <asm/io.h>
16#include <linux/bitops.h>
17
18
19#define SDCC_MCI_POWER 0x0
20#define SDCC_MCI_POWER_SW_RST BIT(7)
21
22
23#define SDCC_MCI_VERSION 0x50
24#define SDCC_MCI_VERSION_MAJOR_SHIFT 28
25#define SDCC_MCI_VERSION_MAJOR_MASK (0xf << SDCC_MCI_VERSION_MAJOR_SHIFT)
26#define SDCC_MCI_VERSION_MINOR_MASK 0xff
27
28#define SDCC_MCI_STATUS2 0x6C
29#define SDCC_MCI_STATUS2_MCI_ACT 0x1
30#define SDCC_MCI_HC_MODE 0x78
31
32
33#define SDCC_SDHCI_OFFSET 0x900
34
35
36#define SDHCI_VENDOR_SPEC_CAPABILITIES0 0x11c
37
38struct msm_sdhc_plat {
39 struct mmc_config cfg;
40 struct mmc mmc;
41};
42
43struct msm_sdhc {
44 struct sdhci_host host;
45 void *base;
46};
47
48DECLARE_GLOBAL_DATA_PTR;
49
50static int msm_sdc_clk_init(struct udevice *dev)
51{
52 int node = dev_of_offset(dev);
53 uint clk_rate = fdtdec_get_uint(gd->fdt_blob, node, "clock-frequency",
54 400000);
55 uint clkd[2];
56 int clk_offset;
57 struct udevice *clk_dev;
58 struct clk clk;
59 int ret;
60
61 ret = fdtdec_get_int_array(gd->fdt_blob, node, "clock", clkd, 2);
62 if (ret)
63 return ret;
64
65 clk_offset = fdt_node_offset_by_phandle(gd->fdt_blob, clkd[0]);
66 if (clk_offset < 0)
67 return clk_offset;
68
69 ret = uclass_get_device_by_of_offset(UCLASS_CLK, clk_offset, &clk_dev);
70 if (ret)
71 return ret;
72
73 clk.id = clkd[1];
74 ret = clk_request(clk_dev, &clk);
75 if (ret < 0)
76 return ret;
77
78 ret = clk_set_rate(&clk, clk_rate);
79 clk_free(&clk);
80 if (ret < 0)
81 return ret;
82
83 return 0;
84}
85
86static int msm_sdc_probe(struct udevice *dev)
87{
88 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
89 struct msm_sdhc_plat *plat = dev_get_platdata(dev);
90 struct msm_sdhc *prv = dev_get_priv(dev);
91 struct sdhci_host *host = &prv->host;
92 u32 core_version, core_minor, core_major;
93 u32 caps;
94 int ret;
95
96 host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD | SDHCI_QUIRK_BROKEN_R1B;
97
98 host->max_clk = 0;
99
100
101 ret = msm_sdc_clk_init(dev);
102 if (ret)
103 return ret;
104
105
106 writel(readl(prv->base + SDCC_MCI_POWER) | SDCC_MCI_POWER_SW_RST,
107 prv->base + SDCC_MCI_POWER);
108
109
110
111 if (wait_for_bit_le32(prv->base + SDCC_MCI_STATUS2,
112 SDCC_MCI_STATUS2_MCI_ACT, false, 10, false)) {
113 printf("msm_sdhci: reset request failed\n");
114 return -EIO;
115 }
116
117
118 if (wait_for_bit_le32(prv->base + SDCC_MCI_POWER,
119 SDCC_MCI_POWER_SW_RST, false, 2, false)) {
120 printf("msm_sdhci: stuck in reset\n");
121 return -ETIMEDOUT;
122 }
123
124
125 writel(1, prv->base + SDCC_MCI_HC_MODE);
126
127 core_version = readl(prv->base + SDCC_MCI_VERSION);
128
129 core_major = (core_version & SDCC_MCI_VERSION_MAJOR_MASK);
130 core_major >>= SDCC_MCI_VERSION_MAJOR_SHIFT;
131
132 core_minor = core_version & SDCC_MCI_VERSION_MINOR_MASK;
133
134
135
136
137
138 if (core_major >= 1 && core_minor != 0x11 && core_minor != 0x12) {
139 caps = readl(host->ioaddr + SDHCI_CAPABILITIES);
140 caps |= SDHCI_CAN_VDD_300 | SDHCI_CAN_DO_8BIT;
141 writel(caps, host->ioaddr + SDHCI_VENDOR_SPEC_CAPABILITIES0);
142 }
143
144 ret = sdhci_setup_cfg(&plat->cfg, host, 0, 0);
145 host->mmc = &plat->mmc;
146 if (ret)
147 return ret;
148 host->mmc->priv = &prv->host;
149 host->mmc->dev = dev;
150 upriv->mmc = host->mmc;
151
152 return sdhci_probe(dev);
153}
154
155static int msm_sdc_remove(struct udevice *dev)
156{
157 struct msm_sdhc *priv = dev_get_priv(dev);
158
159
160 writel(0, priv->base + SDCC_MCI_HC_MODE);
161
162 return 0;
163}
164
165static int msm_ofdata_to_platdata(struct udevice *dev)
166{
167 struct udevice *parent = dev->parent;
168 struct msm_sdhc *priv = dev_get_priv(dev);
169 struct sdhci_host *host = &priv->host;
170 int node = dev_of_offset(dev);
171
172 host->name = strdup(dev->name);
173 host->ioaddr = (void *)devfdt_get_addr(dev);
174 host->bus_width = fdtdec_get_int(gd->fdt_blob, node, "bus-width", 4);
175 host->index = fdtdec_get_uint(gd->fdt_blob, node, "index", 0);
176 priv->base = (void *)fdtdec_get_addr_size_auto_parent(gd->fdt_blob,
177 dev_of_offset(parent), node, "reg", 1, NULL, false);
178 if (priv->base == (void *)FDT_ADDR_T_NONE ||
179 host->ioaddr == (void *)FDT_ADDR_T_NONE)
180 return -EINVAL;
181
182 return 0;
183}
184
185static int msm_sdc_bind(struct udevice *dev)
186{
187 struct msm_sdhc_plat *plat = dev_get_platdata(dev);
188
189 return sdhci_bind(dev, &plat->mmc, &plat->cfg);
190}
191
192static const struct udevice_id msm_mmc_ids[] = {
193 { .compatible = "qcom,sdhci-msm-v4" },
194 { }
195};
196
197U_BOOT_DRIVER(msm_sdc_drv) = {
198 .name = "msm_sdc",
199 .id = UCLASS_MMC,
200 .of_match = msm_mmc_ids,
201 .ofdata_to_platdata = msm_ofdata_to_platdata,
202 .ops = &sdhci_ops,
203 .bind = msm_sdc_bind,
204 .probe = msm_sdc_probe,
205 .remove = msm_sdc_remove,
206 .priv_auto_alloc_size = sizeof(struct msm_sdhc),
207 .platdata_auto_alloc_size = sizeof(struct msm_sdhc_plat),
208};
209