blob: e9e061bf7d0c7d5056e486e3f6815fa330713b4b [file] [log] [blame]
Olof Johansson03d2bfc2011-01-01 23:52:56 -05001/*
2 * Copyright (C) 2010 Google, Inc.
3 *
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 */
14
15#include <linux/err.h>
16#include <linux/init.h>
17#include <linux/platform_device.h>
18#include <linux/clk.h>
19#include <linux/io.h>
Stephen Warren55cd65e2011-08-30 13:17:16 -060020#include <linux/of.h>
Grant Likely275173b2011-08-23 12:15:33 -060021#include <linux/of_gpio.h>
Olof Johansson03d2bfc2011-01-01 23:52:56 -050022#include <linux/gpio.h>
23#include <linux/mmc/card.h>
24#include <linux/mmc/host.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040025#include <linux/module.h>
Olof Johansson03d2bfc2011-01-01 23:52:56 -050026
27#include <mach/gpio.h>
28#include <mach/sdhci.h>
29
Olof Johansson03d2bfc2011-01-01 23:52:56 -050030#include "sdhci-pltfm.h"
31
32static u32 tegra_sdhci_readl(struct sdhci_host *host, int reg)
33{
34 u32 val;
35
36 if (unlikely(reg == SDHCI_PRESENT_STATE)) {
37 /* Use wp_gpio here instead? */
38 val = readl(host->ioaddr + reg);
39 return val | SDHCI_WRITE_PROTECT;
40 }
41
42 return readl(host->ioaddr + reg);
43}
44
45static u16 tegra_sdhci_readw(struct sdhci_host *host, int reg)
46{
47 if (unlikely(reg == SDHCI_HOST_VERSION)) {
48 /* Erratum: Version register is invalid in HW. */
49 return SDHCI_SPEC_200;
50 }
51
52 return readw(host->ioaddr + reg);
53}
54
55static void tegra_sdhci_writel(struct sdhci_host *host, u32 val, int reg)
56{
57 /* Seems like we're getting spurious timeout and crc errors, so
58 * disable signalling of them. In case of real errors software
59 * timers should take care of eventually detecting them.
60 */
61 if (unlikely(reg == SDHCI_SIGNAL_ENABLE))
62 val &= ~(SDHCI_INT_TIMEOUT|SDHCI_INT_CRC);
63
64 writel(val, host->ioaddr + reg);
65
66 if (unlikely(reg == SDHCI_INT_ENABLE)) {
67 /* Erratum: Must enable block gap interrupt detection */
68 u8 gap_ctrl = readb(host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
69 if (val & SDHCI_INT_CARD_INT)
70 gap_ctrl |= 0x8;
71 else
72 gap_ctrl &= ~0x8;
73 writeb(gap_ctrl, host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
74 }
75}
76
77static unsigned int tegra_sdhci_get_ro(struct sdhci_host *sdhci)
78{
Grant Likely275173b2011-08-23 12:15:33 -060079 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(sdhci);
80 struct tegra_sdhci_platform_data *plat = pltfm_host->priv;
Olof Johansson03d2bfc2011-01-01 23:52:56 -050081
82 if (!gpio_is_valid(plat->wp_gpio))
83 return -1;
84
85 return gpio_get_value(plat->wp_gpio);
86}
87
88static irqreturn_t carddetect_irq(int irq, void *data)
89{
90 struct sdhci_host *sdhost = (struct sdhci_host *)data;
91
92 tasklet_schedule(&sdhost->card_tasklet);
93 return IRQ_HANDLED;
94};
95
96static int tegra_sdhci_8bit(struct sdhci_host *host, int bus_width)
97{
Grant Likely275173b2011-08-23 12:15:33 -060098 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
99 struct tegra_sdhci_platform_data *plat = pltfm_host->priv;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500100 u32 ctrl;
101
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500102 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
103 if (plat->is_8bit && bus_width == MMC_BUS_WIDTH_8) {
104 ctrl &= ~SDHCI_CTRL_4BITBUS;
105 ctrl |= SDHCI_CTRL_8BITBUS;
106 } else {
107 ctrl &= ~SDHCI_CTRL_8BITBUS;
108 if (bus_width == MMC_BUS_WIDTH_4)
109 ctrl |= SDHCI_CTRL_4BITBUS;
110 else
111 ctrl &= ~SDHCI_CTRL_4BITBUS;
112 }
113 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
114 return 0;
115}
116
Shawn Guo85d65092011-05-27 23:48:12 +0800117static struct sdhci_ops tegra_sdhci_ops = {
118 .get_ro = tegra_sdhci_get_ro,
119 .read_l = tegra_sdhci_readl,
120 .read_w = tegra_sdhci_readw,
121 .write_l = tegra_sdhci_writel,
122 .platform_8bit_width = tegra_sdhci_8bit,
123};
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500124
Shawn Guo85d65092011-05-27 23:48:12 +0800125static struct sdhci_pltfm_data sdhci_tegra_pdata = {
126 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
127 SDHCI_QUIRK_SINGLE_POWER_WRITE |
128 SDHCI_QUIRK_NO_HISPD_BIT |
129 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC,
130 .ops = &tegra_sdhci_ops,
131};
132
Grant Likely275173b2011-08-23 12:15:33 -0600133static const struct of_device_id sdhci_tegra_dt_match[] __devinitdata = {
134 { .compatible = "nvidia,tegra20-sdhci", },
135 {}
136};
137MODULE_DEVICE_TABLE(of, sdhci_dt_ids);
138
139static struct tegra_sdhci_platform_data * __devinit sdhci_tegra_dt_parse_pdata(
140 struct platform_device *pdev)
141{
142 struct tegra_sdhci_platform_data *plat;
143 struct device_node *np = pdev->dev.of_node;
144
145 if (!np)
146 return NULL;
147
148 plat = devm_kzalloc(&pdev->dev, sizeof(*plat), GFP_KERNEL);
149 if (!plat) {
150 dev_err(&pdev->dev, "Can't allocate platform data\n");
151 return NULL;
152 }
153
154 plat->cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
155 plat->wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
156 plat->power_gpio = of_get_named_gpio(np, "power-gpios", 0);
Stephen Warren55cd65e2011-08-30 13:17:16 -0600157 if (of_find_property(np, "support-8bit", NULL))
158 plat->is_8bit = 1;
Grant Likely275173b2011-08-23 12:15:33 -0600159
160 return plat;
161}
162
Shawn Guo85d65092011-05-27 23:48:12 +0800163static int __devinit sdhci_tegra_probe(struct platform_device *pdev)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500164{
Shawn Guo85d65092011-05-27 23:48:12 +0800165 struct sdhci_pltfm_host *pltfm_host;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500166 struct tegra_sdhci_platform_data *plat;
Shawn Guo85d65092011-05-27 23:48:12 +0800167 struct sdhci_host *host;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500168 struct clk *clk;
169 int rc;
170
Shawn Guo85d65092011-05-27 23:48:12 +0800171 host = sdhci_pltfm_init(pdev, &sdhci_tegra_pdata);
172 if (IS_ERR(host))
173 return PTR_ERR(host);
174
175 pltfm_host = sdhci_priv(host);
176
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500177 plat = pdev->dev.platform_data;
Shawn Guo85d65092011-05-27 23:48:12 +0800178
Grant Likely275173b2011-08-23 12:15:33 -0600179 if (plat == NULL)
180 plat = sdhci_tegra_dt_parse_pdata(pdev);
181
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500182 if (plat == NULL) {
183 dev_err(mmc_dev(host->mmc), "missing platform data\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800184 rc = -ENXIO;
185 goto err_no_plat;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500186 }
187
Grant Likely275173b2011-08-23 12:15:33 -0600188 pltfm_host->priv = plat;
189
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500190 if (gpio_is_valid(plat->power_gpio)) {
191 rc = gpio_request(plat->power_gpio, "sdhci_power");
192 if (rc) {
193 dev_err(mmc_dev(host->mmc),
194 "failed to allocate power gpio\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800195 goto err_power_req;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500196 }
197 tegra_gpio_enable(plat->power_gpio);
198 gpio_direction_output(plat->power_gpio, 1);
199 }
200
201 if (gpio_is_valid(plat->cd_gpio)) {
202 rc = gpio_request(plat->cd_gpio, "sdhci_cd");
203 if (rc) {
204 dev_err(mmc_dev(host->mmc),
205 "failed to allocate cd gpio\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800206 goto err_cd_req;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500207 }
208 tegra_gpio_enable(plat->cd_gpio);
209 gpio_direction_input(plat->cd_gpio);
210
211 rc = request_irq(gpio_to_irq(plat->cd_gpio), carddetect_irq,
212 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
213 mmc_hostname(host->mmc), host);
214
215 if (rc) {
216 dev_err(mmc_dev(host->mmc), "request irq error\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800217 goto err_cd_irq_req;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500218 }
219
220 }
221
222 if (gpio_is_valid(plat->wp_gpio)) {
223 rc = gpio_request(plat->wp_gpio, "sdhci_wp");
224 if (rc) {
225 dev_err(mmc_dev(host->mmc),
226 "failed to allocate wp gpio\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800227 goto err_wp_req;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500228 }
229 tegra_gpio_enable(plat->wp_gpio);
230 gpio_direction_input(plat->wp_gpio);
231 }
232
233 clk = clk_get(mmc_dev(host->mmc), NULL);
234 if (IS_ERR(clk)) {
235 dev_err(mmc_dev(host->mmc), "clk err\n");
236 rc = PTR_ERR(clk);
Shawn Guo85d65092011-05-27 23:48:12 +0800237 goto err_clk_get;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500238 }
239 clk_enable(clk);
240 pltfm_host->clk = clk;
241
Venkat Raoc7f409e2011-03-25 20:37:47 -0400242 host->mmc->pm_caps = plat->pm_flags;
243
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500244 if (plat->is_8bit)
245 host->mmc->caps |= MMC_CAP_8_BIT_DATA;
246
Shawn Guo85d65092011-05-27 23:48:12 +0800247 rc = sdhci_add_host(host);
248 if (rc)
249 goto err_add_host;
250
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500251 return 0;
252
Shawn Guo85d65092011-05-27 23:48:12 +0800253err_add_host:
254 clk_disable(pltfm_host->clk);
255 clk_put(pltfm_host->clk);
256err_clk_get:
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500257 if (gpio_is_valid(plat->wp_gpio)) {
258 tegra_gpio_disable(plat->wp_gpio);
259 gpio_free(plat->wp_gpio);
260 }
Shawn Guo85d65092011-05-27 23:48:12 +0800261err_wp_req:
Wolfram Sang8154b572011-02-10 18:07:30 +0100262 if (gpio_is_valid(plat->cd_gpio))
263 free_irq(gpio_to_irq(plat->cd_gpio), host);
Shawn Guo85d65092011-05-27 23:48:12 +0800264err_cd_irq_req:
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500265 if (gpio_is_valid(plat->cd_gpio)) {
266 tegra_gpio_disable(plat->cd_gpio);
267 gpio_free(plat->cd_gpio);
268 }
Shawn Guo85d65092011-05-27 23:48:12 +0800269err_cd_req:
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500270 if (gpio_is_valid(plat->power_gpio)) {
271 tegra_gpio_disable(plat->power_gpio);
272 gpio_free(plat->power_gpio);
273 }
Shawn Guo85d65092011-05-27 23:48:12 +0800274err_power_req:
275err_no_plat:
276 sdhci_pltfm_free(pdev);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500277 return rc;
278}
279
Shawn Guo85d65092011-05-27 23:48:12 +0800280static int __devexit sdhci_tegra_remove(struct platform_device *pdev)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500281{
Shawn Guo85d65092011-05-27 23:48:12 +0800282 struct sdhci_host *host = platform_get_drvdata(pdev);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500283 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Grant Likely275173b2011-08-23 12:15:33 -0600284 struct tegra_sdhci_platform_data *plat = pltfm_host->priv;
Shawn Guo85d65092011-05-27 23:48:12 +0800285 int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
286
287 sdhci_remove_host(host, dead);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500288
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500289 if (gpio_is_valid(plat->wp_gpio)) {
290 tegra_gpio_disable(plat->wp_gpio);
291 gpio_free(plat->wp_gpio);
292 }
293
294 if (gpio_is_valid(plat->cd_gpio)) {
Wolfram Sang8154b572011-02-10 18:07:30 +0100295 free_irq(gpio_to_irq(plat->cd_gpio), host);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500296 tegra_gpio_disable(plat->cd_gpio);
297 gpio_free(plat->cd_gpio);
298 }
299
300 if (gpio_is_valid(plat->power_gpio)) {
301 tegra_gpio_disable(plat->power_gpio);
302 gpio_free(plat->power_gpio);
303 }
304
305 clk_disable(pltfm_host->clk);
306 clk_put(pltfm_host->clk);
Shawn Guo85d65092011-05-27 23:48:12 +0800307
308 sdhci_pltfm_free(pdev);
309
310 return 0;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500311}
312
Shawn Guo85d65092011-05-27 23:48:12 +0800313static struct platform_driver sdhci_tegra_driver = {
314 .driver = {
315 .name = "sdhci-tegra",
316 .owner = THIS_MODULE,
Grant Likely275173b2011-08-23 12:15:33 -0600317 .of_match_table = sdhci_tegra_dt_match,
Shawn Guo85d65092011-05-27 23:48:12 +0800318 },
319 .probe = sdhci_tegra_probe,
320 .remove = __devexit_p(sdhci_tegra_remove),
321#ifdef CONFIG_PM
322 .suspend = sdhci_pltfm_suspend,
323 .resume = sdhci_pltfm_resume,
324#endif
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500325};
326
Shawn Guo85d65092011-05-27 23:48:12 +0800327static int __init sdhci_tegra_init(void)
328{
329 return platform_driver_register(&sdhci_tegra_driver);
330}
331module_init(sdhci_tegra_init);
332
333static void __exit sdhci_tegra_exit(void)
334{
335 platform_driver_unregister(&sdhci_tegra_driver);
336}
337module_exit(sdhci_tegra_exit);
338
339MODULE_DESCRIPTION("SDHCI driver for Tegra");
340MODULE_AUTHOR(" Google, Inc.");
341MODULE_LICENSE("GPL v2");