]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/mmc/host/sdhci-spear.c
f482f7f677e5bc5b183bb958b5e283a548bc0ab1
[karo-tx-linux.git] / drivers / mmc / host / sdhci-spear.c
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
7  * Viresh Kumar <viresh.linux@gmail.com>
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>
20 #include <linux/module.h>
21 #include <linux/interrupt.h>
22 #include <linux/irq.h>
23 #include <linux/of.h>
24 #include <linux/of_gpio.h>
25 #include <linux/platform_device.h>
26 #include <linux/pm.h>
27 #include <linux/slab.h>
28 #include <linux/mmc/host.h>
29 #include <linux/mmc/sdhci-spear.h>
30 #include <linux/mmc/slot-gpio.h>
31 #include <linux/io.h>
32 #include "sdhci.h"
33
34 struct spear_sdhci {
35         struct clk *clk;
36         struct sdhci_plat_data *data;
37 };
38
39 /* sdhci ops */
40 static const struct sdhci_ops sdhci_pltfm_ops = {
41         .set_clock = sdhci_set_clock,
42         .set_bus_width = sdhci_set_bus_width,
43         .reset = sdhci_reset,
44         .set_uhs_signaling = sdhci_set_uhs_signaling,
45 };
46
47 static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
48 {
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);
60                 if (!pdata)
61                         dev_err(&pdev->dev, "DT: kzalloc failed\n");
62                 else
63                         pdata->card_int_gpio = cd_gpio;
64         }
65
66         return pdata;
67 }
68
69 static int sdhci_probe(struct platform_device *pdev)
70 {
71         struct sdhci_host *host;
72         struct resource *iomem;
73         struct spear_sdhci *sdhci;
74         struct device *dev;
75         int ret;
76
77         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);
81                 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
82                 goto err;
83         }
84
85         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
98         sdhci = sdhci_priv(host);
99
100         /* clk enable */
101         sdhci->clk = devm_clk_get(&pdev->dev, NULL);
102         if (IS_ERR(sdhci->clk)) {
103                 ret = PTR_ERR(sdhci->clk);
104                 dev_dbg(&pdev->dev, "Error getting clock\n");
105                 goto err_host;
106         }
107
108         ret = clk_prepare_enable(sdhci->clk);
109         if (ret) {
110                 dev_dbg(&pdev->dev, "Error enabling clock\n");
111                 goto err_host;
112         }
113
114         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
119         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;
123         }
124
125         /*
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
141         ret = sdhci_add_host(host);
142         if (ret) {
143                 dev_dbg(&pdev->dev, "error adding host\n");
144                 goto disable_clk;
145         }
146
147         platform_set_drvdata(pdev, host);
148
149         return 0;
150
151 disable_clk:
152         clk_disable_unprepare(sdhci->clk);
153 err_host:
154         sdhci_free_host(host);
155 err:
156         dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
157         return ret;
158 }
159
160 static int sdhci_remove(struct platform_device *pdev)
161 {
162         struct sdhci_host *host = platform_get_drvdata(pdev);
163         struct spear_sdhci *sdhci = sdhci_priv(host);
164         int dead = 0;
165         u32 scratch;
166
167         scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
168         if (scratch == (u32)-1)
169                 dead = 1;
170
171         sdhci_remove_host(host, dead);
172         clk_disable_unprepare(sdhci->clk);
173         sdhci_free_host(host);
174
175         return 0;
176 }
177
178 #ifdef CONFIG_PM_SLEEP
179 static int sdhci_suspend(struct device *dev)
180 {
181         struct sdhci_host *host = dev_get_drvdata(dev);
182         struct spear_sdhci *sdhci = sdhci_priv(host);
183         int ret;
184
185         ret = sdhci_suspend_host(host);
186         if (!ret)
187                 clk_disable(sdhci->clk);
188
189         return ret;
190 }
191
192 static int sdhci_resume(struct device *dev)
193 {
194         struct sdhci_host *host = dev_get_drvdata(dev);
195         struct spear_sdhci *sdhci = sdhci_priv(host);
196         int ret;
197
198         ret = clk_enable(sdhci->clk);
199         if (ret) {
200                 dev_dbg(dev, "Resume: Error enabling clock\n");
201                 return ret;
202         }
203
204         return sdhci_resume_host(host);
205 }
206 #endif
207
208 static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
209
210 #ifdef CONFIG_OF
211 static const struct of_device_id sdhci_spear_id_table[] = {
212         { .compatible = "st,spear300-sdhci" },
213         {}
214 };
215 MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
216 #endif
217
218 static struct platform_driver sdhci_driver = {
219         .driver = {
220                 .name   = "sdhci",
221                 .pm     = &sdhci_pm_ops,
222                 .of_match_table = of_match_ptr(sdhci_spear_id_table),
223         },
224         .probe          = sdhci_probe,
225         .remove         = sdhci_remove,
226 };
227
228 module_platform_driver(sdhci_driver);
229
230 MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
231 MODULE_AUTHOR("Viresh Kumar <viresh.linux@gmail.com>");
232 MODULE_LICENSE("GPL v2");