Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 SAMSUNG Electronics |
| 3 | * Jaehoon Chung <jh80.chung@samsung.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 9 | #include <dwmmc.h> |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 10 | #include <fdtdec.h> |
| 11 | #include <libfdt.h> |
| 12 | #include <malloc.h> |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 13 | #include <asm/arch/dwmmc.h> |
| 14 | #include <asm/arch/clk.h> |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 15 | #include <asm/arch/pinmux.h> |
Przemyslaw Marczak | 64029f7 | 2015-02-20 12:29:26 +0100 | [diff] [blame] | 16 | #include <asm/arch/power.h> |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 17 | #include <asm/gpio.h> |
| 18 | #include <asm-generic/errno.h> |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 19 | |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 20 | #define DWMMC_MAX_CH_NUM 4 |
| 21 | #define DWMMC_MAX_FREQ 52000000 |
| 22 | #define DWMMC_MIN_FREQ 400000 |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 23 | #define DWMMC_MMC0_SDR_TIMING_VAL 0x03030001 |
| 24 | #define DWMMC_MMC2_SDR_TIMING_VAL 0x03020001 |
| 25 | |
| 26 | /* Exynos implmentation specific drver private data */ |
| 27 | struct dwmci_exynos_priv_data { |
| 28 | u32 sdr_timing; |
| 29 | }; |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 30 | |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 31 | /* |
| 32 | * Function used as callback function to initialise the |
| 33 | * CLKSEL register for every mmc channel. |
| 34 | */ |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 35 | static void exynos_dwmci_clksel(struct dwmci_host *host) |
| 36 | { |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 37 | struct dwmci_exynos_priv_data *priv = host->priv; |
| 38 | |
| 39 | dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing); |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 40 | } |
| 41 | |
Rajeshwari S Shinde | d3e016c | 2014-02-05 10:48:15 +0530 | [diff] [blame] | 42 | unsigned int exynos_dwmci_get_clk(struct dwmci_host *host) |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 43 | { |
Rajeshwari S Shinde | d3e016c | 2014-02-05 10:48:15 +0530 | [diff] [blame] | 44 | 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 Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 57 | /* |
| 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); |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 62 | } |
| 63 | |
Jaehoon Chung | 18ab675 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 64 | static void exynos_dwmci_board_init(struct dwmci_host *host) |
| 65 | { |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 66 | struct dwmci_exynos_priv_data *priv = host->priv; |
| 67 | |
Jaehoon Chung | 18ab675 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 68 | 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 Chung | 3a33bb1 | 2015-02-04 15:48:39 +0900 | [diff] [blame] | 77 | |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 78 | /* Set to timing value at initial time */ |
| 79 | if (priv->sdr_timing) |
Jaehoon Chung | 3a33bb1 | 2015-02-04 15:48:39 +0900 | [diff] [blame] | 80 | exynos_dwmci_clksel(host); |
Jaehoon Chung | 18ab675 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 81 | } |
| 82 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 83 | static int exynos_dwmci_core_init(struct dwmci_host *host, int index) |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 84 | { |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 85 | unsigned int div; |
| 86 | unsigned long freq, sclk; |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 87 | struct dwmci_exynos_priv_data *priv = host->priv; |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 88 | |
| 89 | if (host->bus_hz) |
| 90 | freq = host->bus_hz; |
| 91 | else |
| 92 | freq = DWMMC_MAX_FREQ; |
| 93 | |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 94 | /* request mmc clock vlaue of 52MHz. */ |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 95 | sclk = get_mmc_clk(index); |
| 96 | div = DIV_ROUND_UP(sclk, freq); |
| 97 | /* set the clock divisor for mmc */ |
| 98 | set_mmc_clk(index, div); |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 99 | |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 100 | host->name = "EXYNOS DWMMC"; |
Rajeshwari Shinde | 6f0b7ca | 2013-10-29 12:53:13 +0530 | [diff] [blame] | 101 | #ifdef CONFIG_EXYNOS5420 |
| 102 | host->quirks = DWMCI_QUIRK_DISABLE_SMU; |
| 103 | #endif |
Jaehoon Chung | 18ab675 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 104 | host->board_init = exynos_dwmci_board_init; |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 105 | |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 106 | if (!priv->sdr_timing) { |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 107 | if (index == 0) |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 108 | priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL; |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 109 | else if (index == 2) |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 110 | priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL; |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 111 | } |
| 112 | |
Jaehoon Chung | e09bd85 | 2014-05-16 13:59:57 +0900 | [diff] [blame] | 113 | host->caps = MMC_MODE_DDR_52MHz; |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 114 | host->clksel = exynos_dwmci_clksel; |
| 115 | host->dev_index = index; |
Jaehoon Chung | b44fe83 | 2013-10-06 18:59:31 +0900 | [diff] [blame] | 116 | host->get_mmc_clk = exynos_dwmci_get_clk; |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 117 | /* Add the mmc channel to be registered with mmc core */ |
| 118 | if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) { |
Jaehoon Chung | dfcb683 | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 119 | printf("DWMMC%d registration failed\n", index); |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 120 | return -1; |
| 121 | } |
Jaehoon Chung | d0ebbb8 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 122 | return 0; |
| 123 | } |
| 124 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 125 | /* |
| 126 | * This function adds the mmc channel to be registered with mmc core. |
| 127 | * index - mmc channel number. |
| 128 | * regbase - register base address of mmc channel specified in 'index'. |
| 129 | * bus_width - operating bus width of mmc channel specified in 'index'. |
| 130 | * clksel - value to be written into CLKSEL register in case of FDT. |
| 131 | * NULL in case od non-FDT. |
| 132 | */ |
| 133 | int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel) |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 134 | { |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 135 | struct dwmci_host *host = NULL; |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 136 | struct dwmci_exynos_priv_data *priv; |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 137 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 138 | host = malloc(sizeof(struct dwmci_host)); |
| 139 | if (!host) { |
| 140 | error("dwmci_host malloc fail!\n"); |
| 141 | return -ENOMEM; |
| 142 | } |
| 143 | |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 144 | priv = malloc(sizeof(struct dwmci_exynos_priv_data)); |
| 145 | if (!priv) { |
| 146 | error("dwmci_exynos_priv_data malloc fail!\n"); |
| 147 | return -ENOMEM; |
| 148 | } |
| 149 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 150 | host->ioaddr = (void *)regbase; |
| 151 | host->buswidth = bus_width; |
| 152 | |
| 153 | if (clksel) |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 154 | priv->sdr_timing = clksel; |
| 155 | |
| 156 | host->priv = priv; |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 157 | |
| 158 | return exynos_dwmci_core_init(host, index); |
| 159 | } |
| 160 | |
| 161 | #ifdef CONFIG_OF_CONTROL |
| 162 | static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM]; |
| 163 | |
| 164 | static int do_dwmci_init(struct dwmci_host *host) |
| 165 | { |
| 166 | int index, flag, err; |
| 167 | |
| 168 | index = host->dev_index; |
| 169 | |
| 170 | flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE; |
| 171 | err = exynos_pinmux_config(host->dev_id, flag); |
| 172 | if (err) { |
Jaehoon Chung | dfcb683 | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 173 | printf("DWMMC%d not configure\n", index); |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 174 | return err; |
| 175 | } |
| 176 | |
| 177 | return exynos_dwmci_core_init(host, index); |
| 178 | } |
| 179 | |
| 180 | static int exynos_dwmci_get_config(const void *blob, int node, |
| 181 | struct dwmci_host *host) |
| 182 | { |
| 183 | int err = 0; |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 184 | u32 base, timing[3]; |
| 185 | struct dwmci_exynos_priv_data *priv; |
| 186 | |
| 187 | priv = malloc(sizeof(struct dwmci_exynos_priv_data)); |
| 188 | if (!priv) { |
| 189 | error("dwmci_exynos_priv_data malloc fail!\n"); |
| 190 | return -ENOMEM; |
| 191 | } |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 192 | |
| 193 | /* Extract device id for each mmc channel */ |
| 194 | host->dev_id = pinmux_decode_periph_id(blob, node); |
| 195 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 196 | host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id); |
| 197 | if (host->dev_index == host->dev_id) |
| 198 | host->dev_index = host->dev_id - PERIPH_ID_SDMMC0; |
| 199 | |
Jaehoon Chung | dfcb683 | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 200 | /* 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) { |
| 203 | printf("DWMMC%d: Can't get bus-width\n", host->dev_index); |
| 204 | return -EINVAL; |
| 205 | } |
| 206 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 207 | /* Set the base address from the device node */ |
| 208 | base = fdtdec_get_addr(blob, node, "reg"); |
| 209 | if (!base) { |
Jaehoon Chung | dfcb683 | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 210 | printf("DWMMC%d: Can't get base address\n", host->dev_index); |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 211 | 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 Chung | dfcb683 | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 218 | printf("DWMMC%d: Can't get sdr-timings for devider\n", |
| 219 | host->dev_index); |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 220 | return -EINVAL; |
| 221 | } |
| 222 | |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 223 | priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 224 | DWMCI_SET_DRV_CLK(timing[1]) | |
| 225 | DWMCI_SET_DIV_RATIO(timing[2])); |
Jaehoon Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 226 | |
| 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 Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 234 | |
| 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 Chung | 5dab81c | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 239 | host->priv = priv; |
| 240 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static 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; |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 249 | |
| 250 | for (i = 0; i < count; i++) { |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 251 | node = node_list[i]; |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 252 | if (node <= 0) |
| 253 | continue; |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 254 | host = &dwmci_host[i]; |
| 255 | err = exynos_dwmci_get_config(blob, node, host); |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 256 | if (err) { |
Jaehoon Chung | dfcb683 | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 257 | printf("%s: failed to decode dev %d\n", __func__, i); |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 258 | return err; |
| 259 | } |
| 260 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 261 | do_dwmci_init(host); |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 262 | } |
| 263 | return 0; |
| 264 | } |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 265 | |
| 266 | int exynos_dwmmc_init(const void *blob) |
| 267 | { |
| 268 | int compat_id; |
| 269 | int node_list[DWMMC_MAX_CH_NUM]; |
Przemyslaw Marczak | 64029f7 | 2015-02-20 12:29:26 +0100 | [diff] [blame] | 270 | int boot_dev_node; |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 271 | int err = 0, count; |
| 272 | |
| 273 | compat_id = COMPAT_SAMSUNG_EXYNOS_DWMMC; |
| 274 | |
| 275 | count = fdtdec_find_aliases_for_id(blob, "mmc", |
| 276 | compat_id, node_list, DWMMC_MAX_CH_NUM); |
Przemyslaw Marczak | 64029f7 | 2015-02-20 12:29:26 +0100 | [diff] [blame] | 277 | |
| 278 | /* For DWMMC always set boot device as mmc 0 */ |
| 279 | if (count >= 3 && get_boot_mode() == BOOT_MODE_SD) { |
| 280 | boot_dev_node = node_list[2]; |
| 281 | node_list[2] = node_list[0]; |
| 282 | node_list[0] = boot_dev_node; |
| 283 | } |
| 284 | |
Jaehoon Chung | 959198f | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 285 | err = exynos_dwmci_process_node(blob, node_list, count); |
| 286 | |
| 287 | return err; |
| 288 | } |
Amar | a082a2d | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 289 | #endif |