blob: 710b706f4fcfd95ffd216068d07109c92c02f4f4 [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>
Richard Zhu58ac8172011-03-21 13:22:16 +080021#include <linux/mmc/mmc.h>
22#include <linux/mmc/sdio.h>
Eric Bénard37865fe2010-10-23 01:57:21 +020023#include <mach/hardware.h>
Wolfram Sang0c6d49c2011-02-26 14:44:39 +010024#include <mach/esdhc.h>
Wolfram Sang95f25ef2010-10-15 12:21:04 +020025#include "sdhci-pltfm.h"
26#include "sdhci-esdhc.h"
27
Richard Zhu58ac8172011-03-21 13:22:16 +080028/* VENDOR SPEC register */
29#define SDHCI_VENDOR_SPEC 0xC0
30#define SDHCI_VENDOR_SPEC_SDIO_QUIRK 0x00000002
31
Shawn Guoe8cd77e2011-06-21 22:41:50 +080032#define ESDHC_FLAG_GPIO_FOR_CD (1 << 0)
Richard Zhu58ac8172011-03-21 13:22:16 +080033/*
34 * The CMDTYPE of the CMD register (offset 0xE) should be set to
35 * "11" when the STOP CMD12 is issued on imx53 to abort one
36 * open ended multi-blk IO. Otherwise the TC INT wouldn't
37 * be generated.
38 * In exact block transfer, the controller doesn't complete the
39 * operations automatically as required at the end of the
40 * transfer and remains on hold if the abort command is not sent.
41 * As a result, the TC flag is not asserted and SW received timeout
42 * exeception. Bit1 of Vendor Spec registor is used to fix it.
43 */
44#define ESDHC_FLAG_MULTIBLK_NO_INT (1 << 1)
Richard Zhue1498602011-03-25 09:18:27 -040045
46struct pltfm_imx_data {
47 int flags;
48 u32 scratchpad;
49};
50
Wolfram Sang95f25ef2010-10-15 12:21:04 +020051static inline void esdhc_clrset_le(struct sdhci_host *host, u32 mask, u32 val, int reg)
52{
53 void __iomem *base = host->ioaddr + (reg & ~0x3);
54 u32 shift = (reg & 0x3) * 8;
55
56 writel(((readl(base) & ~(mask << shift)) | (val << shift)), base);
57}
58
Wolfram Sang7e29c302011-02-26 14:44:41 +010059static u32 esdhc_readl_le(struct sdhci_host *host, int reg)
60{
Richard Zhue1498602011-03-25 09:18:27 -040061 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
62 struct pltfm_imx_data *imx_data = pltfm_host->priv;
63
Wolfram Sang7e29c302011-02-26 14:44:41 +010064 /* fake CARD_PRESENT flag on mx25/35 */
65 u32 val = readl(host->ioaddr + reg);
66
Richard Zhue1498602011-03-25 09:18:27 -040067 if (unlikely((reg == SDHCI_PRESENT_STATE)
Shawn Guoe8cd77e2011-06-21 22:41:50 +080068 && (imx_data->flags & ESDHC_FLAG_GPIO_FOR_CD))) {
Wolfram Sang7e29c302011-02-26 14:44:41 +010069 struct esdhc_platform_data *boarddata =
70 host->mmc->parent->platform_data;
71
72 if (boarddata && gpio_is_valid(boarddata->cd_gpio)
73 && gpio_get_value(boarddata->cd_gpio))
74 /* no card, if a valid gpio says so... */
Shawn Guo803862a2011-06-21 22:41:49 +080075 val &= ~SDHCI_CARD_PRESENT;
Wolfram Sang7e29c302011-02-26 14:44:41 +010076 else
77 /* ... in all other cases assume card is present */
78 val |= SDHCI_CARD_PRESENT;
79 }
80
81 return val;
82}
83
84static void esdhc_writel_le(struct sdhci_host *host, u32 val, int reg)
85{
Richard Zhue1498602011-03-25 09:18:27 -040086 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
87 struct pltfm_imx_data *imx_data = pltfm_host->priv;
88
89 if (unlikely((reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)
Shawn Guoe8cd77e2011-06-21 22:41:50 +080090 && (imx_data->flags & ESDHC_FLAG_GPIO_FOR_CD)))
Wolfram Sang7e29c302011-02-26 14:44:41 +010091 /*
92 * these interrupts won't work with a custom card_detect gpio
93 * (only applied to mx25/35)
94 */
95 val &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
96
Richard Zhu58ac8172011-03-21 13:22:16 +080097 if (unlikely((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
98 && (reg == SDHCI_INT_STATUS)
99 && (val & SDHCI_INT_DATA_END))) {
100 u32 v;
101 v = readl(host->ioaddr + SDHCI_VENDOR_SPEC);
102 v &= ~SDHCI_VENDOR_SPEC_SDIO_QUIRK;
103 writel(v, host->ioaddr + SDHCI_VENDOR_SPEC);
104 }
105
Wolfram Sang7e29c302011-02-26 14:44:41 +0100106 writel(val, host->ioaddr + reg);
107}
108
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200109static u16 esdhc_readw_le(struct sdhci_host *host, int reg)
110{
111 if (unlikely(reg == SDHCI_HOST_VERSION))
112 reg ^= 2;
113
114 return readw(host->ioaddr + reg);
115}
116
117static void esdhc_writew_le(struct sdhci_host *host, u16 val, int reg)
118{
119 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400120 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200121
122 switch (reg) {
123 case SDHCI_TRANSFER_MODE:
124 /*
125 * Postpone this write, we must do it together with a
126 * command write that is down below.
127 */
Richard Zhu58ac8172011-03-21 13:22:16 +0800128 if ((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
129 && (host->cmd->opcode == SD_IO_RW_EXTENDED)
130 && (host->cmd->data->blocks > 1)
131 && (host->cmd->data->flags & MMC_DATA_READ)) {
132 u32 v;
133 v = readl(host->ioaddr + SDHCI_VENDOR_SPEC);
134 v |= SDHCI_VENDOR_SPEC_SDIO_QUIRK;
135 writel(v, host->ioaddr + SDHCI_VENDOR_SPEC);
136 }
Richard Zhue1498602011-03-25 09:18:27 -0400137 imx_data->scratchpad = val;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200138 return;
139 case SDHCI_COMMAND:
Richard Zhu58ac8172011-03-21 13:22:16 +0800140 if ((host->cmd->opcode == MMC_STOP_TRANSMISSION)
141 && (imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT))
142 val |= SDHCI_CMD_ABORTCMD;
Richard Zhue1498602011-03-25 09:18:27 -0400143 writel(val << 16 | imx_data->scratchpad,
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200144 host->ioaddr + SDHCI_TRANSFER_MODE);
145 return;
146 case SDHCI_BLOCK_SIZE:
147 val &= ~SDHCI_MAKE_BLKSZ(0x7, 0);
148 break;
149 }
150 esdhc_clrset_le(host, 0xffff, val, reg);
151}
152
153static void esdhc_writeb_le(struct sdhci_host *host, u8 val, int reg)
154{
155 u32 new_val;
156
157 switch (reg) {
158 case SDHCI_POWER_CONTROL:
159 /*
160 * FSL put some DMA bits here
161 * If your board has a regulator, code should be here
162 */
163 return;
164 case SDHCI_HOST_CONTROL:
165 /* FSL messed up here, so we can just keep those two */
166 new_val = val & (SDHCI_CTRL_LED | SDHCI_CTRL_4BITBUS);
167 /* ensure the endianess */
168 new_val |= ESDHC_HOST_CONTROL_LE;
169 /* DMA mode bits are shifted */
170 new_val |= (val & SDHCI_CTRL_DMA_MASK) << 5;
171
172 esdhc_clrset_le(host, 0xffff, new_val, reg);
173 return;
174 }
175 esdhc_clrset_le(host, 0xff, val, reg);
176}
177
178static unsigned int esdhc_pltfm_get_max_clock(struct sdhci_host *host)
179{
180 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
181
182 return clk_get_rate(pltfm_host->clk);
183}
184
185static unsigned int esdhc_pltfm_get_min_clock(struct sdhci_host *host)
186{
187 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
188
189 return clk_get_rate(pltfm_host->clk) / 256 / 16;
190}
191
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100192static struct sdhci_ops sdhci_esdhc_ops = {
Richard Zhue1498602011-03-25 09:18:27 -0400193 .read_l = esdhc_readl_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100194 .read_w = esdhc_readw_le,
Richard Zhue1498602011-03-25 09:18:27 -0400195 .write_l = esdhc_writel_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100196 .write_w = esdhc_writew_le,
197 .write_b = esdhc_writeb_le,
198 .set_clock = esdhc_set_clock,
199 .get_max_clock = esdhc_pltfm_get_max_clock,
200 .get_min_clock = esdhc_pltfm_get_min_clock,
201};
202
Shawn Guo85d65092011-05-27 23:48:12 +0800203static struct sdhci_pltfm_data sdhci_esdhc_imx_pdata = {
204 .quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_BROKEN_ADMA
205 | SDHCI_QUIRK_BROKEN_CARD_DETECTION,
206 /* ADMA has issues. Might be fixable */
207 .ops = &sdhci_esdhc_ops,
208};
209
210static unsigned int esdhc_pltfm_get_ro(struct sdhci_host *host)
211{
212 struct esdhc_platform_data *boarddata =
213 host->mmc->parent->platform_data;
214
215 if (boarddata && gpio_is_valid(boarddata->wp_gpio))
216 return gpio_get_value(boarddata->wp_gpio);
217 else
218 return -ENOSYS;
219}
220
Wolfram Sang7e29c302011-02-26 14:44:41 +0100221static irqreturn_t cd_irq(int irq, void *data)
222{
223 struct sdhci_host *sdhost = (struct sdhci_host *)data;
224
225 tasklet_schedule(&sdhost->card_tasklet);
226 return IRQ_HANDLED;
227};
228
Shawn Guo85d65092011-05-27 23:48:12 +0800229static int __devinit sdhci_esdhc_imx_probe(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200230{
Shawn Guo85d65092011-05-27 23:48:12 +0800231 struct sdhci_pltfm_host *pltfm_host;
232 struct sdhci_host *host;
233 struct esdhc_platform_data *boarddata;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200234 struct clk *clk;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100235 int err;
Richard Zhue1498602011-03-25 09:18:27 -0400236 struct pltfm_imx_data *imx_data;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200237
Shawn Guo85d65092011-05-27 23:48:12 +0800238 host = sdhci_pltfm_init(pdev, &sdhci_esdhc_imx_pdata);
239 if (IS_ERR(host))
240 return PTR_ERR(host);
241
242 pltfm_host = sdhci_priv(host);
243
244 imx_data = kzalloc(sizeof(struct pltfm_imx_data), GFP_KERNEL);
245 if (!imx_data)
246 return -ENOMEM;
247 pltfm_host->priv = imx_data;
248
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200249 clk = clk_get(mmc_dev(host->mmc), NULL);
250 if (IS_ERR(clk)) {
251 dev_err(mmc_dev(host->mmc), "clk err\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800252 err = PTR_ERR(clk);
253 goto err_clk_get;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200254 }
255 clk_enable(clk);
256 pltfm_host->clk = clk;
257
Richard Zhue1498602011-03-25 09:18:27 -0400258 if (!cpu_is_mx25())
Eric Bénard37865fe2010-10-23 01:57:21 +0200259 host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
260
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100261 if (cpu_is_mx25() || cpu_is_mx35()) {
262 /* Fix errata ENGcm07207 present on i.MX25 and i.MX35 */
Eric Bénard16a790b2010-10-23 01:57:22 +0200263 host->quirks |= SDHCI_QUIRK_NO_MULTIBLOCK;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100264 /* write_protect can't be routed to controller, use gpio */
265 sdhci_esdhc_ops.get_ro = esdhc_pltfm_get_ro;
266 }
267
Richard Zhu58ac8172011-03-21 13:22:16 +0800268 if (!(cpu_is_mx25() || cpu_is_mx35() || cpu_is_mx51()))
269 imx_data->flags |= ESDHC_FLAG_MULTIBLK_NO_INT;
270
Shawn Guo85d65092011-05-27 23:48:12 +0800271 boarddata = host->mmc->parent->platform_data;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100272 if (boarddata) {
273 err = gpio_request_one(boarddata->wp_gpio, GPIOF_IN, "ESDHC_WP");
274 if (err) {
275 dev_warn(mmc_dev(host->mmc),
276 "no write-protect pin available!\n");
277 boarddata->wp_gpio = err;
278 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100279
280 err = gpio_request_one(boarddata->cd_gpio, GPIOF_IN, "ESDHC_CD");
281 if (err) {
282 dev_warn(mmc_dev(host->mmc),
283 "no card-detect pin available!\n");
284 goto no_card_detect_pin;
285 }
286
287 /* i.MX5x has issues to be researched */
288 if (!cpu_is_mx25() && !cpu_is_mx35())
289 goto not_supported;
290
291 err = request_irq(gpio_to_irq(boarddata->cd_gpio), cd_irq,
292 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
293 mmc_hostname(host->mmc), host);
294 if (err) {
295 dev_warn(mmc_dev(host->mmc), "request irq error\n");
296 goto no_card_detect_irq;
297 }
298
Shawn Guoe8cd77e2011-06-21 22:41:50 +0800299 imx_data->flags |= ESDHC_FLAG_GPIO_FOR_CD;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100300 /* Now we have a working card_detect again */
301 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100302 }
Eric Bénard16a790b2010-10-23 01:57:22 +0200303
Shawn Guo85d65092011-05-27 23:48:12 +0800304 err = sdhci_add_host(host);
305 if (err)
306 goto err_add_host;
307
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200308 return 0;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100309
310 no_card_detect_irq:
311 gpio_free(boarddata->cd_gpio);
312 no_card_detect_pin:
313 boarddata->cd_gpio = err;
314 not_supported:
Richard Zhue1498602011-03-25 09:18:27 -0400315 kfree(imx_data);
Shawn Guo85d65092011-05-27 23:48:12 +0800316 err_add_host:
317 clk_disable(pltfm_host->clk);
318 clk_put(pltfm_host->clk);
319 err_clk_get:
320 sdhci_pltfm_free(pdev);
321 return err;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200322}
323
Shawn Guo85d65092011-05-27 23:48:12 +0800324static int __devexit sdhci_esdhc_imx_remove(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200325{
Shawn Guo85d65092011-05-27 23:48:12 +0800326 struct sdhci_host *host = platform_get_drvdata(pdev);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200327 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100328 struct esdhc_platform_data *boarddata = host->mmc->parent->platform_data;
Richard Zhue1498602011-03-25 09:18:27 -0400329 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Shawn Guo85d65092011-05-27 23:48:12 +0800330 int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
331
332 sdhci_remove_host(host, dead);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100333
334 if (boarddata && gpio_is_valid(boarddata->wp_gpio))
335 gpio_free(boarddata->wp_gpio);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200336
Wolfram Sang7e29c302011-02-26 14:44:41 +0100337 if (boarddata && gpio_is_valid(boarddata->cd_gpio)) {
338 gpio_free(boarddata->cd_gpio);
339
340 if (!(host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION))
341 free_irq(gpio_to_irq(boarddata->cd_gpio), host);
342 }
343
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200344 clk_disable(pltfm_host->clk);
345 clk_put(pltfm_host->clk);
Richard Zhue1498602011-03-25 09:18:27 -0400346 kfree(imx_data);
Shawn Guo85d65092011-05-27 23:48:12 +0800347
348 sdhci_pltfm_free(pdev);
349
350 return 0;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200351}
352
Shawn Guo85d65092011-05-27 23:48:12 +0800353static struct platform_driver sdhci_esdhc_imx_driver = {
354 .driver = {
355 .name = "sdhci-esdhc-imx",
356 .owner = THIS_MODULE,
357 },
358 .probe = sdhci_esdhc_imx_probe,
359 .remove = __devexit_p(sdhci_esdhc_imx_remove),
360#ifdef CONFIG_PM
361 .suspend = sdhci_pltfm_suspend,
362 .resume = sdhci_pltfm_resume,
363#endif
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200364};
Shawn Guo85d65092011-05-27 23:48:12 +0800365
366static int __init sdhci_esdhc_imx_init(void)
367{
368 return platform_driver_register(&sdhci_esdhc_imx_driver);
369}
370module_init(sdhci_esdhc_imx_init);
371
372static void __exit sdhci_esdhc_imx_exit(void)
373{
374 platform_driver_unregister(&sdhci_esdhc_imx_driver);
375}
376module_exit(sdhci_esdhc_imx_exit);
377
378MODULE_DESCRIPTION("SDHCI driver for Freescale i.MX eSDHC");
379MODULE_AUTHOR("Wolfram Sang <w.sang@pengutronix.de>");
380MODULE_LICENSE("GPL v2");