blob: 968a70f1a42033dc332dae9650a521a7edb325a2 [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 Guofbe5fdd2012-12-11 22:32:20 +080024#include <linux/mmc/slot-gpio.h>
Shawn Guoabfafc22011-06-30 15:44:44 +080025#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/of_gpio.h>
Dong Aishenge62d8b82012-05-11 14:56:01 +080028#include <linux/pinctrl/consumer.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020029#include <linux/platform_data/mmc-esdhc-imx.h>
Wolfram Sang95f25ef2010-10-15 12:21:04 +020030#include "sdhci-pltfm.h"
31#include "sdhci-esdhc.h"
32
Shawn Guo60bf6392013-01-15 23:36:53 +080033#define ESDHC_CTRL_D3CD 0x08
Richard Zhu58ac8172011-03-21 13:22:16 +080034/* VENDOR SPEC register */
Shawn Guo60bf6392013-01-15 23:36:53 +080035#define ESDHC_VENDOR_SPEC 0xc0
36#define ESDHC_VENDOR_SPEC_SDIO_QUIRK (1 << 1)
37#define ESDHC_WTMK_LVL 0x44
38#define ESDHC_MIX_CTRL 0x48
Richard Zhu58ac8172011-03-21 13:22:16 +080039
Richard Zhu58ac8172011-03-21 13:22:16 +080040/*
Richard Zhu97e4ba62011-08-11 16:51:46 -040041 * There is an INT DMA ERR mis-match between eSDHC and STD SDHC SPEC:
42 * Bit25 is used in STD SPEC, and is reserved in fsl eSDHC design,
43 * but bit28 is used as the INT DMA ERR in fsl eSDHC design.
44 * Define this macro DMA error INT for fsl eSDHC
45 */
Shawn Guo60bf6392013-01-15 23:36:53 +080046#define ESDHC_INT_VENDOR_SPEC_DMA_ERR (1 << 28)
Richard Zhu97e4ba62011-08-11 16:51:46 -040047
48/*
Richard Zhu58ac8172011-03-21 13:22:16 +080049 * The CMDTYPE of the CMD register (offset 0xE) should be set to
50 * "11" when the STOP CMD12 is issued on imx53 to abort one
51 * open ended multi-blk IO. Otherwise the TC INT wouldn't
52 * be generated.
53 * In exact block transfer, the controller doesn't complete the
54 * operations automatically as required at the end of the
55 * transfer and remains on hold if the abort command is not sent.
56 * As a result, the TC flag is not asserted and SW received timeout
57 * exeception. Bit1 of Vendor Spec registor is used to fix it.
58 */
59#define ESDHC_FLAG_MULTIBLK_NO_INT (1 << 1)
Richard Zhue1498602011-03-25 09:18:27 -040060
Shawn Guo57ed3312011-06-30 09:24:26 +080061enum imx_esdhc_type {
62 IMX25_ESDHC,
63 IMX35_ESDHC,
64 IMX51_ESDHC,
65 IMX53_ESDHC,
Shawn Guo95a24822011-09-19 17:32:21 +080066 IMX6Q_USDHC,
Shawn Guo57ed3312011-06-30 09:24:26 +080067};
68
Richard Zhue1498602011-03-25 09:18:27 -040069struct pltfm_imx_data {
70 int flags;
71 u32 scratchpad;
Shawn Guo57ed3312011-06-30 09:24:26 +080072 enum imx_esdhc_type devtype;
Dong Aishenge62d8b82012-05-11 14:56:01 +080073 struct pinctrl *pinctrl;
Shawn Guo842afc02011-07-06 22:57:48 +080074 struct esdhc_platform_data boarddata;
Sascha Hauer52dac612012-03-07 09:31:34 +010075 struct clk *clk_ipg;
76 struct clk *clk_ahb;
77 struct clk *clk_per;
Richard Zhue1498602011-03-25 09:18:27 -040078};
79
Shawn Guo57ed3312011-06-30 09:24:26 +080080static struct platform_device_id imx_esdhc_devtype[] = {
81 {
82 .name = "sdhci-esdhc-imx25",
83 .driver_data = IMX25_ESDHC,
84 }, {
85 .name = "sdhci-esdhc-imx35",
86 .driver_data = IMX35_ESDHC,
87 }, {
88 .name = "sdhci-esdhc-imx51",
89 .driver_data = IMX51_ESDHC,
90 }, {
91 .name = "sdhci-esdhc-imx53",
92 .driver_data = IMX53_ESDHC,
93 }, {
Shawn Guo95a24822011-09-19 17:32:21 +080094 .name = "sdhci-usdhc-imx6q",
95 .driver_data = IMX6Q_USDHC,
96 }, {
Shawn Guo57ed3312011-06-30 09:24:26 +080097 /* sentinel */
98 }
99};
100MODULE_DEVICE_TABLE(platform, imx_esdhc_devtype);
101
Shawn Guoabfafc22011-06-30 15:44:44 +0800102static const struct of_device_id imx_esdhc_dt_ids[] = {
103 { .compatible = "fsl,imx25-esdhc", .data = &imx_esdhc_devtype[IMX25_ESDHC], },
104 { .compatible = "fsl,imx35-esdhc", .data = &imx_esdhc_devtype[IMX35_ESDHC], },
105 { .compatible = "fsl,imx51-esdhc", .data = &imx_esdhc_devtype[IMX51_ESDHC], },
106 { .compatible = "fsl,imx53-esdhc", .data = &imx_esdhc_devtype[IMX53_ESDHC], },
Shawn Guo95a24822011-09-19 17:32:21 +0800107 { .compatible = "fsl,imx6q-usdhc", .data = &imx_esdhc_devtype[IMX6Q_USDHC], },
Shawn Guoabfafc22011-06-30 15:44:44 +0800108 { /* sentinel */ }
109};
110MODULE_DEVICE_TABLE(of, imx_esdhc_dt_ids);
111
Shawn Guo57ed3312011-06-30 09:24:26 +0800112static inline int is_imx25_esdhc(struct pltfm_imx_data *data)
113{
114 return data->devtype == IMX25_ESDHC;
115}
116
117static inline int is_imx35_esdhc(struct pltfm_imx_data *data)
118{
119 return data->devtype == IMX35_ESDHC;
120}
121
122static inline int is_imx51_esdhc(struct pltfm_imx_data *data)
123{
124 return data->devtype == IMX51_ESDHC;
125}
126
127static inline int is_imx53_esdhc(struct pltfm_imx_data *data)
128{
129 return data->devtype == IMX53_ESDHC;
130}
131
Shawn Guo95a24822011-09-19 17:32:21 +0800132static inline int is_imx6q_usdhc(struct pltfm_imx_data *data)
133{
134 return data->devtype == IMX6Q_USDHC;
135}
136
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200137static inline void esdhc_clrset_le(struct sdhci_host *host, u32 mask, u32 val, int reg)
138{
139 void __iomem *base = host->ioaddr + (reg & ~0x3);
140 u32 shift = (reg & 0x3) * 8;
141
142 writel(((readl(base) & ~(mask << shift)) | (val << shift)), base);
143}
144
Wolfram Sang7e29c302011-02-26 14:44:41 +0100145static u32 esdhc_readl_le(struct sdhci_host *host, int reg)
146{
Wolfram Sang7e29c302011-02-26 14:44:41 +0100147 u32 val = readl(host->ioaddr + reg);
148
Richard Zhu97e4ba62011-08-11 16:51:46 -0400149 if (unlikely(reg == SDHCI_CAPABILITIES)) {
150 /* In FSL esdhc IC module, only bit20 is used to indicate the
151 * ADMA2 capability of esdhc, but this bit is messed up on
152 * some SOCs (e.g. on MX25, MX35 this bit is set, but they
153 * don't actually support ADMA2). So set the BROKEN_ADMA
154 * uirk on MX25/35 platforms.
155 */
156
157 if (val & SDHCI_CAN_DO_ADMA1) {
158 val &= ~SDHCI_CAN_DO_ADMA1;
159 val |= SDHCI_CAN_DO_ADMA2;
160 }
161 }
162
163 if (unlikely(reg == SDHCI_INT_STATUS)) {
Shawn Guo60bf6392013-01-15 23:36:53 +0800164 if (val & ESDHC_INT_VENDOR_SPEC_DMA_ERR) {
165 val &= ~ESDHC_INT_VENDOR_SPEC_DMA_ERR;
Richard Zhu97e4ba62011-08-11 16:51:46 -0400166 val |= SDHCI_INT_ADMA_ERROR;
167 }
168 }
169
Wolfram Sang7e29c302011-02-26 14:44:41 +0100170 return val;
171}
172
173static void esdhc_writel_le(struct sdhci_host *host, u32 val, int reg)
174{
Richard Zhue1498602011-03-25 09:18:27 -0400175 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
176 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Tony Lin0d588642011-08-11 16:45:59 -0400177 u32 data;
Richard Zhue1498602011-03-25 09:18:27 -0400178
Tony Lin0d588642011-08-11 16:45:59 -0400179 if (unlikely(reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)) {
Tony Lin0d588642011-08-11 16:45:59 -0400180 if (val & SDHCI_INT_CARD_INT) {
181 /*
182 * Clear and then set D3CD bit to avoid missing the
183 * card interrupt. This is a eSDHC controller problem
184 * so we need to apply the following workaround: clear
185 * and set D3CD bit will make eSDHC re-sample the card
186 * interrupt. In case a card interrupt was lost,
187 * re-sample it by the following steps.
188 */
189 data = readl(host->ioaddr + SDHCI_HOST_CONTROL);
Shawn Guo60bf6392013-01-15 23:36:53 +0800190 data &= ~ESDHC_CTRL_D3CD;
Tony Lin0d588642011-08-11 16:45:59 -0400191 writel(data, host->ioaddr + SDHCI_HOST_CONTROL);
Shawn Guo60bf6392013-01-15 23:36:53 +0800192 data |= ESDHC_CTRL_D3CD;
Tony Lin0d588642011-08-11 16:45:59 -0400193 writel(data, host->ioaddr + SDHCI_HOST_CONTROL);
194 }
195 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100196
Richard Zhu58ac8172011-03-21 13:22:16 +0800197 if (unlikely((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
198 && (reg == SDHCI_INT_STATUS)
199 && (val & SDHCI_INT_DATA_END))) {
200 u32 v;
Shawn Guo60bf6392013-01-15 23:36:53 +0800201 v = readl(host->ioaddr + ESDHC_VENDOR_SPEC);
202 v &= ~ESDHC_VENDOR_SPEC_SDIO_QUIRK;
203 writel(v, host->ioaddr + ESDHC_VENDOR_SPEC);
Richard Zhu58ac8172011-03-21 13:22:16 +0800204 }
205
Richard Zhu97e4ba62011-08-11 16:51:46 -0400206 if (unlikely(reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)) {
207 if (val & SDHCI_INT_ADMA_ERROR) {
208 val &= ~SDHCI_INT_ADMA_ERROR;
Shawn Guo60bf6392013-01-15 23:36:53 +0800209 val |= ESDHC_INT_VENDOR_SPEC_DMA_ERR;
Richard Zhu97e4ba62011-08-11 16:51:46 -0400210 }
211 }
212
Wolfram Sang7e29c302011-02-26 14:44:41 +0100213 writel(val, host->ioaddr + reg);
214}
215
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200216static u16 esdhc_readw_le(struct sdhci_host *host, int reg)
217{
Shawn Guoef4d0882013-01-15 23:30:27 +0800218 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
219 struct pltfm_imx_data *imx_data = pltfm_host->priv;
220
Shawn Guo95a24822011-09-19 17:32:21 +0800221 if (unlikely(reg == SDHCI_HOST_VERSION)) {
Shawn Guoef4d0882013-01-15 23:30:27 +0800222 reg ^= 2;
223 if (is_imx6q_usdhc(imx_data)) {
224 /*
225 * The usdhc register returns a wrong host version.
226 * Correct it here.
227 */
228 return SDHCI_SPEC_300;
229 }
Shawn Guo95a24822011-09-19 17:32:21 +0800230 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200231
232 return readw(host->ioaddr + reg);
233}
234
235static void esdhc_writew_le(struct sdhci_host *host, u16 val, int reg)
236{
237 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400238 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200239
240 switch (reg) {
241 case SDHCI_TRANSFER_MODE:
Richard Zhu58ac8172011-03-21 13:22:16 +0800242 if ((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
243 && (host->cmd->opcode == SD_IO_RW_EXTENDED)
244 && (host->cmd->data->blocks > 1)
245 && (host->cmd->data->flags & MMC_DATA_READ)) {
246 u32 v;
Shawn Guo60bf6392013-01-15 23:36:53 +0800247 v = readl(host->ioaddr + ESDHC_VENDOR_SPEC);
248 v |= ESDHC_VENDOR_SPEC_SDIO_QUIRK;
249 writel(v, host->ioaddr + ESDHC_VENDOR_SPEC);
Richard Zhu58ac8172011-03-21 13:22:16 +0800250 }
Shawn Guo69f54692013-01-21 19:02:24 +0800251
252 if (is_imx6q_usdhc(imx_data)) {
253 u32 m = readl(host->ioaddr + ESDHC_MIX_CTRL);
254 m = val | (m & 0xffff0000);
255 writel(m, host->ioaddr + ESDHC_MIX_CTRL);
256 } else {
257 /*
258 * Postpone this write, we must do it together with a
259 * command write that is down below.
260 */
261 imx_data->scratchpad = val;
262 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200263 return;
264 case SDHCI_COMMAND:
Sascha Hauer5b6b0ad2012-02-17 11:51:49 +0100265 if ((host->cmd->opcode == MMC_STOP_TRANSMISSION ||
266 host->cmd->opcode == MMC_SET_BLOCK_COUNT) &&
267 (imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT))
Richard Zhu58ac8172011-03-21 13:22:16 +0800268 val |= SDHCI_CMD_ABORTCMD;
Shawn Guo95a24822011-09-19 17:32:21 +0800269
Shawn Guo69f54692013-01-21 19:02:24 +0800270 if (is_imx6q_usdhc(imx_data))
Shawn Guo95a24822011-09-19 17:32:21 +0800271 writel(val << 16,
272 host->ioaddr + SDHCI_TRANSFER_MODE);
Shawn Guo69f54692013-01-21 19:02:24 +0800273 else
Shawn Guo95a24822011-09-19 17:32:21 +0800274 writel(val << 16 | imx_data->scratchpad,
275 host->ioaddr + SDHCI_TRANSFER_MODE);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200276 return;
277 case SDHCI_BLOCK_SIZE:
278 val &= ~SDHCI_MAKE_BLKSZ(0x7, 0);
279 break;
280 }
281 esdhc_clrset_le(host, 0xffff, val, reg);
282}
283
284static void esdhc_writeb_le(struct sdhci_host *host, u8 val, int reg)
285{
Wilson Callan9a0985b2012-07-19 02:49:16 -0400286 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
287 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200288 u32 new_val;
289
290 switch (reg) {
291 case SDHCI_POWER_CONTROL:
292 /*
293 * FSL put some DMA bits here
294 * If your board has a regulator, code should be here
295 */
296 return;
297 case SDHCI_HOST_CONTROL:
Shawn Guo6b40d182013-01-15 23:36:52 +0800298 /* FSL messed up here, so we need to manually compose it. */
299 new_val = val & (SDHCI_CTRL_LED | SDHCI_CTRL_4BITBUS);
Masanari Iida7122bbb2012-08-05 23:25:40 +0900300 /* ensure the endianness */
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200301 new_val |= ESDHC_HOST_CONTROL_LE;
Wilson Callan9a0985b2012-07-19 02:49:16 -0400302 /* bits 8&9 are reserved on mx25 */
303 if (!is_imx25_esdhc(imx_data)) {
304 /* DMA mode bits are shifted */
305 new_val |= (val & SDHCI_CTRL_DMA_MASK) << 5;
306 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200307
308 esdhc_clrset_le(host, 0xffff, new_val, reg);
309 return;
310 }
311 esdhc_clrset_le(host, 0xff, val, reg);
Shawn Guo913413c2011-06-21 22:41:51 +0800312
313 /*
314 * The esdhc has a design violation to SDHC spec which tells
315 * that software reset should not affect card detection circuit.
316 * But esdhc clears its SYSCTL register bits [0..2] during the
317 * software reset. This will stop those clocks that card detection
318 * circuit relies on. To work around it, we turn the clocks on back
319 * to keep card detection circuit functional.
320 */
Shawn Guo58c8c4f2013-01-21 19:02:25 +0800321 if ((reg == SDHCI_SOFTWARE_RESET) && (val & 1)) {
Shawn Guo913413c2011-06-21 22:41:51 +0800322 esdhc_clrset_le(host, 0x7, 0x7, ESDHC_SYSTEM_CONTROL);
Shawn Guo58c8c4f2013-01-21 19:02:25 +0800323 /*
324 * The reset on usdhc fails to clear MIX_CTRL register.
325 * Do it manually here.
326 */
327 if (is_imx6q_usdhc(imx_data))
328 writel(0, host->ioaddr + ESDHC_MIX_CTRL);
329 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200330}
331
332static unsigned int esdhc_pltfm_get_max_clock(struct sdhci_host *host)
333{
334 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
335
336 return clk_get_rate(pltfm_host->clk);
337}
338
339static unsigned int esdhc_pltfm_get_min_clock(struct sdhci_host *host)
340{
341 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
342
343 return clk_get_rate(pltfm_host->clk) / 256 / 16;
344}
345
Shawn Guo913413c2011-06-21 22:41:51 +0800346static unsigned int esdhc_pltfm_get_ro(struct sdhci_host *host)
347{
Shawn Guo842afc02011-07-06 22:57:48 +0800348 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
349 struct pltfm_imx_data *imx_data = pltfm_host->priv;
350 struct esdhc_platform_data *boarddata = &imx_data->boarddata;
Shawn Guo913413c2011-06-21 22:41:51 +0800351
352 switch (boarddata->wp_type) {
353 case ESDHC_WP_GPIO:
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800354 return mmc_gpio_get_ro(host->mmc);
Shawn Guo913413c2011-06-21 22:41:51 +0800355 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
Shawn Guoabfafc22011-06-30 15:44:44 +0800385#ifdef CONFIG_OF
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500386static int
Shawn Guoabfafc22011-06-30 15:44:44 +0800387sdhci_esdhc_imx_probe_dt(struct platform_device *pdev,
388 struct esdhc_platform_data *boarddata)
389{
390 struct device_node *np = pdev->dev.of_node;
391
392 if (!np)
393 return -ENODEV;
394
Arnd Bergmann7f217792012-05-13 00:14:24 -0400395 if (of_get_property(np, "non-removable", NULL))
Shawn Guoabfafc22011-06-30 15:44:44 +0800396 boarddata->cd_type = ESDHC_CD_PERMANENT;
397
398 if (of_get_property(np, "fsl,cd-controller", NULL))
399 boarddata->cd_type = ESDHC_CD_CONTROLLER;
400
401 if (of_get_property(np, "fsl,wp-controller", NULL))
402 boarddata->wp_type = ESDHC_WP_CONTROLLER;
403
404 boarddata->cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
405 if (gpio_is_valid(boarddata->cd_gpio))
406 boarddata->cd_type = ESDHC_CD_GPIO;
407
408 boarddata->wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
409 if (gpio_is_valid(boarddata->wp_gpio))
410 boarddata->wp_type = ESDHC_WP_GPIO;
411
412 return 0;
413}
414#else
415static inline int
416sdhci_esdhc_imx_probe_dt(struct platform_device *pdev,
417 struct esdhc_platform_data *boarddata)
418{
419 return -ENODEV;
420}
421#endif
422
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500423static int sdhci_esdhc_imx_probe(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200424{
Shawn Guoabfafc22011-06-30 15:44:44 +0800425 const struct of_device_id *of_id =
426 of_match_device(imx_esdhc_dt_ids, &pdev->dev);
Shawn Guo85d65092011-05-27 23:48:12 +0800427 struct sdhci_pltfm_host *pltfm_host;
428 struct sdhci_host *host;
429 struct esdhc_platform_data *boarddata;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100430 int err;
Richard Zhue1498602011-03-25 09:18:27 -0400431 struct pltfm_imx_data *imx_data;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200432
Shawn Guo85d65092011-05-27 23:48:12 +0800433 host = sdhci_pltfm_init(pdev, &sdhci_esdhc_imx_pdata);
434 if (IS_ERR(host))
435 return PTR_ERR(host);
436
437 pltfm_host = sdhci_priv(host);
438
Shawn Guoe3af31c2012-11-26 14:39:43 +0800439 imx_data = devm_kzalloc(&pdev->dev, sizeof(*imx_data), GFP_KERNEL);
Shawn Guoabfafc22011-06-30 15:44:44 +0800440 if (!imx_data) {
441 err = -ENOMEM;
Shawn Guoe3af31c2012-11-26 14:39:43 +0800442 goto free_sdhci;
Shawn Guoabfafc22011-06-30 15:44:44 +0800443 }
Shawn Guo57ed3312011-06-30 09:24:26 +0800444
Shawn Guoabfafc22011-06-30 15:44:44 +0800445 if (of_id)
446 pdev->id_entry = of_id->data;
Shawn Guo57ed3312011-06-30 09:24:26 +0800447 imx_data->devtype = pdev->id_entry->driver_data;
Shawn Guo85d65092011-05-27 23:48:12 +0800448 pltfm_host->priv = imx_data;
449
Sascha Hauer52dac612012-03-07 09:31:34 +0100450 imx_data->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
451 if (IS_ERR(imx_data->clk_ipg)) {
452 err = PTR_ERR(imx_data->clk_ipg);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800453 goto free_sdhci;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200454 }
Sascha Hauer52dac612012-03-07 09:31:34 +0100455
456 imx_data->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
457 if (IS_ERR(imx_data->clk_ahb)) {
458 err = PTR_ERR(imx_data->clk_ahb);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800459 goto free_sdhci;
Sascha Hauer52dac612012-03-07 09:31:34 +0100460 }
461
462 imx_data->clk_per = devm_clk_get(&pdev->dev, "per");
463 if (IS_ERR(imx_data->clk_per)) {
464 err = PTR_ERR(imx_data->clk_per);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800465 goto free_sdhci;
Sascha Hauer52dac612012-03-07 09:31:34 +0100466 }
467
468 pltfm_host->clk = imx_data->clk_per;
469
470 clk_prepare_enable(imx_data->clk_per);
471 clk_prepare_enable(imx_data->clk_ipg);
472 clk_prepare_enable(imx_data->clk_ahb);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200473
Dong Aishenge62d8b82012-05-11 14:56:01 +0800474 imx_data->pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
475 if (IS_ERR(imx_data->pinctrl)) {
476 err = PTR_ERR(imx_data->pinctrl);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800477 goto disable_clk;
Dong Aishenge62d8b82012-05-11 14:56:01 +0800478 }
479
Eric Bénardb89152822012-04-18 02:30:20 +0200480 host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
Eric Bénard37865fe2010-10-23 01:57:21 +0200481
Shawn Guo57ed3312011-06-30 09:24:26 +0800482 if (is_imx25_esdhc(imx_data) || is_imx35_esdhc(imx_data))
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100483 /* Fix errata ENGcm07207 present on i.MX25 and i.MX35 */
Richard Zhu97e4ba62011-08-11 16:51:46 -0400484 host->quirks |= SDHCI_QUIRK_NO_MULTIBLOCK
485 | SDHCI_QUIRK_BROKEN_ADMA;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100486
Shawn Guo57ed3312011-06-30 09:24:26 +0800487 if (is_imx53_esdhc(imx_data))
Richard Zhu58ac8172011-03-21 13:22:16 +0800488 imx_data->flags |= ESDHC_FLAG_MULTIBLK_NO_INT;
489
Shawn Guof750ba92011-11-10 16:39:32 +0800490 /*
491 * The imx6q ROM code will change the default watermark level setting
492 * to something insane. Change it back here.
493 */
494 if (is_imx6q_usdhc(imx_data))
Shawn Guo60bf6392013-01-15 23:36:53 +0800495 writel(0x08100810, host->ioaddr + ESDHC_WTMK_LVL);
Shawn Guof750ba92011-11-10 16:39:32 +0800496
Shawn Guo842afc02011-07-06 22:57:48 +0800497 boarddata = &imx_data->boarddata;
Shawn Guoabfafc22011-06-30 15:44:44 +0800498 if (sdhci_esdhc_imx_probe_dt(pdev, boarddata) < 0) {
499 if (!host->mmc->parent->platform_data) {
500 dev_err(mmc_dev(host->mmc), "no board data!\n");
501 err = -EINVAL;
Shawn Guoe3af31c2012-11-26 14:39:43 +0800502 goto disable_clk;
Shawn Guoabfafc22011-06-30 15:44:44 +0800503 }
504 imx_data->boarddata = *((struct esdhc_platform_data *)
505 host->mmc->parent->platform_data);
506 }
Shawn Guo913413c2011-06-21 22:41:51 +0800507
508 /* write_protect */
509 if (boarddata->wp_type == ESDHC_WP_GPIO) {
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800510 err = mmc_gpio_request_ro(host->mmc, boarddata->wp_gpio);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100511 if (err) {
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800512 dev_err(mmc_dev(host->mmc),
513 "failed to request write-protect gpio!\n");
514 goto disable_clk;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100515 }
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800516 host->mmc->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
Shawn Guo913413c2011-06-21 22:41:51 +0800517 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100518
Shawn Guo913413c2011-06-21 22:41:51 +0800519 /* card_detect */
Shawn Guo913413c2011-06-21 22:41:51 +0800520 switch (boarddata->cd_type) {
521 case ESDHC_CD_GPIO:
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800522 err = mmc_gpio_request_cd(host->mmc, boarddata->cd_gpio);
Wolfram Sang7e29c302011-02-26 14:44:41 +0100523 if (err) {
Shawn Guo913413c2011-06-21 22:41:51 +0800524 dev_err(mmc_dev(host->mmc),
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800525 "failed to request card-detect gpio!\n");
Shawn Guoe3af31c2012-11-26 14:39:43 +0800526 goto disable_clk;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100527 }
Shawn Guo913413c2011-06-21 22:41:51 +0800528 /* fall through */
Wolfram Sang7e29c302011-02-26 14:44:41 +0100529
Shawn Guo913413c2011-06-21 22:41:51 +0800530 case ESDHC_CD_CONTROLLER:
531 /* we have a working card_detect back */
Wolfram Sang7e29c302011-02-26 14:44:41 +0100532 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
Shawn Guo913413c2011-06-21 22:41:51 +0800533 break;
534
535 case ESDHC_CD_PERMANENT:
536 host->mmc->caps = MMC_CAP_NONREMOVABLE;
537 break;
538
539 case ESDHC_CD_NONE:
540 break;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100541 }
Eric Bénard16a790b2010-10-23 01:57:22 +0200542
Shawn Guo85d65092011-05-27 23:48:12 +0800543 err = sdhci_add_host(host);
544 if (err)
Shawn Guoe3af31c2012-11-26 14:39:43 +0800545 goto disable_clk;
Shawn Guo85d65092011-05-27 23:48:12 +0800546
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200547 return 0;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100548
Shawn Guoe3af31c2012-11-26 14:39:43 +0800549disable_clk:
Sascha Hauer52dac612012-03-07 09:31:34 +0100550 clk_disable_unprepare(imx_data->clk_per);
551 clk_disable_unprepare(imx_data->clk_ipg);
552 clk_disable_unprepare(imx_data->clk_ahb);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800553free_sdhci:
Shawn Guo85d65092011-05-27 23:48:12 +0800554 sdhci_pltfm_free(pdev);
555 return err;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200556}
557
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500558static int sdhci_esdhc_imx_remove(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200559{
Shawn Guo85d65092011-05-27 23:48:12 +0800560 struct sdhci_host *host = platform_get_drvdata(pdev);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200561 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400562 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Shawn Guo85d65092011-05-27 23:48:12 +0800563 int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
564
565 sdhci_remove_host(host, dead);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100566
Sascha Hauer52dac612012-03-07 09:31:34 +0100567 clk_disable_unprepare(imx_data->clk_per);
568 clk_disable_unprepare(imx_data->clk_ipg);
569 clk_disable_unprepare(imx_data->clk_ahb);
570
Shawn Guo85d65092011-05-27 23:48:12 +0800571 sdhci_pltfm_free(pdev);
572
573 return 0;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200574}
575
Shawn Guo85d65092011-05-27 23:48:12 +0800576static struct platform_driver sdhci_esdhc_imx_driver = {
577 .driver = {
578 .name = "sdhci-esdhc-imx",
579 .owner = THIS_MODULE,
Shawn Guoabfafc22011-06-30 15:44:44 +0800580 .of_match_table = imx_esdhc_dt_ids,
Manuel Lauss29495aa2011-11-03 11:09:45 +0100581 .pm = SDHCI_PLTFM_PMOPS,
Shawn Guo85d65092011-05-27 23:48:12 +0800582 },
Shawn Guo57ed3312011-06-30 09:24:26 +0800583 .id_table = imx_esdhc_devtype,
Shawn Guo85d65092011-05-27 23:48:12 +0800584 .probe = sdhci_esdhc_imx_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500585 .remove = sdhci_esdhc_imx_remove,
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200586};
Shawn Guo85d65092011-05-27 23:48:12 +0800587
Axel Lind1f81a62011-11-26 12:55:43 +0800588module_platform_driver(sdhci_esdhc_imx_driver);
Shawn Guo85d65092011-05-27 23:48:12 +0800589
590MODULE_DESCRIPTION("SDHCI driver for Freescale i.MX eSDHC");
591MODULE_AUTHOR("Wolfram Sang <w.sang@pengutronix.de>");
592MODULE_LICENSE("GPL v2");