blob: 544798bb71d1fc5bddbcf700fa717f925c7f195d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung7aff9672012-10-15 19:10:31 +00002/*
3 * (C) Copyright 2012 SAMSUNG Electronics
4 * Jaehoon Chung <jh80.chung@samsung.com>
Jaehoon Chung7aff9672012-10-15 19:10:31 +00005 */
6
7#include <common.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +00008#include <dwmmc.h>
Amard8501212013-04-27 11:42:55 +05309#include <fdtdec.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Amard8501212013-04-27 11:42:55 +053012#include <malloc.h>
Jaehoon Chungedd9d1dc2016-07-19 16:33:34 +090013#include <errno.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +000014#include <asm/arch/dwmmc.h>
15#include <asm/arch/clk.h>
Amard8501212013-04-27 11:42:55 +053016#include <asm/arch/pinmux.h>
Przemyslaw Marczakc3885b82015-02-20 12:29:26 +010017#include <asm/arch/power.h>
Jaehoon Chung62811102014-05-16 13:59:52 +090018#include <asm/gpio.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +000019
Amard8501212013-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 Chungbcb03eab2015-02-04 15:48:40 +090023#define DWMMC_MMC0_SDR_TIMING_VAL 0x03030001
24#define DWMMC_MMC2_SDR_TIMING_VAL 0x03020001
25
Jaehoon Chung98d18e92016-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 Chungbcb03eab2015-02-04 15:48:40 +090036/* Exynos implmentation specific drver private data */
37struct dwmci_exynos_priv_data {
Jaehoon Chung98d18e92016-06-30 20:57:37 +090038#ifdef CONFIG_DM_MMC
39 struct dwmci_host host;
40#endif
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090041 u32 sdr_timing;
42};
Jaehoon Chung7aff9672012-10-15 19:10:31 +000043
Amard8501212013-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 Limc51e7e12020-12-24 18:21:03 +080048static int exynos_dwmci_clksel(struct dwmci_host *host)
Jaehoon Chung7aff9672012-10-15 19:10:31 +000049{
Lukasz Majewski22c2afa2018-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 Chungbcb03eab2015-02-04 15:48:40 +090054 struct dwmci_exynos_priv_data *priv = host->priv;
Lukasz Majewski22c2afa2018-08-01 14:48:59 +020055#endif
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090056 dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
Siew Chin Limc51e7e12020-12-24 18:21:03 +080057
58 return 0;
Amard8501212013-04-27 11:42:55 +053059}
Jaehoon Chung7aff9672012-10-15 19:10:31 +000060
Simon Glasseff76682015-08-30 16:55:15 -060061unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq)
Amard8501212013-04-27 11:42:55 +053062{
Rajeshwari S Shindeccfa20b2014-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 Chung62811102014-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);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000081}
82
Jaehoon Chung42f81a82013-11-29 20:08:57 +090083static void exynos_dwmci_board_init(struct dwmci_host *host)
84{
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090085 struct dwmci_exynos_priv_data *priv = host->priv;
86
Jaehoon Chung42f81a82013-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 Chung3d12e552015-02-04 15:48:39 +090096
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090097 /* Set to timing value at initial time */
98 if (priv->sdr_timing)
Jaehoon Chung3d12e552015-02-04 15:48:39 +090099 exynos_dwmci_clksel(host);
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900100}
101
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900102static int exynos_dwmci_core_init(struct dwmci_host *host)
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000103{
Amard8501212013-04-27 11:42:55 +0530104 unsigned int div;
105 unsigned long freq, sclk;
Jaehoon Chung62811102014-05-16 13:59:52 +0900106
107 if (host->bus_hz)
108 freq = host->bus_hz;
109 else
110 freq = DWMMC_MAX_FREQ;
111
Amard8501212013-04-27 11:42:55 +0530112 /* request mmc clock vlaue of 52MHz. */
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900113 sclk = get_mmc_clk(host->dev_index);
Amard8501212013-04-27 11:42:55 +0530114 div = DIV_ROUND_UP(sclk, freq);
115 /* set the clock divisor for mmc */
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900116 set_mmc_clk(host->dev_index, div);
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000117
Amard8501212013-04-27 11:42:55 +0530118 host->name = "EXYNOS DWMMC";
Rajeshwari Shinde70163092013-10-29 12:53:13 +0530119#ifdef CONFIG_EXYNOS5420
120 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
121#endif
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900122 host->board_init = exynos_dwmci_board_init;
Amard8501212013-04-27 11:42:55 +0530123
Jaehoon Chungef91dd52014-05-16 13:59:57 +0900124 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000125 host->clksel = exynos_dwmci_clksel;
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900126 host->get_mmc_clk = exynos_dwmci_get_clk;
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900127
128#ifndef CONFIG_DM_MMC
Amard8501212013-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 Chungde61aaee2016-06-29 19:46:17 +0900131 printf("DWMMC%d registration failed\n", host->dev_index);
Amard8501212013-04-27 11:42:55 +0530132 return -1;
133 }
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900134#endif
135
Amard8501212013-04-27 11:42:55 +0530136 return 0;
137}
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000138
Jaehoon Chung62811102014-05-16 13:59:52 +0900139static int do_dwmci_init(struct dwmci_host *host)
Amard8501212013-04-27 11:42:55 +0530140{
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900141 int flag, err;
Amard8501212013-04-27 11:42:55 +0530142
Jaehoon Chung62811102014-05-16 13:59:52 +0900143 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
144 err = exynos_pinmux_config(host->dev_id, flag);
145 if (err) {
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900146 printf("DWMMC%d not configure\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900147 return err;
148 }
Amard8501212013-04-27 11:42:55 +0530149
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900150 return exynos_dwmci_core_init(host);
Jaehoon Chung62811102014-05-16 13:59:52 +0900151}
Amard8501212013-04-27 11:42:55 +0530152
Jaehoon Chung62811102014-05-16 13:59:52 +0900153static int exynos_dwmci_get_config(const void *blob, int node,
Lukasz Majewski6702cb22018-08-01 14:48:53 +0200154 struct dwmci_host *host,
155 struct dwmci_exynos_priv_data *priv)
Jaehoon Chung62811102014-05-16 13:59:52 +0900156{
157 int err = 0;
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900158 u32 base, timing[3];
Amard8501212013-04-27 11:42:55 +0530159
Jaehoon Chung62811102014-05-16 13:59:52 +0900160 /* Extract device id for each mmc channel */
161 host->dev_id = pinmux_decode_periph_id(blob, node);
Amard8501212013-04-27 11:42:55 +0530162
Jaehoon Chungdb313bf2014-11-28 20:42:33 +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 Chunge0303c72016-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 Chung865ecd92016-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);
Amard8501212013-04-27 11:42:55 +0530174
Jaehoon Chung62811102014-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 Chungdb313bf2014-11-28 20:42:33 +0900178 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung62811102014-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 Chungdb313bf2014-11-28 20:42:33 +0900186 printf("DWMMC%d: Can't get sdr-timings for devider\n",
187 host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900188 return -EINVAL;
189 }
190
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900191 priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
Jaehoon Chung62811102014-05-16 13:59:52 +0900192 DWMCI_SET_DRV_CLK(timing[1]) |
193 DWMCI_SET_DIV_RATIO(timing[2]));
Jaehoon Chungbcb03eab2015-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 Chung62811102014-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
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000207 return 0;
208}
Jaehoon Chung62811102014-05-16 13:59:52 +0900209
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900210#ifdef CONFIG_DM_MMC
211static int exynos_dwmmc_probe(struct udevice *dev)
212{
Simon Glassfa20e932020-12-03 16:55:20 -0700213 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung98d18e92016-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 Majewski6702cb22018-08-01 14:48:53 +0200219 err = exynos_dwmci_get_config(gd->fdt_blob, dev_of_offset(dev), host,
220 priv);
Jaehoon Chung98d18e92016-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 Chungbf819d02016-09-23 19:13:16 +0900227 dwmci_setup_cfg(&plat->cfg, host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ);
Jaehoon Chung98d18e92016-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 Glassfa20e932020-12-03 16:55:20 -0700238 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900239
Masahiro Yamadacdb67f32016-09-06 22:17:32 +0900240 return dwmci_bind(dev, &plat->mmc, &plat->cfg);
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900241}
242
243static const struct udevice_id exynos_dwmmc_ids[] = {
244 { .compatible = "samsung,exynos4412-dw-mshc" },
Lukasz Majewski03cf3af2018-08-01 14:49:00 +0200245 { .compatible = "samsung,exynos-dwmmc" },
Jaehoon Chung98d18e92016-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 Glass8a2b47f2020-12-03 16:55:17 -0700256 .priv_auto = sizeof(struct dwmci_exynos_priv_data),
Simon Glass71fa5b42020-12-03 16:55:18 -0700257 .plat_auto = sizeof(struct exynos_mmc_plat),
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900258};
259#endif