blob: e27ccbb5285b8303da018ab017e14b28ab28c0d4 [file] [log] [blame]
Wolfram Sang95f25ef2010-10-15 12:21:04 +02001/*
2 * Freescale eSDHC i.MX controller driver for the platform bus.
3 *
4 * derived from the OF-version.
5 *
6 * Copyright (c) 2010 Pengutronix e.K.
7 * Author: Wolfram Sang <w.sang@pengutronix.de>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License.
12 */
13
14#include <linux/io.h>
15#include <linux/delay.h>
16#include <linux/err.h>
17#include <linux/clk.h>
Wolfram Sang0c6d49c2011-02-26 14:44:39 +010018#include <linux/gpio.h>
Richard Zhue1498602011-03-25 09:18:27 -040019#include <linux/slab.h>
Wolfram Sang95f25ef2010-10-15 12:21:04 +020020#include <linux/mmc/host.h>
21#include <linux/mmc/sdhci-pltfm.h>
Richard Zhu58ac8172011-03-21 13:22:16 +080022#include <linux/mmc/mmc.h>
23#include <linux/mmc/sdio.h>
Eric Bénard37865fe2010-10-23 01:57:21 +020024#include <mach/hardware.h>
Wolfram Sang0c6d49c2011-02-26 14:44:39 +010025#include <mach/esdhc.h>
Wolfram Sang95f25ef2010-10-15 12:21:04 +020026#include "sdhci.h"
27#include "sdhci-pltfm.h"
28#include "sdhci-esdhc.h"
29
Richard Zhu58ac8172011-03-21 13:22:16 +080030/* VENDOR SPEC register */
31#define SDHCI_VENDOR_SPEC 0xC0
32#define SDHCI_VENDOR_SPEC_SDIO_QUIRK 0x00000002
33
Richard Zhue1498602011-03-25 09:18:27 -040034#define ESDHC_FLAG_GPIO_FOR_CD_WP (1 << 0)
Richard Zhu58ac8172011-03-21 13:22:16 +080035/*
36 * The CMDTYPE of the CMD register (offset 0xE) should be set to
37 * "11" when the STOP CMD12 is issued on imx53 to abort one
38 * open ended multi-blk IO. Otherwise the TC INT wouldn't
39 * be generated.
40 * In exact block transfer, the controller doesn't complete the
41 * operations automatically as required at the end of the
42 * transfer and remains on hold if the abort command is not sent.
43 * As a result, the TC flag is not asserted and SW received timeout
44 * exeception. Bit1 of Vendor Spec registor is used to fix it.
45 */
46#define ESDHC_FLAG_MULTIBLK_NO_INT (1 << 1)
Richard Zhue1498602011-03-25 09:18:27 -040047
48struct pltfm_imx_data {
49 int flags;
50 u32 scratchpad;
51};
52
Wolfram Sang95f25ef2010-10-15 12:21:04 +020053static inline void esdhc_clrset_le(struct sdhci_host *host, u32 mask, u32 val, int reg)
54{
55 void __iomem *base = host->ioaddr + (reg & ~0x3);
56 u32 shift = (reg & 0x3) * 8;
57
58 writel(((readl(base) & ~(mask << shift)) | (val << shift)), base);
59}
60
Wolfram Sang7e29c302011-02-26 14:44:41 +010061static u32 esdhc_readl_le(struct sdhci_host *host, int reg)
62{
Richard Zhue1498602011-03-25 09:18:27 -040063 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
64 struct pltfm_imx_data *imx_data = pltfm_host->priv;
65
Wolfram Sang7e29c302011-02-26 14:44:41 +010066 /* fake CARD_PRESENT flag on mx25/35 */
67 u32 val = readl(host->ioaddr + reg);
68
Richard Zhue1498602011-03-25 09:18:27 -040069 if (unlikely((reg == SDHCI_PRESENT_STATE)
70 && (imx_data->flags & ESDHC_FLAG_GPIO_FOR_CD_WP))) {
Wolfram Sang7e29c302011-02-26 14:44:41 +010071 struct esdhc_platform_data *boarddata =
72 host->mmc->parent->platform_data;
73
74 if (boarddata && gpio_is_valid(boarddata->cd_gpio)
75 && gpio_get_value(boarddata->cd_gpio))
76 /* no card, if a valid gpio says so... */
77 val &= SDHCI_CARD_PRESENT;
78 else
79 /* ... in all other cases assume card is present */
80 val |= SDHCI_CARD_PRESENT;
81 }
82
83 return val;
84}
85
86static void esdhc_writel_le(struct sdhci_host *host, u32 val, int reg)
87{
Richard Zhue1498602011-03-25 09:18:27 -040088 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
89 struct pltfm_imx_data *imx_data = pltfm_host->priv;
90
91 if (unlikely((reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)
92 && (imx_data->flags & ESDHC_FLAG_GPIO_FOR_CD_WP)))
Wolfram Sang7e29c302011-02-26 14:44:41 +010093 /*
94 * these interrupts won't work with a custom card_detect gpio
95 * (only applied to mx25/35)
96 */
97 val &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
98
Richard Zhu58ac8172011-03-21 13:22:16 +080099 if (unlikely((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
100 && (reg == SDHCI_INT_STATUS)
101 && (val & SDHCI_INT_DATA_END))) {
102 u32 v;
103 v = readl(host->ioaddr + SDHCI_VENDOR_SPEC);
104 v &= ~SDHCI_VENDOR_SPEC_SDIO_QUIRK;
105 writel(v, host->ioaddr + SDHCI_VENDOR_SPEC);
106 }
107
Wolfram Sang7e29c302011-02-26 14:44:41 +0100108 writel(val, host->ioaddr + reg);
109}
110
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200111static u16 esdhc_readw_le(struct sdhci_host *host, int reg)
112{
113 if (unlikely(reg == SDHCI_HOST_VERSION))
114 reg ^= 2;
115
116 return readw(host->ioaddr + reg);
117}
118
119static void esdhc_writew_le(struct sdhci_host *host, u16 val, int reg)
120{
121 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400122 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200123
124 switch (reg) {
125 case SDHCI_TRANSFER_MODE:
126 /*
127 * Postpone this write, we must do it together with a
128 * command write that is down below.
129 */
Richard Zhu58ac8172011-03-21 13:22:16 +0800130 if ((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
131 && (host->cmd->opcode == SD_IO_RW_EXTENDED)
132 && (host->cmd->data->blocks > 1)
133 && (host->cmd->data->flags & MMC_DATA_READ)) {
134 u32 v;
135 v = readl(host->ioaddr + SDHCI_VENDOR_SPEC);
136 v |= SDHCI_VENDOR_SPEC_SDIO_QUIRK;
137 writel(v, host->ioaddr + SDHCI_VENDOR_SPEC);
138 }
Richard Zhue1498602011-03-25 09:18:27 -0400139 imx_data->scratchpad = val;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200140 return;
141 case SDHCI_COMMAND:
Richard Zhu58ac8172011-03-21 13:22:16 +0800142 if ((host->cmd->opcode == MMC_STOP_TRANSMISSION)
143 && (imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT))
144 val |= SDHCI_CMD_ABORTCMD;
Richard Zhue1498602011-03-25 09:18:27 -0400145 writel(val << 16 | imx_data->scratchpad,
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200146 host->ioaddr + SDHCI_TRANSFER_MODE);
147 return;
148 case SDHCI_BLOCK_SIZE:
149 val &= ~SDHCI_MAKE_BLKSZ(0x7, 0);
150 break;
151 }
152 esdhc_clrset_le(host, 0xffff, val, reg);
153}
154
155static void esdhc_writeb_le(struct sdhci_host *host, u8 val, int reg)
156{
157 u32 new_val;
158
159 switch (reg) {
160 case SDHCI_POWER_CONTROL:
161 /*
162 * FSL put some DMA bits here
163 * If your board has a regulator, code should be here
164 */
165 return;
166 case SDHCI_HOST_CONTROL:
167 /* FSL messed up here, so we can just keep those two */
168 new_val = val & (SDHCI_CTRL_LED | SDHCI_CTRL_4BITBUS);
169 /* ensure the endianess */
170 new_val |= ESDHC_HOST_CONTROL_LE;
171 /* DMA mode bits are shifted */
172 new_val |= (val & SDHCI_CTRL_DMA_MASK) << 5;
173
174 esdhc_clrset_le(host, 0xffff, new_val, reg);
175 return;
176 }
177 esdhc_clrset_le(host, 0xff, val, reg);
178}
179
180static unsigned int esdhc_pltfm_get_max_clock(struct sdhci_host *host)
181{
182 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
183
184 return clk_get_rate(pltfm_host->clk);
185}
186
187static unsigned int esdhc_pltfm_get_min_clock(struct sdhci_host *host)
188{
189 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
190
191 return clk_get_rate(pltfm_host->clk) / 256 / 16;
192}
193
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100194static struct sdhci_ops sdhci_esdhc_ops = {
Richard Zhue1498602011-03-25 09:18:27 -0400195 .read_l = esdhc_readl_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100196 .read_w = esdhc_readw_le,
Richard Zhue1498602011-03-25 09:18:27 -0400197 .write_l = esdhc_writel_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100198 .write_w = esdhc_writew_le,
199 .write_b = esdhc_writeb_le,
200 .set_clock = esdhc_set_clock,
201 .get_max_clock = esdhc_pltfm_get_max_clock,
202 .get_min_clock = esdhc_pltfm_get_min_clock,
203};
204
Shawn Guo85d65092011-05-27 23:48:12 +0800205static struct sdhci_pltfm_data sdhci_esdhc_imx_pdata = {
206 .quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_BROKEN_ADMA
207 | SDHCI_QUIRK_BROKEN_CARD_DETECTION,
208 /* ADMA has issues. Might be fixable */
209 .ops = &sdhci_esdhc_ops,
210};
211
212static unsigned int esdhc_pltfm_get_ro(struct sdhci_host *host)
213{
214 struct esdhc_platform_data *boarddata =
215 host->mmc->parent->platform_data;
216
217 if (boarddata && gpio_is_valid(boarddata->wp_gpio))
218 return gpio_get_value(boarddata->wp_gpio);
219 else
220 return -ENOSYS;
221}
222
Wolfram Sang7e29c302011-02-26 14:44:41 +0100223static irqreturn_t cd_irq(int irq, void *data)
224{
225 struct sdhci_host *sdhost = (struct sdhci_host *)data;
226
227 tasklet_schedule(&sdhost->card_tasklet);
228 return IRQ_HANDLED;
229};
230
Shawn Guo85d65092011-05-27 23:48:12 +0800231static int __devinit sdhci_esdhc_imx_probe(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200232{
Shawn Guo85d65092011-05-27 23:48:12 +0800233 struct sdhci_pltfm_host *pltfm_host;
234 struct sdhci_host *host;
235 struct esdhc_platform_data *boarddata;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200236 struct clk *clk;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100237 int err;
Richard Zhue1498602011-03-25 09:18:27 -0400238 struct pltfm_imx_data *imx_data;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200239
Shawn Guo85d65092011-05-27 23:48:12 +0800240 host = sdhci_pltfm_init(pdev, &sdhci_esdhc_imx_pdata);
241 if (IS_ERR(host))
242 return PTR_ERR(host);
243
244 pltfm_host = sdhci_priv(host);
245
246 imx_data = kzalloc(sizeof(struct pltfm_imx_data), GFP_KERNEL);
247 if (!imx_data)
248 return -ENOMEM;
249 pltfm_host->priv = imx_data;
250
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200251 clk = clk_get(mmc_dev(host->mmc), NULL);
252 if (IS_ERR(clk)) {
253 dev_err(mmc_dev(host->mmc), "clk err\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800254 err = PTR_ERR(clk);
255 goto err_clk_get;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200256 }
257 clk_enable(clk);
258 pltfm_host->clk = clk;
259
Richard Zhue1498602011-03-25 09:18:27 -0400260 if (!cpu_is_mx25())
Eric Bénard37865fe2010-10-23 01:57:21 +0200261 host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
262
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100263 if (cpu_is_mx25() || cpu_is_mx35()) {
264 /* Fix errata ENGcm07207 present on i.MX25 and i.MX35 */
Eric Bénard16a790b2010-10-23 01:57:22 +0200265 host->quirks |= SDHCI_QUIRK_NO_MULTIBLOCK;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100266 /* write_protect can't be routed to controller, use gpio */
267 sdhci_esdhc_ops.get_ro = esdhc_pltfm_get_ro;
268 }
269
Richard Zhu58ac8172011-03-21 13:22:16 +0800270 if (!(cpu_is_mx25() || cpu_is_mx35() || cpu_is_mx51()))
271 imx_data->flags |= ESDHC_FLAG_MULTIBLK_NO_INT;
272
Shawn Guo85d65092011-05-27 23:48:12 +0800273 boarddata = host->mmc->parent->platform_data;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100274 if (boarddata) {
275 err = gpio_request_one(boarddata->wp_gpio, GPIOF_IN, "ESDHC_WP");
276 if (err) {
277 dev_warn(mmc_dev(host->mmc),
278 "no write-protect pin available!\n");
279 boarddata->wp_gpio = err;
280 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100281
282 err = gpio_request_one(boarddata->cd_gpio, GPIOF_IN, "ESDHC_CD");
283 if (err) {
284 dev_warn(mmc_dev(host->mmc),
285 "no card-detect pin available!\n");
286 goto no_card_detect_pin;
287 }
288
289 /* i.MX5x has issues to be researched */
290 if (!cpu_is_mx25() && !cpu_is_mx35())
291 goto not_supported;
292
293 err = request_irq(gpio_to_irq(boarddata->cd_gpio), cd_irq,
294 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
295 mmc_hostname(host->mmc), host);
296 if (err) {
297 dev_warn(mmc_dev(host->mmc), "request irq error\n");
298 goto no_card_detect_irq;
299 }
300
Richard Zhue1498602011-03-25 09:18:27 -0400301 imx_data->flags |= ESDHC_FLAG_GPIO_FOR_CD_WP;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100302 /* Now we have a working card_detect again */
303 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100304 }
Eric Bénard16a790b2010-10-23 01:57:22 +0200305
Shawn Guo85d65092011-05-27 23:48:12 +0800306 err = sdhci_add_host(host);
307 if (err)
308 goto err_add_host;
309
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200310 return 0;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100311
312 no_card_detect_irq:
313 gpio_free(boarddata->cd_gpio);
314 no_card_detect_pin:
315 boarddata->cd_gpio = err;
316 not_supported:
Richard Zhue1498602011-03-25 09:18:27 -0400317 kfree(imx_data);
Shawn Guo85d65092011-05-27 23:48:12 +0800318 err_add_host:
319 clk_disable(pltfm_host->clk);
320 clk_put(pltfm_host->clk);
321 err_clk_get:
322 sdhci_pltfm_free(pdev);
323 return err;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200324}
325
Shawn Guo85d65092011-05-27 23:48:12 +0800326static int __devexit sdhci_esdhc_imx_remove(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200327{
Shawn Guo85d65092011-05-27 23:48:12 +0800328 struct sdhci_host *host = platform_get_drvdata(pdev);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200329 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100330 struct esdhc_platform_data *boarddata = host->mmc->parent->platform_data;
Richard Zhue1498602011-03-25 09:18:27 -0400331 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Shawn Guo85d65092011-05-27 23:48:12 +0800332 int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
333
334 sdhci_remove_host(host, dead);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100335
336 if (boarddata && gpio_is_valid(boarddata->wp_gpio))
337 gpio_free(boarddata->wp_gpio);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200338
Wolfram Sang7e29c302011-02-26 14:44:41 +0100339 if (boarddata && gpio_is_valid(boarddata->cd_gpio)) {
340 gpio_free(boarddata->cd_gpio);
341
342 if (!(host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION))
343 free_irq(gpio_to_irq(boarddata->cd_gpio), host);
344 }
345
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200346 clk_disable(pltfm_host->clk);
347 clk_put(pltfm_host->clk);
Richard Zhue1498602011-03-25 09:18:27 -0400348 kfree(imx_data);
Shawn Guo85d65092011-05-27 23:48:12 +0800349
350 sdhci_pltfm_free(pdev);
351
352 return 0;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200353}
354
Shawn Guo85d65092011-05-27 23:48:12 +0800355static struct platform_driver sdhci_esdhc_imx_driver = {
356 .driver = {
357 .name = "sdhci-esdhc-imx",
358 .owner = THIS_MODULE,
359 },
360 .probe = sdhci_esdhc_imx_probe,
361 .remove = __devexit_p(sdhci_esdhc_imx_remove),
362#ifdef CONFIG_PM
363 .suspend = sdhci_pltfm_suspend,
364 .resume = sdhci_pltfm_resume,
365#endif
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200366};
Shawn Guo85d65092011-05-27 23:48:12 +0800367
368static int __init sdhci_esdhc_imx_init(void)
369{
370 return platform_driver_register(&sdhci_esdhc_imx_driver);
371}
372module_init(sdhci_esdhc_imx_init);
373
374static void __exit sdhci_esdhc_imx_exit(void)
375{
376 platform_driver_unregister(&sdhci_esdhc_imx_driver);
377}
378module_exit(sdhci_esdhc_imx_exit);
379
380MODULE_DESCRIPTION("SDHCI driver for Freescale i.MX eSDHC");
381MODULE_AUTHOR("Wolfram Sang <w.sang@pengutronix.de>");
382MODULE_LICENSE("GPL v2");