blob: 1fe32dfa7cd4913fdb5fde321c2c0fd2da90428b [file] [log] [blame]
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07001/*
2 * drivers/mmc/host/sdhci-spear.c
3 *
4 * Support of SDHCI platform devices for spear soc family
5 *
6 * Copyright (C) 2010 ST Microelectronics
7 * Viresh Kumar<viresh.kumar@st.com>
8 *
9 * Inspired by sdhci-pltfm.c
10 *
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
14 */
15
16#include <linux/clk.h>
17#include <linux/delay.h>
18#include <linux/gpio.h>
19#include <linux/highmem.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040020#include <linux/module.h>
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070021#include <linux/interrupt.h>
22#include <linux/irq.h>
23#include <linux/platform_device.h>
Viresh Kumarb70a7fa2011-11-15 16:24:40 +053024#include <linux/pm.h>
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070025#include <linux/slab.h>
26#include <linux/mmc/host.h>
27#include <linux/mmc/sdhci-spear.h>
28#include <linux/io.h>
29#include "sdhci.h"
30
31struct spear_sdhci {
32 struct clk *clk;
33 struct sdhci_plat_data *data;
34};
35
36/* sdhci ops */
37static struct sdhci_ops sdhci_pltfm_ops = {
38 /* Nothing to do for now. */
39};
40
41/* gpio card detection interrupt handler */
42static irqreturn_t sdhci_gpio_irq(int irq, void *dev_id)
43{
44 struct platform_device *pdev = dev_id;
45 struct sdhci_host *host = platform_get_drvdata(pdev);
46 struct spear_sdhci *sdhci = dev_get_platdata(&pdev->dev);
47 unsigned long gpio_irq_type;
48 int val;
49
50 val = gpio_get_value(sdhci->data->card_int_gpio);
51
52 /* val == 1 -> card removed, val == 0 -> card inserted */
53 /* if card removed - set irq for low level, else vice versa */
54 gpio_irq_type = val ? IRQF_TRIGGER_LOW : IRQF_TRIGGER_HIGH;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +020055 irq_set_irq_type(irq, gpio_irq_type);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070056
57 if (sdhci->data->card_power_gpio >= 0) {
58 if (!sdhci->data->power_always_enb) {
59 /* if card inserted, give power, otherwise remove it */
60 val = sdhci->data->power_active_high ? !val : val ;
61 gpio_set_value(sdhci->data->card_power_gpio, val);
62 }
63 }
64
65 /* inform sdhci driver about card insertion/removal */
66 tasklet_schedule(&host->card_tasklet);
67
68 return IRQ_HANDLED;
69}
70
71static int __devinit sdhci_probe(struct platform_device *pdev)
72{
73 struct sdhci_host *host;
74 struct resource *iomem;
75 struct spear_sdhci *sdhci;
76 int ret;
77
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070078 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
79 if (!iomem) {
80 ret = -ENOMEM;
81 dev_dbg(&pdev->dev, "memory resource not defined\n");
82 goto err;
83 }
84
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +053085 if (!devm_request_mem_region(&pdev->dev, iomem->start,
86 resource_size(iomem), "spear-sdhci")) {
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070087 ret = -EBUSY;
88 dev_dbg(&pdev->dev, "cannot request region\n");
89 goto err;
90 }
91
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +053092 sdhci = devm_kzalloc(&pdev->dev, sizeof(*sdhci), GFP_KERNEL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070093 if (!sdhci) {
94 ret = -ENOMEM;
95 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +053096 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070097 }
98
99 /* clk enable */
100 sdhci->clk = clk_get(&pdev->dev, NULL);
101 if (IS_ERR(sdhci->clk)) {
102 ret = PTR_ERR(sdhci->clk);
103 dev_dbg(&pdev->dev, "Error getting clock\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530104 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700105 }
106
107 ret = clk_enable(sdhci->clk);
108 if (ret) {
109 dev_dbg(&pdev->dev, "Error enabling clock\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530110 goto put_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700111 }
112
113 /* overwrite platform_data */
114 sdhci->data = dev_get_platdata(&pdev->dev);
115 pdev->dev.platform_data = sdhci;
116
117 if (pdev->dev.parent)
118 host = sdhci_alloc_host(pdev->dev.parent, 0);
119 else
120 host = sdhci_alloc_host(&pdev->dev, 0);
121
122 if (IS_ERR(host)) {
123 ret = PTR_ERR(host);
124 dev_dbg(&pdev->dev, "error allocating host\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530125 goto disable_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700126 }
127
128 host->hw_name = "sdhci";
129 host->ops = &sdhci_pltfm_ops;
130 host->irq = platform_get_irq(pdev, 0);
131 host->quirks = SDHCI_QUIRK_BROKEN_ADMA;
132
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530133 host->ioaddr = devm_ioremap(&pdev->dev, iomem->start,
134 resource_size(iomem));
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700135 if (!host->ioaddr) {
136 ret = -ENOMEM;
137 dev_dbg(&pdev->dev, "failed to remap registers\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530138 goto free_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700139 }
140
141 ret = sdhci_add_host(host);
142 if (ret) {
143 dev_dbg(&pdev->dev, "error adding host\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530144 goto free_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700145 }
146
147 platform_set_drvdata(pdev, host);
148
149 /*
150 * It is optional to use GPIOs for sdhci Power control & sdhci card
151 * interrupt detection. If sdhci->data is NULL, then use original sdhci
152 * lines otherwise GPIO lines.
153 * If GPIO is selected for power control, then power should be disabled
154 * after card removal and should be enabled when card insertion
155 * interrupt occurs
156 */
157 if (!sdhci->data)
158 return 0;
159
160 if (sdhci->data->card_power_gpio >= 0) {
161 int val = 0;
162
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530163 ret = devm_gpio_request(&pdev->dev,
164 sdhci->data->card_power_gpio, "sdhci");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700165 if (ret < 0) {
166 dev_dbg(&pdev->dev, "gpio request fail: %d\n",
167 sdhci->data->card_power_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530168 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700169 }
170
171 if (sdhci->data->power_always_enb)
172 val = sdhci->data->power_active_high;
173 else
174 val = !sdhci->data->power_active_high;
175
176 ret = gpio_direction_output(sdhci->data->card_power_gpio, val);
177 if (ret) {
178 dev_dbg(&pdev->dev, "gpio set direction fail: %d\n",
179 sdhci->data->card_power_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530180 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700181 }
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700182 }
183
184 if (sdhci->data->card_int_gpio >= 0) {
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530185 ret = devm_gpio_request(&pdev->dev, sdhci->data->card_int_gpio,
186 "sdhci");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700187 if (ret < 0) {
188 dev_dbg(&pdev->dev, "gpio request fail: %d\n",
189 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530190 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700191 }
192
193 ret = gpio_direction_input(sdhci->data->card_int_gpio);
194 if (ret) {
195 dev_dbg(&pdev->dev, "gpio set direction fail: %d\n",
196 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530197 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700198 }
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530199 ret = devm_request_irq(&pdev->dev,
200 gpio_to_irq(sdhci->data->card_int_gpio),
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700201 sdhci_gpio_irq, IRQF_TRIGGER_LOW,
202 mmc_hostname(host->mmc), pdev);
203 if (ret) {
204 dev_dbg(&pdev->dev, "gpio request irq fail: %d\n",
205 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530206 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700207 }
208
209 }
210
211 return 0;
212
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530213set_drvdata:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700214 platform_set_drvdata(pdev, NULL);
215 sdhci_remove_host(host, 1);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530216free_host:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700217 sdhci_free_host(host);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530218disable_clk:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700219 clk_disable(sdhci->clk);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530220put_clk:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700221 clk_put(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700222err:
223 dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
224 return ret;
225}
226
227static int __devexit sdhci_remove(struct platform_device *pdev)
228{
229 struct sdhci_host *host = platform_get_drvdata(pdev);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700230 struct spear_sdhci *sdhci = dev_get_platdata(&pdev->dev);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530231 int dead = 0;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700232 u32 scratch;
233
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700234 platform_set_drvdata(pdev, NULL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700235 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
236 if (scratch == (u32)-1)
237 dead = 1;
238
239 sdhci_remove_host(host, dead);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700240 sdhci_free_host(host);
241 clk_disable(sdhci->clk);
242 clk_put(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700243
244 return 0;
245}
246
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530247#ifdef CONFIG_PM
248static int sdhci_suspend(struct device *dev)
249{
250 struct sdhci_host *host = dev_get_drvdata(dev);
251 struct spear_sdhci *sdhci = dev_get_platdata(dev);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530252 int ret;
253
Viresh Kumar984589e2012-01-04 11:48:42 +0530254 ret = sdhci_suspend_host(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530255 if (!ret)
256 clk_disable(sdhci->clk);
257
258 return ret;
259}
260
261static int sdhci_resume(struct device *dev)
262{
263 struct sdhci_host *host = dev_get_drvdata(dev);
264 struct spear_sdhci *sdhci = dev_get_platdata(dev);
265 int ret;
266
267 ret = clk_enable(sdhci->clk);
268 if (ret) {
269 dev_dbg(dev, "Resume: Error enabling clock\n");
270 return ret;
271 }
272
273 return sdhci_resume_host(host);
274}
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530275#endif
276
Shiraz Hashim4b1a6172012-02-24 11:55:35 +0530277static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
278
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700279static struct platform_driver sdhci_driver = {
280 .driver = {
281 .name = "sdhci",
282 .owner = THIS_MODULE,
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530283 .pm = &sdhci_pm_ops,
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700284 },
285 .probe = sdhci_probe,
286 .remove = __devexit_p(sdhci_remove),
287};
288
Axel Lind1f81a62011-11-26 12:55:43 +0800289module_platform_driver(sdhci_driver);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700290
291MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
292MODULE_AUTHOR("Viresh Kumar <viresh.kumar@st.com>");
293MODULE_LICENSE("GPL v2");