2 * linux/drivers/mmc/mmci.c - ARM PrimeCell MMCI PL180/1 driver
4 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/config.h>
11 #include <linux/module.h>
12 #include <linux/moduleparam.h>
13 #include <linux/init.h>
14 #include <linux/ioport.h>
15 #include <linux/device.h>
16 #include <linux/interrupt.h>
17 #include <linux/delay.h>
18 #include <linux/err.h>
19 #include <linux/highmem.h>
20 #include <linux/mmc/host.h>
21 #include <linux/mmc/protocol.h>
22 #include <linux/amba/bus.h>
23 #include <linux/clk.h>
25 #include <asm/cacheflush.h>
26 #include <asm/div64.h>
28 #include <asm/scatterlist.h>
29 #include <asm/sizes.h>
30 #include <asm/mach/mmc.h>
34 #define DRIVER_NAME "mmci-pl18x"
36 #ifdef CONFIG_MMC_DEBUG
37 #define DBG(host,fmt,args...) \
38 pr_debug("%s: %s: " fmt, mmc_hostname(host->mmc), __func__ , args)
40 #define DBG(host,fmt,args...) do { } while (0)
43 static unsigned int fmax = 515633;
46 mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
48 writel(0, host->base + MMCICOMMAND);
54 mrq->data->bytes_xfered = host->data_xfered;
57 * Need to drop the host lock here; mmc_request_done may call
58 * back into the driver...
60 spin_unlock(&host->lock);
61 mmc_request_done(host->mmc, mrq);
62 spin_lock(&host->lock);
65 static void mmci_stop_data(struct mmci_host *host)
67 writel(0, host->base + MMCIDATACTRL);
68 writel(0, host->base + MMCIMASK1);
72 static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
74 unsigned int datactrl, timeout, irqmask;
75 unsigned long long clks;
78 DBG(host, "blksz %04x blks %04x flags %08x\n",
79 1 << data->blksz_bits, data->blocks, data->flags);
82 host->size = data->blocks << data->blksz_bits;
83 host->data_xfered = 0;
85 mmci_init_sg(host, data);
87 clks = (unsigned long long)data->timeout_ns * host->cclk;
88 do_div(clks, 1000000000UL);
90 timeout = data->timeout_clks + (unsigned int)clks;
93 writel(timeout, base + MMCIDATATIMER);
94 writel(host->size, base + MMCIDATALENGTH);
96 datactrl = MCI_DPSM_ENABLE | data->blksz_bits << 4;
97 if (data->flags & MMC_DATA_READ) {
98 datactrl |= MCI_DPSM_DIRECTION;
99 irqmask = MCI_RXFIFOHALFFULLMASK;
102 * We don't actually need to include "FIFO empty" here
103 * since its implicit in "FIFO half empty".
105 irqmask = MCI_TXFIFOHALFEMPTYMASK;
108 writel(datactrl, base + MMCIDATACTRL);
109 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
110 writel(irqmask, base + MMCIMASK1);
114 mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
116 void __iomem *base = host->base;
118 DBG(host, "op %02x arg %08x flags %08x\n",
119 cmd->opcode, cmd->arg, cmd->flags);
121 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
122 writel(0, base + MMCICOMMAND);
126 c |= cmd->opcode | MCI_CPSM_ENABLE;
127 if (cmd->flags & MMC_RSP_PRESENT) {
128 if (cmd->flags & MMC_RSP_136)
129 c |= MCI_CPSM_LONGRSP;
130 c |= MCI_CPSM_RESPONSE;
133 c |= MCI_CPSM_INTERRUPT;
137 writel(cmd->arg, base + MMCIARGUMENT);
138 writel(c, base + MMCICOMMAND);
142 mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
145 if (status & MCI_DATABLOCKEND) {
146 host->data_xfered += 1 << data->blksz_bits;
148 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
149 if (status & MCI_DATACRCFAIL)
150 data->error = MMC_ERR_BADCRC;
151 else if (status & MCI_DATATIMEOUT)
152 data->error = MMC_ERR_TIMEOUT;
153 else if (status & (MCI_TXUNDERRUN|MCI_RXOVERRUN))
154 data->error = MMC_ERR_FIFO;
155 status |= MCI_DATAEND;
158 * We hit an error condition. Ensure that any data
159 * partially written to a page is properly coherent.
161 if (host->sg_len && data->flags & MMC_DATA_READ)
162 flush_dcache_page(host->sg_ptr->page);
164 if (status & MCI_DATAEND) {
165 mmci_stop_data(host);
168 mmci_request_end(host, data->mrq);
170 mmci_start_command(host, data->stop, 0);
176 mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
179 void __iomem *base = host->base;
183 cmd->resp[0] = readl(base + MMCIRESPONSE0);
184 cmd->resp[1] = readl(base + MMCIRESPONSE1);
185 cmd->resp[2] = readl(base + MMCIRESPONSE2);
186 cmd->resp[3] = readl(base + MMCIRESPONSE3);
188 if (status & MCI_CMDTIMEOUT) {
189 cmd->error = MMC_ERR_TIMEOUT;
190 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
191 cmd->error = MMC_ERR_BADCRC;
194 if (!cmd->data || cmd->error != MMC_ERR_NONE) {
195 mmci_request_end(host, cmd->mrq);
196 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
197 mmci_start_data(host, cmd->data);
201 static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
203 void __iomem *base = host->base;
208 int count = host->size - (readl(base + MMCIFIFOCNT) << 2);
216 readsl(base + MMCIFIFO, ptr, count >> 2);
224 status = readl(base + MMCISTATUS);
225 } while (status & MCI_RXDATAAVLBL);
230 static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
232 void __iomem *base = host->base;
236 unsigned int count, maxcnt;
238 maxcnt = status & MCI_TXFIFOEMPTY ? MCI_FIFOSIZE : MCI_FIFOHALFSIZE;
239 count = min(remain, maxcnt);
241 writesl(base + MMCIFIFO, ptr, count >> 2);
249 status = readl(base + MMCISTATUS);
250 } while (status & MCI_TXFIFOHALFEMPTY);
256 * PIO data transfer IRQ handler.
258 static irqreturn_t mmci_pio_irq(int irq, void *dev_id, struct pt_regs *regs)
260 struct mmci_host *host = dev_id;
261 void __iomem *base = host->base;
264 status = readl(base + MMCISTATUS);
266 DBG(host, "irq1 %08x\n", status);
270 unsigned int remain, len;
274 * For write, we only need to test the half-empty flag
275 * here - if the FIFO is completely empty, then by
276 * definition it is more than half empty.
278 * For read, check for data available.
280 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
284 * Map the current scatter buffer.
286 buffer = mmci_kmap_atomic(host, &flags) + host->sg_off;
287 remain = host->sg_ptr->length - host->sg_off;
290 if (status & MCI_RXACTIVE)
291 len = mmci_pio_read(host, buffer, remain);
292 if (status & MCI_TXACTIVE)
293 len = mmci_pio_write(host, buffer, remain, status);
298 mmci_kunmap_atomic(host, buffer, &flags);
308 * If we were reading, and we have completed this
309 * page, ensure that the data cache is coherent.
311 if (status & MCI_RXACTIVE)
312 flush_dcache_page(host->sg_ptr->page);
314 if (!mmci_next_sg(host))
317 status = readl(base + MMCISTATUS);
321 * If we're nearing the end of the read, switch to
322 * "any data available" mode.
324 if (status & MCI_RXACTIVE && host->size < MCI_FIFOSIZE)
325 writel(MCI_RXDATAAVLBLMASK, base + MMCIMASK1);
328 * If we run out of data, disable the data IRQs; this
329 * prevents a race where the FIFO becomes empty before
330 * the chip itself has disabled the data path, and
331 * stops us racing with our data end IRQ.
333 if (host->size == 0) {
334 writel(0, base + MMCIMASK1);
335 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
342 * Handle completion of command and data transfers.
344 static irqreturn_t mmci_irq(int irq, void *dev_id, struct pt_regs *regs)
346 struct mmci_host *host = dev_id;
350 spin_lock(&host->lock);
353 struct mmc_command *cmd;
354 struct mmc_data *data;
356 status = readl(host->base + MMCISTATUS);
357 status &= readl(host->base + MMCIMASK0);
358 writel(status, host->base + MMCICLEAR);
360 DBG(host, "irq0 %08x\n", status);
363 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|
364 MCI_RXOVERRUN|MCI_DATAEND|MCI_DATABLOCKEND) && data)
365 mmci_data_irq(host, data, status);
368 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
369 mmci_cmd_irq(host, cmd, status);
374 spin_unlock(&host->lock);
376 return IRQ_RETVAL(ret);
379 static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
381 struct mmci_host *host = mmc_priv(mmc);
383 WARN_ON(host->mrq != NULL);
385 spin_lock_irq(&host->lock);
389 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
390 mmci_start_data(host, mrq->data);
392 mmci_start_command(host, mrq->cmd, 0);
394 spin_unlock_irq(&host->lock);
397 static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
399 struct mmci_host *host = mmc_priv(mmc);
400 u32 clk = 0, pwr = 0;
402 DBG(host, "clock %uHz busmode %u powermode %u Vdd %u\n",
403 ios->clock, ios->bus_mode, ios->power_mode, ios->vdd);
406 if (ios->clock >= host->mclk) {
407 clk = MCI_CLK_BYPASS;
408 host->cclk = host->mclk;
410 clk = host->mclk / (2 * ios->clock) - 1;
413 host->cclk = host->mclk / (2 * (clk + 1));
415 clk |= MCI_CLK_ENABLE;
418 if (host->plat->translate_vdd)
419 pwr |= host->plat->translate_vdd(mmc_dev(mmc), ios->vdd);
421 switch (ios->power_mode) {
432 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
435 writel(clk, host->base + MMCICLOCK);
437 if (host->pwr != pwr) {
439 writel(pwr, host->base + MMCIPOWER);
443 static struct mmc_host_ops mmci_ops = {
444 .request = mmci_request,
445 .set_ios = mmci_set_ios,
448 static void mmci_check_status(unsigned long data)
450 struct mmci_host *host = (struct mmci_host *)data;
453 status = host->plat->status(mmc_dev(host->mmc));
454 if (status ^ host->oldstat)
455 mmc_detect_change(host->mmc, 0);
457 host->oldstat = status;
458 mod_timer(&host->timer, jiffies + HZ);
461 static int mmci_probe(struct amba_device *dev, void *id)
463 struct mmc_platform_data *plat = dev->dev.platform_data;
464 struct mmci_host *host;
465 struct mmc_host *mmc;
468 /* must have platform data */
474 ret = amba_request_regions(dev, DRIVER_NAME);
478 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
484 host = mmc_priv(mmc);
485 host->clk = clk_get(&dev->dev, "MCLK");
486 if (IS_ERR(host->clk)) {
487 ret = PTR_ERR(host->clk);
492 ret = clk_enable(host->clk);
497 host->mclk = clk_get_rate(host->clk);
499 host->base = ioremap(dev->res.start, SZ_4K);
505 mmc->ops = &mmci_ops;
506 mmc->f_min = (host->mclk + 511) / 512;
507 mmc->f_max = min(host->mclk, fmax);
508 mmc->ocr_avail = plat->ocr_mask;
513 mmc->max_hw_segs = 16;
514 mmc->max_phys_segs = NR_SG;
517 * Since we only have a 16-bit data length register, we must
518 * ensure that we don't exceed 2^16-1 bytes in a single request.
519 * Choose 64 (512-byte) sectors as the limit.
521 mmc->max_sectors = 64;
524 * Set the maximum segment size. Since we aren't doing DMA
525 * (yet) we are only limited by the data length register.
527 mmc->max_seg_size = mmc->max_sectors << 9;
529 spin_lock_init(&host->lock);
531 writel(0, host->base + MMCIMASK0);
532 writel(0, host->base + MMCIMASK1);
533 writel(0xfff, host->base + MMCICLEAR);
535 ret = request_irq(dev->irq[0], mmci_irq, SA_SHIRQ, DRIVER_NAME " (cmd)", host);
539 ret = request_irq(dev->irq[1], mmci_pio_irq, SA_SHIRQ, DRIVER_NAME " (pio)", host);
543 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
545 amba_set_drvdata(dev, mmc);
549 printk(KERN_INFO "%s: MMCI rev %x cfg %02x at 0x%08lx irq %d,%d\n",
550 mmc_hostname(mmc), amba_rev(dev), amba_config(dev),
551 dev->res.start, dev->irq[0], dev->irq[1]);
553 init_timer(&host->timer);
554 host->timer.data = (unsigned long)host;
555 host->timer.function = mmci_check_status;
556 host->timer.expires = jiffies + HZ;
557 add_timer(&host->timer);
562 free_irq(dev->irq[0], host);
566 clk_disable(host->clk);
572 amba_release_regions(dev);
577 static int mmci_remove(struct amba_device *dev)
579 struct mmc_host *mmc = amba_get_drvdata(dev);
581 amba_set_drvdata(dev, NULL);
584 struct mmci_host *host = mmc_priv(mmc);
586 del_timer_sync(&host->timer);
588 mmc_remove_host(mmc);
590 writel(0, host->base + MMCIMASK0);
591 writel(0, host->base + MMCIMASK1);
593 writel(0, host->base + MMCICOMMAND);
594 writel(0, host->base + MMCIDATACTRL);
596 free_irq(dev->irq[0], host);
597 free_irq(dev->irq[1], host);
600 clk_disable(host->clk);
605 amba_release_regions(dev);
612 static int mmci_suspend(struct amba_device *dev, pm_message_t state)
614 struct mmc_host *mmc = amba_get_drvdata(dev);
618 struct mmci_host *host = mmc_priv(mmc);
620 ret = mmc_suspend_host(mmc, state);
622 writel(0, host->base + MMCIMASK0);
628 static int mmci_resume(struct amba_device *dev)
630 struct mmc_host *mmc = amba_get_drvdata(dev);
634 struct mmci_host *host = mmc_priv(mmc);
636 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
638 ret = mmc_resume_host(mmc);
644 #define mmci_suspend NULL
645 #define mmci_resume NULL
648 static struct amba_id mmci_ids[] = {
660 static struct amba_driver mmci_driver = {
665 .remove = mmci_remove,
666 .suspend = mmci_suspend,
667 .resume = mmci_resume,
668 .id_table = mmci_ids,
671 static int __init mmci_init(void)
673 return amba_driver_register(&mmci_driver);
676 static void __exit mmci_exit(void)
678 amba_driver_unregister(&mmci_driver);
681 module_init(mmci_init);
682 module_exit(mmci_exit);
683 module_param(fmax, uint, 0444);
685 MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
686 MODULE_LICENSE("GPL");