blob: c6ece0bd03b3317b9866009895e20efe10482b9d [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
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050074static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
Viresh Kumar067bf742012-09-28 15:58:22 +053075{
76 struct device_node *np = pdev->dev.of_node;
77 struct sdhci_plat_data *pdata = NULL;
78 int cd_gpio;
79
80 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
81 if (!gpio_is_valid(cd_gpio))
82 cd_gpio = -1;
83
84 /* If pdata is required */
85 if (cd_gpio != -1) {
86 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
87 if (!pdata) {
88 dev_err(&pdev->dev, "DT: kzalloc failed\n");
89 return ERR_PTR(-ENOMEM);
90 }
91 }
92
93 pdata->card_int_gpio = cd_gpio;
94
95 return pdata;
96}
97#else
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050098static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
Viresh Kumar067bf742012-09-28 15:58:22 +053099{
100 return ERR_PTR(-ENOSYS);
101}
102#endif
103
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500104static int sdhci_probe(struct platform_device *pdev)
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700105{
Viresh Kumar067bf742012-09-28 15:58:22 +0530106 struct device_node *np = pdev->dev.of_node;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700107 struct sdhci_host *host;
108 struct resource *iomem;
109 struct spear_sdhci *sdhci;
110 int ret;
111
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700112 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
113 if (!iomem) {
114 ret = -ENOMEM;
115 dev_dbg(&pdev->dev, "memory resource not defined\n");
116 goto err;
117 }
118
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530119 if (!devm_request_mem_region(&pdev->dev, iomem->start,
120 resource_size(iomem), "spear-sdhci")) {
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700121 ret = -EBUSY;
122 dev_dbg(&pdev->dev, "cannot request region\n");
123 goto err;
124 }
125
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530126 sdhci = devm_kzalloc(&pdev->dev, sizeof(*sdhci), GFP_KERNEL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700127 if (!sdhci) {
128 ret = -ENOMEM;
129 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530130 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700131 }
132
133 /* clk enable */
134 sdhci->clk = clk_get(&pdev->dev, NULL);
135 if (IS_ERR(sdhci->clk)) {
136 ret = PTR_ERR(sdhci->clk);
137 dev_dbg(&pdev->dev, "Error getting clock\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530138 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700139 }
140
Viresh Kumarda764f92012-09-28 15:58:23 +0530141 ret = clk_prepare_enable(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700142 if (ret) {
143 dev_dbg(&pdev->dev, "Error enabling clock\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530144 goto put_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700145 }
146
Vipul Kumar Samar257f9df2012-11-08 20:39:09 +0530147 ret = clk_set_rate(sdhci->clk, 50000000);
148 if (ret)
149 dev_dbg(&pdev->dev, "Error setting desired clk, clk=%lu\n",
150 clk_get_rate(sdhci->clk));
151
Viresh Kumar067bf742012-09-28 15:58:22 +0530152 if (np) {
153 sdhci->data = sdhci_probe_config_dt(pdev);
154 if (IS_ERR(sdhci->data)) {
155 dev_err(&pdev->dev, "DT: Failed to get pdata\n");
156 return -ENODEV;
157 }
158 } else {
159 sdhci->data = dev_get_platdata(&pdev->dev);
160 }
161
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700162 pdev->dev.platform_data = sdhci;
163
164 if (pdev->dev.parent)
165 host = sdhci_alloc_host(pdev->dev.parent, 0);
166 else
167 host = sdhci_alloc_host(&pdev->dev, 0);
168
169 if (IS_ERR(host)) {
170 ret = PTR_ERR(host);
171 dev_dbg(&pdev->dev, "error allocating host\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530172 goto disable_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700173 }
174
175 host->hw_name = "sdhci";
176 host->ops = &sdhci_pltfm_ops;
177 host->irq = platform_get_irq(pdev, 0);
178 host->quirks = SDHCI_QUIRK_BROKEN_ADMA;
179
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530180 host->ioaddr = devm_ioremap(&pdev->dev, iomem->start,
181 resource_size(iomem));
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700182 if (!host->ioaddr) {
183 ret = -ENOMEM;
184 dev_dbg(&pdev->dev, "failed to remap registers\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530185 goto free_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700186 }
187
188 ret = sdhci_add_host(host);
189 if (ret) {
190 dev_dbg(&pdev->dev, "error adding host\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530191 goto free_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700192 }
193
194 platform_set_drvdata(pdev, host);
195
196 /*
197 * It is optional to use GPIOs for sdhci Power control & sdhci card
198 * interrupt detection. If sdhci->data is NULL, then use original sdhci
199 * lines otherwise GPIO lines.
200 * If GPIO is selected for power control, then power should be disabled
201 * after card removal and should be enabled when card insertion
202 * interrupt occurs
203 */
204 if (!sdhci->data)
205 return 0;
206
207 if (sdhci->data->card_power_gpio >= 0) {
208 int val = 0;
209
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530210 ret = devm_gpio_request(&pdev->dev,
211 sdhci->data->card_power_gpio, "sdhci");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700212 if (ret < 0) {
213 dev_dbg(&pdev->dev, "gpio request fail: %d\n",
214 sdhci->data->card_power_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530215 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700216 }
217
218 if (sdhci->data->power_always_enb)
219 val = sdhci->data->power_active_high;
220 else
221 val = !sdhci->data->power_active_high;
222
223 ret = gpio_direction_output(sdhci->data->card_power_gpio, val);
224 if (ret) {
225 dev_dbg(&pdev->dev, "gpio set direction fail: %d\n",
226 sdhci->data->card_power_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530227 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700228 }
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700229 }
230
231 if (sdhci->data->card_int_gpio >= 0) {
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530232 ret = devm_gpio_request(&pdev->dev, sdhci->data->card_int_gpio,
233 "sdhci");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700234 if (ret < 0) {
235 dev_dbg(&pdev->dev, "gpio request fail: %d\n",
236 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530237 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700238 }
239
240 ret = gpio_direction_input(sdhci->data->card_int_gpio);
241 if (ret) {
242 dev_dbg(&pdev->dev, "gpio set direction fail: %d\n",
243 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530244 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700245 }
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530246 ret = devm_request_irq(&pdev->dev,
247 gpio_to_irq(sdhci->data->card_int_gpio),
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700248 sdhci_gpio_irq, IRQF_TRIGGER_LOW,
249 mmc_hostname(host->mmc), pdev);
250 if (ret) {
251 dev_dbg(&pdev->dev, "gpio request irq fail: %d\n",
252 sdhci->data->card_int_gpio);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530253 goto set_drvdata;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700254 }
255
256 }
257
258 return 0;
259
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530260set_drvdata:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700261 platform_set_drvdata(pdev, NULL);
262 sdhci_remove_host(host, 1);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530263free_host:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700264 sdhci_free_host(host);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530265disable_clk:
Viresh Kumarda764f92012-09-28 15:58:23 +0530266 clk_disable_unprepare(sdhci->clk);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530267put_clk:
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700268 clk_put(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700269err:
270 dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
271 return ret;
272}
273
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500274static int sdhci_remove(struct platform_device *pdev)
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700275{
276 struct sdhci_host *host = platform_get_drvdata(pdev);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700277 struct spear_sdhci *sdhci = dev_get_platdata(&pdev->dev);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530278 int dead = 0;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700279 u32 scratch;
280
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700281 platform_set_drvdata(pdev, NULL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700282 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
283 if (scratch == (u32)-1)
284 dead = 1;
285
286 sdhci_remove_host(host, dead);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700287 sdhci_free_host(host);
Viresh Kumarda764f92012-09-28 15:58:23 +0530288 clk_disable_unprepare(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700289 clk_put(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700290
291 return 0;
292}
293
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530294#ifdef CONFIG_PM
295static int sdhci_suspend(struct device *dev)
296{
297 struct sdhci_host *host = dev_get_drvdata(dev);
298 struct spear_sdhci *sdhci = dev_get_platdata(dev);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530299 int ret;
300
Viresh Kumar984589e2012-01-04 11:48:42 +0530301 ret = sdhci_suspend_host(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530302 if (!ret)
Viresh Kumar06960a12012-11-08 20:39:10 +0530303 clk_disable(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530304
305 return ret;
306}
307
308static int sdhci_resume(struct device *dev)
309{
310 struct sdhci_host *host = dev_get_drvdata(dev);
311 struct spear_sdhci *sdhci = dev_get_platdata(dev);
312 int ret;
313
Viresh Kumar06960a12012-11-08 20:39:10 +0530314 ret = clk_enable(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530315 if (ret) {
316 dev_dbg(dev, "Resume: Error enabling clock\n");
317 return ret;
318 }
319
320 return sdhci_resume_host(host);
321}
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530322#endif
323
Shiraz Hashim4b1a6172012-02-24 11:55:35 +0530324static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
325
Viresh Kumar067bf742012-09-28 15:58:22 +0530326#ifdef CONFIG_OF
327static const struct of_device_id sdhci_spear_id_table[] = {
328 { .compatible = "st,spear300-sdhci" },
329 {}
330};
331MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
332#endif
333
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700334static struct platform_driver sdhci_driver = {
335 .driver = {
336 .name = "sdhci",
337 .owner = THIS_MODULE,
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530338 .pm = &sdhci_pm_ops,
Viresh Kumar067bf742012-09-28 15:58:22 +0530339 .of_match_table = of_match_ptr(sdhci_spear_id_table),
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700340 },
341 .probe = sdhci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500342 .remove = sdhci_remove,
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700343};
344
Axel Lind1f81a62011-11-26 12:55:43 +0800345module_platform_driver(sdhci_driver);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700346
347MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
Viresh Kumar10d89352012-06-20 12:53:02 -0700348MODULE_AUTHOR("Viresh Kumar <viresh.linux@gmail.com>");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700349MODULE_LICENSE("GPL v2");