blob: ae57769ba50d53c129bc1b6399b92db37c9bc010 [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>
Shawn Guo66506f72011-08-15 10:28:18 +080019#include <linux/module.h>
Richard Zhue1498602011-03-25 09:18:27 -040020#include <linux/slab.h>
Wolfram Sang95f25ef2010-10-15 12:21:04 +020021#include <linux/mmc/host.h>
Richard Zhu58ac8172011-03-21 13:22:16 +080022#include <linux/mmc/mmc.h>
23#include <linux/mmc/sdio.h>
Shawn Guoabfafc22011-06-30 15:44:44 +080024#include <linux/of.h>
25#include <linux/of_device.h>
26#include <linux/of_gpio.h>
Wolfram Sang0c6d49c2011-02-26 14:44:39 +010027#include <mach/esdhc.h>
Wolfram Sang95f25ef2010-10-15 12:21:04 +020028#include "sdhci-pltfm.h"
29#include "sdhci-esdhc.h"
30
Tony Lin0d588642011-08-11 16:45:59 -040031#define SDHCI_CTRL_D3CD 0x08
Richard Zhu58ac8172011-03-21 13:22:16 +080032/* VENDOR SPEC register */
33#define SDHCI_VENDOR_SPEC 0xC0
34#define SDHCI_VENDOR_SPEC_SDIO_QUIRK 0x00000002
Shawn Guo95a24822011-09-19 17:32:21 +080035#define SDHCI_MIX_CTRL 0x48
Richard Zhu58ac8172011-03-21 13:22:16 +080036
Richard Zhu58ac8172011-03-21 13:22:16 +080037/*
Richard Zhu97e4ba62011-08-11 16:51:46 -040038 * There is an INT DMA ERR mis-match between eSDHC and STD SDHC SPEC:
39 * Bit25 is used in STD SPEC, and is reserved in fsl eSDHC design,
40 * but bit28 is used as the INT DMA ERR in fsl eSDHC design.
41 * Define this macro DMA error INT for fsl eSDHC
42 */
43#define SDHCI_INT_VENDOR_SPEC_DMA_ERR 0x10000000
44
45/*
Richard Zhu58ac8172011-03-21 13:22:16 +080046 * The CMDTYPE of the CMD register (offset 0xE) should be set to
47 * "11" when the STOP CMD12 is issued on imx53 to abort one
48 * open ended multi-blk IO. Otherwise the TC INT wouldn't
49 * be generated.
50 * In exact block transfer, the controller doesn't complete the
51 * operations automatically as required at the end of the
52 * transfer and remains on hold if the abort command is not sent.
53 * As a result, the TC flag is not asserted and SW received timeout
54 * exeception. Bit1 of Vendor Spec registor is used to fix it.
55 */
56#define ESDHC_FLAG_MULTIBLK_NO_INT (1 << 1)
Richard Zhue1498602011-03-25 09:18:27 -040057
Shawn Guo57ed3312011-06-30 09:24:26 +080058enum imx_esdhc_type {
59 IMX25_ESDHC,
60 IMX35_ESDHC,
61 IMX51_ESDHC,
62 IMX53_ESDHC,
Shawn Guo95a24822011-09-19 17:32:21 +080063 IMX6Q_USDHC,
Shawn Guo57ed3312011-06-30 09:24:26 +080064};
65
Richard Zhue1498602011-03-25 09:18:27 -040066struct pltfm_imx_data {
67 int flags;
68 u32 scratchpad;
Shawn Guo57ed3312011-06-30 09:24:26 +080069 enum imx_esdhc_type devtype;
Shawn Guo842afc02011-07-06 22:57:48 +080070 struct esdhc_platform_data boarddata;
Richard Zhue1498602011-03-25 09:18:27 -040071};
72
Shawn Guo57ed3312011-06-30 09:24:26 +080073static struct platform_device_id imx_esdhc_devtype[] = {
74 {
75 .name = "sdhci-esdhc-imx25",
76 .driver_data = IMX25_ESDHC,
77 }, {
78 .name = "sdhci-esdhc-imx35",
79 .driver_data = IMX35_ESDHC,
80 }, {
81 .name = "sdhci-esdhc-imx51",
82 .driver_data = IMX51_ESDHC,
83 }, {
84 .name = "sdhci-esdhc-imx53",
85 .driver_data = IMX53_ESDHC,
86 }, {
Shawn Guo95a24822011-09-19 17:32:21 +080087 .name = "sdhci-usdhc-imx6q",
88 .driver_data = IMX6Q_USDHC,
89 }, {
Shawn Guo57ed3312011-06-30 09:24:26 +080090 /* sentinel */
91 }
92};
93MODULE_DEVICE_TABLE(platform, imx_esdhc_devtype);
94
Shawn Guoabfafc22011-06-30 15:44:44 +080095static const struct of_device_id imx_esdhc_dt_ids[] = {
96 { .compatible = "fsl,imx25-esdhc", .data = &imx_esdhc_devtype[IMX25_ESDHC], },
97 { .compatible = "fsl,imx35-esdhc", .data = &imx_esdhc_devtype[IMX35_ESDHC], },
98 { .compatible = "fsl,imx51-esdhc", .data = &imx_esdhc_devtype[IMX51_ESDHC], },
99 { .compatible = "fsl,imx53-esdhc", .data = &imx_esdhc_devtype[IMX53_ESDHC], },
Shawn Guo95a24822011-09-19 17:32:21 +0800100 { .compatible = "fsl,imx6q-usdhc", .data = &imx_esdhc_devtype[IMX6Q_USDHC], },
Shawn Guoabfafc22011-06-30 15:44:44 +0800101 { /* sentinel */ }
102};
103MODULE_DEVICE_TABLE(of, imx_esdhc_dt_ids);
104
Shawn Guo57ed3312011-06-30 09:24:26 +0800105static inline int is_imx25_esdhc(struct pltfm_imx_data *data)
106{
107 return data->devtype == IMX25_ESDHC;
108}
109
110static inline int is_imx35_esdhc(struct pltfm_imx_data *data)
111{
112 return data->devtype == IMX35_ESDHC;
113}
114
115static inline int is_imx51_esdhc(struct pltfm_imx_data *data)
116{
117 return data->devtype == IMX51_ESDHC;
118}
119
120static inline int is_imx53_esdhc(struct pltfm_imx_data *data)
121{
122 return data->devtype == IMX53_ESDHC;
123}
124
Shawn Guo95a24822011-09-19 17:32:21 +0800125static inline int is_imx6q_usdhc(struct pltfm_imx_data *data)
126{
127 return data->devtype == IMX6Q_USDHC;
128}
129
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200130static inline void esdhc_clrset_le(struct sdhci_host *host, u32 mask, u32 val, int reg)
131{
132 void __iomem *base = host->ioaddr + (reg & ~0x3);
133 u32 shift = (reg & 0x3) * 8;
134
135 writel(((readl(base) & ~(mask << shift)) | (val << shift)), base);
136}
137
Wolfram Sang7e29c302011-02-26 14:44:41 +0100138static u32 esdhc_readl_le(struct sdhci_host *host, int reg)
139{
Shawn Guo842afc02011-07-06 22:57:48 +0800140 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
141 struct pltfm_imx_data *imx_data = pltfm_host->priv;
142 struct esdhc_platform_data *boarddata = &imx_data->boarddata;
Richard Zhue1498602011-03-25 09:18:27 -0400143
Shawn Guo913413c2011-06-21 22:41:51 +0800144 /* fake CARD_PRESENT flag */
Wolfram Sang7e29c302011-02-26 14:44:41 +0100145 u32 val = readl(host->ioaddr + reg);
146
Richard Zhue1498602011-03-25 09:18:27 -0400147 if (unlikely((reg == SDHCI_PRESENT_STATE)
Shawn Guo913413c2011-06-21 22:41:51 +0800148 && gpio_is_valid(boarddata->cd_gpio))) {
149 if (gpio_get_value(boarddata->cd_gpio))
Wolfram Sang7e29c302011-02-26 14:44:41 +0100150 /* no card, if a valid gpio says so... */
Shawn Guo803862a2011-06-21 22:41:49 +0800151 val &= ~SDHCI_CARD_PRESENT;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100152 else
153 /* ... in all other cases assume card is present */
154 val |= SDHCI_CARD_PRESENT;
155 }
156
Richard Zhu97e4ba62011-08-11 16:51:46 -0400157 if (unlikely(reg == SDHCI_CAPABILITIES)) {
158 /* In FSL esdhc IC module, only bit20 is used to indicate the
159 * ADMA2 capability of esdhc, but this bit is messed up on
160 * some SOCs (e.g. on MX25, MX35 this bit is set, but they
161 * don't actually support ADMA2). So set the BROKEN_ADMA
162 * uirk on MX25/35 platforms.
163 */
164
165 if (val & SDHCI_CAN_DO_ADMA1) {
166 val &= ~SDHCI_CAN_DO_ADMA1;
167 val |= SDHCI_CAN_DO_ADMA2;
168 }
169 }
170
171 if (unlikely(reg == SDHCI_INT_STATUS)) {
172 if (val & SDHCI_INT_VENDOR_SPEC_DMA_ERR) {
173 val &= ~SDHCI_INT_VENDOR_SPEC_DMA_ERR;
174 val |= SDHCI_INT_ADMA_ERROR;
175 }
176 }
177
Wolfram Sang7e29c302011-02-26 14:44:41 +0100178 return val;
179}
180
181static void esdhc_writel_le(struct sdhci_host *host, u32 val, int reg)
182{
Richard Zhue1498602011-03-25 09:18:27 -0400183 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
184 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Shawn Guo842afc02011-07-06 22:57:48 +0800185 struct esdhc_platform_data *boarddata = &imx_data->boarddata;
Tony Lin0d588642011-08-11 16:45:59 -0400186 u32 data;
Richard Zhue1498602011-03-25 09:18:27 -0400187
Tony Lin0d588642011-08-11 16:45:59 -0400188 if (unlikely(reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)) {
189 if (boarddata->cd_type == ESDHC_CD_GPIO)
190 /*
191 * These interrupts won't work with a custom
192 * card_detect gpio (only applied to mx25/35)
193 */
194 val &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
195
196 if (val & SDHCI_INT_CARD_INT) {
197 /*
198 * Clear and then set D3CD bit to avoid missing the
199 * card interrupt. This is a eSDHC controller problem
200 * so we need to apply the following workaround: clear
201 * and set D3CD bit will make eSDHC re-sample the card
202 * interrupt. In case a card interrupt was lost,
203 * re-sample it by the following steps.
204 */
205 data = readl(host->ioaddr + SDHCI_HOST_CONTROL);
206 data &= ~SDHCI_CTRL_D3CD;
207 writel(data, host->ioaddr + SDHCI_HOST_CONTROL);
208 data |= SDHCI_CTRL_D3CD;
209 writel(data, host->ioaddr + SDHCI_HOST_CONTROL);
210 }
211 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100212
Richard Zhu58ac8172011-03-21 13:22:16 +0800213 if (unlikely((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
214 && (reg == SDHCI_INT_STATUS)
215 && (val & SDHCI_INT_DATA_END))) {
216 u32 v;
217 v = readl(host->ioaddr + SDHCI_VENDOR_SPEC);
218 v &= ~SDHCI_VENDOR_SPEC_SDIO_QUIRK;
219 writel(v, host->ioaddr + SDHCI_VENDOR_SPEC);
220 }
221
Richard Zhu97e4ba62011-08-11 16:51:46 -0400222 if (unlikely(reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)) {
223 if (val & SDHCI_INT_ADMA_ERROR) {
224 val &= ~SDHCI_INT_ADMA_ERROR;
225 val |= SDHCI_INT_VENDOR_SPEC_DMA_ERR;
226 }
227 }
228
Wolfram Sang7e29c302011-02-26 14:44:41 +0100229 writel(val, host->ioaddr + reg);
230}
231
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200232static u16 esdhc_readw_le(struct sdhci_host *host, int reg)
233{
Shawn Guo95a24822011-09-19 17:32:21 +0800234 if (unlikely(reg == SDHCI_HOST_VERSION)) {
235 u16 val = readw(host->ioaddr + (reg ^ 2));
236 /*
237 * uSDHC supports SDHCI v3.0, but it's encoded as value
238 * 0x3 in host controller version register, which violates
239 * SDHCI_SPEC_300 definition. Work it around here.
240 */
241 if ((val & SDHCI_SPEC_VER_MASK) == 3)
242 return --val;
243 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200244
245 return readw(host->ioaddr + reg);
246}
247
248static void esdhc_writew_le(struct sdhci_host *host, u16 val, int reg)
249{
250 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400251 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200252
253 switch (reg) {
254 case SDHCI_TRANSFER_MODE:
255 /*
256 * Postpone this write, we must do it together with a
257 * command write that is down below.
258 */
Richard Zhu58ac8172011-03-21 13:22:16 +0800259 if ((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
260 && (host->cmd->opcode == SD_IO_RW_EXTENDED)
261 && (host->cmd->data->blocks > 1)
262 && (host->cmd->data->flags & MMC_DATA_READ)) {
263 u32 v;
264 v = readl(host->ioaddr + SDHCI_VENDOR_SPEC);
265 v |= SDHCI_VENDOR_SPEC_SDIO_QUIRK;
266 writel(v, host->ioaddr + SDHCI_VENDOR_SPEC);
267 }
Richard Zhue1498602011-03-25 09:18:27 -0400268 imx_data->scratchpad = val;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200269 return;
270 case SDHCI_COMMAND:
Richard Zhu58ac8172011-03-21 13:22:16 +0800271 if ((host->cmd->opcode == MMC_STOP_TRANSMISSION)
272 && (imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT))
273 val |= SDHCI_CMD_ABORTCMD;
Shawn Guo95a24822011-09-19 17:32:21 +0800274
275 if (is_imx6q_usdhc(imx_data)) {
276 u32 m = readl(host->ioaddr + SDHCI_MIX_CTRL);
277 m = imx_data->scratchpad | (m & 0xffff0000);
278 writel(m, host->ioaddr + SDHCI_MIX_CTRL);
279 writel(val << 16,
280 host->ioaddr + SDHCI_TRANSFER_MODE);
281 } else {
282 writel(val << 16 | imx_data->scratchpad,
283 host->ioaddr + SDHCI_TRANSFER_MODE);
284 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200285 return;
286 case SDHCI_BLOCK_SIZE:
287 val &= ~SDHCI_MAKE_BLKSZ(0x7, 0);
288 break;
289 }
290 esdhc_clrset_le(host, 0xffff, val, reg);
291}
292
293static void esdhc_writeb_le(struct sdhci_host *host, u8 val, int reg)
294{
295 u32 new_val;
296
297 switch (reg) {
298 case SDHCI_POWER_CONTROL:
299 /*
300 * FSL put some DMA bits here
301 * If your board has a regulator, code should be here
302 */
303 return;
304 case SDHCI_HOST_CONTROL:
Tony Lin0d588642011-08-11 16:45:59 -0400305 /* FSL messed up here, so we can just keep those three */
306 new_val = val & (SDHCI_CTRL_LED | \
307 SDHCI_CTRL_4BITBUS | \
308 SDHCI_CTRL_D3CD);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200309 /* ensure the endianess */
310 new_val |= ESDHC_HOST_CONTROL_LE;
311 /* DMA mode bits are shifted */
312 new_val |= (val & SDHCI_CTRL_DMA_MASK) << 5;
313
314 esdhc_clrset_le(host, 0xffff, new_val, reg);
315 return;
316 }
317 esdhc_clrset_le(host, 0xff, val, reg);
Shawn Guo913413c2011-06-21 22:41:51 +0800318
319 /*
320 * The esdhc has a design violation to SDHC spec which tells
321 * that software reset should not affect card detection circuit.
322 * But esdhc clears its SYSCTL register bits [0..2] during the
323 * software reset. This will stop those clocks that card detection
324 * circuit relies on. To work around it, we turn the clocks on back
325 * to keep card detection circuit functional.
326 */
327 if ((reg == SDHCI_SOFTWARE_RESET) && (val & 1))
328 esdhc_clrset_le(host, 0x7, 0x7, ESDHC_SYSTEM_CONTROL);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200329}
330
331static unsigned int esdhc_pltfm_get_max_clock(struct sdhci_host *host)
332{
333 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
334
335 return clk_get_rate(pltfm_host->clk);
336}
337
338static unsigned int esdhc_pltfm_get_min_clock(struct sdhci_host *host)
339{
340 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
341
342 return clk_get_rate(pltfm_host->clk) / 256 / 16;
343}
344
Shawn Guo913413c2011-06-21 22:41:51 +0800345static unsigned int esdhc_pltfm_get_ro(struct sdhci_host *host)
346{
Shawn Guo842afc02011-07-06 22:57:48 +0800347 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
348 struct pltfm_imx_data *imx_data = pltfm_host->priv;
349 struct esdhc_platform_data *boarddata = &imx_data->boarddata;
Shawn Guo913413c2011-06-21 22:41:51 +0800350
351 switch (boarddata->wp_type) {
352 case ESDHC_WP_GPIO:
353 if (gpio_is_valid(boarddata->wp_gpio))
354 return gpio_get_value(boarddata->wp_gpio);
355 case ESDHC_WP_CONTROLLER:
356 return !(readl(host->ioaddr + SDHCI_PRESENT_STATE) &
357 SDHCI_WRITE_PROTECT);
358 case ESDHC_WP_NONE:
359 break;
360 }
361
362 return -ENOSYS;
363}
364
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100365static struct sdhci_ops sdhci_esdhc_ops = {
Richard Zhue1498602011-03-25 09:18:27 -0400366 .read_l = esdhc_readl_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100367 .read_w = esdhc_readw_le,
Richard Zhue1498602011-03-25 09:18:27 -0400368 .write_l = esdhc_writel_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100369 .write_w = esdhc_writew_le,
370 .write_b = esdhc_writeb_le,
371 .set_clock = esdhc_set_clock,
372 .get_max_clock = esdhc_pltfm_get_max_clock,
373 .get_min_clock = esdhc_pltfm_get_min_clock,
Shawn Guo913413c2011-06-21 22:41:51 +0800374 .get_ro = esdhc_pltfm_get_ro,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100375};
376
Shawn Guo85d65092011-05-27 23:48:12 +0800377static struct sdhci_pltfm_data sdhci_esdhc_imx_pdata = {
Richard Zhu97e4ba62011-08-11 16:51:46 -0400378 .quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_NO_HISPD_BIT
379 | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
380 | SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
Shawn Guo85d65092011-05-27 23:48:12 +0800381 | SDHCI_QUIRK_BROKEN_CARD_DETECTION,
Shawn Guo85d65092011-05-27 23:48:12 +0800382 .ops = &sdhci_esdhc_ops,
383};
384
Wolfram Sang7e29c302011-02-26 14:44:41 +0100385static irqreturn_t cd_irq(int irq, void *data)
386{
387 struct sdhci_host *sdhost = (struct sdhci_host *)data;
388
389 tasklet_schedule(&sdhost->card_tasklet);
390 return IRQ_HANDLED;
391};
392
Shawn Guoabfafc22011-06-30 15:44:44 +0800393#ifdef CONFIG_OF
394static int __devinit
395sdhci_esdhc_imx_probe_dt(struct platform_device *pdev,
396 struct esdhc_platform_data *boarddata)
397{
398 struct device_node *np = pdev->dev.of_node;
399
400 if (!np)
401 return -ENODEV;
402
403 if (of_get_property(np, "fsl,card-wired", NULL))
404 boarddata->cd_type = ESDHC_CD_PERMANENT;
405
406 if (of_get_property(np, "fsl,cd-controller", NULL))
407 boarddata->cd_type = ESDHC_CD_CONTROLLER;
408
409 if (of_get_property(np, "fsl,wp-controller", NULL))
410 boarddata->wp_type = ESDHC_WP_CONTROLLER;
411
412 boarddata->cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
413 if (gpio_is_valid(boarddata->cd_gpio))
414 boarddata->cd_type = ESDHC_CD_GPIO;
415
416 boarddata->wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
417 if (gpio_is_valid(boarddata->wp_gpio))
418 boarddata->wp_type = ESDHC_WP_GPIO;
419
420 return 0;
421}
422#else
423static inline int
424sdhci_esdhc_imx_probe_dt(struct platform_device *pdev,
425 struct esdhc_platform_data *boarddata)
426{
427 return -ENODEV;
428}
429#endif
430
Shawn Guo85d65092011-05-27 23:48:12 +0800431static int __devinit sdhci_esdhc_imx_probe(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200432{
Shawn Guoabfafc22011-06-30 15:44:44 +0800433 const struct of_device_id *of_id =
434 of_match_device(imx_esdhc_dt_ids, &pdev->dev);
Shawn Guo85d65092011-05-27 23:48:12 +0800435 struct sdhci_pltfm_host *pltfm_host;
436 struct sdhci_host *host;
437 struct esdhc_platform_data *boarddata;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200438 struct clk *clk;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100439 int err;
Richard Zhue1498602011-03-25 09:18:27 -0400440 struct pltfm_imx_data *imx_data;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200441
Shawn Guo85d65092011-05-27 23:48:12 +0800442 host = sdhci_pltfm_init(pdev, &sdhci_esdhc_imx_pdata);
443 if (IS_ERR(host))
444 return PTR_ERR(host);
445
446 pltfm_host = sdhci_priv(host);
447
448 imx_data = kzalloc(sizeof(struct pltfm_imx_data), GFP_KERNEL);
Shawn Guoabfafc22011-06-30 15:44:44 +0800449 if (!imx_data) {
450 err = -ENOMEM;
451 goto err_imx_data;
452 }
Shawn Guo57ed3312011-06-30 09:24:26 +0800453
Shawn Guoabfafc22011-06-30 15:44:44 +0800454 if (of_id)
455 pdev->id_entry = of_id->data;
Shawn Guo57ed3312011-06-30 09:24:26 +0800456 imx_data->devtype = pdev->id_entry->driver_data;
Shawn Guo85d65092011-05-27 23:48:12 +0800457 pltfm_host->priv = imx_data;
458
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200459 clk = clk_get(mmc_dev(host->mmc), NULL);
460 if (IS_ERR(clk)) {
461 dev_err(mmc_dev(host->mmc), "clk err\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800462 err = PTR_ERR(clk);
463 goto err_clk_get;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200464 }
465 clk_enable(clk);
466 pltfm_host->clk = clk;
467
Shawn Guo57ed3312011-06-30 09:24:26 +0800468 if (!is_imx25_esdhc(imx_data))
Eric BĂ©nard37865fe2010-10-23 01:57:21 +0200469 host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
470
Shawn Guo57ed3312011-06-30 09:24:26 +0800471 if (is_imx25_esdhc(imx_data) || is_imx35_esdhc(imx_data))
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100472 /* Fix errata ENGcm07207 present on i.MX25 and i.MX35 */
Richard Zhu97e4ba62011-08-11 16:51:46 -0400473 host->quirks |= SDHCI_QUIRK_NO_MULTIBLOCK
474 | SDHCI_QUIRK_BROKEN_ADMA;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100475
Shawn Guo57ed3312011-06-30 09:24:26 +0800476 if (is_imx53_esdhc(imx_data))
Richard Zhu58ac8172011-03-21 13:22:16 +0800477 imx_data->flags |= ESDHC_FLAG_MULTIBLK_NO_INT;
478
Shawn Guo842afc02011-07-06 22:57:48 +0800479 boarddata = &imx_data->boarddata;
Shawn Guoabfafc22011-06-30 15:44:44 +0800480 if (sdhci_esdhc_imx_probe_dt(pdev, boarddata) < 0) {
481 if (!host->mmc->parent->platform_data) {
482 dev_err(mmc_dev(host->mmc), "no board data!\n");
483 err = -EINVAL;
484 goto no_board_data;
485 }
486 imx_data->boarddata = *((struct esdhc_platform_data *)
487 host->mmc->parent->platform_data);
488 }
Shawn Guo913413c2011-06-21 22:41:51 +0800489
490 /* write_protect */
491 if (boarddata->wp_type == ESDHC_WP_GPIO) {
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100492 err = gpio_request_one(boarddata->wp_gpio, GPIOF_IN, "ESDHC_WP");
493 if (err) {
494 dev_warn(mmc_dev(host->mmc),
Shawn Guo913413c2011-06-21 22:41:51 +0800495 "no write-protect pin available!\n");
496 boarddata->wp_gpio = -EINVAL;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100497 }
Shawn Guo913413c2011-06-21 22:41:51 +0800498 } else {
499 boarddata->wp_gpio = -EINVAL;
500 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100501
Shawn Guo913413c2011-06-21 22:41:51 +0800502 /* card_detect */
503 if (boarddata->cd_type != ESDHC_CD_GPIO)
504 boarddata->cd_gpio = -EINVAL;
505
506 switch (boarddata->cd_type) {
507 case ESDHC_CD_GPIO:
Wolfram Sang7e29c302011-02-26 14:44:41 +0100508 err = gpio_request_one(boarddata->cd_gpio, GPIOF_IN, "ESDHC_CD");
509 if (err) {
Shawn Guo913413c2011-06-21 22:41:51 +0800510 dev_err(mmc_dev(host->mmc),
Wolfram Sang7e29c302011-02-26 14:44:41 +0100511 "no card-detect pin available!\n");
512 goto no_card_detect_pin;
513 }
514
Wolfram Sang7e29c302011-02-26 14:44:41 +0100515 err = request_irq(gpio_to_irq(boarddata->cd_gpio), cd_irq,
516 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
517 mmc_hostname(host->mmc), host);
518 if (err) {
Shawn Guo913413c2011-06-21 22:41:51 +0800519 dev_err(mmc_dev(host->mmc), "request irq error\n");
Wolfram Sang7e29c302011-02-26 14:44:41 +0100520 goto no_card_detect_irq;
521 }
Shawn Guo913413c2011-06-21 22:41:51 +0800522 /* fall through */
Wolfram Sang7e29c302011-02-26 14:44:41 +0100523
Shawn Guo913413c2011-06-21 22:41:51 +0800524 case ESDHC_CD_CONTROLLER:
525 /* we have a working card_detect back */
Wolfram Sang7e29c302011-02-26 14:44:41 +0100526 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
Shawn Guo913413c2011-06-21 22:41:51 +0800527 break;
528
529 case ESDHC_CD_PERMANENT:
530 host->mmc->caps = MMC_CAP_NONREMOVABLE;
531 break;
532
533 case ESDHC_CD_NONE:
534 break;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100535 }
Eric BĂ©nard16a790b2010-10-23 01:57:22 +0200536
Shawn Guo85d65092011-05-27 23:48:12 +0800537 err = sdhci_add_host(host);
538 if (err)
539 goto err_add_host;
540
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200541 return 0;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100542
Shawn Guo913413c2011-06-21 22:41:51 +0800543err_add_host:
544 if (gpio_is_valid(boarddata->cd_gpio))
545 free_irq(gpio_to_irq(boarddata->cd_gpio), host);
546no_card_detect_irq:
547 if (gpio_is_valid(boarddata->cd_gpio))
548 gpio_free(boarddata->cd_gpio);
549 if (gpio_is_valid(boarddata->wp_gpio))
550 gpio_free(boarddata->wp_gpio);
551no_card_detect_pin:
552no_board_data:
Shawn Guo85d65092011-05-27 23:48:12 +0800553 clk_disable(pltfm_host->clk);
554 clk_put(pltfm_host->clk);
Shawn Guo913413c2011-06-21 22:41:51 +0800555err_clk_get:
556 kfree(imx_data);
Shawn Guoabfafc22011-06-30 15:44:44 +0800557err_imx_data:
Shawn Guo85d65092011-05-27 23:48:12 +0800558 sdhci_pltfm_free(pdev);
559 return err;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200560}
561
Shawn Guo85d65092011-05-27 23:48:12 +0800562static int __devexit sdhci_esdhc_imx_remove(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200563{
Shawn Guo85d65092011-05-27 23:48:12 +0800564 struct sdhci_host *host = platform_get_drvdata(pdev);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200565 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400566 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Shawn Guo842afc02011-07-06 22:57:48 +0800567 struct esdhc_platform_data *boarddata = &imx_data->boarddata;
Shawn Guo85d65092011-05-27 23:48:12 +0800568 int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
569
570 sdhci_remove_host(host, dead);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100571
Shawn Guo913413c2011-06-21 22:41:51 +0800572 if (gpio_is_valid(boarddata->wp_gpio))
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100573 gpio_free(boarddata->wp_gpio);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200574
Shawn Guo913413c2011-06-21 22:41:51 +0800575 if (gpio_is_valid(boarddata->cd_gpio)) {
576 free_irq(gpio_to_irq(boarddata->cd_gpio), host);
Wolfram Sang7e29c302011-02-26 14:44:41 +0100577 gpio_free(boarddata->cd_gpio);
Wolfram Sang7e29c302011-02-26 14:44:41 +0100578 }
579
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200580 clk_disable(pltfm_host->clk);
581 clk_put(pltfm_host->clk);
Richard Zhue1498602011-03-25 09:18:27 -0400582 kfree(imx_data);
Shawn Guo85d65092011-05-27 23:48:12 +0800583
584 sdhci_pltfm_free(pdev);
585
586 return 0;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200587}
588
Shawn Guo85d65092011-05-27 23:48:12 +0800589static struct platform_driver sdhci_esdhc_imx_driver = {
590 .driver = {
591 .name = "sdhci-esdhc-imx",
592 .owner = THIS_MODULE,
Shawn Guoabfafc22011-06-30 15:44:44 +0800593 .of_match_table = imx_esdhc_dt_ids,
Shawn Guo85d65092011-05-27 23:48:12 +0800594 },
Shawn Guo57ed3312011-06-30 09:24:26 +0800595 .id_table = imx_esdhc_devtype,
Shawn Guo85d65092011-05-27 23:48:12 +0800596 .probe = sdhci_esdhc_imx_probe,
597 .remove = __devexit_p(sdhci_esdhc_imx_remove),
598#ifdef CONFIG_PM
599 .suspend = sdhci_pltfm_suspend,
600 .resume = sdhci_pltfm_resume,
601#endif
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200602};
Shawn Guo85d65092011-05-27 23:48:12 +0800603
604static int __init sdhci_esdhc_imx_init(void)
605{
606 return platform_driver_register(&sdhci_esdhc_imx_driver);
607}
608module_init(sdhci_esdhc_imx_init);
609
610static void __exit sdhci_esdhc_imx_exit(void)
611{
612 platform_driver_unregister(&sdhci_esdhc_imx_driver);
613}
614module_exit(sdhci_esdhc_imx_exit);
615
616MODULE_DESCRIPTION("SDHCI driver for Freescale i.MX eSDHC");
617MODULE_AUTHOR("Wolfram Sang <w.sang@pengutronix.de>");
618MODULE_LICENSE("GPL v2");