4 * Copyright (C) 2009 Magnus Damm
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Based on "Compaq ASIC3 support":
12 * Copyright 2001 Compaq Computer Corporation.
13 * Copyright 2004-2005 Phil Blundell
14 * Copyright 2007-2008 OpenedHand Ltd.
16 * Authors: Phil Blundell <pb@handhelds.org>,
17 * Samuel Ortiz <sameo@openedhand.com>
21 #include <linux/kernel.h>
22 #include <linux/clk.h>
23 #include <linux/slab.h>
24 #include <linux/mod_devicetable.h>
25 #include <linux/module.h>
26 #include <linux/of_device.h>
27 #include <linux/platform_device.h>
28 #include <linux/mmc/host.h>
29 #include <linux/mmc/sh_mobile_sdhi.h>
30 #include <linux/mfd/tmio.h>
31 #include <linux/sh_dma.h>
32 #include <linux/delay.h>
36 struct sh_mobile_sdhi_of_data
{
37 unsigned long tmio_flags
;
40 static const struct sh_mobile_sdhi_of_data sh_mobile_sdhi_of_cfg
[] = {
42 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
,
46 struct sh_mobile_sdhi
{
48 struct tmio_mmc_data mmc_data
;
49 struct sh_dmae_slave param_tx
;
50 struct sh_dmae_slave param_rx
;
51 struct tmio_mmc_dma dma_priv
;
54 static int sh_mobile_sdhi_clk_enable(struct platform_device
*pdev
, unsigned int *f
)
56 struct mmc_host
*mmc
= dev_get_drvdata(&pdev
->dev
);
57 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
58 struct sh_mobile_sdhi
*priv
= container_of(host
->pdata
, struct sh_mobile_sdhi
, mmc_data
);
59 int ret
= clk_enable(priv
->clk
);
63 *f
= clk_get_rate(priv
->clk
);
67 static void sh_mobile_sdhi_clk_disable(struct platform_device
*pdev
)
69 struct mmc_host
*mmc
= dev_get_drvdata(&pdev
->dev
);
70 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
71 struct sh_mobile_sdhi
*priv
= container_of(host
->pdata
, struct sh_mobile_sdhi
, mmc_data
);
72 clk_disable(priv
->clk
);
75 static void sh_mobile_sdhi_set_pwr(struct platform_device
*pdev
, int state
)
77 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
79 p
->set_pwr(pdev
, state
);
82 static int sh_mobile_sdhi_get_cd(struct platform_device
*pdev
)
84 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
86 return p
->get_cd(pdev
);
89 static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host
*host
)
93 while (--timeout
&& !(sd_ctrl_read16(host
, CTL_STATUS2
) & (1 << 13)))
97 dev_warn(host
->pdata
->dev
, "timeout waiting for SD bus idle\n");
104 static int sh_mobile_sdhi_write16_hook(struct tmio_mmc_host
*host
, int addr
)
109 case CTL_STOP_INTERNAL_ACTION
:
110 case CTL_XFER_BLK_COUNT
:
111 case CTL_SD_CARD_CLK_CTL
:
112 case CTL_SD_XFER_LEN
:
113 case CTL_SD_MEM_CARD_OPT
:
114 case CTL_TRANSACTION_CTL
:
116 return sh_mobile_sdhi_wait_idle(host
);
122 static void sh_mobile_sdhi_cd_wakeup(const struct platform_device
*pdev
)
124 mmc_detect_change(dev_get_drvdata(&pdev
->dev
), msecs_to_jiffies(100));
127 static const struct sh_mobile_sdhi_ops sdhi_ops
= {
128 .cd_wakeup
= sh_mobile_sdhi_cd_wakeup
,
131 static const struct of_device_id sh_mobile_sdhi_of_match
[] = {
132 { .compatible
= "renesas,shmobile-sdhi" },
133 { .compatible
= "renesas,sh7372-sdhi" },
134 { .compatible
= "renesas,r8a7740-sdhi", .data
= &sh_mobile_sdhi_of_cfg
[0], },
137 MODULE_DEVICE_TABLE(of
, sh_mobile_sdhi_of_match
);
139 static int sh_mobile_sdhi_probe(struct platform_device
*pdev
)
141 const struct of_device_id
*of_id
=
142 of_match_device(sh_mobile_sdhi_of_match
, &pdev
->dev
);
143 struct sh_mobile_sdhi
*priv
;
144 struct tmio_mmc_data
*mmc_data
;
145 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
146 struct tmio_mmc_host
*host
;
148 bool multiplexed_isr
= true;
150 priv
= devm_kzalloc(&pdev
->dev
, sizeof(struct sh_mobile_sdhi
), GFP_KERNEL
);
152 dev_err(&pdev
->dev
, "kzalloc failed\n");
156 mmc_data
= &priv
->mmc_data
;
160 ret
= p
->init(pdev
, &sdhi_ops
);
166 priv
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
167 if (IS_ERR(priv
->clk
)) {
168 ret
= PTR_ERR(priv
->clk
);
169 dev_err(&pdev
->dev
, "cannot get clock: %d\n", ret
);
173 mmc_data
->clk_enable
= sh_mobile_sdhi_clk_enable
;
174 mmc_data
->clk_disable
= sh_mobile_sdhi_clk_disable
;
175 mmc_data
->capabilities
= MMC_CAP_MMC_HIGHSPEED
;
176 mmc_data
->write16_hook
= sh_mobile_sdhi_write16_hook
;
178 mmc_data
->flags
= p
->tmio_flags
;
179 mmc_data
->ocr_mask
= p
->tmio_ocr_mask
;
180 mmc_data
->capabilities
|= p
->tmio_caps
;
181 mmc_data
->capabilities2
|= p
->tmio_caps2
;
182 mmc_data
->cd_gpio
= p
->cd_gpio
;
184 mmc_data
->set_pwr
= sh_mobile_sdhi_set_pwr
;
186 mmc_data
->get_cd
= sh_mobile_sdhi_get_cd
;
188 if (p
->dma_slave_tx
> 0 && p
->dma_slave_rx
> 0) {
189 priv
->param_tx
.shdma_slave
.slave_id
= p
->dma_slave_tx
;
190 priv
->param_rx
.shdma_slave
.slave_id
= p
->dma_slave_rx
;
191 priv
->dma_priv
.chan_priv_tx
= &priv
->param_tx
.shdma_slave
;
192 priv
->dma_priv
.chan_priv_rx
= &priv
->param_rx
.shdma_slave
;
193 priv
->dma_priv
.alignment_shift
= 1; /* 2-byte alignment */
194 mmc_data
->dma
= &priv
->dma_priv
;
199 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
202 mmc_data
->flags
|= TMIO_MMC_BLKSZ_2BYTES
;
205 * All SDHI blocks support SDIO IRQ signalling.
207 mmc_data
->flags
|= TMIO_MMC_SDIO_IRQ
;
209 if (of_id
&& of_id
->data
) {
210 const struct sh_mobile_sdhi_of_data
*of_data
= of_id
->data
;
211 mmc_data
->flags
|= of_data
->tmio_flags
;
214 ret
= tmio_mmc_host_probe(&host
, pdev
, mmc_data
);
219 * Allow one or more specific (named) ISRs or
220 * one or more multiplexed (un-named) ISRs.
223 irq
= platform_get_irq_byname(pdev
, SH_MOBILE_SDHI_IRQ_CARD_DETECT
);
225 multiplexed_isr
= false;
226 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_card_detect_irq
, 0,
227 dev_name(&pdev
->dev
), host
);
232 irq
= platform_get_irq_byname(pdev
, SH_MOBILE_SDHI_IRQ_SDIO
);
234 multiplexed_isr
= false;
235 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_sdio_irq
, 0,
236 dev_name(&pdev
->dev
), host
);
241 irq
= platform_get_irq_byname(pdev
, SH_MOBILE_SDHI_IRQ_SDCARD
);
243 multiplexed_isr
= false;
244 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_sdcard_irq
, 0,
245 dev_name(&pdev
->dev
), host
);
248 } else if (!multiplexed_isr
) {
250 "Principal SD-card IRQ is missing among named interrupts\n");
255 if (multiplexed_isr
) {
257 irq
= platform_get_irq(pdev
, i
);
261 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_irq
, 0,
262 dev_name(&pdev
->dev
), host
);
267 /* There must be at least one IRQ source */
272 dev_info(&pdev
->dev
, "%s base at 0x%08lx clock rate %u MHz\n",
273 mmc_hostname(host
->mmc
), (unsigned long)
274 (platform_get_resource(pdev
, IORESOURCE_MEM
, 0)->start
),
275 host
->mmc
->f_max
/ 1000000);
280 tmio_mmc_host_remove(host
);
288 static int sh_mobile_sdhi_remove(struct platform_device
*pdev
)
290 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
291 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
292 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
294 tmio_mmc_host_remove(host
);
302 static const struct dev_pm_ops tmio_mmc_dev_pm_ops
= {
303 .suspend
= tmio_mmc_host_suspend
,
304 .resume
= tmio_mmc_host_resume
,
305 .runtime_suspend
= tmio_mmc_host_runtime_suspend
,
306 .runtime_resume
= tmio_mmc_host_runtime_resume
,
309 static struct platform_driver sh_mobile_sdhi_driver
= {
311 .name
= "sh_mobile_sdhi",
312 .owner
= THIS_MODULE
,
313 .pm
= &tmio_mmc_dev_pm_ops
,
314 .of_match_table
= sh_mobile_sdhi_of_match
,
316 .probe
= sh_mobile_sdhi_probe
,
317 .remove
= sh_mobile_sdhi_remove
,
320 module_platform_driver(sh_mobile_sdhi_driver
);
322 MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
323 MODULE_AUTHOR("Magnus Damm");
324 MODULE_LICENSE("GPL v2");
325 MODULE_ALIAS("platform:sh_mobile_sdhi");