2 * drivers/mmc/host/sdhci-spear.c
4 * Support of SDHCI platform devices for spear soc family
6 * Copyright (C) 2010 ST Microelectronics
9 * Inspired by sdhci-pltfm.c
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.
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>
24 #include <linux/of_gpio.h>
25 #include <linux/platform_device.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>
36 struct sdhci_plat_data *data;
40 static const struct sdhci_ops sdhci_pltfm_ops = {
41 /* Nothing to do for now. */
45 static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
47 struct device_node *np = pdev->dev.of_node;
48 struct sdhci_plat_data *pdata = NULL;
51 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
52 if (!gpio_is_valid(cd_gpio))
55 /* If pdata is required */
57 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
59 dev_err(&pdev->dev, "DT: kzalloc failed\n");
61 pdata->card_int_gpio = cd_gpio;
67 static struct sdhci_plat_data *sdhci_probe_config_dt(struct platform_device *pdev)
69 return ERR_PTR(-ENOSYS);
73 static int sdhci_probe(struct platform_device *pdev)
75 struct device_node *np = pdev->dev.of_node;
76 struct sdhci_host *host;
77 struct resource *iomem;
78 struct spear_sdhci *sdhci;
82 dev = pdev->dev.parent ? pdev->dev.parent : &pdev->dev;
83 host = sdhci_alloc_host(dev, sizeof(*sdhci));
86 dev_dbg(&pdev->dev, "cannot allocate memory for sdhci\n");
90 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
91 host->ioaddr = devm_ioremap_resource(&pdev->dev, iomem);
92 if (IS_ERR(host->ioaddr)) {
93 ret = PTR_ERR(host->ioaddr);
94 dev_dbg(&pdev->dev, "unable to map iomem: %d\n", ret);
98 host->hw_name = "sdhci";
99 host->ops = &sdhci_pltfm_ops;
100 host->irq = platform_get_irq(pdev, 0);
101 host->quirks = SDHCI_QUIRK_BROKEN_ADMA;
103 sdhci = sdhci_priv(host);
106 sdhci->clk = devm_clk_get(&pdev->dev, NULL);
107 if (IS_ERR(sdhci->clk)) {
108 ret = PTR_ERR(sdhci->clk);
109 dev_dbg(&pdev->dev, "Error getting clock\n");
113 ret = clk_prepare_enable(sdhci->clk);
115 dev_dbg(&pdev->dev, "Error enabling clock\n");
119 ret = clk_set_rate(sdhci->clk, 50000000);
121 dev_dbg(&pdev->dev, "Error setting desired clk, clk=%lu\n",
122 clk_get_rate(sdhci->clk));
125 sdhci->data = sdhci_probe_config_dt(pdev);
126 if (IS_ERR(sdhci->data)) {
127 dev_err(&pdev->dev, "DT: Failed to get pdata\n");
131 sdhci->data = dev_get_platdata(&pdev->dev);
135 * It is optional to use GPIOs for sdhci card detection. If
136 * sdhci->data is NULL, then use original sdhci lines otherwise
137 * GPIO lines. We use the built-in GPIO support for this.
139 if (sdhci->data && sdhci->data->card_int_gpio >= 0) {
140 ret = mmc_gpio_request_cd(host->mmc,
141 sdhci->data->card_int_gpio, 0);
144 "failed to request card-detect gpio%d\n",
145 sdhci->data->card_int_gpio);
150 ret = sdhci_add_host(host);
152 dev_dbg(&pdev->dev, "error adding host\n");
156 platform_set_drvdata(pdev, host);
161 clk_disable_unprepare(sdhci->clk);
163 sdhci_free_host(host);
165 dev_err(&pdev->dev, "spear-sdhci probe failed: %d\n", ret);
169 static int sdhci_remove(struct platform_device *pdev)
171 struct sdhci_host *host = platform_get_drvdata(pdev);
172 struct spear_sdhci *sdhci = sdhci_priv(host);
176 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
177 if (scratch == (u32)-1)
180 sdhci_remove_host(host, dead);
181 clk_disable_unprepare(sdhci->clk);
182 sdhci_free_host(host);
187 #ifdef CONFIG_PM_SLEEP
188 static int sdhci_suspend(struct device *dev)
190 struct sdhci_host *host = dev_get_drvdata(dev);
191 struct spear_sdhci *sdhci = sdhci_priv(host);
194 ret = sdhci_suspend_host(host);
196 clk_disable(sdhci->clk);
201 static int sdhci_resume(struct device *dev)
203 struct sdhci_host *host = dev_get_drvdata(dev);
204 struct spear_sdhci *sdhci = sdhci_priv(host);
207 ret = clk_enable(sdhci->clk);
209 dev_dbg(dev, "Resume: Error enabling clock\n");
213 return sdhci_resume_host(host);
217 static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
220 static const struct of_device_id sdhci_spear_id_table[] = {
221 { .compatible = "st,spear300-sdhci" },
224 MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
227 static struct platform_driver sdhci_driver = {
230 .owner = THIS_MODULE,
232 .of_match_table = of_match_ptr(sdhci_spear_id_table),
234 .probe = sdhci_probe,
235 .remove = sdhci_remove,
238 module_platform_driver(sdhci_driver);
240 MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
242 MODULE_LICENSE("GPL v2");