blob: f482f7f677e5bc5b183bb958b5e283a548bc0ab1 [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>
Russell Kingb42b9b12014-02-28 21:32:49 +000030#include <linux/mmc/slot-gpio.h>
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070031#include <linux/io.h>
32#include "sdhci.h"
33
34struct spear_sdhci {
35 struct clk *clk;
36 struct sdhci_plat_data *data;
37};
38
39/* sdhci ops */
Lars-Peter Clausenc9155682013-03-13 19:26:05 +010040static const struct sdhci_ops sdhci_pltfm_ops = {
Russell King17710592014-04-25 12:58:55 +010041 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +010042 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +010043 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +010044 .set_uhs_signaling = sdhci_set_uhs_signaling,
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070045};
46
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050047static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
Viresh Kumar067bf742012-09-28 15:58:22 +053048{
49 struct device_node *np = pdev->dev.of_node;
50 struct sdhci_plat_data *pdata = NULL;
51 int cd_gpio;
52
53 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
54 if (!gpio_is_valid(cd_gpio))
55 cd_gpio = -1;
56
57 /* If pdata is required */
58 if (cd_gpio != -1) {
59 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
Sachin Kamateab36b22014-02-25 15:18:21 +053060 if (!pdata)
Viresh Kumar067bf742012-09-28 15:58:22 +053061 dev_err(&pdev->dev, "DT: kzalloc failed\n");
Sachin Kamateab36b22014-02-25 15:18:21 +053062 else
63 pdata->card_int_gpio = cd_gpio;
Viresh Kumar067bf742012-09-28 15:58:22 +053064 }
65
Viresh Kumar067bf742012-09-28 15:58:22 +053066 return pdata;
67}
Viresh Kumar067bf742012-09-28 15:58:22 +053068
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050069static int sdhci_probe(struct platform_device *pdev)
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070070{
71 struct sdhci_host *host;
72 struct resource *iomem;
73 struct spear_sdhci *sdhci;
Russell Kingfcdb7c82014-02-28 21:32:34 +000074 struct device *dev;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070075 int ret;
76
Russell Kingfcdb7c82014-02-28 21:32:34 +000077 dev = pdev->dev.parent ? pdev->dev.parent : &pdev->dev;
78 host = sdhci_alloc_host(dev, sizeof(*sdhci));
79 if (IS_ERR(host)) {
80 ret = PTR_ERR(host);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070081 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +053082 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070083 }
84
Russell King475d9e32014-02-28 21:32:39 +000085 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
86 host->ioaddr = devm_ioremap_resource(&pdev->dev, iomem);
87 if (IS_ERR(host->ioaddr)) {
88 ret = PTR_ERR(host->ioaddr);
89 dev_dbg(&pdev->dev, "unable to map iomem: %d\n", ret);
90 goto err_host;
91 }
92
93 host->hw_name = "sdhci";
94 host->ops = &sdhci_pltfm_ops;
95 host->irq = platform_get_irq(pdev, 0);
96 host->quirks = SDHCI_QUIRK_BROKEN_ADMA;
97
Russell Kingfcdb7c82014-02-28 21:32:34 +000098 sdhci = sdhci_priv(host);
99
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700100 /* clk enable */
Russell King142dbab92014-02-28 21:32:29 +0000101 sdhci->clk = devm_clk_get(&pdev->dev, NULL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700102 if (IS_ERR(sdhci->clk)) {
103 ret = PTR_ERR(sdhci->clk);
104 dev_dbg(&pdev->dev, "Error getting clock\n");
Russell Kingfcdb7c82014-02-28 21:32:34 +0000105 goto err_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700106 }
107
Viresh Kumarda764f92012-09-28 15:58:23 +0530108 ret = clk_prepare_enable(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700109 if (ret) {
110 dev_dbg(&pdev->dev, "Error enabling clock\n");
Russell Kingfcdb7c82014-02-28 21:32:34 +0000111 goto err_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700112 }
113
Vipul Kumar Samar257f9df2012-11-08 20:39:09 +0530114 ret = clk_set_rate(sdhci->clk, 50000000);
115 if (ret)
116 dev_dbg(&pdev->dev, "Error setting desired clk, clk=%lu\n",
117 clk_get_rate(sdhci->clk));
118
Ulf Hanssonbbd7f0a2015-03-04 14:57:44 +0100119 sdhci->data = sdhci_probe_config_dt(pdev);
120 if (IS_ERR(sdhci->data)) {
121 dev_err(&pdev->dev, "DT: Failed to get pdata\n");
122 goto disable_clk;
Viresh Kumar067bf742012-09-28 15:58:22 +0530123 }
124
Russell Kingb42b9b12014-02-28 21:32:49 +0000125 /*
126 * It is optional to use GPIOs for sdhci card detection. If
127 * sdhci->data is NULL, then use original sdhci lines otherwise
128 * GPIO lines. We use the built-in GPIO support for this.
129 */
130 if (sdhci->data && sdhci->data->card_int_gpio >= 0) {
131 ret = mmc_gpio_request_cd(host->mmc,
132 sdhci->data->card_int_gpio, 0);
133 if (ret < 0) {
134 dev_dbg(&pdev->dev,
135 "failed to request card-detect gpio%d\n",
136 sdhci->data->card_int_gpio);
137 goto disable_clk;
138 }
139 }
140
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700141 ret = sdhci_add_host(host);
142 if (ret) {
143 dev_dbg(&pdev->dev, "error adding host\n");
Russell Kingfcdb7c82014-02-28 21:32:34 +0000144 goto disable_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700145 }
146
147 platform_set_drvdata(pdev, host);
148
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700149 return 0;
150
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530151disable_clk:
Viresh Kumarda764f92012-09-28 15:58:23 +0530152 clk_disable_unprepare(sdhci->clk);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000153err_host:
154 sdhci_free_host(host);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700155err:
156 dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
157 return ret;
158}
159
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500160static int sdhci_remove(struct platform_device *pdev)
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700161{
162 struct sdhci_host *host = platform_get_drvdata(pdev);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000163 struct spear_sdhci *sdhci = sdhci_priv(host);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530164 int dead = 0;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700165 u32 scratch;
166
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700167 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
168 if (scratch == (u32)-1)
169 dead = 1;
170
171 sdhci_remove_host(host, dead);
Viresh Kumarda764f92012-09-28 15:58:23 +0530172 clk_disable_unprepare(sdhci->clk);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000173 sdhci_free_host(host);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700174
175 return 0;
176}
177
Jingoo Hanb0dd0992013-03-29 16:08:00 +0900178#ifdef CONFIG_PM_SLEEP
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530179static int sdhci_suspend(struct device *dev)
180{
181 struct sdhci_host *host = dev_get_drvdata(dev);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000182 struct spear_sdhci *sdhci = sdhci_priv(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530183 int ret;
184
Viresh Kumar984589e2012-01-04 11:48:42 +0530185 ret = sdhci_suspend_host(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530186 if (!ret)
Viresh Kumar06960a12012-11-08 20:39:10 +0530187 clk_disable(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530188
189 return ret;
190}
191
192static int sdhci_resume(struct device *dev)
193{
194 struct sdhci_host *host = dev_get_drvdata(dev);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000195 struct spear_sdhci *sdhci = sdhci_priv(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530196 int ret;
197
Viresh Kumar06960a12012-11-08 20:39:10 +0530198 ret = clk_enable(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530199 if (ret) {
200 dev_dbg(dev, "Resume: Error enabling clock\n");
201 return ret;
202 }
203
204 return sdhci_resume_host(host);
205}
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530206#endif
207
Shiraz Hashim4b1a6172012-02-24 11:55:35 +0530208static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
209
Viresh Kumar067bf742012-09-28 15:58:22 +0530210#ifdef CONFIG_OF
211static const struct of_device_id sdhci_spear_id_table[] = {
212 { .compatible = "st,spear300-sdhci" },
213 {}
214};
215MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
216#endif
217
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700218static struct platform_driver sdhci_driver = {
219 .driver = {
220 .name = "sdhci",
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530221 .pm = &sdhci_pm_ops,
Viresh Kumar067bf742012-09-28 15:58:22 +0530222 .of_match_table = of_match_ptr(sdhci_spear_id_table),
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700223 },
224 .probe = sdhci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500225 .remove = sdhci_remove,
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700226};
227
Axel Lind1f81a62011-11-26 12:55:43 +0800228module_platform_driver(sdhci_driver);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700229
230MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
Viresh Kumar10d89352012-06-20 12:53:02 -0700231MODULE_AUTHOR("Viresh Kumar <viresh.linux@gmail.com>");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700232MODULE_LICENSE("GPL v2");