2 * drivers/mmc/host/sdhci-spear.c
4 * Support of SDHCI platform devices for spear soc family
6 * Copyright (C) 2010 ST Microelectronics
7 * Viresh Kumar <vireshk@kernel.org>
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/highmem.h>
19 #include <linux/module.h>
20 #include <linux/interrupt.h>
21 #include <linux/irq.h>
23 #include <linux/platform_device.h>
25 #include <linux/slab.h>
26 #include <linux/mmc/host.h>
27 #include <linux/mmc/slot-gpio.h>
36 static const struct sdhci_ops sdhci_pltfm_ops
= {
37 .set_clock
= sdhci_set_clock
,
38 .set_bus_width
= sdhci_set_bus_width
,
40 .set_uhs_signaling
= sdhci_set_uhs_signaling
,
43 static int sdhci_probe(struct platform_device
*pdev
)
45 struct sdhci_host
*host
;
46 struct resource
*iomem
;
47 struct spear_sdhci
*sdhci
;
51 dev
= pdev
->dev
.parent
? pdev
->dev
.parent
: &pdev
->dev
;
52 host
= sdhci_alloc_host(dev
, sizeof(*sdhci
));
55 dev_dbg(&pdev
->dev
, "cannot allocate memory for sdhci\n");
59 iomem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
60 host
->ioaddr
= devm_ioremap_resource(&pdev
->dev
, iomem
);
61 if (IS_ERR(host
->ioaddr
)) {
62 ret
= PTR_ERR(host
->ioaddr
);
63 dev_dbg(&pdev
->dev
, "unable to map iomem: %d\n", ret
);
67 host
->hw_name
= "sdhci";
68 host
->ops
= &sdhci_pltfm_ops
;
69 host
->irq
= platform_get_irq(pdev
, 0);
74 host
->quirks
= SDHCI_QUIRK_BROKEN_ADMA
;
76 sdhci
= sdhci_priv(host
);
79 sdhci
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
80 if (IS_ERR(sdhci
->clk
)) {
81 ret
= PTR_ERR(sdhci
->clk
);
82 dev_dbg(&pdev
->dev
, "Error getting clock\n");
86 ret
= clk_prepare_enable(sdhci
->clk
);
88 dev_dbg(&pdev
->dev
, "Error enabling clock\n");
92 ret
= clk_set_rate(sdhci
->clk
, 50000000);
94 dev_dbg(&pdev
->dev
, "Error setting desired clk, clk=%lu\n",
95 clk_get_rate(sdhci
->clk
));
98 * It is optional to use GPIOs for sdhci card detection. If we
99 * find a descriptor using slot GPIO, we use it.
101 ret
= mmc_gpiod_request_cd(host
->mmc
, "cd", 0, false, 0, NULL
);
102 if (ret
== -EPROBE_DEFER
)
105 ret
= sdhci_add_host(host
);
109 platform_set_drvdata(pdev
, host
);
114 clk_disable_unprepare(sdhci
->clk
);
116 sdhci_free_host(host
);
118 dev_err(&pdev
->dev
, "spear-sdhci probe failed: %d\n", ret
);
122 static int sdhci_remove(struct platform_device
*pdev
)
124 struct sdhci_host
*host
= platform_get_drvdata(pdev
);
125 struct spear_sdhci
*sdhci
= sdhci_priv(host
);
129 scratch
= readl(host
->ioaddr
+ SDHCI_INT_STATUS
);
130 if (scratch
== (u32
)-1)
133 sdhci_remove_host(host
, dead
);
134 clk_disable_unprepare(sdhci
->clk
);
135 sdhci_free_host(host
);
140 #ifdef CONFIG_PM_SLEEP
141 static int sdhci_suspend(struct device
*dev
)
143 struct sdhci_host
*host
= dev_get_drvdata(dev
);
144 struct spear_sdhci
*sdhci
= sdhci_priv(host
);
147 if (host
->tuning_mode
!= SDHCI_TUNING_MODE_3
)
148 mmc_retune_needed(host
->mmc
);
150 ret
= sdhci_suspend_host(host
);
152 clk_disable(sdhci
->clk
);
157 static int sdhci_resume(struct device
*dev
)
159 struct sdhci_host
*host
= dev_get_drvdata(dev
);
160 struct spear_sdhci
*sdhci
= sdhci_priv(host
);
163 ret
= clk_enable(sdhci
->clk
);
165 dev_dbg(dev
, "Resume: Error enabling clock\n");
169 return sdhci_resume_host(host
);
173 static SIMPLE_DEV_PM_OPS(sdhci_pm_ops
, sdhci_suspend
, sdhci_resume
);
176 static const struct of_device_id sdhci_spear_id_table
[] = {
177 { .compatible
= "st,spear300-sdhci" },
180 MODULE_DEVICE_TABLE(of
, sdhci_spear_id_table
);
183 static struct platform_driver sdhci_driver
= {
187 .of_match_table
= of_match_ptr(sdhci_spear_id_table
),
189 .probe
= sdhci_probe
,
190 .remove
= sdhci_remove
,
193 module_platform_driver(sdhci_driver
);
195 MODULE_DESCRIPTION("SPEAr Secure Digital Host Controller Interface driver");
196 MODULE_AUTHOR("Viresh Kumar <vireshk@kernel.org>");
197 MODULE_LICENSE("GPL v2");