blob: 435ccac59421d93b0d352f93fc4f67e00ae89595 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +00002/*
3 * (C) Copyright 2012 SAMSUNG Electronics
4 * Jaehoon Chung <jh80.chung@samsung.com>
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +00005 */
6
7#include <common.h>
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +00008#include <dwmmc.h>
Amara082a2d2013-04-27 11:42:55 +05309#include <fdtdec.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Amara082a2d2013-04-27 11:42:55 +053011#include <malloc.h>
Jaehoon Chungccd60a82016-07-19 16:33:34 +090012#include <errno.h>
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000013#include <asm/arch/dwmmc.h>
14#include <asm/arch/clk.h>
Amara082a2d2013-04-27 11:42:55 +053015#include <asm/arch/pinmux.h>
Przemyslaw Marczak64029f72015-02-20 12:29:26 +010016#include <asm/arch/power.h>
Jaehoon Chung959198f2014-05-16 13:59:52 +090017#include <asm/gpio.h>
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000018
Amara082a2d2013-04-27 11:42:55 +053019#define DWMMC_MAX_CH_NUM 4
20#define DWMMC_MAX_FREQ 52000000
21#define DWMMC_MIN_FREQ 400000
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090022#define DWMMC_MMC0_SDR_TIMING_VAL 0x03030001
23#define DWMMC_MMC2_SDR_TIMING_VAL 0x03020001
24
Jaehoon Chung3537ee82016-06-30 20:57:37 +090025#ifdef CONFIG_DM_MMC
26#include <dm.h>
27DECLARE_GLOBAL_DATA_PTR;
28
29struct exynos_mmc_plat {
30 struct mmc_config cfg;
31 struct mmc mmc;
32};
33#endif
34
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090035/* Exynos implmentation specific drver private data */
36struct dwmci_exynos_priv_data {
Jaehoon Chung3537ee82016-06-30 20:57:37 +090037#ifdef CONFIG_DM_MMC
38 struct dwmci_host host;
39#endif
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090040 u32 sdr_timing;
41};
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000042
Amara082a2d2013-04-27 11:42:55 +053043/*
44 * Function used as callback function to initialise the
45 * CLKSEL register for every mmc channel.
46 */
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000047static void exynos_dwmci_clksel(struct dwmci_host *host)
48{
Lukasz Majewski7c350a22018-08-01 14:48:59 +020049#ifdef CONFIG_DM_MMC
50 struct dwmci_exynos_priv_data *priv =
51 container_of(host, struct dwmci_exynos_priv_data, host);
52#else
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090053 struct dwmci_exynos_priv_data *priv = host->priv;
Lukasz Majewski7c350a22018-08-01 14:48:59 +020054#endif
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090055 dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000056}
57
Simon Glasse3563f22015-08-30 16:55:15 -060058unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq)
Amara082a2d2013-04-27 11:42:55 +053059{
Rajeshwari S Shinded3e016c2014-02-05 10:48:15 +053060 unsigned long sclk;
61 int8_t clk_div;
62
63 /*
64 * Since SDCLKIN is divided inside controller by the DIVRATIO
65 * value set in the CLKSEL register, we need to use the same output
66 * clock value to calculate the CLKDIV value.
67 * as per user manual:cclk_in = SDCLKIN / (DIVRATIO + 1)
68 */
69 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT)
70 & DWMCI_DIVRATIO_MASK) + 1;
71 sclk = get_mmc_clk(host->dev_index);
72
Jaehoon Chung959198f2014-05-16 13:59:52 +090073 /*
74 * Assume to know divider value.
75 * When clock unit is broken, need to set "host->div"
76 */
77 return sclk / clk_div / (host->div + 1);
Amara082a2d2013-04-27 11:42:55 +053078}
79
Jaehoon Chung18ab6752013-11-29 20:08:57 +090080static void exynos_dwmci_board_init(struct dwmci_host *host)
81{
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090082 struct dwmci_exynos_priv_data *priv = host->priv;
83
Jaehoon Chung18ab6752013-11-29 20:08:57 +090084 if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
85 dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
86 dwmci_writel(host, EMMCP_SEND0, 0);
87 dwmci_writel(host, EMMCP_CTRL0,
88 MPSCTRL_SECURE_READ_BIT |
89 MPSCTRL_SECURE_WRITE_BIT |
90 MPSCTRL_NON_SECURE_READ_BIT |
91 MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID);
92 }
Jaehoon Chung3a33bb12015-02-04 15:48:39 +090093
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090094 /* Set to timing value at initial time */
95 if (priv->sdr_timing)
Jaehoon Chung3a33bb12015-02-04 15:48:39 +090096 exynos_dwmci_clksel(host);
Jaehoon Chung18ab6752013-11-29 20:08:57 +090097}
98
Jaehoon Chungd956a672016-06-29 19:46:17 +090099static int exynos_dwmci_core_init(struct dwmci_host *host)
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000100{
Amara082a2d2013-04-27 11:42:55 +0530101 unsigned int div;
102 unsigned long freq, sclk;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900103
104 if (host->bus_hz)
105 freq = host->bus_hz;
106 else
107 freq = DWMMC_MAX_FREQ;
108
Amara082a2d2013-04-27 11:42:55 +0530109 /* request mmc clock vlaue of 52MHz. */
Jaehoon Chungd956a672016-06-29 19:46:17 +0900110 sclk = get_mmc_clk(host->dev_index);
Amara082a2d2013-04-27 11:42:55 +0530111 div = DIV_ROUND_UP(sclk, freq);
112 /* set the clock divisor for mmc */
Jaehoon Chungd956a672016-06-29 19:46:17 +0900113 set_mmc_clk(host->dev_index, div);
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000114
Amara082a2d2013-04-27 11:42:55 +0530115 host->name = "EXYNOS DWMMC";
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530116#ifdef CONFIG_EXYNOS5420
117 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
118#endif
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900119 host->board_init = exynos_dwmci_board_init;
Amara082a2d2013-04-27 11:42:55 +0530120
Jaehoon Chunge09bd852014-05-16 13:59:57 +0900121 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000122 host->clksel = exynos_dwmci_clksel;
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900123 host->get_mmc_clk = exynos_dwmci_get_clk;
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900124
125#ifndef CONFIG_DM_MMC
Amara082a2d2013-04-27 11:42:55 +0530126 /* Add the mmc channel to be registered with mmc core */
127 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
Jaehoon Chungd956a672016-06-29 19:46:17 +0900128 printf("DWMMC%d registration failed\n", host->dev_index);
Amara082a2d2013-04-27 11:42:55 +0530129 return -1;
130 }
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900131#endif
132
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000133 return 0;
134}
135
Jaehoon Chung959198f2014-05-16 13:59:52 +0900136static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM];
137
138static int do_dwmci_init(struct dwmci_host *host)
139{
Jaehoon Chungd956a672016-06-29 19:46:17 +0900140 int flag, err;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900141
142 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
143 err = exynos_pinmux_config(host->dev_id, flag);
144 if (err) {
Jaehoon Chungd956a672016-06-29 19:46:17 +0900145 printf("DWMMC%d not configure\n", host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900146 return err;
147 }
148
Jaehoon Chungd956a672016-06-29 19:46:17 +0900149 return exynos_dwmci_core_init(host);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900150}
151
152static int exynos_dwmci_get_config(const void *blob, int node,
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200153 struct dwmci_host *host,
154 struct dwmci_exynos_priv_data *priv)
Jaehoon Chung959198f2014-05-16 13:59:52 +0900155{
156 int err = 0;
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900157 u32 base, timing[3];
Jaehoon Chung959198f2014-05-16 13:59:52 +0900158
159 /* Extract device id for each mmc channel */
160 host->dev_id = pinmux_decode_periph_id(blob, node);
161
Jaehoon Chung959198f2014-05-16 13:59:52 +0900162 host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id);
163 if (host->dev_index == host->dev_id)
164 host->dev_index = host->dev_id - PERIPH_ID_SDMMC0;
165
Jaehoon Chungce757b12016-06-29 19:46:16 +0900166 if (host->dev_index > 4) {
167 printf("DWMMC%d: Can't get the dev index\n", host->dev_index);
168 return -EINVAL;
169 }
170
Jaehoon Chung70f6d392016-06-29 19:46:18 +0900171 /* Get the bus width from the device node (Default is 4bit buswidth) */
172 host->buswidth = fdtdec_get_int(blob, node, "samsung,bus-width", 4);
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900173
Jaehoon Chung959198f2014-05-16 13:59:52 +0900174 /* Set the base address from the device node */
175 base = fdtdec_get_addr(blob, node, "reg");
176 if (!base) {
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900177 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900178 return -EINVAL;
179 }
180 host->ioaddr = (void *)base;
181
182 /* Extract the timing info from the node */
183 err = fdtdec_get_int_array(blob, node, "samsung,timing", timing, 3);
184 if (err) {
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900185 printf("DWMMC%d: Can't get sdr-timings for devider\n",
186 host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900187 return -EINVAL;
188 }
189
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900190 priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
Jaehoon Chung959198f2014-05-16 13:59:52 +0900191 DWMCI_SET_DRV_CLK(timing[1]) |
192 DWMCI_SET_DIV_RATIO(timing[2]));
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900193
194 /* sdr_timing didn't assigned anything, use the default value */
195 if (!priv->sdr_timing) {
196 if (host->dev_index == 0)
197 priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL;
198 else if (host->dev_index == 2)
199 priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL;
200 }
Jaehoon Chung959198f2014-05-16 13:59:52 +0900201
202 host->fifoth_val = fdtdec_get_int(blob, node, "fifoth_val", 0);
203 host->bus_hz = fdtdec_get_int(blob, node, "bus_hz", 0);
204 host->div = fdtdec_get_int(blob, node, "div", 0);
205
206 return 0;
207}
208
209static int exynos_dwmci_process_node(const void *blob,
210 int node_list[], int count)
211{
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200212 struct dwmci_exynos_priv_data *priv;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900213 struct dwmci_host *host;
214 int i, node, err;
Amara082a2d2013-04-27 11:42:55 +0530215
216 for (i = 0; i < count; i++) {
Jaehoon Chung959198f2014-05-16 13:59:52 +0900217 node = node_list[i];
Amara082a2d2013-04-27 11:42:55 +0530218 if (node <= 0)
219 continue;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900220 host = &dwmci_host[i];
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200221
222 priv = malloc(sizeof(struct dwmci_exynos_priv_data));
223 if (!priv) {
224 pr_err("dwmci_exynos_priv_data malloc fail!\n");
225 return -ENOMEM;
226 }
227
228 err = exynos_dwmci_get_config(blob, node, host, priv);
Amara082a2d2013-04-27 11:42:55 +0530229 if (err) {
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900230 printf("%s: failed to decode dev %d\n", __func__, i);
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200231 free(priv);
Amara082a2d2013-04-27 11:42:55 +0530232 return err;
233 }
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200234 host->priv = priv;
Amara082a2d2013-04-27 11:42:55 +0530235
Jaehoon Chung959198f2014-05-16 13:59:52 +0900236 do_dwmci_init(host);
Amara082a2d2013-04-27 11:42:55 +0530237 }
238 return 0;
239}
Jaehoon Chung959198f2014-05-16 13:59:52 +0900240
241int exynos_dwmmc_init(const void *blob)
242{
Jaehoon Chung959198f2014-05-16 13:59:52 +0900243 int node_list[DWMMC_MAX_CH_NUM];
Przemyslaw Marczak64029f72015-02-20 12:29:26 +0100244 int boot_dev_node;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900245 int err = 0, count;
246
Jaehoon Chung959198f2014-05-16 13:59:52 +0900247 count = fdtdec_find_aliases_for_id(blob, "mmc",
Jaehoon Chungd956a672016-06-29 19:46:17 +0900248 COMPAT_SAMSUNG_EXYNOS_DWMMC, node_list,
249 DWMMC_MAX_CH_NUM);
Przemyslaw Marczak64029f72015-02-20 12:29:26 +0100250
251 /* For DWMMC always set boot device as mmc 0 */
252 if (count >= 3 && get_boot_mode() == BOOT_MODE_SD) {
253 boot_dev_node = node_list[2];
254 node_list[2] = node_list[0];
255 node_list[0] = boot_dev_node;
256 }
257
Jaehoon Chung959198f2014-05-16 13:59:52 +0900258 err = exynos_dwmci_process_node(blob, node_list, count);
259
260 return err;
261}
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900262
263#ifdef CONFIG_DM_MMC
264static int exynos_dwmmc_probe(struct udevice *dev)
265{
266 struct exynos_mmc_plat *plat = dev_get_platdata(dev);
267 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
268 struct dwmci_exynos_priv_data *priv = dev_get_priv(dev);
269 struct dwmci_host *host = &priv->host;
270 int err;
271
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200272 err = exynos_dwmci_get_config(gd->fdt_blob, dev_of_offset(dev), host,
273 priv);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900274 if (err)
275 return err;
276 err = do_dwmci_init(host);
277 if (err)
278 return err;
279
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900280 dwmci_setup_cfg(&plat->cfg, host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900281 host->mmc = &plat->mmc;
282 host->mmc->priv = &priv->host;
283 host->priv = dev;
284 upriv->mmc = host->mmc;
285
286 return dwmci_probe(dev);
287}
288
289static int exynos_dwmmc_bind(struct udevice *dev)
290{
291 struct exynos_mmc_plat *plat = dev_get_platdata(dev);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900292
Masahiro Yamada24f5aec2016-09-06 22:17:32 +0900293 return dwmci_bind(dev, &plat->mmc, &plat->cfg);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900294}
295
296static const struct udevice_id exynos_dwmmc_ids[] = {
297 { .compatible = "samsung,exynos4412-dw-mshc" },
Lukasz Majewski0acdb2c2018-08-01 14:49:00 +0200298 { .compatible = "samsung,exynos-dwmmc" },
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900299 { }
300};
301
302U_BOOT_DRIVER(exynos_dwmmc_drv) = {
303 .name = "exynos_dwmmc",
304 .id = UCLASS_MMC,
305 .of_match = exynos_dwmmc_ids,
306 .bind = exynos_dwmmc_bind,
307 .ops = &dm_dwmci_ops,
308 .probe = exynos_dwmmc_probe,
309 .priv_auto_alloc_size = sizeof(struct dwmci_exynos_priv_data),
310 .platdata_auto_alloc_size = sizeof(struct exynos_mmc_plat),
311};
312#endif