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