2 * Copyright (C) 2010 Google, Inc.
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.
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.
15 #include <linux/err.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/clk.h>
20 #include <linux/gpio.h>
21 #include <linux/mmc/card.h>
22 #include <linux/mmc/host.h>
26 #include <mach/gpio-tegra.h>
27 #include <mach/sdhci.h>
29 #include "sdhci-pltfm.h"
31 static u32
tegra_sdhci_readl(struct sdhci_host
*host
, int reg
)
35 if (unlikely(reg
== SDHCI_PRESENT_STATE
)) {
36 /* Use wp_gpio here instead? */
37 val
= readl(host
->ioaddr
+ reg
);
38 return val
| SDHCI_WRITE_PROTECT
;
41 return readl(host
->ioaddr
+ reg
);
44 static u16
tegra_sdhci_readw(struct sdhci_host
*host
, int reg
)
46 if (unlikely(reg
== SDHCI_HOST_VERSION
)) {
47 /* Erratum: Version register is invalid in HW. */
48 return SDHCI_SPEC_200
;
51 return readw(host
->ioaddr
+ reg
);
54 static void tegra_sdhci_writel(struct sdhci_host
*host
, u32 val
, int reg
)
56 /* Seems like we're getting spurious timeout and crc errors, so
57 * disable signalling of them. In case of real errors software
58 * timers should take care of eventually detecting them.
60 if (unlikely(reg
== SDHCI_SIGNAL_ENABLE
))
61 val
&= ~(SDHCI_INT_TIMEOUT
|SDHCI_INT_CRC
);
63 writel(val
, host
->ioaddr
+ reg
);
65 if (unlikely(reg
== SDHCI_INT_ENABLE
)) {
66 /* Erratum: Must enable block gap interrupt detection */
67 u8 gap_ctrl
= readb(host
->ioaddr
+ SDHCI_BLOCK_GAP_CONTROL
);
68 if (val
& SDHCI_INT_CARD_INT
)
72 writeb(gap_ctrl
, host
->ioaddr
+ SDHCI_BLOCK_GAP_CONTROL
);
76 static unsigned int tegra_sdhci_get_ro(struct sdhci_host
*sdhci
)
78 struct platform_device
*pdev
= to_platform_device(mmc_dev(sdhci
->mmc
));
79 struct tegra_sdhci_platform_data
*plat
;
81 plat
= pdev
->dev
.platform_data
;
83 if (!gpio_is_valid(plat
->wp_gpio
))
86 return gpio_get_value(plat
->wp_gpio
);
89 static irqreturn_t
carddetect_irq(int irq
, void *data
)
91 struct sdhci_host
*sdhost
= (struct sdhci_host
*)data
;
93 tasklet_schedule(&sdhost
->card_tasklet
);
97 static int tegra_sdhci_8bit(struct sdhci_host
*host
, int bus_width
)
99 struct platform_device
*pdev
= to_platform_device(mmc_dev(host
->mmc
));
100 struct tegra_sdhci_platform_data
*plat
;
103 plat
= pdev
->dev
.platform_data
;
105 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
106 if (plat
->is_8bit
&& bus_width
== MMC_BUS_WIDTH_8
) {
107 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
108 ctrl
|= SDHCI_CTRL_8BITBUS
;
110 ctrl
&= ~SDHCI_CTRL_8BITBUS
;
111 if (bus_width
== MMC_BUS_WIDTH_4
)
112 ctrl
|= SDHCI_CTRL_4BITBUS
;
114 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
116 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
120 static struct sdhci_ops tegra_sdhci_ops
= {
121 .get_ro
= tegra_sdhci_get_ro
,
122 .read_l
= tegra_sdhci_readl
,
123 .read_w
= tegra_sdhci_readw
,
124 .write_l
= tegra_sdhci_writel
,
125 .platform_8bit_width
= tegra_sdhci_8bit
,
128 static struct sdhci_pltfm_data sdhci_tegra_pdata
= {
129 .quirks
= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
|
130 SDHCI_QUIRK_SINGLE_POWER_WRITE
|
131 SDHCI_QUIRK_NO_HISPD_BIT
|
132 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
,
133 .ops
= &tegra_sdhci_ops
,
136 static int __devinit
sdhci_tegra_probe(struct platform_device
*pdev
)
138 struct sdhci_pltfm_host
*pltfm_host
;
139 struct tegra_sdhci_platform_data
*plat
;
140 struct sdhci_host
*host
;
144 host
= sdhci_pltfm_init(pdev
, &sdhci_tegra_pdata
);
146 return PTR_ERR(host
);
148 pltfm_host
= sdhci_priv(host
);
150 plat
= pdev
->dev
.platform_data
;
153 dev_err(mmc_dev(host
->mmc
), "missing platform data\n");
158 if (gpio_is_valid(plat
->power_gpio
)) {
159 rc
= gpio_request(plat
->power_gpio
, "sdhci_power");
161 dev_err(mmc_dev(host
->mmc
),
162 "failed to allocate power gpio\n");
165 tegra_gpio_enable(plat
->power_gpio
);
166 gpio_direction_output(plat
->power_gpio
, 1);
169 if (gpio_is_valid(plat
->cd_gpio
)) {
170 rc
= gpio_request(plat
->cd_gpio
, "sdhci_cd");
172 dev_err(mmc_dev(host
->mmc
),
173 "failed to allocate cd gpio\n");
176 tegra_gpio_enable(plat
->cd_gpio
);
177 gpio_direction_input(plat
->cd_gpio
);
179 rc
= request_irq(gpio_to_irq(plat
->cd_gpio
), carddetect_irq
,
180 IRQF_TRIGGER_FALLING
| IRQF_TRIGGER_RISING
,
181 mmc_hostname(host
->mmc
), host
);
184 dev_err(mmc_dev(host
->mmc
), "request irq error\n");
190 if (gpio_is_valid(plat
->wp_gpio
)) {
191 rc
= gpio_request(plat
->wp_gpio
, "sdhci_wp");
193 dev_err(mmc_dev(host
->mmc
),
194 "failed to allocate wp gpio\n");
197 tegra_gpio_enable(plat
->wp_gpio
);
198 gpio_direction_input(plat
->wp_gpio
);
201 clk
= clk_get(mmc_dev(host
->mmc
), NULL
);
203 dev_err(mmc_dev(host
->mmc
), "clk err\n");
208 pltfm_host
->clk
= clk
;
210 host
->mmc
->pm_caps
= plat
->pm_flags
;
213 host
->mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
215 rc
= sdhci_add_host(host
);
222 clk_disable(pltfm_host
->clk
);
223 clk_put(pltfm_host
->clk
);
225 if (gpio_is_valid(plat
->wp_gpio
)) {
226 tegra_gpio_disable(plat
->wp_gpio
);
227 gpio_free(plat
->wp_gpio
);
230 if (gpio_is_valid(plat
->cd_gpio
))
231 free_irq(gpio_to_irq(plat
->cd_gpio
), host
);
233 if (gpio_is_valid(plat
->cd_gpio
)) {
234 tegra_gpio_disable(plat
->cd_gpio
);
235 gpio_free(plat
->cd_gpio
);
238 if (gpio_is_valid(plat
->power_gpio
)) {
239 tegra_gpio_disable(plat
->power_gpio
);
240 gpio_free(plat
->power_gpio
);
244 sdhci_pltfm_free(pdev
);
248 static int __devexit
sdhci_tegra_remove(struct platform_device
*pdev
)
250 struct sdhci_host
*host
= platform_get_drvdata(pdev
);
251 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
252 struct tegra_sdhci_platform_data
*plat
;
253 int dead
= (readl(host
->ioaddr
+ SDHCI_INT_STATUS
) == 0xffffffff);
255 sdhci_remove_host(host
, dead
);
257 plat
= pdev
->dev
.platform_data
;
259 if (gpio_is_valid(plat
->wp_gpio
)) {
260 tegra_gpio_disable(plat
->wp_gpio
);
261 gpio_free(plat
->wp_gpio
);
264 if (gpio_is_valid(plat
->cd_gpio
)) {
265 free_irq(gpio_to_irq(plat
->cd_gpio
), host
);
266 tegra_gpio_disable(plat
->cd_gpio
);
267 gpio_free(plat
->cd_gpio
);
270 if (gpio_is_valid(plat
->power_gpio
)) {
271 tegra_gpio_disable(plat
->power_gpio
);
272 gpio_free(plat
->power_gpio
);
275 clk_disable(pltfm_host
->clk
);
276 clk_put(pltfm_host
->clk
);
278 sdhci_pltfm_free(pdev
);
283 static struct platform_driver sdhci_tegra_driver
= {
285 .name
= "sdhci-tegra",
286 .owner
= THIS_MODULE
,
288 .probe
= sdhci_tegra_probe
,
289 .remove
= __devexit_p(sdhci_tegra_remove
),
291 .suspend
= sdhci_pltfm_suspend
,
292 .resume
= sdhci_pltfm_resume
,
296 static int __init
sdhci_tegra_init(void)
298 return platform_driver_register(&sdhci_tegra_driver
);
300 module_init(sdhci_tegra_init
);
302 static void __exit
sdhci_tegra_exit(void)
304 platform_driver_unregister(&sdhci_tegra_driver
);
306 module_exit(sdhci_tegra_exit
);
308 MODULE_DESCRIPTION("SDHCI driver for Tegra");
309 MODULE_AUTHOR(" Google, Inc.");
310 MODULE_LICENSE("GPL v2");