blob: 7b85e035a4cb969fb154b0c50cb827a43e9fc3a7 [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>
Huang Shijie39468602012-02-16 14:17:32 +080044#include <linux/fsl/mxs-dma.h>
Shawn Guo9c92cf22012-05-06 22:56:16 +080045#include <linux/pinctrl/consumer.h>
Shawn Guo70e60202012-05-05 19:40:09 +080046#include <linux/stmp_device.h>
Shawn Guo81f38ee2012-05-06 10:04:23 +080047#include <linux/mmc/mxs-mmc.h>
Marek Vasut8be3d3b2012-08-03 17:26:06 +020048#include <linux/spi/mxs-spi.h>
Shawn Guoe4243f12011-02-21 18:35:28 +080049
50#define DRIVER_NAME "mxs-mmc"
51
Shawn Guoe4243f12011-02-21 18:35:28 +080052#define MXS_MMC_IRQ_BITS (BM_SSP_CTRL1_SDIO_IRQ | \
53 BM_SSP_CTRL1_RESP_ERR_IRQ | \
54 BM_SSP_CTRL1_RESP_TIMEOUT_IRQ | \
55 BM_SSP_CTRL1_DATA_TIMEOUT_IRQ | \
56 BM_SSP_CTRL1_DATA_CRC_IRQ | \
57 BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ | \
58 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ | \
59 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ)
60
Marek Vasut8be3d3b2012-08-03 17:26:06 +020061/* card detect polling timeout */
62#define MXS_MMC_DETECT_TIMEOUT (HZ/2)
Shawn Guoef9b4d32012-05-05 20:24:01 +080063
Shawn Guoe4243f12011-02-21 18:35:28 +080064struct mxs_mmc_host {
Marek Vasut829c1bf2012-08-03 17:26:09 +020065 struct mxs_ssp ssp;
66
Shawn Guoe4243f12011-02-21 18:35:28 +080067 struct mmc_host *mmc;
68 struct mmc_request *mrq;
69 struct mmc_command *cmd;
70 struct mmc_data *data;
71
Shawn Guob60188c2012-05-06 11:25:35 +080072 int dma_channel;
Shawn Guoe4243f12011-02-21 18:35:28 +080073 struct dma_chan *dmach;
74 struct mxs_dma_data dma_data;
75 unsigned int dma_dir;
Vinod Koul05f57992011-10-14 10:45:11 +053076 enum dma_transfer_direction slave_dirn;
Shawn Guoe4243f12011-02-21 18:35:28 +080077 u32 ssp_pio_words[SSP_PIO_NUM];
78
Shawn Guoe4243f12011-02-21 18:35:28 +080079 unsigned char bus_width;
80 spinlock_t lock;
81 int sdio_irq_en;
Shawn Guo31b0ff52012-05-06 13:33:40 +080082 int wp_gpio;
Marek Vasutb6e76f12012-07-19 11:11:39 -040083 bool wp_inverted;
Shawn Guoe4243f12011-02-21 18:35:28 +080084};
85
86static int mxs_mmc_get_ro(struct mmc_host *mmc)
87{
88 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasutb6e76f12012-07-19 11:11:39 -040089 int ret;
Shawn Guoe4243f12011-02-21 18:35:28 +080090
Shawn Guo31b0ff52012-05-06 13:33:40 +080091 if (!gpio_is_valid(host->wp_gpio))
Shawn Guoe4243f12011-02-21 18:35:28 +080092 return -EINVAL;
93
Marek Vasutb6e76f12012-07-19 11:11:39 -040094 ret = gpio_get_value(host->wp_gpio);
95
96 if (host->wp_inverted)
97 ret = !ret;
98
99 return ret;
Shawn Guoe4243f12011-02-21 18:35:28 +0800100}
101
102static int mxs_mmc_get_cd(struct mmc_host *mmc)
103{
104 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200105 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800106
Marek Vasut829c1bf2012-08-03 17:26:09 +0200107 return !(readl(ssp->base + HW_SSP_STATUS(ssp)) &
Shawn Guoe4243f12011-02-21 18:35:28 +0800108 BM_SSP_STATUS_CARD_DETECT);
109}
110
111static void mxs_mmc_reset(struct mxs_mmc_host *host)
112{
Marek Vasut829c1bf2012-08-03 17:26:09 +0200113 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800114 u32 ctrl0, ctrl1;
115
Marek Vasut829c1bf2012-08-03 17:26:09 +0200116 stmp_reset_block(ssp->base);
Shawn Guoe4243f12011-02-21 18:35:28 +0800117
118 ctrl0 = BM_SSP_CTRL0_IGNORE_CRC;
119 ctrl1 = BF_SSP(0x3, CTRL1_SSP_MODE) |
120 BF_SSP(0x7, CTRL1_WORD_LENGTH) |
121 BM_SSP_CTRL1_DMA_ENABLE |
122 BM_SSP_CTRL1_POLARITY |
123 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ_EN |
124 BM_SSP_CTRL1_DATA_CRC_IRQ_EN |
125 BM_SSP_CTRL1_DATA_TIMEOUT_IRQ_EN |
126 BM_SSP_CTRL1_RESP_TIMEOUT_IRQ_EN |
127 BM_SSP_CTRL1_RESP_ERR_IRQ_EN;
128
129 writel(BF_SSP(0xffff, TIMING_TIMEOUT) |
130 BF_SSP(2, TIMING_CLOCK_DIVIDE) |
131 BF_SSP(0, TIMING_CLOCK_RATE),
Marek Vasut829c1bf2012-08-03 17:26:09 +0200132 ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800133
134 if (host->sdio_irq_en) {
135 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
136 ctrl1 |= BM_SSP_CTRL1_SDIO_IRQ_EN;
137 }
138
Marek Vasut829c1bf2012-08-03 17:26:09 +0200139 writel(ctrl0, ssp->base + HW_SSP_CTRL0);
140 writel(ctrl1, ssp->base + HW_SSP_CTRL1(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800141}
142
143static void mxs_mmc_start_cmd(struct mxs_mmc_host *host,
144 struct mmc_command *cmd);
145
146static void mxs_mmc_request_done(struct mxs_mmc_host *host)
147{
148 struct mmc_command *cmd = host->cmd;
149 struct mmc_data *data = host->data;
150 struct mmc_request *mrq = host->mrq;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200151 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800152
153 if (mmc_resp_type(cmd) & MMC_RSP_PRESENT) {
154 if (mmc_resp_type(cmd) & MMC_RSP_136) {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200155 cmd->resp[3] = readl(ssp->base + HW_SSP_SDRESP0(ssp));
156 cmd->resp[2] = readl(ssp->base + HW_SSP_SDRESP1(ssp));
157 cmd->resp[1] = readl(ssp->base + HW_SSP_SDRESP2(ssp));
158 cmd->resp[0] = readl(ssp->base + HW_SSP_SDRESP3(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800159 } else {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200160 cmd->resp[0] = readl(ssp->base + HW_SSP_SDRESP0(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800161 }
162 }
163
164 if (data) {
165 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
166 data->sg_len, host->dma_dir);
167 /*
168 * If there was an error on any block, we mark all
169 * data blocks as being in error.
170 */
171 if (!data->error)
172 data->bytes_xfered = data->blocks * data->blksz;
173 else
174 data->bytes_xfered = 0;
175
176 host->data = NULL;
177 if (mrq->stop) {
178 mxs_mmc_start_cmd(host, mrq->stop);
179 return;
180 }
181 }
182
183 host->mrq = NULL;
184 mmc_request_done(host->mmc, mrq);
185}
186
187static void mxs_mmc_dma_irq_callback(void *param)
188{
189 struct mxs_mmc_host *host = param;
190
191 mxs_mmc_request_done(host);
192}
193
194static irqreturn_t mxs_mmc_irq_handler(int irq, void *dev_id)
195{
196 struct mxs_mmc_host *host = dev_id;
197 struct mmc_command *cmd = host->cmd;
198 struct mmc_data *data = host->data;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200199 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800200 u32 stat;
201
202 spin_lock(&host->lock);
203
Marek Vasut829c1bf2012-08-03 17:26:09 +0200204 stat = readl(ssp->base + HW_SSP_CTRL1(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800205 writel(stat & MXS_MMC_IRQ_BITS,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200206 ssp->base + HW_SSP_CTRL1(ssp) + STMP_OFFSET_REG_CLR);
Shawn Guoe4243f12011-02-21 18:35:28 +0800207
208 if ((stat & BM_SSP_CTRL1_SDIO_IRQ) && (stat & BM_SSP_CTRL1_SDIO_IRQ_EN))
209 mmc_signal_sdio_irq(host->mmc);
210
211 spin_unlock(&host->lock);
212
213 if (stat & BM_SSP_CTRL1_RESP_TIMEOUT_IRQ)
214 cmd->error = -ETIMEDOUT;
215 else if (stat & BM_SSP_CTRL1_RESP_ERR_IRQ)
216 cmd->error = -EIO;
217
218 if (data) {
219 if (stat & (BM_SSP_CTRL1_DATA_TIMEOUT_IRQ |
220 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ))
221 data->error = -ETIMEDOUT;
222 else if (stat & BM_SSP_CTRL1_DATA_CRC_IRQ)
223 data->error = -EILSEQ;
224 else if (stat & (BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ |
225 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ))
226 data->error = -EIO;
227 }
228
229 return IRQ_HANDLED;
230}
231
232static struct dma_async_tx_descriptor *mxs_mmc_prep_dma(
Huang Shijie921de862012-02-16 14:17:33 +0800233 struct mxs_mmc_host *host, unsigned long flags)
Shawn Guoe4243f12011-02-21 18:35:28 +0800234{
235 struct dma_async_tx_descriptor *desc;
236 struct mmc_data *data = host->data;
237 struct scatterlist * sgl;
238 unsigned int sg_len;
239
240 if (data) {
241 /* data */
242 dma_map_sg(mmc_dev(host->mmc), data->sg,
243 data->sg_len, host->dma_dir);
244 sgl = data->sg;
245 sg_len = data->sg_len;
246 } else {
247 /* pio */
248 sgl = (struct scatterlist *) host->ssp_pio_words;
249 sg_len = SSP_PIO_NUM;
250 }
251
Alexandre Bounine16052822012-03-08 16:11:18 -0500252 desc = dmaengine_prep_slave_sg(host->dmach,
Huang Shijie921de862012-02-16 14:17:33 +0800253 sgl, sg_len, host->slave_dirn, flags);
Shawn Guoe4243f12011-02-21 18:35:28 +0800254 if (desc) {
255 desc->callback = mxs_mmc_dma_irq_callback;
256 desc->callback_param = host;
257 } else {
258 if (data)
259 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
260 data->sg_len, host->dma_dir);
261 }
262
263 return desc;
264}
265
266static void mxs_mmc_bc(struct mxs_mmc_host *host)
267{
268 struct mmc_command *cmd = host->cmd;
269 struct dma_async_tx_descriptor *desc;
270 u32 ctrl0, cmd0, cmd1;
271
272 ctrl0 = BM_SSP_CTRL0_ENABLE | BM_SSP_CTRL0_IGNORE_CRC;
273 cmd0 = BF_SSP(cmd->opcode, CMD0_CMD) | BM_SSP_CMD0_APPEND_8CYC;
274 cmd1 = cmd->arg;
275
276 if (host->sdio_irq_en) {
277 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
278 cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
279 }
280
281 host->ssp_pio_words[0] = ctrl0;
282 host->ssp_pio_words[1] = cmd0;
283 host->ssp_pio_words[2] = cmd1;
284 host->dma_dir = DMA_NONE;
Shawn Guoa4e3e862011-12-13 23:48:04 +0800285 host->slave_dirn = DMA_TRANS_NONE;
Huang Shijie921de862012-02-16 14:17:33 +0800286 desc = mxs_mmc_prep_dma(host, DMA_CTRL_ACK);
Shawn Guoe4243f12011-02-21 18:35:28 +0800287 if (!desc)
288 goto out;
289
290 dmaengine_submit(desc);
Shawn Guod04525e2012-04-11 13:29:31 +0800291 dma_async_issue_pending(host->dmach);
Shawn Guoe4243f12011-02-21 18:35:28 +0800292 return;
293
294out:
295 dev_warn(mmc_dev(host->mmc),
296 "%s: failed to prep dma\n", __func__);
297}
298
299static void mxs_mmc_ac(struct mxs_mmc_host *host)
300{
301 struct mmc_command *cmd = host->cmd;
302 struct dma_async_tx_descriptor *desc;
303 u32 ignore_crc, get_resp, long_resp;
304 u32 ctrl0, cmd0, cmd1;
305
306 ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ?
307 0 : BM_SSP_CTRL0_IGNORE_CRC;
308 get_resp = (mmc_resp_type(cmd) & MMC_RSP_PRESENT) ?
309 BM_SSP_CTRL0_GET_RESP : 0;
310 long_resp = (mmc_resp_type(cmd) & MMC_RSP_136) ?
311 BM_SSP_CTRL0_LONG_RESP : 0;
312
313 ctrl0 = BM_SSP_CTRL0_ENABLE | ignore_crc | get_resp | long_resp;
314 cmd0 = BF_SSP(cmd->opcode, CMD0_CMD);
315 cmd1 = cmd->arg;
316
317 if (host->sdio_irq_en) {
318 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
319 cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
320 }
321
322 host->ssp_pio_words[0] = ctrl0;
323 host->ssp_pio_words[1] = cmd0;
324 host->ssp_pio_words[2] = cmd1;
325 host->dma_dir = DMA_NONE;
Shawn Guoa4e3e862011-12-13 23:48:04 +0800326 host->slave_dirn = DMA_TRANS_NONE;
Huang Shijie921de862012-02-16 14:17:33 +0800327 desc = mxs_mmc_prep_dma(host, DMA_CTRL_ACK);
Shawn Guoe4243f12011-02-21 18:35:28 +0800328 if (!desc)
329 goto out;
330
331 dmaengine_submit(desc);
Shawn Guod04525e2012-04-11 13:29:31 +0800332 dma_async_issue_pending(host->dmach);
Shawn Guoe4243f12011-02-21 18:35:28 +0800333 return;
334
335out:
336 dev_warn(mmc_dev(host->mmc),
337 "%s: failed to prep dma\n", __func__);
338}
339
340static unsigned short mxs_ns_to_ssp_ticks(unsigned clock_rate, unsigned ns)
341{
342 const unsigned int ssp_timeout_mul = 4096;
343 /*
344 * Calculate ticks in ms since ns are large numbers
345 * and might overflow
346 */
347 const unsigned int clock_per_ms = clock_rate / 1000;
348 const unsigned int ms = ns / 1000;
349 const unsigned int ticks = ms * clock_per_ms;
350 const unsigned int ssp_ticks = ticks / ssp_timeout_mul;
351
352 WARN_ON(ssp_ticks == 0);
353 return ssp_ticks;
354}
355
356static void mxs_mmc_adtc(struct mxs_mmc_host *host)
357{
358 struct mmc_command *cmd = host->cmd;
359 struct mmc_data *data = cmd->data;
360 struct dma_async_tx_descriptor *desc;
361 struct scatterlist *sgl = data->sg, *sg;
362 unsigned int sg_len = data->sg_len;
363 int i;
364
365 unsigned short dma_data_dir, timeout;
Vinod Koul05f57992011-10-14 10:45:11 +0530366 enum dma_transfer_direction slave_dirn;
Shawn Guoe4243f12011-02-21 18:35:28 +0800367 unsigned int data_size = 0, log2_blksz;
368 unsigned int blocks = data->blocks;
369
Marek Vasut829c1bf2012-08-03 17:26:09 +0200370 struct mxs_ssp *ssp = &host->ssp;
371
Shawn Guoe4243f12011-02-21 18:35:28 +0800372 u32 ignore_crc, get_resp, long_resp, read;
373 u32 ctrl0, cmd0, cmd1, val;
374
375 ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ?
376 0 : BM_SSP_CTRL0_IGNORE_CRC;
377 get_resp = (mmc_resp_type(cmd) & MMC_RSP_PRESENT) ?
378 BM_SSP_CTRL0_GET_RESP : 0;
379 long_resp = (mmc_resp_type(cmd) & MMC_RSP_136) ?
380 BM_SSP_CTRL0_LONG_RESP : 0;
381
382 if (data->flags & MMC_DATA_WRITE) {
383 dma_data_dir = DMA_TO_DEVICE;
Vinod Koul05f57992011-10-14 10:45:11 +0530384 slave_dirn = DMA_MEM_TO_DEV;
Shawn Guoe4243f12011-02-21 18:35:28 +0800385 read = 0;
386 } else {
387 dma_data_dir = DMA_FROM_DEVICE;
Vinod Koul05f57992011-10-14 10:45:11 +0530388 slave_dirn = DMA_DEV_TO_MEM;
Shawn Guoe4243f12011-02-21 18:35:28 +0800389 read = BM_SSP_CTRL0_READ;
390 }
391
392 ctrl0 = BF_SSP(host->bus_width, CTRL0_BUS_WIDTH) |
393 ignore_crc | get_resp | long_resp |
394 BM_SSP_CTRL0_DATA_XFER | read |
395 BM_SSP_CTRL0_WAIT_FOR_IRQ |
396 BM_SSP_CTRL0_ENABLE;
397
398 cmd0 = BF_SSP(cmd->opcode, CMD0_CMD);
399
400 /* get logarithm to base 2 of block size for setting register */
401 log2_blksz = ilog2(data->blksz);
402
403 /*
404 * take special care of the case that data size from data->sg
405 * is not equal to blocks x blksz
406 */
407 for_each_sg(sgl, sg, sg_len, i)
408 data_size += sg->length;
409
410 if (data_size != data->blocks * data->blksz)
411 blocks = 1;
412
413 /* xfer count, block size and count need to be set differently */
Marek Vasut829c1bf2012-08-03 17:26:09 +0200414 if (ssp_is_old(ssp)) {
Shawn Guoe4243f12011-02-21 18:35:28 +0800415 ctrl0 |= BF_SSP(data_size, CTRL0_XFER_COUNT);
416 cmd0 |= BF_SSP(log2_blksz, CMD0_BLOCK_SIZE) |
417 BF_SSP(blocks - 1, CMD0_BLOCK_COUNT);
418 } else {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200419 writel(data_size, ssp->base + HW_SSP_XFER_SIZE);
Shawn Guoe4243f12011-02-21 18:35:28 +0800420 writel(BF_SSP(log2_blksz, BLOCK_SIZE_BLOCK_SIZE) |
421 BF_SSP(blocks - 1, BLOCK_SIZE_BLOCK_COUNT),
Marek Vasut829c1bf2012-08-03 17:26:09 +0200422 ssp->base + HW_SSP_BLOCK_SIZE);
Shawn Guoe4243f12011-02-21 18:35:28 +0800423 }
424
425 if ((cmd->opcode == MMC_STOP_TRANSMISSION) ||
426 (cmd->opcode == SD_IO_RW_EXTENDED))
427 cmd0 |= BM_SSP_CMD0_APPEND_8CYC;
428
429 cmd1 = cmd->arg;
430
431 if (host->sdio_irq_en) {
432 ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
433 cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
434 }
435
436 /* set the timeout count */
Marek Vasut829c1bf2012-08-03 17:26:09 +0200437 timeout = mxs_ns_to_ssp_ticks(ssp->clk_rate, data->timeout_ns);
438 val = readl(ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800439 val &= ~(BM_SSP_TIMING_TIMEOUT);
440 val |= BF_SSP(timeout, TIMING_TIMEOUT);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200441 writel(val, ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800442
443 /* pio */
444 host->ssp_pio_words[0] = ctrl0;
445 host->ssp_pio_words[1] = cmd0;
446 host->ssp_pio_words[2] = cmd1;
447 host->dma_dir = DMA_NONE;
Shawn Guoa4e3e862011-12-13 23:48:04 +0800448 host->slave_dirn = DMA_TRANS_NONE;
Shawn Guoe4243f12011-02-21 18:35:28 +0800449 desc = mxs_mmc_prep_dma(host, 0);
450 if (!desc)
451 goto out;
452
453 /* append data sg */
454 WARN_ON(host->data != NULL);
455 host->data = data;
456 host->dma_dir = dma_data_dir;
Vinod Koul05f57992011-10-14 10:45:11 +0530457 host->slave_dirn = slave_dirn;
Huang Shijie921de862012-02-16 14:17:33 +0800458 desc = mxs_mmc_prep_dma(host, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Shawn Guoe4243f12011-02-21 18:35:28 +0800459 if (!desc)
460 goto out;
461
462 dmaengine_submit(desc);
Shawn Guod04525e2012-04-11 13:29:31 +0800463 dma_async_issue_pending(host->dmach);
Shawn Guoe4243f12011-02-21 18:35:28 +0800464 return;
465out:
466 dev_warn(mmc_dev(host->mmc),
467 "%s: failed to prep dma\n", __func__);
468}
469
470static void mxs_mmc_start_cmd(struct mxs_mmc_host *host,
471 struct mmc_command *cmd)
472{
473 host->cmd = cmd;
474
475 switch (mmc_cmd_type(cmd)) {
476 case MMC_CMD_BC:
477 mxs_mmc_bc(host);
478 break;
479 case MMC_CMD_BCR:
480 mxs_mmc_ac(host);
481 break;
482 case MMC_CMD_AC:
483 mxs_mmc_ac(host);
484 break;
485 case MMC_CMD_ADTC:
486 mxs_mmc_adtc(host);
487 break;
488 default:
489 dev_warn(mmc_dev(host->mmc),
490 "%s: unknown MMC command\n", __func__);
491 break;
492 }
493}
494
495static void mxs_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
496{
497 struct mxs_mmc_host *host = mmc_priv(mmc);
498
499 WARN_ON(host->mrq != NULL);
500 host->mrq = mrq;
501 mxs_mmc_start_cmd(host, mrq->cmd);
502}
503
504static void mxs_mmc_set_clk_rate(struct mxs_mmc_host *host, unsigned int rate)
505{
Marek Vasut829c1bf2012-08-03 17:26:09 +0200506 struct mxs_ssp *ssp = &host->ssp;
Koen Beeld982dcd2011-07-15 17:39:00 -0400507 unsigned int ssp_clk, ssp_sck;
508 u32 clock_divide, clock_rate;
Shawn Guoe4243f12011-02-21 18:35:28 +0800509 u32 val;
510
Marek Vasut829c1bf2012-08-03 17:26:09 +0200511 ssp_clk = clk_get_rate(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800512
Koen Beeld982dcd2011-07-15 17:39:00 -0400513 for (clock_divide = 2; clock_divide <= 254; clock_divide += 2) {
514 clock_rate = DIV_ROUND_UP(ssp_clk, rate * clock_divide);
515 clock_rate = (clock_rate > 0) ? clock_rate - 1 : 0;
516 if (clock_rate <= 255)
Shawn Guoe4243f12011-02-21 18:35:28 +0800517 break;
518 }
519
Koen Beeld982dcd2011-07-15 17:39:00 -0400520 if (clock_divide > 254) {
Shawn Guoe4243f12011-02-21 18:35:28 +0800521 dev_err(mmc_dev(host->mmc),
522 "%s: cannot set clock to %d\n", __func__, rate);
523 return;
524 }
525
Koen Beeld982dcd2011-07-15 17:39:00 -0400526 ssp_sck = ssp_clk / clock_divide / (1 + clock_rate);
Shawn Guoe4243f12011-02-21 18:35:28 +0800527
Marek Vasut829c1bf2012-08-03 17:26:09 +0200528 val = readl(ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800529 val &= ~(BM_SSP_TIMING_CLOCK_DIVIDE | BM_SSP_TIMING_CLOCK_RATE);
Koen Beeld982dcd2011-07-15 17:39:00 -0400530 val |= BF_SSP(clock_divide, TIMING_CLOCK_DIVIDE);
531 val |= BF_SSP(clock_rate, TIMING_CLOCK_RATE);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200532 writel(val, ssp->base + HW_SSP_TIMING(ssp));
Shawn Guoe4243f12011-02-21 18:35:28 +0800533
Marek Vasut829c1bf2012-08-03 17:26:09 +0200534 ssp->clk_rate = ssp_sck;
Shawn Guoe4243f12011-02-21 18:35:28 +0800535
536 dev_dbg(mmc_dev(host->mmc),
Koen Beeld982dcd2011-07-15 17:39:00 -0400537 "%s: clock_divide %d, clock_rate %d, ssp_clk %d, rate_actual %d, rate_requested %d\n",
538 __func__, clock_divide, clock_rate, ssp_clk, ssp_sck, rate);
Shawn Guoe4243f12011-02-21 18:35:28 +0800539}
540
541static void mxs_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
542{
543 struct mxs_mmc_host *host = mmc_priv(mmc);
544
545 if (ios->bus_width == MMC_BUS_WIDTH_8)
546 host->bus_width = 2;
547 else if (ios->bus_width == MMC_BUS_WIDTH_4)
548 host->bus_width = 1;
549 else
550 host->bus_width = 0;
551
552 if (ios->clock)
553 mxs_mmc_set_clk_rate(host, ios->clock);
554}
555
556static void mxs_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
557{
558 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200559 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800560 unsigned long flags;
561
562 spin_lock_irqsave(&host->lock, flags);
563
564 host->sdio_irq_en = enable;
565
566 if (enable) {
567 writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200568 ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET);
Shawn Guoe4243f12011-02-21 18:35:28 +0800569 writel(BM_SSP_CTRL1_SDIO_IRQ_EN,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200570 ssp->base + HW_SSP_CTRL1(ssp) + STMP_OFFSET_REG_SET);
Shawn Guoe4243f12011-02-21 18:35:28 +0800571
Marek Vasut829c1bf2012-08-03 17:26:09 +0200572 if (readl(ssp->base + HW_SSP_STATUS(ssp)) &
Shawn Guoe0bf1412012-05-06 09:36:39 +0800573 BM_SSP_STATUS_SDIO_IRQ)
Shawn Guoe4243f12011-02-21 18:35:28 +0800574 mmc_signal_sdio_irq(host->mmc);
575
576 } else {
577 writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200578 ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR);
Shawn Guoe4243f12011-02-21 18:35:28 +0800579 writel(BM_SSP_CTRL1_SDIO_IRQ_EN,
Marek Vasut829c1bf2012-08-03 17:26:09 +0200580 ssp->base + HW_SSP_CTRL1(ssp) + STMP_OFFSET_REG_CLR);
Shawn Guoe4243f12011-02-21 18:35:28 +0800581 }
582
583 spin_unlock_irqrestore(&host->lock, flags);
584}
585
586static const struct mmc_host_ops mxs_mmc_ops = {
587 .request = mxs_mmc_request,
588 .get_ro = mxs_mmc_get_ro,
589 .get_cd = mxs_mmc_get_cd,
590 .set_ios = mxs_mmc_set_ios,
591 .enable_sdio_irq = mxs_mmc_enable_sdio_irq,
592};
593
594static bool mxs_mmc_dma_filter(struct dma_chan *chan, void *param)
595{
596 struct mxs_mmc_host *host = param;
597
598 if (!mxs_dma_is_apbh(chan))
599 return false;
600
Shawn Guob60188c2012-05-06 11:25:35 +0800601 if (chan->chan_id != host->dma_channel)
Shawn Guoe4243f12011-02-21 18:35:28 +0800602 return false;
603
604 chan->private = &host->dma_data;
605
606 return true;
607}
608
Marek Vasut600a9912012-08-03 17:26:07 +0200609static struct platform_device_id mxs_ssp_ids[] = {
Shawn Guoef9b4d32012-05-05 20:24:01 +0800610 {
611 .name = "imx23-mmc",
Marek Vasut600a9912012-08-03 17:26:07 +0200612 .driver_data = IMX23_SSP,
Shawn Guoef9b4d32012-05-05 20:24:01 +0800613 }, {
614 .name = "imx28-mmc",
Marek Vasut600a9912012-08-03 17:26:07 +0200615 .driver_data = IMX28_SSP,
Shawn Guoef9b4d32012-05-05 20:24:01 +0800616 }, {
617 /* sentinel */
618 }
619};
Marek Vasut600a9912012-08-03 17:26:07 +0200620MODULE_DEVICE_TABLE(platform, mxs_ssp_ids);
Shawn Guoef9b4d32012-05-05 20:24:01 +0800621
Shawn Guo6de4d812012-05-06 13:30:44 +0800622static const struct of_device_id mxs_mmc_dt_ids[] = {
Marek Vasut600a9912012-08-03 17:26:07 +0200623 { .compatible = "fsl,imx23-mmc", .data = (void *) IMX23_SSP, },
624 { .compatible = "fsl,imx28-mmc", .data = (void *) IMX28_SSP, },
Shawn Guo6de4d812012-05-06 13:30:44 +0800625 { /* sentinel */ }
626};
627MODULE_DEVICE_TABLE(of, mxs_mmc_dt_ids);
628
Shawn Guoe4243f12011-02-21 18:35:28 +0800629static int mxs_mmc_probe(struct platform_device *pdev)
630{
Shawn Guo6de4d812012-05-06 13:30:44 +0800631 const struct of_device_id *of_id =
632 of_match_device(mxs_mmc_dt_ids, &pdev->dev);
633 struct device_node *np = pdev->dev.of_node;
Shawn Guoe4243f12011-02-21 18:35:28 +0800634 struct mxs_mmc_host *host;
635 struct mmc_host *mmc;
Shawn Guodf06bfc2012-05-06 11:20:40 +0800636 struct resource *iores, *dmares;
Shawn Guoe4243f12011-02-21 18:35:28 +0800637 struct mxs_mmc_platform_data *pdata;
Shawn Guo9c92cf22012-05-06 22:56:16 +0800638 struct pinctrl *pinctrl;
Shawn Guoe4243f12011-02-21 18:35:28 +0800639 int ret = 0, irq_err, irq_dma;
640 dma_cap_mask_t mask;
Shawn Guo4dc5a792012-06-26 16:38:57 +0800641 struct regulator *reg_vmmc;
Marek Vasutb6e76f12012-07-19 11:11:39 -0400642 enum of_gpio_flags flags;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200643 struct mxs_ssp *ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800644
645 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
646 dmares = platform_get_resource(pdev, IORESOURCE_DMA, 0);
647 irq_err = platform_get_irq(pdev, 0);
648 irq_dma = platform_get_irq(pdev, 1);
Shawn Guo6de4d812012-05-06 13:30:44 +0800649 if (!iores || irq_err < 0 || irq_dma < 0)
Shawn Guoe4243f12011-02-21 18:35:28 +0800650 return -EINVAL;
651
Shawn Guoe4243f12011-02-21 18:35:28 +0800652 mmc = mmc_alloc_host(sizeof(struct mxs_mmc_host), &pdev->dev);
Shawn Guodf06bfc2012-05-06 11:20:40 +0800653 if (!mmc)
654 return -ENOMEM;
Shawn Guoe4243f12011-02-21 18:35:28 +0800655
656 host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200657 ssp = &host->ssp;
658 ssp->dev = &pdev->dev;
659 ssp->base = devm_request_and_ioremap(&pdev->dev, iores);
660 if (!ssp->base) {
Shawn Guodf06bfc2012-05-06 11:20:40 +0800661 ret = -EADDRNOTAVAIL;
Shawn Guoe4243f12011-02-21 18:35:28 +0800662 goto out_mmc_free;
663 }
664
Shawn Guo6de4d812012-05-06 13:30:44 +0800665 if (np) {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200666 ssp->devid = (enum mxs_ssp_id) of_id->data;
Shawn Guo6de4d812012-05-06 13:30:44 +0800667 /*
668 * TODO: This is a temporary solution and should be changed
669 * to use generic DMA binding later when the helpers get in.
670 */
671 ret = of_property_read_u32(np, "fsl,ssp-dma-channel",
672 &host->dma_channel);
673 if (ret) {
674 dev_err(mmc_dev(host->mmc),
675 "failed to get dma channel\n");
676 goto out_mmc_free;
677 }
678 } else {
Marek Vasut829c1bf2012-08-03 17:26:09 +0200679 ssp->devid = pdev->id_entry->driver_data;
Shawn Guo6de4d812012-05-06 13:30:44 +0800680 host->dma_channel = dmares->start;
681 }
682
Shawn Guoe4243f12011-02-21 18:35:28 +0800683 host->mmc = mmc;
Shawn Guoe4243f12011-02-21 18:35:28 +0800684 host->sdio_irq_en = 0;
685
Shawn Guo4dc5a792012-06-26 16:38:57 +0800686 reg_vmmc = devm_regulator_get(&pdev->dev, "vmmc");
687 if (!IS_ERR(reg_vmmc)) {
688 ret = regulator_enable(reg_vmmc);
689 if (ret) {
690 dev_err(&pdev->dev,
691 "Failed to enable vmmc regulator: %d\n", ret);
692 goto out_mmc_free;
693 }
694 }
695
Shawn Guo9c92cf22012-05-06 22:56:16 +0800696 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
697 if (IS_ERR(pinctrl)) {
698 ret = PTR_ERR(pinctrl);
Shawn Guo6de4d812012-05-06 13:30:44 +0800699 goto out_mmc_free;
Shawn Guo9c92cf22012-05-06 22:56:16 +0800700 }
701
Marek Vasut829c1bf2012-08-03 17:26:09 +0200702 ssp->clk = clk_get(&pdev->dev, NULL);
703 if (IS_ERR(ssp->clk)) {
704 ret = PTR_ERR(ssp->clk);
Shawn Guodf06bfc2012-05-06 11:20:40 +0800705 goto out_mmc_free;
Shawn Guoe4243f12011-02-21 18:35:28 +0800706 }
Marek Vasut829c1bf2012-08-03 17:26:09 +0200707 clk_prepare_enable(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800708
709 mxs_mmc_reset(host);
710
711 dma_cap_zero(mask);
712 dma_cap_set(DMA_SLAVE, mask);
713 host->dma_data.chan_irq = irq_dma;
714 host->dmach = dma_request_channel(mask, mxs_mmc_dma_filter, host);
715 if (!host->dmach) {
716 dev_err(mmc_dev(host->mmc),
717 "%s: failed to request dma\n", __func__);
718 goto out_clk_put;
719 }
720
721 /* set mmc core parameters */
722 mmc->ops = &mxs_mmc_ops;
723 mmc->caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED |
724 MMC_CAP_SDIO_IRQ | MMC_CAP_NEEDS_POLL;
725
726 pdata = mmc_dev(host->mmc)->platform_data;
Shawn Guo6de4d812012-05-06 13:30:44 +0800727 if (!pdata) {
728 u32 bus_width = 0;
729 of_property_read_u32(np, "bus-width", &bus_width);
730 if (bus_width == 4)
731 mmc->caps |= MMC_CAP_4_BIT_DATA;
732 else if (bus_width == 8)
733 mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA;
Marek Vasutb6e76f12012-07-19 11:11:39 -0400734 host->wp_gpio = of_get_named_gpio_flags(np, "wp-gpios", 0,
735 &flags);
736 if (flags & OF_GPIO_ACTIVE_LOW)
737 host->wp_inverted = 1;
Shawn Guo6de4d812012-05-06 13:30:44 +0800738 } else {
Shawn Guoe4243f12011-02-21 18:35:28 +0800739 if (pdata->flags & SLOTF_8_BIT_CAPABLE)
740 mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA;
741 if (pdata->flags & SLOTF_4_BIT_CAPABLE)
742 mmc->caps |= MMC_CAP_4_BIT_DATA;
Shawn Guo31b0ff52012-05-06 13:33:40 +0800743 host->wp_gpio = pdata->wp_gpio;
Shawn Guoe4243f12011-02-21 18:35:28 +0800744 }
745
746 mmc->f_min = 400000;
747 mmc->f_max = 288000000;
748 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
749
750 mmc->max_segs = 52;
751 mmc->max_blk_size = 1 << 0xf;
Marek Vasut829c1bf2012-08-03 17:26:09 +0200752 mmc->max_blk_count = (ssp_is_old(ssp)) ? 0xff : 0xffffff;
753 mmc->max_req_size = (ssp_is_old(ssp)) ? 0xffff : 0xffffffff;
Shawn Guoe4243f12011-02-21 18:35:28 +0800754 mmc->max_seg_size = dma_get_max_seg_size(host->dmach->device->dev);
755
756 platform_set_drvdata(pdev, mmc);
757
Shawn Guodf06bfc2012-05-06 11:20:40 +0800758 ret = devm_request_irq(&pdev->dev, irq_err, mxs_mmc_irq_handler, 0,
759 DRIVER_NAME, host);
Shawn Guoe4243f12011-02-21 18:35:28 +0800760 if (ret)
761 goto out_free_dma;
762
763 spin_lock_init(&host->lock);
764
765 ret = mmc_add_host(mmc);
766 if (ret)
Shawn Guodf06bfc2012-05-06 11:20:40 +0800767 goto out_free_dma;
Shawn Guoe4243f12011-02-21 18:35:28 +0800768
769 dev_info(mmc_dev(host->mmc), "initialized\n");
770
771 return 0;
772
Shawn Guoe4243f12011-02-21 18:35:28 +0800773out_free_dma:
774 if (host->dmach)
775 dma_release_channel(host->dmach);
776out_clk_put:
Marek Vasut829c1bf2012-08-03 17:26:09 +0200777 clk_disable_unprepare(ssp->clk);
778 clk_put(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800779out_mmc_free:
780 mmc_free_host(mmc);
Shawn Guoe4243f12011-02-21 18:35:28 +0800781 return ret;
782}
783
784static int mxs_mmc_remove(struct platform_device *pdev)
785{
786 struct mmc_host *mmc = platform_get_drvdata(pdev);
787 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200788 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800789
790 mmc_remove_host(mmc);
791
Shawn Guoe4243f12011-02-21 18:35:28 +0800792 platform_set_drvdata(pdev, NULL);
793
794 if (host->dmach)
795 dma_release_channel(host->dmach);
796
Marek Vasut829c1bf2012-08-03 17:26:09 +0200797 clk_disable_unprepare(ssp->clk);
798 clk_put(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800799
Shawn Guoe4243f12011-02-21 18:35:28 +0800800 mmc_free_host(mmc);
801
Shawn Guoe4243f12011-02-21 18:35:28 +0800802 return 0;
803}
804
805#ifdef CONFIG_PM
806static int mxs_mmc_suspend(struct device *dev)
807{
808 struct mmc_host *mmc = dev_get_drvdata(dev);
809 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200810 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800811 int ret = 0;
812
813 ret = mmc_suspend_host(mmc);
814
Marek Vasut829c1bf2012-08-03 17:26:09 +0200815 clk_disable_unprepare(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800816
817 return ret;
818}
819
820static int mxs_mmc_resume(struct device *dev)
821{
822 struct mmc_host *mmc = dev_get_drvdata(dev);
823 struct mxs_mmc_host *host = mmc_priv(mmc);
Marek Vasut829c1bf2012-08-03 17:26:09 +0200824 struct mxs_ssp *ssp = &host->ssp;
Shawn Guoe4243f12011-02-21 18:35:28 +0800825 int ret = 0;
826
Marek Vasut829c1bf2012-08-03 17:26:09 +0200827 clk_prepare_enable(ssp->clk);
Shawn Guoe4243f12011-02-21 18:35:28 +0800828
829 ret = mmc_resume_host(mmc);
830
831 return ret;
832}
833
834static const struct dev_pm_ops mxs_mmc_pm_ops = {
835 .suspend = mxs_mmc_suspend,
836 .resume = mxs_mmc_resume,
837};
838#endif
839
840static struct platform_driver mxs_mmc_driver = {
841 .probe = mxs_mmc_probe,
842 .remove = mxs_mmc_remove,
Marek Vasut600a9912012-08-03 17:26:07 +0200843 .id_table = mxs_ssp_ids,
Shawn Guoe4243f12011-02-21 18:35:28 +0800844 .driver = {
845 .name = DRIVER_NAME,
846 .owner = THIS_MODULE,
847#ifdef CONFIG_PM
848 .pm = &mxs_mmc_pm_ops,
849#endif
Marek Vasuta3e545e2012-05-21 06:33:27 +0200850 .of_match_table = mxs_mmc_dt_ids,
Shawn Guoe4243f12011-02-21 18:35:28 +0800851 },
852};
853
Axel Lind1f81a62011-11-26 12:55:43 +0800854module_platform_driver(mxs_mmc_driver);
Shawn Guoe4243f12011-02-21 18:35:28 +0800855
856MODULE_DESCRIPTION("FREESCALE MXS MMC peripheral");
857MODULE_AUTHOR("Freescale Semiconductor");
858MODULE_LICENSE("GPL");