blob: ab0df46d821628e841fb125f7f6525970e186291 [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>
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>
18#include <asm-generic/errno.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
26/* Exynos implmentation specific drver private data */
27struct dwmci_exynos_priv_data {
28 u32 sdr_timing;
29};
Jaehoon Chung7aff9672012-10-15 19:10:31 +000030
Amard8501212013-04-27 11:42:55 +053031/*
32 * Function used as callback function to initialise the
33 * CLKSEL register for every mmc channel.
34 */
Jaehoon Chung7aff9672012-10-15 19:10:31 +000035static void exynos_dwmci_clksel(struct dwmci_host *host)
36{
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090037 struct dwmci_exynos_priv_data *priv = host->priv;
38
39 dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing);
Amard8501212013-04-27 11:42:55 +053040}
Jaehoon Chung7aff9672012-10-15 19:10:31 +000041
Simon Glasseff76682015-08-30 16:55:15 -060042unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq)
Amard8501212013-04-27 11:42:55 +053043{
Rajeshwari S Shindeccfa20b2014-02-05 10:48:15 +053044 unsigned long sclk;
45 int8_t clk_div;
46
47 /*
48 * Since SDCLKIN is divided inside controller by the DIVRATIO
49 * value set in the CLKSEL register, we need to use the same output
50 * clock value to calculate the CLKDIV value.
51 * as per user manual:cclk_in = SDCLKIN / (DIVRATIO + 1)
52 */
53 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT)
54 & DWMCI_DIVRATIO_MASK) + 1;
55 sclk = get_mmc_clk(host->dev_index);
56
Jaehoon Chung62811102014-05-16 13:59:52 +090057 /*
58 * Assume to know divider value.
59 * When clock unit is broken, need to set "host->div"
60 */
61 return sclk / clk_div / (host->div + 1);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000062}
63
Jaehoon Chung42f81a82013-11-29 20:08:57 +090064static void exynos_dwmci_board_init(struct dwmci_host *host)
65{
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090066 struct dwmci_exynos_priv_data *priv = host->priv;
67
Jaehoon Chung42f81a82013-11-29 20:08:57 +090068 if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
69 dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
70 dwmci_writel(host, EMMCP_SEND0, 0);
71 dwmci_writel(host, EMMCP_CTRL0,
72 MPSCTRL_SECURE_READ_BIT |
73 MPSCTRL_SECURE_WRITE_BIT |
74 MPSCTRL_NON_SECURE_READ_BIT |
75 MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID);
76 }
Jaehoon Chung3d12e552015-02-04 15:48:39 +090077
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +090078 /* Set to timing value at initial time */
79 if (priv->sdr_timing)
Jaehoon Chung3d12e552015-02-04 15:48:39 +090080 exynos_dwmci_clksel(host);
Jaehoon Chung42f81a82013-11-29 20:08:57 +090081}
82
Jaehoon Chungde61aaee2016-06-29 19:46:17 +090083static int exynos_dwmci_core_init(struct dwmci_host *host)
Jaehoon Chung7aff9672012-10-15 19:10:31 +000084{
Amard8501212013-04-27 11:42:55 +053085 unsigned int div;
86 unsigned long freq, sclk;
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. */
Jaehoon Chungde61aaee2016-06-29 19:46:17 +090094 sclk = get_mmc_clk(host->dev_index);
Amard8501212013-04-27 11:42:55 +053095 div = DIV_ROUND_UP(sclk, freq);
96 /* set the clock divisor for mmc */
Jaehoon Chungde61aaee2016-06-29 19:46:17 +090097 set_mmc_clk(host->dev_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 Chungef91dd52014-05-16 13:59:57 +0900105 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000106 host->clksel = exynos_dwmci_clksel;
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900107 host->get_mmc_clk = exynos_dwmci_get_clk;
Amard8501212013-04-27 11:42:55 +0530108 /* Add the mmc channel to be registered with mmc core */
109 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900110 printf("DWMMC%d registration failed\n", host->dev_index);
Amard8501212013-04-27 11:42:55 +0530111 return -1;
112 }
113 return 0;
114}
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000115
Jaehoon Chung62811102014-05-16 13:59:52 +0900116static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM];
117
118static int do_dwmci_init(struct dwmci_host *host)
Amard8501212013-04-27 11:42:55 +0530119{
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900120 int flag, err;
Amard8501212013-04-27 11:42:55 +0530121
Jaehoon Chung62811102014-05-16 13:59:52 +0900122 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
123 err = exynos_pinmux_config(host->dev_id, flag);
124 if (err) {
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900125 printf("DWMMC%d not configure\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900126 return err;
127 }
Amard8501212013-04-27 11:42:55 +0530128
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900129 return exynos_dwmci_core_init(host);
Jaehoon Chung62811102014-05-16 13:59:52 +0900130}
Amard8501212013-04-27 11:42:55 +0530131
Jaehoon Chung62811102014-05-16 13:59:52 +0900132static int exynos_dwmci_get_config(const void *blob, int node,
133 struct dwmci_host *host)
134{
135 int err = 0;
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900136 u32 base, timing[3];
137 struct dwmci_exynos_priv_data *priv;
138
139 priv = malloc(sizeof(struct dwmci_exynos_priv_data));
140 if (!priv) {
141 error("dwmci_exynos_priv_data malloc fail!\n");
142 return -ENOMEM;
143 }
Amard8501212013-04-27 11:42:55 +0530144
Jaehoon Chung62811102014-05-16 13:59:52 +0900145 /* Extract device id for each mmc channel */
146 host->dev_id = pinmux_decode_periph_id(blob, node);
Amard8501212013-04-27 11:42:55 +0530147
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900148 host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id);
149 if (host->dev_index == host->dev_id)
150 host->dev_index = host->dev_id - PERIPH_ID_SDMMC0;
151
Jaehoon Chunge0303c72016-06-29 19:46:16 +0900152 if (host->dev_index > 4) {
153 printf("DWMMC%d: Can't get the dev index\n", host->dev_index);
154 return -EINVAL;
155 }
156
Jaehoon Chung865ecd92016-06-29 19:46:18 +0900157 /* Get the bus width from the device node (Default is 4bit buswidth) */
158 host->buswidth = fdtdec_get_int(blob, node, "samsung,bus-width", 4);
Amard8501212013-04-27 11:42:55 +0530159
Jaehoon Chung62811102014-05-16 13:59:52 +0900160 /* Set the base address from the device node */
161 base = fdtdec_get_addr(blob, node, "reg");
162 if (!base) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900163 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900164 return -EINVAL;
165 }
166 host->ioaddr = (void *)base;
167
168 /* Extract the timing info from the node */
169 err = fdtdec_get_int_array(blob, node, "samsung,timing", timing, 3);
170 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900171 printf("DWMMC%d: Can't get sdr-timings for devider\n",
172 host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900173 return -EINVAL;
174 }
175
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900176 priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
Jaehoon Chung62811102014-05-16 13:59:52 +0900177 DWMCI_SET_DRV_CLK(timing[1]) |
178 DWMCI_SET_DIV_RATIO(timing[2]));
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900179
180 /* sdr_timing didn't assigned anything, use the default value */
181 if (!priv->sdr_timing) {
182 if (host->dev_index == 0)
183 priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL;
184 else if (host->dev_index == 2)
185 priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL;
186 }
Jaehoon Chung62811102014-05-16 13:59:52 +0900187
188 host->fifoth_val = fdtdec_get_int(blob, node, "fifoth_val", 0);
189 host->bus_hz = fdtdec_get_int(blob, node, "bus_hz", 0);
190 host->div = fdtdec_get_int(blob, node, "div", 0);
191
Jaehoon Chungbcb03eab2015-02-04 15:48:40 +0900192 host->priv = priv;
193
Jaehoon Chung62811102014-05-16 13:59:52 +0900194 return 0;
195}
196
197static int exynos_dwmci_process_node(const void *blob,
198 int node_list[], int count)
199{
200 struct dwmci_host *host;
201 int i, node, err;
202
203 for (i = 0; i < count; i++) {
204 node = node_list[i];
205 if (node <= 0)
206 continue;
207 host = &dwmci_host[i];
208 err = exynos_dwmci_get_config(blob, node, host);
Amard8501212013-04-27 11:42:55 +0530209 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900210 printf("%s: failed to decode dev %d\n", __func__, i);
Jaehoon Chung62811102014-05-16 13:59:52 +0900211 return err;
Amard8501212013-04-27 11:42:55 +0530212 }
213
Jaehoon Chung62811102014-05-16 13:59:52 +0900214 do_dwmci_init(host);
Amard8501212013-04-27 11:42:55 +0530215 }
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000216 return 0;
217}
Jaehoon Chung62811102014-05-16 13:59:52 +0900218
219int exynos_dwmmc_init(const void *blob)
220{
Jaehoon Chung62811102014-05-16 13:59:52 +0900221 int node_list[DWMMC_MAX_CH_NUM];
Przemyslaw Marczakc3885b82015-02-20 12:29:26 +0100222 int boot_dev_node;
Jaehoon Chung62811102014-05-16 13:59:52 +0900223 int err = 0, count;
224
Jaehoon Chung62811102014-05-16 13:59:52 +0900225 count = fdtdec_find_aliases_for_id(blob, "mmc",
Jaehoon Chungde61aaee2016-06-29 19:46:17 +0900226 COMPAT_SAMSUNG_EXYNOS_DWMMC, node_list,
227 DWMMC_MAX_CH_NUM);
Przemyslaw Marczakc3885b82015-02-20 12:29:26 +0100228
229 /* For DWMMC always set boot device as mmc 0 */
230 if (count >= 3 && get_boot_mode() == BOOT_MODE_SD) {
231 boot_dev_node = node_list[2];
232 node_list[2] = node_list[0];
233 node_list[0] = boot_dev_node;
234 }
235
Jaehoon Chung62811102014-05-16 13:59:52 +0900236 err = exynos_dwmci_process_node(blob, node_list, count);
237
238 return err;
239}