4 * Copyright (C) 2016 Sang Engineering, Wolfram Sang
5 * Copyright (C) 2015-16 Renesas Electronics Corporation
6 * Copyright (C) 2009 Magnus Damm
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * Based on "Compaq ASIC3 support":
14 * Copyright 2001 Compaq Computer Corporation.
15 * Copyright 2004-2005 Phil Blundell
16 * Copyright 2007-2008 OpenedHand Ltd.
18 * Authors: Phil Blundell <pb@handhelds.org>,
19 * Samuel Ortiz <sameo@openedhand.com>
23 #include <linux/kernel.h>
24 #include <linux/clk.h>
25 #include <linux/slab.h>
26 #include <linux/mod_devicetable.h>
27 #include <linux/module.h>
28 #include <linux/of_device.h>
29 #include <linux/platform_device.h>
30 #include <linux/mmc/host.h>
31 #include <linux/mfd/tmio.h>
32 #include <linux/sh_dma.h>
33 #include <linux/delay.h>
34 #include <linux/pinctrl/consumer.h>
35 #include <linux/pinctrl/pinctrl-state.h>
36 #include <linux/regulator/consumer.h>
42 #define SDHI_VER_GEN2_SDR50 0x490c
43 /* very old datasheets said 0x490c for SDR104, too. They are wrong! */
44 #define SDHI_VER_GEN2_SDR104 0xcb0d
45 #define SDHI_VER_GEN3_SD 0xcc10
46 #define SDHI_VER_GEN3_SDMMC 0xcd10
48 #define host_to_priv(host) container_of((host)->pdata, struct sh_mobile_sdhi, mmc_data)
50 struct sh_mobile_sdhi_scc
{
51 unsigned long clk_rate
; /* clock rate for SDR104 */
52 u32 tap
; /* sampling clock position for SDR104 */
55 struct sh_mobile_sdhi_of_data
{
56 unsigned long tmio_flags
;
58 unsigned long capabilities
;
59 unsigned long capabilities2
;
60 enum dma_slave_buswidth dma_buswidth
;
61 dma_addr_t dma_rx_offset
;
64 struct sh_mobile_sdhi_scc
*taps
;
68 static const struct sh_mobile_sdhi_of_data of_default_cfg
= {
69 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
,
72 static const struct sh_mobile_sdhi_of_data of_rz_compatible
= {
73 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
| TMIO_MMC_32BIT_DATA_PORT
,
74 .tmio_ocr_mask
= MMC_VDD_32_33
,
75 .capabilities
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_SDIO_IRQ
,
78 static const struct sh_mobile_sdhi_of_data of_rcar_gen1_compatible
= {
79 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
| TMIO_MMC_WRPROTECT_DISABLE
|
81 .capabilities
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_SDIO_IRQ
,
84 /* Definitions for sampling clocks */
85 static struct sh_mobile_sdhi_scc rcar_gen2_scc_taps
[] = {
87 .clk_rate
= 156000000,
96 static const struct sh_mobile_sdhi_of_data of_rcar_gen2_compatible
= {
97 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
| TMIO_MMC_WRPROTECT_DISABLE
|
98 TMIO_MMC_CLK_ACTUAL
| TMIO_MMC_MIN_RCAR2
,
99 .capabilities
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_SDIO_IRQ
,
100 .dma_buswidth
= DMA_SLAVE_BUSWIDTH_4_BYTES
,
101 .dma_rx_offset
= 0x2000,
102 .scc_offset
= 0x0300,
103 .taps
= rcar_gen2_scc_taps
,
104 .taps_num
= ARRAY_SIZE(rcar_gen2_scc_taps
),
107 /* Definitions for sampling clocks */
108 static struct sh_mobile_sdhi_scc rcar_gen3_scc_taps
[] = {
115 static const struct sh_mobile_sdhi_of_data of_rcar_gen3_compatible
= {
116 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
| TMIO_MMC_WRPROTECT_DISABLE
|
117 TMIO_MMC_CLK_ACTUAL
| TMIO_MMC_MIN_RCAR2
,
118 .capabilities
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_SDIO_IRQ
,
120 .scc_offset
= 0x1000,
121 .taps
= rcar_gen3_scc_taps
,
122 .taps_num
= ARRAY_SIZE(rcar_gen3_scc_taps
),
125 static const struct of_device_id sh_mobile_sdhi_of_match
[] = {
126 { .compatible
= "renesas,sdhi-shmobile" },
127 { .compatible
= "renesas,sdhi-sh73a0", .data
= &of_default_cfg
, },
128 { .compatible
= "renesas,sdhi-r8a73a4", .data
= &of_default_cfg
, },
129 { .compatible
= "renesas,sdhi-r8a7740", .data
= &of_default_cfg
, },
130 { .compatible
= "renesas,sdhi-r7s72100", .data
= &of_rz_compatible
, },
131 { .compatible
= "renesas,sdhi-r8a7778", .data
= &of_rcar_gen1_compatible
, },
132 { .compatible
= "renesas,sdhi-r8a7779", .data
= &of_rcar_gen1_compatible
, },
133 { .compatible
= "renesas,sdhi-r8a7790", .data
= &of_rcar_gen2_compatible
, },
134 { .compatible
= "renesas,sdhi-r8a7791", .data
= &of_rcar_gen2_compatible
, },
135 { .compatible
= "renesas,sdhi-r8a7792", .data
= &of_rcar_gen2_compatible
, },
136 { .compatible
= "renesas,sdhi-r8a7793", .data
= &of_rcar_gen2_compatible
, },
137 { .compatible
= "renesas,sdhi-r8a7794", .data
= &of_rcar_gen2_compatible
, },
138 { .compatible
= "renesas,sdhi-r8a7795", .data
= &of_rcar_gen3_compatible
, },
139 { .compatible
= "renesas,sdhi-r8a7796", .data
= &of_rcar_gen3_compatible
, },
142 MODULE_DEVICE_TABLE(of
, sh_mobile_sdhi_of_match
);
144 struct sh_mobile_sdhi
{
146 struct tmio_mmc_data mmc_data
;
147 struct tmio_mmc_dma dma_priv
;
148 struct pinctrl
*pinctrl
;
149 struct pinctrl_state
*pins_default
, *pins_uhs
;
150 void __iomem
*scc_ctl
;
153 static void sh_mobile_sdhi_sdbuf_width(struct tmio_mmc_host
*host
, int width
)
159 * sh_mobile_sdhi_of_data :: dma_buswidth
161 switch (sd_ctrl_read16(host
, CTL_VERSION
)) {
162 case SDHI_VER_GEN2_SDR50
:
163 val
= (width
== 32) ? 0x0001 : 0x0000;
165 case SDHI_VER_GEN2_SDR104
:
166 val
= (width
== 32) ? 0x0000 : 0x0001;
168 case SDHI_VER_GEN3_SD
:
169 case SDHI_VER_GEN3_SDMMC
:
172 else if (width
== 32)
182 sd_ctrl_write16(host
, EXT_ACC
, val
);
185 static int sh_mobile_sdhi_clk_enable(struct tmio_mmc_host
*host
)
187 struct mmc_host
*mmc
= host
->mmc
;
188 struct sh_mobile_sdhi
*priv
= host_to_priv(host
);
189 int ret
= clk_prepare_enable(priv
->clk
);
194 * The clock driver may not know what maximum frequency
195 * actually works, so it should be set with the max-frequency
196 * property which will already have been read to f_max. If it
197 * was missing, assume the current frequency is the maximum.
200 mmc
->f_max
= clk_get_rate(priv
->clk
);
203 * Minimum frequency is the minimum input clock frequency
204 * divided by our maximum divider.
206 mmc
->f_min
= max(clk_round_rate(priv
->clk
, 1) / 512, 1L);
208 /* enable 16bit data access on SDBUF as default */
209 sh_mobile_sdhi_sdbuf_width(host
, 16);
214 static unsigned int sh_mobile_sdhi_clk_update(struct tmio_mmc_host
*host
,
215 unsigned int new_clock
)
217 struct sh_mobile_sdhi
*priv
= host_to_priv(host
);
218 unsigned int freq
, diff
, best_freq
= 0, diff_min
= ~0;
221 /* tested only on RCar Gen2+ currently; may work for others */
222 if (!(host
->pdata
->flags
& TMIO_MMC_MIN_RCAR2
))
223 return clk_get_rate(priv
->clk
);
226 * We want the bus clock to be as close as possible to, but no
227 * greater than, new_clock. As we can divide by 1 << i for
228 * any i in [0, 9] we want the input clock to be as close as
229 * possible, but no greater than, new_clock << i.
231 for (i
= min(9, ilog2(UINT_MAX
/ new_clock
)); i
>= 0; i
--) {
232 freq
= clk_round_rate(priv
->clk
, new_clock
<< i
);
233 if (freq
> (new_clock
<< i
)) {
234 /* Too fast; look for a slightly slower option */
235 freq
= clk_round_rate(priv
->clk
,
236 (new_clock
<< i
) / 4 * 3);
237 if (freq
> (new_clock
<< i
))
241 diff
= new_clock
- (freq
>> i
);
242 if (diff
<= diff_min
) {
248 ret
= clk_set_rate(priv
->clk
, best_freq
);
250 return ret
== 0 ? best_freq
: clk_get_rate(priv
->clk
);
253 static void sh_mobile_sdhi_clk_disable(struct tmio_mmc_host
*host
)
255 struct sh_mobile_sdhi
*priv
= host_to_priv(host
);
257 clk_disable_unprepare(priv
->clk
);
260 static int sh_mobile_sdhi_card_busy(struct mmc_host
*mmc
)
262 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
264 return !(sd_ctrl_read16_and_16_as_32(host
, CTL_STATUS
) & TMIO_STAT_DAT0
);
267 static int sh_mobile_sdhi_start_signal_voltage_switch(struct mmc_host
*mmc
,
270 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
271 struct sh_mobile_sdhi
*priv
= host_to_priv(host
);
272 struct pinctrl_state
*pin_state
;
275 switch (ios
->signal_voltage
) {
276 case MMC_SIGNAL_VOLTAGE_330
:
277 pin_state
= priv
->pins_default
;
279 case MMC_SIGNAL_VOLTAGE_180
:
280 pin_state
= priv
->pins_uhs
;
287 * If anything is missing, assume signal voltage is fixed at
288 * 3.3V and succeed/fail accordingly.
290 if (IS_ERR(priv
->pinctrl
) || IS_ERR(pin_state
))
291 return ios
->signal_voltage
==
292 MMC_SIGNAL_VOLTAGE_330
? 0 : -EINVAL
;
294 ret
= mmc_regulator_set_vqmmc(host
->mmc
, ios
);
298 return pinctrl_select_state(priv
->pinctrl
, pin_state
);
302 #define SH_MOBILE_SDHI_SCC_DTCNTL 0x000
303 #define SH_MOBILE_SDHI_SCC_TAPSET 0x002
304 #define SH_MOBILE_SDHI_SCC_DT2FF 0x004
305 #define SH_MOBILE_SDHI_SCC_CKSEL 0x006
306 #define SH_MOBILE_SDHI_SCC_RVSCNTL 0x008
307 #define SH_MOBILE_SDHI_SCC_RVSREQ 0x00A
309 /* Definitions for values the SH_MOBILE_SDHI_SCC_DTCNTL register */
310 #define SH_MOBILE_SDHI_SCC_DTCNTL_TAPEN BIT(0)
311 #define SH_MOBILE_SDHI_SCC_DTCNTL_TAPNUM_SHIFT 16
312 #define SH_MOBILE_SDHI_SCC_DTCNTL_TAPNUM_MASK 0xff
314 /* Definitions for values the SH_MOBILE_SDHI_SCC_CKSEL register */
315 #define SH_MOBILE_SDHI_SCC_CKSEL_DTSEL BIT(0)
316 /* Definitions for values the SH_MOBILE_SDHI_SCC_RVSCNTL register */
317 #define SH_MOBILE_SDHI_SCC_RVSCNTL_RVSEN BIT(0)
318 /* Definitions for values the SH_MOBILE_SDHI_SCC_RVSREQ register */
319 #define SH_MOBILE_SDHI_SCC_RVSREQ_RVSERR BIT(2)
321 static inline u32
sd_scc_read32(struct tmio_mmc_host
*host
,
322 struct sh_mobile_sdhi
*priv
, int addr
)
324 return readl(priv
->scc_ctl
+ (addr
<< host
->bus_shift
));
327 static inline void sd_scc_write32(struct tmio_mmc_host
*host
,
328 struct sh_mobile_sdhi
*priv
,
331 writel(val
, priv
->scc_ctl
+ (addr
<< host
->bus_shift
));
334 static unsigned int sh_mobile_sdhi_init_tuning(struct tmio_mmc_host
*host
)
336 struct sh_mobile_sdhi
*priv
;
338 if (!(host
->mmc
->caps
& MMC_CAP_UHS_SDR104
))
341 priv
= host_to_priv(host
);
343 /* set sampling clock selection range */
344 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_DTCNTL
,
345 0x8 << SH_MOBILE_SDHI_SCC_DTCNTL_TAPNUM_SHIFT
);
348 sd_ctrl_write32_as_16_and_16(host
, CTL_STATUS
, 0x0);
350 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_DTCNTL
,
351 SH_MOBILE_SDHI_SCC_DTCNTL_TAPEN
|
352 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_DTCNTL
));
354 sd_ctrl_write16(host
, CTL_SD_CARD_CLK_CTL
, ~CLK_CTL_SCLKEN
&
355 sd_ctrl_read16(host
, CTL_SD_CARD_CLK_CTL
));
357 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_CKSEL
,
358 SH_MOBILE_SDHI_SCC_CKSEL_DTSEL
|
359 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_CKSEL
));
361 sd_ctrl_write16(host
, CTL_SD_CARD_CLK_CTL
, CLK_CTL_SCLKEN
|
362 sd_ctrl_read16(host
, CTL_SD_CARD_CLK_CTL
));
364 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
,
365 ~SH_MOBILE_SDHI_SCC_RVSCNTL_RVSEN
&
366 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
));
368 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_DT2FF
, host
->scc_tappos
);
371 return (sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_DTCNTL
) >>
372 SH_MOBILE_SDHI_SCC_DTCNTL_TAPNUM_SHIFT
) &
373 SH_MOBILE_SDHI_SCC_DTCNTL_TAPNUM_MASK
;
376 static void sh_mobile_sdhi_prepare_tuning(struct tmio_mmc_host
*host
,
379 struct sh_mobile_sdhi
*priv
= host_to_priv(host
);
381 /* Set sampling clock position */
382 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_TAPSET
, tap
);
385 #define SH_MOBILE_SDHI_MAX_TAP 3
387 static int sh_mobile_sdhi_select_tuning(struct tmio_mmc_host
*host
)
389 struct sh_mobile_sdhi
*priv
= host_to_priv(host
);
390 unsigned long tap_cnt
; /* counter of tuning success */
391 unsigned long tap_set
; /* tap position */
392 unsigned long tap_start
;/* start position of tuning success */
393 unsigned long tap_end
; /* end position of tuning success */
394 unsigned long ntap
; /* temporary counter of tuning success */
397 /* Clear SCC_RVSREQ */
398 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSREQ
, 0);
401 * Find the longest consecutive run of successful probes. If that
402 * is more than SH_MOBILE_SDHI_MAX_TAP probes long then use the
403 * center index as the tap.
409 for (i
= 0; i
< host
->tap_num
* 2; i
++) {
410 if (test_bit(i
, host
->taps
))
413 if (ntap
> tap_cnt
) {
414 tap_start
= i
- ntap
;
422 if (ntap
> tap_cnt
) {
423 tap_start
= i
- ntap
;
428 if (tap_cnt
>= SH_MOBILE_SDHI_MAX_TAP
)
429 tap_set
= (tap_start
+ tap_end
) / 2 % host
->tap_num
;
434 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_TAPSET
, tap_set
);
436 /* Enable auto re-tuning */
437 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
,
438 SH_MOBILE_SDHI_SCC_RVSCNTL_RVSEN
|
439 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
));
445 static bool sh_mobile_sdhi_check_scc_error(struct tmio_mmc_host
*host
)
447 struct sh_mobile_sdhi
*priv
;
449 if (!(host
->mmc
->caps
& MMC_CAP_UHS_SDR104
))
452 priv
= host_to_priv(host
);
454 /* Check SCC error */
455 if (sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
) &
456 SH_MOBILE_SDHI_SCC_RVSCNTL_RVSEN
&&
457 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSREQ
) &
458 SH_MOBILE_SDHI_SCC_RVSREQ_RVSERR
) {
459 /* Clear SCC error */
460 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSREQ
, 0);
467 static void sh_mobile_sdhi_hw_reset(struct tmio_mmc_host
*host
)
469 struct sh_mobile_sdhi
*priv
;
471 if (!(host
->mmc
->caps
& MMC_CAP_UHS_SDR104
))
474 priv
= host_to_priv(host
);
477 sd_ctrl_write16(host
, CTL_SD_CARD_CLK_CTL
, ~CLK_CTL_SCLKEN
&
478 sd_ctrl_read16(host
, CTL_SD_CARD_CLK_CTL
));
480 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_CKSEL
,
481 ~SH_MOBILE_SDHI_SCC_CKSEL_DTSEL
&
482 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_CKSEL
));
484 sd_ctrl_write16(host
, CTL_SD_CARD_CLK_CTL
, CLK_CTL_SCLKEN
|
485 sd_ctrl_read16(host
, CTL_SD_CARD_CLK_CTL
));
487 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
,
488 ~SH_MOBILE_SDHI_SCC_RVSCNTL_RVSEN
&
489 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
));
491 sd_scc_write32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
,
492 ~SH_MOBILE_SDHI_SCC_RVSCNTL_RVSEN
&
493 sd_scc_read32(host
, priv
, SH_MOBILE_SDHI_SCC_RVSCNTL
));
496 static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host
*host
)
500 while (--timeout
&& !(sd_ctrl_read16_and_16_as_32(host
, CTL_STATUS
)
501 & TMIO_STAT_SCLKDIVEN
))
505 dev_warn(&host
->pdev
->dev
, "timeout waiting for SD bus idle\n");
512 static int sh_mobile_sdhi_write16_hook(struct tmio_mmc_host
*host
, int addr
)
517 case CTL_STOP_INTERNAL_ACTION
:
518 case CTL_XFER_BLK_COUNT
:
519 case CTL_SD_CARD_CLK_CTL
:
520 case CTL_SD_XFER_LEN
:
521 case CTL_SD_MEM_CARD_OPT
:
522 case CTL_TRANSACTION_CTL
:
525 return sh_mobile_sdhi_wait_idle(host
);
531 static int sh_mobile_sdhi_multi_io_quirk(struct mmc_card
*card
,
532 unsigned int direction
, int blk_size
)
535 * In Renesas controllers, when performing a
536 * multiple block read of one or two blocks,
537 * depending on the timing with which the
538 * response register is read, the response
539 * value may not be read properly.
540 * Use single block read for this HW bug
542 if ((direction
== MMC_DATA_READ
) &&
549 static void sh_mobile_sdhi_enable_dma(struct tmio_mmc_host
*host
, bool enable
)
551 sd_ctrl_write16(host
, CTL_DMA_ENABLE
, enable
? 2 : 0);
553 /* enable 32bit access if DMA mode if possibile */
554 sh_mobile_sdhi_sdbuf_width(host
, enable
? 32 : 16);
557 static int sh_mobile_sdhi_probe(struct platform_device
*pdev
)
559 const struct of_device_id
*of_id
=
560 of_match_device(sh_mobile_sdhi_of_match
, &pdev
->dev
);
561 struct sh_mobile_sdhi
*priv
;
562 struct tmio_mmc_data
*mmc_data
;
563 struct tmio_mmc_data
*mmd
= pdev
->dev
.platform_data
;
564 struct tmio_mmc_host
*host
;
565 struct resource
*res
;
567 struct tmio_mmc_dma
*dma_priv
;
569 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
573 priv
= devm_kzalloc(&pdev
->dev
, sizeof(struct sh_mobile_sdhi
), GFP_KERNEL
);
577 mmc_data
= &priv
->mmc_data
;
578 dma_priv
= &priv
->dma_priv
;
580 priv
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
581 if (IS_ERR(priv
->clk
)) {
582 ret
= PTR_ERR(priv
->clk
);
583 dev_err(&pdev
->dev
, "cannot get clock: %d\n", ret
);
587 priv
->pinctrl
= devm_pinctrl_get(&pdev
->dev
);
588 if (!IS_ERR(priv
->pinctrl
)) {
589 priv
->pins_default
= pinctrl_lookup_state(priv
->pinctrl
,
590 PINCTRL_STATE_DEFAULT
);
591 priv
->pins_uhs
= pinctrl_lookup_state(priv
->pinctrl
,
595 host
= tmio_mmc_host_alloc(pdev
);
601 if (of_id
&& of_id
->data
) {
602 const struct sh_mobile_sdhi_of_data
*of_data
= of_id
->data
;
604 mmc_data
->flags
|= of_data
->tmio_flags
;
605 mmc_data
->ocr_mask
= of_data
->tmio_ocr_mask
;
606 mmc_data
->capabilities
|= of_data
->capabilities
;
607 mmc_data
->capabilities2
|= of_data
->capabilities2
;
608 mmc_data
->dma_rx_offset
= of_data
->dma_rx_offset
;
609 dma_priv
->dma_buswidth
= of_data
->dma_buswidth
;
610 host
->bus_shift
= of_data
->bus_shift
;
613 host
->dma
= dma_priv
;
614 host
->write16_hook
= sh_mobile_sdhi_write16_hook
;
615 host
->clk_enable
= sh_mobile_sdhi_clk_enable
;
616 host
->clk_update
= sh_mobile_sdhi_clk_update
;
617 host
->clk_disable
= sh_mobile_sdhi_clk_disable
;
618 host
->multi_io_quirk
= sh_mobile_sdhi_multi_io_quirk
;
620 /* SDR speeds are only available on Gen2+ */
621 if (mmc_data
->flags
& TMIO_MMC_MIN_RCAR2
) {
622 /* card_busy caused issues on r8a73a4 (pre-Gen2) CD-less SDHI */
623 host
->card_busy
= sh_mobile_sdhi_card_busy
;
624 host
->start_signal_voltage_switch
=
625 sh_mobile_sdhi_start_signal_voltage_switch
;
626 host
->init_tuning
= sh_mobile_sdhi_init_tuning
;
627 host
->prepare_tuning
= sh_mobile_sdhi_prepare_tuning
;
628 host
->select_tuning
= sh_mobile_sdhi_select_tuning
;
629 host
->check_scc_error
= sh_mobile_sdhi_check_scc_error
;
630 host
->hw_reset
= sh_mobile_sdhi_hw_reset
;
633 /* Orginally registers were 16 bit apart, could be 32 or 64 nowadays */
634 if (!host
->bus_shift
&& resource_size(res
) > 0x100) /* old way to determine the shift */
640 dma_priv
->filter
= shdma_chan_filter
;
641 dma_priv
->enable
= sh_mobile_sdhi_enable_dma
;
643 mmc_data
->alignment_shift
= 1; /* 2-byte alignment */
644 mmc_data
->capabilities
|= MMC_CAP_MMC_HIGHSPEED
;
647 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
650 mmc_data
->flags
|= TMIO_MMC_BLKSZ_2BYTES
;
653 * All SDHI blocks support SDIO IRQ signalling.
655 mmc_data
->flags
|= TMIO_MMC_SDIO_IRQ
;
658 * All SDHI have CMD12 controll bit
660 mmc_data
->flags
|= TMIO_MMC_HAVE_CMD12_CTRL
;
663 * All SDHI need SDIO_INFO1 reserved bit
665 mmc_data
->flags
|= TMIO_MMC_SDIO_STATUS_QUIRK
;
667 ret
= tmio_mmc_host_probe(host
, mmc_data
);
671 if (host
->mmc
->caps
& MMC_CAP_UHS_SDR104
) {
672 host
->mmc
->caps
|= MMC_CAP_HW_RESET
;
674 if (of_id
&& of_id
->data
) {
675 const struct sh_mobile_sdhi_of_data
*of_data
;
676 const struct sh_mobile_sdhi_scc
*taps
;
679 of_data
= of_id
->data
;
680 taps
= of_data
->taps
;
682 for (i
= 0; i
< of_data
->taps_num
; i
++) {
683 if (taps
[i
].clk_rate
== 0 ||
684 taps
[i
].clk_rate
== host
->mmc
->f_max
) {
685 host
->scc_tappos
= taps
->tap
;
692 dev_warn(&host
->pdev
->dev
, "Unknown clock rate for SDR104\n");
694 priv
->scc_ctl
= host
->ctl
+ of_data
->scc_offset
;
700 irq
= platform_get_irq(pdev
, i
);
704 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_irq
, 0,
705 dev_name(&pdev
->dev
), host
);
710 /* There must be at least one IRQ source */
716 dev_info(&pdev
->dev
, "%s base at 0x%08lx max clock rate %u MHz\n",
717 mmc_hostname(host
->mmc
), (unsigned long)
718 (platform_get_resource(pdev
, IORESOURCE_MEM
, 0)->start
),
719 host
->mmc
->f_max
/ 1000000);
724 tmio_mmc_host_remove(host
);
726 tmio_mmc_host_free(host
);
731 static int sh_mobile_sdhi_remove(struct platform_device
*pdev
)
733 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
734 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
736 tmio_mmc_host_remove(host
);
741 static const struct dev_pm_ops tmio_mmc_dev_pm_ops
= {
742 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
743 pm_runtime_force_resume
)
744 SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend
,
745 tmio_mmc_host_runtime_resume
,
749 static struct platform_driver sh_mobile_sdhi_driver
= {
751 .name
= "sh_mobile_sdhi",
752 .pm
= &tmio_mmc_dev_pm_ops
,
753 .of_match_table
= sh_mobile_sdhi_of_match
,
755 .probe
= sh_mobile_sdhi_probe
,
756 .remove
= sh_mobile_sdhi_remove
,
759 module_platform_driver(sh_mobile_sdhi_driver
);
761 MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
762 MODULE_AUTHOR("Magnus Damm");
763 MODULE_LICENSE("GPL v2");
764 MODULE_ALIAS("platform:sh_mobile_sdhi");