[MMC] PXA and i.MX: don't avoid sending stop command on error
[linux-2.6/verdex.git] / drivers / mmc / pxamci.c
blob15a5caa0bdeb60b75c88bd713814ae3abdcf67e4
1 /*
2 * linux/drivers/mmc/pxa.c - PXA MMCI driver
4 * Copyright (C) 2003 Russell King, 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 * This hardware is really sick:
11 * - No way to clear interrupts.
12 * - Have to turn off the clock whenever we touch the device.
13 * - Doesn't tell you how many data blocks were transferred.
14 * Yuck!
16 * 1 and 3 byte data transfers not supported
17 * max block length up to 1023
19 #include <linux/config.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/ioport.h>
23 #include <linux/platform_device.h>
24 #include <linux/delay.h>
25 #include <linux/interrupt.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/mmc/host.h>
28 #include <linux/mmc/protocol.h>
30 #include <asm/dma.h>
31 #include <asm/io.h>
32 #include <asm/scatterlist.h>
33 #include <asm/sizes.h>
35 #include <asm/arch/pxa-regs.h>
36 #include <asm/arch/mmc.h>
38 #include "pxamci.h"
40 #define DRIVER_NAME "pxa2xx-mci"
42 #define NR_SG 1
44 struct pxamci_host {
45 struct mmc_host *mmc;
46 spinlock_t lock;
47 struct resource *res;
48 void __iomem *base;
49 int irq;
50 int dma;
51 unsigned int clkrt;
52 unsigned int cmdat;
53 unsigned int imask;
54 unsigned int power_mode;
55 struct pxamci_platform_data *pdata;
57 struct mmc_request *mrq;
58 struct mmc_command *cmd;
59 struct mmc_data *data;
61 dma_addr_t sg_dma;
62 struct pxa_dma_desc *sg_cpu;
63 unsigned int dma_len;
65 unsigned int dma_dir;
68 static void pxamci_stop_clock(struct pxamci_host *host)
70 if (readl(host->base + MMC_STAT) & STAT_CLK_EN) {
71 unsigned long timeout = 10000;
72 unsigned int v;
74 writel(STOP_CLOCK, host->base + MMC_STRPCL);
76 do {
77 v = readl(host->base + MMC_STAT);
78 if (!(v & STAT_CLK_EN))
79 break;
80 udelay(1);
81 } while (timeout--);
83 if (v & STAT_CLK_EN)
84 dev_err(mmc_dev(host->mmc), "unable to stop clock\n");
88 static void pxamci_enable_irq(struct pxamci_host *host, unsigned int mask)
90 unsigned long flags;
92 spin_lock_irqsave(&host->lock, flags);
93 host->imask &= ~mask;
94 writel(host->imask, host->base + MMC_I_MASK);
95 spin_unlock_irqrestore(&host->lock, flags);
98 static void pxamci_disable_irq(struct pxamci_host *host, unsigned int mask)
100 unsigned long flags;
102 spin_lock_irqsave(&host->lock, flags);
103 host->imask |= mask;
104 writel(host->imask, host->base + MMC_I_MASK);
105 spin_unlock_irqrestore(&host->lock, flags);
108 static void pxamci_setup_data(struct pxamci_host *host, struct mmc_data *data)
110 unsigned int nob = data->blocks;
111 unsigned long long clks;
112 unsigned int timeout;
113 u32 dcmd;
114 int i;
116 host->data = data;
118 if (data->flags & MMC_DATA_STREAM)
119 nob = 0xffff;
121 writel(nob, host->base + MMC_NOB);
122 writel(1 << data->blksz_bits, host->base + MMC_BLKLEN);
124 clks = (unsigned long long)data->timeout_ns * CLOCKRATE;
125 do_div(clks, 1000000000UL);
126 timeout = (unsigned int)clks + (data->timeout_clks << host->clkrt);
127 writel((timeout + 255) / 256, host->base + MMC_RDTO);
129 if (data->flags & MMC_DATA_READ) {
130 host->dma_dir = DMA_FROM_DEVICE;
131 dcmd = DCMD_INCTRGADDR | DCMD_FLOWTRG;
132 DRCMRTXMMC = 0;
133 DRCMRRXMMC = host->dma | DRCMR_MAPVLD;
134 } else {
135 host->dma_dir = DMA_TO_DEVICE;
136 dcmd = DCMD_INCSRCADDR | DCMD_FLOWSRC;
137 DRCMRRXMMC = 0;
138 DRCMRTXMMC = host->dma | DRCMR_MAPVLD;
141 dcmd |= DCMD_BURST32 | DCMD_WIDTH1;
143 host->dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
144 host->dma_dir);
146 for (i = 0; i < host->dma_len; i++) {
147 if (data->flags & MMC_DATA_READ) {
148 host->sg_cpu[i].dsadr = host->res->start + MMC_RXFIFO;
149 host->sg_cpu[i].dtadr = sg_dma_address(&data->sg[i]);
150 } else {
151 host->sg_cpu[i].dsadr = sg_dma_address(&data->sg[i]);
152 host->sg_cpu[i].dtadr = host->res->start + MMC_TXFIFO;
154 host->sg_cpu[i].dcmd = dcmd | sg_dma_len(&data->sg[i]);
155 host->sg_cpu[i].ddadr = host->sg_dma + (i + 1) *
156 sizeof(struct pxa_dma_desc);
158 host->sg_cpu[host->dma_len - 1].ddadr = DDADR_STOP;
159 wmb();
161 DDADR(host->dma) = host->sg_dma;
162 DCSR(host->dma) = DCSR_RUN;
165 static void pxamci_start_cmd(struct pxamci_host *host, struct mmc_command *cmd, unsigned int cmdat)
167 WARN_ON(host->cmd != NULL);
168 host->cmd = cmd;
170 if (cmd->flags & MMC_RSP_BUSY)
171 cmdat |= CMDAT_BUSY;
173 #define RSP_TYPE(x) ((x) & ~(MMC_RSP_BUSY|MMC_RSP_OPCODE))
174 switch (RSP_TYPE(mmc_resp_type(cmd))) {
175 case RSP_TYPE(MMC_RSP_R1): /* r1, r1b, r6 */
176 cmdat |= CMDAT_RESP_SHORT;
177 break;
178 case RSP_TYPE(MMC_RSP_R3):
179 cmdat |= CMDAT_RESP_R3;
180 break;
181 case RSP_TYPE(MMC_RSP_R2):
182 cmdat |= CMDAT_RESP_R2;
183 break;
184 default:
185 break;
188 writel(cmd->opcode, host->base + MMC_CMD);
189 writel(cmd->arg >> 16, host->base + MMC_ARGH);
190 writel(cmd->arg & 0xffff, host->base + MMC_ARGL);
191 writel(cmdat, host->base + MMC_CMDAT);
192 writel(host->clkrt, host->base + MMC_CLKRT);
194 writel(START_CLOCK, host->base + MMC_STRPCL);
196 pxamci_enable_irq(host, END_CMD_RES);
199 static void pxamci_finish_request(struct pxamci_host *host, struct mmc_request *mrq)
201 pr_debug("PXAMCI: request done\n");
202 host->mrq = NULL;
203 host->cmd = NULL;
204 host->data = NULL;
205 mmc_request_done(host->mmc, mrq);
208 static int pxamci_cmd_done(struct pxamci_host *host, unsigned int stat)
210 struct mmc_command *cmd = host->cmd;
211 int i;
212 u32 v;
214 if (!cmd)
215 return 0;
217 host->cmd = NULL;
220 * Did I mention this is Sick. We always need to
221 * discard the upper 8 bits of the first 16-bit word.
223 v = readl(host->base + MMC_RES) & 0xffff;
224 for (i = 0; i < 4; i++) {
225 u32 w1 = readl(host->base + MMC_RES) & 0xffff;
226 u32 w2 = readl(host->base + MMC_RES) & 0xffff;
227 cmd->resp[i] = v << 24 | w1 << 8 | w2 >> 8;
228 v = w2;
231 if (stat & STAT_TIME_OUT_RESPONSE) {
232 cmd->error = MMC_ERR_TIMEOUT;
233 } else if (stat & STAT_RES_CRC_ERR && cmd->flags & MMC_RSP_CRC) {
234 #ifdef CONFIG_PXA27x
236 * workaround for erratum #42:
237 * Intel PXA27x Family Processor Specification Update Rev 001
239 if (cmd->opcode == MMC_ALL_SEND_CID ||
240 cmd->opcode == MMC_SEND_CSD ||
241 cmd->opcode == MMC_SEND_CID) {
242 /* a bogus CRC error can appear if the msb of
243 the 15 byte response is a one */
244 if ((cmd->resp[0] & 0x80000000) == 0)
245 cmd->error = MMC_ERR_BADCRC;
246 } else {
247 pr_debug("ignoring CRC from command %d - *risky*\n",cmd->opcode);
249 #else
250 cmd->error = MMC_ERR_BADCRC;
251 #endif
254 pxamci_disable_irq(host, END_CMD_RES);
255 if (host->data && cmd->error == MMC_ERR_NONE) {
256 pxamci_enable_irq(host, DATA_TRAN_DONE);
257 } else {
258 pxamci_finish_request(host, host->mrq);
261 return 1;
264 static int pxamci_data_done(struct pxamci_host *host, unsigned int stat)
266 struct mmc_data *data = host->data;
268 if (!data)
269 return 0;
271 DCSR(host->dma) = 0;
272 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->dma_len,
273 host->dma_dir);
275 if (stat & STAT_READ_TIME_OUT)
276 data->error = MMC_ERR_TIMEOUT;
277 else if (stat & (STAT_CRC_READ_ERROR|STAT_CRC_WRITE_ERROR))
278 data->error = MMC_ERR_BADCRC;
281 * There appears to be a hardware design bug here. There seems to
282 * be no way to find out how much data was transferred to the card.
283 * This means that if there was an error on any block, we mark all
284 * data blocks as being in error.
286 if (data->error == MMC_ERR_NONE)
287 data->bytes_xfered = data->blocks << data->blksz_bits;
288 else
289 data->bytes_xfered = 0;
291 pxamci_disable_irq(host, DATA_TRAN_DONE);
293 host->data = NULL;
294 if (host->mrq->stop) {
295 pxamci_stop_clock(host);
296 pxamci_start_cmd(host, host->mrq->stop, 0);
297 } else {
298 pxamci_finish_request(host, host->mrq);
301 return 1;
304 static irqreturn_t pxamci_irq(int irq, void *devid, struct pt_regs *regs)
306 struct pxamci_host *host = devid;
307 unsigned int ireg;
308 int handled = 0;
310 ireg = readl(host->base + MMC_I_REG);
312 pr_debug("PXAMCI: irq %08x\n", ireg);
314 if (ireg) {
315 unsigned stat = readl(host->base + MMC_STAT);
317 pr_debug("PXAMCI: stat %08x\n", stat);
319 if (ireg & END_CMD_RES)
320 handled |= pxamci_cmd_done(host, stat);
321 if (ireg & DATA_TRAN_DONE)
322 handled |= pxamci_data_done(host, stat);
325 return IRQ_RETVAL(handled);
328 static void pxamci_request(struct mmc_host *mmc, struct mmc_request *mrq)
330 struct pxamci_host *host = mmc_priv(mmc);
331 unsigned int cmdat;
333 WARN_ON(host->mrq != NULL);
335 host->mrq = mrq;
337 pxamci_stop_clock(host);
339 cmdat = host->cmdat;
340 host->cmdat &= ~CMDAT_INIT;
342 if (mrq->data) {
343 pxamci_setup_data(host, mrq->data);
345 cmdat &= ~CMDAT_BUSY;
346 cmdat |= CMDAT_DATAEN | CMDAT_DMAEN;
347 if (mrq->data->flags & MMC_DATA_WRITE)
348 cmdat |= CMDAT_WRITE;
350 if (mrq->data->flags & MMC_DATA_STREAM)
351 cmdat |= CMDAT_STREAM;
354 pxamci_start_cmd(host, mrq->cmd, cmdat);
357 static int pxamci_get_ro(struct mmc_host *mmc)
359 struct pxamci_host *host = mmc_priv(mmc);
361 if (host->pdata && host->pdata->get_ro)
362 return host->pdata->get_ro(mmc->dev);
363 /* Host doesn't support read only detection so assume writeable */
364 return 0;
367 static void pxamci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
369 struct pxamci_host *host = mmc_priv(mmc);
371 pr_debug("pxamci_set_ios: clock %u power %u vdd %u.%02u\n",
372 ios->clock, ios->power_mode, ios->vdd / 100,
373 ios->vdd % 100);
375 if (ios->clock) {
376 unsigned int clk = CLOCKRATE / ios->clock;
377 if (CLOCKRATE / clk > ios->clock)
378 clk <<= 1;
379 host->clkrt = fls(clk) - 1;
380 pxa_set_cken(CKEN12_MMC, 1);
383 * we write clkrt on the next command
385 } else {
386 pxamci_stop_clock(host);
387 pxa_set_cken(CKEN12_MMC, 0);
390 if (host->power_mode != ios->power_mode) {
391 host->power_mode = ios->power_mode;
393 if (host->pdata && host->pdata->setpower)
394 host->pdata->setpower(mmc->dev, ios->vdd);
396 if (ios->power_mode == MMC_POWER_ON)
397 host->cmdat |= CMDAT_INIT;
400 pr_debug("pxamci_set_ios: clkrt = %x cmdat = %x\n",
401 host->clkrt, host->cmdat);
404 static struct mmc_host_ops pxamci_ops = {
405 .request = pxamci_request,
406 .get_ro = pxamci_get_ro,
407 .set_ios = pxamci_set_ios,
410 static void pxamci_dma_irq(int dma, void *devid, struct pt_regs *regs)
412 printk(KERN_ERR "DMA%d: IRQ???\n", dma);
413 DCSR(dma) = DCSR_STARTINTR|DCSR_ENDINTR|DCSR_BUSERR;
416 static irqreturn_t pxamci_detect_irq(int irq, void *devid, struct pt_regs *regs)
418 struct pxamci_host *host = mmc_priv(devid);
420 mmc_detect_change(devid, host->pdata->detect_delay);
421 return IRQ_HANDLED;
424 static int pxamci_probe(struct platform_device *pdev)
426 struct mmc_host *mmc;
427 struct pxamci_host *host = NULL;
428 struct resource *r;
429 int ret, irq;
431 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
432 irq = platform_get_irq(pdev, 0);
433 if (!r || irq < 0)
434 return -ENXIO;
436 r = request_mem_region(r->start, SZ_4K, DRIVER_NAME);
437 if (!r)
438 return -EBUSY;
440 mmc = mmc_alloc_host(sizeof(struct pxamci_host), &pdev->dev);
441 if (!mmc) {
442 ret = -ENOMEM;
443 goto out;
446 mmc->ops = &pxamci_ops;
447 mmc->f_min = CLOCKRATE_MIN;
448 mmc->f_max = CLOCKRATE_MAX;
451 * We can do SG-DMA, but we don't because we never know how much
452 * data we successfully wrote to the card.
454 mmc->max_phys_segs = NR_SG;
457 * Our hardware DMA can handle a maximum of one page per SG entry.
459 mmc->max_seg_size = PAGE_SIZE;
461 host = mmc_priv(mmc);
462 host->mmc = mmc;
463 host->dma = -1;
464 host->pdata = pdev->dev.platform_data;
465 mmc->ocr_avail = host->pdata ?
466 host->pdata->ocr_mask :
467 MMC_VDD_32_33|MMC_VDD_33_34;
469 host->sg_cpu = dma_alloc_coherent(&pdev->dev, PAGE_SIZE, &host->sg_dma, GFP_KERNEL);
470 if (!host->sg_cpu) {
471 ret = -ENOMEM;
472 goto out;
475 spin_lock_init(&host->lock);
476 host->res = r;
477 host->irq = irq;
478 host->imask = MMC_I_MASK_ALL;
480 host->base = ioremap(r->start, SZ_4K);
481 if (!host->base) {
482 ret = -ENOMEM;
483 goto out;
487 * Ensure that the host controller is shut down, and setup
488 * with our defaults.
490 pxamci_stop_clock(host);
491 writel(0, host->base + MMC_SPI);
492 writel(64, host->base + MMC_RESTO);
493 writel(host->imask, host->base + MMC_I_MASK);
495 host->dma = pxa_request_dma(DRIVER_NAME, DMA_PRIO_LOW,
496 pxamci_dma_irq, host);
497 if (host->dma < 0) {
498 ret = -EBUSY;
499 goto out;
502 ret = request_irq(host->irq, pxamci_irq, 0, DRIVER_NAME, host);
503 if (ret)
504 goto out;
506 platform_set_drvdata(pdev, mmc);
508 if (host->pdata && host->pdata->init)
509 host->pdata->init(&pdev->dev, pxamci_detect_irq, mmc);
511 mmc_add_host(mmc);
513 return 0;
515 out:
516 if (host) {
517 if (host->dma >= 0)
518 pxa_free_dma(host->dma);
519 if (host->base)
520 iounmap(host->base);
521 if (host->sg_cpu)
522 dma_free_coherent(&pdev->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
524 if (mmc)
525 mmc_free_host(mmc);
526 release_resource(r);
527 return ret;
530 static int pxamci_remove(struct platform_device *pdev)
532 struct mmc_host *mmc = platform_get_drvdata(pdev);
534 platform_set_drvdata(pdev, NULL);
536 if (mmc) {
537 struct pxamci_host *host = mmc_priv(mmc);
539 if (host->pdata && host->pdata->exit)
540 host->pdata->exit(&pdev->dev, mmc);
542 mmc_remove_host(mmc);
544 pxamci_stop_clock(host);
545 writel(TXFIFO_WR_REQ|RXFIFO_RD_REQ|CLK_IS_OFF|STOP_CMD|
546 END_CMD_RES|PRG_DONE|DATA_TRAN_DONE,
547 host->base + MMC_I_MASK);
549 DRCMRRXMMC = 0;
550 DRCMRTXMMC = 0;
552 free_irq(host->irq, host);
553 pxa_free_dma(host->dma);
554 iounmap(host->base);
555 dma_free_coherent(&pdev->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
557 release_resource(host->res);
559 mmc_free_host(mmc);
561 return 0;
564 #ifdef CONFIG_PM
565 static int pxamci_suspend(struct platform_device *dev, pm_message_t state)
567 struct mmc_host *mmc = platform_get_drvdata(dev);
568 int ret = 0;
570 if (mmc)
571 ret = mmc_suspend_host(mmc, state);
573 return ret;
576 static int pxamci_resume(struct platform_device *dev)
578 struct mmc_host *mmc = platform_get_drvdata(dev);
579 int ret = 0;
581 if (mmc)
582 ret = mmc_resume_host(mmc);
584 return ret;
586 #else
587 #define pxamci_suspend NULL
588 #define pxamci_resume NULL
589 #endif
591 static struct platform_driver pxamci_driver = {
592 .probe = pxamci_probe,
593 .remove = pxamci_remove,
594 .suspend = pxamci_suspend,
595 .resume = pxamci_resume,
596 .driver = {
597 .name = DRIVER_NAME,
601 static int __init pxamci_init(void)
603 return platform_driver_register(&pxamci_driver);
606 static void __exit pxamci_exit(void)
608 platform_driver_unregister(&pxamci_driver);
611 module_init(pxamci_init);
612 module_exit(pxamci_exit);
614 MODULE_DESCRIPTION("PXA Multimedia Card Interface Driver");
615 MODULE_LICENSE("GPL");