blob: 3936660892e2c02093d857ee44afa48823b3b228 [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
22#define DWMMC_MMC0_CLKSEL_VAL 0x03030001
23#define DWMMC_MMC2_CLKSEL_VAL 0x03020001
Jaehoon Chung7aff9672012-10-15 19:10:31 +000024
Amard8501212013-04-27 11:42:55 +053025/*
26 * Function used as callback function to initialise the
27 * CLKSEL register for every mmc channel.
28 */
Jaehoon Chung7aff9672012-10-15 19:10:31 +000029static void exynos_dwmci_clksel(struct dwmci_host *host)
30{
Amard8501212013-04-27 11:42:55 +053031 dwmci_writel(host, DWMCI_CLKSEL, host->clksel_val);
32}
Jaehoon Chung7aff9672012-10-15 19:10:31 +000033
Rajeshwari S Shindeccfa20b2014-02-05 10:48:15 +053034unsigned int exynos_dwmci_get_clk(struct dwmci_host *host)
Amard8501212013-04-27 11:42:55 +053035{
Rajeshwari S Shindeccfa20b2014-02-05 10:48:15 +053036 unsigned long sclk;
37 int8_t clk_div;
38
39 /*
40 * Since SDCLKIN is divided inside controller by the DIVRATIO
41 * value set in the CLKSEL register, we need to use the same output
42 * clock value to calculate the CLKDIV value.
43 * as per user manual:cclk_in = SDCLKIN / (DIVRATIO + 1)
44 */
45 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT)
46 & DWMCI_DIVRATIO_MASK) + 1;
47 sclk = get_mmc_clk(host->dev_index);
48
Jaehoon Chung62811102014-05-16 13:59:52 +090049 /*
50 * Assume to know divider value.
51 * When clock unit is broken, need to set "host->div"
52 */
53 return sclk / clk_div / (host->div + 1);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000054}
55
Jaehoon Chung42f81a82013-11-29 20:08:57 +090056static void exynos_dwmci_board_init(struct dwmci_host *host)
57{
58 if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
59 dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
60 dwmci_writel(host, EMMCP_SEND0, 0);
61 dwmci_writel(host, EMMCP_CTRL0,
62 MPSCTRL_SECURE_READ_BIT |
63 MPSCTRL_SECURE_WRITE_BIT |
64 MPSCTRL_NON_SECURE_READ_BIT |
65 MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID);
66 }
Jaehoon Chung3d12e552015-02-04 15:48:39 +090067
68 /* Set to clksel_val at initial time */
69 if (host->clksel_val)
70 exynos_dwmci_clksel(host);
Jaehoon Chung42f81a82013-11-29 20:08:57 +090071}
72
Jaehoon Chung62811102014-05-16 13:59:52 +090073static int exynos_dwmci_core_init(struct dwmci_host *host, int index)
Jaehoon Chung7aff9672012-10-15 19:10:31 +000074{
Amard8501212013-04-27 11:42:55 +053075 unsigned int div;
76 unsigned long freq, sclk;
Jaehoon Chung62811102014-05-16 13:59:52 +090077
78 if (host->bus_hz)
79 freq = host->bus_hz;
80 else
81 freq = DWMMC_MAX_FREQ;
82
Amard8501212013-04-27 11:42:55 +053083 /* request mmc clock vlaue of 52MHz. */
Amard8501212013-04-27 11:42:55 +053084 sclk = get_mmc_clk(index);
85 div = DIV_ROUND_UP(sclk, freq);
86 /* set the clock divisor for mmc */
87 set_mmc_clk(index, div);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000088
Amard8501212013-04-27 11:42:55 +053089 host->name = "EXYNOS DWMMC";
Rajeshwari Shinde70163092013-10-29 12:53:13 +053090#ifdef CONFIG_EXYNOS5420
91 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
92#endif
Jaehoon Chung42f81a82013-11-29 20:08:57 +090093 host->board_init = exynos_dwmci_board_init;
Amard8501212013-04-27 11:42:55 +053094
Jaehoon Chung62811102014-05-16 13:59:52 +090095 if (!host->clksel_val) {
96 if (index == 0)
Amard8501212013-04-27 11:42:55 +053097 host->clksel_val = DWMMC_MMC0_CLKSEL_VAL;
Jaehoon Chung62811102014-05-16 13:59:52 +090098 else if (index == 2)
Amard8501212013-04-27 11:42:55 +053099 host->clksel_val = DWMMC_MMC2_CLKSEL_VAL;
100 }
101
Jaehoon Chungef91dd52014-05-16 13:59:57 +0900102 host->caps = MMC_MODE_DDR_52MHz;
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000103 host->clksel = exynos_dwmci_clksel;
104 host->dev_index = index;
Jaehoon Chungd94735b2013-10-06 18:59:31 +0900105 host->get_mmc_clk = exynos_dwmci_get_clk;
Amard8501212013-04-27 11:42:55 +0530106 /* Add the mmc channel to be registered with mmc core */
107 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900108 printf("DWMMC%d registration failed\n", index);
Amard8501212013-04-27 11:42:55 +0530109 return -1;
110 }
111 return 0;
112}
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000113
Jaehoon Chung62811102014-05-16 13:59:52 +0900114/*
115 * This function adds the mmc channel to be registered with mmc core.
116 * index - mmc channel number.
117 * regbase - register base address of mmc channel specified in 'index'.
118 * bus_width - operating bus width of mmc channel specified in 'index'.
119 * clksel - value to be written into CLKSEL register in case of FDT.
120 * NULL in case od non-FDT.
121 */
122int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel)
123{
124 struct dwmci_host *host = NULL;
125
126 host = malloc(sizeof(struct dwmci_host));
127 if (!host) {
128 error("dwmci_host malloc fail!\n");
129 return -ENOMEM;
130 }
131
132 host->ioaddr = (void *)regbase;
133 host->buswidth = bus_width;
134
135 if (clksel)
136 host->clksel_val = clksel;
137
138 return exynos_dwmci_core_init(host, index);
139}
140
Amard8501212013-04-27 11:42:55 +0530141#ifdef CONFIG_OF_CONTROL
Jaehoon Chung62811102014-05-16 13:59:52 +0900142static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM];
143
144static int do_dwmci_init(struct dwmci_host *host)
Amard8501212013-04-27 11:42:55 +0530145{
Jaehoon Chung62811102014-05-16 13:59:52 +0900146 int index, flag, err;
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000147
Jaehoon Chung62811102014-05-16 13:59:52 +0900148 index = host->dev_index;
Amard8501212013-04-27 11:42:55 +0530149
Jaehoon Chung62811102014-05-16 13:59:52 +0900150 flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE;
151 err = exynos_pinmux_config(host->dev_id, flag);
152 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900153 printf("DWMMC%d not configure\n", index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900154 return err;
155 }
Amard8501212013-04-27 11:42:55 +0530156
Jaehoon Chung62811102014-05-16 13:59:52 +0900157 return exynos_dwmci_core_init(host, index);
158}
Amard8501212013-04-27 11:42:55 +0530159
Jaehoon Chung62811102014-05-16 13:59:52 +0900160static int exynos_dwmci_get_config(const void *blob, int node,
161 struct dwmci_host *host)
162{
163 int err = 0;
164 u32 base, clksel_val, timing[3];
Amard8501212013-04-27 11:42:55 +0530165
Jaehoon Chung62811102014-05-16 13:59:52 +0900166 /* Extract device id for each mmc channel */
167 host->dev_id = pinmux_decode_periph_id(blob, node);
Amard8501212013-04-27 11:42:55 +0530168
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900169 host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id);
170 if (host->dev_index == host->dev_id)
171 host->dev_index = host->dev_id - PERIPH_ID_SDMMC0;
172
173
Jaehoon Chung62811102014-05-16 13:59:52 +0900174 /* Get the bus width from the device node */
175 host->buswidth = fdtdec_get_int(blob, node, "samsung,bus-width", 0);
176 if (host->buswidth <= 0) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900177 printf("DWMMC%d: Can't get bus-width\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900178 return -EINVAL;
179 }
Amard8501212013-04-27 11:42:55 +0530180
Jaehoon Chung62811102014-05-16 13:59:52 +0900181 /* Set the base address from the device node */
182 base = fdtdec_get_addr(blob, node, "reg");
183 if (!base) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900184 printf("DWMMC%d: Can't get base address\n", host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900185 return -EINVAL;
186 }
187 host->ioaddr = (void *)base;
188
189 /* Extract the timing info from the node */
190 err = fdtdec_get_int_array(blob, node, "samsung,timing", timing, 3);
191 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900192 printf("DWMMC%d: Can't get sdr-timings for devider\n",
193 host->dev_index);
Jaehoon Chung62811102014-05-16 13:59:52 +0900194 return -EINVAL;
195 }
196
197 clksel_val = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
198 DWMCI_SET_DRV_CLK(timing[1]) |
199 DWMCI_SET_DIV_RATIO(timing[2]));
200 if (clksel_val)
201 host->clksel_val = clksel_val;
202
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
210static int exynos_dwmci_process_node(const void *blob,
211 int node_list[], int count)
212{
213 struct dwmci_host *host;
214 int i, node, err;
215
216 for (i = 0; i < count; i++) {
217 node = node_list[i];
218 if (node <= 0)
219 continue;
220 host = &dwmci_host[i];
221 err = exynos_dwmci_get_config(blob, node, host);
Amard8501212013-04-27 11:42:55 +0530222 if (err) {
Jaehoon Chungdb313bf2014-11-28 20:42:33 +0900223 printf("%s: failed to decode dev %d\n", __func__, i);
Jaehoon Chung62811102014-05-16 13:59:52 +0900224 return err;
Amard8501212013-04-27 11:42:55 +0530225 }
226
Jaehoon Chung62811102014-05-16 13:59:52 +0900227 do_dwmci_init(host);
Amard8501212013-04-27 11:42:55 +0530228 }
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000229 return 0;
230}
Jaehoon Chung62811102014-05-16 13:59:52 +0900231
232int exynos_dwmmc_init(const void *blob)
233{
234 int compat_id;
235 int node_list[DWMMC_MAX_CH_NUM];
236 int err = 0, count;
237
238 compat_id = COMPAT_SAMSUNG_EXYNOS_DWMMC;
239
240 count = fdtdec_find_aliases_for_id(blob, "mmc",
241 compat_id, node_list, DWMMC_MAX_CH_NUM);
242 err = exynos_dwmci_process_node(blob, node_list, count);
243
244 return err;
245}
Amard8501212013-04-27 11:42:55 +0530246#endif