Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/shli/md
[linux-2.6-block.git] / drivers / mmc / host / sdhci-spear.c
CommitLineData
c63b3cba
VK
1/*
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
da89947b 7 * Viresh Kumar <vireshk@kernel.org>
c63b3cba
VK
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>
88b47679 20#include <linux/module.h>
c63b3cba
VK
21#include <linux/interrupt.h>
22#include <linux/irq.h>
067bf748
VK
23#include <linux/of.h>
24#include <linux/of_gpio.h>
c63b3cba 25#include <linux/platform_device.h>
b70a7fab 26#include <linux/pm.h>
c63b3cba
VK
27#include <linux/slab.h>
28#include <linux/mmc/host.h>
b42b9b12 29#include <linux/mmc/slot-gpio.h>
c63b3cba
VK
30#include <linux/io.h>
31#include "sdhci.h"
32
33struct spear_sdhci {
34 struct clk *clk;
03a6d291 35 int card_int_gpio;
c63b3cba
VK
36};
37
38/* sdhci ops */
c915568d 39static const struct sdhci_ops sdhci_pltfm_ops = {
1771059c 40 .set_clock = sdhci_set_clock,
2317f56c 41 .set_bus_width = sdhci_set_bus_width,
03231f9b 42 .reset = sdhci_reset,
96d7b78c 43 .set_uhs_signaling = sdhci_set_uhs_signaling,
c63b3cba
VK
44};
45
03a6d291
UH
46static void sdhci_probe_config_dt(struct device_node *np,
47 struct spear_sdhci *host)
067bf748 48{
067bf748
VK
49 int cd_gpio;
50
51 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
52 if (!gpio_is_valid(cd_gpio))
53 cd_gpio = -1;
54
03a6d291 55 host->card_int_gpio = cd_gpio;
067bf748 56}
067bf748 57
c3be1efd 58static int sdhci_probe(struct platform_device *pdev)
c63b3cba
VK
59{
60 struct sdhci_host *host;
61 struct resource *iomem;
62 struct spear_sdhci *sdhci;
fcdb7c8f 63 struct device *dev;
c63b3cba
VK
64 int ret;
65
fcdb7c8f
RK
66 dev = pdev->dev.parent ? pdev->dev.parent : &pdev->dev;
67 host = sdhci_alloc_host(dev, sizeof(*sdhci));
68 if (IS_ERR(host)) {
69 ret = PTR_ERR(host);
c63b3cba 70 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
6ebaf8f2 71 goto err;
c63b3cba
VK
72 }
73
475d9e3e
RK
74 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
75 host->ioaddr = devm_ioremap_resource(&pdev->dev, iomem);
76 if (IS_ERR(host->ioaddr)) {
77 ret = PTR_ERR(host->ioaddr);
78 dev_dbg(&pdev->dev, "unable to map iomem: %d\n", ret);
79 goto err_host;
80 }
81
82 host->hw_name = "sdhci";
83 host->ops = &sdhci_pltfm_ops;
84 host->irq = platform_get_irq(pdev, 0);
682798a5
AY
85 if (host->irq <= 0) {
86 ret = -EINVAL;
87 goto err_host;
88 }
475d9e3e
RK
89 host->quirks = SDHCI_QUIRK_BROKEN_ADMA;
90
fcdb7c8f
RK
91 sdhci = sdhci_priv(host);
92
c63b3cba 93 /* clk enable */
142dbab9 94 sdhci->clk = devm_clk_get(&pdev->dev, NULL);
c63b3cba
VK
95 if (IS_ERR(sdhci->clk)) {
96 ret = PTR_ERR(sdhci->clk);
97 dev_dbg(&pdev->dev, "Error getting clock\n");
fcdb7c8f 98 goto err_host;
c63b3cba
VK
99 }
100
da764f97 101 ret = clk_prepare_enable(sdhci->clk);
c63b3cba
VK
102 if (ret) {
103 dev_dbg(&pdev->dev, "Error enabling clock\n");
fcdb7c8f 104 goto err_host;
c63b3cba
VK
105 }
106
257f9df1
VKS
107 ret = clk_set_rate(sdhci->clk, 50000000);
108 if (ret)
109 dev_dbg(&pdev->dev, "Error setting desired clk, clk=%lu\n",
110 clk_get_rate(sdhci->clk));
111
03a6d291 112 sdhci_probe_config_dt(pdev->dev.of_node, sdhci);
b42b9b12
RK
113 /*
114 * It is optional to use GPIOs for sdhci card detection. If
03a6d291 115 * sdhci->card_int_gpio < 0, then use original sdhci lines otherwise
b42b9b12
RK
116 * GPIO lines. We use the built-in GPIO support for this.
117 */
03a6d291
UH
118 if (sdhci->card_int_gpio >= 0) {
119 ret = mmc_gpio_request_cd(host->mmc, sdhci->card_int_gpio, 0);
b42b9b12
RK
120 if (ret < 0) {
121 dev_dbg(&pdev->dev,
122 "failed to request card-detect gpio%d\n",
03a6d291 123 sdhci->card_int_gpio);
b42b9b12
RK
124 goto disable_clk;
125 }
126 }
127
c63b3cba
VK
128 ret = sdhci_add_host(host);
129 if (ret) {
130 dev_dbg(&pdev->dev, "error adding host\n");
fcdb7c8f 131 goto disable_clk;
c63b3cba
VK
132 }
133
134 platform_set_drvdata(pdev, host);
135
c63b3cba
VK
136 return 0;
137
6ebaf8f2 138disable_clk:
da764f97 139 clk_disable_unprepare(sdhci->clk);
fcdb7c8f
RK
140err_host:
141 sdhci_free_host(host);
c63b3cba
VK
142err:
143 dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
144 return ret;
145}
146
6e0ee714 147static int sdhci_remove(struct platform_device *pdev)
c63b3cba
VK
148{
149 struct sdhci_host *host = platform_get_drvdata(pdev);
fcdb7c8f 150 struct spear_sdhci *sdhci = sdhci_priv(host);
6ebaf8f2 151 int dead = 0;
c63b3cba
VK
152 u32 scratch;
153
c63b3cba
VK
154 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
155 if (scratch == (u32)-1)
156 dead = 1;
157
158 sdhci_remove_host(host, dead);
da764f97 159 clk_disable_unprepare(sdhci->clk);
fcdb7c8f 160 sdhci_free_host(host);
c63b3cba
VK
161
162 return 0;
163}
164
b0dd099c 165#ifdef CONFIG_PM_SLEEP
b70a7fab
VK
166static int sdhci_suspend(struct device *dev)
167{
168 struct sdhci_host *host = dev_get_drvdata(dev);
fcdb7c8f 169 struct spear_sdhci *sdhci = sdhci_priv(host);
b70a7fab
VK
170 int ret;
171
d38dcad4
AH
172 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
173 mmc_retune_needed(host->mmc);
174
984589e5 175 ret = sdhci_suspend_host(host);
b70a7fab 176 if (!ret)
06960a1b 177 clk_disable(sdhci->clk);
b70a7fab
VK
178
179 return ret;
180}
181
182static int sdhci_resume(struct device *dev)
183{
184 struct sdhci_host *host = dev_get_drvdata(dev);
fcdb7c8f 185 struct spear_sdhci *sdhci = sdhci_priv(host);
b70a7fab
VK
186 int ret;
187
06960a1b 188 ret = clk_enable(sdhci->clk);
b70a7fab
VK
189 if (ret) {
190 dev_dbg(dev, "Resume: Error enabling clock\n");
191 return ret;
192 }
193
194 return sdhci_resume_host(host);
195}
b70a7fab
VK
196#endif
197
4b1a6170
SH
198static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
199
067bf748
VK
200#ifdef CONFIG_OF
201static const struct of_device_id sdhci_spear_id_table[] = {
202 { .compatible = "st,spear300-sdhci" },
203 {}
204};
205MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
206#endif
207
c63b3cba
VK
208static struct platform_driver sdhci_driver = {
209 .driver = {
210 .name = "sdhci",
b70a7fab 211 .pm = &sdhci_pm_ops,
067bf748 212 .of_match_table = of_match_ptr(sdhci_spear_id_table),
c63b3cba
VK
213 },
214 .probe = sdhci_probe,
0433c143 215 .remove = sdhci_remove,
c63b3cba
VK
216};
217
d1f81a64 218module_platform_driver(sdhci_driver);
c63b3cba
VK
219
220MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
da89947b 221MODULE_AUTHOR("Viresh Kumar <vireshk@kernel.org>");
c63b3cba 222MODULE_LICENSE("GPL v2");