blob: b76778fe81b046aae72ae7de4369878a514b5914 [file] [log] [blame]
Shawn Guoe4243f12011-02-21 18:35:28 +08001/*
2 * Portions copyright (C) 2003 Russell King, PXA MMCI Driver
3 * Portions copyright (C) 2004-2005 Pierre Ossman, W83L51xD SD/MMC driver
4 *
5 * Copyright 2008 Embedded Alley Solutions, Inc.
6 * Copyright 2009-2011 Freescale Semiconductor, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23#include <linux/kernel.h>
24#include <linux/init.h>
25#include <linux/ioport.h>
Shawn Guo6de4d812012-05-06 13:30:44 +080026#include <linux/of.h>
27#include <linux/of_device.h>
28#include <linux/of_gpio.h>
Shawn Guoe4243f12011-02-21 18:35:28 +080029#include <linux/platform_device.h>
30#include <linux/delay.h>
31#include <linux/interrupt.h>
32#include <linux/dma-mapping.h>
33#include <linux/dmaengine.h>
34#include <linux/highmem.h>
35#include <linux/clk.h>
36#include <linux/err.h>
37#include <linux/completion.h>
38#include <linux/mmc/host.h>
39#include <linux/mmc/mmc.h>
40#include <linux/mmc/sdio.h>
41#include <linux/gpio.h>
42#include <linux/regulator/consumer.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040043#include <linux/module.h>
Shawn Guo70e60202012-05-05 19:40:09 +080044#include <linux/stmp_device.h>
Marek Vasut8be3d3b2012-08-03 17:26:06 +020045#include <linux/spi/mxs-spi.h>
Shawn Guoe4243f12011-02-21 18:35:28 +080046
47#define DRIVER_NAME "mxs-mmc"
48
Shawn Guoe4243f12011-02-21 18:35:28 +080049#define MXS_MMC_IRQ_BITS (BM_SSP_CTRL1_SDIO_IRQ | \
50 BM_SSP_CTRL1_RESP_ERR_IRQ | \
51 BM_SSP_CTRL1_RESP_TIMEOUT_IRQ | \
52 BM_SSP_CTRL1_DATA_TIMEOUT_IRQ | \
53 BM_SSP_CTRL1_DATA_CRC_IRQ | \
54 BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ | \
55 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ | \
56 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ)
57
Marek Vasut8be3d3b2012-08-03 17:26:06 +020058/* card detect polling timeout */
59#define MXS_MMC_DETECT_TIMEOUT (HZ/2)
Shawn Guoef9b4d32012-05-05 20:24:01 +080060
Shawn Guoe4243f12011-02-21 18:35:28 +080061struct mxs_mmc_host {
Marek Vasut829c1bf2012-08-03 17:26:09 +020062 struct mxs_ssp ssp;
63
Shawn Guoe4243f12011-02-21 18:35:28 +080064 struct mmc_host *mmc;
65 struct mmc_request *mrq;
66 struct mmc_command *cmd;
67 struct mmc_data *data;
68
Shawn Guoe4243f12011-02-21 18:35:28 +080069 unsigned char bus_width;
70 spinlock_t lock;
71 int sdio_irq_en;
Shawn Guo31b0ff52012-05-06 13:33:40 +080072 int wp_gpio;
Marek Vasutb6e76f12012-07-19 11:11:39 -040073 bool wp_inverted;
Marc Kleine-Budde4c0c9be2013-04-10 11:13:43 +020074 bool cd_inverted;
Hector Palacios1d531962013-04-10 11:13:45 +020075 bool broken_cd;
Marc Kleine-Budde5086e5f2013-04-10 11:13:44 +020076 bool non_removable;
Shawn Guoe4243f12011-02-21 18:35:28 +080077};
78
79static int mxs_mmc_get_ro(struct mmc_host *mmc)
80{
81 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasutb6e76f12012-07-19 11:11:39 -040082 int ret;
Shawn Guoe4243f12011-02-21 18:35:28 +080083
Shawn Guo31b0ff52012-05-06 13:33:40 +080084 if (!gpio_is_valid(host->wp_gpio))
Shawn Guoe4243f12011-02-21 18:35:28 +080085 return -EINVAL;
86
Marek Vasutb6e76f12012-07-19 11:11:39 -040087 ret = gpio_get_value(host->wp_gpio);
88
89 if (host->wp_inverted)
90 ret = !ret;
91
92 return ret;
Shawn Guoe4243f12011-02-21 18:35:28 +080093}
94
95static int mxs_mmc_get_cd(struct mmc_host *mmc)
96{
97 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +020098 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +080099
Hector Palacios1d531962013-04-10 11:13:45 +0200100 return host->non_removable || host->broken_cd ||
Marc Kleine-Budde5086e5f2013-04-10 11:13:44 +0200101 !(readl(ssp->base + HW_SSP_STATUS(ssp)) &
102 BM_SSP_STATUS_CARD_DETECT) ^ host->cd_inverted;
Shawn Guoe4243f12011-02-21 18:35:28 +0800103}
104
105static void mxs_mmc_reset(struct mxs_mmc_host *host)
106{
Marek Vasut829c1bf2012-08-03 17:26:09 +0200107 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800108 u32 ctrl0, ctrl1;
109
Marek Vasut829c1bf2012-08-03 17:26:09 +0200110 stmp_reset_block(ssp->base);
Shawn Guoe4243f12011-02-21 18:35:28 +0800111
112 ctrl0 = BM_SSP_CTRL0_IGNORE_CRC;
113 ctrl1 = BF_SSP(0x3, CTRL1_SSP_MODE) |
114 BF_SSP(0x7, CTRL1_WORD_LENGTH) |
115 BM_SSP_CTRL1_DMA_ENABLE |
116 BM_SSP_CTRL1_POLARITY |
117 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ_EN |
118 BM_SSP_CTRL1_DATA_CRC_IRQ_EN |
119 BM_SSP_CTRL1_DATA_TIMEOUT_IRQ_EN |
120 BM_SSP_CTRL1_RESP_TIMEOUT_IRQ_EN |
121 BM_SSP_CTRL1_RESP_ERR_IRQ_EN;
122
123 writel(BF_SSP(0xffff, TIMING_TIMEOUT) |
124 BF_SSP(2, TIMING_CLOCK_DIVIDE) |
125 BF_SSP(0, TIMING_CLOCK_RATE),
Marek Vasut829c1bf2012-08-03 17:26:09 +0200126 ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800127
128 if (host->sdio_irq_en) {
129 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
130 ctrl1 |= BM_SSP_CTRL1_SDIO_IRQ_EN;
131 }
132
Marek Vasut829c1bf2012-08-03 17:26:09 +0200133 writel(ctrl0, ssp->base + HW_SSP_CTRL0);
134 writel(ctrl1, ssp->base + HW_SSP_CTRL1(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800135}
136
137static void mxs_mmc_start_cmd(struct mxs_mmc_host *host,
138 struct mmc_command *cmd);
139
140static void mxs_mmc_request_done(struct mxs_mmc_host *host)
141{
142 struct mmc_command *cmd = host->cmd;
143 struct mmc_data *data = host->data;
144 struct mmc_request *mrq = host->mrq;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200145 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800146
147 if (mmc_resp_type(cmd) & MMC_RSP_PRESENT) {
148 if (mmc_resp_type(cmd) & MMC_RSP_136) {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200149 cmd->resp[3] = readl(ssp->base + HW_SSP_SDRESP0(ssp));
150 cmd->resp[2] = readl(ssp->base + HW_SSP_SDRESP1(ssp));
151 cmd->resp[1] = readl(ssp->base + HW_SSP_SDRESP2(ssp));
152 cmd->resp[0] = readl(ssp->base + HW_SSP_SDRESP3(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800153 } else {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200154 cmd->resp[0] = readl(ssp->base + HW_SSP_SDRESP0(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800155 }
156 }
157
158 if (data) {
159 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
Marek Vasut65defb92012-08-03 17:26:12 +0200160 data->sg_len, ssp->dma_dir);
Shawn Guoe4243f12011-02-21 18:35:28 +0800161 /*
162 * If there was an error on any block, we mark all
163 * data blocks as being in error.
164 */
165 if (!data->error)
166 data->bytes_xfered = data->blocks * data->blksz;
167 else
168 data->bytes_xfered = 0;
169
170 host->data = NULL;
171 if (mrq->stop) {
172 mxs_mmc_start_cmd(host, mrq->stop);
173 return;
174 }
175 }
176
177 host->mrq = NULL;
178 mmc_request_done(host->mmc, mrq);
179}
180
181static void mxs_mmc_dma_irq_callback(void *param)
182{
183 struct mxs_mmc_host *host = param;
184
185 mxs_mmc_request_done(host);
186}
187
188static irqreturn_t mxs_mmc_irq_handler(int irq, void *dev_id)
189{
190 struct mxs_mmc_host *host = dev_id;
191 struct mmc_command *cmd = host->cmd;
192 struct mmc_data *data = host->data;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200193 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800194 u32 stat;
195
196 spin_lock(&host->lock);
197
Marek Vasut829c1bf2012-08-03 17:26:09 +0200198 stat = readl(ssp->base + HW_SSP_CTRL1(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800199 writel(stat & MXS_MMC_IRQ_BITS,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200200 ssp->base + HW_SSP_CTRL1(ssp) + STMP_OFFSET_REG_CLR);
Shawn Guoe4243f12011-02-21 18:35:28 +0800201
Lauri Hintsala1af36b22012-07-17 17:16:09 +0300202 spin_unlock(&host->lock);
203
Shawn Guoe4243f12011-02-21 18:35:28 +0800204 if ((stat & BM_SSP_CTRL1_SDIO_IRQ) && (stat & BM_SSP_CTRL1_SDIO_IRQ_EN))
205 mmc_signal_sdio_irq(host->mmc);
206
Shawn Guoe4243f12011-02-21 18:35:28 +0800207 if (stat & BM_SSP_CTRL1_RESP_TIMEOUT_IRQ)
208 cmd->error = -ETIMEDOUT;
209 else if (stat & BM_SSP_CTRL1_RESP_ERR_IRQ)
210 cmd->error = -EIO;
211
212 if (data) {
213 if (stat & (BM_SSP_CTRL1_DATA_TIMEOUT_IRQ |
214 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ))
215 data->error = -ETIMEDOUT;
216 else if (stat & BM_SSP_CTRL1_DATA_CRC_IRQ)
217 data->error = -EILSEQ;
218 else if (stat & (BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ |
219 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ))
220 data->error = -EIO;
221 }
222
223 return IRQ_HANDLED;
224}
225
226static struct dma_async_tx_descriptor *mxs_mmc_prep_dma(
Huang Shijie921de862012-02-16 14:17:33 +0800227 struct mxs_mmc_host *host, unsigned long flags)
Shawn Guoe4243f12011-02-21 18:35:28 +0800228{
Marek Vasut65defb92012-08-03 17:26:12 +0200229 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800230 struct dma_async_tx_descriptor *desc;
231 struct mmc_data *data = host->data;
232 struct scatterlist * sgl;
233 unsigned int sg_len;
234
235 if (data) {
236 /* data */
237 dma_map_sg(mmc_dev(host->mmc), data->sg,
Marek Vasut65defb92012-08-03 17:26:12 +0200238 data->sg_len, ssp->dma_dir);
Shawn Guoe4243f12011-02-21 18:35:28 +0800239 sgl = data->sg;
240 sg_len = data->sg_len;
241 } else {
242 /* pio */
Marek Vasut65defb92012-08-03 17:26:12 +0200243 sgl = (struct scatterlist *) ssp->ssp_pio_words;
Shawn Guoe4243f12011-02-21 18:35:28 +0800244 sg_len = SSP_PIO_NUM;
245 }
246
Marek Vasut65defb92012-08-03 17:26:12 +0200247 desc = dmaengine_prep_slave_sg(ssp->dmach,
248 sgl, sg_len, ssp->slave_dirn, flags);
Shawn Guoe4243f12011-02-21 18:35:28 +0800249 if (desc) {
250 desc->callback = mxs_mmc_dma_irq_callback;
251 desc->callback_param = host;
252 } else {
253 if (data)
254 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
Marek Vasut65defb92012-08-03 17:26:12 +0200255 data->sg_len, ssp->dma_dir);
Shawn Guoe4243f12011-02-21 18:35:28 +0800256 }
257
258 return desc;
259}
260
261static void mxs_mmc_bc(struct mxs_mmc_host *host)
262{
Marek Vasut65defb92012-08-03 17:26:12 +0200263 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800264 struct mmc_command *cmd = host->cmd;
265 struct dma_async_tx_descriptor *desc;
266 u32 ctrl0, cmd0, cmd1;
267
268 ctrl0 = BM_SSP_CTRL0_ENABLE | BM_SSP_CTRL0_IGNORE_CRC;
269 cmd0 = BF_SSP(cmd->opcode, CMD0_CMD) | BM_SSP_CMD0_APPEND_8CYC;
270 cmd1 = cmd->arg;
271
272 if (host->sdio_irq_en) {
273 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
274 cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
275 }
276
Marek Vasut65defb92012-08-03 17:26:12 +0200277 ssp->ssp_pio_words[0] = ctrl0;
278 ssp->ssp_pio_words[1] = cmd0;
279 ssp->ssp_pio_words[2] = cmd1;
280 ssp->dma_dir = DMA_NONE;
281 ssp->slave_dirn = DMA_TRANS_NONE;
Huang Shijie921de862012-02-16 14:17:33 +0800282 desc = mxs_mmc_prep_dma(host, DMA_CTRL_ACK);
Shawn Guoe4243f12011-02-21 18:35:28 +0800283 if (!desc)
284 goto out;
285
286 dmaengine_submit(desc);
Marek Vasut65defb92012-08-03 17:26:12 +0200287 dma_async_issue_pending(ssp->dmach);
Shawn Guoe4243f12011-02-21 18:35:28 +0800288 return;
289
290out:
291 dev_warn(mmc_dev(host->mmc),
292 "%s: failed to prep dma\n", __func__);
293}
294
295static void mxs_mmc_ac(struct mxs_mmc_host *host)
296{
Marek Vasut65defb92012-08-03 17:26:12 +0200297 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800298 struct mmc_command *cmd = host->cmd;
299 struct dma_async_tx_descriptor *desc;
300 u32 ignore_crc, get_resp, long_resp;
301 u32 ctrl0, cmd0, cmd1;
302
303 ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ?
304 0 : BM_SSP_CTRL0_IGNORE_CRC;
305 get_resp = (mmc_resp_type(cmd) & MMC_RSP_PRESENT) ?
306 BM_SSP_CTRL0_GET_RESP : 0;
307 long_resp = (mmc_resp_type(cmd) & MMC_RSP_136) ?
308 BM_SSP_CTRL0_LONG_RESP : 0;
309
310 ctrl0 = BM_SSP_CTRL0_ENABLE | ignore_crc | get_resp | long_resp;
311 cmd0 = BF_SSP(cmd->opcode, CMD0_CMD);
312 cmd1 = cmd->arg;
313
314 if (host->sdio_irq_en) {
315 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
316 cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
317 }
318
Marek Vasut65defb92012-08-03 17:26:12 +0200319 ssp->ssp_pio_words[0] = ctrl0;
320 ssp->ssp_pio_words[1] = cmd0;
321 ssp->ssp_pio_words[2] = cmd1;
322 ssp->dma_dir = DMA_NONE;
323 ssp->slave_dirn = DMA_TRANS_NONE;
Huang Shijie921de862012-02-16 14:17:33 +0800324 desc = mxs_mmc_prep_dma(host, DMA_CTRL_ACK);
Shawn Guoe4243f12011-02-21 18:35:28 +0800325 if (!desc)
326 goto out;
327
328 dmaengine_submit(desc);
Marek Vasut65defb92012-08-03 17:26:12 +0200329 dma_async_issue_pending(ssp->dmach);
Shawn Guoe4243f12011-02-21 18:35:28 +0800330 return;
331
332out:
333 dev_warn(mmc_dev(host->mmc),
334 "%s: failed to prep dma\n", __func__);
335}
336
337static unsigned short mxs_ns_to_ssp_ticks(unsigned clock_rate, unsigned ns)
338{
339 const unsigned int ssp_timeout_mul = 4096;
340 /*
341 * Calculate ticks in ms since ns are large numbers
342 * and might overflow
343 */
344 const unsigned int clock_per_ms = clock_rate / 1000;
345 const unsigned int ms = ns / 1000;
346 const unsigned int ticks = ms * clock_per_ms;
347 const unsigned int ssp_ticks = ticks / ssp_timeout_mul;
348
349 WARN_ON(ssp_ticks == 0);
350 return ssp_ticks;
351}
352
353static void mxs_mmc_adtc(struct mxs_mmc_host *host)
354{
355 struct mmc_command *cmd = host->cmd;
356 struct mmc_data *data = cmd->data;
357 struct dma_async_tx_descriptor *desc;
358 struct scatterlist *sgl = data->sg, *sg;
359 unsigned int sg_len = data->sg_len;
Fabio Estevamfd63ac72013-01-07 22:42:35 -0200360 unsigned int i;
Shawn Guoe4243f12011-02-21 18:35:28 +0800361
362 unsigned short dma_data_dir, timeout;
Vinod Koul05f57992011-10-14 10:45:11 +0530363 enum dma_transfer_direction slave_dirn;
Shawn Guoe4243f12011-02-21 18:35:28 +0800364 unsigned int data_size = 0, log2_blksz;
365 unsigned int blocks = data->blocks;
366
Marek Vasut829c1bf2012-08-03 17:26:09 +0200367 struct mxs_ssp *ssp = &host->ssp;
368
Shawn Guoe4243f12011-02-21 18:35:28 +0800369 u32 ignore_crc, get_resp, long_resp, read;
370 u32 ctrl0, cmd0, cmd1, val;
371
372 ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ?
373 0 : BM_SSP_CTRL0_IGNORE_CRC;
374 get_resp = (mmc_resp_type(cmd) & MMC_RSP_PRESENT) ?
375 BM_SSP_CTRL0_GET_RESP : 0;
376 long_resp = (mmc_resp_type(cmd) & MMC_RSP_136) ?
377 BM_SSP_CTRL0_LONG_RESP : 0;
378
379 if (data->flags & MMC_DATA_WRITE) {
380 dma_data_dir = DMA_TO_DEVICE;
Vinod Koul05f57992011-10-14 10:45:11 +0530381 slave_dirn = DMA_MEM_TO_DEV;
Shawn Guoe4243f12011-02-21 18:35:28 +0800382 read = 0;
383 } else {
384 dma_data_dir = DMA_FROM_DEVICE;
Vinod Koul05f57992011-10-14 10:45:11 +0530385 slave_dirn = DMA_DEV_TO_MEM;
Shawn Guoe4243f12011-02-21 18:35:28 +0800386 read = BM_SSP_CTRL0_READ;
387 }
388
389 ctrl0 = BF_SSP(host->bus_width, CTRL0_BUS_WIDTH) |
390 ignore_crc | get_resp | long_resp |
391 BM_SSP_CTRL0_DATA_XFER | read |
392 BM_SSP_CTRL0_WAIT_FOR_IRQ |
393 BM_SSP_CTRL0_ENABLE;
394
395 cmd0 = BF_SSP(cmd->opcode, CMD0_CMD);
396
397 /* get logarithm to base 2 of block size for setting register */
398 log2_blksz = ilog2(data->blksz);
399
400 /*
401 * take special care of the case that data size from data->sg
402 * is not equal to blocks x blksz
403 */
404 for_each_sg(sgl, sg, sg_len, i)
405 data_size += sg->length;
406
407 if (data_size != data->blocks * data->blksz)
408 blocks = 1;
409
410 /* xfer count, block size and count need to be set differently */
Marek Vasut829c1bf2012-08-03 17:26:09 +0200411 if (ssp_is_old(ssp)) {
Shawn Guoe4243f12011-02-21 18:35:28 +0800412 ctrl0 |= BF_SSP(data_size, CTRL0_XFER_COUNT);
413 cmd0 |= BF_SSP(log2_blksz, CMD0_BLOCK_SIZE) |
414 BF_SSP(blocks - 1, CMD0_BLOCK_COUNT);
415 } else {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200416 writel(data_size, ssp->base + HW_SSP_XFER_SIZE);
Shawn Guoe4243f12011-02-21 18:35:28 +0800417 writel(BF_SSP(log2_blksz, BLOCK_SIZE_BLOCK_SIZE) |
418 BF_SSP(blocks - 1, BLOCK_SIZE_BLOCK_COUNT),
Marek Vasut829c1bf2012-08-03 17:26:09 +0200419 ssp->base + HW_SSP_BLOCK_SIZE);
Shawn Guoe4243f12011-02-21 18:35:28 +0800420 }
421
422 if ((cmd->opcode == MMC_STOP_TRANSMISSION) ||
423 (cmd->opcode == SD_IO_RW_EXTENDED))
424 cmd0 |= BM_SSP_CMD0_APPEND_8CYC;
425
426 cmd1 = cmd->arg;
427
428 if (host->sdio_irq_en) {
429 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
430 cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
431 }
432
433 /* set the timeout count */
Marek Vasut829c1bf2012-08-03 17:26:09 +0200434 timeout = mxs_ns_to_ssp_ticks(ssp->clk_rate, data->timeout_ns);
435 val = readl(ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800436 val &= ~(BM_SSP_TIMING_TIMEOUT);
437 val |= BF_SSP(timeout, TIMING_TIMEOUT);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200438 writel(val, ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800439
440 /* pio */
Marek Vasut65defb92012-08-03 17:26:12 +0200441 ssp->ssp_pio_words[0] = ctrl0;
442 ssp->ssp_pio_words[1] = cmd0;
443 ssp->ssp_pio_words[2] = cmd1;
444 ssp->dma_dir = DMA_NONE;
445 ssp->slave_dirn = DMA_TRANS_NONE;
Shawn Guoe4243f12011-02-21 18:35:28 +0800446 desc = mxs_mmc_prep_dma(host, 0);
447 if (!desc)
448 goto out;
449
450 /* append data sg */
451 WARN_ON(host->data != NULL);
452 host->data = data;
Marek Vasut65defb92012-08-03 17:26:12 +0200453 ssp->dma_dir = dma_data_dir;
454 ssp->slave_dirn = slave_dirn;
Huang Shijie921de862012-02-16 14:17:33 +0800455 desc = mxs_mmc_prep_dma(host, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Shawn Guoe4243f12011-02-21 18:35:28 +0800456 if (!desc)
457 goto out;
458
459 dmaengine_submit(desc);
Marek Vasut65defb92012-08-03 17:26:12 +0200460 dma_async_issue_pending(ssp->dmach);
Shawn Guoe4243f12011-02-21 18:35:28 +0800461 return;
462out:
463 dev_warn(mmc_dev(host->mmc),
464 "%s: failed to prep dma\n", __func__);
465}
466
467static void mxs_mmc_start_cmd(struct mxs_mmc_host *host,
468 struct mmc_command *cmd)
469{
470 host->cmd = cmd;
471
472 switch (mmc_cmd_type(cmd)) {
473 case MMC_CMD_BC:
474 mxs_mmc_bc(host);
475 break;
476 case MMC_CMD_BCR:
477 mxs_mmc_ac(host);
478 break;
479 case MMC_CMD_AC:
480 mxs_mmc_ac(host);
481 break;
482 case MMC_CMD_ADTC:
483 mxs_mmc_adtc(host);
484 break;
485 default:
486 dev_warn(mmc_dev(host->mmc),
487 "%s: unknown MMC command\n", __func__);
488 break;
489 }
490}
491
492static void mxs_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
493{
494 struct mxs_mmc_host *host = mmc_priv(mmc);
495
496 WARN_ON(host->mrq != NULL);
497 host->mrq = mrq;
498 mxs_mmc_start_cmd(host, mrq->cmd);
499}
500
Shawn Guoe4243f12011-02-21 18:35:28 +0800501static void mxs_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
502{
503 struct mxs_mmc_host *host = mmc_priv(mmc);
504
505 if (ios->bus_width == MMC_BUS_WIDTH_8)
506 host->bus_width = 2;
507 else if (ios->bus_width == MMC_BUS_WIDTH_4)
508 host->bus_width = 1;
509 else
510 host->bus_width = 0;
511
512 if (ios->clock)
Marek Vasut13082392012-08-03 17:26:10 +0200513 mxs_ssp_set_clk_rate(&host->ssp, ios->clock);
Shawn Guoe4243f12011-02-21 18:35:28 +0800514}
515
516static void mxs_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
517{
518 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200519 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800520 unsigned long flags;
521
522 spin_lock_irqsave(&host->lock, flags);
523
524 host->sdio_irq_en = enable;
525
526 if (enable) {
527 writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200528 ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET);
Shawn Guoe4243f12011-02-21 18:35:28 +0800529 writel(BM_SSP_CTRL1_SDIO_IRQ_EN,
Marek Vasut4c5bb2e2012-10-01 20:52:43 +0000530 ssp->base + HW_SSP_CTRL1(ssp) + STMP_OFFSET_REG_SET);
Shawn Guoe4243f12011-02-21 18:35:28 +0800531 } else {
532 writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200533 ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR);
Shawn Guoe4243f12011-02-21 18:35:28 +0800534 writel(BM_SSP_CTRL1_SDIO_IRQ_EN,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200535 ssp->base + HW_SSP_CTRL1(ssp) + STMP_OFFSET_REG_CLR);
Shawn Guoe4243f12011-02-21 18:35:28 +0800536 }
537
538 spin_unlock_irqrestore(&host->lock, flags);
Lauri Hintsalafc108d22012-07-17 17:16:10 +0300539
Mark Brownac48f6c2012-09-25 13:41:02 +0100540 if (enable && readl(ssp->base + HW_SSP_STATUS(ssp)) &
Lauri Hintsalafc108d22012-07-17 17:16:10 +0300541 BM_SSP_STATUS_SDIO_IRQ)
542 mmc_signal_sdio_irq(host->mmc);
543
Shawn Guoe4243f12011-02-21 18:35:28 +0800544}
545
546static const struct mmc_host_ops mxs_mmc_ops = {
547 .request = mxs_mmc_request,
548 .get_ro = mxs_mmc_get_ro,
549 .get_cd = mxs_mmc_get_cd,
550 .set_ios = mxs_mmc_set_ios,
551 .enable_sdio_irq = mxs_mmc_enable_sdio_irq,
552};
553
Marek Vasut600a9912012-08-03 17:26:07 +0200554static struct platform_device_id mxs_ssp_ids[] = {
Shawn Guoef9b4d32012-05-05 20:24:01 +0800555 {
556 .name = "imx23-mmc",
Marek Vasut600a9912012-08-03 17:26:07 +0200557 .driver_data = IMX23_SSP,
Shawn Guoef9b4d32012-05-05 20:24:01 +0800558 }, {
559 .name = "imx28-mmc",
Marek Vasut600a9912012-08-03 17:26:07 +0200560 .driver_data = IMX28_SSP,
Shawn Guoef9b4d32012-05-05 20:24:01 +0800561 }, {
562 /* sentinel */
563 }
564};
Marek Vasut600a9912012-08-03 17:26:07 +0200565MODULE_DEVICE_TABLE(platform, mxs_ssp_ids);
Shawn Guoef9b4d32012-05-05 20:24:01 +0800566
Shawn Guo6de4d812012-05-06 13:30:44 +0800567static const struct of_device_id mxs_mmc_dt_ids[] = {
Marek Vasut600a9912012-08-03 17:26:07 +0200568 { .compatible = "fsl,imx23-mmc", .data = (void *) IMX23_SSP, },
569 { .compatible = "fsl,imx28-mmc", .data = (void *) IMX28_SSP, },
Shawn Guo6de4d812012-05-06 13:30:44 +0800570 { /* sentinel */ }
571};
572MODULE_DEVICE_TABLE(of, mxs_mmc_dt_ids);
573
Shawn Guoe4243f12011-02-21 18:35:28 +0800574static int mxs_mmc_probe(struct platform_device *pdev)
575{
Shawn Guo6de4d812012-05-06 13:30:44 +0800576 const struct of_device_id *of_id =
577 of_match_device(mxs_mmc_dt_ids, &pdev->dev);
578 struct device_node *np = pdev->dev.of_node;
Shawn Guoe4243f12011-02-21 18:35:28 +0800579 struct mxs_mmc_host *host;
580 struct mmc_host *mmc;
Shawn Guo0e91e432013-02-26 10:10:38 +0800581 struct resource *iores;
Shawn Guo0e91e432013-02-26 10:10:38 +0800582 int ret = 0, irq_err;
Shawn Guo4dc5a792012-06-26 16:38:57 +0800583 struct regulator *reg_vmmc;
Marek Vasutb6e76f12012-07-19 11:11:39 -0400584 enum of_gpio_flags flags;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200585 struct mxs_ssp *ssp;
Fabio Estevamd6ed91a2012-10-31 09:22:58 -0200586 u32 bus_width = 0;
Shawn Guoe4243f12011-02-21 18:35:28 +0800587
588 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Shawn Guoe4243f12011-02-21 18:35:28 +0800589 irq_err = platform_get_irq(pdev, 0);
Shawn Guo0e91e432013-02-26 10:10:38 +0800590 if (!iores || irq_err < 0)
Shawn Guoe4243f12011-02-21 18:35:28 +0800591 return -EINVAL;
592
Shawn Guoe4243f12011-02-21 18:35:28 +0800593 mmc = mmc_alloc_host(sizeof(struct mxs_mmc_host), &pdev->dev);
Shawn Guodf06bfc2012-05-06 11:20:40 +0800594 if (!mmc)
595 return -ENOMEM;
Shawn Guoe4243f12011-02-21 18:35:28 +0800596
597 host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200598 ssp = &host->ssp;
599 ssp->dev = &pdev->dev;
Thierry Redinga3e2cd72013-01-21 11:09:11 +0100600 ssp->base = devm_ioremap_resource(&pdev->dev, iores);
601 if (IS_ERR(ssp->base)) {
602 ret = PTR_ERR(ssp->base);
Shawn Guoe4243f12011-02-21 18:35:28 +0800603 goto out_mmc_free;
604 }
605
Shawn Guo0e91e432013-02-26 10:10:38 +0800606 ssp->devid = (enum mxs_ssp_id) of_id->data;
Shawn Guo6de4d812012-05-06 13:30:44 +0800607
Shawn Guoe4243f12011-02-21 18:35:28 +0800608 host->mmc = mmc;
Shawn Guoe4243f12011-02-21 18:35:28 +0800609 host->sdio_irq_en = 0;
610
Shawn Guo4dc5a792012-06-26 16:38:57 +0800611 reg_vmmc = devm_regulator_get(&pdev->dev, "vmmc");
612 if (!IS_ERR(reg_vmmc)) {
613 ret = regulator_enable(reg_vmmc);
614 if (ret) {
615 dev_err(&pdev->dev,
616 "Failed to enable vmmc regulator: %d\n", ret);
617 goto out_mmc_free;
618 }
619 }
620
Fabio Estevama5adbff2013-07-03 17:02:37 -0300621 ssp->clk = devm_clk_get(&pdev->dev, NULL);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200622 if (IS_ERR(ssp->clk)) {
623 ret = PTR_ERR(ssp->clk);
Shawn Guodf06bfc2012-05-06 11:20:40 +0800624 goto out_mmc_free;
Shawn Guoe4243f12011-02-21 18:35:28 +0800625 }
Marek Vasut829c1bf2012-08-03 17:26:09 +0200626 clk_prepare_enable(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800627
628 mxs_mmc_reset(host);
629
Shawn Guo0e91e432013-02-26 10:10:38 +0800630 ssp->dmach = dma_request_slave_channel(&pdev->dev, "rx-tx");
Marek Vasut65defb92012-08-03 17:26:12 +0200631 if (!ssp->dmach) {
Shawn Guoe4243f12011-02-21 18:35:28 +0800632 dev_err(mmc_dev(host->mmc),
633 "%s: failed to request dma\n", __func__);
Wei Yongjun0c5ce162013-04-19 10:11:11 +0800634 ret = -ENODEV;
Fabio Estevama5adbff2013-07-03 17:02:37 -0300635 goto out_clk_disable;
Shawn Guoe4243f12011-02-21 18:35:28 +0800636 }
637
638 /* set mmc core parameters */
639 mmc->ops = &mxs_mmc_ops;
640 mmc->caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED |
641 MMC_CAP_SDIO_IRQ | MMC_CAP_NEEDS_POLL;
642
Fabio Estevamd6ed91a2012-10-31 09:22:58 -0200643 of_property_read_u32(np, "bus-width", &bus_width);
644 if (bus_width == 4)
645 mmc->caps |= MMC_CAP_4_BIT_DATA;
646 else if (bus_width == 8)
647 mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA;
Hector Palacios1d531962013-04-10 11:13:45 +0200648 host->broken_cd = of_property_read_bool(np, "broken-cd");
Marc Kleine-Budde5086e5f2013-04-10 11:13:44 +0200649 host->non_removable = of_property_read_bool(np, "non-removable");
650 if (host->non_removable)
651 mmc->caps |= MMC_CAP_NONREMOVABLE;
Fabio Estevamd6ed91a2012-10-31 09:22:58 -0200652 host->wp_gpio = of_get_named_gpio_flags(np, "wp-gpios", 0, &flags);
Fabio Estevamd6ed91a2012-10-31 09:22:58 -0200653 if (flags & OF_GPIO_ACTIVE_LOW)
654 host->wp_inverted = 1;
Shawn Guoe4243f12011-02-21 18:35:28 +0800655
Marc Kleine-Budde4c0c9be2013-04-10 11:13:43 +0200656 host->cd_inverted = of_property_read_bool(np, "cd-inverted");
657
Shawn Guoe4243f12011-02-21 18:35:28 +0800658 mmc->f_min = 400000;
659 mmc->f_max = 288000000;
660 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
661
662 mmc->max_segs = 52;
663 mmc->max_blk_size = 1 << 0xf;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200664 mmc->max_blk_count = (ssp_is_old(ssp)) ? 0xff : 0xffffff;
665 mmc->max_req_size = (ssp_is_old(ssp)) ? 0xffff : 0xffffffff;
Marek Vasut65defb92012-08-03 17:26:12 +0200666 mmc->max_seg_size = dma_get_max_seg_size(ssp->dmach->device->dev);
Shawn Guoe4243f12011-02-21 18:35:28 +0800667
668 platform_set_drvdata(pdev, mmc);
669
Shawn Guodf06bfc2012-05-06 11:20:40 +0800670 ret = devm_request_irq(&pdev->dev, irq_err, mxs_mmc_irq_handler, 0,
671 DRIVER_NAME, host);
Shawn Guoe4243f12011-02-21 18:35:28 +0800672 if (ret)
673 goto out_free_dma;
674
675 spin_lock_init(&host->lock);
676
677 ret = mmc_add_host(mmc);
678 if (ret)
Shawn Guodf06bfc2012-05-06 11:20:40 +0800679 goto out_free_dma;
Shawn Guoe4243f12011-02-21 18:35:28 +0800680
681 dev_info(mmc_dev(host->mmc), "initialized\n");
682
683 return 0;
684
Shawn Guoe4243f12011-02-21 18:35:28 +0800685out_free_dma:
Marek Vasut65defb92012-08-03 17:26:12 +0200686 if (ssp->dmach)
687 dma_release_channel(ssp->dmach);
Fabio Estevama5adbff2013-07-03 17:02:37 -0300688out_clk_disable:
Marek Vasut829c1bf2012-08-03 17:26:09 +0200689 clk_disable_unprepare(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800690out_mmc_free:
691 mmc_free_host(mmc);
Shawn Guoe4243f12011-02-21 18:35:28 +0800692 return ret;
693}
694
695static int mxs_mmc_remove(struct platform_device *pdev)
696{
697 struct mmc_host *mmc = platform_get_drvdata(pdev);
698 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200699 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800700
701 mmc_remove_host(mmc);
702
Marek Vasut65defb92012-08-03 17:26:12 +0200703 if (ssp->dmach)
704 dma_release_channel(ssp->dmach);
Shawn Guoe4243f12011-02-21 18:35:28 +0800705
Marek Vasut829c1bf2012-08-03 17:26:09 +0200706 clk_disable_unprepare(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800707
Shawn Guoe4243f12011-02-21 18:35:28 +0800708 mmc_free_host(mmc);
709
Shawn Guoe4243f12011-02-21 18:35:28 +0800710 return 0;
711}
712
713#ifdef CONFIG_PM
714static int mxs_mmc_suspend(struct device *dev)
715{
716 struct mmc_host *mmc = dev_get_drvdata(dev);
717 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200718 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800719 int ret = 0;
720
721 ret = mmc_suspend_host(mmc);
722
Marek Vasut829c1bf2012-08-03 17:26:09 +0200723 clk_disable_unprepare(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800724
725 return ret;
726}
727
728static int mxs_mmc_resume(struct device *dev)
729{
730 struct mmc_host *mmc = dev_get_drvdata(dev);
731 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200732 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800733 int ret = 0;
734
Marek Vasut829c1bf2012-08-03 17:26:09 +0200735 clk_prepare_enable(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800736
737 ret = mmc_resume_host(mmc);
738
739 return ret;
740}
741
742static const struct dev_pm_ops mxs_mmc_pm_ops = {
743 .suspend = mxs_mmc_suspend,
744 .resume = mxs_mmc_resume,
745};
746#endif
747
748static struct platform_driver mxs_mmc_driver = {
749 .probe = mxs_mmc_probe,
750 .remove = mxs_mmc_remove,
Marek Vasut600a9912012-08-03 17:26:07 +0200751 .id_table = mxs_ssp_ids,
Shawn Guoe4243f12011-02-21 18:35:28 +0800752 .driver = {
753 .name = DRIVER_NAME,
754 .owner = THIS_MODULE,
755#ifdef CONFIG_PM
756 .pm = &mxs_mmc_pm_ops,
757#endif
Marek Vasuta3e545e2012-05-21 06:33:27 +0200758 .of_match_table = mxs_mmc_dt_ids,
Shawn Guoe4243f12011-02-21 18:35:28 +0800759 },
760};
761
Axel Lind1f81a62011-11-26 12:55:43 +0800762module_platform_driver(mxs_mmc_driver);
Shawn Guoe4243f12011-02-21 18:35:28 +0800763
764MODULE_DESCRIPTION("FREESCALE MXS MMC peripheral");
765MODULE_AUTHOR("Freescale Semiconductor");
766MODULE_LICENSE("GPL");
Fabio Estevame7be4342013-01-07 20:41:52 -0200767MODULE_ALIAS("platform:" DRIVER_NAME);