blob: fea8bf92efabcd57e2f059bc766cce97eff50b8f [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
Viresh Kumar10d89352012-06-20 12:53:02 -07007 * Viresh Kumar <viresh.linux@gmail.com>
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07008 *
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>
Viresh Kumar067bf742012-09-28 15:58:22 +053023#include <linux/of.h>
24#include <linux/of_gpio.h>
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070025#include <linux/platform_device.h>
Viresh Kumarb70a7fa2011-11-15 16:24:40 +053026#include <linux/pm.h>
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070027#include <linux/slab.h>
28#include <linux/mmc/host.h>
29#include <linux/mmc/sdhci-spear.h>
30#include <linux/io.h>
31#include "sdhci.h"
32
33struct spear_sdhci {
34 struct clk *clk;
35 struct sdhci_plat_data *data;
36};
37
38/* sdhci ops */
39static struct sdhci_ops sdhci_pltfm_ops = {
40 /* Nothing to do for now. */
41};
42
43/* gpio card detection interrupt handler */
44static irqreturn_t sdhci_gpio_irq(int irq, void *dev_id)
45{
46 struct platform_device *pdev = dev_id;
47 struct sdhci_host *host = platform_get_drvdata(pdev);
48 struct spear_sdhci *sdhci = dev_get_platdata(&pdev->dev);
49 unsigned long gpio_irq_type;
50 int val;
51
52 val = gpio_get_value(sdhci->data->card_int_gpio);
53
54 /* val == 1 -> card removed, val == 0 -> card inserted */
55 /* if card removed - set irq for low level, else vice versa */
56 gpio_irq_type = val ? IRQF_TRIGGER_LOW : IRQF_TRIGGER_HIGH;
Thomas Gleixnerdced35a2011-03-28 17:49:12 +020057 irq_set_irq_type(irq, gpio_irq_type);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070058
59 if (sdhci->data->card_power_gpio >= 0) {
60 if (!sdhci->data->power_always_enb) {
61 /* if card inserted, give power, otherwise remove it */
62 val = sdhci->data->power_active_high ? !val : val ;
63 gpio_set_value(sdhci->data->card_power_gpio, val);
64 }
65 }
66
67 /* inform sdhci driver about card insertion/removal */
68 tasklet_schedule(&host->card_tasklet);
69
70 return IRQ_HANDLED;
71}
72
Viresh Kumar067bf742012-09-28 15:58:22 +053073#ifdef CONFIG_OF
74static struct sdhci_plat_data * __devinit
75sdhci_probe_config_dt(struct platform_device *pdev)
76{
77 struct device_node *np = pdev->dev.of_node;
78 struct sdhci_plat_data *pdata = NULL;
79 int cd_gpio;
80
81 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
82 if (!gpio_is_valid(cd_gpio))
83 cd_gpio = -1;
84
85 /* If pdata is required */
86 if (cd_gpio != -1) {
87 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
88 if (!pdata) {
89 dev_err(&pdev->dev, "DT: kzalloc failed\n");
90 return ERR_PTR(-ENOMEM);
91 }
92 }
93
94 pdata->card_int_gpio = cd_gpio;
95
96 return pdata;
97}
98#else
99static struct sdhci_plat_data * __devinit
100sdhci_probe_config_dt(struct platform_device *pdev)
101{
102 return ERR_PTR(-ENOSYS);
103}
104#endif
105
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700106static int __devinit sdhci_probe(struct platform_device *pdev)
107{
Viresh Kumar067bf742012-09-28 15:58:22 +0530108 struct device_node *np = pdev->dev.of_node;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700109 struct sdhci_host *host;
110 struct resource *iomem;
111 struct spear_sdhci *sdhci;
112 int ret;
113
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700114 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
115 if (!iomem) {
116 ret = -ENOMEM;
117 dev_dbg(&pdev->dev, "memory resource not defined\n");
118 goto err;
119 }
120
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530121 if (!devm_request_mem_region(&pdev->dev, iomem->start,
122 resource_size(iomem), "spear-sdhci")) {
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700123 ret = -EBUSY;
124 dev_dbg(&pdev->dev, "cannot request region\n");
125 goto err;
126 }
127
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530128 sdhci = devm_kzalloc(&pdev->dev, sizeof(*sdhci), GFP_KERNEL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700129 if (!sdhci) {
130 ret = -ENOMEM;
131 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530132 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700133 }
134
135 /* clk enable */
136 sdhci->clk = clk_get(&pdev->dev, NULL);
137 if (IS_ERR(sdhci->clk)) {
138 ret = PTR_ERR(sdhci->clk);
139 dev_dbg(&pdev->dev, "Error getting clock\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530140 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700141 }
142
Viresh Kumarda764f92012-09-28 15:58:23 +0530143 ret = clk_prepare_enable(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700144 if (ret) {
145 dev_dbg(&pdev->dev, "Error enabling clock\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530146 goto put_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700147 }
148
Vipul Kumar Samar257f9df2012-11-08 20:39:09 +0530149 ret = clk_set_rate(sdhci->clk, 50000000);
150 if (ret)
151 dev_dbg(&pdev->dev, "Error setting desired clk, clk=%lu\n",
152 clk_get_rate(sdhci->clk));
153
Viresh Kumar067bf742012-09-28 15:58:22 +0530154 if (np) {
155 sdhci->data = sdhci_probe_config_dt(pdev);
156 if (IS_ERR(sdhci->data)) {
157 dev_err(&pdev->dev, "DT: Failed to get pdata\n");
158 return -ENODEV;
159 }
160 } else {
161 sdhci->data = dev_get_platdata(&pdev->dev);
162 }
163
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700164 pdev->dev.platform_data = sdhci;
165
166 if (pdev->dev.parent)
167 host = sdhci_alloc_host(pdev->dev.parent, 0);
168 else
169 host = sdhci_alloc_host(&pdev->dev, 0);
170
171 if (IS_ERR(host)) {
172 ret = PTR_ERR(host);
173 dev_dbg(&pdev->dev, "error allocating host\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530174 goto disable_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700175 }
176
177 host->hw_name = "sdhci";
178 host->ops = &sdhci_pltfm_ops;
179 host->irq = platform_get_irq(pdev, 0);
180 host->quirks = SDHCI_QUIRK_BROKEN_ADMA;
181
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530182 host->ioaddr = devm_ioremap(&pdev->dev, iomem->start,
183 resource_size(iomem));
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700184 if (!host->ioaddr) {
185 ret = -ENOMEM;
186 dev_dbg(&pdev->dev, "failed to remap registers\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530187 goto free_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700188 }
189
190 ret = sdhci_add_host(host);
191 if (ret) {
192 dev_dbg(&pdev->dev, "error adding host\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530193 goto free_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700194 }
195
196 platform_set_drvdata(pdev, host);
197
198 /*
199 * It is optional to use GPIOs for sdhci Power control & sdhci card
200 * interrupt detection. If sdhci->data is NULL, then use original sdhci
201 * lines otherwise GPIO lines.
202 * If GPIO is selected for power control, then power should be disabled
203 * after card removal and should be enabled when card insertion
204 * interrupt occurs
205 */
206 if (!sdhci->data)
207 return 0;
208
209 if (sdhci->data->card_power_gpio >= 0) {
210 int val = 0;
211
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530212 ret = devm_gpio_request(&pdev->dev,
213 sdhci->data->card_power_gpio, "sdhci");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700214 if (ret < 0) {
215 dev_dbg(&pdev->dev, "gpio request fail: %d\n",
216 sdhci->data->card_power_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530217 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700218 }
219
220 if (sdhci->data->power_always_enb)
221 val = sdhci->data->power_active_high;
222 else
223 val = !sdhci->data->power_active_high;
224
225 ret = gpio_direction_output(sdhci->data->card_power_gpio, val);
226 if (ret) {
227 dev_dbg(&pdev->dev, "gpio set direction fail: %d\n",
228 sdhci->data->card_power_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530229 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700230 }
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700231 }
232
233 if (sdhci->data->card_int_gpio >= 0) {
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530234 ret = devm_gpio_request(&pdev->dev, sdhci->data->card_int_gpio,
235 "sdhci");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700236 if (ret < 0) {
237 dev_dbg(&pdev->dev, "gpio request fail: %d\n",
238 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530239 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700240 }
241
242 ret = gpio_direction_input(sdhci->data->card_int_gpio);
243 if (ret) {
244 dev_dbg(&pdev->dev, "gpio set direction fail: %d\n",
245 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530246 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700247 }
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530248 ret = devm_request_irq(&pdev->dev,
249 gpio_to_irq(sdhci->data->card_int_gpio),
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700250 sdhci_gpio_irq, IRQF_TRIGGER_LOW,
251 mmc_hostname(host->mmc), pdev);
252 if (ret) {
253 dev_dbg(&pdev->dev, "gpio request irq fail: %d\n",
254 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530255 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700256 }
257
258 }
259
260 return 0;
261
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530262set_drvdata:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700263 platform_set_drvdata(pdev, NULL);
264 sdhci_remove_host(host, 1);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530265free_host:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700266 sdhci_free_host(host);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530267disable_clk:
Viresh Kumarda764f92012-09-28 15:58:23 +0530268 clk_disable_unprepare(sdhci->clk);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530269put_clk:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700270 clk_put(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700271err:
272 dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
273 return ret;
274}
275
276static int __devexit sdhci_remove(struct platform_device *pdev)
277{
278 struct sdhci_host *host = platform_get_drvdata(pdev);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700279 struct spear_sdhci *sdhci = dev_get_platdata(&pdev->dev);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530280 int dead = 0;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700281 u32 scratch;
282
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700283 platform_set_drvdata(pdev, NULL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700284 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
285 if (scratch == (u32)-1)
286 dead = 1;
287
288 sdhci_remove_host(host, dead);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700289 sdhci_free_host(host);
Viresh Kumarda764f92012-09-28 15:58:23 +0530290 clk_disable_unprepare(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700291 clk_put(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700292
293 return 0;
294}
295
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530296#ifdef CONFIG_PM
297static int sdhci_suspend(struct device *dev)
298{
299 struct sdhci_host *host = dev_get_drvdata(dev);
300 struct spear_sdhci *sdhci = dev_get_platdata(dev);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530301 int ret;
302
Viresh Kumar984589e2012-01-04 11:48:42 +0530303 ret = sdhci_suspend_host(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530304 if (!ret)
Viresh Kumarda764f92012-09-28 15:58:23 +0530305 clk_disable_unprepare(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530306
307 return ret;
308}
309
310static int sdhci_resume(struct device *dev)
311{
312 struct sdhci_host *host = dev_get_drvdata(dev);
313 struct spear_sdhci *sdhci = dev_get_platdata(dev);
314 int ret;
315
Viresh Kumarda764f92012-09-28 15:58:23 +0530316 ret = clk_prepare_enable(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530317 if (ret) {
318 dev_dbg(dev, "Resume: Error enabling clock\n");
319 return ret;
320 }
321
322 return sdhci_resume_host(host);
323}
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530324#endif
325
Shiraz Hashim4b1a6172012-02-24 11:55:35 +0530326static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
327
Viresh Kumar067bf742012-09-28 15:58:22 +0530328#ifdef CONFIG_OF
329static const struct of_device_id sdhci_spear_id_table[] = {
330 { .compatible = "st,spear300-sdhci" },
331 {}
332};
333MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
334#endif
335
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700336static struct platform_driver sdhci_driver = {
337 .driver = {
338 .name = "sdhci",
339 .owner = THIS_MODULE,
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530340 .pm = &sdhci_pm_ops,
Viresh Kumar067bf742012-09-28 15:58:22 +0530341 .of_match_table = of_match_ptr(sdhci_spear_id_table),
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700342 },
343 .probe = sdhci_probe,
344 .remove = __devexit_p(sdhci_remove),
345};
346
Axel Lind1f81a62011-11-26 12:55:43 +0800347module_platform_driver(sdhci_driver);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700348
349MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
Viresh Kumar10d89352012-06-20 12:53:02 -0700350MODULE_AUTHOR("Viresh Kumar <viresh.linux@gmail.com>");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700351MODULE_LICENSE("GPL v2");