blob: 1f1d2ed8652ec639459823eff5eb9d45c8d6c7aa [file] [log] [blame]
Jaehoon Chung442d5562012-04-23 02:36:28 +00001/*
2 * (C) Copyright 2012 SAMSUNG Electronics
3 * Jaehoon Chung <jh80.chung@samsung.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung442d5562012-04-23 02:36:28 +00006 */
7
8#include <common.h>
Jaehoon Chung7aedafd2016-09-09 18:23:23 +09009#include <dm.h>
Jaehoon Chung442d5562012-04-23 02:36:28 +000010#include <malloc.h>
11#include <sdhci.h>
Piotr Wilczek3577fe82014-03-07 14:59:41 +010012#include <fdtdec.h>
13#include <libfdt.h>
14#include <asm/gpio.h>
Jaehoon Chung442d5562012-04-23 02:36:28 +000015#include <asm/arch/mmc.h>
Jaehoon Chungb09ed6e2012-08-30 16:24:11 +000016#include <asm/arch/clk.h>
Piotr Wilczek3577fe82014-03-07 14:59:41 +010017#include <errno.h>
Piotr Wilczek3577fe82014-03-07 14:59:41 +010018#include <asm/arch/pinmux.h>
Jaehoon Chung442d5562012-04-23 02:36:28 +000019
Jaehoon Chung7aedafd2016-09-09 18:23:23 +090020#ifdef CONFIG_DM_MMC
21struct s5p_sdhci_plat {
22 struct mmc_config cfg;
23 struct mmc mmc;
24};
25
26DECLARE_GLOBAL_DATA_PTR;
27#endif
28
Jaehoon Chung442d5562012-04-23 02:36:28 +000029static char *S5P_NAME = "SAMSUNG SDHCI";
30static void s5p_sdhci_set_control_reg(struct sdhci_host *host)
31{
32 unsigned long val, ctrl;
33 /*
34 * SELCLKPADDS[17:16]
35 * 00 = 2mA
36 * 01 = 4mA
37 * 10 = 7mA
38 * 11 = 9mA
39 */
40 sdhci_writel(host, SDHCI_CTRL4_DRIVE_MASK(0x3), SDHCI_CONTROL4);
41
42 val = sdhci_readl(host, SDHCI_CONTROL2);
Matt Reimer8ebde4f2015-02-23 14:52:22 -070043 val &= SDHCI_CTRL2_SELBASECLK_MASK(3);
Jaehoon Chung442d5562012-04-23 02:36:28 +000044
45 val |= SDHCI_CTRL2_ENSTAASYNCCLR |
46 SDHCI_CTRL2_ENCMDCNFMSK |
47 SDHCI_CTRL2_ENFBCLKRX |
48 SDHCI_CTRL2_ENCLKOUTHOLD;
49
50 sdhci_writel(host, val, SDHCI_CONTROL2);
51
52 /*
53 * FCSEL3[31] FCSEL2[23] FCSEL1[15] FCSEL0[7]
54 * FCSel[1:0] : Rx Feedback Clock Delay Control
55 * Inverter delay means10ns delay if SDCLK 50MHz setting
56 * 01 = Delay1 (basic delay)
57 * 11 = Delay2 (basic delay + 2ns)
58 * 00 = Delay3 (inverter delay)
59 * 10 = Delay4 (inverter delay + 2ns)
60 */
Jaehoon Chungb2686602012-08-30 16:24:08 +000061 val = SDHCI_CTRL3_FCSEL0 | SDHCI_CTRL3_FCSEL1;
Jaehoon Chung442d5562012-04-23 02:36:28 +000062 sdhci_writel(host, val, SDHCI_CONTROL3);
63
64 /*
65 * SELBASECLK[5:4]
66 * 00/01 = HCLK
67 * 10 = EPLL
68 * 11 = XTI or XEXTCLK
69 */
70 ctrl = sdhci_readl(host, SDHCI_CONTROL2);
71 ctrl &= ~SDHCI_CTRL2_SELBASECLK_MASK(0x3);
72 ctrl |= SDHCI_CTRL2_SELBASECLK_MASK(0x2);
73 sdhci_writel(host, ctrl, SDHCI_CONTROL2);
74}
75
Jaehoon Chungf73b33f2016-12-30 15:30:17 +090076static void s5p_set_clock(struct sdhci_host *host, u32 div)
77{
78 /* ToDo : Use the Clock Framework */
79 set_mmc_clk(host->index, div);
80}
81
Jaehoon Chung62226b62016-12-30 15:30:18 +090082static const struct sdhci_ops s5p_sdhci_ops = {
83 .set_clock = &s5p_set_clock,
84 .set_control_reg = &s5p_sdhci_set_control_reg,
85};
86
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +090087static int s5p_sdhci_core_init(struct sdhci_host *host)
Jaehoon Chung442d5562012-04-23 02:36:28 +000088{
Jaehoon Chung442d5562012-04-23 02:36:28 +000089 host->name = S5P_NAME;
Jaehoon Chung442d5562012-04-23 02:36:28 +000090
Jaehoon Chungb2686602012-08-30 16:24:08 +000091 host->quirks = SDHCI_QUIRK_NO_HISPD_BIT | SDHCI_QUIRK_BROKEN_VOLTAGE |
Jaehoon Chunga034ec02016-07-12 21:18:47 +090092 SDHCI_QUIRK_32BIT_DMA_ADDR |
Jaehoon Chung113e5df2013-07-19 17:44:49 +090093 SDHCI_QUIRK_WAIT_SEND_CMD | SDHCI_QUIRK_USE_WIDE8;
Jaehoon Chung442d5562012-04-23 02:36:28 +000094 host->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chung62226b62016-12-30 15:30:18 +090095 host->ops = &s5p_sdhci_ops;
Jaehoon Chung442d5562012-04-23 02:36:28 +000096
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +090097 if (host->bus_width == 8)
Jaehoon Chung113e5df2013-07-19 17:44:49 +090098 host->host_caps |= MMC_MODE_8BIT;
Jaehoon Chung442d5562012-04-23 02:36:28 +000099
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900100#ifndef CONFIG_BLK
Jaehoon Chunga68aac42012-12-13 20:07:12 +0000101 return add_sdhci(host, 52000000, 400000);
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900102#else
103 return 0;
104#endif
Jaehoon Chung442d5562012-04-23 02:36:28 +0000105}
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100106
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900107int s5p_sdhci_init(u32 regbase, int index, int bus_width)
108{
Tobias Jakobi1a9d1732015-10-05 13:47:50 +0200109 struct sdhci_host *host = calloc(1, sizeof(struct sdhci_host));
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900110 if (!host) {
Tobias Jakobi1a9d1732015-10-05 13:47:50 +0200111 printf("sdhci__host allocation fail!\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900112 return -ENOMEM;
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900113 }
114 host->ioaddr = (void *)regbase;
115 host->index = index;
116 host->bus_width = bus_width;
117
118 return s5p_sdhci_core_init(host);
119}
120
Masahiro Yamada0f925822015-08-12 07:31:55 +0900121#if CONFIG_IS_ENABLED(OF_CONTROL)
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100122struct sdhci_host sdhci_host[SDHCI_MAX_HOSTS];
123
124static int do_sdhci_init(struct sdhci_host *host)
125{
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200126 int dev_id, flag, ret;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100127
128 flag = host->bus_width == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
129 dev_id = host->index + PERIPH_ID_SDMMC0;
130
Przemyslaw Marczak96094d42015-10-28 15:41:50 +0100131 ret = exynos_pinmux_config(dev_id, flag);
132 if (ret) {
133 printf("external SD not configured\n");
134 return ret;
135 }
136
Simon Glass03479602015-01-05 20:05:38 -0700137 if (dm_gpio_is_valid(&host->pwr_gpio)) {
138 dm_gpio_set_value(&host->pwr_gpio, 1);
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200139 ret = exynos_pinmux_config(dev_id, flag);
140 if (ret) {
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100141 debug("MMC not configured\n");
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200142 return ret;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100143 }
144 }
145
Simon Glass03479602015-01-05 20:05:38 -0700146 if (dm_gpio_is_valid(&host->cd_gpio)) {
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200147 ret = dm_gpio_get_value(&host->cd_gpio);
148 if (ret) {
149 debug("no SD card detected (%d)\n", ret);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100150 return -ENODEV;
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200151 }
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100152 }
153
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900154 return s5p_sdhci_core_init(host);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100155}
156
157static int sdhci_get_config(const void *blob, int node, struct sdhci_host *host)
158{
159 int bus_width, dev_id;
160 unsigned int base;
161
162 /* Get device id */
163 dev_id = pinmux_decode_periph_id(blob, node);
Seung-Woo Kimf0ecfc52016-11-24 15:05:51 +0900164 if (dev_id < PERIPH_ID_SDMMC0 || dev_id > PERIPH_ID_SDMMC3) {
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100165 debug("MMC: Can't get device id\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900166 return -EINVAL;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100167 }
168 host->index = dev_id - PERIPH_ID_SDMMC0;
169
170 /* Get bus width */
171 bus_width = fdtdec_get_int(blob, node, "samsung,bus-width", 0);
172 if (bus_width <= 0) {
173 debug("MMC: Can't get bus-width\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900174 return -EINVAL;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100175 }
176 host->bus_width = bus_width;
177
178 /* Get the base address from the device node */
179 base = fdtdec_get_addr(blob, node, "reg");
180 if (!base) {
181 debug("MMC: Can't get base address\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900182 return -EINVAL;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100183 }
184 host->ioaddr = (void *)base;
185
Simon Glass03479602015-01-05 20:05:38 -0700186 gpio_request_by_name_nodev(blob, node, "pwr-gpios", 0, &host->pwr_gpio,
187 GPIOD_IS_OUT);
188 gpio_request_by_name_nodev(blob, node, "cd-gpios", 0, &host->cd_gpio,
189 GPIOD_IS_IN);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100190
191 return 0;
192}
193
194static int process_nodes(const void *blob, int node_list[], int count)
195{
196 struct sdhci_host *host;
Tobias Jakobi995a54c2015-10-05 13:47:52 +0200197 int i, node, ret;
Tobias Jakobi6a9fbb62015-10-05 13:47:51 +0200198 int failed = 0;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100199
200 debug("%s: count = %d\n", __func__, count);
201
202 /* build sdhci_host[] for each controller */
203 for (i = 0; i < count; i++) {
204 node = node_list[i];
205 if (node <= 0)
206 continue;
207
208 host = &sdhci_host[i];
209
Tobias Jakobi995a54c2015-10-05 13:47:52 +0200210 ret = sdhci_get_config(blob, node, host);
211 if (ret) {
212 printf("%s: failed to decode dev %d (%d)\n", __func__, i, ret);
Tobias Jakobi6a9fbb62015-10-05 13:47:51 +0200213 failed++;
214 continue;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100215 }
Tobias Jakobi6a9fbb62015-10-05 13:47:51 +0200216
Tobias Jakobi995a54c2015-10-05 13:47:52 +0200217 ret = do_sdhci_init(host);
Przemyslaw Marczak96094d42015-10-28 15:41:50 +0100218 if (ret && ret != -ENODEV) {
Tobias Jakobi995a54c2015-10-05 13:47:52 +0200219 printf("%s: failed to initialize dev %d (%d)\n", __func__, i, ret);
Tobias Jakobi6a9fbb62015-10-05 13:47:51 +0200220 failed++;
221 }
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100222 }
Tobias Jakobi6a9fbb62015-10-05 13:47:51 +0200223
224 /* we only consider it an error when all nodes fail */
225 return (failed == count ? -1 : 0);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100226}
227
228int exynos_mmc_init(const void *blob)
229{
230 int count;
231 int node_list[SDHCI_MAX_HOSTS];
232
233 count = fdtdec_find_aliases_for_id(blob, "mmc",
234 COMPAT_SAMSUNG_EXYNOS_MMC, node_list,
235 SDHCI_MAX_HOSTS);
236
Tobias Jakobi6a9fbb62015-10-05 13:47:51 +0200237 return process_nodes(blob, node_list, count);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100238}
239#endif
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900240
241#ifdef CONFIG_DM_MMC
242static int s5p_sdhci_probe(struct udevice *dev)
243{
244 struct s5p_sdhci_plat *plat = dev_get_platdata(dev);
245 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
246 struct sdhci_host *host = dev_get_priv(dev);
247 int ret;
248
249 ret = sdhci_get_config(gd->fdt_blob, dev->of_offset, host);
250 if (ret)
251 return ret;
252
253 ret = do_sdhci_init(host);
254 if (ret)
255 return ret;
256
257 ret = sdhci_setup_cfg(&plat->cfg, host, 52000000, 400000);
258 if (ret)
259 return ret;
260
261 host->mmc = &plat->mmc;
262 host->mmc->priv = host;
263 host->mmc->dev = dev;
264 upriv->mmc = host->mmc;
265
266 return sdhci_probe(dev);
267}
268
269static int s5p_sdhci_bind(struct udevice *dev)
270{
271 struct s5p_sdhci_plat *plat = dev_get_platdata(dev);
272 int ret;
273
274 ret = sdhci_bind(dev, &plat->mmc, &plat->cfg);
275 if (ret)
276 return ret;
277
278 return 0;
279}
280
281static const struct udevice_id s5p_sdhci_ids[] = {
282 { .compatible = "samsung,exynos4412-sdhci"},
283 { }
284};
285
286U_BOOT_DRIVER(s5p_sdhci_drv) = {
287 .name = "s5p_sdhci",
288 .id = UCLASS_MMC,
289 .of_match = s5p_sdhci_ids,
290 .bind = s5p_sdhci_bind,
291 .ops = &sdhci_ops,
292 .probe = s5p_sdhci_probe,
293 .priv_auto_alloc_size = sizeof(struct sdhci_host),
294 .platdata_auto_alloc_size = sizeof(struct s5p_sdhci_plat),
295};
296#endif /* CONFIG_DM_MMC */