Documentation: configfs examples crash fix
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / mmc / host / sh_mobile_sdhi.c
blobb3654293017bca33d4de5b77d0f654e07fb92031
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/platform_device.h>
25 #include <linux/mmc/host.h>
26 #include <linux/mmc/sh_mobile_sdhi.h>
27 #include <linux/mfd/tmio.h>
28 #include <linux/sh_dma.h>
30 #include "tmio_mmc.h"
32 struct sh_mobile_sdhi {
33 struct clk *clk;
34 struct tmio_mmc_data mmc_data;
35 struct sh_dmae_slave param_tx;
36 struct sh_dmae_slave param_rx;
37 struct tmio_mmc_dma dma_priv;
40 static void sh_mobile_sdhi_set_pwr(struct platform_device *pdev, int state)
42 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
44 if (p && p->set_pwr)
45 p->set_pwr(pdev, state);
48 static int sh_mobile_sdhi_get_cd(struct platform_device *pdev)
50 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
52 if (p && p->get_cd)
53 return p->get_cd(pdev);
54 else
55 return -ENOSYS;
58 static int __devinit sh_mobile_sdhi_probe(struct platform_device *pdev)
60 struct sh_mobile_sdhi *priv;
61 struct tmio_mmc_data *mmc_data;
62 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
63 struct tmio_mmc_host *host;
64 char clk_name[8];
65 int i, irq, ret;
67 priv = kzalloc(sizeof(struct sh_mobile_sdhi), GFP_KERNEL);
68 if (priv == NULL) {
69 dev_err(&pdev->dev, "kzalloc failed\n");
70 return -ENOMEM;
73 mmc_data = &priv->mmc_data;
74 p->pdata = mmc_data;
76 snprintf(clk_name, sizeof(clk_name), "sdhi%d", pdev->id);
77 priv->clk = clk_get(&pdev->dev, clk_name);
78 if (IS_ERR(priv->clk)) {
79 dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
80 ret = PTR_ERR(priv->clk);
81 goto eclkget;
84 clk_enable(priv->clk);
86 mmc_data->hclk = clk_get_rate(priv->clk);
87 mmc_data->set_pwr = sh_mobile_sdhi_set_pwr;
88 mmc_data->get_cd = sh_mobile_sdhi_get_cd;
89 mmc_data->capabilities = MMC_CAP_MMC_HIGHSPEED;
90 if (p) {
91 mmc_data->flags = p->tmio_flags;
92 mmc_data->ocr_mask = p->tmio_ocr_mask;
93 mmc_data->capabilities |= p->tmio_caps;
95 if (p->dma_slave_tx >= 0 && p->dma_slave_rx >= 0) {
96 priv->param_tx.slave_id = p->dma_slave_tx;
97 priv->param_rx.slave_id = p->dma_slave_rx;
98 priv->dma_priv.chan_priv_tx = &priv->param_tx;
99 priv->dma_priv.chan_priv_rx = &priv->param_rx;
100 priv->dma_priv.alignment_shift = 1; /* 2-byte alignment */
101 mmc_data->dma = &priv->dma_priv;
106 * All SDHI blocks support 2-byte and larger block sizes in 4-bit
107 * bus width mode.
109 mmc_data->flags |= TMIO_MMC_BLKSZ_2BYTES;
112 * All SDHI blocks support SDIO IRQ signalling.
114 mmc_data->flags |= TMIO_MMC_SDIO_IRQ;
116 ret = tmio_mmc_host_probe(&host, pdev, mmc_data);
117 if (ret < 0)
118 goto eprobe;
120 for (i = 0; i < 3; i++) {
121 irq = platform_get_irq(pdev, i);
122 if (irq < 0) {
123 if (i) {
124 continue;
125 } else {
126 ret = irq;
127 goto eirq;
130 ret = request_irq(irq, tmio_mmc_irq, 0,
131 dev_name(&pdev->dev), host);
132 if (ret) {
133 while (i--) {
134 irq = platform_get_irq(pdev, i);
135 if (irq >= 0)
136 free_irq(irq, host);
138 goto eirq;
141 dev_info(&pdev->dev, "%s base at 0x%08lx clock rate %u MHz\n",
142 mmc_hostname(host->mmc), (unsigned long)
143 (platform_get_resource(pdev,IORESOURCE_MEM, 0)->start),
144 mmc_data->hclk / 1000000);
146 return ret;
148 eirq:
149 tmio_mmc_host_remove(host);
150 eprobe:
151 clk_disable(priv->clk);
152 clk_put(priv->clk);
153 eclkget:
154 kfree(priv);
155 return ret;
158 static int sh_mobile_sdhi_remove(struct platform_device *pdev)
160 struct mmc_host *mmc = platform_get_drvdata(pdev);
161 struct tmio_mmc_host *host = mmc_priv(mmc);
162 struct sh_mobile_sdhi *priv = container_of(host->pdata, struct sh_mobile_sdhi, mmc_data);
163 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
164 int i, irq;
166 p->pdata = NULL;
168 for (i = 0; i < 3; i++) {
169 irq = platform_get_irq(pdev, i);
170 if (irq >= 0)
171 free_irq(irq, host);
174 tmio_mmc_host_remove(host);
175 clk_disable(priv->clk);
176 clk_put(priv->clk);
177 kfree(priv);
179 return 0;
182 static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
183 .suspend = tmio_mmc_host_suspend,
184 .resume = tmio_mmc_host_resume,
185 .runtime_suspend = tmio_mmc_host_runtime_suspend,
186 .runtime_resume = tmio_mmc_host_runtime_resume,
189 static struct platform_driver sh_mobile_sdhi_driver = {
190 .driver = {
191 .name = "sh_mobile_sdhi",
192 .owner = THIS_MODULE,
193 .pm = &tmio_mmc_dev_pm_ops,
195 .probe = sh_mobile_sdhi_probe,
196 .remove = __devexit_p(sh_mobile_sdhi_remove),
199 static int __init sh_mobile_sdhi_init(void)
201 return platform_driver_register(&sh_mobile_sdhi_driver);
204 static void __exit sh_mobile_sdhi_exit(void)
206 platform_driver_unregister(&sh_mobile_sdhi_driver);
209 module_init(sh_mobile_sdhi_init);
210 module_exit(sh_mobile_sdhi_exit);
212 MODULE_DESCRIPTION("SuperH Mobile SDHI driver");
213 MODULE_AUTHOR("Magnus Damm");
214 MODULE_LICENSE("GPL v2");
215 MODULE_ALIAS("platform:sh_mobile_sdhi");