blob: 544798bb71d1fc5bddbcf700fa717f925c7f195d [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>
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000019
Amara082a2d2013-04-27 11:42:55 +053020#define DWMMC_MAX_CH_NUM 4
21#define DWMMC_MAX_FREQ 52000000
22#define DWMMC_MIN_FREQ 400000
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090023#define DWMMC_MMC0_SDR_TIMING_VAL 0x03030001
24#define DWMMC_MMC2_SDR_TIMING_VAL 0x03020001
25
Jaehoon Chung3537ee82016-06-30 20:57:37 +090026#ifdef CONFIG_DM_MMC
27#include <dm.h>
28DECLARE_GLOBAL_DATA_PTR;
29
30struct exynos_mmc_plat {
31 struct mmc_config cfg;
32 struct mmc mmc;
33};
34#endif
35
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090036/* Exynos implmentation specific drver private data */
37struct dwmci_exynos_priv_data {
Jaehoon Chung3537ee82016-06-30 20:57:37 +090038#ifdef CONFIG_DM_MMC
39 struct dwmci_host host;
40#endif
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090041 u32 sdr_timing;
42};
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000043
Amara082a2d2013-04-27 11:42:55 +053044/*
45 * Function used as callback function to initialise the
46 * CLKSEL register for every mmc channel.
47 */
Siew Chin Limd456dfb2020-12-24 18:21:03 +080048static int exynos_dwmci_clksel(struct dwmci_host *host)
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000049{
Lukasz Majewski7c350a22018-08-01 14:48:59 +020050#ifdef CONFIG_DM_MMC
51 struct dwmci_exynos_priv_data *priv =
52 container_of(host, struct dwmci_exynos_priv_data, host);
53#else
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090054 struct dwmci_exynos_priv_data *priv = host->priv;
Lukasz Majewski7c350a22018-08-01 14:48:59 +020055#endif
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090056 dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
Siew Chin Limd456dfb2020-12-24 18:21:03 +080057
58 return 0;
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +000059}
60
Simon Glasse3563f22015-08-30 16:55:15 -060061unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq)
Amara082a2d2013-04-27 11:42:55 +053062{
Rajeshwari S Shinded3e016c2014-02-05 10:48:15 +053063 unsigned long sclk;
64 int8_t clk_div;
65
66 /*
67 * Since SDCLKIN is divided inside controller by the DIVRATIO
68 * value set in the CLKSEL register, we need to use the same output
69 * clock value to calculate the CLKDIV value.
70 * as per user manual:cclk_in = SDCLKIN / (DIVRATIO + 1)
71 */
72 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT)
73 & DWMCI_DIVRATIO_MASK) + 1;
74 sclk = get_mmc_clk(host->dev_index);
75
Jaehoon Chung959198f2014-05-16 13:59:52 +090076 /*
77 * Assume to know divider value.
78 * When clock unit is broken, need to set "host->div"
79 */
80 return sclk / clk_div / (host->div + 1);
Amara082a2d2013-04-27 11:42:55 +053081}
82
Jaehoon Chung18ab6752013-11-29 20:08:57 +090083static void exynos_dwmci_board_init(struct dwmci_host *host)
84{
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090085 struct dwmci_exynos_priv_data *priv = host->priv;
86
Jaehoon Chung18ab6752013-11-29 20:08:57 +090087 if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
88 dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
89 dwmci_writel(host, EMMCP_SEND0, 0);
90 dwmci_writel(host, EMMCP_CTRL0,
91 MPSCTRL_SECURE_READ_BIT |
92 MPSCTRL_SECURE_WRITE_BIT |
93 MPSCTRL_NON_SECURE_READ_BIT |
94 MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID);
95 }
Jaehoon Chung3a33bb12015-02-04 15:48:39 +090096
Jaehoon Chung5dab81c2015-02-04 15:48:40 +090097 /* Set to timing value at initial time */
98 if (priv->sdr_timing)
Jaehoon Chung3a33bb12015-02-04 15:48:39 +090099 exynos_dwmci_clksel(host);
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900100}
101
Jaehoon Chungd956a672016-06-29 19:46:17 +0900102static int exynos_dwmci_core_init(struct dwmci_host *host)
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000103{
Amara082a2d2013-04-27 11:42:55 +0530104 unsigned int div;
105 unsigned long freq, sclk;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900106
107 if (host->bus_hz)
108 freq = host->bus_hz;
109 else
110 freq = DWMMC_MAX_FREQ;
111
Amara082a2d2013-04-27 11:42:55 +0530112 /* request mmc clock vlaue of 52MHz. */
Jaehoon Chungd956a672016-06-29 19:46:17 +0900113 sclk = get_mmc_clk(host->dev_index);
Amara082a2d2013-04-27 11:42:55 +0530114 div = DIV_ROUND_UP(sclk, freq);
115 /* set the clock divisor for mmc */
Jaehoon Chungd956a672016-06-29 19:46:17 +0900116 set_mmc_clk(host->dev_index, div);
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000117
Amara082a2d2013-04-27 11:42:55 +0530118 host->name = "EXYNOS DWMMC";
Rajeshwari Shinde6f0b7ca2013-10-29 12:53:13 +0530119#ifdef CONFIG_EXYNOS5420
120 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
121#endif
Jaehoon Chung18ab6752013-11-29 20:08:57 +0900122 host->board_init = exynos_dwmci_board_init;
Amara082a2d2013-04-27 11:42:55 +0530123
Jaehoon Chunge09bd852014-05-16 13:59:57 +0900124 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000125 host->clksel = exynos_dwmci_clksel;
Jaehoon Chungb44fe832013-10-06 18:59:31 +0900126 host->get_mmc_clk = exynos_dwmci_get_clk;
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900127
128#ifndef CONFIG_DM_MMC
Amara082a2d2013-04-27 11:42:55 +0530129 /* Add the mmc channel to be registered with mmc core */
130 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
Jaehoon Chungd956a672016-06-29 19:46:17 +0900131 printf("DWMMC%d registration failed\n", host->dev_index);
Amara082a2d2013-04-27 11:42:55 +0530132 return -1;
133 }
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900134#endif
135
Jaehoon Chungd0ebbb82012-10-15 19:10:31 +0000136 return 0;
137}
138
Jaehoon Chung959198f2014-05-16 13:59:52 +0900139static int do_dwmci_init(struct dwmci_host *host)
140{
Jaehoon Chungd956a672016-06-29 19:46:17 +0900141 int flag, err;
Jaehoon Chung959198f2014-05-16 13:59:52 +0900142
143 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
144 err = exynos_pinmux_config(host->dev_id, flag);
145 if (err) {
Jaehoon Chungd956a672016-06-29 19:46:17 +0900146 printf("DWMMC%d not configure\n", host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900147 return err;
148 }
149
Jaehoon Chungd956a672016-06-29 19:46:17 +0900150 return exynos_dwmci_core_init(host);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900151}
152
153static int exynos_dwmci_get_config(const void *blob, int node,
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200154 struct dwmci_host *host,
155 struct dwmci_exynos_priv_data *priv)
Jaehoon Chung959198f2014-05-16 13:59:52 +0900156{
157 int err = 0;
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900158 u32 base, timing[3];
Jaehoon Chung959198f2014-05-16 13:59:52 +0900159
160 /* Extract device id for each mmc channel */
161 host->dev_id = pinmux_decode_periph_id(blob, node);
162
Jaehoon Chung959198f2014-05-16 13:59:52 +0900163 host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id);
164 if (host->dev_index == host->dev_id)
165 host->dev_index = host->dev_id - PERIPH_ID_SDMMC0;
166
Jaehoon Chungce757b12016-06-29 19:46:16 +0900167 if (host->dev_index > 4) {
168 printf("DWMMC%d: Can't get the dev index\n", host->dev_index);
169 return -EINVAL;
170 }
171
Jaehoon Chung70f6d392016-06-29 19:46:18 +0900172 /* Get the bus width from the device node (Default is 4bit buswidth) */
173 host->buswidth = fdtdec_get_int(blob, node, "samsung,bus-width", 4);
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900174
Jaehoon Chung959198f2014-05-16 13:59:52 +0900175 /* Set the base address from the device node */
176 base = fdtdec_get_addr(blob, node, "reg");
177 if (!base) {
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900178 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900179 return -EINVAL;
180 }
181 host->ioaddr = (void *)base;
182
183 /* Extract the timing info from the node */
184 err = fdtdec_get_int_array(blob, node, "samsung,timing", timing, 3);
185 if (err) {
Jaehoon Chungdfcb6832014-11-28 20:42:33 +0900186 printf("DWMMC%d: Can't get sdr-timings for devider\n",
187 host->dev_index);
Jaehoon Chung959198f2014-05-16 13:59:52 +0900188 return -EINVAL;
189 }
190
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900191 priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
Jaehoon Chung959198f2014-05-16 13:59:52 +0900192 DWMCI_SET_DRV_CLK(timing[1]) |
193 DWMCI_SET_DIV_RATIO(timing[2]));
Jaehoon Chung5dab81c2015-02-04 15:48:40 +0900194
195 /* sdr_timing didn't assigned anything, use the default value */
196 if (!priv->sdr_timing) {
197 if (host->dev_index == 0)
198 priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL;
199 else if (host->dev_index == 2)
200 priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL;
201 }
Jaehoon Chung959198f2014-05-16 13:59:52 +0900202
203 host->fifoth_val = fdtdec_get_int(blob, node, "fifoth_val", 0);
204 host->bus_hz = fdtdec_get_int(blob, node, "bus_hz", 0);
205 host->div = fdtdec_get_int(blob, node, "div", 0);
206
207 return 0;
208}
209
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900210#ifdef CONFIG_DM_MMC
211static int exynos_dwmmc_probe(struct udevice *dev)
212{
Simon Glassc69cda22020-12-03 16:55:20 -0700213 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900214 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
215 struct dwmci_exynos_priv_data *priv = dev_get_priv(dev);
216 struct dwmci_host *host = &priv->host;
217 int err;
218
Lukasz Majewskib88c1ef2018-08-01 14:48:53 +0200219 err = exynos_dwmci_get_config(gd->fdt_blob, dev_of_offset(dev), host,
220 priv);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900221 if (err)
222 return err;
223 err = do_dwmci_init(host);
224 if (err)
225 return err;
226
Jaehoon Chunge5113c32016-09-23 19:13:16 +0900227 dwmci_setup_cfg(&plat->cfg, host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900228 host->mmc = &plat->mmc;
229 host->mmc->priv = &priv->host;
230 host->priv = dev;
231 upriv->mmc = host->mmc;
232
233 return dwmci_probe(dev);
234}
235
236static int exynos_dwmmc_bind(struct udevice *dev)
237{
Simon Glassc69cda22020-12-03 16:55:20 -0700238 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900239
Masahiro Yamada24f5aec2016-09-06 22:17:32 +0900240 return dwmci_bind(dev, &plat->mmc, &plat->cfg);
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900241}
242
243static const struct udevice_id exynos_dwmmc_ids[] = {
244 { .compatible = "samsung,exynos4412-dw-mshc" },
Lukasz Majewski0acdb2c2018-08-01 14:49:00 +0200245 { .compatible = "samsung,exynos-dwmmc" },
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900246 { }
247};
248
249U_BOOT_DRIVER(exynos_dwmmc_drv) = {
250 .name = "exynos_dwmmc",
251 .id = UCLASS_MMC,
252 .of_match = exynos_dwmmc_ids,
253 .bind = exynos_dwmmc_bind,
254 .ops = &dm_dwmci_ops,
255 .probe = exynos_dwmmc_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700256 .priv_auto = sizeof(struct dwmci_exynos_priv_data),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700257 .plat_auto = sizeof(struct exynos_mmc_plat),
Jaehoon Chung3537ee82016-06-30 20:57:37 +0900258};
259#endif