blob: c66c0b0bf830827a438ef48ad7485dd2c5a3ec35 [file] [log] [blame]
Jaehoon Chung7aff9672012-10-15 19:10:31 +00001/*
2 * (C) Copyright 2012 SAMSUNG Electronics
3 * Jaehoon Chung <jh80.chung@samsung.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung7aff9672012-10-15 19:10:31 +00006 */
7
8#include <common.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +00009#include <dwmmc.h>
Amard8501212013-04-27 11:42:55 +053010#include <fdtdec.h>
11#include <libfdt.h>
12#include <malloc.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>
Jaehoon Chung62811102014-05-16 13:59:52 +090016#include <asm/gpio.h>
17#include <asm-generic/errno.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
25/* Exynos implmentation specific drver private data */
26struct dwmci_exynos_priv_data {
27 u32 sdr_timing;
28};
Jaehoon Chung7aff9672012-10-15 19:10:31 +000029
Amard8501212013-04-27 11:42:55 +053030/*
31 * Function used as callback function to initialise the
32 * CLKSEL register for every mmc channel.
33 */
Jaehoon Chung7aff9672012-10-15 19:10:31 +000034static void exynos_dwmci_clksel(struct dwmci_host *host)
35{
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090036 struct dwmci_exynos_priv_data *priv = host->priv;
37
38 dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
Amard8501212013-04-27 11:42:55 +053039}
Jaehoon Chung7aff9672012-10-15 19:10:31 +000040
Rajeshwari S Shindeccfa20b2014-02-05 10:48:15 +053041unsigned int exynos_dwmci_get_clk(struct dwmci_host *host)
Amard8501212013-04-27 11:42:55 +053042{
Rajeshwari S Shindeccfa20b2014-02-05 10:48:15 +053043 unsigned long sclk;
44 int8_t clk_div;
45
46 /*
47 * Since SDCLKIN is divided inside controller by the DIVRATIO
48 * value set in the CLKSEL register, we need to use the same output
49 * clock value to calculate the CLKDIV value.
50 * as per user manual:cclk_in = SDCLKIN / (DIVRATIO + 1)
51 */
52 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT)
53 & DWMCI_DIVRATIO_MASK) + 1;
54 sclk = get_mmc_clk(host->dev_index);
55
Jaehoon Chung62811102014-05-16 13:59:52 +090056 /*
57 * Assume to know divider value.
58 * When clock unit is broken, need to set "host->div"
59 */
60 return sclk / clk_div / (host->div + 1);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000061}
62
Jaehoon Chung42f81a82013-11-29 20:08:57 +090063static void exynos_dwmci_board_init(struct dwmci_host *host)
64{
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090065 struct dwmci_exynos_priv_data *priv = host->priv;
66
Jaehoon Chung42f81a82013-11-29 20:08:57 +090067 if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
68 dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
69 dwmci_writel(host, EMMCP_SEND0, 0);
70 dwmci_writel(host, EMMCP_CTRL0,
71 MPSCTRL_SECURE_READ_BIT |
72 MPSCTRL_SECURE_WRITE_BIT |
73 MPSCTRL_NON_SECURE_READ_BIT |
74 MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID);
75 }
Jaehoon Chung3d12e552015-02-04 15:48:39 +090076
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090077 /* Set to timing value at initial time */
78 if (priv->sdr_timing)
Jaehoon Chung3d12e552015-02-04 15:48:39 +090079 exynos_dwmci_clksel(host);
Jaehoon Chung42f81a82013-11-29 20:08:57 +090080}
81
Jaehoon Chung62811102014-05-16 13:59:52 +090082static int exynos_dwmci_core_init(struct dwmci_host *host, int index)
Jaehoon Chung7aff9672012-10-15 19:10:31 +000083{
Amard8501212013-04-27 11:42:55 +053084 unsigned int div;
85 unsigned long freq, sclk;
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090086 struct dwmci_exynos_priv_data *priv = host->priv;
Jaehoon Chung62811102014-05-16 13:59:52 +090087
88 if (host->bus_hz)
89 freq = host->bus_hz;
90 else
91 freq = DWMMC_MAX_FREQ;
92
Amard8501212013-04-27 11:42:55 +053093 /* request mmc clock vlaue of 52MHz. */
Amard8501212013-04-27 11:42:55 +053094 sclk = get_mmc_clk(index);
95 div = DIV_ROUND_UP(sclk, freq);
96 /* set the clock divisor for mmc */
97 set_mmc_clk(index, div);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000098
Amard8501212013-04-27 11:42:55 +053099 host->name = "EXYNOS DWMMC";
Rajeshwari Shinde70163092013-10-29 12:53:13 +0530100#ifdef CONFIG_EXYNOS5420
101 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
102#endif
Jaehoon Chung42f81a82013-11-29 20:08:57 +0900103 host->board_init = exynos_dwmci_board_init;
Amard8501212013-04-27 11:42:55 +0530104
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900105 if (!priv->sdr_timing) {
Jaehoon Chung62811102014-05-16 13:59:52 +0900106 if (index == 0)
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900107 priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL;
Jaehoon Chung62811102014-05-16 13:59:52 +0900108 else if (index == 2)
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900109 priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL;
Amard8501212013-04-27 11:42:55 +0530110 }
111
Jaehoon Chungef91dd52014-05-16 13:59:57 +0900112 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000113 host->clksel = exynos_dwmci_clksel;
114 host->dev_index = index;
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900115 host->get_mmc_clk = exynos_dwmci_get_clk;
Amard8501212013-04-27 11:42:55 +0530116 /* Add the mmc channel to be registered with mmc core */
117 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900118 printf("DWMMC%d registration failed\n", index);
Amard8501212013-04-27 11:42:55 +0530119 return -1;
120 }
121 return 0;
122}
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000123
Jaehoon Chung62811102014-05-16 13:59:52 +0900124/*
125 * This function adds the mmc channel to be registered with mmc core.
126 * index - mmc channel number.
127 * regbase - register base address of mmc channel specified in 'index'.
128 * bus_width - operating bus width of mmc channel specified in 'index'.
129 * clksel - value to be written into CLKSEL register in case of FDT.
130 * NULL in case od non-FDT.
131 */
132int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel)
133{
134 struct dwmci_host *host = NULL;
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900135 struct dwmci_exynos_priv_data *priv;
Jaehoon Chung62811102014-05-16 13:59:52 +0900136
137 host = malloc(sizeof(struct dwmci_host));
138 if (!host) {
139 error("dwmci_host malloc fail!\n");
140 return -ENOMEM;
141 }
142
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900143 priv = malloc(sizeof(struct dwmci_exynos_priv_data));
144 if (!priv) {
145 error("dwmci_exynos_priv_data malloc fail!\n");
146 return -ENOMEM;
147 }
148
Jaehoon Chung62811102014-05-16 13:59:52 +0900149 host->ioaddr = (void *)regbase;
150 host->buswidth = bus_width;
151
152 if (clksel)
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900153 priv->sdr_timing = clksel;
154
155 host->priv = priv;
Jaehoon Chung62811102014-05-16 13:59:52 +0900156
157 return exynos_dwmci_core_init(host, index);
158}
159
Amard8501212013-04-27 11:42:55 +0530160#ifdef CONFIG_OF_CONTROL
Jaehoon Chung62811102014-05-16 13:59:52 +0900161static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM];
162
163static int do_dwmci_init(struct dwmci_host *host)
Amard8501212013-04-27 11:42:55 +0530164{
Jaehoon Chung62811102014-05-16 13:59:52 +0900165 int index, flag, err;
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000166
Jaehoon Chung62811102014-05-16 13:59:52 +0900167 index = host->dev_index;
Amard8501212013-04-27 11:42:55 +0530168
Jaehoon Chung62811102014-05-16 13:59:52 +0900169 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
170 err = exynos_pinmux_config(host->dev_id, flag);
171 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900172 printf("DWMMC%d not configure\n", index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900173 return err;
174 }
Amard8501212013-04-27 11:42:55 +0530175
Jaehoon Chung62811102014-05-16 13:59:52 +0900176 return exynos_dwmci_core_init(host, index);
177}
Amard8501212013-04-27 11:42:55 +0530178
Jaehoon Chung62811102014-05-16 13:59:52 +0900179static int exynos_dwmci_get_config(const void *blob, int node,
180 struct dwmci_host *host)
181{
182 int err = 0;
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900183 u32 base, timing[3];
184 struct dwmci_exynos_priv_data *priv;
185
186 priv = malloc(sizeof(struct dwmci_exynos_priv_data));
187 if (!priv) {
188 error("dwmci_exynos_priv_data malloc fail!\n");
189 return -ENOMEM;
190 }
Amard8501212013-04-27 11:42:55 +0530191
Jaehoon Chung62811102014-05-16 13:59:52 +0900192 /* Extract device id for each mmc channel */
193 host->dev_id = pinmux_decode_periph_id(blob, node);
Amard8501212013-04-27 11:42:55 +0530194
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900195 host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id);
196 if (host->dev_index == host->dev_id)
197 host->dev_index = host->dev_id - PERIPH_ID_SDMMC0;
198
199
Jaehoon Chung62811102014-05-16 13:59:52 +0900200 /* Get the bus width from the device node */
201 host->buswidth = fdtdec_get_int(blob, node, "samsung,bus-width", 0);
202 if (host->buswidth <= 0) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900203 printf("DWMMC%d: Can't get bus-width\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900204 return -EINVAL;
205 }
Amard8501212013-04-27 11:42:55 +0530206
Jaehoon Chung62811102014-05-16 13:59:52 +0900207 /* Set the base address from the device node */
208 base = fdtdec_get_addr(blob, node, "reg");
209 if (!base) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900210 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900211 return -EINVAL;
212 }
213 host->ioaddr = (void *)base;
214
215 /* Extract the timing info from the node */
216 err = fdtdec_get_int_array(blob, node, "samsung,timing", timing, 3);
217 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900218 printf("DWMMC%d: Can't get sdr-timings for devider\n",
219 host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900220 return -EINVAL;
221 }
222
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900223 priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
Jaehoon Chung62811102014-05-16 13:59:52 +0900224 DWMCI_SET_DRV_CLK(timing[1]) |
225 DWMCI_SET_DIV_RATIO(timing[2]));
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900226
227 /* sdr_timing didn't assigned anything, use the default value */
228 if (!priv->sdr_timing) {
229 if (host->dev_index == 0)
230 priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL;
231 else if (host->dev_index == 2)
232 priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL;
233 }
Jaehoon Chung62811102014-05-16 13:59:52 +0900234
235 host->fifoth_val = fdtdec_get_int(blob, node, "fifoth_val", 0);
236 host->bus_hz = fdtdec_get_int(blob, node, "bus_hz", 0);
237 host->div = fdtdec_get_int(blob, node, "div", 0);
238
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900239 host->priv = priv;
240
Jaehoon Chung62811102014-05-16 13:59:52 +0900241 return 0;
242}
243
244static int exynos_dwmci_process_node(const void *blob,
245 int node_list[], int count)
246{
247 struct dwmci_host *host;
248 int i, node, err;
249
250 for (i = 0; i < count; i++) {
251 node = node_list[i];
252 if (node <= 0)
253 continue;
254 host = &dwmci_host[i];
255 err = exynos_dwmci_get_config(blob, node, host);
Amard8501212013-04-27 11:42:55 +0530256 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900257 printf("%s: failed to decode dev %d\n", __func__, i);
Jaehoon Chung62811102014-05-16 13:59:52 +0900258 return err;
Amard8501212013-04-27 11:42:55 +0530259 }
260
Jaehoon Chung62811102014-05-16 13:59:52 +0900261 do_dwmci_init(host);
Amard8501212013-04-27 11:42:55 +0530262 }
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000263 return 0;
264}
Jaehoon Chung62811102014-05-16 13:59:52 +0900265
266int exynos_dwmmc_init(const void *blob)
267{
268 int compat_id;
269 int node_list[DWMMC_MAX_CH_NUM];
270 int err = 0, count;
271
272 compat_id = COMPAT_SAMSUNG_EXYNOS_DWMMC;
273
274 count = fdtdec_find_aliases_for_id(blob, "mmc",
275 compat_id, node_list, DWMMC_MAX_CH_NUM);
276 err = exynos_dwmci_process_node(blob, node_list, count);
277
278 return err;
279}
Amard8501212013-04-27 11:42:55 +0530280#endif