net/ps3_gelic_net: remove __dev* attributes
[linux-2.6.git] / drivers / mmc / host / sh_mobile_sdhi.c
blob0bdc146178dbcee41aa55c1f27754bb36c256d37
1 /*
2 * SuperH Mobile SDHI
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/platform_device.h>
27 #include <linux/mmc/host.h>
28 #include <linux/mmc/sh_mobile_sdhi.h>
29 #include <linux/mfd/tmio.h>
30 #include <linux/sh_dma.h>
31 #include <linux/delay.h>
33 #include "tmio_mmc.h"
35 struct sh_mobile_sdhi {
36 struct clk *clk;
37 struct tmio_mmc_data mmc_data;
38 struct sh_dmae_slave param_tx;
39 struct sh_dmae_slave param_rx;
40 struct tmio_mmc_dma dma_priv;
43 static int sh_mobile_sdhi_clk_enable(struct platform_device *pdev, unsigned int *f)
45 struct mmc_host *mmc = dev_get_drvdata(&pdev->dev);
46 struct tmio_mmc_host *host = mmc_priv(mmc);
47 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
48 int ret = clk_enable(priv->clk);
49 if (ret < 0)
50 return ret;
52 *f = clk_get_rate(priv->clk);
53 return 0;
56 static void sh_mobile_sdhi_clk_disable(struct platform_device *pdev)
58 struct mmc_host *mmc = dev_get_drvdata(&pdev->dev);
59 struct tmio_mmc_host *host = mmc_priv(mmc);
60 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
61 clk_disable(priv->clk);
64 static void sh_mobile_sdhi_set_pwr(struct platform_device *pdev, int state)
66 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
68 p->set_pwr(pdev, state);
71 static int sh_mobile_sdhi_get_cd(struct platform_device *pdev)
73 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
75 return p->get_cd(pdev);
78 static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host *host)
80 int timeout = 1000;
82 while (--timeout && !(sd_ctrl_read16(host, CTL_STATUS2) & (1 << 13)))
83 udelay(1);
85 if (!timeout) {
86 dev_warn(host->pdata->dev, "timeout waiting for SD bus idle\n");
87 return -EBUSY;
90 return 0;
93 static int sh_mobile_sdhi_write16_hook(struct tmio_mmc_host *host, int addr)
95 switch (addr)
97 case CTL_SD_CMD:
98 case CTL_STOP_INTERNAL_ACTION:
99 case CTL_XFER_BLK_COUNT:
100 case CTL_SD_CARD_CLK_CTL:
101 case CTL_SD_XFER_LEN:
102 case CTL_SD_MEM_CARD_OPT:
103 case CTL_TRANSACTION_CTL:
104 case CTL_DMA_ENABLE:
105 return sh_mobile_sdhi_wait_idle(host);
108 return 0;
111 static void sh_mobile_sdhi_cd_wakeup(const struct platform_device *pdev)
113 mmc_detect_change(dev_get_drvdata(&pdev->dev), msecs_to_jiffies(100));
116 static const struct sh_mobile_sdhi_ops sdhi_ops = {
117 .cd_wakeup = sh_mobile_sdhi_cd_wakeup,
120 static int __devinit sh_mobile_sdhi_probe(struct platform_device *pdev)
122 struct sh_mobile_sdhi *priv;
123 struct tmio_mmc_data *mmc_data;
124 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
125 struct tmio_mmc_host *host;
126 char clk_name[8];
127 int irq, ret, i = 0;
128 bool multiplexed_isr = true;
130 priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
131 if (priv == NULL) {
132 dev_err(&pdev->dev, "kzalloc failed\n");
133 return -ENOMEM;
136 mmc_data = &priv->mmc_data;
138 if (p) {
139 p->pdata = mmc_data;
140 if (p->init) {
141 ret = p->init(pdev, &sdhi_ops);
142 if (ret)
143 goto einit;
147 snprintf(clk_name, sizeof(clk_name), "sdhi%d", pdev->id);
148 priv->clk = clk_get(&pdev->dev, clk_name);
149 if (IS_ERR(priv->clk)) {
150 dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
151 ret = PTR_ERR(priv->clk);
152 goto eclkget;
155 mmc_data->clk_enable = sh_mobile_sdhi_clk_enable;
156 mmc_data->clk_disable = sh_mobile_sdhi_clk_disable;
157 mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
158 if (p) {
159 mmc_data->flags = p->tmio_flags;
160 if (mmc_data->flags & TMIO_MMC_HAS_IDLE_WAIT)
161 mmc_data->write16_hook = sh_mobile_sdhi_write16_hook;
162 mmc_data->ocr_mask = p->tmio_ocr_mask;
163 mmc_data->capabilities |= p->tmio_caps;
164 mmc_data->capabilities2 |= p->tmio_caps2;
165 mmc_data->cd_gpio = p->cd_gpio;
166 if (p->set_pwr)
167 mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
168 if (p->get_cd)
169 mmc_data->get_cd = sh_mobile_sdhi_get_cd;
171 if (p->dma_slave_tx > 0 && p->dma_slave_rx > 0) {
172 priv->param_tx.shdma_slave.slave_id = p->dma_slave_tx;
173 priv->param_rx.shdma_slave.slave_id = p->dma_slave_rx;
174 priv->dma_priv.chan_priv_tx = &priv->param_tx.shdma_slave;
175 priv->dma_priv.chan_priv_rx = &priv->param_rx.shdma_slave;
176 priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
177 mmc_data->dma = &priv->dma_priv;
182 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
183 * bus width mode.
185 mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;
188 * All SDHI blocks support SDIO IRQ signalling.
190 mmc_data->flags |= TMIO_MMC_SDIO_IRQ;
192 ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
193 if (ret < 0)
194 goto eprobe;
197 * Allow one or more specific (named) ISRs or
198 * one or more multiplexed (un-named) ISRs.
201 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
202 if (irq >= 0) {
203 multiplexed_isr = false;
204 ret = request_irq(irq, tmio_mmc_card_detect_irq, 0,
205 dev_name(&pdev->dev), host);
206 if (ret)
207 goto eirq_card_detect;
210 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
211 if (irq >= 0) {
212 multiplexed_isr = false;
213 ret = request_irq(irq, tmio_mmc_sdio_irq, 0,
214 dev_name(&pdev->dev), host);
215 if (ret)
216 goto eirq_sdio;
219 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDCARD);
220 if (irq >= 0) {
221 multiplexed_isr = false;
222 ret = request_irq(irq, tmio_mmc_sdcard_irq, 0,
223 dev_name(&pdev->dev), host);
224 if (ret)
225 goto eirq_sdcard;
226 } else if (!multiplexed_isr) {
227 dev_err(&pdev->dev,
228 "Principal SD-card IRQ is missing among named interrupts\n");
229 ret = irq;
230 goto eirq_sdcard;
233 if (multiplexed_isr) {
234 while (1) {
235 irq = platform_get_irq(pdev, i);
236 if (irq < 0)
237 break;
238 i++;
239 ret = request_irq(irq, tmio_mmc_irq, 0,
240 dev_name(&pdev->dev), host);
241 if (ret)
242 goto eirq_multiplexed;
245 /* There must be at least one IRQ source */
246 if (!i)
247 goto eirq_multiplexed;
250 dev_info(&pdev->dev, "%s base at 0x%08lx clock rate %u MHz\n",
251 mmc_hostname(host->mmc), (unsigned long)
252 (platform_get_resource(pdev, IORESOURCE_MEM, 0)->start),
253 mmc_data->hclk / 1000000);
255 return ret;
257 eirq_multiplexed:
258 while (i--) {
259 irq = platform_get_irq(pdev, i);
260 free_irq(irq, host);
262 eirq_sdcard:
263 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_SDIO);
264 if (irq >= 0)
265 free_irq(irq, host);
266 eirq_sdio:
267 irq = platform_get_irq_byname(pdev, SH_MOBILE_SDHI_IRQ_CARD_DETECT);
268 if (irq >= 0)
269 free_irq(irq, host);
270 eirq_card_detect:
271 tmio_mmc_host_remove(host);
272 eprobe:
273 clk_put(priv->clk);
274 eclkget:
275 if (p && p->cleanup)
276 p->cleanup(pdev);
277 einit:
278 kfree(priv);
279 return ret;
282 static int sh_mobile_sdhi_remove(struct platform_device *pdev)
284 struct mmc_host *mmc = platform_get_drvdata(pdev);
285 struct tmio_mmc_host *host = mmc_priv(mmc);
286 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
287 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
288 int i = 0, irq;
290 if (p)
291 p->pdata = NULL;
293 tmio_mmc_host_remove(host);
295 while (1) {
296 irq = platform_get_irq(pdev, i++);
297 if (irq < 0)
298 break;
299 free_irq(irq, host);
302 clk_put(priv->clk);
304 if (p && p->cleanup)
305 p->cleanup(pdev);
307 kfree(priv);
309 return 0;
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 const struct of_device_id sh_mobile_sdhi_of_match[] = {
320 { .compatible = "renesas,shmobile-sdhi" },
323 MODULE_DEVICE_TABLE(of, sh_mobile_sdhi_of_match);
325 static struct platform_driver sh_mobile_sdhi_driver = {
326 .driver = {
327 .name = "sh_mobile_sdhi",
328 .owner = THIS_MODULE,
329 .pm = &tmio_mmc_dev_pm_ops,
330 .of_match_table = sh_mobile_sdhi_of_match,
332 .probe = sh_mobile_sdhi_probe,
333 .remove = __devexit_p(sh_mobile_sdhi_remove),
336 module_platform_driver(sh_mobile_sdhi_driver);
338 MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
339 MODULE_AUTHOR("Magnus Damm");
340 MODULE_LICENSE("GPL v2");
341 MODULE_ALIAS("platform:sh_mobile_sdhi");