blob: 24f599e868aab7cc7b6680eb7652ecc12ec21900 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung442d5562012-04-23 02:36:28 +00002/*
3 * (C) Copyright 2012 SAMSUNG Electronics
4 * Jaehoon Chung <jh80.chung@samsung.com>
Jaehoon Chung442d5562012-04-23 02:36:28 +00005 */
6
7#include <common.h>
Jaehoon Chung7aedafd2016-09-09 18:23:23 +09008#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.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>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090013#include <linux/libfdt.h>
Piotr Wilczek3577fe82014-03-07 14:59:41 +010014#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;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +010094 host->max_clk = 52000000;
Jaehoon Chung442d5562012-04-23 02:36:28 +000095 host->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
Jaehoon Chung62226b62016-12-30 15:30:18 +090096 host->ops = &s5p_sdhci_ops;
Jaehoon Chung442d5562012-04-23 02:36:28 +000097
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +090098 if (host->bus_width == 8)
Jaehoon Chung113e5df2013-07-19 17:44:49 +090099 host->host_caps |= MMC_MODE_8BIT;
Jaehoon Chung442d5562012-04-23 02:36:28 +0000100
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900101#ifndef CONFIG_BLK
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100102 return add_sdhci(host, 0, 400000);
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900103#else
104 return 0;
105#endif
Jaehoon Chung442d5562012-04-23 02:36:28 +0000106}
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100107
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900108int s5p_sdhci_init(u32 regbase, int index, int bus_width)
109{
Tobias Jakobi1a9d1732015-10-05 13:47:50 +0200110 struct sdhci_host *host = calloc(1, sizeof(struct sdhci_host));
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900111 if (!host) {
Tobias Jakobi1a9d1732015-10-05 13:47:50 +0200112 printf("sdhci__host allocation fail!\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900113 return -ENOMEM;
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900114 }
115 host->ioaddr = (void *)regbase;
116 host->index = index;
117 host->bus_width = bus_width;
118
119 return s5p_sdhci_core_init(host);
120}
121
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100122static int do_sdhci_init(struct sdhci_host *host)
123{
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200124 int dev_id, flag, ret;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100125
126 flag = host->bus_width == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
127 dev_id = host->index + PERIPH_ID_SDMMC0;
128
Przemyslaw Marczak96094d42015-10-28 15:41:50 +0100129 ret = exynos_pinmux_config(dev_id, flag);
130 if (ret) {
131 printf("external SD not configured\n");
132 return ret;
133 }
134
Simon Glass03479602015-01-05 20:05:38 -0700135 if (dm_gpio_is_valid(&host->pwr_gpio)) {
136 dm_gpio_set_value(&host->pwr_gpio, 1);
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200137 ret = exynos_pinmux_config(dev_id, flag);
138 if (ret) {
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100139 debug("MMC not configured\n");
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200140 return ret;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100141 }
142 }
143
Simon Glass03479602015-01-05 20:05:38 -0700144 if (dm_gpio_is_valid(&host->cd_gpio)) {
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200145 ret = dm_gpio_get_value(&host->cd_gpio);
146 if (ret) {
147 debug("no SD card detected (%d)\n", ret);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100148 return -ENODEV;
Tobias Jakobi2308ea72015-10-05 13:47:53 +0200149 }
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100150 }
151
Jaehoon Chung9b8c9a32014-05-16 13:59:59 +0900152 return s5p_sdhci_core_init(host);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100153}
154
155static int sdhci_get_config(const void *blob, int node, struct sdhci_host *host)
156{
157 int bus_width, dev_id;
158 unsigned int base;
159
160 /* Get device id */
161 dev_id = pinmux_decode_periph_id(blob, node);
Seung-Woo Kimf0ecfc52016-11-24 15:05:51 +0900162 if (dev_id < PERIPH_ID_SDMMC0 || dev_id > PERIPH_ID_SDMMC3) {
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100163 debug("MMC: Can't get device id\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900164 return -EINVAL;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100165 }
166 host->index = dev_id - PERIPH_ID_SDMMC0;
167
168 /* Get bus width */
169 bus_width = fdtdec_get_int(blob, node, "samsung,bus-width", 0);
170 if (bus_width <= 0) {
171 debug("MMC: Can't get bus-width\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900172 return -EINVAL;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100173 }
174 host->bus_width = bus_width;
175
176 /* Get the base address from the device node */
177 base = fdtdec_get_addr(blob, node, "reg");
178 if (!base) {
179 debug("MMC: Can't get base address\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +0900180 return -EINVAL;
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100181 }
182 host->ioaddr = (void *)base;
183
Simon Glass150c5af2017-05-30 21:47:09 -0600184 gpio_request_by_name_nodev(offset_to_ofnode(node), "pwr-gpios", 0,
185 &host->pwr_gpio, GPIOD_IS_OUT);
186 gpio_request_by_name_nodev(offset_to_ofnode(node), "cd-gpios", 0,
187 &host->cd_gpio, GPIOD_IS_IN);
Piotr Wilczek3577fe82014-03-07 14:59:41 +0100188
189 return 0;
190}
191
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900192#ifdef CONFIG_DM_MMC
193static int s5p_sdhci_probe(struct udevice *dev)
194{
195 struct s5p_sdhci_plat *plat = dev_get_platdata(dev);
196 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
197 struct sdhci_host *host = dev_get_priv(dev);
198 int ret;
199
Simon Glasse160f7d2017-01-17 16:52:55 -0700200 ret = sdhci_get_config(gd->fdt_blob, dev_of_offset(dev), host);
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900201 if (ret)
202 return ret;
203
204 ret = do_sdhci_init(host);
205 if (ret)
206 return ret;
207
Marek Szyprowskie27108c2020-01-16 16:25:33 +0100208 ret = mmc_of_parse(dev, &plat->cfg);
209 if (ret)
210 return ret;
211
Peng Fan6f16cbe2019-08-06 02:47:59 +0000212 host->mmc = &plat->mmc;
213 host->mmc->dev = dev;
Marek Szyprowskie27108c2020-01-16 16:25:33 +0100214
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +0100215 ret = sdhci_setup_cfg(&plat->cfg, host, 0, 400000);
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900216 if (ret)
217 return ret;
218
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900219 host->mmc->priv = host;
Jaehoon Chung7aedafd2016-09-09 18:23:23 +0900220 upriv->mmc = host->mmc;
221
222 return sdhci_probe(dev);
223}
224
225static int s5p_sdhci_bind(struct udevice *dev)
226{
227 struct s5p_sdhci_plat *plat = dev_get_platdata(dev);
228 int ret;
229
230 ret = sdhci_bind(dev, &plat->mmc, &plat->cfg);
231 if (ret)
232 return ret;
233
234 return 0;
235}
236
237static const struct udevice_id s5p_sdhci_ids[] = {
238 { .compatible = "samsung,exynos4412-sdhci"},
239 { }
240};
241
242U_BOOT_DRIVER(s5p_sdhci_drv) = {
243 .name = "s5p_sdhci",
244 .id = UCLASS_MMC,
245 .of_match = s5p_sdhci_ids,
246 .bind = s5p_sdhci_bind,
247 .ops = &sdhci_ops,
248 .probe = s5p_sdhci_probe,
249 .priv_auto_alloc_size = sizeof(struct sdhci_host),
250 .platdata_auto_alloc_size = sizeof(struct s5p_sdhci_plat),
251};
252#endif /* CONFIG_DM_MMC */