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 tmio_mmc_dma dma_priv
;
52 static int sh_mobile_sdhi_clk_enable(struct platform_device
*pdev
, unsigned int *f
)
54 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
55 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
56 struct sh_mobile_sdhi
*priv
= container_of(host
->pdata
, struct sh_mobile_sdhi
, mmc_data
);
57 int ret
= clk_enable(priv
->clk
);
61 *f
= clk_get_rate(priv
->clk
);
65 static void sh_mobile_sdhi_clk_disable(struct platform_device
*pdev
)
67 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
68 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
69 struct sh_mobile_sdhi
*priv
= container_of(host
->pdata
, struct sh_mobile_sdhi
, mmc_data
);
70 clk_disable(priv
->clk
);
73 static void sh_mobile_sdhi_set_pwr(struct platform_device
*pdev
, int state
)
75 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
77 p
->set_pwr(pdev
, state
);
80 static int sh_mobile_sdhi_get_cd(struct platform_device
*pdev
)
82 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
84 return p
->get_cd(pdev
);
87 static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host
*host
)
91 while (--timeout
&& !(sd_ctrl_read16(host
, CTL_STATUS2
) & (1 << 13)))
95 dev_warn(host
->pdata
->dev
, "timeout waiting for SD bus idle\n");
102 static int sh_mobile_sdhi_write16_hook(struct tmio_mmc_host
*host
, int addr
)
107 case CTL_STOP_INTERNAL_ACTION
:
108 case CTL_XFER_BLK_COUNT
:
109 case CTL_SD_CARD_CLK_CTL
:
110 case CTL_SD_XFER_LEN
:
111 case CTL_SD_MEM_CARD_OPT
:
112 case CTL_TRANSACTION_CTL
:
114 return sh_mobile_sdhi_wait_idle(host
);
120 static void sh_mobile_sdhi_cd_wakeup(const struct platform_device
*pdev
)
122 mmc_detect_change(platform_get_drvdata(pdev
), msecs_to_jiffies(100));
125 static const struct sh_mobile_sdhi_ops sdhi_ops
= {
126 .cd_wakeup
= sh_mobile_sdhi_cd_wakeup
,
129 static const struct of_device_id sh_mobile_sdhi_of_match
[] = {
130 { .compatible
= "renesas,shmobile-sdhi" },
131 { .compatible
= "renesas,sh7372-sdhi" },
132 { .compatible
= "renesas,r8a7740-sdhi", .data
= &sh_mobile_sdhi_of_cfg
[0], },
135 MODULE_DEVICE_TABLE(of
, sh_mobile_sdhi_of_match
);
137 static int sh_mobile_sdhi_probe(struct platform_device
*pdev
)
139 const struct of_device_id
*of_id
=
140 of_match_device(sh_mobile_sdhi_of_match
, &pdev
->dev
);
141 struct sh_mobile_sdhi
*priv
;
142 struct tmio_mmc_data
*mmc_data
;
143 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
144 struct tmio_mmc_host
*host
;
146 bool multiplexed_isr
= true;
147 struct tmio_mmc_dma
*dma_priv
;
149 priv
= devm_kzalloc(&pdev
->dev
, sizeof(struct sh_mobile_sdhi
), GFP_KERNEL
);
151 dev_err(&pdev
->dev
, "kzalloc failed\n");
155 mmc_data
= &priv
->mmc_data
;
156 dma_priv
= &priv
->dma_priv
;
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) {
190 * Yes, we have to provide slave IDs twice to TMIO:
191 * once as a filter parameter and once for channel
192 * configuration as an explicit slave ID
194 dma_priv
->chan_priv_tx
= (void *)p
->dma_slave_tx
;
195 dma_priv
->chan_priv_rx
= (void *)p
->dma_slave_rx
;
196 dma_priv
->slave_id_tx
= p
->dma_slave_tx
;
197 dma_priv
->slave_id_rx
= p
->dma_slave_rx
;
201 dma_priv
->alignment_shift
= 1; /* 2-byte alignment */
202 dma_priv
->filter
= shdma_chan_filter
;
204 mmc_data
->dma
= dma_priv
;
207 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
210 mmc_data
->flags
|= TMIO_MMC_BLKSZ_2BYTES
;
213 * All SDHI blocks support SDIO IRQ signalling.
215 mmc_data
->flags
|= TMIO_MMC_SDIO_IRQ
;
217 if (of_id
&& of_id
->data
) {
218 const struct sh_mobile_sdhi_of_data
*of_data
= of_id
->data
;
219 mmc_data
->flags
|= of_data
->tmio_flags
;
222 ret
= tmio_mmc_host_probe(&host
, pdev
, mmc_data
);
227 * Allow one or more specific (named) ISRs or
228 * one or more multiplexed (un-named) ISRs.
231 irq
= platform_get_irq_byname(pdev
, SH_MOBILE_SDHI_IRQ_CARD_DETECT
);
233 multiplexed_isr
= false;
234 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_card_detect_irq
, 0,
235 dev_name(&pdev
->dev
), host
);
240 irq
= platform_get_irq_byname(pdev
, SH_MOBILE_SDHI_IRQ_SDIO
);
242 multiplexed_isr
= false;
243 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_sdio_irq
, 0,
244 dev_name(&pdev
->dev
), host
);
249 irq
= platform_get_irq_byname(pdev
, SH_MOBILE_SDHI_IRQ_SDCARD
);
251 multiplexed_isr
= false;
252 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_sdcard_irq
, 0,
253 dev_name(&pdev
->dev
), host
);
256 } else if (!multiplexed_isr
) {
258 "Principal SD-card IRQ is missing among named interrupts\n");
263 if (multiplexed_isr
) {
265 irq
= platform_get_irq(pdev
, i
);
269 ret
= devm_request_irq(&pdev
->dev
, irq
, tmio_mmc_irq
, 0,
270 dev_name(&pdev
->dev
), host
);
275 /* There must be at least one IRQ source */
282 dev_info(&pdev
->dev
, "%s base at 0x%08lx clock rate %u MHz\n",
283 mmc_hostname(host
->mmc
), (unsigned long)
284 (platform_get_resource(pdev
, IORESOURCE_MEM
, 0)->start
),
285 host
->mmc
->f_max
/ 1000000);
290 tmio_mmc_host_remove(host
);
298 static int sh_mobile_sdhi_remove(struct platform_device
*pdev
)
300 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
301 struct tmio_mmc_host
*host
= mmc_priv(mmc
);
302 struct sh_mobile_sdhi_info
*p
= pdev
->dev
.platform_data
;
304 tmio_mmc_host_remove(host
);
312 static const struct dev_pm_ops tmio_mmc_dev_pm_ops
= {
313 .suspend
= tmio_mmc_host_suspend
,
314 .resume
= tmio_mmc_host_resume
,
315 .runtime_suspend
= tmio_mmc_host_runtime_suspend
,
316 .runtime_resume
= tmio_mmc_host_runtime_resume
,
319 static struct platform_driver sh_mobile_sdhi_driver
= {
321 .name
= "sh_mobile_sdhi",
322 .owner
= THIS_MODULE
,
323 .pm
= &tmio_mmc_dev_pm_ops
,
324 .of_match_table
= sh_mobile_sdhi_of_match
,
326 .probe
= sh_mobile_sdhi_probe
,
327 .remove
= sh_mobile_sdhi_remove
,
330 module_platform_driver(sh_mobile_sdhi_driver
);
332 MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
333 MODULE_AUTHOR("Magnus Damm");
334 MODULE_LICENSE("GPL v2");
335 MODULE_ALIAS("platform:sh_mobile_sdhi");