blob: 67d6dde2ff1961015304b3d3fac3fcd7040bcfd9 [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
Shawn Guo2a15f982013-01-21 19:02:26 +080039#define ESDHC_MIX_CTRL_AC23EN (1 << 7)
40/* Bits 3 and 6 are not SDHCI standard definitions */
41#define ESDHC_MIX_CTRL_SDHCI_MASK 0xb7
Richard Zhu58ac8172011-03-21 13:22:16 +080042
Richard Zhu58ac8172011-03-21 13:22:16 +080043/*
Sascha Haueraf510792013-01-21 19:02:28 +080044 * Our interpretation of the SDHCI_HOST_CONTROL register
45 */
46#define ESDHC_CTRL_4BITBUS (0x1 << 1)
47#define ESDHC_CTRL_8BITBUS (0x2 << 1)
48#define ESDHC_CTRL_BUSWIDTH_MASK (0x3 << 1)
49
50/*
Richard Zhu97e4ba62011-08-11 16:51:46 -040051 * There is an INT DMA ERR mis-match between eSDHC and STD SDHC SPEC:
52 * Bit25 is used in STD SPEC, and is reserved in fsl eSDHC design,
53 * but bit28 is used as the INT DMA ERR in fsl eSDHC design.
54 * Define this macro DMA error INT for fsl eSDHC
55 */
Shawn Guo60bf6392013-01-15 23:36:53 +080056#define ESDHC_INT_VENDOR_SPEC_DMA_ERR (1 << 28)
Richard Zhu97e4ba62011-08-11 16:51:46 -040057
58/*
Richard Zhu58ac8172011-03-21 13:22:16 +080059 * The CMDTYPE of the CMD register (offset 0xE) should be set to
60 * "11" when the STOP CMD12 is issued on imx53 to abort one
61 * open ended multi-blk IO. Otherwise the TC INT wouldn't
62 * be generated.
63 * In exact block transfer, the controller doesn't complete the
64 * operations automatically as required at the end of the
65 * transfer and remains on hold if the abort command is not sent.
66 * As a result, the TC flag is not asserted and SW received timeout
67 * exeception. Bit1 of Vendor Spec registor is used to fix it.
68 */
69#define ESDHC_FLAG_MULTIBLK_NO_INT (1 << 1)
Richard Zhue1498602011-03-25 09:18:27 -040070
Shawn Guo57ed3312011-06-30 09:24:26 +080071enum imx_esdhc_type {
72 IMX25_ESDHC,
73 IMX35_ESDHC,
74 IMX51_ESDHC,
75 IMX53_ESDHC,
Shawn Guo95a24822011-09-19 17:32:21 +080076 IMX6Q_USDHC,
Shawn Guo57ed3312011-06-30 09:24:26 +080077};
78
Richard Zhue1498602011-03-25 09:18:27 -040079struct pltfm_imx_data {
80 int flags;
81 u32 scratchpad;
Shawn Guo57ed3312011-06-30 09:24:26 +080082 enum imx_esdhc_type devtype;
Dong Aishenge62d8b82012-05-11 14:56:01 +080083 struct pinctrl *pinctrl;
Shawn Guo842afc02011-07-06 22:57:48 +080084 struct esdhc_platform_data boarddata;
Sascha Hauer52dac612012-03-07 09:31:34 +010085 struct clk *clk_ipg;
86 struct clk *clk_ahb;
87 struct clk *clk_per;
Richard Zhue1498602011-03-25 09:18:27 -040088};
89
Shawn Guo57ed3312011-06-30 09:24:26 +080090static struct platform_device_id imx_esdhc_devtype[] = {
91 {
92 .name = "sdhci-esdhc-imx25",
93 .driver_data = IMX25_ESDHC,
94 }, {
95 .name = "sdhci-esdhc-imx35",
96 .driver_data = IMX35_ESDHC,
97 }, {
98 .name = "sdhci-esdhc-imx51",
99 .driver_data = IMX51_ESDHC,
100 }, {
101 .name = "sdhci-esdhc-imx53",
102 .driver_data = IMX53_ESDHC,
103 }, {
Shawn Guo95a24822011-09-19 17:32:21 +0800104 .name = "sdhci-usdhc-imx6q",
105 .driver_data = IMX6Q_USDHC,
106 }, {
Shawn Guo57ed3312011-06-30 09:24:26 +0800107 /* sentinel */
108 }
109};
110MODULE_DEVICE_TABLE(platform, imx_esdhc_devtype);
111
Shawn Guoabfafc22011-06-30 15:44:44 +0800112static const struct of_device_id imx_esdhc_dt_ids[] = {
113 { .compatible = "fsl,imx25-esdhc", .data = &imx_esdhc_devtype[IMX25_ESDHC], },
114 { .compatible = "fsl,imx35-esdhc", .data = &imx_esdhc_devtype[IMX35_ESDHC], },
115 { .compatible = "fsl,imx51-esdhc", .data = &imx_esdhc_devtype[IMX51_ESDHC], },
116 { .compatible = "fsl,imx53-esdhc", .data = &imx_esdhc_devtype[IMX53_ESDHC], },
Shawn Guo95a24822011-09-19 17:32:21 +0800117 { .compatible = "fsl,imx6q-usdhc", .data = &imx_esdhc_devtype[IMX6Q_USDHC], },
Shawn Guoabfafc22011-06-30 15:44:44 +0800118 { /* sentinel */ }
119};
120MODULE_DEVICE_TABLE(of, imx_esdhc_dt_ids);
121
Shawn Guo57ed3312011-06-30 09:24:26 +0800122static inline int is_imx25_esdhc(struct pltfm_imx_data *data)
123{
124 return data->devtype == IMX25_ESDHC;
125}
126
127static inline int is_imx35_esdhc(struct pltfm_imx_data *data)
128{
129 return data->devtype == IMX35_ESDHC;
130}
131
132static inline int is_imx51_esdhc(struct pltfm_imx_data *data)
133{
134 return data->devtype == IMX51_ESDHC;
135}
136
137static inline int is_imx53_esdhc(struct pltfm_imx_data *data)
138{
139 return data->devtype == IMX53_ESDHC;
140}
141
Shawn Guo95a24822011-09-19 17:32:21 +0800142static inline int is_imx6q_usdhc(struct pltfm_imx_data *data)
143{
144 return data->devtype == IMX6Q_USDHC;
145}
146
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200147static inline void esdhc_clrset_le(struct sdhci_host *host, u32 mask, u32 val, int reg)
148{
149 void __iomem *base = host->ioaddr + (reg & ~0x3);
150 u32 shift = (reg & 0x3) * 8;
151
152 writel(((readl(base) & ~(mask << shift)) | (val << shift)), base);
153}
154
Wolfram Sang7e29c302011-02-26 14:44:41 +0100155static u32 esdhc_readl_le(struct sdhci_host *host, int reg)
156{
Wolfram Sang7e29c302011-02-26 14:44:41 +0100157 u32 val = readl(host->ioaddr + reg);
158
Richard Zhu97e4ba62011-08-11 16:51:46 -0400159 if (unlikely(reg == SDHCI_CAPABILITIES)) {
160 /* In FSL esdhc IC module, only bit20 is used to indicate the
161 * ADMA2 capability of esdhc, but this bit is messed up on
162 * some SOCs (e.g. on MX25, MX35 this bit is set, but they
163 * don't actually support ADMA2). So set the BROKEN_ADMA
164 * uirk on MX25/35 platforms.
165 */
166
167 if (val & SDHCI_CAN_DO_ADMA1) {
168 val &= ~SDHCI_CAN_DO_ADMA1;
169 val |= SDHCI_CAN_DO_ADMA2;
170 }
171 }
172
173 if (unlikely(reg == SDHCI_INT_STATUS)) {
Shawn Guo60bf6392013-01-15 23:36:53 +0800174 if (val & ESDHC_INT_VENDOR_SPEC_DMA_ERR) {
175 val &= ~ESDHC_INT_VENDOR_SPEC_DMA_ERR;
Richard Zhu97e4ba62011-08-11 16:51:46 -0400176 val |= SDHCI_INT_ADMA_ERROR;
177 }
178 }
179
Wolfram Sang7e29c302011-02-26 14:44:41 +0100180 return val;
181}
182
183static void esdhc_writel_le(struct sdhci_host *host, u32 val, int reg)
184{
Richard Zhue1498602011-03-25 09:18:27 -0400185 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
186 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Tony Lin0d588642011-08-11 16:45:59 -0400187 u32 data;
Richard Zhue1498602011-03-25 09:18:27 -0400188
Tony Lin0d588642011-08-11 16:45:59 -0400189 if (unlikely(reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)) {
Tony Lin0d588642011-08-11 16:45:59 -0400190 if (val & SDHCI_INT_CARD_INT) {
191 /*
192 * Clear and then set D3CD bit to avoid missing the
193 * card interrupt. This is a eSDHC controller problem
194 * so we need to apply the following workaround: clear
195 * and set D3CD bit will make eSDHC re-sample the card
196 * interrupt. In case a card interrupt was lost,
197 * re-sample it by the following steps.
198 */
199 data = readl(host->ioaddr + SDHCI_HOST_CONTROL);
Shawn Guo60bf6392013-01-15 23:36:53 +0800200 data &= ~ESDHC_CTRL_D3CD;
Tony Lin0d588642011-08-11 16:45:59 -0400201 writel(data, host->ioaddr + SDHCI_HOST_CONTROL);
Shawn Guo60bf6392013-01-15 23:36:53 +0800202 data |= ESDHC_CTRL_D3CD;
Tony Lin0d588642011-08-11 16:45:59 -0400203 writel(data, host->ioaddr + SDHCI_HOST_CONTROL);
204 }
205 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100206
Richard Zhu58ac8172011-03-21 13:22:16 +0800207 if (unlikely((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
208 && (reg == SDHCI_INT_STATUS)
209 && (val & SDHCI_INT_DATA_END))) {
210 u32 v;
Shawn Guo60bf6392013-01-15 23:36:53 +0800211 v = readl(host->ioaddr + ESDHC_VENDOR_SPEC);
212 v &= ~ESDHC_VENDOR_SPEC_SDIO_QUIRK;
213 writel(v, host->ioaddr + ESDHC_VENDOR_SPEC);
Richard Zhu58ac8172011-03-21 13:22:16 +0800214 }
215
Richard Zhu97e4ba62011-08-11 16:51:46 -0400216 if (unlikely(reg == SDHCI_INT_ENABLE || reg == SDHCI_SIGNAL_ENABLE)) {
217 if (val & SDHCI_INT_ADMA_ERROR) {
218 val &= ~SDHCI_INT_ADMA_ERROR;
Shawn Guo60bf6392013-01-15 23:36:53 +0800219 val |= ESDHC_INT_VENDOR_SPEC_DMA_ERR;
Richard Zhu97e4ba62011-08-11 16:51:46 -0400220 }
221 }
222
Wolfram Sang7e29c302011-02-26 14:44:41 +0100223 writel(val, host->ioaddr + reg);
224}
225
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200226static u16 esdhc_readw_le(struct sdhci_host *host, int reg)
227{
Shawn Guoef4d0882013-01-15 23:30:27 +0800228 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
229 struct pltfm_imx_data *imx_data = pltfm_host->priv;
230
Shawn Guo95a24822011-09-19 17:32:21 +0800231 if (unlikely(reg == SDHCI_HOST_VERSION)) {
Shawn Guoef4d0882013-01-15 23:30:27 +0800232 reg ^= 2;
233 if (is_imx6q_usdhc(imx_data)) {
234 /*
235 * The usdhc register returns a wrong host version.
236 * Correct it here.
237 */
238 return SDHCI_SPEC_300;
239 }
Shawn Guo95a24822011-09-19 17:32:21 +0800240 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200241
242 return readw(host->ioaddr + reg);
243}
244
245static void esdhc_writew_le(struct sdhci_host *host, u16 val, int reg)
246{
247 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400248 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200249
250 switch (reg) {
251 case SDHCI_TRANSFER_MODE:
Richard Zhu58ac8172011-03-21 13:22:16 +0800252 if ((imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)
253 && (host->cmd->opcode == SD_IO_RW_EXTENDED)
254 && (host->cmd->data->blocks > 1)
255 && (host->cmd->data->flags & MMC_DATA_READ)) {
256 u32 v;
Shawn Guo60bf6392013-01-15 23:36:53 +0800257 v = readl(host->ioaddr + ESDHC_VENDOR_SPEC);
258 v |= ESDHC_VENDOR_SPEC_SDIO_QUIRK;
259 writel(v, host->ioaddr + ESDHC_VENDOR_SPEC);
Richard Zhu58ac8172011-03-21 13:22:16 +0800260 }
Shawn Guo69f54692013-01-21 19:02:24 +0800261
262 if (is_imx6q_usdhc(imx_data)) {
263 u32 m = readl(host->ioaddr + ESDHC_MIX_CTRL);
Shawn Guo2a15f982013-01-21 19:02:26 +0800264 /* Swap AC23 bit */
265 if (val & SDHCI_TRNS_AUTO_CMD23) {
266 val &= ~SDHCI_TRNS_AUTO_CMD23;
267 val |= ESDHC_MIX_CTRL_AC23EN;
268 }
269 m = val | (m & ~ESDHC_MIX_CTRL_SDHCI_MASK);
Shawn Guo69f54692013-01-21 19:02:24 +0800270 writel(m, host->ioaddr + ESDHC_MIX_CTRL);
271 } else {
272 /*
273 * Postpone this write, we must do it together with a
274 * command write that is down below.
275 */
276 imx_data->scratchpad = val;
277 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200278 return;
279 case SDHCI_COMMAND:
Sascha Hauer5b6b0ad2012-02-17 11:51:49 +0100280 if ((host->cmd->opcode == MMC_STOP_TRANSMISSION ||
281 host->cmd->opcode == MMC_SET_BLOCK_COUNT) &&
282 (imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT))
Richard Zhu58ac8172011-03-21 13:22:16 +0800283 val |= SDHCI_CMD_ABORTCMD;
Shawn Guo95a24822011-09-19 17:32:21 +0800284
Shawn Guo69f54692013-01-21 19:02:24 +0800285 if (is_imx6q_usdhc(imx_data))
Shawn Guo95a24822011-09-19 17:32:21 +0800286 writel(val << 16,
287 host->ioaddr + SDHCI_TRANSFER_MODE);
Shawn Guo69f54692013-01-21 19:02:24 +0800288 else
Shawn Guo95a24822011-09-19 17:32:21 +0800289 writel(val << 16 | imx_data->scratchpad,
290 host->ioaddr + SDHCI_TRANSFER_MODE);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200291 return;
292 case SDHCI_BLOCK_SIZE:
293 val &= ~SDHCI_MAKE_BLKSZ(0x7, 0);
294 break;
295 }
296 esdhc_clrset_le(host, 0xffff, val, reg);
297}
298
299static void esdhc_writeb_le(struct sdhci_host *host, u8 val, int reg)
300{
Wilson Callan9a0985b2012-07-19 02:49:16 -0400301 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
302 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200303 u32 new_val;
Sascha Haueraf510792013-01-21 19:02:28 +0800304 u32 mask;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200305
306 switch (reg) {
307 case SDHCI_POWER_CONTROL:
308 /*
309 * FSL put some DMA bits here
310 * If your board has a regulator, code should be here
311 */
312 return;
313 case SDHCI_HOST_CONTROL:
Shawn Guo6b40d182013-01-15 23:36:52 +0800314 /* FSL messed up here, so we need to manually compose it. */
Sascha Haueraf510792013-01-21 19:02:28 +0800315 new_val = val & SDHCI_CTRL_LED;
Masanari Iida7122bbb2012-08-05 23:25:40 +0900316 /* ensure the endianness */
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200317 new_val |= ESDHC_HOST_CONTROL_LE;
Wilson Callan9a0985b2012-07-19 02:49:16 -0400318 /* bits 8&9 are reserved on mx25 */
319 if (!is_imx25_esdhc(imx_data)) {
320 /* DMA mode bits are shifted */
321 new_val |= (val & SDHCI_CTRL_DMA_MASK) << 5;
322 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200323
Sascha Haueraf510792013-01-21 19:02:28 +0800324 /*
325 * Do not touch buswidth bits here. This is done in
326 * esdhc_pltfm_bus_width.
327 */
328 mask = 0xffff & ~ESDHC_CTRL_BUSWIDTH_MASK;
329
330 esdhc_clrset_le(host, mask, new_val, reg);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200331 return;
332 }
333 esdhc_clrset_le(host, 0xff, val, reg);
Shawn Guo913413c2011-06-21 22:41:51 +0800334
335 /*
336 * The esdhc has a design violation to SDHC spec which tells
337 * that software reset should not affect card detection circuit.
338 * But esdhc clears its SYSCTL register bits [0..2] during the
339 * software reset. This will stop those clocks that card detection
340 * circuit relies on. To work around it, we turn the clocks on back
341 * to keep card detection circuit functional.
342 */
Shawn Guo58c8c4f2013-01-21 19:02:25 +0800343 if ((reg == SDHCI_SOFTWARE_RESET) && (val & 1)) {
Shawn Guo913413c2011-06-21 22:41:51 +0800344 esdhc_clrset_le(host, 0x7, 0x7, ESDHC_SYSTEM_CONTROL);
Shawn Guo58c8c4f2013-01-21 19:02:25 +0800345 /*
346 * The reset on usdhc fails to clear MIX_CTRL register.
347 * Do it manually here.
348 */
349 if (is_imx6q_usdhc(imx_data))
350 writel(0, host->ioaddr + ESDHC_MIX_CTRL);
351 }
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200352}
353
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200354static unsigned int esdhc_pltfm_get_min_clock(struct sdhci_host *host)
355{
356 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
357
358 return clk_get_rate(pltfm_host->clk) / 256 / 16;
359}
360
Shawn Guo913413c2011-06-21 22:41:51 +0800361static unsigned int esdhc_pltfm_get_ro(struct sdhci_host *host)
362{
Shawn Guo842afc02011-07-06 22:57:48 +0800363 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
364 struct pltfm_imx_data *imx_data = pltfm_host->priv;
365 struct esdhc_platform_data *boarddata = &imx_data->boarddata;
Shawn Guo913413c2011-06-21 22:41:51 +0800366
367 switch (boarddata->wp_type) {
368 case ESDHC_WP_GPIO:
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800369 return mmc_gpio_get_ro(host->mmc);
Shawn Guo913413c2011-06-21 22:41:51 +0800370 case ESDHC_WP_CONTROLLER:
371 return !(readl(host->ioaddr + SDHCI_PRESENT_STATE) &
372 SDHCI_WRITE_PROTECT);
373 case ESDHC_WP_NONE:
374 break;
375 }
376
377 return -ENOSYS;
378}
379
Sascha Haueraf510792013-01-21 19:02:28 +0800380static int esdhc_pltfm_bus_width(struct sdhci_host *host, int width)
381{
382 u32 ctrl;
383
384 switch (width) {
385 case MMC_BUS_WIDTH_8:
386 ctrl = ESDHC_CTRL_8BITBUS;
387 break;
388 case MMC_BUS_WIDTH_4:
389 ctrl = ESDHC_CTRL_4BITBUS;
390 break;
391 default:
392 ctrl = 0;
393 break;
394 }
395
396 esdhc_clrset_le(host, ESDHC_CTRL_BUSWIDTH_MASK, ctrl,
397 SDHCI_HOST_CONTROL);
398
399 return 0;
400}
401
Lars-Peter Clausenc9155682013-03-13 19:26:05 +0100402static const struct sdhci_ops sdhci_esdhc_ops = {
Richard Zhue1498602011-03-25 09:18:27 -0400403 .read_l = esdhc_readl_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100404 .read_w = esdhc_readw_le,
Richard Zhue1498602011-03-25 09:18:27 -0400405 .write_l = esdhc_writel_le,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100406 .write_w = esdhc_writew_le,
407 .write_b = esdhc_writeb_le,
408 .set_clock = esdhc_set_clock,
Lars-Peter Clausend005d942013-01-28 19:27:12 +0100409 .get_max_clock = sdhci_pltfm_clk_get_max_clock,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100410 .get_min_clock = esdhc_pltfm_get_min_clock,
Shawn Guo913413c2011-06-21 22:41:51 +0800411 .get_ro = esdhc_pltfm_get_ro,
Sascha Haueraf510792013-01-21 19:02:28 +0800412 .platform_bus_width = esdhc_pltfm_bus_width,
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100413};
414
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +0100415static const struct sdhci_pltfm_data sdhci_esdhc_imx_pdata = {
Richard Zhu97e4ba62011-08-11 16:51:46 -0400416 .quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_NO_HISPD_BIT
417 | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
418 | SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
Shawn Guo85d65092011-05-27 23:48:12 +0800419 | SDHCI_QUIRK_BROKEN_CARD_DETECTION,
Shawn Guo85d65092011-05-27 23:48:12 +0800420 .ops = &sdhci_esdhc_ops,
421};
422
Shawn Guoabfafc22011-06-30 15:44:44 +0800423#ifdef CONFIG_OF
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500424static int
Shawn Guoabfafc22011-06-30 15:44:44 +0800425sdhci_esdhc_imx_probe_dt(struct platform_device *pdev,
426 struct esdhc_platform_data *boarddata)
427{
428 struct device_node *np = pdev->dev.of_node;
429
430 if (!np)
431 return -ENODEV;
432
Arnd Bergmann7f217792012-05-13 00:14:24 -0400433 if (of_get_property(np, "non-removable", NULL))
Shawn Guoabfafc22011-06-30 15:44:44 +0800434 boarddata->cd_type = ESDHC_CD_PERMANENT;
435
436 if (of_get_property(np, "fsl,cd-controller", NULL))
437 boarddata->cd_type = ESDHC_CD_CONTROLLER;
438
439 if (of_get_property(np, "fsl,wp-controller", NULL))
440 boarddata->wp_type = ESDHC_WP_CONTROLLER;
441
442 boarddata->cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
443 if (gpio_is_valid(boarddata->cd_gpio))
444 boarddata->cd_type = ESDHC_CD_GPIO;
445
446 boarddata->wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
447 if (gpio_is_valid(boarddata->wp_gpio))
448 boarddata->wp_type = ESDHC_WP_GPIO;
449
Sascha Haueraf510792013-01-21 19:02:28 +0800450 of_property_read_u32(np, "bus-width", &boarddata->max_bus_width);
451
Shawn Guoabfafc22011-06-30 15:44:44 +0800452 return 0;
453}
454#else
455static inline int
456sdhci_esdhc_imx_probe_dt(struct platform_device *pdev,
457 struct esdhc_platform_data *boarddata)
458{
459 return -ENODEV;
460}
461#endif
462
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500463static int sdhci_esdhc_imx_probe(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200464{
Shawn Guoabfafc22011-06-30 15:44:44 +0800465 const struct of_device_id *of_id =
466 of_match_device(imx_esdhc_dt_ids, &pdev->dev);
Shawn Guo85d65092011-05-27 23:48:12 +0800467 struct sdhci_pltfm_host *pltfm_host;
468 struct sdhci_host *host;
469 struct esdhc_platform_data *boarddata;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100470 int err;
Richard Zhue1498602011-03-25 09:18:27 -0400471 struct pltfm_imx_data *imx_data;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200472
Shawn Guo85d65092011-05-27 23:48:12 +0800473 host = sdhci_pltfm_init(pdev, &sdhci_esdhc_imx_pdata);
474 if (IS_ERR(host))
475 return PTR_ERR(host);
476
477 pltfm_host = sdhci_priv(host);
478
Shawn Guoe3af31c2012-11-26 14:39:43 +0800479 imx_data = devm_kzalloc(&pdev->dev, sizeof(*imx_data), GFP_KERNEL);
Shawn Guoabfafc22011-06-30 15:44:44 +0800480 if (!imx_data) {
481 err = -ENOMEM;
Shawn Guoe3af31c2012-11-26 14:39:43 +0800482 goto free_sdhci;
Shawn Guoabfafc22011-06-30 15:44:44 +0800483 }
Shawn Guo57ed3312011-06-30 09:24:26 +0800484
Shawn Guoabfafc22011-06-30 15:44:44 +0800485 if (of_id)
486 pdev->id_entry = of_id->data;
Shawn Guo57ed3312011-06-30 09:24:26 +0800487 imx_data->devtype = pdev->id_entry->driver_data;
Shawn Guo85d65092011-05-27 23:48:12 +0800488 pltfm_host->priv = imx_data;
489
Sascha Hauer52dac612012-03-07 09:31:34 +0100490 imx_data->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
491 if (IS_ERR(imx_data->clk_ipg)) {
492 err = PTR_ERR(imx_data->clk_ipg);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800493 goto free_sdhci;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200494 }
Sascha Hauer52dac612012-03-07 09:31:34 +0100495
496 imx_data->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
497 if (IS_ERR(imx_data->clk_ahb)) {
498 err = PTR_ERR(imx_data->clk_ahb);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800499 goto free_sdhci;
Sascha Hauer52dac612012-03-07 09:31:34 +0100500 }
501
502 imx_data->clk_per = devm_clk_get(&pdev->dev, "per");
503 if (IS_ERR(imx_data->clk_per)) {
504 err = PTR_ERR(imx_data->clk_per);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800505 goto free_sdhci;
Sascha Hauer52dac612012-03-07 09:31:34 +0100506 }
507
508 pltfm_host->clk = imx_data->clk_per;
509
510 clk_prepare_enable(imx_data->clk_per);
511 clk_prepare_enable(imx_data->clk_ipg);
512 clk_prepare_enable(imx_data->clk_ahb);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200513
Dong Aishenge62d8b82012-05-11 14:56:01 +0800514 imx_data->pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
515 if (IS_ERR(imx_data->pinctrl)) {
516 err = PTR_ERR(imx_data->pinctrl);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800517 goto disable_clk;
Dong Aishenge62d8b82012-05-11 14:56:01 +0800518 }
519
Eric Bénardb89152822012-04-18 02:30:20 +0200520 host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
Eric Bénard37865fe2010-10-23 01:57:21 +0200521
Shawn Guo57ed3312011-06-30 09:24:26 +0800522 if (is_imx25_esdhc(imx_data) || is_imx35_esdhc(imx_data))
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100523 /* Fix errata ENGcm07207 present on i.MX25 and i.MX35 */
Richard Zhu97e4ba62011-08-11 16:51:46 -0400524 host->quirks |= SDHCI_QUIRK_NO_MULTIBLOCK
525 | SDHCI_QUIRK_BROKEN_ADMA;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100526
Shawn Guo57ed3312011-06-30 09:24:26 +0800527 if (is_imx53_esdhc(imx_data))
Richard Zhu58ac8172011-03-21 13:22:16 +0800528 imx_data->flags |= ESDHC_FLAG_MULTIBLK_NO_INT;
529
Shawn Guof750ba92011-11-10 16:39:32 +0800530 /*
531 * The imx6q ROM code will change the default watermark level setting
532 * to something insane. Change it back here.
533 */
534 if (is_imx6q_usdhc(imx_data))
Shawn Guo60bf6392013-01-15 23:36:53 +0800535 writel(0x08100810, host->ioaddr + ESDHC_WTMK_LVL);
Shawn Guof750ba92011-11-10 16:39:32 +0800536
Shawn Guo842afc02011-07-06 22:57:48 +0800537 boarddata = &imx_data->boarddata;
Shawn Guoabfafc22011-06-30 15:44:44 +0800538 if (sdhci_esdhc_imx_probe_dt(pdev, boarddata) < 0) {
539 if (!host->mmc->parent->platform_data) {
540 dev_err(mmc_dev(host->mmc), "no board data!\n");
541 err = -EINVAL;
Shawn Guoe3af31c2012-11-26 14:39:43 +0800542 goto disable_clk;
Shawn Guoabfafc22011-06-30 15:44:44 +0800543 }
544 imx_data->boarddata = *((struct esdhc_platform_data *)
545 host->mmc->parent->platform_data);
546 }
Shawn Guo913413c2011-06-21 22:41:51 +0800547
548 /* write_protect */
549 if (boarddata->wp_type == ESDHC_WP_GPIO) {
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800550 err = mmc_gpio_request_ro(host->mmc, boarddata->wp_gpio);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100551 if (err) {
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800552 dev_err(mmc_dev(host->mmc),
553 "failed to request write-protect gpio!\n");
554 goto disable_clk;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100555 }
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800556 host->mmc->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
Shawn Guo913413c2011-06-21 22:41:51 +0800557 }
Wolfram Sang7e29c302011-02-26 14:44:41 +0100558
Shawn Guo913413c2011-06-21 22:41:51 +0800559 /* card_detect */
Shawn Guo913413c2011-06-21 22:41:51 +0800560 switch (boarddata->cd_type) {
561 case ESDHC_CD_GPIO:
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800562 err = mmc_gpio_request_cd(host->mmc, boarddata->cd_gpio);
Wolfram Sang7e29c302011-02-26 14:44:41 +0100563 if (err) {
Shawn Guo913413c2011-06-21 22:41:51 +0800564 dev_err(mmc_dev(host->mmc),
Shawn Guofbe5fdd2012-12-11 22:32:20 +0800565 "failed to request card-detect gpio!\n");
Shawn Guoe3af31c2012-11-26 14:39:43 +0800566 goto disable_clk;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100567 }
Shawn Guo913413c2011-06-21 22:41:51 +0800568 /* fall through */
Wolfram Sang7e29c302011-02-26 14:44:41 +0100569
Shawn Guo913413c2011-06-21 22:41:51 +0800570 case ESDHC_CD_CONTROLLER:
571 /* we have a working card_detect back */
Wolfram Sang7e29c302011-02-26 14:44:41 +0100572 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
Shawn Guo913413c2011-06-21 22:41:51 +0800573 break;
574
575 case ESDHC_CD_PERMANENT:
576 host->mmc->caps = MMC_CAP_NONREMOVABLE;
577 break;
578
579 case ESDHC_CD_NONE:
580 break;
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100581 }
Eric Bénard16a790b2010-10-23 01:57:22 +0200582
Sascha Haueraf510792013-01-21 19:02:28 +0800583 switch (boarddata->max_bus_width) {
584 case 8:
585 host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA;
586 break;
587 case 4:
588 host->mmc->caps |= MMC_CAP_4_BIT_DATA;
589 break;
590 case 1:
591 default:
592 host->quirks |= SDHCI_QUIRK_FORCE_1_BIT_DATA;
593 break;
594 }
595
Shawn Guo85d65092011-05-27 23:48:12 +0800596 err = sdhci_add_host(host);
597 if (err)
Shawn Guoe3af31c2012-11-26 14:39:43 +0800598 goto disable_clk;
Shawn Guo85d65092011-05-27 23:48:12 +0800599
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200600 return 0;
Wolfram Sang7e29c302011-02-26 14:44:41 +0100601
Shawn Guoe3af31c2012-11-26 14:39:43 +0800602disable_clk:
Sascha Hauer52dac612012-03-07 09:31:34 +0100603 clk_disable_unprepare(imx_data->clk_per);
604 clk_disable_unprepare(imx_data->clk_ipg);
605 clk_disable_unprepare(imx_data->clk_ahb);
Shawn Guoe3af31c2012-11-26 14:39:43 +0800606free_sdhci:
Shawn Guo85d65092011-05-27 23:48:12 +0800607 sdhci_pltfm_free(pdev);
608 return err;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200609}
610
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500611static int sdhci_esdhc_imx_remove(struct platform_device *pdev)
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200612{
Shawn Guo85d65092011-05-27 23:48:12 +0800613 struct sdhci_host *host = platform_get_drvdata(pdev);
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200614 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Richard Zhue1498602011-03-25 09:18:27 -0400615 struct pltfm_imx_data *imx_data = pltfm_host->priv;
Shawn Guo85d65092011-05-27 23:48:12 +0800616 int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
617
618 sdhci_remove_host(host, dead);
Wolfram Sang0c6d49c2011-02-26 14:44:39 +0100619
Sascha Hauer52dac612012-03-07 09:31:34 +0100620 clk_disable_unprepare(imx_data->clk_per);
621 clk_disable_unprepare(imx_data->clk_ipg);
622 clk_disable_unprepare(imx_data->clk_ahb);
623
Shawn Guo85d65092011-05-27 23:48:12 +0800624 sdhci_pltfm_free(pdev);
625
626 return 0;
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200627}
628
Shawn Guo85d65092011-05-27 23:48:12 +0800629static struct platform_driver sdhci_esdhc_imx_driver = {
630 .driver = {
631 .name = "sdhci-esdhc-imx",
632 .owner = THIS_MODULE,
Shawn Guoabfafc22011-06-30 15:44:44 +0800633 .of_match_table = imx_esdhc_dt_ids,
Manuel Lauss29495aa2011-11-03 11:09:45 +0100634 .pm = SDHCI_PLTFM_PMOPS,
Shawn Guo85d65092011-05-27 23:48:12 +0800635 },
Shawn Guo57ed3312011-06-30 09:24:26 +0800636 .id_table = imx_esdhc_devtype,
Shawn Guo85d65092011-05-27 23:48:12 +0800637 .probe = sdhci_esdhc_imx_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500638 .remove = sdhci_esdhc_imx_remove,
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200639};
Shawn Guo85d65092011-05-27 23:48:12 +0800640
Axel Lind1f81a62011-11-26 12:55:43 +0800641module_platform_driver(sdhci_esdhc_imx_driver);
Shawn Guo85d65092011-05-27 23:48:12 +0800642
643MODULE_DESCRIPTION("SDHCI driver for Freescale i.MX eSDHC");
644MODULE_AUTHOR("Wolfram Sang <w.sang@pengutronix.de>");
645MODULE_LICENSE("GPL v2");