blob: b4ff1c3fb4b3d552d54f5c15ae2d9e8e39ef1034 [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>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Amard8501212013-04-27 11:42:55 +053011#include <malloc.h>
Jaehoon Chungedd9d1dc2016-07-19 16:33:34 +090012#include <errno.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +000013#include <asm/arch/dwmmc.h>
14#include <asm/arch/clk.h>
Amard8501212013-04-27 11:42:55 +053015#include <asm/arch/pinmux.h>
Przemyslaw Marczakc3885b82015-02-20 12:29:26 +010016#include <asm/arch/power.h>
Jaehoon Chung62811102014-05-16 13:59:52 +090017#include <asm/gpio.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +000018
Amard8501212013-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 Chungbcb03eab2015-02-04 15:48:40 +090022#define DWMMC_MMC0_SDR_TIMING_VAL 0x03030001
23#define DWMMC_MMC2_SDR_TIMING_VAL 0x03020001
24
Jaehoon Chung98d18e92016-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 Chungbcb03eab2015-02-04 15:48:40 +090035/* Exynos implmentation specific drver private data */
36struct dwmci_exynos_priv_data {
Jaehoon Chung98d18e92016-06-30 20:57:37 +090037#ifdef CONFIG_DM_MMC
38 struct dwmci_host host;
39#endif
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090040 u32 sdr_timing;
41};
Jaehoon Chung7aff9672012-10-15 19:10:31 +000042
Amard8501212013-04-27 11:42:55 +053043/*
44 * Function used as callback function to initialise the
45 * CLKSEL register for every mmc channel.
46 */
Siew Chin Limc51e7e12020-12-24 18:21:03 +080047static int exynos_dwmci_clksel(struct dwmci_host *host)
Jaehoon Chung7aff9672012-10-15 19:10:31 +000048{
Lukasz Majewski22c2afa2018-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 Chungbcb03eab2015-02-04 15:48:40 +090053 struct dwmci_exynos_priv_data *priv = host->priv;
Lukasz Majewski22c2afa2018-08-01 14:48:59 +020054#endif
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090055 dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
Siew Chin Limc51e7e12020-12-24 18:21:03 +080056
57 return 0;
Amard8501212013-04-27 11:42:55 +053058}
Jaehoon Chung7aff9672012-10-15 19:10:31 +000059
Simon Glasseff76682015-08-30 16:55:15 -060060unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq)
Amard8501212013-04-27 11:42:55 +053061{
Rajeshwari S Shindeccfa20b2014-02-05 10:48:15 +053062 unsigned long sclk;
63 int8_t clk_div;
64
65 /*
66 * Since SDCLKIN is divided inside controller by the DIVRATIO
67 * value set in the CLKSEL register, we need to use the same output
68 * clock value to calculate the CLKDIV value.
69 * as per user manual:cclk_in = SDCLKIN / (DIVRATIO + 1)
70 */
71 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT)
72 & DWMCI_DIVRATIO_MASK) + 1;
73 sclk = get_mmc_clk(host->dev_index);
74
Jaehoon Chung62811102014-05-16 13:59:52 +090075 /*
76 * Assume to know divider value.
77 * When clock unit is broken, need to set "host->div"
78 */
79 return sclk / clk_div / (host->div + 1);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000080}
81
Jaehoon Chung42f81a82013-11-29 20:08:57 +090082static void exynos_dwmci_board_init(struct dwmci_host *host)
83{
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090084 struct dwmci_exynos_priv_data *priv = host->priv;
85
Jaehoon Chung42f81a82013-11-29 20:08:57 +090086 if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
87 dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
88 dwmci_writel(host, EMMCP_SEND0, 0);
89 dwmci_writel(host, EMMCP_CTRL0,
90 MPSCTRL_SECURE_READ_BIT |
91 MPSCTRL_SECURE_WRITE_BIT |
92 MPSCTRL_NON_SECURE_READ_BIT |
93 MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID);
94 }
Jaehoon Chung3d12e552015-02-04 15:48:39 +090095
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090096 /* Set to timing value at initial time */
97 if (priv->sdr_timing)
Jaehoon Chung3d12e552015-02-04 15:48:39 +090098 exynos_dwmci_clksel(host);
Jaehoon Chung42f81a82013-11-29 20:08:57 +090099}
100
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900101static int exynos_dwmci_core_init(struct dwmci_host *host)
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000102{
Amard8501212013-04-27 11:42:55 +0530103 unsigned int div;
104 unsigned long freq, sclk;
Jaehoon Chung62811102014-05-16 13:59:52 +0900105
106 if (host->bus_hz)
107 freq = host->bus_hz;
108 else
109 freq = DWMMC_MAX_FREQ;
110
Amard8501212013-04-27 11:42:55 +0530111 /* request mmc clock vlaue of 52MHz. */
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900112 sclk = get_mmc_clk(host->dev_index);
Amard8501212013-04-27 11:42:55 +0530113 div = DIV_ROUND_UP(sclk, freq);
114 /* set the clock divisor for mmc */
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900115 set_mmc_clk(host->dev_index, div);
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000116
Amard8501212013-04-27 11:42:55 +0530117 host->name = "EXYNOS DWMMC";
Rajeshwari Shinde70163092013-10-29 12:53:13 +0530118#ifdef CONFIG_EXYNOS5420
119 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
120#endif
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900121 host->board_init = exynos_dwmci_board_init;
Amard8501212013-04-27 11:42:55 +0530122
Jaehoon Chungef91dd52014-05-16 13:59:57 +0900123 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000124 host->clksel = exynos_dwmci_clksel;
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900125 host->get_mmc_clk = exynos_dwmci_get_clk;
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900126
127#ifndef CONFIG_DM_MMC
Amard8501212013-04-27 11:42:55 +0530128 /* Add the mmc channel to be registered with mmc core */
129 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900130 printf("DWMMC%d registration failed\n", host->dev_index);
Amard8501212013-04-27 11:42:55 +0530131 return -1;
132 }
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900133#endif
134
Amard8501212013-04-27 11:42:55 +0530135 return 0;
136}
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000137
Jaehoon Chung62811102014-05-16 13:59:52 +0900138static int do_dwmci_init(struct dwmci_host *host)
Amard8501212013-04-27 11:42:55 +0530139{
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900140 int flag, err;
Amard8501212013-04-27 11:42:55 +0530141
Jaehoon Chung62811102014-05-16 13:59:52 +0900142 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
143 err = exynos_pinmux_config(host->dev_id, flag);
144 if (err) {
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900145 printf("DWMMC%d not configure\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900146 return err;
147 }
Amard8501212013-04-27 11:42:55 +0530148
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900149 return exynos_dwmci_core_init(host);
Jaehoon Chung62811102014-05-16 13:59:52 +0900150}
Amard8501212013-04-27 11:42:55 +0530151
Jaehoon Chung62811102014-05-16 13:59:52 +0900152static int exynos_dwmci_get_config(const void *blob, int node,
Lukasz Majewski6702cb22018-08-01 14:48:53 +0200153 struct dwmci_host *host,
154 struct dwmci_exynos_priv_data *priv)
Jaehoon Chung62811102014-05-16 13:59:52 +0900155{
156 int err = 0;
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900157 u32 base, timing[3];
Amard8501212013-04-27 11:42:55 +0530158
Jaehoon Chung62811102014-05-16 13:59:52 +0900159 /* Extract device id for each mmc channel */
160 host->dev_id = pinmux_decode_periph_id(blob, node);
Amard8501212013-04-27 11:42:55 +0530161
Jaehoon Chungdb313bf2014-11-28 20:42:33 +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 Chunge0303c72016-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 Chung865ecd92016-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);
Amard8501212013-04-27 11:42:55 +0530173
Jaehoon Chung62811102014-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 Chungdb313bf2014-11-28 20:42:33 +0900177 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung62811102014-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 Chungdb313bf2014-11-28 20:42:33 +0900185 printf("DWMMC%d: Can't get sdr-timings for devider\n",
186 host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900187 return -EINVAL;
188 }
189
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900190 priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
Jaehoon Chung62811102014-05-16 13:59:52 +0900191 DWMCI_SET_DRV_CLK(timing[1]) |
192 DWMCI_SET_DIV_RATIO(timing[2]));
Jaehoon Chungbcb03eab2015-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 Chung62811102014-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
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000206 return 0;
207}
Jaehoon Chung62811102014-05-16 13:59:52 +0900208
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900209#ifdef CONFIG_DM_MMC
210static int exynos_dwmmc_probe(struct udevice *dev)
211{
Simon Glassfa20e932020-12-03 16:55:20 -0700212 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900213 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
214 struct dwmci_exynos_priv_data *priv = dev_get_priv(dev);
215 struct dwmci_host *host = &priv->host;
216 int err;
217
Lukasz Majewski6702cb22018-08-01 14:48:53 +0200218 err = exynos_dwmci_get_config(gd->fdt_blob, dev_of_offset(dev), host,
219 priv);
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900220 if (err)
221 return err;
222 err = do_dwmci_init(host);
223 if (err)
224 return err;
225
Jaehoon Chungbf819d02016-09-23 19:13:16 +0900226 dwmci_setup_cfg(&plat->cfg, host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ);
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900227 host->mmc = &plat->mmc;
228 host->mmc->priv = &priv->host;
229 host->priv = dev;
230 upriv->mmc = host->mmc;
231
232 return dwmci_probe(dev);
233}
234
235static int exynos_dwmmc_bind(struct udevice *dev)
236{
Simon Glassfa20e932020-12-03 16:55:20 -0700237 struct exynos_mmc_plat *plat = dev_get_plat(dev);
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900238
Masahiro Yamadacdb67f32016-09-06 22:17:32 +0900239 return dwmci_bind(dev, &plat->mmc, &plat->cfg);
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900240}
241
242static const struct udevice_id exynos_dwmmc_ids[] = {
243 { .compatible = "samsung,exynos4412-dw-mshc" },
Lukasz Majewski03cf3af2018-08-01 14:49:00 +0200244 { .compatible = "samsung,exynos-dwmmc" },
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900245 { }
246};
247
248U_BOOT_DRIVER(exynos_dwmmc_drv) = {
249 .name = "exynos_dwmmc",
250 .id = UCLASS_MMC,
251 .of_match = exynos_dwmmc_ids,
252 .bind = exynos_dwmmc_bind,
253 .ops = &dm_dwmci_ops,
254 .probe = exynos_dwmmc_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700255 .priv_auto = sizeof(struct dwmci_exynos_priv_data),
Simon Glass71fa5b42020-12-03 16:55:18 -0700256 .plat_auto = sizeof(struct exynos_mmc_plat),
Jaehoon Chung98d18e92016-06-30 20:57:37 +0900257};
258#endif