mmc: sdhci-sprd: add SDHCI_QUIRK2_PRESET_VALUE_BROKEN
[linux-2.6-block.git] / drivers / mmc / host / sdhci-sprd.c
CommitLineData
fb8bd90f
CZ
1// SPDX-License-Identifier: GPL-2.0
2//
3// Secure Digital Host Controller
4//
5// Copyright (C) 2018 Spreadtrum, Inc.
6// Author: Chunyan Zhang <chunyan.zhang@unisoc.com>
7
8#include <linux/delay.h>
9#include <linux/dma-mapping.h>
10#include <linux/highmem.h>
11#include <linux/module.h>
12#include <linux/of.h>
13#include <linux/of_device.h>
14#include <linux/of_gpio.h>
29ca763f 15#include <linux/pinctrl/consumer.h>
fb8bd90f
CZ
16#include <linux/platform_device.h>
17#include <linux/pm_runtime.h>
18#include <linux/regulator/consumer.h>
19#include <linux/slab.h>
20
21#include "sdhci-pltfm.h"
22
23/* SDHCI_ARGUMENT2 register high 16bit */
24#define SDHCI_SPRD_ARG2_STUFF GENMASK(31, 16)
25
87a395c2
BW
26#define SDHCI_SPRD_REG_32_DLL_CFG 0x200
27#define SDHCI_SPRD_DLL_ALL_CPST_EN (BIT(18) | BIT(24) | BIT(25) | BIT(26) | BIT(27))
28#define SDHCI_SPRD_DLL_EN BIT(21)
29#define SDHCI_SPRD_DLL_SEARCH_MODE BIT(16)
30#define SDHCI_SPRD_DLL_INIT_COUNT 0xc00
31#define SDHCI_SPRD_DLL_PHASE_INTERNAL 0x3
32
5f2f4e0d
BW
33#define SDHCI_SPRD_REG_32_DLL_DLY 0x204
34
fb8bd90f
CZ
35#define SDHCI_SPRD_REG_32_DLL_DLY_OFFSET 0x208
36#define SDHCIBSPRD_IT_WR_DLY_INV BIT(5)
37#define SDHCI_SPRD_BIT_CMD_DLY_INV BIT(13)
38#define SDHCI_SPRD_BIT_POSRD_DLY_INV BIT(21)
39#define SDHCI_SPRD_BIT_NEGRD_DLY_INV BIT(29)
40
41#define SDHCI_SPRD_REG_32_BUSY_POSI 0x250
42#define SDHCI_SPRD_BIT_OUTR_CLK_AUTO_EN BIT(25)
43#define SDHCI_SPRD_BIT_INNR_CLK_AUTO_EN BIT(24)
44
45#define SDHCI_SPRD_REG_DEBOUNCE 0x28C
46#define SDHCI_SPRD_BIT_DLL_BAK BIT(0)
47#define SDHCI_SPRD_BIT_DLL_VAL BIT(1)
48
49#define SDHCI_SPRD_INT_SIGNAL_MASK 0x1B7F410B
50
51/* SDHCI_HOST_CONTROL2 */
52#define SDHCI_SPRD_CTRL_HS200 0x0005
53#define SDHCI_SPRD_CTRL_HS400 0x0006
494c11e1 54#define SDHCI_SPRD_CTRL_HS400ES 0x0007
fb8bd90f
CZ
55
56/*
57 * According to the standard specification, BIT(3) of SDHCI_SOFTWARE_RESET is
58 * reserved, and only used on Spreadtrum's design, the hardware cannot work
59 * if this bit is cleared.
60 * 1 : normal work
61 * 0 : hardware reset
62 */
63#define SDHCI_HW_RESET_CARD BIT(3)
64
65#define SDHCI_SPRD_MAX_CUR 0xFFFFFF
66#define SDHCI_SPRD_CLK_MAX_DIV 1023
67
68#define SDHCI_SPRD_CLK_DEF_RATE 26000000
87a395c2 69#define SDHCI_SPRD_PHY_DLL_CLK 52000000
fb8bd90f
CZ
70
71struct sdhci_sprd_host {
72 u32 version;
73 struct clk *clk_sdio;
74 struct clk *clk_enable;
ebd88a38 75 struct clk *clk_2x_enable;
29ca763f
BW
76 struct pinctrl *pinctrl;
77 struct pinctrl_state *pins_uhs;
78 struct pinctrl_state *pins_default;
fb8bd90f
CZ
79 u32 base_rate;
80 int flags; /* backup of host attribute */
5f2f4e0d
BW
81 u32 phy_delay[MMC_TIMING_MMC_HS400 + 2];
82};
83
84struct sdhci_sprd_phy_cfg {
85 const char *property;
86 u8 timing;
87};
88
89static const struct sdhci_sprd_phy_cfg sdhci_sprd_phy_cfgs[] = {
90 { "sprd,phy-delay-legacy", MMC_TIMING_LEGACY, },
91 { "sprd,phy-delay-sd-highspeed", MMC_TIMING_SD_HS, },
92 { "sprd,phy-delay-sd-uhs-sdr50", MMC_TIMING_UHS_SDR50, },
93 { "sprd,phy-delay-sd-uhs-sdr104", MMC_TIMING_UHS_SDR104, },
94 { "sprd,phy-delay-mmc-highspeed", MMC_TIMING_MMC_HS, },
95 { "sprd,phy-delay-mmc-ddr52", MMC_TIMING_MMC_DDR52, },
96 { "sprd,phy-delay-mmc-hs200", MMC_TIMING_MMC_HS200, },
97 { "sprd,phy-delay-mmc-hs400", MMC_TIMING_MMC_HS400, },
98 { "sprd,phy-delay-mmc-hs400es", MMC_TIMING_MMC_HS400 + 1, },
fb8bd90f
CZ
99};
100
101#define TO_SPRD_HOST(host) sdhci_pltfm_priv(sdhci_priv(host))
102
103static void sdhci_sprd_init_config(struct sdhci_host *host)
104{
105 u16 val;
106
107 /* set dll backup mode */
108 val = sdhci_readl(host, SDHCI_SPRD_REG_DEBOUNCE);
109 val |= SDHCI_SPRD_BIT_DLL_BAK | SDHCI_SPRD_BIT_DLL_VAL;
110 sdhci_writel(host, val, SDHCI_SPRD_REG_DEBOUNCE);
111}
112
113static inline u32 sdhci_sprd_readl(struct sdhci_host *host, int reg)
114{
115 if (unlikely(reg == SDHCI_MAX_CURRENT))
116 return SDHCI_SPRD_MAX_CUR;
117
118 return readl_relaxed(host->ioaddr + reg);
119}
120
121static inline void sdhci_sprd_writel(struct sdhci_host *host, u32 val, int reg)
122{
123 /* SDHCI_MAX_CURRENT is reserved on Spreadtrum's platform */
124 if (unlikely(reg == SDHCI_MAX_CURRENT))
125 return;
126
127 if (unlikely(reg == SDHCI_SIGNAL_ENABLE || reg == SDHCI_INT_ENABLE))
128 val = val & SDHCI_SPRD_INT_SIGNAL_MASK;
129
130 writel_relaxed(val, host->ioaddr + reg);
131}
132
133static inline void sdhci_sprd_writew(struct sdhci_host *host, u16 val, int reg)
134{
135 /* SDHCI_BLOCK_COUNT is Read Only on Spreadtrum's platform */
136 if (unlikely(reg == SDHCI_BLOCK_COUNT))
137 return;
138
139 writew_relaxed(val, host->ioaddr + reg);
140}
141
142static inline void sdhci_sprd_writeb(struct sdhci_host *host, u8 val, int reg)
143{
144 /*
145 * Since BIT(3) of SDHCI_SOFTWARE_RESET is reserved according to the
146 * standard specification, sdhci_reset() write this register directly
147 * without checking other reserved bits, that will clear BIT(3) which
148 * is defined as hardware reset on Spreadtrum's platform and clearing
149 * it by mistake will lead the card not work. So here we need to work
150 * around it.
151 */
152 if (unlikely(reg == SDHCI_SOFTWARE_RESET)) {
153 if (readb_relaxed(host->ioaddr + reg) & SDHCI_HW_RESET_CARD)
154 val |= SDHCI_HW_RESET_CARD;
155 }
156
157 writeb_relaxed(val, host->ioaddr + reg);
158}
159
160static inline void sdhci_sprd_sd_clk_off(struct sdhci_host *host)
161{
162 u16 ctrl = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
163
164 ctrl &= ~SDHCI_CLOCK_CARD_EN;
165 sdhci_writew(host, ctrl, SDHCI_CLOCK_CONTROL);
166}
167
494c11e1
BW
168static inline void sdhci_sprd_sd_clk_on(struct sdhci_host *host)
169{
170 u16 ctrl;
171
172 ctrl = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
173 ctrl |= SDHCI_CLOCK_CARD_EN;
174 sdhci_writew(host, ctrl, SDHCI_CLOCK_CONTROL);
175}
176
fb8bd90f
CZ
177static inline void
178sdhci_sprd_set_dll_invert(struct sdhci_host *host, u32 mask, bool en)
179{
180 u32 dll_dly_offset;
181
182 dll_dly_offset = sdhci_readl(host, SDHCI_SPRD_REG_32_DLL_DLY_OFFSET);
183 if (en)
184 dll_dly_offset |= mask;
185 else
186 dll_dly_offset &= ~mask;
187 sdhci_writel(host, dll_dly_offset, SDHCI_SPRD_REG_32_DLL_DLY_OFFSET);
188}
189
190static inline u32 sdhci_sprd_calc_div(u32 base_clk, u32 clk)
191{
192 u32 div;
193
194 /* select 2x clock source */
195 if (base_clk <= clk * 2)
196 return 0;
197
198 div = (u32) (base_clk / (clk * 2));
199
200 if ((base_clk / div) > (clk * 2))
201 div++;
202
203 if (div > SDHCI_SPRD_CLK_MAX_DIV)
204 div = SDHCI_SPRD_CLK_MAX_DIV;
205
206 if (div % 2)
207 div = (div + 1) / 2;
208 else
209 div = div / 2;
210
211 return div;
212}
213
214static inline void _sdhci_sprd_set_clock(struct sdhci_host *host,
215 unsigned int clk)
216{
217 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
218 u32 div, val, mask;
219
efdaf275 220 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
fb8bd90f 221
efdaf275
CZ
222 div = sdhci_sprd_calc_div(sprd_host->base_rate, clk);
223 div = ((div & 0x300) >> 2) | ((div & 0xFF) << 8);
224 sdhci_enable_clk(host, div);
fb8bd90f
CZ
225
226 /* enable auto gate sdhc_enable_auto_gate */
227 val = sdhci_readl(host, SDHCI_SPRD_REG_32_BUSY_POSI);
228 mask = SDHCI_SPRD_BIT_OUTR_CLK_AUTO_EN |
229 SDHCI_SPRD_BIT_INNR_CLK_AUTO_EN;
230 if (mask != (val & mask)) {
231 val |= mask;
232 sdhci_writel(host, val, SDHCI_SPRD_REG_32_BUSY_POSI);
233 }
234}
235
87a395c2
BW
236static void sdhci_sprd_enable_phy_dll(struct sdhci_host *host)
237{
238 u32 tmp;
239
240 tmp = sdhci_readl(host, SDHCI_SPRD_REG_32_DLL_CFG);
241 tmp &= ~(SDHCI_SPRD_DLL_EN | SDHCI_SPRD_DLL_ALL_CPST_EN);
242 sdhci_writel(host, tmp, SDHCI_SPRD_REG_32_DLL_CFG);
243 /* wait 1ms */
244 usleep_range(1000, 1250);
245
246 tmp = sdhci_readl(host, SDHCI_SPRD_REG_32_DLL_CFG);
247 tmp |= SDHCI_SPRD_DLL_ALL_CPST_EN | SDHCI_SPRD_DLL_SEARCH_MODE |
248 SDHCI_SPRD_DLL_INIT_COUNT | SDHCI_SPRD_DLL_PHASE_INTERNAL;
249 sdhci_writel(host, tmp, SDHCI_SPRD_REG_32_DLL_CFG);
250 /* wait 1ms */
251 usleep_range(1000, 1250);
252
253 tmp = sdhci_readl(host, SDHCI_SPRD_REG_32_DLL_CFG);
254 tmp |= SDHCI_SPRD_DLL_EN;
255 sdhci_writel(host, tmp, SDHCI_SPRD_REG_32_DLL_CFG);
256 /* wait 1ms */
257 usleep_range(1000, 1250);
258}
259
fb8bd90f
CZ
260static void sdhci_sprd_set_clock(struct sdhci_host *host, unsigned int clock)
261{
87a395c2 262 bool en = false, clk_changed = false;
fb8bd90f
CZ
263
264 if (clock == 0) {
265 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
266 } else if (clock != host->clock) {
267 sdhci_sprd_sd_clk_off(host);
268 _sdhci_sprd_set_clock(host, clock);
269
270 if (clock <= 400000)
271 en = true;
272 sdhci_sprd_set_dll_invert(host, SDHCI_SPRD_BIT_CMD_DLY_INV |
273 SDHCI_SPRD_BIT_POSRD_DLY_INV, en);
87a395c2 274 clk_changed = true;
fb8bd90f
CZ
275 } else {
276 _sdhci_sprd_set_clock(host, clock);
277 }
87a395c2
BW
278
279 /*
280 * According to the Spreadtrum SD host specification, when we changed
281 * the clock to be more than 52M, we should enable the PHY DLL which
282 * is used to track the clock frequency to make the clock work more
283 * stable. Otherwise deviation may occur of the higher clock.
284 */
285 if (clk_changed && clock > SDHCI_SPRD_PHY_DLL_CLK)
286 sdhci_sprd_enable_phy_dll(host);
fb8bd90f
CZ
287}
288
289static unsigned int sdhci_sprd_get_max_clock(struct sdhci_host *host)
290{
291 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
292
293 return clk_round_rate(sprd_host->clk_sdio, ULONG_MAX);
294}
295
296static unsigned int sdhci_sprd_get_min_clock(struct sdhci_host *host)
297{
298 return 400000;
299}
300
301static void sdhci_sprd_set_uhs_signaling(struct sdhci_host *host,
302 unsigned int timing)
303{
5f2f4e0d
BW
304 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
305 struct mmc_host *mmc = host->mmc;
306 u32 *p = sprd_host->phy_delay;
fb8bd90f
CZ
307 u16 ctrl_2;
308
309 if (timing == host->timing)
310 return;
311
312 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
313 /* Select Bus Speed Mode for host */
314 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
315 switch (timing) {
316 case MMC_TIMING_UHS_SDR12:
317 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
318 break;
319 case MMC_TIMING_MMC_HS:
320 case MMC_TIMING_SD_HS:
321 case MMC_TIMING_UHS_SDR25:
322 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
323 break;
324 case MMC_TIMING_UHS_SDR50:
325 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
326 break;
327 case MMC_TIMING_UHS_SDR104:
328 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
329 break;
330 case MMC_TIMING_UHS_DDR50:
331 case MMC_TIMING_MMC_DDR52:
332 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
333 break;
334 case MMC_TIMING_MMC_HS200:
335 ctrl_2 |= SDHCI_SPRD_CTRL_HS200;
336 break;
337 case MMC_TIMING_MMC_HS400:
338 ctrl_2 |= SDHCI_SPRD_CTRL_HS400;
339 break;
340 default:
341 break;
342 }
343
344 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
5f2f4e0d
BW
345
346 if (!mmc->ios.enhanced_strobe)
347 sdhci_writel(host, p[timing], SDHCI_SPRD_REG_32_DLL_DLY);
fb8bd90f
CZ
348}
349
350static void sdhci_sprd_hw_reset(struct sdhci_host *host)
351{
352 int val;
353
354 /*
355 * Note: don't use sdhci_writeb() API here since it is redirected to
356 * sdhci_sprd_writeb() in which we have a workaround for
357 * SDHCI_SOFTWARE_RESET which would make bit SDHCI_HW_RESET_CARD can
358 * not be cleared.
359 */
360 val = readb_relaxed(host->ioaddr + SDHCI_SOFTWARE_RESET);
361 val &= ~SDHCI_HW_RESET_CARD;
362 writeb_relaxed(val, host->ioaddr + SDHCI_SOFTWARE_RESET);
363 /* wait for 10 us */
364 usleep_range(10, 20);
365
366 val |= SDHCI_HW_RESET_CARD;
367 writeb_relaxed(val, host->ioaddr + SDHCI_SOFTWARE_RESET);
368 usleep_range(300, 500);
369}
370
7486831d
BW
371static unsigned int sdhci_sprd_get_max_timeout_count(struct sdhci_host *host)
372{
373 /* The Spredtrum controller actual maximum timeout count is 1 << 31 */
374 return 1 << 31;
375}
376
4eae8cbd
CZ
377static unsigned int sdhci_sprd_get_ro(struct sdhci_host *host)
378{
379 return 0;
380}
381
fb8bd90f
CZ
382static struct sdhci_ops sdhci_sprd_ops = {
383 .read_l = sdhci_sprd_readl,
384 .write_l = sdhci_sprd_writel,
385 .write_b = sdhci_sprd_writeb,
386 .set_clock = sdhci_sprd_set_clock,
387 .get_max_clock = sdhci_sprd_get_max_clock,
388 .get_min_clock = sdhci_sprd_get_min_clock,
389 .set_bus_width = sdhci_set_bus_width,
390 .reset = sdhci_reset,
391 .set_uhs_signaling = sdhci_sprd_set_uhs_signaling,
392 .hw_reset = sdhci_sprd_hw_reset,
7486831d 393 .get_max_timeout_count = sdhci_sprd_get_max_timeout_count,
4eae8cbd 394 .get_ro = sdhci_sprd_get_ro,
fb8bd90f
CZ
395};
396
397static void sdhci_sprd_request(struct mmc_host *mmc, struct mmc_request *mrq)
398{
399 struct sdhci_host *host = mmc_priv(mmc);
400 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
401
402 host->flags |= sprd_host->flags & SDHCI_AUTO_CMD23;
403
404 /*
405 * From version 4.10 onward, ARGUMENT2 register is also as 32-bit
406 * block count register which doesn't support stuff bits of
407 * CMD23 argument on Spreadtrum's sd host controller.
408 */
409 if (host->version >= SDHCI_SPEC_410 &&
410 mrq->sbc && (mrq->sbc->arg & SDHCI_SPRD_ARG2_STUFF) &&
411 (host->flags & SDHCI_AUTO_CMD23))
412 host->flags &= ~SDHCI_AUTO_CMD23;
413
414 sdhci_request(mmc, mrq);
415}
416
eef9e0a6
BW
417static int sdhci_sprd_voltage_switch(struct mmc_host *mmc, struct mmc_ios *ios)
418{
29ca763f
BW
419 struct sdhci_host *host = mmc_priv(mmc);
420 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
eef9e0a6
BW
421 int ret;
422
423 if (!IS_ERR(mmc->supply.vqmmc)) {
424 ret = mmc_regulator_set_vqmmc(mmc, ios);
425 if (ret) {
426 pr_err("%s: Switching signalling voltage failed\n",
427 mmc_hostname(mmc));
428 return ret;
429 }
430 }
431
29ca763f
BW
432 if (IS_ERR(sprd_host->pinctrl))
433 return 0;
434
435 switch (ios->signal_voltage) {
436 case MMC_SIGNAL_VOLTAGE_180:
437 ret = pinctrl_select_state(sprd_host->pinctrl,
438 sprd_host->pins_uhs);
439 if (ret) {
440 pr_err("%s: failed to select uhs pin state\n",
441 mmc_hostname(mmc));
442 return ret;
443 }
444 break;
445
446 default:
447 /* fall-through */
448 case MMC_SIGNAL_VOLTAGE_330:
449 ret = pinctrl_select_state(sprd_host->pinctrl,
450 sprd_host->pins_default);
451 if (ret) {
452 pr_err("%s: failed to select default pin state\n",
453 mmc_hostname(mmc));
454 return ret;
455 }
456 break;
457 }
458
459 /* Wait for 300 ~ 500 us for pin state stable */
460 usleep_range(300, 500);
461 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
462
eef9e0a6
BW
463 return 0;
464}
465
494c11e1
BW
466static void sdhci_sprd_hs400_enhanced_strobe(struct mmc_host *mmc,
467 struct mmc_ios *ios)
468{
469 struct sdhci_host *host = mmc_priv(mmc);
5f2f4e0d
BW
470 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
471 u32 *p = sprd_host->phy_delay;
494c11e1
BW
472 u16 ctrl_2;
473
474 if (!ios->enhanced_strobe)
475 return;
476
477 sdhci_sprd_sd_clk_off(host);
478
479 /* Set HS400 enhanced strobe mode */
480 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
481 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
482 ctrl_2 |= SDHCI_SPRD_CTRL_HS400ES;
483 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
484
485 sdhci_sprd_sd_clk_on(host);
5f2f4e0d
BW
486
487 /* Set the PHY DLL delay value for HS400 enhanced strobe mode */
488 sdhci_writel(host, p[MMC_TIMING_MMC_HS400 + 1],
489 SDHCI_SPRD_REG_32_DLL_DLY);
490}
491
492static void sdhci_sprd_phy_param_parse(struct sdhci_sprd_host *sprd_host,
493 struct device_node *np)
494{
495 u32 *p = sprd_host->phy_delay;
496 int ret, i, index;
497 u32 val[4];
498
499 for (i = 0; i < ARRAY_SIZE(sdhci_sprd_phy_cfgs); i++) {
500 ret = of_property_read_u32_array(np,
501 sdhci_sprd_phy_cfgs[i].property, val, 4);
502 if (ret)
503 continue;
504
505 index = sdhci_sprd_phy_cfgs[i].timing;
506 p[index] = val[0] | (val[1] << 8) | (val[2] << 16) | (val[3] << 24);
507 }
494c11e1
BW
508}
509
fb8bd90f
CZ
510static const struct sdhci_pltfm_data sdhci_sprd_pdata = {
511 .quirks = SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK,
512 .quirks2 = SDHCI_QUIRK2_BROKEN_HS200 |
6a526f66
CZ
513 SDHCI_QUIRK2_USE_32BIT_BLK_CNT |
514 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
fb8bd90f
CZ
515 .ops = &sdhci_sprd_ops,
516};
517
518static int sdhci_sprd_probe(struct platform_device *pdev)
519{
520 struct sdhci_host *host;
521 struct sdhci_sprd_host *sprd_host;
522 struct clk *clk;
523 int ret = 0;
524
525 host = sdhci_pltfm_init(pdev, &sdhci_sprd_pdata, sizeof(*sprd_host));
526 if (IS_ERR(host))
527 return PTR_ERR(host);
528
529 host->dma_mask = DMA_BIT_MASK(64);
530 pdev->dev.dma_mask = &host->dma_mask;
531 host->mmc_host_ops.request = sdhci_sprd_request;
494c11e1
BW
532 host->mmc_host_ops.hs400_enhanced_strobe =
533 sdhci_sprd_hs400_enhanced_strobe;
eef9e0a6
BW
534 /*
535 * We can not use the standard ops to change and detect the voltage
536 * signal for Spreadtrum SD host controller, since our voltage regulator
537 * for I/O is fixed in hardware, that means we do not need control
538 * the standard SD host controller to change the I/O voltage.
539 */
540 host->mmc_host_ops.start_signal_voltage_switch =
541 sdhci_sprd_voltage_switch;
fb8bd90f
CZ
542
543 host->mmc->caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED |
544 MMC_CAP_ERASE | MMC_CAP_CMD23;
545 ret = mmc_of_parse(host->mmc);
546 if (ret)
547 goto pltfm_free;
548
549 sprd_host = TO_SPRD_HOST(host);
5f2f4e0d 550 sdhci_sprd_phy_param_parse(sprd_host, pdev->dev.of_node);
fb8bd90f 551
29ca763f
BW
552 sprd_host->pinctrl = devm_pinctrl_get(&pdev->dev);
553 if (!IS_ERR(sprd_host->pinctrl)) {
554 sprd_host->pins_uhs =
555 pinctrl_lookup_state(sprd_host->pinctrl, "state_uhs");
556 if (IS_ERR(sprd_host->pins_uhs)) {
557 ret = PTR_ERR(sprd_host->pins_uhs);
558 goto pltfm_free;
559 }
560
561 sprd_host->pins_default =
562 pinctrl_lookup_state(sprd_host->pinctrl, "default");
563 if (IS_ERR(sprd_host->pins_default)) {
564 ret = PTR_ERR(sprd_host->pins_default);
565 goto pltfm_free;
566 }
567 }
568
fb8bd90f
CZ
569 clk = devm_clk_get(&pdev->dev, "sdio");
570 if (IS_ERR(clk)) {
571 ret = PTR_ERR(clk);
572 goto pltfm_free;
573 }
574 sprd_host->clk_sdio = clk;
575 sprd_host->base_rate = clk_get_rate(sprd_host->clk_sdio);
576 if (!sprd_host->base_rate)
577 sprd_host->base_rate = SDHCI_SPRD_CLK_DEF_RATE;
578
579 clk = devm_clk_get(&pdev->dev, "enable");
580 if (IS_ERR(clk)) {
581 ret = PTR_ERR(clk);
582 goto pltfm_free;
583 }
584 sprd_host->clk_enable = clk;
585
ebd88a38
BW
586 clk = devm_clk_get(&pdev->dev, "2x_enable");
587 if (!IS_ERR(clk))
588 sprd_host->clk_2x_enable = clk;
589
fb8bd90f
CZ
590 ret = clk_prepare_enable(sprd_host->clk_sdio);
591 if (ret)
592 goto pltfm_free;
593
1d94717d 594 ret = clk_prepare_enable(sprd_host->clk_enable);
fb8bd90f
CZ
595 if (ret)
596 goto clk_disable;
597
ebd88a38
BW
598 ret = clk_prepare_enable(sprd_host->clk_2x_enable);
599 if (ret)
600 goto clk_disable2;
601
fb8bd90f
CZ
602 sdhci_sprd_init_config(host);
603 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
604 sprd_host->version = ((host->version & SDHCI_VENDOR_VER_MASK) >>
605 SDHCI_VENDOR_VER_SHIFT);
606
607 pm_runtime_get_noresume(&pdev->dev);
608 pm_runtime_set_active(&pdev->dev);
609 pm_runtime_enable(&pdev->dev);
610 pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
611 pm_runtime_use_autosuspend(&pdev->dev);
612 pm_suspend_ignore_children(&pdev->dev, 1);
613
614 sdhci_enable_v4_mode(host);
615
616 ret = sdhci_setup_host(host);
617 if (ret)
618 goto pm_runtime_disable;
619
620 sprd_host->flags = host->flags;
621
622 ret = __sdhci_add_host(host);
623 if (ret)
624 goto err_cleanup_host;
625
626 pm_runtime_mark_last_busy(&pdev->dev);
627 pm_runtime_put_autosuspend(&pdev->dev);
628
629 return 0;
630
631err_cleanup_host:
632 sdhci_cleanup_host(host);
633
634pm_runtime_disable:
fc62113b 635 pm_runtime_put_noidle(&pdev->dev);
fb8bd90f
CZ
636 pm_runtime_disable(&pdev->dev);
637 pm_runtime_set_suspended(&pdev->dev);
638
ebd88a38
BW
639 clk_disable_unprepare(sprd_host->clk_2x_enable);
640
641clk_disable2:
fb8bd90f
CZ
642 clk_disable_unprepare(sprd_host->clk_enable);
643
644clk_disable:
645 clk_disable_unprepare(sprd_host->clk_sdio);
646
647pltfm_free:
648 sdhci_pltfm_free(pdev);
649 return ret;
650}
651
652static int sdhci_sprd_remove(struct platform_device *pdev)
653{
654 struct sdhci_host *host = platform_get_drvdata(pdev);
655 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
656 struct mmc_host *mmc = host->mmc;
657
658 mmc_remove_host(mmc);
659 clk_disable_unprepare(sprd_host->clk_sdio);
660 clk_disable_unprepare(sprd_host->clk_enable);
ebd88a38 661 clk_disable_unprepare(sprd_host->clk_2x_enable);
fb8bd90f
CZ
662
663 mmc_free_host(mmc);
664
665 return 0;
666}
667
668static const struct of_device_id sdhci_sprd_of_match[] = {
669 { .compatible = "sprd,sdhci-r11", },
670 { }
671};
672MODULE_DEVICE_TABLE(of, sdhci_sprd_of_match);
673
674#ifdef CONFIG_PM
675static int sdhci_sprd_runtime_suspend(struct device *dev)
676{
677 struct sdhci_host *host = dev_get_drvdata(dev);
678 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
679
680 sdhci_runtime_suspend_host(host);
681
682 clk_disable_unprepare(sprd_host->clk_sdio);
683 clk_disable_unprepare(sprd_host->clk_enable);
ebd88a38 684 clk_disable_unprepare(sprd_host->clk_2x_enable);
fb8bd90f
CZ
685
686 return 0;
687}
688
689static int sdhci_sprd_runtime_resume(struct device *dev)
690{
691 struct sdhci_host *host = dev_get_drvdata(dev);
692 struct sdhci_sprd_host *sprd_host = TO_SPRD_HOST(host);
693 int ret;
694
ebd88a38 695 ret = clk_prepare_enable(sprd_host->clk_2x_enable);
fb8bd90f
CZ
696 if (ret)
697 return ret;
698
ebd88a38
BW
699 ret = clk_prepare_enable(sprd_host->clk_enable);
700 if (ret)
701 goto clk_2x_disable;
702
fb8bd90f 703 ret = clk_prepare_enable(sprd_host->clk_sdio);
ebd88a38
BW
704 if (ret)
705 goto clk_disable;
fb8bd90f 706
c6303c5d 707 sdhci_runtime_resume_host(host, 1);
fb8bd90f 708 return 0;
ebd88a38
BW
709
710clk_disable:
711 clk_disable_unprepare(sprd_host->clk_enable);
712
713clk_2x_disable:
714 clk_disable_unprepare(sprd_host->clk_2x_enable);
715
716 return ret;
fb8bd90f
CZ
717}
718#endif
719
720static const struct dev_pm_ops sdhci_sprd_pm_ops = {
721 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
722 pm_runtime_force_resume)
723 SET_RUNTIME_PM_OPS(sdhci_sprd_runtime_suspend,
724 sdhci_sprd_runtime_resume, NULL)
725};
726
727static struct platform_driver sdhci_sprd_driver = {
728 .probe = sdhci_sprd_probe,
729 .remove = sdhci_sprd_remove,
730 .driver = {
731 .name = "sdhci_sprd_r11",
732 .of_match_table = of_match_ptr(sdhci_sprd_of_match),
733 .pm = &sdhci_sprd_pm_ops,
734 },
735};
736module_platform_driver(sdhci_sprd_driver);
737
738MODULE_DESCRIPTION("Spreadtrum sdio host controller r11 driver");
739MODULE_LICENSE("GPL v2");
740MODULE_ALIAS("platform:sdhci-sprd-r11");