Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2012 SAMSUNG Electronics |
| 4 | * Jaehoon Chung <jh80.chung@samsung.com> |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 8 | #include <dwmmc.h> |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 9 | #include <fdtdec.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 10 | #include <linux/libfdt.h> |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 11 | #include <malloc.h> |
Jaehoon Chung | edd9d1dc | 2016-07-19 16:33:34 +0900 | [diff] [blame] | 12 | #include <errno.h> |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 13 | #include <asm/arch/dwmmc.h> |
| 14 | #include <asm/arch/clk.h> |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 15 | #include <asm/arch/pinmux.h> |
Przemyslaw Marczak | c3885b8 | 2015-02-20 12:29:26 +0100 | [diff] [blame] | 16 | #include <asm/arch/power.h> |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 17 | #include <asm/gpio.h> |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 18 | |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 19 | #define DWMMC_MAX_CH_NUM 4 |
| 20 | #define DWMMC_MAX_FREQ 52000000 |
| 21 | #define DWMMC_MIN_FREQ 400000 |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 22 | #define DWMMC_MMC0_SDR_TIMING_VAL 0x03030001 |
| 23 | #define DWMMC_MMC2_SDR_TIMING_VAL 0x03020001 |
| 24 | |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 25 | #ifdef CONFIG_DM_MMC |
| 26 | #include <dm.h> |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
| 29 | struct exynos_mmc_plat { |
| 30 | struct mmc_config cfg; |
| 31 | struct mmc mmc; |
| 32 | }; |
| 33 | #endif |
| 34 | |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 35 | /* Exynos implmentation specific drver private data */ |
| 36 | struct dwmci_exynos_priv_data { |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 37 | #ifdef CONFIG_DM_MMC |
| 38 | struct dwmci_host host; |
| 39 | #endif |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 40 | u32 sdr_timing; |
| 41 | }; |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 42 | |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 43 | /* |
| 44 | * Function used as callback function to initialise the |
| 45 | * CLKSEL register for every mmc channel. |
| 46 | */ |
Siew Chin Lim | c51e7e1 | 2020-12-24 18:21:03 +0800 | [diff] [blame^] | 47 | static int exynos_dwmci_clksel(struct dwmci_host *host) |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 48 | { |
Lukasz Majewski | 22c2afa | 2018-08-01 14:48:59 +0200 | [diff] [blame] | 49 | #ifdef CONFIG_DM_MMC |
| 50 | struct dwmci_exynos_priv_data *priv = |
| 51 | container_of(host, struct dwmci_exynos_priv_data, host); |
| 52 | #else |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 53 | struct dwmci_exynos_priv_data *priv = host->priv; |
Lukasz Majewski | 22c2afa | 2018-08-01 14:48:59 +0200 | [diff] [blame] | 54 | #endif |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 55 | dwmci_writel(host, DWMCI_CLKSEL, priv->sdr_timing); |
Siew Chin Lim | c51e7e1 | 2020-12-24 18:21:03 +0800 | [diff] [blame^] | 56 | |
| 57 | return 0; |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 58 | } |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 59 | |
Simon Glass | eff7668 | 2015-08-30 16:55:15 -0600 | [diff] [blame] | 60 | unsigned int exynos_dwmci_get_clk(struct dwmci_host *host, uint freq) |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 61 | { |
Rajeshwari S Shinde | ccfa20b | 2014-02-05 10:48:15 +0530 | [diff] [blame] | 62 | 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 Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 75 | /* |
| 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 Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Jaehoon Chung | 42f81a8 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 82 | static void exynos_dwmci_board_init(struct dwmci_host *host) |
| 83 | { |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 84 | struct dwmci_exynos_priv_data *priv = host->priv; |
| 85 | |
Jaehoon Chung | 42f81a8 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 86 | 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 Chung | 3d12e55 | 2015-02-04 15:48:39 +0900 | [diff] [blame] | 95 | |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 96 | /* Set to timing value at initial time */ |
| 97 | if (priv->sdr_timing) |
Jaehoon Chung | 3d12e55 | 2015-02-04 15:48:39 +0900 | [diff] [blame] | 98 | exynos_dwmci_clksel(host); |
Jaehoon Chung | 42f81a8 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 99 | } |
| 100 | |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 101 | static int exynos_dwmci_core_init(struct dwmci_host *host) |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 102 | { |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 103 | unsigned int div; |
| 104 | unsigned long freq, sclk; |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 105 | |
| 106 | if (host->bus_hz) |
| 107 | freq = host->bus_hz; |
| 108 | else |
| 109 | freq = DWMMC_MAX_FREQ; |
| 110 | |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 111 | /* request mmc clock vlaue of 52MHz. */ |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 112 | sclk = get_mmc_clk(host->dev_index); |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 113 | div = DIV_ROUND_UP(sclk, freq); |
| 114 | /* set the clock divisor for mmc */ |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 115 | set_mmc_clk(host->dev_index, div); |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 116 | |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 117 | host->name = "EXYNOS DWMMC"; |
Rajeshwari Shinde | 7016309 | 2013-10-29 12:53:13 +0530 | [diff] [blame] | 118 | #ifdef CONFIG_EXYNOS5420 |
| 119 | host->quirks = DWMCI_QUIRK_DISABLE_SMU; |
| 120 | #endif |
Jaehoon Chung | 42f81a8 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 121 | host->board_init = exynos_dwmci_board_init; |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 122 | |
Jaehoon Chung | ef91dd5 | 2014-05-16 13:59:57 +0900 | [diff] [blame] | 123 | host->caps = MMC_MODE_DDR_52MHz; |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 124 | host->clksel = exynos_dwmci_clksel; |
Jaehoon Chung | d94735b | 2013-10-06 18:59:31 +0900 | [diff] [blame] | 125 | host->get_mmc_clk = exynos_dwmci_get_clk; |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 126 | |
| 127 | #ifndef CONFIG_DM_MMC |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 128 | /* Add the mmc channel to be registered with mmc core */ |
| 129 | if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) { |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 130 | printf("DWMMC%d registration failed\n", host->dev_index); |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 131 | return -1; |
| 132 | } |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 133 | #endif |
| 134 | |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 135 | return 0; |
| 136 | } |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 137 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 138 | static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM]; |
| 139 | |
| 140 | static int do_dwmci_init(struct dwmci_host *host) |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 141 | { |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 142 | int flag, err; |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 143 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 144 | flag = host->buswidth == 8 ? PINMUX_FLAG_8BIT_MODE : PINMUX_FLAG_NONE; |
| 145 | err = exynos_pinmux_config(host->dev_id, flag); |
| 146 | if (err) { |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 147 | printf("DWMMC%d not configure\n", host->dev_index); |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 148 | return err; |
| 149 | } |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 150 | |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 151 | return exynos_dwmci_core_init(host); |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 152 | } |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 153 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 154 | static int exynos_dwmci_get_config(const void *blob, int node, |
Lukasz Majewski | 6702cb2 | 2018-08-01 14:48:53 +0200 | [diff] [blame] | 155 | struct dwmci_host *host, |
| 156 | struct dwmci_exynos_priv_data *priv) |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 157 | { |
| 158 | int err = 0; |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 159 | u32 base, timing[3]; |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 160 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 161 | /* Extract device id for each mmc channel */ |
| 162 | host->dev_id = pinmux_decode_periph_id(blob, node); |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 163 | |
Jaehoon Chung | db313bf | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 164 | host->dev_index = fdtdec_get_int(blob, node, "index", host->dev_id); |
| 165 | if (host->dev_index == host->dev_id) |
| 166 | host->dev_index = host->dev_id - PERIPH_ID_SDMMC0; |
| 167 | |
Jaehoon Chung | e0303c7 | 2016-06-29 19:46:16 +0900 | [diff] [blame] | 168 | if (host->dev_index > 4) { |
| 169 | printf("DWMMC%d: Can't get the dev index\n", host->dev_index); |
| 170 | return -EINVAL; |
| 171 | } |
| 172 | |
Jaehoon Chung | 865ecd9 | 2016-06-29 19:46:18 +0900 | [diff] [blame] | 173 | /* Get the bus width from the device node (Default is 4bit buswidth) */ |
| 174 | host->buswidth = fdtdec_get_int(blob, node, "samsung,bus-width", 4); |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 175 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 176 | /* Set the base address from the device node */ |
| 177 | base = fdtdec_get_addr(blob, node, "reg"); |
| 178 | if (!base) { |
Jaehoon Chung | db313bf | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 179 | printf("DWMMC%d: Can't get base address\n", host->dev_index); |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 180 | return -EINVAL; |
| 181 | } |
| 182 | host->ioaddr = (void *)base; |
| 183 | |
| 184 | /* Extract the timing info from the node */ |
| 185 | err = fdtdec_get_int_array(blob, node, "samsung,timing", timing, 3); |
| 186 | if (err) { |
Jaehoon Chung | db313bf | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 187 | printf("DWMMC%d: Can't get sdr-timings for devider\n", |
| 188 | host->dev_index); |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 189 | return -EINVAL; |
| 190 | } |
| 191 | |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 192 | priv->sdr_timing = (DWMCI_SET_SAMPLE_CLK(timing[0]) | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 193 | DWMCI_SET_DRV_CLK(timing[1]) | |
| 194 | DWMCI_SET_DIV_RATIO(timing[2])); |
Jaehoon Chung | bcb03eab | 2015-02-04 15:48:40 +0900 | [diff] [blame] | 195 | |
| 196 | /* sdr_timing didn't assigned anything, use the default value */ |
| 197 | if (!priv->sdr_timing) { |
| 198 | if (host->dev_index == 0) |
| 199 | priv->sdr_timing = DWMMC_MMC0_SDR_TIMING_VAL; |
| 200 | else if (host->dev_index == 2) |
| 201 | priv->sdr_timing = DWMMC_MMC2_SDR_TIMING_VAL; |
| 202 | } |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 203 | |
| 204 | host->fifoth_val = fdtdec_get_int(blob, node, "fifoth_val", 0); |
| 205 | host->bus_hz = fdtdec_get_int(blob, node, "bus_hz", 0); |
| 206 | host->div = fdtdec_get_int(blob, node, "div", 0); |
| 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | static int exynos_dwmci_process_node(const void *blob, |
| 212 | int node_list[], int count) |
| 213 | { |
Lukasz Majewski | 6702cb2 | 2018-08-01 14:48:53 +0200 | [diff] [blame] | 214 | struct dwmci_exynos_priv_data *priv; |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 215 | struct dwmci_host *host; |
| 216 | int i, node, err; |
| 217 | |
| 218 | for (i = 0; i < count; i++) { |
| 219 | node = node_list[i]; |
| 220 | if (node <= 0) |
| 221 | continue; |
| 222 | host = &dwmci_host[i]; |
Lukasz Majewski | 6702cb2 | 2018-08-01 14:48:53 +0200 | [diff] [blame] | 223 | |
| 224 | priv = malloc(sizeof(struct dwmci_exynos_priv_data)); |
| 225 | if (!priv) { |
| 226 | pr_err("dwmci_exynos_priv_data malloc fail!\n"); |
| 227 | return -ENOMEM; |
| 228 | } |
| 229 | |
| 230 | err = exynos_dwmci_get_config(blob, node, host, priv); |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 231 | if (err) { |
Jaehoon Chung | db313bf | 2014-11-28 20:42:33 +0900 | [diff] [blame] | 232 | printf("%s: failed to decode dev %d\n", __func__, i); |
Lukasz Majewski | 6702cb2 | 2018-08-01 14:48:53 +0200 | [diff] [blame] | 233 | free(priv); |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 234 | return err; |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 235 | } |
Lukasz Majewski | 6702cb2 | 2018-08-01 14:48:53 +0200 | [diff] [blame] | 236 | host->priv = priv; |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 237 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 238 | do_dwmci_init(host); |
Amar | d850121 | 2013-04-27 11:42:55 +0530 | [diff] [blame] | 239 | } |
Jaehoon Chung | 7aff967 | 2012-10-15 19:10:31 +0000 | [diff] [blame] | 240 | return 0; |
| 241 | } |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 242 | |
| 243 | int exynos_dwmmc_init(const void *blob) |
| 244 | { |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 245 | int node_list[DWMMC_MAX_CH_NUM]; |
Przemyslaw Marczak | c3885b8 | 2015-02-20 12:29:26 +0100 | [diff] [blame] | 246 | int boot_dev_node; |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 247 | int err = 0, count; |
| 248 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 249 | count = fdtdec_find_aliases_for_id(blob, "mmc", |
Jaehoon Chung | de61aaee | 2016-06-29 19:46:17 +0900 | [diff] [blame] | 250 | COMPAT_SAMSUNG_EXYNOS_DWMMC, node_list, |
| 251 | DWMMC_MAX_CH_NUM); |
Przemyslaw Marczak | c3885b8 | 2015-02-20 12:29:26 +0100 | [diff] [blame] | 252 | |
| 253 | /* For DWMMC always set boot device as mmc 0 */ |
| 254 | if (count >= 3 && get_boot_mode() == BOOT_MODE_SD) { |
| 255 | boot_dev_node = node_list[2]; |
| 256 | node_list[2] = node_list[0]; |
| 257 | node_list[0] = boot_dev_node; |
| 258 | } |
| 259 | |
Jaehoon Chung | 6281110 | 2014-05-16 13:59:52 +0900 | [diff] [blame] | 260 | err = exynos_dwmci_process_node(blob, node_list, count); |
| 261 | |
| 262 | return err; |
| 263 | } |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 264 | |
| 265 | #ifdef CONFIG_DM_MMC |
| 266 | static int exynos_dwmmc_probe(struct udevice *dev) |
| 267 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 268 | struct exynos_mmc_plat *plat = dev_get_plat(dev); |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 269 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 270 | struct dwmci_exynos_priv_data *priv = dev_get_priv(dev); |
| 271 | struct dwmci_host *host = &priv->host; |
| 272 | int err; |
| 273 | |
Lukasz Majewski | 6702cb2 | 2018-08-01 14:48:53 +0200 | [diff] [blame] | 274 | err = exynos_dwmci_get_config(gd->fdt_blob, dev_of_offset(dev), host, |
| 275 | priv); |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 276 | if (err) |
| 277 | return err; |
| 278 | err = do_dwmci_init(host); |
| 279 | if (err) |
| 280 | return err; |
| 281 | |
Jaehoon Chung | bf819d0 | 2016-09-23 19:13:16 +0900 | [diff] [blame] | 282 | dwmci_setup_cfg(&plat->cfg, host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ); |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 283 | host->mmc = &plat->mmc; |
| 284 | host->mmc->priv = &priv->host; |
| 285 | host->priv = dev; |
| 286 | upriv->mmc = host->mmc; |
| 287 | |
| 288 | return dwmci_probe(dev); |
| 289 | } |
| 290 | |
| 291 | static int exynos_dwmmc_bind(struct udevice *dev) |
| 292 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 293 | struct exynos_mmc_plat *plat = dev_get_plat(dev); |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 294 | |
Masahiro Yamada | cdb67f3 | 2016-09-06 22:17:32 +0900 | [diff] [blame] | 295 | return dwmci_bind(dev, &plat->mmc, &plat->cfg); |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | static const struct udevice_id exynos_dwmmc_ids[] = { |
| 299 | { .compatible = "samsung,exynos4412-dw-mshc" }, |
Lukasz Majewski | 03cf3af | 2018-08-01 14:49:00 +0200 | [diff] [blame] | 300 | { .compatible = "samsung,exynos-dwmmc" }, |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 301 | { } |
| 302 | }; |
| 303 | |
| 304 | U_BOOT_DRIVER(exynos_dwmmc_drv) = { |
| 305 | .name = "exynos_dwmmc", |
| 306 | .id = UCLASS_MMC, |
| 307 | .of_match = exynos_dwmmc_ids, |
| 308 | .bind = exynos_dwmmc_bind, |
| 309 | .ops = &dm_dwmci_ops, |
| 310 | .probe = exynos_dwmmc_probe, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 311 | .priv_auto = sizeof(struct dwmci_exynos_priv_data), |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 312 | .plat_auto = sizeof(struct exynos_mmc_plat), |
Jaehoon Chung | 98d18e9 | 2016-06-30 20:57:37 +0900 | [diff] [blame] | 313 | }; |
| 314 | #endif |