blob: 2f849c43b129bc42af40fd56d3115f4e7958615f [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>
Simon Glass401d1c42020-10-30 21:38:53 -060010#include <asm/global_data.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Amara082a2d2013-04-27 11:42:55 +053012#include <malloc.h>
Jaehoon Chungccd60a82016-07-19 16:33:34 +090013#include <errno.h>
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000014#include <asm/arch/dwmmc.h>
15#include <asm/arch/clk.h>
Amara082a2d2013-04-27 11:42:55 +053016#include <asm/arch/pinmux.h>
Przemyslaw Marczak64029f72015-02-20 12:29:26 +010017#include <asm/arch/power.h>
Jaehoon Chung959198f2014-05-16 13:59:52 +090018#include <asm/gpio.h>
Simon Glass1e94b462023-09-14 18:21:46 -060019#include <linux/printk.h>
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000020
Amara082a2d2013-04-27 11:42:55 +053021#define DWMMC_MAX_CH_NUM 4
22#define DWMMC_MAX_FREQ 52000000
23#define DWMMC_MIN_FREQ 400000
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090024#define DWMMC_MMC0_SDR_TIMING_VAL 0x03030001
25#define DWMMC_MMC2_SDR_TIMING_VAL 0x03020001
26
Jaehoon Chung3537ee82016-06-30 20:57:37 +090027#ifdef CONFIG_DM_MMC
28#include <dm.h>
29DECLARE_GLOBAL_DATA_PTR;
30
31struct exynos_mmc_plat {
32 struct mmc_config cfg;
33 struct mmc mmc;
34};
35#endif
36
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090037/* Exynos implmentation specific drver private data */
38struct dwmci_exynos_priv_data {
Jaehoon Chung3537ee82016-06-30 20:57:37 +090039#ifdef CONFIG_DM_MMC
40 struct dwmci_host host;
41#endif
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090042 u32 sdr_timing;
43};
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000044
Amara082a2d2013-04-27 11:42:55 +053045/*
46 * Function used as callback function to initialise the
47 * CLKSEL register for every mmc channel.
48 */
Siew Chin Limd456dfb2020-12-24 18:21:03 +080049static int exynos_dwmci_clksel(struct dwmci_host *host)
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000050{
Lukasz Majewski7c350a22018-08-01 14:48:59 +020051#ifdef CONFIG_DM_MMC
52 struct dwmci_exynos_priv_data *priv =
53 container_of(host, struct dwmci_exynos_priv_data, host);
54#else
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090055 struct dwmci_exynos_priv_data *priv = host->priv;
Lukasz Majewski7c350a22018-08-01 14:48:59 +020056#endif
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090057 dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
Siew Chin Limd456dfb2020-12-24 18:21:03 +080058
59 return 0;
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000060}
61
Simon Glasse3563f22015-08-30 16:55:15 -060062unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq)
Amara082a2d2013-04-27 11:42:55 +053063{
Rajeshwari S Shinded3e016c2014-02-05 10:48:15 +053064 unsigned long sclk;
65 int8_t clk_div;
66
67 /*
68 * Since SDCLKIN is divided inside controller by the DIVRATIO
69 * value set in the CLKSEL register, we need to use the same output
70 * clock value to calculate the CLKDIV value.
71 * as per user manual:cclk_in = SDCLKIN / (DIVRATIO + 1)
72 */
73 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT)
74 & DWMCI_DIVRATIO_MASK) + 1;
75 sclk = get_mmc_clk(host->dev_index);
76
Jaehoon Chung959198f2014-05-16 13:59:52 +090077 /*
78 * Assume to know divider value.
79 * When clock unit is broken, need to set "host->div"
80 */
81 return sclk / clk_div / (host->div + 1);
Amara082a2d2013-04-27 11:42:55 +053082}
83
Jaehoon Chung18ab6752013-11-29 20:08:57 +090084static void exynos_dwmci_board_init(struct dwmci_host *host)
85{
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090086 struct dwmci_exynos_priv_data *priv = host->priv;
87
Jaehoon Chung18ab6752013-11-29 20:08:57 +090088 if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
89 dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
90 dwmci_writel(host, EMMCP_SEND0, 0);
91 dwmci_writel(host, EMMCP_CTRL0,
92 MPSCTRL_SECURE_READ_BIT |
93 MPSCTRL_SECURE_WRITE_BIT |
94 MPSCTRL_NON_SECURE_READ_BIT |
95 MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID);
96 }
Jaehoon Chung3a33bb12015-02-04 15:48:39 +090097
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090098 /* Set to timing value at initial time */
99 if (priv->sdr_timing)
Jaehoon Chung3a33bb12015-02-04 15:48:39 +0900100 exynos_dwmci_clksel(host);
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900101}
102
Jaehoon Chungd956a672016-06-29 19:46:17 +0900103static int exynos_dwmci_core_init(struct dwmci_host *host)
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000104{
Amara082a2d2013-04-27 11:42:55 +0530105 unsigned int div;
106 unsigned long freq, sclk;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900107
108 if (host->bus_hz)
109 freq = host->bus_hz;
110 else
111 freq = DWMMC_MAX_FREQ;
112
Amara082a2d2013-04-27 11:42:55 +0530113 /* request mmc clock vlaue of 52MHz. */
Jaehoon Chungd956a672016-06-29 19:46:17 +0900114 sclk = get_mmc_clk(host->dev_index);
Amara082a2d2013-04-27 11:42:55 +0530115 div = DIV_ROUND_UP(sclk, freq);
116 /* set the clock divisor for mmc */
Jaehoon Chungd956a672016-06-29 19:46:17 +0900117 set_mmc_clk(host->dev_index, div);
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000118
Amara082a2d2013-04-27 11:42:55 +0530119 host->name = "EXYNOS DWMMC";
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530120#ifdef CONFIG_EXYNOS5420
121 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
122#endif
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900123 host->board_init = exynos_dwmci_board_init;
Amara082a2d2013-04-27 11:42:55 +0530124
Jaehoon Chunge09bd852014-05-16 13:59:57 +0900125 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000126 host->clksel = exynos_dwmci_clksel;
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900127 host->get_mmc_clk = exynos_dwmci_get_clk;
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900128
129#ifndef CONFIG_DM_MMC
Amara082a2d2013-04-27 11:42:55 +0530130 /* Add the mmc channel to be registered with mmc core */
131 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
Jaehoon Chungd956a672016-06-29 19:46:17 +0900132 printf("DWMMC%d registration failed\n", host->dev_index);
Amara082a2d2013-04-27 11:42:55 +0530133 return -1;
134 }
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900135#endif
136
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000137 return 0;
138}
139
Jaehoon Chung959198f2014-05-16 13:59:52 +0900140static int do_dwmci_init(struct dwmci_host *host)
141{
Jaehoon Chungd956a672016-06-29 19:46:17 +0900142 int flag, err;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900143
144 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
145 err = exynos_pinmux_config(host->dev_id, flag);
146 if (err) {
Jaehoon Chungd956a672016-06-29 19:46:17 +0900147 printf("DWMMC%d not configure\n", host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900148 return err;
149 }
150
Jaehoon Chungd956a672016-06-29 19:46:17 +0900151 return exynos_dwmci_core_init(host);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900152}
153
154static int exynos_dwmci_get_config(const void *blob, int node,
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200155 struct dwmci_host *host,
156 struct dwmci_exynos_priv_data *priv)
Jaehoon Chung959198f2014-05-16 13:59:52 +0900157{
158 int err = 0;
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900159 u32 base, timing[3];
Jaehoon Chung959198f2014-05-16 13:59:52 +0900160
161 /* Extract device id for each mmc channel */
162 host->dev_id = pinmux_decode_periph_id(blob, node);
163
Jaehoon Chung959198f2014-05-16 13:59:52 +0900164 host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id);
165 if (host->dev_index == host->dev_id)
166 host->dev_index = host->dev_id - PERIPH_ID_SDMMC0;
167
Jaehoon Chungce757b12016-06-29 19:46:16 +0900168 if (host->dev_index > 4) {
169 printf("DWMMC%d: Can't get the dev index\n", host->dev_index);
170 return -EINVAL;
171 }
172
Jaehoon Chung70f6d392016-06-29 19:46:18 +0900173 /* Get the bus width from the device node (Default is 4bit buswidth) */
174 host->buswidth = fdtdec_get_int(blob, node, "samsung,bus-width", 4);
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900175
Jaehoon Chung959198f2014-05-16 13:59:52 +0900176 /* Set the base address from the device node */
177 base = fdtdec_get_addr(blob, node, "reg");
178 if (!base) {
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900179 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900180 return -EINVAL;
181 }
182 host->ioaddr = (void *)base;
183
184 /* Extract the timing info from the node */
185 err = fdtdec_get_int_array(blob, node, "samsung,timing", timing, 3);
186 if (err) {
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900187 printf("DWMMC%d: Can't get sdr-timings for devider\n",
188 host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900189 return -EINVAL;
190 }
191
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900192 priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
Jaehoon Chung959198f2014-05-16 13:59:52 +0900193 DWMCI_SET_DRV_CLK(timing[1]) |
194 DWMCI_SET_DIV_RATIO(timing[2]));
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900195
196 /* sdr_timing didn't assigned anything, use the default value */
197 if (!priv->sdr_timing) {
198 if (host->dev_index == 0)
199 priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL;
200 else if (host->dev_index == 2)
201 priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL;
202 }
Jaehoon Chung959198f2014-05-16 13:59:52 +0900203
204 host->fifoth_val = fdtdec_get_int(blob, node, "fifoth_val", 0);
205 host->bus_hz = fdtdec_get_int(blob, node, "bus_hz", 0);
206 host->div = fdtdec_get_int(blob, node, "div", 0);
207
208 return 0;
209}
210
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900211#ifdef CONFIG_DM_MMC
212static int exynos_dwmmc_probe(struct udevice *dev)
213{
Simon Glassc69cda22020-12-03 16:55:20 -0700214 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900215 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
216 struct dwmci_exynos_priv_data *priv = dev_get_priv(dev);
217 struct dwmci_host *host = &priv->host;
218 int err;
219
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200220 err = exynos_dwmci_get_config(gd->fdt_blob, dev_of_offset(dev), host,
221 priv);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900222 if (err)
223 return err;
224 err = do_dwmci_init(host);
225 if (err)
226 return err;
227
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900228 dwmci_setup_cfg(&plat->cfg, host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900229 host->mmc = &plat->mmc;
230 host->mmc->priv = &priv->host;
231 host->priv = dev;
232 upriv->mmc = host->mmc;
233
234 return dwmci_probe(dev);
235}
236
237static int exynos_dwmmc_bind(struct udevice *dev)
238{
Simon Glassc69cda22020-12-03 16:55:20 -0700239 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900240
Masahiro Yamada24f5aec2016-09-06 22:17:32 +0900241 return dwmci_bind(dev, &plat->mmc, &plat->cfg);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900242}
243
244static const struct udevice_id exynos_dwmmc_ids[] = {
245 { .compatible = "samsung,exynos4412-dw-mshc" },
Lukasz Majewski0acdb2c2018-08-01 14:49:00 +0200246 { .compatible = "samsung,exynos-dwmmc" },
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900247 { }
248};
249
250U_BOOT_DRIVER(exynos_dwmmc_drv) = {
251 .name = "exynos_dwmmc",
252 .id = UCLASS_MMC,
253 .of_match = exynos_dwmmc_ids,
254 .bind = exynos_dwmmc_bind,
255 .ops = &dm_dwmci_ops,
256 .probe = exynos_dwmmc_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700257 .priv_auto = sizeof(struct dwmci_exynos_priv_data),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700258 .plat_auto = sizeof(struct exynos_mmc_plat),
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900259};
260#endif