Loading...
1/*
2 * linux/drivers/mmc/host/mxcmmc.c - Freescale i.MX MMCI driver
3 *
4 * This is a driver for the SDHC controller found in Freescale MX2/MX3
5 * SoCs. It is basically the same hardware as found on MX1 (imxmmc.c).
6 * Unlike the hardware found on MX1, this hardware just works and does
7 * not need all the quirks found in imxmmc.c, hence the separate driver.
8 *
9 * Copyright (C) 2008 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
10 * Copyright (C) 2006 Pavel Pisa, PiKRON <ppisa@pikron.com>
11 *
12 * derived from pxamci.c by Russell King
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 *
18 */
19
20#include <linux/module.h>
21#include <linux/init.h>
22#include <linux/ioport.h>
23#include <linux/platform_device.h>
24#include <linux/interrupt.h>
25#include <linux/irq.h>
26#include <linux/blkdev.h>
27#include <linux/dma-mapping.h>
28#include <linux/mmc/host.h>
29#include <linux/mmc/card.h>
30#include <linux/delay.h>
31#include <linux/clk.h>
32#include <linux/io.h>
33#include <linux/gpio.h>
34#include <linux/regulator/consumer.h>
35#include <linux/dmaengine.h>
36
37#include <asm/dma.h>
38#include <asm/irq.h>
39#include <asm/sizes.h>
40#include <mach/mmc.h>
41
42#include <mach/dma.h>
43
44#define DRIVER_NAME "mxc-mmc"
45
46#define MMC_REG_STR_STP_CLK 0x00
47#define MMC_REG_STATUS 0x04
48#define MMC_REG_CLK_RATE 0x08
49#define MMC_REG_CMD_DAT_CONT 0x0C
50#define MMC_REG_RES_TO 0x10
51#define MMC_REG_READ_TO 0x14
52#define MMC_REG_BLK_LEN 0x18
53#define MMC_REG_NOB 0x1C
54#define MMC_REG_REV_NO 0x20
55#define MMC_REG_INT_CNTR 0x24
56#define MMC_REG_CMD 0x28
57#define MMC_REG_ARG 0x2C
58#define MMC_REG_RES_FIFO 0x34
59#define MMC_REG_BUFFER_ACCESS 0x38
60
61#define STR_STP_CLK_RESET (1 << 3)
62#define STR_STP_CLK_START_CLK (1 << 1)
63#define STR_STP_CLK_STOP_CLK (1 << 0)
64
65#define STATUS_CARD_INSERTION (1 << 31)
66#define STATUS_CARD_REMOVAL (1 << 30)
67#define STATUS_YBUF_EMPTY (1 << 29)
68#define STATUS_XBUF_EMPTY (1 << 28)
69#define STATUS_YBUF_FULL (1 << 27)
70#define STATUS_XBUF_FULL (1 << 26)
71#define STATUS_BUF_UND_RUN (1 << 25)
72#define STATUS_BUF_OVFL (1 << 24)
73#define STATUS_SDIO_INT_ACTIVE (1 << 14)
74#define STATUS_END_CMD_RESP (1 << 13)
75#define STATUS_WRITE_OP_DONE (1 << 12)
76#define STATUS_DATA_TRANS_DONE (1 << 11)
77#define STATUS_READ_OP_DONE (1 << 11)
78#define STATUS_WR_CRC_ERROR_CODE_MASK (3 << 10)
79#define STATUS_CARD_BUS_CLK_RUN (1 << 8)
80#define STATUS_BUF_READ_RDY (1 << 7)
81#define STATUS_BUF_WRITE_RDY (1 << 6)
82#define STATUS_RESP_CRC_ERR (1 << 5)
83#define STATUS_CRC_READ_ERR (1 << 3)
84#define STATUS_CRC_WRITE_ERR (1 << 2)
85#define STATUS_TIME_OUT_RESP (1 << 1)
86#define STATUS_TIME_OUT_READ (1 << 0)
87#define STATUS_ERR_MASK 0x2f
88
89#define CMD_DAT_CONT_CMD_RESP_LONG_OFF (1 << 12)
90#define CMD_DAT_CONT_STOP_READWAIT (1 << 11)
91#define CMD_DAT_CONT_START_READWAIT (1 << 10)
92#define CMD_DAT_CONT_BUS_WIDTH_4 (2 << 8)
93#define CMD_DAT_CONT_INIT (1 << 7)
94#define CMD_DAT_CONT_WRITE (1 << 4)
95#define CMD_DAT_CONT_DATA_ENABLE (1 << 3)
96#define CMD_DAT_CONT_RESPONSE_48BIT_CRC (1 << 0)
97#define CMD_DAT_CONT_RESPONSE_136BIT (2 << 0)
98#define CMD_DAT_CONT_RESPONSE_48BIT (3 << 0)
99
100#define INT_SDIO_INT_WKP_EN (1 << 18)
101#define INT_CARD_INSERTION_WKP_EN (1 << 17)
102#define INT_CARD_REMOVAL_WKP_EN (1 << 16)
103#define INT_CARD_INSERTION_EN (1 << 15)
104#define INT_CARD_REMOVAL_EN (1 << 14)
105#define INT_SDIO_IRQ_EN (1 << 13)
106#define INT_DAT0_EN (1 << 12)
107#define INT_BUF_READ_EN (1 << 4)
108#define INT_BUF_WRITE_EN (1 << 3)
109#define INT_END_CMD_RES_EN (1 << 2)
110#define INT_WRITE_OP_DONE_EN (1 << 1)
111#define INT_READ_OP_EN (1 << 0)
112
113struct mxcmci_host {
114 struct mmc_host *mmc;
115 struct resource *res;
116 void __iomem *base;
117 int irq;
118 int detect_irq;
119 struct dma_chan *dma;
120 struct dma_async_tx_descriptor *desc;
121 int do_dma;
122 int default_irq_mask;
123 int use_sdio;
124 unsigned int power_mode;
125 struct imxmmc_platform_data *pdata;
126
127 struct mmc_request *req;
128 struct mmc_command *cmd;
129 struct mmc_data *data;
130
131 unsigned int datasize;
132 unsigned int dma_dir;
133
134 u16 rev_no;
135 unsigned int cmdat;
136
137 struct clk *clk;
138
139 int clock;
140
141 struct work_struct datawork;
142 spinlock_t lock;
143
144 struct regulator *vcc;
145
146 int burstlen;
147 int dmareq;
148 struct dma_slave_config dma_slave_config;
149 struct imx_dma_data dma_data;
150};
151
152static void mxcmci_set_clk_rate(struct mxcmci_host *host, unsigned int clk_ios);
153
154static inline void mxcmci_init_ocr(struct mxcmci_host *host)
155{
156 host->vcc = regulator_get(mmc_dev(host->mmc), "vmmc");
157
158 if (IS_ERR(host->vcc)) {
159 host->vcc = NULL;
160 } else {
161 host->mmc->ocr_avail = mmc_regulator_get_ocrmask(host->vcc);
162 if (host->pdata && host->pdata->ocr_avail)
163 dev_warn(mmc_dev(host->mmc),
164 "pdata->ocr_avail will not be used\n");
165 }
166
167 if (host->vcc == NULL) {
168 /* fall-back to platform data */
169 if (host->pdata && host->pdata->ocr_avail)
170 host->mmc->ocr_avail = host->pdata->ocr_avail;
171 else
172 host->mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
173 }
174}
175
176static inline void mxcmci_set_power(struct mxcmci_host *host,
177 unsigned char power_mode,
178 unsigned int vdd)
179{
180 if (host->vcc) {
181 if (power_mode == MMC_POWER_UP)
182 mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
183 else if (power_mode == MMC_POWER_OFF)
184 mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
185 }
186
187 if (host->pdata && host->pdata->setpower)
188 host->pdata->setpower(mmc_dev(host->mmc), vdd);
189}
190
191static inline int mxcmci_use_dma(struct mxcmci_host *host)
192{
193 return host->do_dma;
194}
195
196static void mxcmci_softreset(struct mxcmci_host *host)
197{
198 int i;
199
200 dev_dbg(mmc_dev(host->mmc), "mxcmci_softreset\n");
201
202 /* reset sequence */
203 writew(STR_STP_CLK_RESET, host->base + MMC_REG_STR_STP_CLK);
204 writew(STR_STP_CLK_RESET | STR_STP_CLK_START_CLK,
205 host->base + MMC_REG_STR_STP_CLK);
206
207 for (i = 0; i < 8; i++)
208 writew(STR_STP_CLK_START_CLK, host->base + MMC_REG_STR_STP_CLK);
209
210 writew(0xff, host->base + MMC_REG_RES_TO);
211}
212static int mxcmci_setup_dma(struct mmc_host *mmc);
213
214static int mxcmci_setup_data(struct mxcmci_host *host, struct mmc_data *data)
215{
216 unsigned int nob = data->blocks;
217 unsigned int blksz = data->blksz;
218 unsigned int datasize = nob * blksz;
219 struct scatterlist *sg;
220 int i, nents;
221
222 if (data->flags & MMC_DATA_STREAM)
223 nob = 0xffff;
224
225 host->data = data;
226 data->bytes_xfered = 0;
227
228 writew(nob, host->base + MMC_REG_NOB);
229 writew(blksz, host->base + MMC_REG_BLK_LEN);
230 host->datasize = datasize;
231
232 if (!mxcmci_use_dma(host))
233 return 0;
234
235 for_each_sg(data->sg, sg, data->sg_len, i) {
236 if (sg->offset & 3 || sg->length & 3) {
237 host->do_dma = 0;
238 return 0;
239 }
240 }
241
242 if (data->flags & MMC_DATA_READ)
243 host->dma_dir = DMA_FROM_DEVICE;
244 else
245 host->dma_dir = DMA_TO_DEVICE;
246
247 nents = dma_map_sg(host->dma->device->dev, data->sg,
248 data->sg_len, host->dma_dir);
249 if (nents != data->sg_len)
250 return -EINVAL;
251
252 host->desc = host->dma->device->device_prep_slave_sg(host->dma,
253 data->sg, data->sg_len, host->dma_dir,
254 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
255
256 if (!host->desc) {
257 dma_unmap_sg(host->dma->device->dev, data->sg, data->sg_len,
258 host->dma_dir);
259 host->do_dma = 0;
260 return 0; /* Fall back to PIO */
261 }
262 wmb();
263
264 dmaengine_submit(host->desc);
265
266 return 0;
267}
268
269static int mxcmci_start_cmd(struct mxcmci_host *host, struct mmc_command *cmd,
270 unsigned int cmdat)
271{
272 u32 int_cntr = host->default_irq_mask;
273 unsigned long flags;
274
275 WARN_ON(host->cmd != NULL);
276 host->cmd = cmd;
277
278 switch (mmc_resp_type(cmd)) {
279 case MMC_RSP_R1: /* short CRC, OPCODE */
280 case MMC_RSP_R1B:/* short CRC, OPCODE, BUSY */
281 cmdat |= CMD_DAT_CONT_RESPONSE_48BIT_CRC;
282 break;
283 case MMC_RSP_R2: /* long 136 bit + CRC */
284 cmdat |= CMD_DAT_CONT_RESPONSE_136BIT;
285 break;
286 case MMC_RSP_R3: /* short */
287 cmdat |= CMD_DAT_CONT_RESPONSE_48BIT;
288 break;
289 case MMC_RSP_NONE:
290 break;
291 default:
292 dev_err(mmc_dev(host->mmc), "unhandled response type 0x%x\n",
293 mmc_resp_type(cmd));
294 cmd->error = -EINVAL;
295 return -EINVAL;
296 }
297
298 int_cntr = INT_END_CMD_RES_EN;
299
300 if (mxcmci_use_dma(host))
301 int_cntr |= INT_READ_OP_EN | INT_WRITE_OP_DONE_EN;
302
303 spin_lock_irqsave(&host->lock, flags);
304 if (host->use_sdio)
305 int_cntr |= INT_SDIO_IRQ_EN;
306 writel(int_cntr, host->base + MMC_REG_INT_CNTR);
307 spin_unlock_irqrestore(&host->lock, flags);
308
309 writew(cmd->opcode, host->base + MMC_REG_CMD);
310 writel(cmd->arg, host->base + MMC_REG_ARG);
311 writew(cmdat, host->base + MMC_REG_CMD_DAT_CONT);
312
313 return 0;
314}
315
316static void mxcmci_finish_request(struct mxcmci_host *host,
317 struct mmc_request *req)
318{
319 u32 int_cntr = host->default_irq_mask;
320 unsigned long flags;
321
322 spin_lock_irqsave(&host->lock, flags);
323 if (host->use_sdio)
324 int_cntr |= INT_SDIO_IRQ_EN;
325 writel(int_cntr, host->base + MMC_REG_INT_CNTR);
326 spin_unlock_irqrestore(&host->lock, flags);
327
328 host->req = NULL;
329 host->cmd = NULL;
330 host->data = NULL;
331
332 mmc_request_done(host->mmc, req);
333}
334
335static int mxcmci_finish_data(struct mxcmci_host *host, unsigned int stat)
336{
337 struct mmc_data *data = host->data;
338 int data_error;
339
340 if (mxcmci_use_dma(host)) {
341 dmaengine_terminate_all(host->dma);
342 dma_unmap_sg(host->dma->device->dev, data->sg, data->sg_len,
343 host->dma_dir);
344 }
345
346 if (stat & STATUS_ERR_MASK) {
347 dev_dbg(mmc_dev(host->mmc), "request failed. status: 0x%08x\n",
348 stat);
349 if (stat & STATUS_CRC_READ_ERR) {
350 dev_err(mmc_dev(host->mmc), "%s: -EILSEQ\n", __func__);
351 data->error = -EILSEQ;
352 } else if (stat & STATUS_CRC_WRITE_ERR) {
353 u32 err_code = (stat >> 9) & 0x3;
354 if (err_code == 2) { /* No CRC response */
355 dev_err(mmc_dev(host->mmc),
356 "%s: No CRC -ETIMEDOUT\n", __func__);
357 data->error = -ETIMEDOUT;
358 } else {
359 dev_err(mmc_dev(host->mmc),
360 "%s: -EILSEQ\n", __func__);
361 data->error = -EILSEQ;
362 }
363 } else if (stat & STATUS_TIME_OUT_READ) {
364 dev_err(mmc_dev(host->mmc),
365 "%s: read -ETIMEDOUT\n", __func__);
366 data->error = -ETIMEDOUT;
367 } else {
368 dev_err(mmc_dev(host->mmc), "%s: -EIO\n", __func__);
369 data->error = -EIO;
370 }
371 } else {
372 data->bytes_xfered = host->datasize;
373 }
374
375 data_error = data->error;
376
377 host->data = NULL;
378
379 return data_error;
380}
381
382static void mxcmci_read_response(struct mxcmci_host *host, unsigned int stat)
383{
384 struct mmc_command *cmd = host->cmd;
385 int i;
386 u32 a, b, c;
387
388 if (!cmd)
389 return;
390
391 if (stat & STATUS_TIME_OUT_RESP) {
392 dev_dbg(mmc_dev(host->mmc), "CMD TIMEOUT\n");
393 cmd->error = -ETIMEDOUT;
394 } else if (stat & STATUS_RESP_CRC_ERR && cmd->flags & MMC_RSP_CRC) {
395 dev_dbg(mmc_dev(host->mmc), "cmd crc error\n");
396 cmd->error = -EILSEQ;
397 }
398
399 if (cmd->flags & MMC_RSP_PRESENT) {
400 if (cmd->flags & MMC_RSP_136) {
401 for (i = 0; i < 4; i++) {
402 a = readw(host->base + MMC_REG_RES_FIFO);
403 b = readw(host->base + MMC_REG_RES_FIFO);
404 cmd->resp[i] = a << 16 | b;
405 }
406 } else {
407 a = readw(host->base + MMC_REG_RES_FIFO);
408 b = readw(host->base + MMC_REG_RES_FIFO);
409 c = readw(host->base + MMC_REG_RES_FIFO);
410 cmd->resp[0] = a << 24 | b << 8 | c >> 8;
411 }
412 }
413}
414
415static int mxcmci_poll_status(struct mxcmci_host *host, u32 mask)
416{
417 u32 stat;
418 unsigned long timeout = jiffies + HZ;
419
420 do {
421 stat = readl(host->base + MMC_REG_STATUS);
422 if (stat & STATUS_ERR_MASK)
423 return stat;
424 if (time_after(jiffies, timeout)) {
425 mxcmci_softreset(host);
426 mxcmci_set_clk_rate(host, host->clock);
427 return STATUS_TIME_OUT_READ;
428 }
429 if (stat & mask)
430 return 0;
431 cpu_relax();
432 } while (1);
433}
434
435static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes)
436{
437 unsigned int stat;
438 u32 *buf = _buf;
439
440 while (bytes > 3) {
441 stat = mxcmci_poll_status(host,
442 STATUS_BUF_READ_RDY | STATUS_READ_OP_DONE);
443 if (stat)
444 return stat;
445 *buf++ = readl(host->base + MMC_REG_BUFFER_ACCESS);
446 bytes -= 4;
447 }
448
449 if (bytes) {
450 u8 *b = (u8 *)buf;
451 u32 tmp;
452
453 stat = mxcmci_poll_status(host,
454 STATUS_BUF_READ_RDY | STATUS_READ_OP_DONE);
455 if (stat)
456 return stat;
457 tmp = readl(host->base + MMC_REG_BUFFER_ACCESS);
458 memcpy(b, &tmp, bytes);
459 }
460
461 return 0;
462}
463
464static int mxcmci_push(struct mxcmci_host *host, void *_buf, int bytes)
465{
466 unsigned int stat;
467 u32 *buf = _buf;
468
469 while (bytes > 3) {
470 stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
471 if (stat)
472 return stat;
473 writel(*buf++, host->base + MMC_REG_BUFFER_ACCESS);
474 bytes -= 4;
475 }
476
477 if (bytes) {
478 u8 *b = (u8 *)buf;
479 u32 tmp;
480
481 stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
482 if (stat)
483 return stat;
484
485 memcpy(&tmp, b, bytes);
486 writel(tmp, host->base + MMC_REG_BUFFER_ACCESS);
487 }
488
489 stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
490 if (stat)
491 return stat;
492
493 return 0;
494}
495
496static int mxcmci_transfer_data(struct mxcmci_host *host)
497{
498 struct mmc_data *data = host->req->data;
499 struct scatterlist *sg;
500 int stat, i;
501
502 host->data = data;
503 host->datasize = 0;
504
505 if (data->flags & MMC_DATA_READ) {
506 for_each_sg(data->sg, sg, data->sg_len, i) {
507 stat = mxcmci_pull(host, sg_virt(sg), sg->length);
508 if (stat)
509 return stat;
510 host->datasize += sg->length;
511 }
512 } else {
513 for_each_sg(data->sg, sg, data->sg_len, i) {
514 stat = mxcmci_push(host, sg_virt(sg), sg->length);
515 if (stat)
516 return stat;
517 host->datasize += sg->length;
518 }
519 stat = mxcmci_poll_status(host, STATUS_WRITE_OP_DONE);
520 if (stat)
521 return stat;
522 }
523 return 0;
524}
525
526static void mxcmci_datawork(struct work_struct *work)
527{
528 struct mxcmci_host *host = container_of(work, struct mxcmci_host,
529 datawork);
530 int datastat = mxcmci_transfer_data(host);
531
532 writel(STATUS_READ_OP_DONE | STATUS_WRITE_OP_DONE,
533 host->base + MMC_REG_STATUS);
534 mxcmci_finish_data(host, datastat);
535
536 if (host->req->stop) {
537 if (mxcmci_start_cmd(host, host->req->stop, 0)) {
538 mxcmci_finish_request(host, host->req);
539 return;
540 }
541 } else {
542 mxcmci_finish_request(host, host->req);
543 }
544}
545
546static void mxcmci_data_done(struct mxcmci_host *host, unsigned int stat)
547{
548 struct mmc_data *data = host->data;
549 int data_error;
550
551 if (!data)
552 return;
553
554 data_error = mxcmci_finish_data(host, stat);
555
556 mxcmci_read_response(host, stat);
557 host->cmd = NULL;
558
559 if (host->req->stop) {
560 if (mxcmci_start_cmd(host, host->req->stop, 0)) {
561 mxcmci_finish_request(host, host->req);
562 return;
563 }
564 } else {
565 mxcmci_finish_request(host, host->req);
566 }
567}
568
569static void mxcmci_cmd_done(struct mxcmci_host *host, unsigned int stat)
570{
571 mxcmci_read_response(host, stat);
572 host->cmd = NULL;
573
574 if (!host->data && host->req) {
575 mxcmci_finish_request(host, host->req);
576 return;
577 }
578
579 /* For the DMA case the DMA engine handles the data transfer
580 * automatically. For non DMA we have to do it ourselves.
581 * Don't do it in interrupt context though.
582 */
583 if (!mxcmci_use_dma(host) && host->data)
584 schedule_work(&host->datawork);
585
586}
587
588static irqreturn_t mxcmci_irq(int irq, void *devid)
589{
590 struct mxcmci_host *host = devid;
591 unsigned long flags;
592 bool sdio_irq;
593 u32 stat;
594
595 stat = readl(host->base + MMC_REG_STATUS);
596 writel(stat & ~(STATUS_SDIO_INT_ACTIVE | STATUS_DATA_TRANS_DONE |
597 STATUS_WRITE_OP_DONE), host->base + MMC_REG_STATUS);
598
599 dev_dbg(mmc_dev(host->mmc), "%s: 0x%08x\n", __func__, stat);
600
601 spin_lock_irqsave(&host->lock, flags);
602 sdio_irq = (stat & STATUS_SDIO_INT_ACTIVE) && host->use_sdio;
603 spin_unlock_irqrestore(&host->lock, flags);
604
605 if (mxcmci_use_dma(host) &&
606 (stat & (STATUS_READ_OP_DONE | STATUS_WRITE_OP_DONE)))
607 writel(STATUS_READ_OP_DONE | STATUS_WRITE_OP_DONE,
608 host->base + MMC_REG_STATUS);
609
610 if (sdio_irq) {
611 writel(STATUS_SDIO_INT_ACTIVE, host->base + MMC_REG_STATUS);
612 mmc_signal_sdio_irq(host->mmc);
613 }
614
615 if (stat & STATUS_END_CMD_RESP)
616 mxcmci_cmd_done(host, stat);
617
618 if (mxcmci_use_dma(host) &&
619 (stat & (STATUS_DATA_TRANS_DONE | STATUS_WRITE_OP_DONE)))
620 mxcmci_data_done(host, stat);
621
622 if (host->default_irq_mask &&
623 (stat & (STATUS_CARD_INSERTION | STATUS_CARD_REMOVAL)))
624 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
625
626 return IRQ_HANDLED;
627}
628
629static void mxcmci_request(struct mmc_host *mmc, struct mmc_request *req)
630{
631 struct mxcmci_host *host = mmc_priv(mmc);
632 unsigned int cmdat = host->cmdat;
633 int error;
634
635 WARN_ON(host->req != NULL);
636
637 host->req = req;
638 host->cmdat &= ~CMD_DAT_CONT_INIT;
639
640 if (host->dma)
641 host->do_dma = 1;
642
643 if (req->data) {
644 error = mxcmci_setup_data(host, req->data);
645 if (error) {
646 req->cmd->error = error;
647 goto out;
648 }
649
650
651 cmdat |= CMD_DAT_CONT_DATA_ENABLE;
652
653 if (req->data->flags & MMC_DATA_WRITE)
654 cmdat |= CMD_DAT_CONT_WRITE;
655 }
656
657 error = mxcmci_start_cmd(host, req->cmd, cmdat);
658
659out:
660 if (error)
661 mxcmci_finish_request(host, req);
662}
663
664static void mxcmci_set_clk_rate(struct mxcmci_host *host, unsigned int clk_ios)
665{
666 unsigned int divider;
667 int prescaler = 0;
668 unsigned int clk_in = clk_get_rate(host->clk);
669
670 while (prescaler <= 0x800) {
671 for (divider = 1; divider <= 0xF; divider++) {
672 int x;
673
674 x = (clk_in / (divider + 1));
675
676 if (prescaler)
677 x /= (prescaler * 2);
678
679 if (x <= clk_ios)
680 break;
681 }
682 if (divider < 0x10)
683 break;
684
685 if (prescaler == 0)
686 prescaler = 1;
687 else
688 prescaler <<= 1;
689 }
690
691 writew((prescaler << 4) | divider, host->base + MMC_REG_CLK_RATE);
692
693 dev_dbg(mmc_dev(host->mmc), "scaler: %d divider: %d in: %d out: %d\n",
694 prescaler, divider, clk_in, clk_ios);
695}
696
697static int mxcmci_setup_dma(struct mmc_host *mmc)
698{
699 struct mxcmci_host *host = mmc_priv(mmc);
700 struct dma_slave_config *config = &host->dma_slave_config;
701
702 config->dst_addr = host->res->start + MMC_REG_BUFFER_ACCESS;
703 config->src_addr = host->res->start + MMC_REG_BUFFER_ACCESS;
704 config->dst_addr_width = 4;
705 config->src_addr_width = 4;
706 config->dst_maxburst = host->burstlen;
707 config->src_maxburst = host->burstlen;
708
709 return dmaengine_slave_config(host->dma, config);
710}
711
712static void mxcmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
713{
714 struct mxcmci_host *host = mmc_priv(mmc);
715 int burstlen, ret;
716
717 /*
718 * use burstlen of 64 (16 words) in 4 bit mode (--> reg value 0)
719 * use burstlen of 16 (4 words) in 1 bit mode (--> reg value 16)
720 */
721 if (ios->bus_width == MMC_BUS_WIDTH_4)
722 burstlen = 16;
723 else
724 burstlen = 4;
725
726 if (mxcmci_use_dma(host) && burstlen != host->burstlen) {
727 host->burstlen = burstlen;
728 ret = mxcmci_setup_dma(mmc);
729 if (ret) {
730 dev_err(mmc_dev(host->mmc),
731 "failed to config DMA channel. Falling back to PIO\n");
732 dma_release_channel(host->dma);
733 host->do_dma = 0;
734 }
735 }
736
737 if (ios->bus_width == MMC_BUS_WIDTH_4)
738 host->cmdat |= CMD_DAT_CONT_BUS_WIDTH_4;
739 else
740 host->cmdat &= ~CMD_DAT_CONT_BUS_WIDTH_4;
741
742 if (host->power_mode != ios->power_mode) {
743 mxcmci_set_power(host, ios->power_mode, ios->vdd);
744 host->power_mode = ios->power_mode;
745
746 if (ios->power_mode == MMC_POWER_ON)
747 host->cmdat |= CMD_DAT_CONT_INIT;
748 }
749
750 if (ios->clock) {
751 mxcmci_set_clk_rate(host, ios->clock);
752 writew(STR_STP_CLK_START_CLK, host->base + MMC_REG_STR_STP_CLK);
753 } else {
754 writew(STR_STP_CLK_STOP_CLK, host->base + MMC_REG_STR_STP_CLK);
755 }
756
757 host->clock = ios->clock;
758}
759
760static irqreturn_t mxcmci_detect_irq(int irq, void *data)
761{
762 struct mmc_host *mmc = data;
763
764 dev_dbg(mmc_dev(mmc), "%s\n", __func__);
765
766 mmc_detect_change(mmc, msecs_to_jiffies(250));
767 return IRQ_HANDLED;
768}
769
770static int mxcmci_get_ro(struct mmc_host *mmc)
771{
772 struct mxcmci_host *host = mmc_priv(mmc);
773
774 if (host->pdata && host->pdata->get_ro)
775 return !!host->pdata->get_ro(mmc_dev(mmc));
776 /*
777 * Board doesn't support read only detection; let the mmc core
778 * decide what to do.
779 */
780 return -ENOSYS;
781}
782
783static void mxcmci_enable_sdio_irq(struct mmc_host *mmc, int enable)
784{
785 struct mxcmci_host *host = mmc_priv(mmc);
786 unsigned long flags;
787 u32 int_cntr;
788
789 spin_lock_irqsave(&host->lock, flags);
790 host->use_sdio = enable;
791 int_cntr = readl(host->base + MMC_REG_INT_CNTR);
792
793 if (enable)
794 int_cntr |= INT_SDIO_IRQ_EN;
795 else
796 int_cntr &= ~INT_SDIO_IRQ_EN;
797
798 writel(int_cntr, host->base + MMC_REG_INT_CNTR);
799 spin_unlock_irqrestore(&host->lock, flags);
800}
801
802static void mxcmci_init_card(struct mmc_host *host, struct mmc_card *card)
803{
804 /*
805 * MX3 SoCs have a silicon bug which corrupts CRC calculation of
806 * multi-block transfers when connected SDIO peripheral doesn't
807 * drive the BUSY line as required by the specs.
808 * One way to prevent this is to only allow 1-bit transfers.
809 */
810
811 if (cpu_is_mx3() && card->type == MMC_TYPE_SDIO)
812 host->caps &= ~MMC_CAP_4_BIT_DATA;
813 else
814 host->caps |= MMC_CAP_4_BIT_DATA;
815}
816
817static bool filter(struct dma_chan *chan, void *param)
818{
819 struct mxcmci_host *host = param;
820
821 if (!imx_dma_is_general_purpose(chan))
822 return false;
823
824 chan->private = &host->dma_data;
825
826 return true;
827}
828
829static const struct mmc_host_ops mxcmci_ops = {
830 .request = mxcmci_request,
831 .set_ios = mxcmci_set_ios,
832 .get_ro = mxcmci_get_ro,
833 .enable_sdio_irq = mxcmci_enable_sdio_irq,
834 .init_card = mxcmci_init_card,
835};
836
837static int mxcmci_probe(struct platform_device *pdev)
838{
839 struct mmc_host *mmc;
840 struct mxcmci_host *host = NULL;
841 struct resource *iores, *r;
842 int ret = 0, irq;
843 dma_cap_mask_t mask;
844
845 printk(KERN_INFO "i.MX SDHC driver\n");
846
847 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
848 irq = platform_get_irq(pdev, 0);
849 if (!iores || irq < 0)
850 return -EINVAL;
851
852 r = request_mem_region(iores->start, resource_size(iores), pdev->name);
853 if (!r)
854 return -EBUSY;
855
856 mmc = mmc_alloc_host(sizeof(struct mxcmci_host), &pdev->dev);
857 if (!mmc) {
858 ret = -ENOMEM;
859 goto out_release_mem;
860 }
861
862 mmc->ops = &mxcmci_ops;
863 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
864
865 /* MMC core transfer sizes tunable parameters */
866 mmc->max_segs = 64;
867 mmc->max_blk_size = 2048;
868 mmc->max_blk_count = 65535;
869 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
870 mmc->max_seg_size = mmc->max_req_size;
871
872 host = mmc_priv(mmc);
873 host->base = ioremap(r->start, resource_size(r));
874 if (!host->base) {
875 ret = -ENOMEM;
876 goto out_free;
877 }
878
879 host->mmc = mmc;
880 host->pdata = pdev->dev.platform_data;
881 spin_lock_init(&host->lock);
882
883 mxcmci_init_ocr(host);
884
885 if (host->pdata && host->pdata->dat3_card_detect)
886 host->default_irq_mask =
887 INT_CARD_INSERTION_EN | INT_CARD_REMOVAL_EN;
888 else
889 host->default_irq_mask = 0;
890
891 host->res = r;
892 host->irq = irq;
893
894 host->clk = clk_get(&pdev->dev, NULL);
895 if (IS_ERR(host->clk)) {
896 ret = PTR_ERR(host->clk);
897 goto out_iounmap;
898 }
899 clk_enable(host->clk);
900
901 mxcmci_softreset(host);
902
903 host->rev_no = readw(host->base + MMC_REG_REV_NO);
904 if (host->rev_no != 0x400) {
905 ret = -ENODEV;
906 dev_err(mmc_dev(host->mmc), "wrong rev.no. 0x%08x. aborting.\n",
907 host->rev_no);
908 goto out_clk_put;
909 }
910
911 mmc->f_min = clk_get_rate(host->clk) >> 16;
912 mmc->f_max = clk_get_rate(host->clk) >> 1;
913
914 /* recommended in data sheet */
915 writew(0x2db4, host->base + MMC_REG_READ_TO);
916
917 writel(host->default_irq_mask, host->base + MMC_REG_INT_CNTR);
918
919 r = platform_get_resource(pdev, IORESOURCE_DMA, 0);
920 if (r) {
921 host->dmareq = r->start;
922 host->dma_data.peripheral_type = IMX_DMATYPE_SDHC;
923 host->dma_data.priority = DMA_PRIO_LOW;
924 host->dma_data.dma_request = host->dmareq;
925 dma_cap_zero(mask);
926 dma_cap_set(DMA_SLAVE, mask);
927 host->dma = dma_request_channel(mask, filter, host);
928 if (host->dma)
929 mmc->max_seg_size = dma_get_max_seg_size(
930 host->dma->device->dev);
931 }
932
933 if (!host->dma)
934 dev_info(mmc_dev(host->mmc), "dma not available. Using PIO\n");
935
936 INIT_WORK(&host->datawork, mxcmci_datawork);
937
938 ret = request_irq(host->irq, mxcmci_irq, 0, DRIVER_NAME, host);
939 if (ret)
940 goto out_free_dma;
941
942 platform_set_drvdata(pdev, mmc);
943
944 if (host->pdata && host->pdata->init) {
945 ret = host->pdata->init(&pdev->dev, mxcmci_detect_irq,
946 host->mmc);
947 if (ret)
948 goto out_free_irq;
949 }
950
951 mmc_add_host(mmc);
952
953 return 0;
954
955out_free_irq:
956 free_irq(host->irq, host);
957out_free_dma:
958 if (host->dma)
959 dma_release_channel(host->dma);
960out_clk_put:
961 clk_disable(host->clk);
962 clk_put(host->clk);
963out_iounmap:
964 iounmap(host->base);
965out_free:
966 mmc_free_host(mmc);
967out_release_mem:
968 release_mem_region(iores->start, resource_size(iores));
969 return ret;
970}
971
972static int mxcmci_remove(struct platform_device *pdev)
973{
974 struct mmc_host *mmc = platform_get_drvdata(pdev);
975 struct mxcmci_host *host = mmc_priv(mmc);
976
977 platform_set_drvdata(pdev, NULL);
978
979 mmc_remove_host(mmc);
980
981 if (host->vcc)
982 regulator_put(host->vcc);
983
984 if (host->pdata && host->pdata->exit)
985 host->pdata->exit(&pdev->dev, mmc);
986
987 free_irq(host->irq, host);
988 iounmap(host->base);
989
990 if (host->dma)
991 dma_release_channel(host->dma);
992
993 clk_disable(host->clk);
994 clk_put(host->clk);
995
996 release_mem_region(host->res->start, resource_size(host->res));
997
998 mmc_free_host(mmc);
999
1000 return 0;
1001}
1002
1003#ifdef CONFIG_PM
1004static int mxcmci_suspend(struct device *dev)
1005{
1006 struct mmc_host *mmc = dev_get_drvdata(dev);
1007 struct mxcmci_host *host = mmc_priv(mmc);
1008 int ret = 0;
1009
1010 if (mmc)
1011 ret = mmc_suspend_host(mmc);
1012 clk_disable(host->clk);
1013
1014 return ret;
1015}
1016
1017static int mxcmci_resume(struct device *dev)
1018{
1019 struct mmc_host *mmc = dev_get_drvdata(dev);
1020 struct mxcmci_host *host = mmc_priv(mmc);
1021 int ret = 0;
1022
1023 clk_enable(host->clk);
1024 if (mmc)
1025 ret = mmc_resume_host(mmc);
1026
1027 return ret;
1028}
1029
1030static const struct dev_pm_ops mxcmci_pm_ops = {
1031 .suspend = mxcmci_suspend,
1032 .resume = mxcmci_resume,
1033};
1034#endif
1035
1036static struct platform_driver mxcmci_driver = {
1037 .probe = mxcmci_probe,
1038 .remove = mxcmci_remove,
1039 .driver = {
1040 .name = DRIVER_NAME,
1041 .owner = THIS_MODULE,
1042#ifdef CONFIG_PM
1043 .pm = &mxcmci_pm_ops,
1044#endif
1045 }
1046};
1047
1048static int __init mxcmci_init(void)
1049{
1050 return platform_driver_register(&mxcmci_driver);
1051}
1052
1053static void __exit mxcmci_exit(void)
1054{
1055 platform_driver_unregister(&mxcmci_driver);
1056}
1057
1058module_init(mxcmci_init);
1059module_exit(mxcmci_exit);
1060
1061MODULE_DESCRIPTION("i.MX Multimedia Card Interface Driver");
1062MODULE_AUTHOR("Sascha Hauer, Pengutronix");
1063MODULE_LICENSE("GPL");
1064MODULE_ALIAS("platform:imx-mmc");
1/*
2 * linux/drivers/mmc/host/mxcmmc.c - Freescale i.MX MMCI driver
3 *
4 * This is a driver for the SDHC controller found in Freescale MX2/MX3
5 * SoCs. It is basically the same hardware as found on MX1 (imxmmc.c).
6 * Unlike the hardware found on MX1, this hardware just works and does
7 * not need all the quirks found in imxmmc.c, hence the separate driver.
8 *
9 * Copyright (C) 2008 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
10 * Copyright (C) 2006 Pavel Pisa, PiKRON <ppisa@pikron.com>
11 *
12 * derived from pxamci.c by Russell King
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 *
18 */
19
20#include <linux/module.h>
21#include <linux/init.h>
22#include <linux/ioport.h>
23#include <linux/platform_device.h>
24#include <linux/interrupt.h>
25#include <linux/irq.h>
26#include <linux/blkdev.h>
27#include <linux/dma-mapping.h>
28#include <linux/mmc/host.h>
29#include <linux/mmc/card.h>
30#include <linux/delay.h>
31#include <linux/clk.h>
32#include <linux/io.h>
33#include <linux/gpio.h>
34#include <linux/regulator/consumer.h>
35#include <linux/dmaengine.h>
36#include <linux/types.h>
37#include <linux/of.h>
38#include <linux/of_device.h>
39#include <linux/of_dma.h>
40#include <linux/of_gpio.h>
41#include <linux/mmc/slot-gpio.h>
42
43#include <asm/dma.h>
44#include <asm/irq.h>
45#include <linux/platform_data/mmc-mxcmmc.h>
46
47#include <linux/platform_data/dma-imx.h>
48
49#define DRIVER_NAME "mxc-mmc"
50#define MXCMCI_TIMEOUT_MS 10000
51
52#define MMC_REG_STR_STP_CLK 0x00
53#define MMC_REG_STATUS 0x04
54#define MMC_REG_CLK_RATE 0x08
55#define MMC_REG_CMD_DAT_CONT 0x0C
56#define MMC_REG_RES_TO 0x10
57#define MMC_REG_READ_TO 0x14
58#define MMC_REG_BLK_LEN 0x18
59#define MMC_REG_NOB 0x1C
60#define MMC_REG_REV_NO 0x20
61#define MMC_REG_INT_CNTR 0x24
62#define MMC_REG_CMD 0x28
63#define MMC_REG_ARG 0x2C
64#define MMC_REG_RES_FIFO 0x34
65#define MMC_REG_BUFFER_ACCESS 0x38
66
67#define STR_STP_CLK_RESET (1 << 3)
68#define STR_STP_CLK_START_CLK (1 << 1)
69#define STR_STP_CLK_STOP_CLK (1 << 0)
70
71#define STATUS_CARD_INSERTION (1 << 31)
72#define STATUS_CARD_REMOVAL (1 << 30)
73#define STATUS_YBUF_EMPTY (1 << 29)
74#define STATUS_XBUF_EMPTY (1 << 28)
75#define STATUS_YBUF_FULL (1 << 27)
76#define STATUS_XBUF_FULL (1 << 26)
77#define STATUS_BUF_UND_RUN (1 << 25)
78#define STATUS_BUF_OVFL (1 << 24)
79#define STATUS_SDIO_INT_ACTIVE (1 << 14)
80#define STATUS_END_CMD_RESP (1 << 13)
81#define STATUS_WRITE_OP_DONE (1 << 12)
82#define STATUS_DATA_TRANS_DONE (1 << 11)
83#define STATUS_READ_OP_DONE (1 << 11)
84#define STATUS_WR_CRC_ERROR_CODE_MASK (3 << 10)
85#define STATUS_CARD_BUS_CLK_RUN (1 << 8)
86#define STATUS_BUF_READ_RDY (1 << 7)
87#define STATUS_BUF_WRITE_RDY (1 << 6)
88#define STATUS_RESP_CRC_ERR (1 << 5)
89#define STATUS_CRC_READ_ERR (1 << 3)
90#define STATUS_CRC_WRITE_ERR (1 << 2)
91#define STATUS_TIME_OUT_RESP (1 << 1)
92#define STATUS_TIME_OUT_READ (1 << 0)
93#define STATUS_ERR_MASK 0x2f
94
95#define CMD_DAT_CONT_CMD_RESP_LONG_OFF (1 << 12)
96#define CMD_DAT_CONT_STOP_READWAIT (1 << 11)
97#define CMD_DAT_CONT_START_READWAIT (1 << 10)
98#define CMD_DAT_CONT_BUS_WIDTH_4 (2 << 8)
99#define CMD_DAT_CONT_INIT (1 << 7)
100#define CMD_DAT_CONT_WRITE (1 << 4)
101#define CMD_DAT_CONT_DATA_ENABLE (1 << 3)
102#define CMD_DAT_CONT_RESPONSE_48BIT_CRC (1 << 0)
103#define CMD_DAT_CONT_RESPONSE_136BIT (2 << 0)
104#define CMD_DAT_CONT_RESPONSE_48BIT (3 << 0)
105
106#define INT_SDIO_INT_WKP_EN (1 << 18)
107#define INT_CARD_INSERTION_WKP_EN (1 << 17)
108#define INT_CARD_REMOVAL_WKP_EN (1 << 16)
109#define INT_CARD_INSERTION_EN (1 << 15)
110#define INT_CARD_REMOVAL_EN (1 << 14)
111#define INT_SDIO_IRQ_EN (1 << 13)
112#define INT_DAT0_EN (1 << 12)
113#define INT_BUF_READ_EN (1 << 4)
114#define INT_BUF_WRITE_EN (1 << 3)
115#define INT_END_CMD_RES_EN (1 << 2)
116#define INT_WRITE_OP_DONE_EN (1 << 1)
117#define INT_READ_OP_EN (1 << 0)
118
119enum mxcmci_type {
120 IMX21_MMC,
121 IMX31_MMC,
122 MPC512X_MMC,
123};
124
125struct mxcmci_host {
126 struct mmc_host *mmc;
127 void __iomem *base;
128 dma_addr_t phys_base;
129 int detect_irq;
130 struct dma_chan *dma;
131 struct dma_async_tx_descriptor *desc;
132 int do_dma;
133 int default_irq_mask;
134 int use_sdio;
135 unsigned int power_mode;
136 struct imxmmc_platform_data *pdata;
137
138 struct mmc_request *req;
139 struct mmc_command *cmd;
140 struct mmc_data *data;
141
142 unsigned int datasize;
143 unsigned int dma_dir;
144
145 u16 rev_no;
146 unsigned int cmdat;
147
148 struct clk *clk_ipg;
149 struct clk *clk_per;
150
151 int clock;
152
153 struct work_struct datawork;
154 spinlock_t lock;
155
156 int burstlen;
157 int dmareq;
158 struct dma_slave_config dma_slave_config;
159 struct imx_dma_data dma_data;
160
161 struct timer_list watchdog;
162 enum mxcmci_type devtype;
163};
164
165static const struct platform_device_id mxcmci_devtype[] = {
166 {
167 .name = "imx21-mmc",
168 .driver_data = IMX21_MMC,
169 }, {
170 .name = "imx31-mmc",
171 .driver_data = IMX31_MMC,
172 }, {
173 .name = "mpc512x-sdhc",
174 .driver_data = MPC512X_MMC,
175 }, {
176 /* sentinel */
177 }
178};
179MODULE_DEVICE_TABLE(platform, mxcmci_devtype);
180
181static const struct of_device_id mxcmci_of_match[] = {
182 {
183 .compatible = "fsl,imx21-mmc",
184 .data = &mxcmci_devtype[IMX21_MMC],
185 }, {
186 .compatible = "fsl,imx31-mmc",
187 .data = &mxcmci_devtype[IMX31_MMC],
188 }, {
189 .compatible = "fsl,mpc5121-sdhc",
190 .data = &mxcmci_devtype[MPC512X_MMC],
191 }, {
192 /* sentinel */
193 }
194};
195MODULE_DEVICE_TABLE(of, mxcmci_of_match);
196
197static inline int is_imx31_mmc(struct mxcmci_host *host)
198{
199 return host->devtype == IMX31_MMC;
200}
201
202static inline int is_mpc512x_mmc(struct mxcmci_host *host)
203{
204 return host->devtype == MPC512X_MMC;
205}
206
207static inline u32 mxcmci_readl(struct mxcmci_host *host, int reg)
208{
209 if (IS_ENABLED(CONFIG_PPC_MPC512x))
210 return ioread32be(host->base + reg);
211 else
212 return readl(host->base + reg);
213}
214
215static inline void mxcmci_writel(struct mxcmci_host *host, u32 val, int reg)
216{
217 if (IS_ENABLED(CONFIG_PPC_MPC512x))
218 iowrite32be(val, host->base + reg);
219 else
220 writel(val, host->base + reg);
221}
222
223static inline u16 mxcmci_readw(struct mxcmci_host *host, int reg)
224{
225 if (IS_ENABLED(CONFIG_PPC_MPC512x))
226 return ioread32be(host->base + reg);
227 else
228 return readw(host->base + reg);
229}
230
231static inline void mxcmci_writew(struct mxcmci_host *host, u16 val, int reg)
232{
233 if (IS_ENABLED(CONFIG_PPC_MPC512x))
234 iowrite32be(val, host->base + reg);
235 else
236 writew(val, host->base + reg);
237}
238
239static void mxcmci_set_clk_rate(struct mxcmci_host *host, unsigned int clk_ios);
240
241static void mxcmci_set_power(struct mxcmci_host *host, unsigned int vdd)
242{
243 if (!IS_ERR(host->mmc->supply.vmmc)) {
244 if (host->power_mode == MMC_POWER_UP)
245 mmc_regulator_set_ocr(host->mmc,
246 host->mmc->supply.vmmc, vdd);
247 else if (host->power_mode == MMC_POWER_OFF)
248 mmc_regulator_set_ocr(host->mmc,
249 host->mmc->supply.vmmc, 0);
250 }
251
252 if (host->pdata && host->pdata->setpower)
253 host->pdata->setpower(mmc_dev(host->mmc), vdd);
254}
255
256static inline int mxcmci_use_dma(struct mxcmci_host *host)
257{
258 return host->do_dma;
259}
260
261static void mxcmci_softreset(struct mxcmci_host *host)
262{
263 int i;
264
265 dev_dbg(mmc_dev(host->mmc), "mxcmci_softreset\n");
266
267 /* reset sequence */
268 mxcmci_writew(host, STR_STP_CLK_RESET, MMC_REG_STR_STP_CLK);
269 mxcmci_writew(host, STR_STP_CLK_RESET | STR_STP_CLK_START_CLK,
270 MMC_REG_STR_STP_CLK);
271
272 for (i = 0; i < 8; i++)
273 mxcmci_writew(host, STR_STP_CLK_START_CLK, MMC_REG_STR_STP_CLK);
274
275 mxcmci_writew(host, 0xff, MMC_REG_RES_TO);
276}
277
278#if IS_ENABLED(CONFIG_PPC_MPC512x)
279static inline void buffer_swap32(u32 *buf, int len)
280{
281 int i;
282
283 for (i = 0; i < ((len + 3) / 4); i++) {
284 *buf = swab32(*buf);
285 buf++;
286 }
287}
288
289static void mxcmci_swap_buffers(struct mmc_data *data)
290{
291 struct scatterlist *sg;
292 int i;
293
294 for_each_sg(data->sg, sg, data->sg_len, i)
295 buffer_swap32(sg_virt(sg), sg->length);
296}
297#else
298static inline void mxcmci_swap_buffers(struct mmc_data *data) {}
299#endif
300
301static int mxcmci_setup_data(struct mxcmci_host *host, struct mmc_data *data)
302{
303 unsigned int nob = data->blocks;
304 unsigned int blksz = data->blksz;
305 unsigned int datasize = nob * blksz;
306 struct scatterlist *sg;
307 enum dma_transfer_direction slave_dirn;
308 int i, nents;
309
310 host->data = data;
311 data->bytes_xfered = 0;
312
313 mxcmci_writew(host, nob, MMC_REG_NOB);
314 mxcmci_writew(host, blksz, MMC_REG_BLK_LEN);
315 host->datasize = datasize;
316
317 if (!mxcmci_use_dma(host))
318 return 0;
319
320 for_each_sg(data->sg, sg, data->sg_len, i) {
321 if (sg->offset & 3 || sg->length & 3 || sg->length < 512) {
322 host->do_dma = 0;
323 return 0;
324 }
325 }
326
327 if (data->flags & MMC_DATA_READ) {
328 host->dma_dir = DMA_FROM_DEVICE;
329 slave_dirn = DMA_DEV_TO_MEM;
330 } else {
331 host->dma_dir = DMA_TO_DEVICE;
332 slave_dirn = DMA_MEM_TO_DEV;
333
334 mxcmci_swap_buffers(data);
335 }
336
337 nents = dma_map_sg(host->dma->device->dev, data->sg,
338 data->sg_len, host->dma_dir);
339 if (nents != data->sg_len)
340 return -EINVAL;
341
342 host->desc = dmaengine_prep_slave_sg(host->dma,
343 data->sg, data->sg_len, slave_dirn,
344 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
345
346 if (!host->desc) {
347 dma_unmap_sg(host->dma->device->dev, data->sg, data->sg_len,
348 host->dma_dir);
349 host->do_dma = 0;
350 return 0; /* Fall back to PIO */
351 }
352 wmb();
353
354 dmaengine_submit(host->desc);
355 dma_async_issue_pending(host->dma);
356
357 mod_timer(&host->watchdog, jiffies + msecs_to_jiffies(MXCMCI_TIMEOUT_MS));
358
359 return 0;
360}
361
362static void mxcmci_cmd_done(struct mxcmci_host *host, unsigned int stat);
363static void mxcmci_data_done(struct mxcmci_host *host, unsigned int stat);
364
365static void mxcmci_dma_callback(void *data)
366{
367 struct mxcmci_host *host = data;
368 u32 stat;
369
370 del_timer(&host->watchdog);
371
372 stat = mxcmci_readl(host, MMC_REG_STATUS);
373
374 dev_dbg(mmc_dev(host->mmc), "%s: 0x%08x\n", __func__, stat);
375
376 mxcmci_data_done(host, stat);
377}
378
379static int mxcmci_start_cmd(struct mxcmci_host *host, struct mmc_command *cmd,
380 unsigned int cmdat)
381{
382 u32 int_cntr = host->default_irq_mask;
383 unsigned long flags;
384
385 WARN_ON(host->cmd != NULL);
386 host->cmd = cmd;
387
388 switch (mmc_resp_type(cmd)) {
389 case MMC_RSP_R1: /* short CRC, OPCODE */
390 case MMC_RSP_R1B:/* short CRC, OPCODE, BUSY */
391 cmdat |= CMD_DAT_CONT_RESPONSE_48BIT_CRC;
392 break;
393 case MMC_RSP_R2: /* long 136 bit + CRC */
394 cmdat |= CMD_DAT_CONT_RESPONSE_136BIT;
395 break;
396 case MMC_RSP_R3: /* short */
397 cmdat |= CMD_DAT_CONT_RESPONSE_48BIT;
398 break;
399 case MMC_RSP_NONE:
400 break;
401 default:
402 dev_err(mmc_dev(host->mmc), "unhandled response type 0x%x\n",
403 mmc_resp_type(cmd));
404 cmd->error = -EINVAL;
405 return -EINVAL;
406 }
407
408 int_cntr = INT_END_CMD_RES_EN;
409
410 if (mxcmci_use_dma(host)) {
411 if (host->dma_dir == DMA_FROM_DEVICE) {
412 host->desc->callback = mxcmci_dma_callback;
413 host->desc->callback_param = host;
414 } else {
415 int_cntr |= INT_WRITE_OP_DONE_EN;
416 }
417 }
418
419 spin_lock_irqsave(&host->lock, flags);
420 if (host->use_sdio)
421 int_cntr |= INT_SDIO_IRQ_EN;
422 mxcmci_writel(host, int_cntr, MMC_REG_INT_CNTR);
423 spin_unlock_irqrestore(&host->lock, flags);
424
425 mxcmci_writew(host, cmd->opcode, MMC_REG_CMD);
426 mxcmci_writel(host, cmd->arg, MMC_REG_ARG);
427 mxcmci_writew(host, cmdat, MMC_REG_CMD_DAT_CONT);
428
429 return 0;
430}
431
432static void mxcmci_finish_request(struct mxcmci_host *host,
433 struct mmc_request *req)
434{
435 u32 int_cntr = host->default_irq_mask;
436 unsigned long flags;
437
438 spin_lock_irqsave(&host->lock, flags);
439 if (host->use_sdio)
440 int_cntr |= INT_SDIO_IRQ_EN;
441 mxcmci_writel(host, int_cntr, MMC_REG_INT_CNTR);
442 spin_unlock_irqrestore(&host->lock, flags);
443
444 host->req = NULL;
445 host->cmd = NULL;
446 host->data = NULL;
447
448 mmc_request_done(host->mmc, req);
449}
450
451static int mxcmci_finish_data(struct mxcmci_host *host, unsigned int stat)
452{
453 struct mmc_data *data = host->data;
454 int data_error;
455
456 if (mxcmci_use_dma(host)) {
457 dma_unmap_sg(host->dma->device->dev, data->sg, data->sg_len,
458 host->dma_dir);
459 mxcmci_swap_buffers(data);
460 }
461
462 if (stat & STATUS_ERR_MASK) {
463 dev_dbg(mmc_dev(host->mmc), "request failed. status: 0x%08x\n",
464 stat);
465 if (stat & STATUS_CRC_READ_ERR) {
466 dev_err(mmc_dev(host->mmc), "%s: -EILSEQ\n", __func__);
467 data->error = -EILSEQ;
468 } else if (stat & STATUS_CRC_WRITE_ERR) {
469 u32 err_code = (stat >> 9) & 0x3;
470 if (err_code == 2) { /* No CRC response */
471 dev_err(mmc_dev(host->mmc),
472 "%s: No CRC -ETIMEDOUT\n", __func__);
473 data->error = -ETIMEDOUT;
474 } else {
475 dev_err(mmc_dev(host->mmc),
476 "%s: -EILSEQ\n", __func__);
477 data->error = -EILSEQ;
478 }
479 } else if (stat & STATUS_TIME_OUT_READ) {
480 dev_err(mmc_dev(host->mmc),
481 "%s: read -ETIMEDOUT\n", __func__);
482 data->error = -ETIMEDOUT;
483 } else {
484 dev_err(mmc_dev(host->mmc), "%s: -EIO\n", __func__);
485 data->error = -EIO;
486 }
487 } else {
488 data->bytes_xfered = host->datasize;
489 }
490
491 data_error = data->error;
492
493 host->data = NULL;
494
495 return data_error;
496}
497
498static void mxcmci_read_response(struct mxcmci_host *host, unsigned int stat)
499{
500 struct mmc_command *cmd = host->cmd;
501 int i;
502 u32 a, b, c;
503
504 if (!cmd)
505 return;
506
507 if (stat & STATUS_TIME_OUT_RESP) {
508 dev_dbg(mmc_dev(host->mmc), "CMD TIMEOUT\n");
509 cmd->error = -ETIMEDOUT;
510 } else if (stat & STATUS_RESP_CRC_ERR && cmd->flags & MMC_RSP_CRC) {
511 dev_dbg(mmc_dev(host->mmc), "cmd crc error\n");
512 cmd->error = -EILSEQ;
513 }
514
515 if (cmd->flags & MMC_RSP_PRESENT) {
516 if (cmd->flags & MMC_RSP_136) {
517 for (i = 0; i < 4; i++) {
518 a = mxcmci_readw(host, MMC_REG_RES_FIFO);
519 b = mxcmci_readw(host, MMC_REG_RES_FIFO);
520 cmd->resp[i] = a << 16 | b;
521 }
522 } else {
523 a = mxcmci_readw(host, MMC_REG_RES_FIFO);
524 b = mxcmci_readw(host, MMC_REG_RES_FIFO);
525 c = mxcmci_readw(host, MMC_REG_RES_FIFO);
526 cmd->resp[0] = a << 24 | b << 8 | c >> 8;
527 }
528 }
529}
530
531static int mxcmci_poll_status(struct mxcmci_host *host, u32 mask)
532{
533 u32 stat;
534 unsigned long timeout = jiffies + HZ;
535
536 do {
537 stat = mxcmci_readl(host, MMC_REG_STATUS);
538 if (stat & STATUS_ERR_MASK)
539 return stat;
540 if (time_after(jiffies, timeout)) {
541 mxcmci_softreset(host);
542 mxcmci_set_clk_rate(host, host->clock);
543 return STATUS_TIME_OUT_READ;
544 }
545 if (stat & mask)
546 return 0;
547 cpu_relax();
548 } while (1);
549}
550
551static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes)
552{
553 unsigned int stat;
554 u32 *buf = _buf;
555
556 while (bytes > 3) {
557 stat = mxcmci_poll_status(host,
558 STATUS_BUF_READ_RDY | STATUS_READ_OP_DONE);
559 if (stat)
560 return stat;
561 *buf++ = cpu_to_le32(mxcmci_readl(host, MMC_REG_BUFFER_ACCESS));
562 bytes -= 4;
563 }
564
565 if (bytes) {
566 u8 *b = (u8 *)buf;
567 u32 tmp;
568
569 stat = mxcmci_poll_status(host,
570 STATUS_BUF_READ_RDY | STATUS_READ_OP_DONE);
571 if (stat)
572 return stat;
573 tmp = cpu_to_le32(mxcmci_readl(host, MMC_REG_BUFFER_ACCESS));
574 memcpy(b, &tmp, bytes);
575 }
576
577 return 0;
578}
579
580static int mxcmci_push(struct mxcmci_host *host, void *_buf, int bytes)
581{
582 unsigned int stat;
583 u32 *buf = _buf;
584
585 while (bytes > 3) {
586 stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
587 if (stat)
588 return stat;
589 mxcmci_writel(host, cpu_to_le32(*buf++), MMC_REG_BUFFER_ACCESS);
590 bytes -= 4;
591 }
592
593 if (bytes) {
594 u8 *b = (u8 *)buf;
595 u32 tmp;
596
597 stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
598 if (stat)
599 return stat;
600
601 memcpy(&tmp, b, bytes);
602 mxcmci_writel(host, cpu_to_le32(tmp), MMC_REG_BUFFER_ACCESS);
603 }
604
605 return mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
606}
607
608static int mxcmci_transfer_data(struct mxcmci_host *host)
609{
610 struct mmc_data *data = host->req->data;
611 struct scatterlist *sg;
612 int stat, i;
613
614 host->data = data;
615 host->datasize = 0;
616
617 if (data->flags & MMC_DATA_READ) {
618 for_each_sg(data->sg, sg, data->sg_len, i) {
619 stat = mxcmci_pull(host, sg_virt(sg), sg->length);
620 if (stat)
621 return stat;
622 host->datasize += sg->length;
623 }
624 } else {
625 for_each_sg(data->sg, sg, data->sg_len, i) {
626 stat = mxcmci_push(host, sg_virt(sg), sg->length);
627 if (stat)
628 return stat;
629 host->datasize += sg->length;
630 }
631 stat = mxcmci_poll_status(host, STATUS_WRITE_OP_DONE);
632 if (stat)
633 return stat;
634 }
635 return 0;
636}
637
638static void mxcmci_datawork(struct work_struct *work)
639{
640 struct mxcmci_host *host = container_of(work, struct mxcmci_host,
641 datawork);
642 int datastat = mxcmci_transfer_data(host);
643
644 mxcmci_writel(host, STATUS_READ_OP_DONE | STATUS_WRITE_OP_DONE,
645 MMC_REG_STATUS);
646 mxcmci_finish_data(host, datastat);
647
648 if (host->req->stop) {
649 if (mxcmci_start_cmd(host, host->req->stop, 0)) {
650 mxcmci_finish_request(host, host->req);
651 return;
652 }
653 } else {
654 mxcmci_finish_request(host, host->req);
655 }
656}
657
658static void mxcmci_data_done(struct mxcmci_host *host, unsigned int stat)
659{
660 struct mmc_request *req;
661 int data_error;
662 unsigned long flags;
663
664 spin_lock_irqsave(&host->lock, flags);
665
666 if (!host->data) {
667 spin_unlock_irqrestore(&host->lock, flags);
668 return;
669 }
670
671 if (!host->req) {
672 spin_unlock_irqrestore(&host->lock, flags);
673 return;
674 }
675
676 req = host->req;
677 if (!req->stop)
678 host->req = NULL; /* we will handle finish req below */
679
680 data_error = mxcmci_finish_data(host, stat);
681
682 spin_unlock_irqrestore(&host->lock, flags);
683
684 if (data_error)
685 return;
686
687 mxcmci_read_response(host, stat);
688 host->cmd = NULL;
689
690 if (req->stop) {
691 if (mxcmci_start_cmd(host, req->stop, 0)) {
692 mxcmci_finish_request(host, req);
693 return;
694 }
695 } else {
696 mxcmci_finish_request(host, req);
697 }
698}
699
700static void mxcmci_cmd_done(struct mxcmci_host *host, unsigned int stat)
701{
702 mxcmci_read_response(host, stat);
703 host->cmd = NULL;
704
705 if (!host->data && host->req) {
706 mxcmci_finish_request(host, host->req);
707 return;
708 }
709
710 /* For the DMA case the DMA engine handles the data transfer
711 * automatically. For non DMA we have to do it ourselves.
712 * Don't do it in interrupt context though.
713 */
714 if (!mxcmci_use_dma(host) && host->data)
715 schedule_work(&host->datawork);
716
717}
718
719static irqreturn_t mxcmci_irq(int irq, void *devid)
720{
721 struct mxcmci_host *host = devid;
722 unsigned long flags;
723 bool sdio_irq;
724 u32 stat;
725
726 stat = mxcmci_readl(host, MMC_REG_STATUS);
727 mxcmci_writel(host,
728 stat & ~(STATUS_SDIO_INT_ACTIVE | STATUS_DATA_TRANS_DONE |
729 STATUS_WRITE_OP_DONE),
730 MMC_REG_STATUS);
731
732 dev_dbg(mmc_dev(host->mmc), "%s: 0x%08x\n", __func__, stat);
733
734 spin_lock_irqsave(&host->lock, flags);
735 sdio_irq = (stat & STATUS_SDIO_INT_ACTIVE) && host->use_sdio;
736 spin_unlock_irqrestore(&host->lock, flags);
737
738 if (mxcmci_use_dma(host) && (stat & (STATUS_WRITE_OP_DONE)))
739 mxcmci_writel(host, STATUS_WRITE_OP_DONE, MMC_REG_STATUS);
740
741 if (sdio_irq) {
742 mxcmci_writel(host, STATUS_SDIO_INT_ACTIVE, MMC_REG_STATUS);
743 mmc_signal_sdio_irq(host->mmc);
744 }
745
746 if (stat & STATUS_END_CMD_RESP)
747 mxcmci_cmd_done(host, stat);
748
749 if (mxcmci_use_dma(host) && (stat & STATUS_WRITE_OP_DONE)) {
750 del_timer(&host->watchdog);
751 mxcmci_data_done(host, stat);
752 }
753
754 if (host->default_irq_mask &&
755 (stat & (STATUS_CARD_INSERTION | STATUS_CARD_REMOVAL)))
756 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
757
758 return IRQ_HANDLED;
759}
760
761static void mxcmci_request(struct mmc_host *mmc, struct mmc_request *req)
762{
763 struct mxcmci_host *host = mmc_priv(mmc);
764 unsigned int cmdat = host->cmdat;
765 int error;
766
767 WARN_ON(host->req != NULL);
768
769 host->req = req;
770 host->cmdat &= ~CMD_DAT_CONT_INIT;
771
772 if (host->dma)
773 host->do_dma = 1;
774
775 if (req->data) {
776 error = mxcmci_setup_data(host, req->data);
777 if (error) {
778 req->cmd->error = error;
779 goto out;
780 }
781
782
783 cmdat |= CMD_DAT_CONT_DATA_ENABLE;
784
785 if (req->data->flags & MMC_DATA_WRITE)
786 cmdat |= CMD_DAT_CONT_WRITE;
787 }
788
789 error = mxcmci_start_cmd(host, req->cmd, cmdat);
790
791out:
792 if (error)
793 mxcmci_finish_request(host, req);
794}
795
796static void mxcmci_set_clk_rate(struct mxcmci_host *host, unsigned int clk_ios)
797{
798 unsigned int divider;
799 int prescaler = 0;
800 unsigned int clk_in = clk_get_rate(host->clk_per);
801
802 while (prescaler <= 0x800) {
803 for (divider = 1; divider <= 0xF; divider++) {
804 int x;
805
806 x = (clk_in / (divider + 1));
807
808 if (prescaler)
809 x /= (prescaler * 2);
810
811 if (x <= clk_ios)
812 break;
813 }
814 if (divider < 0x10)
815 break;
816
817 if (prescaler == 0)
818 prescaler = 1;
819 else
820 prescaler <<= 1;
821 }
822
823 mxcmci_writew(host, (prescaler << 4) | divider, MMC_REG_CLK_RATE);
824
825 dev_dbg(mmc_dev(host->mmc), "scaler: %d divider: %d in: %d out: %d\n",
826 prescaler, divider, clk_in, clk_ios);
827}
828
829static int mxcmci_setup_dma(struct mmc_host *mmc)
830{
831 struct mxcmci_host *host = mmc_priv(mmc);
832 struct dma_slave_config *config = &host->dma_slave_config;
833
834 config->dst_addr = host->phys_base + MMC_REG_BUFFER_ACCESS;
835 config->src_addr = host->phys_base + MMC_REG_BUFFER_ACCESS;
836 config->dst_addr_width = 4;
837 config->src_addr_width = 4;
838 config->dst_maxburst = host->burstlen;
839 config->src_maxburst = host->burstlen;
840 config->device_fc = false;
841
842 return dmaengine_slave_config(host->dma, config);
843}
844
845static void mxcmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
846{
847 struct mxcmci_host *host = mmc_priv(mmc);
848 int burstlen, ret;
849
850 /*
851 * use burstlen of 64 (16 words) in 4 bit mode (--> reg value 0)
852 * use burstlen of 16 (4 words) in 1 bit mode (--> reg value 16)
853 */
854 if (ios->bus_width == MMC_BUS_WIDTH_4)
855 burstlen = 16;
856 else
857 burstlen = 4;
858
859 if (mxcmci_use_dma(host) && burstlen != host->burstlen) {
860 host->burstlen = burstlen;
861 ret = mxcmci_setup_dma(mmc);
862 if (ret) {
863 dev_err(mmc_dev(host->mmc),
864 "failed to config DMA channel. Falling back to PIO\n");
865 dma_release_channel(host->dma);
866 host->do_dma = 0;
867 host->dma = NULL;
868 }
869 }
870
871 if (ios->bus_width == MMC_BUS_WIDTH_4)
872 host->cmdat |= CMD_DAT_CONT_BUS_WIDTH_4;
873 else
874 host->cmdat &= ~CMD_DAT_CONT_BUS_WIDTH_4;
875
876 if (host->power_mode != ios->power_mode) {
877 host->power_mode = ios->power_mode;
878 mxcmci_set_power(host, ios->vdd);
879
880 if (ios->power_mode == MMC_POWER_ON)
881 host->cmdat |= CMD_DAT_CONT_INIT;
882 }
883
884 if (ios->clock) {
885 mxcmci_set_clk_rate(host, ios->clock);
886 mxcmci_writew(host, STR_STP_CLK_START_CLK, MMC_REG_STR_STP_CLK);
887 } else {
888 mxcmci_writew(host, STR_STP_CLK_STOP_CLK, MMC_REG_STR_STP_CLK);
889 }
890
891 host->clock = ios->clock;
892}
893
894static irqreturn_t mxcmci_detect_irq(int irq, void *data)
895{
896 struct mmc_host *mmc = data;
897
898 dev_dbg(mmc_dev(mmc), "%s\n", __func__);
899
900 mmc_detect_change(mmc, msecs_to_jiffies(250));
901 return IRQ_HANDLED;
902}
903
904static int mxcmci_get_ro(struct mmc_host *mmc)
905{
906 struct mxcmci_host *host = mmc_priv(mmc);
907
908 if (host->pdata && host->pdata->get_ro)
909 return !!host->pdata->get_ro(mmc_dev(mmc));
910 /*
911 * If board doesn't support read only detection (no mmc_gpio
912 * context or gpio is invalid), then let the mmc core decide
913 * what to do.
914 */
915 return mmc_gpio_get_ro(mmc);
916}
917
918static void mxcmci_enable_sdio_irq(struct mmc_host *mmc, int enable)
919{
920 struct mxcmci_host *host = mmc_priv(mmc);
921 unsigned long flags;
922 u32 int_cntr;
923
924 spin_lock_irqsave(&host->lock, flags);
925 host->use_sdio = enable;
926 int_cntr = mxcmci_readl(host, MMC_REG_INT_CNTR);
927
928 if (enable)
929 int_cntr |= INT_SDIO_IRQ_EN;
930 else
931 int_cntr &= ~INT_SDIO_IRQ_EN;
932
933 mxcmci_writel(host, int_cntr, MMC_REG_INT_CNTR);
934 spin_unlock_irqrestore(&host->lock, flags);
935}
936
937static void mxcmci_init_card(struct mmc_host *host, struct mmc_card *card)
938{
939 struct mxcmci_host *mxcmci = mmc_priv(host);
940
941 /*
942 * MX3 SoCs have a silicon bug which corrupts CRC calculation of
943 * multi-block transfers when connected SDIO peripheral doesn't
944 * drive the BUSY line as required by the specs.
945 * One way to prevent this is to only allow 1-bit transfers.
946 */
947
948 if (is_imx31_mmc(mxcmci) && card->type == MMC_TYPE_SDIO)
949 host->caps &= ~MMC_CAP_4_BIT_DATA;
950 else
951 host->caps |= MMC_CAP_4_BIT_DATA;
952}
953
954static bool filter(struct dma_chan *chan, void *param)
955{
956 struct mxcmci_host *host = param;
957
958 if (!imx_dma_is_general_purpose(chan))
959 return false;
960
961 chan->private = &host->dma_data;
962
963 return true;
964}
965
966static void mxcmci_watchdog(struct timer_list *t)
967{
968 struct mxcmci_host *host = from_timer(host, t, watchdog);
969 struct mmc_request *req = host->req;
970 unsigned int stat = mxcmci_readl(host, MMC_REG_STATUS);
971
972 if (host->dma_dir == DMA_FROM_DEVICE) {
973 dmaengine_terminate_all(host->dma);
974 dev_err(mmc_dev(host->mmc),
975 "%s: read time out (status = 0x%08x)\n",
976 __func__, stat);
977 } else {
978 dev_err(mmc_dev(host->mmc),
979 "%s: write time out (status = 0x%08x)\n",
980 __func__, stat);
981 mxcmci_softreset(host);
982 }
983
984 /* Mark transfer as erroneus and inform the upper layers */
985
986 if (host->data)
987 host->data->error = -ETIMEDOUT;
988 host->req = NULL;
989 host->cmd = NULL;
990 host->data = NULL;
991 mmc_request_done(host->mmc, req);
992}
993
994static const struct mmc_host_ops mxcmci_ops = {
995 .request = mxcmci_request,
996 .set_ios = mxcmci_set_ios,
997 .get_ro = mxcmci_get_ro,
998 .enable_sdio_irq = mxcmci_enable_sdio_irq,
999 .init_card = mxcmci_init_card,
1000};
1001
1002static int mxcmci_probe(struct platform_device *pdev)
1003{
1004 struct mmc_host *mmc;
1005 struct mxcmci_host *host;
1006 struct resource *res;
1007 int ret = 0, irq;
1008 bool dat3_card_detect = false;
1009 dma_cap_mask_t mask;
1010 const struct of_device_id *of_id;
1011 struct imxmmc_platform_data *pdata = pdev->dev.platform_data;
1012
1013 pr_info("i.MX/MPC512x SDHC driver\n");
1014
1015 of_id = of_match_device(mxcmci_of_match, &pdev->dev);
1016
1017 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1018 irq = platform_get_irq(pdev, 0);
1019 if (irq < 0) {
1020 dev_err(&pdev->dev, "failed to get IRQ: %d\n", irq);
1021 return irq;
1022 }
1023
1024 mmc = mmc_alloc_host(sizeof(*host), &pdev->dev);
1025 if (!mmc)
1026 return -ENOMEM;
1027
1028 host = mmc_priv(mmc);
1029
1030 host->base = devm_ioremap_resource(&pdev->dev, res);
1031 if (IS_ERR(host->base)) {
1032 ret = PTR_ERR(host->base);
1033 goto out_free;
1034 }
1035
1036 host->phys_base = res->start;
1037
1038 ret = mmc_of_parse(mmc);
1039 if (ret)
1040 goto out_free;
1041 mmc->ops = &mxcmci_ops;
1042
1043 /* For devicetree parsing, the bus width is read from devicetree */
1044 if (pdata)
1045 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
1046 else
1047 mmc->caps |= MMC_CAP_SDIO_IRQ;
1048
1049 /* MMC core transfer sizes tunable parameters */
1050 mmc->max_blk_size = 2048;
1051 mmc->max_blk_count = 65535;
1052 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1053 mmc->max_seg_size = mmc->max_req_size;
1054
1055 if (of_id) {
1056 const struct platform_device_id *id_entry = of_id->data;
1057 host->devtype = id_entry->driver_data;
1058 } else {
1059 host->devtype = pdev->id_entry->driver_data;
1060 }
1061
1062 /* adjust max_segs after devtype detection */
1063 if (!is_mpc512x_mmc(host))
1064 mmc->max_segs = 64;
1065
1066 host->mmc = mmc;
1067 host->pdata = pdata;
1068 spin_lock_init(&host->lock);
1069
1070 if (pdata)
1071 dat3_card_detect = pdata->dat3_card_detect;
1072 else if (mmc_card_is_removable(mmc)
1073 && !of_property_read_bool(pdev->dev.of_node, "cd-gpios"))
1074 dat3_card_detect = true;
1075
1076 ret = mmc_regulator_get_supply(mmc);
1077 if (ret)
1078 goto out_free;
1079
1080 if (!mmc->ocr_avail) {
1081 if (pdata && pdata->ocr_avail)
1082 mmc->ocr_avail = pdata->ocr_avail;
1083 else
1084 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1085 }
1086
1087 if (dat3_card_detect)
1088 host->default_irq_mask =
1089 INT_CARD_INSERTION_EN | INT_CARD_REMOVAL_EN;
1090 else
1091 host->default_irq_mask = 0;
1092
1093 host->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1094 if (IS_ERR(host->clk_ipg)) {
1095 ret = PTR_ERR(host->clk_ipg);
1096 goto out_free;
1097 }
1098
1099 host->clk_per = devm_clk_get(&pdev->dev, "per");
1100 if (IS_ERR(host->clk_per)) {
1101 ret = PTR_ERR(host->clk_per);
1102 goto out_free;
1103 }
1104
1105 ret = clk_prepare_enable(host->clk_per);
1106 if (ret)
1107 goto out_free;
1108
1109 ret = clk_prepare_enable(host->clk_ipg);
1110 if (ret)
1111 goto out_clk_per_put;
1112
1113 mxcmci_softreset(host);
1114
1115 host->rev_no = mxcmci_readw(host, MMC_REG_REV_NO);
1116 if (host->rev_no != 0x400) {
1117 ret = -ENODEV;
1118 dev_err(mmc_dev(host->mmc), "wrong rev.no. 0x%08x. aborting.\n",
1119 host->rev_no);
1120 goto out_clk_put;
1121 }
1122
1123 mmc->f_min = clk_get_rate(host->clk_per) >> 16;
1124 mmc->f_max = clk_get_rate(host->clk_per) >> 1;
1125
1126 /* recommended in data sheet */
1127 mxcmci_writew(host, 0x2db4, MMC_REG_READ_TO);
1128
1129 mxcmci_writel(host, host->default_irq_mask, MMC_REG_INT_CNTR);
1130
1131 if (!host->pdata) {
1132 host->dma = dma_request_slave_channel(&pdev->dev, "rx-tx");
1133 } else {
1134 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
1135 if (res) {
1136 host->dmareq = res->start;
1137 host->dma_data.peripheral_type = IMX_DMATYPE_SDHC;
1138 host->dma_data.priority = DMA_PRIO_LOW;
1139 host->dma_data.dma_request = host->dmareq;
1140 dma_cap_zero(mask);
1141 dma_cap_set(DMA_SLAVE, mask);
1142 host->dma = dma_request_channel(mask, filter, host);
1143 }
1144 }
1145 if (host->dma)
1146 mmc->max_seg_size = dma_get_max_seg_size(
1147 host->dma->device->dev);
1148 else
1149 dev_info(mmc_dev(host->mmc), "dma not available. Using PIO\n");
1150
1151 INIT_WORK(&host->datawork, mxcmci_datawork);
1152
1153 ret = devm_request_irq(&pdev->dev, irq, mxcmci_irq, 0,
1154 dev_name(&pdev->dev), host);
1155 if (ret)
1156 goto out_free_dma;
1157
1158 platform_set_drvdata(pdev, mmc);
1159
1160 if (host->pdata && host->pdata->init) {
1161 ret = host->pdata->init(&pdev->dev, mxcmci_detect_irq,
1162 host->mmc);
1163 if (ret)
1164 goto out_free_dma;
1165 }
1166
1167 timer_setup(&host->watchdog, mxcmci_watchdog, 0);
1168
1169 mmc_add_host(mmc);
1170
1171 return 0;
1172
1173out_free_dma:
1174 if (host->dma)
1175 dma_release_channel(host->dma);
1176
1177out_clk_put:
1178 clk_disable_unprepare(host->clk_ipg);
1179out_clk_per_put:
1180 clk_disable_unprepare(host->clk_per);
1181
1182out_free:
1183 mmc_free_host(mmc);
1184
1185 return ret;
1186}
1187
1188static int mxcmci_remove(struct platform_device *pdev)
1189{
1190 struct mmc_host *mmc = platform_get_drvdata(pdev);
1191 struct mxcmci_host *host = mmc_priv(mmc);
1192
1193 mmc_remove_host(mmc);
1194
1195 if (host->pdata && host->pdata->exit)
1196 host->pdata->exit(&pdev->dev, mmc);
1197
1198 if (host->dma)
1199 dma_release_channel(host->dma);
1200
1201 clk_disable_unprepare(host->clk_per);
1202 clk_disable_unprepare(host->clk_ipg);
1203
1204 mmc_free_host(mmc);
1205
1206 return 0;
1207}
1208
1209static int __maybe_unused mxcmci_suspend(struct device *dev)
1210{
1211 struct mmc_host *mmc = dev_get_drvdata(dev);
1212 struct mxcmci_host *host = mmc_priv(mmc);
1213
1214 clk_disable_unprepare(host->clk_per);
1215 clk_disable_unprepare(host->clk_ipg);
1216 return 0;
1217}
1218
1219static int __maybe_unused mxcmci_resume(struct device *dev)
1220{
1221 struct mmc_host *mmc = dev_get_drvdata(dev);
1222 struct mxcmci_host *host = mmc_priv(mmc);
1223 int ret;
1224
1225 ret = clk_prepare_enable(host->clk_per);
1226 if (ret)
1227 return ret;
1228
1229 ret = clk_prepare_enable(host->clk_ipg);
1230 if (ret)
1231 clk_disable_unprepare(host->clk_per);
1232
1233 return ret;
1234}
1235
1236static SIMPLE_DEV_PM_OPS(mxcmci_pm_ops, mxcmci_suspend, mxcmci_resume);
1237
1238static struct platform_driver mxcmci_driver = {
1239 .probe = mxcmci_probe,
1240 .remove = mxcmci_remove,
1241 .id_table = mxcmci_devtype,
1242 .driver = {
1243 .name = DRIVER_NAME,
1244 .pm = &mxcmci_pm_ops,
1245 .of_match_table = mxcmci_of_match,
1246 }
1247};
1248
1249module_platform_driver(mxcmci_driver);
1250
1251MODULE_DESCRIPTION("i.MX Multimedia Card Interface Driver");
1252MODULE_AUTHOR("Sascha Hauer, Pengutronix");
1253MODULE_LICENSE("GPL");
1254MODULE_ALIAS("platform:mxc-mmc");