blob: 22e58268545f0b028ee3cd82d4fa7e50a49a4558 [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
Viresh Kumar067bf742012-09-28 15:58:22 +053047#ifdef CONFIG_OF
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050048static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
Viresh Kumar067bf742012-09-28 15:58:22 +053049{
50 struct device_node *np = pdev->dev.of_node;
51 struct sdhci_plat_data *pdata = NULL;
52 int cd_gpio;
53
54 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
55 if (!gpio_is_valid(cd_gpio))
56 cd_gpio = -1;
57
58 /* If pdata is required */
59 if (cd_gpio != -1) {
60 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
Sachin Kamateab36b22014-02-25 15:18:21 +053061 if (!pdata)
Viresh Kumar067bf742012-09-28 15:58:22 +053062 dev_err(&pdev->dev, "DT: kzalloc failed\n");
Sachin Kamateab36b22014-02-25 15:18:21 +053063 else
64 pdata->card_int_gpio = cd_gpio;
Viresh Kumar067bf742012-09-28 15:58:22 +053065 }
66
Viresh Kumar067bf742012-09-28 15:58:22 +053067 return pdata;
68}
69#else
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050070static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
Viresh Kumar067bf742012-09-28 15:58:22 +053071{
72 return ERR_PTR(-ENOSYS);
73}
74#endif
75
Bill Pembertonc3be1ef2012-11-19 13:23:06 -050076static int sdhci_probe(struct platform_device *pdev)
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070077{
Viresh Kumar067bf742012-09-28 15:58:22 +053078 struct device_node *np = pdev->dev.of_node;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070079 struct sdhci_host *host;
80 struct resource *iomem;
81 struct spear_sdhci *sdhci;
Russell Kingfcdb7c82014-02-28 21:32:34 +000082 struct device *dev;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070083 int ret;
84
Russell Kingfcdb7c82014-02-28 21:32:34 +000085 dev = pdev->dev.parent ? pdev->dev.parent : &pdev->dev;
86 host = sdhci_alloc_host(dev, sizeof(*sdhci));
87 if (IS_ERR(host)) {
88 ret = PTR_ERR(host);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070089 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +053090 goto err;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -070091 }
92
Russell King475d9e32014-02-28 21:32:39 +000093 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
94 host->ioaddr = devm_ioremap_resource(&pdev->dev, iomem);
95 if (IS_ERR(host->ioaddr)) {
96 ret = PTR_ERR(host->ioaddr);
97 dev_dbg(&pdev->dev, "unable to map iomem: %d\n", ret);
98 goto err_host;
99 }
100
101 host->hw_name = "sdhci";
102 host->ops = &sdhci_pltfm_ops;
103 host->irq = platform_get_irq(pdev, 0);
104 host->quirks = SDHCI_QUIRK_BROKEN_ADMA;
105
Russell Kingfcdb7c82014-02-28 21:32:34 +0000106 sdhci = sdhci_priv(host);
107
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700108 /* clk enable */
Russell King142dbab92014-02-28 21:32:29 +0000109 sdhci->clk = devm_clk_get(&pdev->dev, NULL);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700110 if (IS_ERR(sdhci->clk)) {
111 ret = PTR_ERR(sdhci->clk);
112 dev_dbg(&pdev->dev, "Error getting clock\n");
Russell Kingfcdb7c82014-02-28 21:32:34 +0000113 goto err_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700114 }
115
Viresh Kumarda764f92012-09-28 15:58:23 +0530116 ret = clk_prepare_enable(sdhci->clk);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700117 if (ret) {
118 dev_dbg(&pdev->dev, "Error enabling clock\n");
Russell Kingfcdb7c82014-02-28 21:32:34 +0000119 goto err_host;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700120 }
121
Vipul Kumar Samar257f9df2012-11-08 20:39:09 +0530122 ret = clk_set_rate(sdhci->clk, 50000000);
123 if (ret)
124 dev_dbg(&pdev->dev, "Error setting desired clk, clk=%lu\n",
125 clk_get_rate(sdhci->clk));
126
Viresh Kumar067bf742012-09-28 15:58:22 +0530127 if (np) {
128 sdhci->data = sdhci_probe_config_dt(pdev);
129 if (IS_ERR(sdhci->data)) {
130 dev_err(&pdev->dev, "DT: Failed to get pdata\n");
Russell King142dbab92014-02-28 21:32:29 +0000131 goto disable_clk;
Viresh Kumar067bf742012-09-28 15:58:22 +0530132 }
133 } else {
134 sdhci->data = dev_get_platdata(&pdev->dev);
135 }
136
Russell Kingb42b9b12014-02-28 21:32:49 +0000137 /*
138 * It is optional to use GPIOs for sdhci card detection. If
139 * sdhci->data is NULL, then use original sdhci lines otherwise
140 * GPIO lines. We use the built-in GPIO support for this.
141 */
142 if (sdhci->data && sdhci->data->card_int_gpio >= 0) {
143 ret = mmc_gpio_request_cd(host->mmc,
144 sdhci->data->card_int_gpio, 0);
145 if (ret < 0) {
146 dev_dbg(&pdev->dev,
147 "failed to request card-detect gpio%d\n",
148 sdhci->data->card_int_gpio);
149 goto disable_clk;
150 }
151 }
152
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700153 ret = sdhci_add_host(host);
154 if (ret) {
155 dev_dbg(&pdev->dev, "error adding host\n");
Russell Kingfcdb7c82014-02-28 21:32:34 +0000156 goto disable_clk;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700157 }
158
159 platform_set_drvdata(pdev, host);
160
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700161 return 0;
162
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530163disable_clk:
Viresh Kumarda764f92012-09-28 15:58:23 +0530164 clk_disable_unprepare(sdhci->clk);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000165err_host:
166 sdhci_free_host(host);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700167err:
168 dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
169 return ret;
170}
171
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500172static int sdhci_remove(struct platform_device *pdev)
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700173{
174 struct sdhci_host *host = platform_get_drvdata(pdev);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000175 struct spear_sdhci *sdhci = sdhci_priv(host);
Viresh Kumar6ebaf8f2012-03-27 08:40:35 +0530176 int dead = 0;
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700177 u32 scratch;
178
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700179 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
180 if (scratch == (u32)-1)
181 dead = 1;
182
183 sdhci_remove_host(host, dead);
Viresh Kumarda764f92012-09-28 15:58:23 +0530184 clk_disable_unprepare(sdhci->clk);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000185 sdhci_free_host(host);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700186
187 return 0;
188}
189
Jingoo Hanb0dd0992013-03-29 16:08:00 +0900190#ifdef CONFIG_PM_SLEEP
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530191static int sdhci_suspend(struct device *dev)
192{
193 struct sdhci_host *host = dev_get_drvdata(dev);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000194 struct spear_sdhci *sdhci = sdhci_priv(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530195 int ret;
196
Viresh Kumar984589e2012-01-04 11:48:42 +0530197 ret = sdhci_suspend_host(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530198 if (!ret)
Viresh Kumar06960a12012-11-08 20:39:10 +0530199 clk_disable(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530200
201 return ret;
202}
203
204static int sdhci_resume(struct device *dev)
205{
206 struct sdhci_host *host = dev_get_drvdata(dev);
Russell Kingfcdb7c82014-02-28 21:32:34 +0000207 struct spear_sdhci *sdhci = sdhci_priv(host);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530208 int ret;
209
Viresh Kumar06960a12012-11-08 20:39:10 +0530210 ret = clk_enable(sdhci->clk);
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530211 if (ret) {
212 dev_dbg(dev, "Resume: Error enabling clock\n");
213 return ret;
214 }
215
216 return sdhci_resume_host(host);
217}
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530218#endif
219
Shiraz Hashim4b1a6172012-02-24 11:55:35 +0530220static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
221
Viresh Kumar067bf742012-09-28 15:58:22 +0530222#ifdef CONFIG_OF
223static const struct of_device_id sdhci_spear_id_table[] = {
224 { .compatible = "st,spear300-sdhci" },
225 {}
226};
227MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
228#endif
229
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700230static struct platform_driver sdhci_driver = {
231 .driver = {
232 .name = "sdhci",
Viresh Kumarb70a7fa2011-11-15 16:24:40 +0530233 .pm = &sdhci_pm_ops,
Viresh Kumar067bf742012-09-28 15:58:22 +0530234 .of_match_table = of_match_ptr(sdhci_spear_id_table),
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700235 },
236 .probe = sdhci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500237 .remove = sdhci_remove,
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700238};
239
Axel Lind1f81a62011-11-26 12:55:43 +0800240module_platform_driver(sdhci_driver);
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700241
242MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
Viresh Kumar10d89352012-06-20 12:53:02 -0700243MODULE_AUTHOR("Viresh Kumar <viresh.linux@gmail.com>");
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700244MODULE_LICENSE("GPL v2");