blob: 0d65783b2ce388e870f4b6fbac63507eea13b642 [file] [log] [blame]
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +00001/*
2 * (C) Copyright 2012 SAMSUNG Electronics
3 * Jaehoon Chung <jh80.chung@samsung.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +00006 */
7
8#include <common.h>
Jaehoon Chung990a9372016-09-09 18:23:23 +09009#include <dm.h>
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000010#include <malloc.h>
11#include <sdhci.h>
Piotr Wilczek12cf19e2014-03-07 14:59:41 +010012#include <fdtdec.h>
13#include <libfdt.h>
14#include <asm/gpio.h>
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000015#include <asm/arch/mmc.h>
Jaehoon Chungb1929ea2012-08-30 16:24:11 +000016#include <asm/arch/clk.h>
Piotr Wilczek12cf19e2014-03-07 14:59:41 +010017#include <errno.h>
Piotr Wilczek12cf19e2014-03-07 14:59:41 +010018#include <asm/arch/pinmux.h>
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000019
Jaehoon Chung990a9372016-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 Chungb0b0c9d2012-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 Reimer9af8f392015-02-23 14:52:22 -070043 val &= SDHCI_CTRL2_SELBASECLK_MASK(3);
Jaehoon Chungb0b0c9d2012-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 Chungb36cbac2012-08-30 16:24:08 +000061 val = SDHCI_CTRL3_FCSEL0 | SDHCI_CTRL3_FCSEL1;
Jaehoon Chungb0b0c9d2012-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 Chungb494ac82014-05-16 13:59:59 +090076static int s5p_sdhci_core_init(struct sdhci_host *host)
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000077{
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000078 host->name = S5P_NAME;
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000079
Jaehoon Chungb36cbac2012-08-30 16:24:08 +000080 host->quirks = SDHCI_QUIRK_NO_HISPD_BIT | SDHCI_QUIRK_BROKEN_VOLTAGE |
Jaehoon Chunga2f94cd2016-07-12 21:18:47 +090081 SDHCI_QUIRK_32BIT_DMA_ADDR |
Jaehoon Chung46e627c2013-07-19 17:44:49 +090082 SDHCI_QUIRK_WAIT_SEND_CMD | SDHCI_QUIRK_USE_WIDE8;
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000083 host->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chungb36cbac2012-08-30 16:24:08 +000084 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000085
86 host->set_control_reg = &s5p_sdhci_set_control_reg;
Jaehoon Chungb1929ea2012-08-30 16:24:11 +000087 host->set_clock = set_mmc_clk;
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000088
Jaehoon Chungb494ac82014-05-16 13:59:59 +090089 if (host->bus_width == 8)
Jaehoon Chung46e627c2013-07-19 17:44:49 +090090 host->host_caps |= MMC_MODE_8BIT;
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000091
Jaehoon Chung990a9372016-09-09 18:23:23 +090092#ifndef CONFIG_BLK
Jaehoon Chung0c3c2552012-12-13 20:07:12 +000093 return add_sdhci(host, 52000000, 400000);
Jaehoon Chung990a9372016-09-09 18:23:23 +090094#else
95 return 0;
96#endif
Jaehoon Chungb0b0c9d2012-04-23 02:36:28 +000097}
Piotr Wilczek12cf19e2014-03-07 14:59:41 +010098
Jaehoon Chungb494ac82014-05-16 13:59:59 +090099int s5p_sdhci_init(u32 regbase, int index, int bus_width)
100{
Tobias Jakobi49b330d2015-10-05 13:47:50 +0200101 struct sdhci_host *host = calloc(1, sizeof(struct sdhci_host));
Jaehoon Chungb494ac82014-05-16 13:59:59 +0900102 if (!host) {
Tobias Jakobi49b330d2015-10-05 13:47:50 +0200103 printf("sdhci__host allocation fail!\n");
Jaehoon Chungb494ac82014-05-16 13:59:59 +0900104 return 1;
105 }
106 host->ioaddr = (void *)regbase;
107 host->index = index;
108 host->bus_width = bus_width;
109
110 return s5p_sdhci_core_init(host);
111}
112
Masahiro Yamada366b24f2015-08-12 07:31:55 +0900113#if CONFIG_IS_ENABLED(OF_CONTROL)
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100114struct sdhci_host sdhci_host[SDHCI_MAX_HOSTS];
115
116static int do_sdhci_init(struct sdhci_host *host)
117{
Tobias Jakobic29121b2015-10-05 13:47:53 +0200118 int dev_id, flag, ret;
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100119
120 flag = host->bus_width == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
121 dev_id = host->index + PERIPH_ID_SDMMC0;
122
Przemyslaw Marczak44468ef2015-10-28 15:41:50 +0100123 ret = exynos_pinmux_config(dev_id, flag);
124 if (ret) {
125 printf("external SD not configured\n");
126 return ret;
127 }
128
Simon Glassa30d4ba2015-01-05 20:05:38 -0700129 if (dm_gpio_is_valid(&host->pwr_gpio)) {
130 dm_gpio_set_value(&host->pwr_gpio, 1);
Tobias Jakobic29121b2015-10-05 13:47:53 +0200131 ret = exynos_pinmux_config(dev_id, flag);
132 if (ret) {
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100133 debug("MMC not configured\n");
Tobias Jakobic29121b2015-10-05 13:47:53 +0200134 return ret;
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100135 }
136 }
137
Simon Glassa30d4ba2015-01-05 20:05:38 -0700138 if (dm_gpio_is_valid(&host->cd_gpio)) {
Tobias Jakobic29121b2015-10-05 13:47:53 +0200139 ret = dm_gpio_get_value(&host->cd_gpio);
140 if (ret) {
141 debug("no SD card detected (%d)\n", ret);
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100142 return -ENODEV;
Tobias Jakobic29121b2015-10-05 13:47:53 +0200143 }
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100144 }
145
Jaehoon Chungb494ac82014-05-16 13:59:59 +0900146 return s5p_sdhci_core_init(host);
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100147}
148
149static int sdhci_get_config(const void *blob, int node, struct sdhci_host *host)
150{
151 int bus_width, dev_id;
152 unsigned int base;
153
154 /* Get device id */
155 dev_id = pinmux_decode_periph_id(blob, node);
156 if (dev_id < PERIPH_ID_SDMMC0 && dev_id > PERIPH_ID_SDMMC3) {
157 debug("MMC: Can't get device id\n");
158 return -1;
159 }
160 host->index = dev_id - PERIPH_ID_SDMMC0;
161
162 /* Get bus width */
163 bus_width = fdtdec_get_int(blob, node, "samsung,bus-width", 0);
164 if (bus_width <= 0) {
165 debug("MMC: Can't get bus-width\n");
166 return -1;
167 }
168 host->bus_width = bus_width;
169
170 /* Get the base address from the device node */
171 base = fdtdec_get_addr(blob, node, "reg");
172 if (!base) {
173 debug("MMC: Can't get base address\n");
174 return -1;
175 }
176 host->ioaddr = (void *)base;
177
Simon Glassa30d4ba2015-01-05 20:05:38 -0700178 gpio_request_by_name_nodev(blob, node, "pwr-gpios", 0, &host->pwr_gpio,
179 GPIOD_IS_OUT);
180 gpio_request_by_name_nodev(blob, node, "cd-gpios", 0, &host->cd_gpio,
181 GPIOD_IS_IN);
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100182
183 return 0;
184}
185
186static int process_nodes(const void *blob, int node_list[], int count)
187{
188 struct sdhci_host *host;
Tobias Jakobi953d21b2015-10-05 13:47:52 +0200189 int i, node, ret;
Tobias Jakobi0ab570c2015-10-05 13:47:51 +0200190 int failed = 0;
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100191
192 debug("%s: count = %d\n", __func__, count);
193
194 /* build sdhci_host[] for each controller */
195 for (i = 0; i < count; i++) {
196 node = node_list[i];
197 if (node <= 0)
198 continue;
199
200 host = &sdhci_host[i];
201
Tobias Jakobi953d21b2015-10-05 13:47:52 +0200202 ret = sdhci_get_config(blob, node, host);
203 if (ret) {
204 printf("%s: failed to decode dev %d (%d)\n", __func__, i, ret);
Tobias Jakobi0ab570c2015-10-05 13:47:51 +0200205 failed++;
206 continue;
207 }
208
Tobias Jakobi953d21b2015-10-05 13:47:52 +0200209 ret = do_sdhci_init(host);
Przemyslaw Marczak44468ef2015-10-28 15:41:50 +0100210 if (ret && ret != -ENODEV) {
Tobias Jakobi953d21b2015-10-05 13:47:52 +0200211 printf("%s: failed to initialize dev %d (%d)\n", __func__, i, ret);
Tobias Jakobi0ab570c2015-10-05 13:47:51 +0200212 failed++;
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100213 }
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100214 }
Tobias Jakobi0ab570c2015-10-05 13:47:51 +0200215
216 /* we only consider it an error when all nodes fail */
217 return (failed == count ? -1 : 0);
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100218}
219
220int exynos_mmc_init(const void *blob)
221{
222 int count;
223 int node_list[SDHCI_MAX_HOSTS];
224
225 count = fdtdec_find_aliases_for_id(blob, "mmc",
226 COMPAT_SAMSUNG_EXYNOS_MMC, node_list,
227 SDHCI_MAX_HOSTS);
228
Tobias Jakobi0ab570c2015-10-05 13:47:51 +0200229 return process_nodes(blob, node_list, count);
Piotr Wilczek12cf19e2014-03-07 14:59:41 +0100230}
231#endif
Jaehoon Chung990a9372016-09-09 18:23:23 +0900232
233#ifdef CONFIG_DM_MMC
234static int s5p_sdhci_probe(struct udevice *dev)
235{
236 struct s5p_sdhci_plat *plat = dev_get_platdata(dev);
237 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
238 struct sdhci_host *host = dev_get_priv(dev);
239 int ret;
240
241 ret = sdhci_get_config(gd->fdt_blob, dev->of_offset, host);
242 if (ret)
243 return ret;
244
245 ret = do_sdhci_init(host);
246 if (ret)
247 return ret;
248
249 ret = sdhci_setup_cfg(&plat->cfg, host, 52000000, 400000);
250 if (ret)
251 return ret;
252
253 host->mmc = &plat->mmc;
254 host->mmc->priv = host;
255 host->mmc->dev = dev;
256 upriv->mmc = host->mmc;
257
258 return sdhci_probe(dev);
259}
260
261static int s5p_sdhci_bind(struct udevice *dev)
262{
263 struct s5p_sdhci_plat *plat = dev_get_platdata(dev);
264 int ret;
265
266 ret = sdhci_bind(dev, &plat->mmc, &plat->cfg);
267 if (ret)
268 return ret;
269
270 return 0;
271}
272
273static const struct udevice_id s5p_sdhci_ids[] = {
274 { .compatible = "samsung,exynos4412-sdhci"},
275 { }
276};
277
278U_BOOT_DRIVER(s5p_sdhci_drv) = {
279 .name = "s5p_sdhci",
280 .id = UCLASS_MMC,
281 .of_match = s5p_sdhci_ids,
282 .bind = s5p_sdhci_bind,
283 .ops = &sdhci_ops,
284 .probe = s5p_sdhci_probe,
285 .priv_auto_alloc_size = sizeof(struct sdhci_host),
286 .platdata_auto_alloc_size = sizeof(struct s5p_sdhci_plat),
287};
288#endif /* CONFIG_DM_MMC */