diff options
-rw-r--r-- | drivers/mmc/host/Kconfig | 8 | ||||
-rw-r--r-- | drivers/mmc/host/Makefile | 3 | ||||
-rw-r--r-- | drivers/mmc/host/sdhci-xenon.c | 541 | ||||
-rw-r--r-- | drivers/mmc/host/sdhci-xenon.h | 60 |
4 files changed, 612 insertions, 0 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 7736a93386f7..9cee339f337c 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig | |||
@@ -853,3 +853,11 @@ config MMC_SDHCI_BRCMSTB | |||
853 | Broadcom STB SoCs. | 853 | Broadcom STB SoCs. |
854 | 854 | ||
855 | If unsure, say Y. | 855 | If unsure, say Y. |
856 | |||
857 | config MMC_SDHCI_XENON | ||
858 | tristate "Marvell Xenon eMMC/SD/SDIO SDHCI driver" | ||
859 | depends on MMC_SDHCI_PLTFM | ||
860 | help | ||
861 | This selects Marvell Xenon eMMC/SD/SDIO SDHCI. | ||
862 | If you have a controller with this interface, say Y or M here. | ||
863 | If unsure, say N. | ||
diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile index ec78296ef053..decb902dbe74 100644 --- a/drivers/mmc/host/Makefile +++ b/drivers/mmc/host/Makefile | |||
@@ -86,3 +86,6 @@ obj-$(CONFIG_MMC_SDHCI_BRCMSTB) += sdhci-brcmstb.o | |||
86 | ifeq ($(CONFIG_CB710_DEBUG),y) | 86 | ifeq ($(CONFIG_CB710_DEBUG),y) |
87 | CFLAGS-cb710-mmc += -DDEBUG | 87 | CFLAGS-cb710-mmc += -DDEBUG |
88 | endif | 88 | endif |
89 | |||
90 | obj-$(CONFIG_MMC_SDHCI_XENON) += sdhci-xenon-driver.o | ||
91 | sdhci-xenon-driver-y += sdhci-xenon.o | ||
diff --git a/drivers/mmc/host/sdhci-xenon.c b/drivers/mmc/host/sdhci-xenon.c new file mode 100644 index 000000000000..b3f2b018fe3d --- /dev/null +++ b/drivers/mmc/host/sdhci-xenon.c | |||
@@ -0,0 +1,541 @@ | |||
1 | /* | ||
2 | * Driver for Marvell Xenon SDHC as a platform device | ||
3 | * | ||
4 | * Copyright (C) 2016 Marvell, All Rights Reserved. | ||
5 | * | ||
6 | * Author: Hu Ziji <huziji@marvell.com> | ||
7 | * Date: 2016-8-24 | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU General Public License as | ||
11 | * published by the Free Software Foundation version 2. | ||
12 | * | ||
13 | * Inspired by Jisheng Zhang <jszhang@marvell.com> | ||
14 | * Special thanks to Video BG4 project team. | ||
15 | */ | ||
16 | |||
17 | #include <linux/delay.h> | ||
18 | #include <linux/ktime.h> | ||
19 | #include <linux/module.h> | ||
20 | #include <linux/of.h> | ||
21 | |||
22 | #include "sdhci-pltfm.h" | ||
23 | #include "sdhci-xenon.h" | ||
24 | |||
25 | static int xenon_enable_internal_clk(struct sdhci_host *host) | ||
26 | { | ||
27 | u32 reg; | ||
28 | ktime_t timeout; | ||
29 | |||
30 | reg = sdhci_readl(host, SDHCI_CLOCK_CONTROL); | ||
31 | reg |= SDHCI_CLOCK_INT_EN; | ||
32 | sdhci_writel(host, reg, SDHCI_CLOCK_CONTROL); | ||
33 | /* Wait max 20 ms */ | ||
34 | timeout = ktime_add_ms(ktime_get(), 20); | ||
35 | while (!((reg = sdhci_readw(host, SDHCI_CLOCK_CONTROL)) | ||
36 | & SDHCI_CLOCK_INT_STABLE)) { | ||
37 | if (ktime_after(ktime_get(), timeout)) { | ||
38 | dev_err(mmc_dev(host->mmc), "Internal clock never stabilised.\n"); | ||
39 | return -ETIMEDOUT; | ||
40 | } | ||
41 | usleep_range(900, 1100); | ||
42 | } | ||
43 | |||
44 | return 0; | ||
45 | } | ||
46 | |||
47 | /* Set SDCLK-off-while-idle */ | ||
48 | static void xenon_set_sdclk_off_idle(struct sdhci_host *host, | ||
49 | unsigned char sdhc_id, bool enable) | ||
50 | { | ||
51 | u32 reg; | ||
52 | u32 mask; | ||
53 | |||
54 | reg = sdhci_readl(host, XENON_SYS_OP_CTRL); | ||
55 | /* Get the bit shift basing on the SDHC index */ | ||
56 | mask = (0x1 << (XENON_SDCLK_IDLEOFF_ENABLE_SHIFT + sdhc_id)); | ||
57 | if (enable) | ||
58 | reg |= mask; | ||
59 | else | ||
60 | reg &= ~mask; | ||
61 | |||
62 | sdhci_writel(host, reg, XENON_SYS_OP_CTRL); | ||
63 | } | ||
64 | |||
65 | /* Enable/Disable the Auto Clock Gating function */ | ||
66 | static void xenon_set_acg(struct sdhci_host *host, bool enable) | ||
67 | { | ||
68 | u32 reg; | ||
69 | |||
70 | reg = sdhci_readl(host, XENON_SYS_OP_CTRL); | ||
71 | if (enable) | ||
72 | reg &= ~XENON_AUTO_CLKGATE_DISABLE_MASK; | ||
73 | else | ||
74 | reg |= XENON_AUTO_CLKGATE_DISABLE_MASK; | ||
75 | sdhci_writel(host, reg, XENON_SYS_OP_CTRL); | ||
76 | } | ||
77 | |||
78 | /* Enable this SDHC */ | ||
79 | static void xenon_enable_sdhc(struct sdhci_host *host, | ||
80 | unsigned char sdhc_id) | ||
81 | { | ||
82 | u32 reg; | ||
83 | |||
84 | reg = sdhci_readl(host, XENON_SYS_OP_CTRL); | ||
85 | reg |= (BIT(sdhc_id) << XENON_SLOT_ENABLE_SHIFT); | ||
86 | sdhci_writel(host, reg, XENON_SYS_OP_CTRL); | ||
87 | |||
88 | host->mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY; | ||
89 | /* | ||
90 | * Force to clear BUS_TEST to | ||
91 | * skip bus_test_pre and bus_test_post | ||
92 | */ | ||
93 | host->mmc->caps &= ~MMC_CAP_BUS_WIDTH_TEST; | ||
94 | } | ||
95 | |||
96 | /* Disable this SDHC */ | ||
97 | static void xenon_disable_sdhc(struct sdhci_host *host, | ||
98 | unsigned char sdhc_id) | ||
99 | { | ||
100 | u32 reg; | ||
101 | |||
102 | reg = sdhci_readl(host, XENON_SYS_OP_CTRL); | ||
103 | reg &= ~(BIT(sdhc_id) << XENON_SLOT_ENABLE_SHIFT); | ||
104 | sdhci_writel(host, reg, XENON_SYS_OP_CTRL); | ||
105 | } | ||
106 | |||
107 | /* Enable Parallel Transfer Mode */ | ||
108 | static void xenon_enable_sdhc_parallel_tran(struct sdhci_host *host, | ||
109 | unsigned char sdhc_id) | ||
110 | { | ||
111 | u32 reg; | ||
112 | |||
113 | reg = sdhci_readl(host, XENON_SYS_EXT_OP_CTRL); | ||
114 | reg |= BIT(sdhc_id); | ||
115 | sdhci_writel(host, reg, XENON_SYS_EXT_OP_CTRL); | ||
116 | } | ||
117 | |||
118 | /* Mask command conflict error */ | ||
119 | static void xenon_mask_cmd_conflict_err(struct sdhci_host *host) | ||
120 | { | ||
121 | u32 reg; | ||
122 | |||
123 | reg = sdhci_readl(host, XENON_SYS_EXT_OP_CTRL); | ||
124 | reg |= XENON_MASK_CMD_CONFLICT_ERR; | ||
125 | sdhci_writel(host, reg, XENON_SYS_EXT_OP_CTRL); | ||
126 | } | ||
127 | |||
128 | static void xenon_retune_setup(struct sdhci_host *host) | ||
129 | { | ||
130 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
131 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
132 | u32 reg; | ||
133 | |||
134 | /* Disable the Re-Tuning Request functionality */ | ||
135 | reg = sdhci_readl(host, XENON_SLOT_RETUNING_REQ_CTRL); | ||
136 | reg &= ~XENON_RETUNING_COMPATIBLE; | ||
137 | sdhci_writel(host, reg, XENON_SLOT_RETUNING_REQ_CTRL); | ||
138 | |||
139 | /* Disable the Re-tuning Interrupt */ | ||
140 | reg = sdhci_readl(host, SDHCI_SIGNAL_ENABLE); | ||
141 | reg &= ~SDHCI_INT_RETUNE; | ||
142 | sdhci_writel(host, reg, SDHCI_SIGNAL_ENABLE); | ||
143 | reg = sdhci_readl(host, SDHCI_INT_ENABLE); | ||
144 | reg &= ~SDHCI_INT_RETUNE; | ||
145 | sdhci_writel(host, reg, SDHCI_INT_ENABLE); | ||
146 | |||
147 | /* Force to use Tuning Mode 1 */ | ||
148 | host->tuning_mode = SDHCI_TUNING_MODE_1; | ||
149 | /* Set re-tuning period */ | ||
150 | host->tuning_count = 1 << (priv->tuning_count - 1); | ||
151 | } | ||
152 | |||
153 | /* | ||
154 | * Operations inside struct sdhci_ops | ||
155 | */ | ||
156 | /* Recover the Register Setting cleared during SOFTWARE_RESET_ALL */ | ||
157 | static void xenon_reset_exit(struct sdhci_host *host, | ||
158 | unsigned char sdhc_id, u8 mask) | ||
159 | { | ||
160 | /* Only SOFTWARE RESET ALL will clear the register setting */ | ||
161 | if (!(mask & SDHCI_RESET_ALL)) | ||
162 | return; | ||
163 | |||
164 | /* Disable tuning request and auto-retuning again */ | ||
165 | xenon_retune_setup(host); | ||
166 | |||
167 | xenon_set_acg(host, true); | ||
168 | |||
169 | xenon_set_sdclk_off_idle(host, sdhc_id, false); | ||
170 | |||
171 | xenon_mask_cmd_conflict_err(host); | ||
172 | } | ||
173 | |||
174 | static void xenon_reset(struct sdhci_host *host, u8 mask) | ||
175 | { | ||
176 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
177 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
178 | |||
179 | sdhci_reset(host, mask); | ||
180 | xenon_reset_exit(host, priv->sdhc_id, mask); | ||
181 | } | ||
182 | |||
183 | /* | ||
184 | * Xenon defines different values for HS200 and HS400 | ||
185 | * in Host_Control_2 | ||
186 | */ | ||
187 | static void xenon_set_uhs_signaling(struct sdhci_host *host, | ||
188 | unsigned int timing) | ||
189 | { | ||
190 | u16 ctrl_2; | ||
191 | |||
192 | ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2); | ||
193 | /* Select Bus Speed Mode for host */ | ||
194 | ctrl_2 &= ~SDHCI_CTRL_UHS_MASK; | ||
195 | if (timing == MMC_TIMING_MMC_HS200) | ||
196 | ctrl_2 |= XENON_CTRL_HS200; | ||
197 | else if (timing == MMC_TIMING_UHS_SDR104) | ||
198 | ctrl_2 |= SDHCI_CTRL_UHS_SDR104; | ||
199 | else if (timing == MMC_TIMING_UHS_SDR12) | ||
200 | ctrl_2 |= SDHCI_CTRL_UHS_SDR12; | ||
201 | else if (timing == MMC_TIMING_UHS_SDR25) | ||
202 | ctrl_2 |= SDHCI_CTRL_UHS_SDR25; | ||
203 | else if (timing == MMC_TIMING_UHS_SDR50) | ||
204 | ctrl_2 |= SDHCI_CTRL_UHS_SDR50; | ||
205 | else if ((timing == MMC_TIMING_UHS_DDR50) || | ||
206 | (timing == MMC_TIMING_MMC_DDR52)) | ||
207 | ctrl_2 |= SDHCI_CTRL_UHS_DDR50; | ||
208 | else if (timing == MMC_TIMING_MMC_HS400) | ||
209 | ctrl_2 |= XENON_CTRL_HS400; | ||
210 | sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2); | ||
211 | } | ||
212 | |||
213 | static const struct sdhci_ops sdhci_xenon_ops = { | ||
214 | .set_clock = sdhci_set_clock, | ||
215 | .set_bus_width = sdhci_set_bus_width, | ||
216 | .reset = xenon_reset, | ||
217 | .set_uhs_signaling = xenon_set_uhs_signaling, | ||
218 | .get_max_clock = sdhci_pltfm_clk_get_max_clock, | ||
219 | }; | ||
220 | |||
221 | static const struct sdhci_pltfm_data sdhci_xenon_pdata = { | ||
222 | .ops = &sdhci_xenon_ops, | ||
223 | .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC | | ||
224 | SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER | | ||
225 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN, | ||
226 | }; | ||
227 | |||
228 | /* | ||
229 | * Xenon Specific Operations in mmc_host_ops | ||
230 | */ | ||
231 | static void xenon_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | ||
232 | { | ||
233 | struct sdhci_host *host = mmc_priv(mmc); | ||
234 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
235 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
236 | u32 reg; | ||
237 | |||
238 | /* | ||
239 | * HS400/HS200/eMMC HS doesn't have Preset Value register. | ||
240 | * However, sdhci_set_ios will read HS400/HS200 Preset register. | ||
241 | * Disable Preset Value register for HS400/HS200. | ||
242 | * eMMC HS with preset_enabled set will trigger a bug in | ||
243 | * get_preset_value(). | ||
244 | */ | ||
245 | if ((ios->timing == MMC_TIMING_MMC_HS400) || | ||
246 | (ios->timing == MMC_TIMING_MMC_HS200) || | ||
247 | (ios->timing == MMC_TIMING_MMC_HS)) { | ||
248 | host->preset_enabled = false; | ||
249 | host->quirks2 |= SDHCI_QUIRK2_PRESET_VALUE_BROKEN; | ||
250 | host->flags &= ~SDHCI_PV_ENABLED; | ||
251 | |||
252 | reg = sdhci_readw(host, SDHCI_HOST_CONTROL2); | ||
253 | reg &= ~SDHCI_CTRL_PRESET_VAL_ENABLE; | ||
254 | sdhci_writew(host, reg, SDHCI_HOST_CONTROL2); | ||
255 | } else { | ||
256 | host->quirks2 &= ~SDHCI_QUIRK2_PRESET_VALUE_BROKEN; | ||
257 | } | ||
258 | |||
259 | sdhci_set_ios(mmc, ios); | ||
260 | |||
261 | if (host->clock > XENON_DEFAULT_SDCLK_FREQ) | ||
262 | xenon_set_sdclk_off_idle(host, priv->sdhc_id, true); | ||
263 | } | ||
264 | |||
265 | static int xenon_start_signal_voltage_switch(struct mmc_host *mmc, | ||
266 | struct mmc_ios *ios) | ||
267 | { | ||
268 | struct sdhci_host *host = mmc_priv(mmc); | ||
269 | |||
270 | /* | ||
271 | * Before SD/SDIO set signal voltage, SD bus clock should be | ||
272 | * disabled. However, sdhci_set_clock will also disable the Internal | ||
273 | * clock in mmc_set_signal_voltage(). | ||
274 | * If Internal clock is disabled, the 3.3V/1.8V bit can not be updated. | ||
275 | * Thus here manually enable internal clock. | ||
276 | * | ||
277 | * After switch completes, it is unnecessary to disable internal clock, | ||
278 | * since keeping internal clock active obeys SD spec. | ||
279 | */ | ||
280 | xenon_enable_internal_clk(host); | ||
281 | |||
282 | /* | ||
283 | * If Vqmmc is fixed on platform, vqmmc regulator should be unavailable. | ||
284 | * Thus SDHCI_CTRL_VDD_180 bit might not work then. | ||
285 | * Skip the standard voltage switch to avoid any issue. | ||
286 | */ | ||
287 | if (PTR_ERR(mmc->supply.vqmmc) == -ENODEV) | ||
288 | return 0; | ||
289 | |||
290 | return sdhci_start_signal_voltage_switch(mmc, ios); | ||
291 | } | ||
292 | |||
293 | /* | ||
294 | * Update card type. | ||
295 | * priv->init_card_type will be used in PHY timing adjustment. | ||
296 | */ | ||
297 | static void xenon_init_card(struct mmc_host *mmc, struct mmc_card *card) | ||
298 | { | ||
299 | struct sdhci_host *host = mmc_priv(mmc); | ||
300 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
301 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
302 | |||
303 | /* Update card type*/ | ||
304 | priv->init_card_type = card->type; | ||
305 | } | ||
306 | |||
307 | static int xenon_execute_tuning(struct mmc_host *mmc, u32 opcode) | ||
308 | { | ||
309 | struct sdhci_host *host = mmc_priv(mmc); | ||
310 | |||
311 | if (host->timing == MMC_TIMING_UHS_DDR50) | ||
312 | return 0; | ||
313 | |||
314 | /* | ||
315 | * Currently force Xenon driver back to support mode 1 only, | ||
316 | * even though Xenon might claim to support mode 2 or mode 3. | ||
317 | * It requires more time to test mode 2/mode 3 on more platforms. | ||
318 | */ | ||
319 | if (host->tuning_mode != SDHCI_TUNING_MODE_1) | ||
320 | xenon_retune_setup(host); | ||
321 | |||
322 | return sdhci_execute_tuning(mmc, opcode); | ||
323 | } | ||
324 | |||
325 | static void xenon_enable_sdio_irq(struct mmc_host *mmc, int enable) | ||
326 | { | ||
327 | struct sdhci_host *host = mmc_priv(mmc); | ||
328 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
329 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
330 | u32 reg; | ||
331 | u8 sdhc_id = priv->sdhc_id; | ||
332 | |||
333 | sdhci_enable_sdio_irq(mmc, enable); | ||
334 | |||
335 | if (enable) { | ||
336 | /* | ||
337 | * Set SDIO Card Inserted indication | ||
338 | * to enable detecting SDIO async irq. | ||
339 | */ | ||
340 | reg = sdhci_readl(host, XENON_SYS_CFG_INFO); | ||
341 | reg |= (1 << (sdhc_id + XENON_SLOT_TYPE_SDIO_SHIFT)); | ||
342 | sdhci_writel(host, reg, XENON_SYS_CFG_INFO); | ||
343 | } else { | ||
344 | /* Clear SDIO Card Inserted indication */ | ||
345 | reg = sdhci_readl(host, XENON_SYS_CFG_INFO); | ||
346 | reg &= ~(1 << (sdhc_id + XENON_SLOT_TYPE_SDIO_SHIFT)); | ||
347 | sdhci_writel(host, reg, XENON_SYS_CFG_INFO); | ||
348 | } | ||
349 | } | ||
350 | |||
351 | static void xenon_replace_mmc_host_ops(struct sdhci_host *host) | ||
352 | { | ||
353 | host->mmc_host_ops.set_ios = xenon_set_ios; | ||
354 | host->mmc_host_ops.start_signal_voltage_switch = | ||
355 | xenon_start_signal_voltage_switch; | ||
356 | host->mmc_host_ops.init_card = xenon_init_card; | ||
357 | host->mmc_host_ops.execute_tuning = xenon_execute_tuning; | ||
358 | host->mmc_host_ops.enable_sdio_irq = xenon_enable_sdio_irq; | ||
359 | } | ||
360 | |||
361 | /* | ||
362 | * Parse Xenon specific DT properties: | ||
363 | * sdhc-id: the index of current SDHC. | ||
364 | * Refer to XENON_SYS_CFG_INFO register | ||
365 | * tun-count: the interval between re-tuning | ||
366 | */ | ||
367 | static int xenon_probe_dt(struct platform_device *pdev) | ||
368 | { | ||
369 | struct device_node *np = pdev->dev.of_node; | ||
370 | struct sdhci_host *host = platform_get_drvdata(pdev); | ||
371 | struct mmc_host *mmc = host->mmc; | ||
372 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
373 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
374 | u32 sdhc_id, nr_sdhc; | ||
375 | u32 tuning_count; | ||
376 | |||
377 | /* Disable HS200 on Armada AP806 */ | ||
378 | if (of_device_is_compatible(np, "marvell,armada-ap806-sdhci")) | ||
379 | host->quirks2 |= SDHCI_QUIRK2_BROKEN_HS200; | ||
380 | |||
381 | sdhc_id = 0x0; | ||
382 | if (!of_property_read_u32(np, "marvell,xenon-sdhc-id", &sdhc_id)) { | ||
383 | nr_sdhc = sdhci_readl(host, XENON_SYS_CFG_INFO); | ||
384 | nr_sdhc &= XENON_NR_SUPPORTED_SLOT_MASK; | ||
385 | if (unlikely(sdhc_id > nr_sdhc)) { | ||
386 | dev_err(mmc_dev(mmc), "SDHC Index %d exceeds Number of SDHCs %d\n", | ||
387 | sdhc_id, nr_sdhc); | ||
388 | return -EINVAL; | ||
389 | } | ||
390 | } | ||
391 | priv->sdhc_id = sdhc_id; | ||
392 | |||
393 | tuning_count = XENON_DEF_TUNING_COUNT; | ||
394 | if (!of_property_read_u32(np, "marvell,xenon-tun-count", | ||
395 | &tuning_count)) { | ||
396 | if (unlikely(tuning_count >= XENON_TMR_RETUN_NO_PRESENT)) { | ||
397 | dev_err(mmc_dev(mmc), "Wrong Re-tuning Count. Set default value %d\n", | ||
398 | XENON_DEF_TUNING_COUNT); | ||
399 | tuning_count = XENON_DEF_TUNING_COUNT; | ||
400 | } | ||
401 | } | ||
402 | priv->tuning_count = tuning_count; | ||
403 | |||
404 | return 0; | ||
405 | } | ||
406 | |||
407 | static int xenon_sdhc_prepare(struct sdhci_host *host) | ||
408 | { | ||
409 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
410 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
411 | u8 sdhc_id = priv->sdhc_id; | ||
412 | |||
413 | /* Enable SDHC */ | ||
414 | xenon_enable_sdhc(host, sdhc_id); | ||
415 | |||
416 | /* Enable ACG */ | ||
417 | xenon_set_acg(host, true); | ||
418 | |||
419 | /* Enable Parallel Transfer Mode */ | ||
420 | xenon_enable_sdhc_parallel_tran(host, sdhc_id); | ||
421 | |||
422 | /* Disable SDCLK-Off-While-Idle before card init */ | ||
423 | xenon_set_sdclk_off_idle(host, sdhc_id, false); | ||
424 | |||
425 | xenon_mask_cmd_conflict_err(host); | ||
426 | |||
427 | return 0; | ||
428 | } | ||
429 | |||
430 | static void xenon_sdhc_unprepare(struct sdhci_host *host) | ||
431 | { | ||
432 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
433 | struct xenon_priv *priv = sdhci_pltfm_priv(pltfm_host); | ||
434 | u8 sdhc_id = priv->sdhc_id; | ||
435 | |||
436 | /* disable SDHC */ | ||
437 | xenon_disable_sdhc(host, sdhc_id); | ||
438 | } | ||
439 | |||
440 | static int xenon_probe(struct platform_device *pdev) | ||
441 | { | ||
442 | struct sdhci_pltfm_host *pltfm_host; | ||
443 | struct sdhci_host *host; | ||
444 | struct xenon_priv *priv; | ||
445 | int err; | ||
446 | |||
447 | host = sdhci_pltfm_init(pdev, &sdhci_xenon_pdata, | ||
448 | sizeof(struct xenon_priv)); | ||
449 | if (IS_ERR(host)) | ||
450 | return PTR_ERR(host); | ||
451 | |||
452 | pltfm_host = sdhci_priv(host); | ||
453 | priv = sdhci_pltfm_priv(pltfm_host); | ||
454 | |||
455 | /* | ||
456 | * Link Xenon specific mmc_host_ops function, | ||
457 | * to replace standard ones in sdhci_ops. | ||
458 | */ | ||
459 | xenon_replace_mmc_host_ops(host); | ||
460 | |||
461 | pltfm_host->clk = devm_clk_get(&pdev->dev, "core"); | ||
462 | if (IS_ERR(pltfm_host->clk)) { | ||
463 | err = PTR_ERR(pltfm_host->clk); | ||
464 | dev_err(&pdev->dev, "Failed to setup input clk: %d\n", err); | ||
465 | goto free_pltfm; | ||
466 | } | ||
467 | err = clk_prepare_enable(pltfm_host->clk); | ||
468 | if (err) | ||
469 | goto free_pltfm; | ||
470 | |||
471 | err = mmc_of_parse(host->mmc); | ||
472 | if (err) | ||
473 | goto err_clk; | ||
474 | |||
475 | sdhci_get_of_property(pdev); | ||
476 | |||
477 | xenon_set_acg(host, false); | ||
478 | |||
479 | /* Xenon specific dt parse */ | ||
480 | err = xenon_probe_dt(pdev); | ||
481 | if (err) | ||
482 | goto err_clk; | ||
483 | |||
484 | err = xenon_sdhc_prepare(host); | ||
485 | if (err) | ||
486 | goto err_clk; | ||
487 | |||
488 | err = sdhci_add_host(host); | ||
489 | if (err) | ||
490 | goto remove_sdhc; | ||
491 | |||
492 | return 0; | ||
493 | |||
494 | remove_sdhc: | ||
495 | xenon_sdhc_unprepare(host); | ||
496 | err_clk: | ||
497 | clk_disable_unprepare(pltfm_host->clk); | ||
498 | free_pltfm: | ||
499 | sdhci_pltfm_free(pdev); | ||
500 | return err; | ||
501 | } | ||
502 | |||
503 | static int xenon_remove(struct platform_device *pdev) | ||
504 | { | ||
505 | struct sdhci_host *host = platform_get_drvdata(pdev); | ||
506 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); | ||
507 | |||
508 | xenon_sdhc_unprepare(host); | ||
509 | |||
510 | sdhci_remove_host(host, 0); | ||
511 | |||
512 | clk_disable_unprepare(pltfm_host->clk); | ||
513 | |||
514 | sdhci_pltfm_free(pdev); | ||
515 | |||
516 | return 0; | ||
517 | } | ||
518 | |||
519 | static const struct of_device_id sdhci_xenon_dt_ids[] = { | ||
520 | { .compatible = "marvell,armada-ap806-sdhci",}, | ||
521 | { .compatible = "marvell,armada-cp110-sdhci",}, | ||
522 | { .compatible = "marvell,armada-3700-sdhci",}, | ||
523 | {} | ||
524 | }; | ||
525 | MODULE_DEVICE_TABLE(of, sdhci_xenon_dt_ids); | ||
526 | |||
527 | static struct platform_driver sdhci_xenon_driver = { | ||
528 | .driver = { | ||
529 | .name = "xenon-sdhci", | ||
530 | .of_match_table = sdhci_xenon_dt_ids, | ||
531 | .pm = &sdhci_pltfm_pmops, | ||
532 | }, | ||
533 | .probe = xenon_probe, | ||
534 | .remove = xenon_remove, | ||
535 | }; | ||
536 | |||
537 | module_platform_driver(sdhci_xenon_driver); | ||
538 | |||
539 | MODULE_DESCRIPTION("SDHCI platform driver for Marvell Xenon SDHC"); | ||
540 | MODULE_AUTHOR("Hu Ziji <huziji@marvell.com>"); | ||
541 | MODULE_LICENSE("GPL v2"); | ||
diff --git a/drivers/mmc/host/sdhci-xenon.h b/drivers/mmc/host/sdhci-xenon.h new file mode 100644 index 000000000000..813585b45e8d --- /dev/null +++ b/drivers/mmc/host/sdhci-xenon.h | |||
@@ -0,0 +1,60 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2016 Marvell, All Rights Reserved. | ||
3 | * | ||
4 | * Author: Hu Ziji <huziji@marvell.com> | ||
5 | * Date: 2016-8-24 | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License as | ||
9 | * published by the Free Software Foundation version 2. | ||
10 | */ | ||
11 | #ifndef SDHCI_XENON_H_ | ||
12 | #define SDHCI_XENON_H_ | ||
13 | |||
14 | /* Register Offset of Xenon SDHC self-defined register */ | ||
15 | #define XENON_SYS_CFG_INFO 0x0104 | ||
16 | #define XENON_SLOT_TYPE_SDIO_SHIFT 24 | ||
17 | #define XENON_NR_SUPPORTED_SLOT_MASK 0x7 | ||
18 | |||
19 | #define XENON_SYS_OP_CTRL 0x0108 | ||
20 | #define XENON_AUTO_CLKGATE_DISABLE_MASK BIT(20) | ||
21 | #define XENON_SDCLK_IDLEOFF_ENABLE_SHIFT 8 | ||
22 | #define XENON_SLOT_ENABLE_SHIFT 0 | ||
23 | |||
24 | #define XENON_SYS_EXT_OP_CTRL 0x010C | ||
25 | #define XENON_MASK_CMD_CONFLICT_ERR BIT(8) | ||
26 | |||
27 | #define XENON_SLOT_RETUNING_REQ_CTRL 0x0144 | ||
28 | /* retuning compatible */ | ||
29 | #define XENON_RETUNING_COMPATIBLE 0x1 | ||
30 | |||
31 | /* Tuning Parameter */ | ||
32 | #define XENON_TMR_RETUN_NO_PRESENT 0xF | ||
33 | #define XENON_DEF_TUNING_COUNT 0x9 | ||
34 | |||
35 | #define XENON_DEFAULT_SDCLK_FREQ 400000 | ||
36 | |||
37 | /* Xenon specific Mode Select value */ | ||
38 | #define XENON_CTRL_HS200 0x5 | ||
39 | #define XENON_CTRL_HS400 0x6 | ||
40 | |||
41 | struct xenon_priv { | ||
42 | unsigned char tuning_count; | ||
43 | /* idx of SDHC */ | ||
44 | u8 sdhc_id; | ||
45 | |||
46 | /* | ||
47 | * eMMC/SD/SDIO require different register settings. | ||
48 | * Xenon driver has to recognize card type | ||
49 | * before mmc_host->card is not available. | ||
50 | * This field records the card type during init. | ||
51 | * It is updated in xenon_init_card(). | ||
52 | * | ||
53 | * It is only valid during initialization after it is updated. | ||
54 | * Do not access this variable in normal transfers after | ||
55 | * initialization completes. | ||
56 | */ | ||
57 | unsigned int init_card_type; | ||
58 | }; | ||
59 | |||
60 | #endif | ||