mmc: dw_mmc: Run card detect tasklet during slot initialisation.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / mmc / host / dw_mmc.c
blobc01cb8642fb52db4099c62447391ff441a1e8947
1 /*
2 * Synopsys DesignWare Multimedia Card Interface driver
3 * (Based on NXP driver for lpc 31xx)
5 * Copyright (C) 2009 NXP Semiconductors
6 * Copyright (C) 2009, 2010 Imagination Technologies Ltd.
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.
14 #include <linux/blkdev.h>
15 #include <linux/clk.h>
16 #include <linux/debugfs.h>
17 #include <linux/device.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/err.h>
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
22 #include <linux/ioport.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/scatterlist.h>
26 #include <linux/seq_file.h>
27 #include <linux/slab.h>
28 #include <linux/stat.h>
29 #include <linux/delay.h>
30 #include <linux/irq.h>
31 #include <linux/mmc/host.h>
32 #include <linux/mmc/mmc.h>
33 #include <linux/mmc/dw_mmc.h>
34 #include <linux/bitops.h>
36 #include "dw_mmc.h"
38 /* Common flag combinations */
39 #define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DTO | SDMMC_INT_DCRC | \
40 SDMMC_INT_HTO | SDMMC_INT_SBE | \
41 SDMMC_INT_EBE)
42 #define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
43 SDMMC_INT_RESP_ERR)
44 #define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
45 DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE)
46 #define DW_MCI_SEND_STATUS 1
47 #define DW_MCI_RECV_STATUS 2
48 #define DW_MCI_DMA_THRESHOLD 16
50 #ifdef CONFIG_MMC_DW_IDMAC
51 struct idmac_desc {
52 u32 des0; /* Control Descriptor */
53 #define IDMAC_DES0_DIC BIT(1)
54 #define IDMAC_DES0_LD BIT(2)
55 #define IDMAC_DES0_FD BIT(3)
56 #define IDMAC_DES0_CH BIT(4)
57 #define IDMAC_DES0_ER BIT(5)
58 #define IDMAC_DES0_CES BIT(30)
59 #define IDMAC_DES0_OWN BIT(31)
61 u32 des1; /* Buffer sizes */
62 #define IDMAC_SET_BUFFER1_SIZE(d, s) \
63 ((d)->des1 = ((d)->des1 & 0x03ffc000) | ((s) & 0x3fff))
65 u32 des2; /* buffer 1 physical address */
67 u32 des3; /* buffer 2 physical address */
69 #endif /* CONFIG_MMC_DW_IDMAC */
71 /**
72 * struct dw_mci_slot - MMC slot state
73 * @mmc: The mmc_host representing this slot.
74 * @host: The MMC controller this slot is using.
75 * @ctype: Card type for this slot.
76 * @mrq: mmc_request currently being processed or waiting to be
77 * processed, or NULL when the slot is idle.
78 * @queue_node: List node for placing this node in the @queue list of
79 * &struct dw_mci.
80 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
81 * @flags: Random state bits associated with the slot.
82 * @id: Number of this slot.
83 * @last_detect_state: Most recently observed card detect state.
85 struct dw_mci_slot {
86 struct mmc_host *mmc;
87 struct dw_mci *host;
89 u32 ctype;
91 struct mmc_request *mrq;
92 struct list_head queue_node;
94 unsigned int clock;
95 unsigned long flags;
96 #define DW_MMC_CARD_PRESENT 0
97 #define DW_MMC_CARD_NEED_INIT 1
98 int id;
99 int last_detect_state;
102 #if defined(CONFIG_DEBUG_FS)
103 static int dw_mci_req_show(struct seq_file *s, void *v)
105 struct dw_mci_slot *slot = s->private;
106 struct mmc_request *mrq;
107 struct mmc_command *cmd;
108 struct mmc_command *stop;
109 struct mmc_data *data;
111 /* Make sure we get a consistent snapshot */
112 spin_lock_bh(&slot->host->lock);
113 mrq = slot->mrq;
115 if (mrq) {
116 cmd = mrq->cmd;
117 data = mrq->data;
118 stop = mrq->stop;
120 if (cmd)
121 seq_printf(s,
122 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
123 cmd->opcode, cmd->arg, cmd->flags,
124 cmd->resp[0], cmd->resp[1], cmd->resp[2],
125 cmd->resp[2], cmd->error);
126 if (data)
127 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
128 data->bytes_xfered, data->blocks,
129 data->blksz, data->flags, data->error);
130 if (stop)
131 seq_printf(s,
132 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
133 stop->opcode, stop->arg, stop->flags,
134 stop->resp[0], stop->resp[1], stop->resp[2],
135 stop->resp[2], stop->error);
138 spin_unlock_bh(&slot->host->lock);
140 return 0;
143 static int dw_mci_req_open(struct inode *inode, struct file *file)
145 return single_open(file, dw_mci_req_show, inode->i_private);
148 static const struct file_operations dw_mci_req_fops = {
149 .owner = THIS_MODULE,
150 .open = dw_mci_req_open,
151 .read = seq_read,
152 .llseek = seq_lseek,
153 .release = single_release,
156 static int dw_mci_regs_show(struct seq_file *s, void *v)
158 seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS);
159 seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS);
160 seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD);
161 seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL);
162 seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK);
163 seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA);
165 return 0;
168 static int dw_mci_regs_open(struct inode *inode, struct file *file)
170 return single_open(file, dw_mci_regs_show, inode->i_private);
173 static const struct file_operations dw_mci_regs_fops = {
174 .owner = THIS_MODULE,
175 .open = dw_mci_regs_open,
176 .read = seq_read,
177 .llseek = seq_lseek,
178 .release = single_release,
181 static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
183 struct mmc_host *mmc = slot->mmc;
184 struct dw_mci *host = slot->host;
185 struct dentry *root;
186 struct dentry *node;
188 root = mmc->debugfs_root;
189 if (!root)
190 return;
192 node = debugfs_create_file("regs", S_IRUSR, root, host,
193 &dw_mci_regs_fops);
194 if (!node)
195 goto err;
197 node = debugfs_create_file("req", S_IRUSR, root, slot,
198 &dw_mci_req_fops);
199 if (!node)
200 goto err;
202 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
203 if (!node)
204 goto err;
206 node = debugfs_create_x32("pending_events", S_IRUSR, root,
207 (u32 *)&host->pending_events);
208 if (!node)
209 goto err;
211 node = debugfs_create_x32("completed_events", S_IRUSR, root,
212 (u32 *)&host->completed_events);
213 if (!node)
214 goto err;
216 return;
218 err:
219 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
221 #endif /* defined(CONFIG_DEBUG_FS) */
223 static void dw_mci_set_timeout(struct dw_mci *host)
225 /* timeout (maximum) */
226 mci_writel(host, TMOUT, 0xffffffff);
229 static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
231 struct mmc_data *data;
232 u32 cmdr;
233 cmd->error = -EINPROGRESS;
235 cmdr = cmd->opcode;
237 if (cmdr == MMC_STOP_TRANSMISSION)
238 cmdr |= SDMMC_CMD_STOP;
239 else
240 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
242 if (cmd->flags & MMC_RSP_PRESENT) {
243 /* We expect a response, so set this bit */
244 cmdr |= SDMMC_CMD_RESP_EXP;
245 if (cmd->flags & MMC_RSP_136)
246 cmdr |= SDMMC_CMD_RESP_LONG;
249 if (cmd->flags & MMC_RSP_CRC)
250 cmdr |= SDMMC_CMD_RESP_CRC;
252 data = cmd->data;
253 if (data) {
254 cmdr |= SDMMC_CMD_DAT_EXP;
255 if (data->flags & MMC_DATA_STREAM)
256 cmdr |= SDMMC_CMD_STRM_MODE;
257 if (data->flags & MMC_DATA_WRITE)
258 cmdr |= SDMMC_CMD_DAT_WR;
261 return cmdr;
264 static void dw_mci_start_command(struct dw_mci *host,
265 struct mmc_command *cmd, u32 cmd_flags)
267 host->cmd = cmd;
268 dev_vdbg(&host->pdev->dev,
269 "start command: ARGR=0x%08x CMDR=0x%08x\n",
270 cmd->arg, cmd_flags);
272 mci_writel(host, CMDARG, cmd->arg);
273 wmb();
275 mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
278 static void send_stop_cmd(struct dw_mci *host, struct mmc_data *data)
280 dw_mci_start_command(host, data->stop, host->stop_cmdr);
283 /* DMA interface functions */
284 static void dw_mci_stop_dma(struct dw_mci *host)
286 if (host->use_dma) {
287 host->dma_ops->stop(host);
288 host->dma_ops->cleanup(host);
289 } else {
290 /* Data transfer was stopped by the interrupt handler */
291 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
295 #ifdef CONFIG_MMC_DW_IDMAC
296 static void dw_mci_dma_cleanup(struct dw_mci *host)
298 struct mmc_data *data = host->data;
300 if (data)
301 dma_unmap_sg(&host->pdev->dev, data->sg, data->sg_len,
302 ((data->flags & MMC_DATA_WRITE)
303 ? DMA_TO_DEVICE : DMA_FROM_DEVICE));
306 static void dw_mci_idmac_stop_dma(struct dw_mci *host)
308 u32 temp;
310 /* Disable and reset the IDMAC interface */
311 temp = mci_readl(host, CTRL);
312 temp &= ~SDMMC_CTRL_USE_IDMAC;
313 temp |= SDMMC_CTRL_DMA_RESET;
314 mci_writel(host, CTRL, temp);
316 /* Stop the IDMAC running */
317 temp = mci_readl(host, BMOD);
318 temp &= ~SDMMC_IDMAC_ENABLE;
319 mci_writel(host, BMOD, temp);
322 static void dw_mci_idmac_complete_dma(struct dw_mci *host)
324 struct mmc_data *data = host->data;
326 dev_vdbg(&host->pdev->dev, "DMA complete\n");
328 host->dma_ops->cleanup(host);
331 * If the card was removed, data will be NULL. No point in trying to
332 * send the stop command or waiting for NBUSY in this case.
334 if (data) {
335 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
336 tasklet_schedule(&host->tasklet);
340 static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data,
341 unsigned int sg_len)
343 int i;
344 struct idmac_desc *desc = host->sg_cpu;
346 for (i = 0; i < sg_len; i++, desc++) {
347 unsigned int length = sg_dma_len(&data->sg[i]);
348 u32 mem_addr = sg_dma_address(&data->sg[i]);
350 /* Set the OWN bit and disable interrupts for this descriptor */
351 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC | IDMAC_DES0_CH;
353 /* Buffer length */
354 IDMAC_SET_BUFFER1_SIZE(desc, length);
356 /* Physical address to DMA to/from */
357 desc->des2 = mem_addr;
360 /* Set first descriptor */
361 desc = host->sg_cpu;
362 desc->des0 |= IDMAC_DES0_FD;
364 /* Set last descriptor */
365 desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc);
366 desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
367 desc->des0 |= IDMAC_DES0_LD;
369 wmb();
372 static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
374 u32 temp;
376 dw_mci_translate_sglist(host, host->data, sg_len);
378 /* Select IDMAC interface */
379 temp = mci_readl(host, CTRL);
380 temp |= SDMMC_CTRL_USE_IDMAC;
381 mci_writel(host, CTRL, temp);
383 wmb();
385 /* Enable the IDMAC */
386 temp = mci_readl(host, BMOD);
387 temp |= SDMMC_IDMAC_ENABLE;
388 mci_writel(host, BMOD, temp);
390 /* Start it running */
391 mci_writel(host, PLDMND, 1);
394 static int dw_mci_idmac_init(struct dw_mci *host)
396 struct idmac_desc *p;
397 int i;
399 /* Number of descriptors in the ring buffer */
400 host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc);
402 /* Forward link the descriptor list */
403 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++)
404 p->des3 = host->sg_dma + (sizeof(struct idmac_desc) * (i + 1));
406 /* Set the last descriptor as the end-of-ring descriptor */
407 p->des3 = host->sg_dma;
408 p->des0 = IDMAC_DES0_ER;
410 /* Mask out interrupts - get Tx & Rx complete only */
411 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI | SDMMC_IDMAC_INT_RI |
412 SDMMC_IDMAC_INT_TI);
414 /* Set the descriptor base address */
415 mci_writel(host, DBADDR, host->sg_dma);
416 return 0;
419 static struct dw_mci_dma_ops dw_mci_idmac_ops = {
420 .init = dw_mci_idmac_init,
421 .start = dw_mci_idmac_start_dma,
422 .stop = dw_mci_idmac_stop_dma,
423 .complete = dw_mci_idmac_complete_dma,
424 .cleanup = dw_mci_dma_cleanup,
426 #endif /* CONFIG_MMC_DW_IDMAC */
428 static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
430 struct scatterlist *sg;
431 unsigned int i, direction, sg_len;
432 u32 temp;
434 /* If we don't have a channel, we can't do DMA */
435 if (!host->use_dma)
436 return -ENODEV;
439 * We don't do DMA on "complex" transfers, i.e. with
440 * non-word-aligned buffers or lengths. Also, we don't bother
441 * with all the DMA setup overhead for short transfers.
443 if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
444 return -EINVAL;
445 if (data->blksz & 3)
446 return -EINVAL;
448 for_each_sg(data->sg, sg, data->sg_len, i) {
449 if (sg->offset & 3 || sg->length & 3)
450 return -EINVAL;
453 if (data->flags & MMC_DATA_READ)
454 direction = DMA_FROM_DEVICE;
455 else
456 direction = DMA_TO_DEVICE;
458 sg_len = dma_map_sg(&host->pdev->dev, data->sg, data->sg_len,
459 direction);
461 dev_vdbg(&host->pdev->dev,
462 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
463 (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma,
464 sg_len);
466 /* Enable the DMA interface */
467 temp = mci_readl(host, CTRL);
468 temp |= SDMMC_CTRL_DMA_ENABLE;
469 mci_writel(host, CTRL, temp);
471 /* Disable RX/TX IRQs, let DMA handle it */
472 temp = mci_readl(host, INTMASK);
473 temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
474 mci_writel(host, INTMASK, temp);
476 host->dma_ops->start(host, sg_len);
478 return 0;
481 static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
483 u32 temp;
485 data->error = -EINPROGRESS;
487 WARN_ON(host->data);
488 host->sg = NULL;
489 host->data = data;
491 if (dw_mci_submit_data_dma(host, data)) {
492 host->sg = data->sg;
493 host->pio_offset = 0;
494 if (data->flags & MMC_DATA_READ)
495 host->dir_status = DW_MCI_RECV_STATUS;
496 else
497 host->dir_status = DW_MCI_SEND_STATUS;
499 temp = mci_readl(host, INTMASK);
500 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
501 mci_writel(host, INTMASK, temp);
503 temp = mci_readl(host, CTRL);
504 temp &= ~SDMMC_CTRL_DMA_ENABLE;
505 mci_writel(host, CTRL, temp);
509 static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
511 struct dw_mci *host = slot->host;
512 unsigned long timeout = jiffies + msecs_to_jiffies(500);
513 unsigned int cmd_status = 0;
515 mci_writel(host, CMDARG, arg);
516 wmb();
517 mci_writel(host, CMD, SDMMC_CMD_START | cmd);
519 while (time_before(jiffies, timeout)) {
520 cmd_status = mci_readl(host, CMD);
521 if (!(cmd_status & SDMMC_CMD_START))
522 return;
524 dev_err(&slot->mmc->class_dev,
525 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
526 cmd, arg, cmd_status);
529 static void dw_mci_setup_bus(struct dw_mci_slot *slot)
531 struct dw_mci *host = slot->host;
532 u32 div;
534 if (slot->clock != host->current_speed) {
535 if (host->bus_hz % slot->clock)
537 * move the + 1 after the divide to prevent
538 * over-clocking the card.
540 div = ((host->bus_hz / slot->clock) >> 1) + 1;
541 else
542 div = (host->bus_hz / slot->clock) >> 1;
544 dev_info(&slot->mmc->class_dev,
545 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ"
546 " div = %d)\n", slot->id, host->bus_hz, slot->clock,
547 div ? ((host->bus_hz / div) >> 1) : host->bus_hz, div);
549 /* disable clock */
550 mci_writel(host, CLKENA, 0);
551 mci_writel(host, CLKSRC, 0);
553 /* inform CIU */
554 mci_send_cmd(slot,
555 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
557 /* set clock to desired speed */
558 mci_writel(host, CLKDIV, div);
560 /* inform CIU */
561 mci_send_cmd(slot,
562 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
564 /* enable clock */
565 mci_writel(host, CLKENA, SDMMC_CLKEN_ENABLE);
567 /* inform CIU */
568 mci_send_cmd(slot,
569 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
571 host->current_speed = slot->clock;
574 /* Set the current slot bus width */
575 mci_writel(host, CTYPE, slot->ctype);
578 static void dw_mci_start_request(struct dw_mci *host,
579 struct dw_mci_slot *slot)
581 struct mmc_request *mrq;
582 struct mmc_command *cmd;
583 struct mmc_data *data;
584 u32 cmdflags;
586 mrq = slot->mrq;
587 if (host->pdata->select_slot)
588 host->pdata->select_slot(slot->id);
590 /* Slot specific timing and width adjustment */
591 dw_mci_setup_bus(slot);
593 host->cur_slot = slot;
594 host->mrq = mrq;
596 host->pending_events = 0;
597 host->completed_events = 0;
598 host->data_status = 0;
600 data = mrq->data;
601 if (data) {
602 dw_mci_set_timeout(host);
603 mci_writel(host, BYTCNT, data->blksz*data->blocks);
604 mci_writel(host, BLKSIZ, data->blksz);
607 cmd = mrq->cmd;
608 cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
610 /* this is the first command, send the initialization clock */
611 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
612 cmdflags |= SDMMC_CMD_INIT;
614 if (data) {
615 dw_mci_submit_data(host, data);
616 wmb();
619 dw_mci_start_command(host, cmd, cmdflags);
621 if (mrq->stop)
622 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop);
625 static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
626 struct mmc_request *mrq)
628 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
629 host->state);
631 spin_lock_bh(&host->lock);
632 slot->mrq = mrq;
634 if (host->state == STATE_IDLE) {
635 host->state = STATE_SENDING_CMD;
636 dw_mci_start_request(host, slot);
637 } else {
638 list_add_tail(&slot->queue_node, &host->queue);
641 spin_unlock_bh(&host->lock);
644 static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
646 struct dw_mci_slot *slot = mmc_priv(mmc);
647 struct dw_mci *host = slot->host;
649 WARN_ON(slot->mrq);
651 if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) {
652 mrq->cmd->error = -ENOMEDIUM;
653 mmc_request_done(mmc, mrq);
654 return;
657 /* We don't support multiple blocks of weird lengths. */
658 dw_mci_queue_request(host, slot, mrq);
661 static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
663 struct dw_mci_slot *slot = mmc_priv(mmc);
665 /* set default 1 bit mode */
666 slot->ctype = SDMMC_CTYPE_1BIT;
668 switch (ios->bus_width) {
669 case MMC_BUS_WIDTH_1:
670 slot->ctype = SDMMC_CTYPE_1BIT;
671 break;
672 case MMC_BUS_WIDTH_4:
673 slot->ctype = SDMMC_CTYPE_4BIT;
674 break;
677 if (ios->clock) {
679 * Use mirror of ios->clock to prevent race with mmc
680 * core ios update when finding the minimum.
682 slot->clock = ios->clock;
685 switch (ios->power_mode) {
686 case MMC_POWER_UP:
687 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
688 break;
689 default:
690 break;
694 static int dw_mci_get_ro(struct mmc_host *mmc)
696 int read_only;
697 struct dw_mci_slot *slot = mmc_priv(mmc);
698 struct dw_mci_board *brd = slot->host->pdata;
700 /* Use platform get_ro function, else try on board write protect */
701 if (brd->get_ro)
702 read_only = brd->get_ro(slot->id);
703 else
704 read_only =
705 mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
707 dev_dbg(&mmc->class_dev, "card is %s\n",
708 read_only ? "read-only" : "read-write");
710 return read_only;
713 static int dw_mci_get_cd(struct mmc_host *mmc)
715 int present;
716 struct dw_mci_slot *slot = mmc_priv(mmc);
717 struct dw_mci_board *brd = slot->host->pdata;
719 /* Use platform get_cd function, else try onboard card detect */
720 if (brd->get_cd)
721 present = !brd->get_cd(slot->id);
722 else
723 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
724 == 0 ? 1 : 0;
726 if (present)
727 dev_dbg(&mmc->class_dev, "card is present\n");
728 else
729 dev_dbg(&mmc->class_dev, "card is not present\n");
731 return present;
734 static const struct mmc_host_ops dw_mci_ops = {
735 .request = dw_mci_request,
736 .set_ios = dw_mci_set_ios,
737 .get_ro = dw_mci_get_ro,
738 .get_cd = dw_mci_get_cd,
741 static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
742 __releases(&host->lock)
743 __acquires(&host->lock)
745 struct dw_mci_slot *slot;
746 struct mmc_host *prev_mmc = host->cur_slot->mmc;
748 WARN_ON(host->cmd || host->data);
750 host->cur_slot->mrq = NULL;
751 host->mrq = NULL;
752 if (!list_empty(&host->queue)) {
753 slot = list_entry(host->queue.next,
754 struct dw_mci_slot, queue_node);
755 list_del(&slot->queue_node);
756 dev_vdbg(&host->pdev->dev, "list not empty: %s is next\n",
757 mmc_hostname(slot->mmc));
758 host->state = STATE_SENDING_CMD;
759 dw_mci_start_request(host, slot);
760 } else {
761 dev_vdbg(&host->pdev->dev, "list empty\n");
762 host->state = STATE_IDLE;
765 spin_unlock(&host->lock);
766 mmc_request_done(prev_mmc, mrq);
767 spin_lock(&host->lock);
770 static void dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
772 u32 status = host->cmd_status;
774 host->cmd_status = 0;
776 /* Read the response from the card (up to 16 bytes) */
777 if (cmd->flags & MMC_RSP_PRESENT) {
778 if (cmd->flags & MMC_RSP_136) {
779 cmd->resp[3] = mci_readl(host, RESP0);
780 cmd->resp[2] = mci_readl(host, RESP1);
781 cmd->resp[1] = mci_readl(host, RESP2);
782 cmd->resp[0] = mci_readl(host, RESP3);
783 } else {
784 cmd->resp[0] = mci_readl(host, RESP0);
785 cmd->resp[1] = 0;
786 cmd->resp[2] = 0;
787 cmd->resp[3] = 0;
791 if (status & SDMMC_INT_RTO)
792 cmd->error = -ETIMEDOUT;
793 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
794 cmd->error = -EILSEQ;
795 else if (status & SDMMC_INT_RESP_ERR)
796 cmd->error = -EIO;
797 else
798 cmd->error = 0;
800 if (cmd->error) {
801 /* newer ip versions need a delay between retries */
802 if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY)
803 mdelay(20);
805 if (cmd->data) {
806 host->data = NULL;
807 dw_mci_stop_dma(host);
812 static void dw_mci_tasklet_func(unsigned long priv)
814 struct dw_mci *host = (struct dw_mci *)priv;
815 struct mmc_data *data;
816 struct mmc_command *cmd;
817 enum dw_mci_state state;
818 enum dw_mci_state prev_state;
819 u32 status;
821 spin_lock(&host->lock);
823 state = host->state;
824 data = host->data;
826 do {
827 prev_state = state;
829 switch (state) {
830 case STATE_IDLE:
831 break;
833 case STATE_SENDING_CMD:
834 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
835 &host->pending_events))
836 break;
838 cmd = host->cmd;
839 host->cmd = NULL;
840 set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
841 dw_mci_command_complete(host, host->mrq->cmd);
842 if (!host->mrq->data || cmd->error) {
843 dw_mci_request_end(host, host->mrq);
844 goto unlock;
847 prev_state = state = STATE_SENDING_DATA;
848 /* fall through */
850 case STATE_SENDING_DATA:
851 if (test_and_clear_bit(EVENT_DATA_ERROR,
852 &host->pending_events)) {
853 dw_mci_stop_dma(host);
854 if (data->stop)
855 send_stop_cmd(host, data);
856 state = STATE_DATA_ERROR;
857 break;
860 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
861 &host->pending_events))
862 break;
864 set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
865 prev_state = state = STATE_DATA_BUSY;
866 /* fall through */
868 case STATE_DATA_BUSY:
869 if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
870 &host->pending_events))
871 break;
873 host->data = NULL;
874 set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
875 status = host->data_status;
877 if (status & DW_MCI_DATA_ERROR_FLAGS) {
878 if (status & SDMMC_INT_DTO) {
879 dev_err(&host->pdev->dev,
880 "data timeout error\n");
881 data->error = -ETIMEDOUT;
882 } else if (status & SDMMC_INT_DCRC) {
883 dev_err(&host->pdev->dev,
884 "data CRC error\n");
885 data->error = -EILSEQ;
886 } else {
887 dev_err(&host->pdev->dev,
888 "data FIFO error "
889 "(status=%08x)\n",
890 status);
891 data->error = -EIO;
893 } else {
894 data->bytes_xfered = data->blocks * data->blksz;
895 data->error = 0;
898 if (!data->stop) {
899 dw_mci_request_end(host, host->mrq);
900 goto unlock;
903 prev_state = state = STATE_SENDING_STOP;
904 if (!data->error)
905 send_stop_cmd(host, data);
906 /* fall through */
908 case STATE_SENDING_STOP:
909 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
910 &host->pending_events))
911 break;
913 host->cmd = NULL;
914 dw_mci_command_complete(host, host->mrq->stop);
915 dw_mci_request_end(host, host->mrq);
916 goto unlock;
918 case STATE_DATA_ERROR:
919 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
920 &host->pending_events))
921 break;
923 state = STATE_DATA_BUSY;
924 break;
926 } while (state != prev_state);
928 host->state = state;
929 unlock:
930 spin_unlock(&host->lock);
934 static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
936 u16 *pdata = (u16 *)buf;
938 WARN_ON(cnt % 2 != 0);
940 cnt = cnt >> 1;
941 while (cnt > 0) {
942 mci_writew(host, DATA, *pdata++);
943 cnt--;
947 static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
949 u16 *pdata = (u16 *)buf;
951 WARN_ON(cnt % 2 != 0);
953 cnt = cnt >> 1;
954 while (cnt > 0) {
955 *pdata++ = mci_readw(host, DATA);
956 cnt--;
960 static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
962 u32 *pdata = (u32 *)buf;
964 WARN_ON(cnt % 4 != 0);
965 WARN_ON((unsigned long)pdata & 0x3);
967 cnt = cnt >> 2;
968 while (cnt > 0) {
969 mci_writel(host, DATA, *pdata++);
970 cnt--;
974 static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
976 u32 *pdata = (u32 *)buf;
978 WARN_ON(cnt % 4 != 0);
979 WARN_ON((unsigned long)pdata & 0x3);
981 cnt = cnt >> 2;
982 while (cnt > 0) {
983 *pdata++ = mci_readl(host, DATA);
984 cnt--;
988 static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
990 u64 *pdata = (u64 *)buf;
992 WARN_ON(cnt % 8 != 0);
994 cnt = cnt >> 3;
995 while (cnt > 0) {
996 mci_writeq(host, DATA, *pdata++);
997 cnt--;
1001 static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
1003 u64 *pdata = (u64 *)buf;
1005 WARN_ON(cnt % 8 != 0);
1007 cnt = cnt >> 3;
1008 while (cnt > 0) {
1009 *pdata++ = mci_readq(host, DATA);
1010 cnt--;
1014 static void dw_mci_read_data_pio(struct dw_mci *host)
1016 struct scatterlist *sg = host->sg;
1017 void *buf = sg_virt(sg);
1018 unsigned int offset = host->pio_offset;
1019 struct mmc_data *data = host->data;
1020 int shift = host->data_shift;
1021 u32 status;
1022 unsigned int nbytes = 0, len, old_len, count = 0;
1024 do {
1025 len = SDMMC_GET_FCNT(mci_readl(host, STATUS)) << shift;
1026 if (count == 0)
1027 old_len = len;
1029 if (offset + len <= sg->length) {
1030 host->pull_data(host, (void *)(buf + offset), len);
1032 offset += len;
1033 nbytes += len;
1035 if (offset == sg->length) {
1036 flush_dcache_page(sg_page(sg));
1037 host->sg = sg = sg_next(sg);
1038 if (!sg)
1039 goto done;
1041 offset = 0;
1042 buf = sg_virt(sg);
1044 } else {
1045 unsigned int remaining = sg->length - offset;
1046 host->pull_data(host, (void *)(buf + offset),
1047 remaining);
1048 nbytes += remaining;
1050 flush_dcache_page(sg_page(sg));
1051 host->sg = sg = sg_next(sg);
1052 if (!sg)
1053 goto done;
1055 offset = len - remaining;
1056 buf = sg_virt(sg);
1057 host->pull_data(host, buf, offset);
1058 nbytes += offset;
1061 status = mci_readl(host, MINTSTS);
1062 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
1063 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1064 host->data_status = status;
1065 data->bytes_xfered += nbytes;
1066 smp_wmb();
1068 set_bit(EVENT_DATA_ERROR, &host->pending_events);
1070 tasklet_schedule(&host->tasklet);
1071 return;
1073 count++;
1074 } while (status & SDMMC_INT_RXDR); /*if the RXDR is ready read again*/
1075 len = SDMMC_GET_FCNT(mci_readl(host, STATUS));
1076 host->pio_offset = offset;
1077 data->bytes_xfered += nbytes;
1078 return;
1080 done:
1081 data->bytes_xfered += nbytes;
1082 smp_wmb();
1083 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1086 static void dw_mci_write_data_pio(struct dw_mci *host)
1088 struct scatterlist *sg = host->sg;
1089 void *buf = sg_virt(sg);
1090 unsigned int offset = host->pio_offset;
1091 struct mmc_data *data = host->data;
1092 int shift = host->data_shift;
1093 u32 status;
1094 unsigned int nbytes = 0, len;
1096 do {
1097 len = SDMMC_FIFO_SZ -
1098 (SDMMC_GET_FCNT(mci_readl(host, STATUS)) << shift);
1099 if (offset + len <= sg->length) {
1100 host->push_data(host, (void *)(buf + offset), len);
1102 offset += len;
1103 nbytes += len;
1104 if (offset == sg->length) {
1105 host->sg = sg = sg_next(sg);
1106 if (!sg)
1107 goto done;
1109 offset = 0;
1110 buf = sg_virt(sg);
1112 } else {
1113 unsigned int remaining = sg->length - offset;
1115 host->push_data(host, (void *)(buf + offset),
1116 remaining);
1117 nbytes += remaining;
1119 host->sg = sg = sg_next(sg);
1120 if (!sg)
1121 goto done;
1123 offset = len - remaining;
1124 buf = sg_virt(sg);
1125 host->push_data(host, (void *)buf, offset);
1126 nbytes += offset;
1129 status = mci_readl(host, MINTSTS);
1130 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
1131 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1132 host->data_status = status;
1133 data->bytes_xfered += nbytes;
1135 smp_wmb();
1137 set_bit(EVENT_DATA_ERROR, &host->pending_events);
1139 tasklet_schedule(&host->tasklet);
1140 return;
1142 } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
1144 host->pio_offset = offset;
1145 data->bytes_xfered += nbytes;
1147 return;
1149 done:
1150 data->bytes_xfered += nbytes;
1151 smp_wmb();
1152 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1155 static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
1157 if (!host->cmd_status)
1158 host->cmd_status = status;
1160 smp_wmb();
1162 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
1163 tasklet_schedule(&host->tasklet);
1166 static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
1168 struct dw_mci *host = dev_id;
1169 u32 status, pending;
1170 unsigned int pass_count = 0;
1172 do {
1173 status = mci_readl(host, RINTSTS);
1174 pending = mci_readl(host, MINTSTS); /* read-only mask reg */
1177 * DTO fix - version 2.10a and below, and only if internal DMA
1178 * is configured.
1180 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) {
1181 if (!pending &&
1182 ((mci_readl(host, STATUS) >> 17) & 0x1fff))
1183 pending |= SDMMC_INT_DATA_OVER;
1186 if (!pending)
1187 break;
1189 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
1190 mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
1191 host->cmd_status = status;
1192 smp_wmb();
1193 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
1194 tasklet_schedule(&host->tasklet);
1197 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
1198 /* if there is an error report DATA_ERROR */
1199 mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
1200 host->data_status = status;
1201 smp_wmb();
1202 set_bit(EVENT_DATA_ERROR, &host->pending_events);
1203 tasklet_schedule(&host->tasklet);
1206 if (pending & SDMMC_INT_DATA_OVER) {
1207 mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
1208 if (!host->data_status)
1209 host->data_status = status;
1210 smp_wmb();
1211 if (host->dir_status == DW_MCI_RECV_STATUS) {
1212 if (host->sg != NULL)
1213 dw_mci_read_data_pio(host);
1215 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
1216 tasklet_schedule(&host->tasklet);
1219 if (pending & SDMMC_INT_RXDR) {
1220 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
1221 if (host->sg)
1222 dw_mci_read_data_pio(host);
1225 if (pending & SDMMC_INT_TXDR) {
1226 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
1227 if (host->sg)
1228 dw_mci_write_data_pio(host);
1231 if (pending & SDMMC_INT_CMD_DONE) {
1232 mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
1233 dw_mci_cmd_interrupt(host, status);
1236 if (pending & SDMMC_INT_CD) {
1237 mci_writel(host, RINTSTS, SDMMC_INT_CD);
1238 tasklet_schedule(&host->card_tasklet);
1241 } while (pass_count++ < 5);
1243 #ifdef CONFIG_MMC_DW_IDMAC
1244 /* Handle DMA interrupts */
1245 pending = mci_readl(host, IDSTS);
1246 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
1247 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI);
1248 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
1249 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
1250 host->dma_ops->complete(host);
1252 #endif
1254 return IRQ_HANDLED;
1257 static void dw_mci_tasklet_card(unsigned long data)
1259 struct dw_mci *host = (struct dw_mci *)data;
1260 int i;
1262 for (i = 0; i < host->num_slots; i++) {
1263 struct dw_mci_slot *slot = host->slot[i];
1264 struct mmc_host *mmc = slot->mmc;
1265 struct mmc_request *mrq;
1266 int present;
1267 u32 ctrl;
1269 present = dw_mci_get_cd(mmc);
1270 while (present != slot->last_detect_state) {
1271 spin_lock(&host->lock);
1273 dev_dbg(&slot->mmc->class_dev, "card %s\n",
1274 present ? "inserted" : "removed");
1276 /* Card change detected */
1277 slot->last_detect_state = present;
1279 /* Power up slot */
1280 if (present != 0) {
1281 if (host->pdata->setpower)
1282 host->pdata->setpower(slot->id,
1283 mmc->ocr_avail);
1285 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1288 /* Clean up queue if present */
1289 mrq = slot->mrq;
1290 if (mrq) {
1291 if (mrq == host->mrq) {
1292 host->data = NULL;
1293 host->cmd = NULL;
1295 switch (host->state) {
1296 case STATE_IDLE:
1297 break;
1298 case STATE_SENDING_CMD:
1299 mrq->cmd->error = -ENOMEDIUM;
1300 if (!mrq->data)
1301 break;
1302 /* fall through */
1303 case STATE_SENDING_DATA:
1304 mrq->data->error = -ENOMEDIUM;
1305 dw_mci_stop_dma(host);
1306 break;
1307 case STATE_DATA_BUSY:
1308 case STATE_DATA_ERROR:
1309 if (mrq->data->error == -EINPROGRESS)
1310 mrq->data->error = -ENOMEDIUM;
1311 if (!mrq->stop)
1312 break;
1313 /* fall through */
1314 case STATE_SENDING_STOP:
1315 mrq->stop->error = -ENOMEDIUM;
1316 break;
1319 dw_mci_request_end(host, mrq);
1320 } else {
1321 list_del(&slot->queue_node);
1322 mrq->cmd->error = -ENOMEDIUM;
1323 if (mrq->data)
1324 mrq->data->error = -ENOMEDIUM;
1325 if (mrq->stop)
1326 mrq->stop->error = -ENOMEDIUM;
1328 spin_unlock(&host->lock);
1329 mmc_request_done(slot->mmc, mrq);
1330 spin_lock(&host->lock);
1334 /* Power down slot */
1335 if (present == 0) {
1336 if (host->pdata->setpower)
1337 host->pdata->setpower(slot->id, 0);
1338 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1341 * Clear down the FIFO - doing so generates a
1342 * block interrupt, hence setting the
1343 * scatter-gather pointer to NULL.
1345 host->sg = NULL;
1347 ctrl = mci_readl(host, CTRL);
1348 ctrl |= SDMMC_CTRL_FIFO_RESET;
1349 mci_writel(host, CTRL, ctrl);
1351 #ifdef CONFIG_MMC_DW_IDMAC
1352 ctrl = mci_readl(host, BMOD);
1353 ctrl |= 0x01; /* Software reset of DMA */
1354 mci_writel(host, BMOD, ctrl);
1355 #endif
1359 spin_unlock(&host->lock);
1360 present = dw_mci_get_cd(mmc);
1363 mmc_detect_change(slot->mmc,
1364 msecs_to_jiffies(host->pdata->detect_delay_ms));
1368 static int __init dw_mci_init_slot(struct dw_mci *host, unsigned int id)
1370 struct mmc_host *mmc;
1371 struct dw_mci_slot *slot;
1373 mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), &host->pdev->dev);
1374 if (!mmc)
1375 return -ENOMEM;
1377 slot = mmc_priv(mmc);
1378 slot->id = id;
1379 slot->mmc = mmc;
1380 slot->host = host;
1382 mmc->ops = &dw_mci_ops;
1383 mmc->f_min = DIV_ROUND_UP(host->bus_hz, 510);
1384 mmc->f_max = host->bus_hz;
1386 if (host->pdata->get_ocr)
1387 mmc->ocr_avail = host->pdata->get_ocr(id);
1388 else
1389 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1392 * Start with slot power disabled, it will be enabled when a card
1393 * is detected.
1395 if (host->pdata->setpower)
1396 host->pdata->setpower(id, 0);
1398 mmc->caps = 0;
1399 if (host->pdata->get_bus_wd)
1400 if (host->pdata->get_bus_wd(slot->id) >= 4)
1401 mmc->caps |= MMC_CAP_4_BIT_DATA;
1403 if (host->pdata->quirks & DW_MCI_QUIRK_HIGHSPEED)
1404 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
1406 #ifdef CONFIG_MMC_DW_IDMAC
1407 mmc->max_segs = host->ring_size;
1408 mmc->max_blk_size = 65536;
1409 mmc->max_blk_count = host->ring_size;
1410 mmc->max_seg_size = 0x1000;
1411 mmc->max_req_size = mmc->max_seg_size * mmc->max_blk_count;
1412 #else
1413 if (host->pdata->blk_settings) {
1414 mmc->max_segs = host->pdata->blk_settings->max_segs;
1415 mmc->max_blk_size = host->pdata->blk_settings->max_blk_size;
1416 mmc->max_blk_count = host->pdata->blk_settings->max_blk_count;
1417 mmc->max_req_size = host->pdata->blk_settings->max_req_size;
1418 mmc->max_seg_size = host->pdata->blk_settings->max_seg_size;
1419 } else {
1420 /* Useful defaults if platform data is unset. */
1421 mmc->max_segs = 64;
1422 mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */
1423 mmc->max_blk_count = 512;
1424 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1425 mmc->max_seg_size = mmc->max_req_size;
1427 #endif /* CONFIG_MMC_DW_IDMAC */
1429 if (dw_mci_get_cd(mmc))
1430 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1431 else
1432 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1434 host->slot[id] = slot;
1435 mmc_add_host(mmc);
1437 #if defined(CONFIG_DEBUG_FS)
1438 dw_mci_init_debugfs(slot);
1439 #endif
1441 /* Card initially undetected */
1442 slot->last_detect_state = 0;
1445 * Card may have been plugged in prior to boot so we
1446 * need to run the detect tasklet
1448 tasklet_schedule(&host->card_tasklet);
1450 return 0;
1453 static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
1455 /* Shutdown detect IRQ */
1456 if (slot->host->pdata->exit)
1457 slot->host->pdata->exit(id);
1459 /* Debugfs stuff is cleaned up by mmc core */
1460 mmc_remove_host(slot->mmc);
1461 slot->host->slot[id] = NULL;
1462 mmc_free_host(slot->mmc);
1465 static void dw_mci_init_dma(struct dw_mci *host)
1467 /* Alloc memory for sg translation */
1468 host->sg_cpu = dma_alloc_coherent(&host->pdev->dev, PAGE_SIZE,
1469 &host->sg_dma, GFP_KERNEL);
1470 if (!host->sg_cpu) {
1471 dev_err(&host->pdev->dev, "%s: could not alloc DMA memory\n",
1472 __func__);
1473 goto no_dma;
1476 /* Determine which DMA interface to use */
1477 #ifdef CONFIG_MMC_DW_IDMAC
1478 host->dma_ops = &dw_mci_idmac_ops;
1479 dev_info(&host->pdev->dev, "Using internal DMA controller.\n");
1480 #endif
1482 if (!host->dma_ops)
1483 goto no_dma;
1485 if (host->dma_ops->init) {
1486 if (host->dma_ops->init(host)) {
1487 dev_err(&host->pdev->dev, "%s: Unable to initialize "
1488 "DMA Controller.\n", __func__);
1489 goto no_dma;
1491 } else {
1492 dev_err(&host->pdev->dev, "DMA initialization not found.\n");
1493 goto no_dma;
1496 host->use_dma = 1;
1497 return;
1499 no_dma:
1500 dev_info(&host->pdev->dev, "Using PIO mode.\n");
1501 host->use_dma = 0;
1502 return;
1505 static bool mci_wait_reset(struct device *dev, struct dw_mci *host)
1507 unsigned long timeout = jiffies + msecs_to_jiffies(500);
1508 unsigned int ctrl;
1510 mci_writel(host, CTRL, (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
1511 SDMMC_CTRL_DMA_RESET));
1513 /* wait till resets clear */
1514 do {
1515 ctrl = mci_readl(host, CTRL);
1516 if (!(ctrl & (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
1517 SDMMC_CTRL_DMA_RESET)))
1518 return true;
1519 } while (time_before(jiffies, timeout));
1521 dev_err(dev, "Timeout resetting block (ctrl %#x)\n", ctrl);
1523 return false;
1526 static int dw_mci_probe(struct platform_device *pdev)
1528 struct dw_mci *host;
1529 struct resource *regs;
1530 struct dw_mci_board *pdata;
1531 int irq, ret, i, width;
1532 u32 fifo_size;
1534 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1535 if (!regs)
1536 return -ENXIO;
1538 irq = platform_get_irq(pdev, 0);
1539 if (irq < 0)
1540 return irq;
1542 host = kzalloc(sizeof(struct dw_mci), GFP_KERNEL);
1543 if (!host)
1544 return -ENOMEM;
1546 host->pdev = pdev;
1547 host->pdata = pdata = pdev->dev.platform_data;
1548 if (!pdata || !pdata->init) {
1549 dev_err(&pdev->dev,
1550 "Platform data must supply init function\n");
1551 ret = -ENODEV;
1552 goto err_freehost;
1555 if (!pdata->select_slot && pdata->num_slots > 1) {
1556 dev_err(&pdev->dev,
1557 "Platform data must supply select_slot function\n");
1558 ret = -ENODEV;
1559 goto err_freehost;
1562 if (!pdata->bus_hz) {
1563 dev_err(&pdev->dev,
1564 "Platform data must supply bus speed\n");
1565 ret = -ENODEV;
1566 goto err_freehost;
1569 host->bus_hz = pdata->bus_hz;
1570 host->quirks = pdata->quirks;
1572 spin_lock_init(&host->lock);
1573 INIT_LIST_HEAD(&host->queue);
1575 ret = -ENOMEM;
1576 host->regs = ioremap(regs->start, regs->end - regs->start + 1);
1577 if (!host->regs)
1578 goto err_freehost;
1580 host->dma_ops = pdata->dma_ops;
1581 dw_mci_init_dma(host);
1584 * Get the host data width - this assumes that HCON has been set with
1585 * the correct values.
1587 i = (mci_readl(host, HCON) >> 7) & 0x7;
1588 if (!i) {
1589 host->push_data = dw_mci_push_data16;
1590 host->pull_data = dw_mci_pull_data16;
1591 width = 16;
1592 host->data_shift = 1;
1593 } else if (i == 2) {
1594 host->push_data = dw_mci_push_data64;
1595 host->pull_data = dw_mci_pull_data64;
1596 width = 64;
1597 host->data_shift = 3;
1598 } else {
1599 /* Check for a reserved value, and warn if it is */
1600 WARN((i != 1),
1601 "HCON reports a reserved host data width!\n"
1602 "Defaulting to 32-bit access.\n");
1603 host->push_data = dw_mci_push_data32;
1604 host->pull_data = dw_mci_pull_data32;
1605 width = 32;
1606 host->data_shift = 2;
1609 /* Reset all blocks */
1610 if (!mci_wait_reset(&pdev->dev, host)) {
1611 ret = -ENODEV;
1612 goto err_dmaunmap;
1615 /* Clear the interrupts for the host controller */
1616 mci_writel(host, RINTSTS, 0xFFFFFFFF);
1617 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
1619 /* Put in max timeout */
1620 mci_writel(host, TMOUT, 0xFFFFFFFF);
1623 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
1624 * Tx Mark = fifo_size / 2 DMA Size = 8
1626 fifo_size = mci_readl(host, FIFOTH);
1627 fifo_size = (fifo_size >> 16) & 0x7ff;
1628 mci_writel(host, FIFOTH, ((0x2 << 28) | ((fifo_size/2 - 1) << 16) |
1629 ((fifo_size/2) << 0)));
1631 /* disable clock to CIU */
1632 mci_writel(host, CLKENA, 0);
1633 mci_writel(host, CLKSRC, 0);
1635 tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
1636 tasklet_init(&host->card_tasklet,
1637 dw_mci_tasklet_card, (unsigned long)host);
1639 ret = request_irq(irq, dw_mci_interrupt, 0, "dw-mci", host);
1640 if (ret)
1641 goto err_dmaunmap;
1643 platform_set_drvdata(pdev, host);
1645 if (host->pdata->num_slots)
1646 host->num_slots = host->pdata->num_slots;
1647 else
1648 host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1;
1650 /* We need at least one slot to succeed */
1651 for (i = 0; i < host->num_slots; i++) {
1652 ret = dw_mci_init_slot(host, i);
1653 if (ret) {
1654 ret = -ENODEV;
1655 goto err_init_slot;
1660 * Enable interrupts for command done, data over, data empty, card det,
1661 * receive ready and error such as transmit, receive timeout, crc error
1663 mci_writel(host, RINTSTS, 0xFFFFFFFF);
1664 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
1665 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
1666 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
1667 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */
1669 dev_info(&pdev->dev, "DW MMC controller at irq %d, "
1670 "%d bit host data width\n", irq, width);
1671 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO)
1672 dev_info(&pdev->dev, "Internal DMAC interrupt fix enabled.\n");
1674 return 0;
1676 err_init_slot:
1677 /* De-init any initialized slots */
1678 while (i > 0) {
1679 if (host->slot[i])
1680 dw_mci_cleanup_slot(host->slot[i], i);
1681 i--;
1683 free_irq(irq, host);
1685 err_dmaunmap:
1686 if (host->use_dma && host->dma_ops->exit)
1687 host->dma_ops->exit(host);
1688 dma_free_coherent(&host->pdev->dev, PAGE_SIZE,
1689 host->sg_cpu, host->sg_dma);
1690 iounmap(host->regs);
1692 err_freehost:
1693 kfree(host);
1694 return ret;
1697 static int __exit dw_mci_remove(struct platform_device *pdev)
1699 struct dw_mci *host = platform_get_drvdata(pdev);
1700 int i;
1702 mci_writel(host, RINTSTS, 0xFFFFFFFF);
1703 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
1705 platform_set_drvdata(pdev, NULL);
1707 for (i = 0; i < host->num_slots; i++) {
1708 dev_dbg(&pdev->dev, "remove slot %d\n", i);
1709 if (host->slot[i])
1710 dw_mci_cleanup_slot(host->slot[i], i);
1713 /* disable clock to CIU */
1714 mci_writel(host, CLKENA, 0);
1715 mci_writel(host, CLKSRC, 0);
1717 free_irq(platform_get_irq(pdev, 0), host);
1718 dma_free_coherent(&pdev->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
1720 if (host->use_dma && host->dma_ops->exit)
1721 host->dma_ops->exit(host);
1723 iounmap(host->regs);
1725 kfree(host);
1726 return 0;
1729 #ifdef CONFIG_PM
1731 * TODO: we should probably disable the clock to the card in the suspend path.
1733 static int dw_mci_suspend(struct platform_device *pdev, pm_message_t mesg)
1735 int i, ret;
1736 struct dw_mci *host = platform_get_drvdata(pdev);
1738 for (i = 0; i < host->num_slots; i++) {
1739 struct dw_mci_slot *slot = host->slot[i];
1740 if (!slot)
1741 continue;
1742 ret = mmc_suspend_host(slot->mmc);
1743 if (ret < 0) {
1744 while (--i >= 0) {
1745 slot = host->slot[i];
1746 if (slot)
1747 mmc_resume_host(host->slot[i]->mmc);
1749 return ret;
1753 return 0;
1756 static int dw_mci_resume(struct platform_device *pdev)
1758 int i, ret;
1759 struct dw_mci *host = platform_get_drvdata(pdev);
1761 for (i = 0; i < host->num_slots; i++) {
1762 struct dw_mci_slot *slot = host->slot[i];
1763 if (!slot)
1764 continue;
1765 ret = mmc_resume_host(host->slot[i]->mmc);
1766 if (ret < 0)
1767 return ret;
1770 return 0;
1772 #else
1773 #define dw_mci_suspend NULL
1774 #define dw_mci_resume NULL
1775 #endif /* CONFIG_PM */
1777 static struct platform_driver dw_mci_driver = {
1778 .remove = __exit_p(dw_mci_remove),
1779 .suspend = dw_mci_suspend,
1780 .resume = dw_mci_resume,
1781 .driver = {
1782 .name = "dw_mmc",
1786 static int __init dw_mci_init(void)
1788 return platform_driver_probe(&dw_mci_driver, dw_mci_probe);
1791 static void __exit dw_mci_exit(void)
1793 platform_driver_unregister(&dw_mci_driver);
1796 module_init(dw_mci_init);
1797 module_exit(dw_mci_exit);
1799 MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
1800 MODULE_AUTHOR("NXP Semiconductor VietNam");
1801 MODULE_AUTHOR("Imagination Technologies Ltd");
1802 MODULE_LICENSE("GPL v2");