blob: 37ee7f8dc82fe305195472e0ad5dd281e5c5f219 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/mmc/mmci.c - ARM PrimeCell MMCI PL180/1 driver
3 *
4 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
5 *
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.
9 */
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>
Russell Kinga62c80e2006-01-07 13:52:45 +000022#include <linux/amba/bus.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000023#include <linux/clk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Russell Kinge9c091b2006-01-04 16:24:05 +000025#include <asm/cacheflush.h>
Russell King7b09cda2005-07-01 12:02:59 +010026#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/scatterlist.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010029#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/mach/mmc.h>
31
32#include "mmci.h"
33
34#define DRIVER_NAME "mmci-pl18x"
35
36#ifdef CONFIG_MMC_DEBUG
37#define DBG(host,fmt,args...) \
Russell Kingd366b642005-08-19 09:40:08 +010038 pr_debug("%s: %s: " fmt, mmc_hostname(host->mmc), __func__ , args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#else
40#define DBG(host,fmt,args...) do { } while (0)
41#endif
42
43static unsigned int fmax = 515633;
44
45static void
46mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
47{
48 writel(0, host->base + MMCICOMMAND);
49
50 host->mrq = NULL;
51 host->cmd = NULL;
52
53 if (mrq->data)
54 mrq->data->bytes_xfered = host->data_xfered;
55
56 /*
57 * Need to drop the host lock here; mmc_request_done may call
58 * back into the driver...
59 */
60 spin_unlock(&host->lock);
61 mmc_request_done(host->mmc, mrq);
62 spin_lock(&host->lock);
63}
64
65static void mmci_stop_data(struct mmci_host *host)
66{
67 writel(0, host->base + MMCIDATACTRL);
68 writel(0, host->base + MMCIMASK1);
69 host->data = NULL;
70}
71
72static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
73{
74 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +010075 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 void __iomem *base;
77
78 DBG(host, "blksz %04x blks %04x flags %08x\n",
79 1 << data->blksz_bits, data->blocks, data->flags);
80
81 host->data = data;
82 host->size = data->blocks << data->blksz_bits;
83 host->data_xfered = 0;
84
85 mmci_init_sg(host, data);
86
Russell King7b09cda2005-07-01 12:02:59 +010087 clks = (unsigned long long)data->timeout_ns * host->cclk;
88 do_div(clks, 1000000000UL);
89
90 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 base = host->base;
93 writel(timeout, base + MMCIDATATIMER);
94 writel(host->size, base + MMCIDATALENGTH);
95
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;
100 } else {
101 /*
102 * We don't actually need to include "FIFO empty" here
103 * since its implicit in "FIFO half empty".
104 */
105 irqmask = MCI_TXFIFOHALFEMPTYMASK;
106 }
107
108 writel(datactrl, base + MMCIDATACTRL);
109 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
110 writel(irqmask, base + MMCIMASK1);
111}
112
113static void
114mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
115{
116 void __iomem *base = host->base;
117
118 DBG(host, "op %02x arg %08x flags %08x\n",
119 cmd->opcode, cmd->arg, cmd->flags);
120
121 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
122 writel(0, base + MMCICOMMAND);
123 udelay(1);
124 }
125
126 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000127 if (cmd->flags & MMC_RSP_PRESENT) {
128 if (cmd->flags & MMC_RSP_136)
129 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132 if (/*interrupt*/0)
133 c |= MCI_CPSM_INTERRUPT;
134
135 host->cmd = cmd;
136
137 writel(cmd->arg, base + MMCIARGUMENT);
138 writel(c, base + MMCICOMMAND);
139}
140
141static void
142mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
143 unsigned int status)
144{
145 if (status & MCI_DATABLOCKEND) {
146 host->data_xfered += 1 << data->blksz_bits;
147 }
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;
Russell Kinge9c091b2006-01-04 16:24:05 +0000156
157 /*
158 * We hit an error condition. Ensure that any data
159 * partially written to a page is properly coherent.
160 */
161 if (host->sg_len && data->flags & MMC_DATA_READ)
162 flush_dcache_page(host->sg_ptr->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164 if (status & MCI_DATAEND) {
165 mmci_stop_data(host);
166
167 if (!data->stop) {
168 mmci_request_end(host, data->mrq);
169 } else {
170 mmci_start_command(host, data->stop, 0);
171 }
172 }
173}
174
175static void
176mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
177 unsigned int status)
178{
179 void __iomem *base = host->base;
180
181 host->cmd = NULL;
182
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);
187
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;
192 }
193
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);
198 }
199}
200
201static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
202{
203 void __iomem *base = host->base;
204 char *ptr = buffer;
205 u32 status;
206
207 do {
208 int count = host->size - (readl(base + MMCIFIFOCNT) << 2);
209
210 if (count > remain)
211 count = remain;
212
213 if (count <= 0)
214 break;
215
216 readsl(base + MMCIFIFO, ptr, count >> 2);
217
218 ptr += count;
219 remain -= count;
220
221 if (remain == 0)
222 break;
223
224 status = readl(base + MMCISTATUS);
225 } while (status & MCI_RXDATAAVLBL);
226
227 return ptr - buffer;
228}
229
230static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
231{
232 void __iomem *base = host->base;
233 char *ptr = buffer;
234
235 do {
236 unsigned int count, maxcnt;
237
238 maxcnt = status & MCI_TXFIFOEMPTY ? MCI_FIFOSIZE : MCI_FIFOHALFSIZE;
239 count = min(remain, maxcnt);
240
241 writesl(base + MMCIFIFO, ptr, count >> 2);
242
243 ptr += count;
244 remain -= count;
245
246 if (remain == 0)
247 break;
248
249 status = readl(base + MMCISTATUS);
250 } while (status & MCI_TXFIFOHALFEMPTY);
251
252 return ptr - buffer;
253}
254
255/*
256 * PIO data transfer IRQ handler.
257 */
258static irqreturn_t mmci_pio_irq(int irq, void *dev_id, struct pt_regs *regs)
259{
260 struct mmci_host *host = dev_id;
261 void __iomem *base = host->base;
262 u32 status;
263
264 status = readl(base + MMCISTATUS);
265
266 DBG(host, "irq1 %08x\n", status);
267
268 do {
269 unsigned long flags;
270 unsigned int remain, len;
271 char *buffer;
272
273 /*
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.
277 *
278 * For read, check for data available.
279 */
280 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
281 break;
282
283 /*
284 * Map the current scatter buffer.
285 */
286 buffer = mmci_kmap_atomic(host, &flags) + host->sg_off;
287 remain = host->sg_ptr->length - host->sg_off;
288
289 len = 0;
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);
294
295 /*
296 * Unmap the buffer.
297 */
Evgeniy Polyakovf3e26282006-01-05 10:31:23 +0000298 mmci_kunmap_atomic(host, buffer, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 host->sg_off += len;
301 host->size -= len;
302 remain -= len;
303
304 if (remain)
305 break;
306
Russell Kinge9c091b2006-01-04 16:24:05 +0000307 /*
308 * If we were reading, and we have completed this
309 * page, ensure that the data cache is coherent.
310 */
311 if (status & MCI_RXACTIVE)
312 flush_dcache_page(host->sg_ptr->page);
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (!mmci_next_sg(host))
315 break;
316
317 status = readl(base + MMCISTATUS);
318 } while (1);
319
320 /*
321 * If we're nearing the end of the read, switch to
322 * "any data available" mode.
323 */
324 if (status & MCI_RXACTIVE && host->size < MCI_FIFOSIZE)
325 writel(MCI_RXDATAAVLBLMASK, base + MMCIMASK1);
326
327 /*
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.
332 */
333 if (host->size == 0) {
334 writel(0, base + MMCIMASK1);
335 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
336 }
337
338 return IRQ_HANDLED;
339}
340
341/*
342 * Handle completion of command and data transfers.
343 */
344static irqreturn_t mmci_irq(int irq, void *dev_id, struct pt_regs *regs)
345{
346 struct mmci_host *host = dev_id;
347 u32 status;
348 int ret = 0;
349
350 spin_lock(&host->lock);
351
352 do {
353 struct mmc_command *cmd;
354 struct mmc_data *data;
355
356 status = readl(host->base + MMCISTATUS);
357 status &= readl(host->base + MMCIMASK0);
358 writel(status, host->base + MMCICLEAR);
359
360 DBG(host, "irq0 %08x\n", status);
361
362 data = host->data;
363 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|
364 MCI_RXOVERRUN|MCI_DATAEND|MCI_DATABLOCKEND) && data)
365 mmci_data_irq(host, data, status);
366
367 cmd = host->cmd;
368 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
369 mmci_cmd_irq(host, cmd, status);
370
371 ret = 1;
372 } while (status);
373
374 spin_unlock(&host->lock);
375
376 return IRQ_RETVAL(ret);
377}
378
379static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
380{
381 struct mmci_host *host = mmc_priv(mmc);
382
383 WARN_ON(host->mrq != NULL);
384
385 spin_lock_irq(&host->lock);
386
387 host->mrq = mrq;
388
389 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
390 mmci_start_data(host, mrq->data);
391
392 mmci_start_command(host, mrq->cmd, 0);
393
394 spin_unlock_irq(&host->lock);
395}
396
397static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
398{
399 struct mmci_host *host = mmc_priv(mmc);
400 u32 clk = 0, pwr = 0;
401
402 DBG(host, "clock %uHz busmode %u powermode %u Vdd %u\n",
403 ios->clock, ios->bus_mode, ios->power_mode, ios->vdd);
404
405 if (ios->clock) {
406 if (ios->clock >= host->mclk) {
407 clk = MCI_CLK_BYPASS;
408 host->cclk = host->mclk;
409 } else {
410 clk = host->mclk / (2 * ios->clock) - 1;
411 if (clk > 256)
412 clk = 255;
413 host->cclk = host->mclk / (2 * (clk + 1));
414 }
415 clk |= MCI_CLK_ENABLE;
416 }
417
418 if (host->plat->translate_vdd)
419 pwr |= host->plat->translate_vdd(mmc_dev(mmc), ios->vdd);
420
421 switch (ios->power_mode) {
422 case MMC_POWER_OFF:
423 break;
424 case MMC_POWER_UP:
425 pwr |= MCI_PWR_UP;
426 break;
427 case MMC_POWER_ON:
428 pwr |= MCI_PWR_ON;
429 break;
430 }
431
432 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
433 pwr |= MCI_ROD;
434
435 writel(clk, host->base + MMCICLOCK);
436
437 if (host->pwr != pwr) {
438 host->pwr = pwr;
439 writel(pwr, host->base + MMCIPOWER);
440 }
441}
442
443static struct mmc_host_ops mmci_ops = {
444 .request = mmci_request,
445 .set_ios = mmci_set_ios,
446};
447
448static void mmci_check_status(unsigned long data)
449{
450 struct mmci_host *host = (struct mmci_host *)data;
451 unsigned int status;
452
453 status = host->plat->status(mmc_dev(host->mmc));
454 if (status ^ host->oldstat)
Richard Purdie8dc00332005-09-08 17:53:01 +0100455 mmc_detect_change(host->mmc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 host->oldstat = status;
458 mod_timer(&host->timer, jiffies + HZ);
459}
460
461static int mmci_probe(struct amba_device *dev, void *id)
462{
463 struct mmc_platform_data *plat = dev->dev.platform_data;
464 struct mmci_host *host;
465 struct mmc_host *mmc;
466 int ret;
467
468 /* must have platform data */
469 if (!plat) {
470 ret = -EINVAL;
471 goto out;
472 }
473
474 ret = amba_request_regions(dev, DRIVER_NAME);
475 if (ret)
476 goto out;
477
478 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
479 if (!mmc) {
480 ret = -ENOMEM;
481 goto rel_regions;
482 }
483
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);
488 host->clk = NULL;
489 goto host_free;
490 }
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 ret = clk_enable(host->clk);
493 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +0000494 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 host->plat = plat;
497 host->mclk = clk_get_rate(host->clk);
498 host->mmc = mmc;
499 host->base = ioremap(dev->res.start, SZ_4K);
500 if (!host->base) {
501 ret = -ENOMEM;
502 goto clk_disable;
503 }
504
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;
509
510 /*
511 * We can do SGIO
512 */
513 mmc->max_hw_segs = 16;
514 mmc->max_phys_segs = NR_SG;
515
516 /*
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.
520 */
521 mmc->max_sectors = 64;
522
523 /*
524 * Set the maximum segment size. Since we aren't doing DMA
525 * (yet) we are only limited by the data length register.
526 */
527 mmc->max_seg_size = mmc->max_sectors << 9;
528
529 spin_lock_init(&host->lock);
530
531 writel(0, host->base + MMCIMASK0);
532 writel(0, host->base + MMCIMASK1);
533 writel(0xfff, host->base + MMCICLEAR);
534
535 ret = request_irq(dev->irq[0], mmci_irq, SA_SHIRQ, DRIVER_NAME " (cmd)", host);
536 if (ret)
537 goto unmap;
538
539 ret = request_irq(dev->irq[1], mmci_pio_irq, SA_SHIRQ, DRIVER_NAME " (pio)", host);
540 if (ret)
541 goto irq0_free;
542
543 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
544
545 amba_set_drvdata(dev, mmc);
546
547 mmc_add_host(mmc);
548
549 printk(KERN_INFO "%s: MMCI rev %x cfg %02x at 0x%08lx irq %d,%d\n",
Russell Kingd366b642005-08-19 09:40:08 +0100550 mmc_hostname(mmc), amba_rev(dev), amba_config(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 dev->res.start, dev->irq[0], dev->irq[1]);
552
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);
558
559 return 0;
560
561 irq0_free:
562 free_irq(dev->irq[0], host);
563 unmap:
564 iounmap(host->base);
565 clk_disable:
566 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 clk_free:
568 clk_put(host->clk);
569 host_free:
570 mmc_free_host(mmc);
571 rel_regions:
572 amba_release_regions(dev);
573 out:
574 return ret;
575}
576
577static int mmci_remove(struct amba_device *dev)
578{
579 struct mmc_host *mmc = amba_get_drvdata(dev);
580
581 amba_set_drvdata(dev, NULL);
582
583 if (mmc) {
584 struct mmci_host *host = mmc_priv(mmc);
585
586 del_timer_sync(&host->timer);
587
588 mmc_remove_host(mmc);
589
590 writel(0, host->base + MMCIMASK0);
591 writel(0, host->base + MMCIMASK1);
592
593 writel(0, host->base + MMCICOMMAND);
594 writel(0, host->base + MMCIDATACTRL);
595
596 free_irq(dev->irq[0], host);
597 free_irq(dev->irq[1], host);
598
599 iounmap(host->base);
600 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 clk_put(host->clk);
602
603 mmc_free_host(mmc);
604
605 amba_release_regions(dev);
606 }
607
608 return 0;
609}
610
611#ifdef CONFIG_PM
Pavel Macheke5378ca2005-04-16 15:25:29 -0700612static int mmci_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 struct mmc_host *mmc = amba_get_drvdata(dev);
615 int ret = 0;
616
617 if (mmc) {
618 struct mmci_host *host = mmc_priv(mmc);
619
620 ret = mmc_suspend_host(mmc, state);
621 if (ret == 0)
622 writel(0, host->base + MMCIMASK0);
623 }
624
625 return ret;
626}
627
628static int mmci_resume(struct amba_device *dev)
629{
630 struct mmc_host *mmc = amba_get_drvdata(dev);
631 int ret = 0;
632
633 if (mmc) {
634 struct mmci_host *host = mmc_priv(mmc);
635
636 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
637
638 ret = mmc_resume_host(mmc);
639 }
640
641 return ret;
642}
643#else
644#define mmci_suspend NULL
645#define mmci_resume NULL
646#endif
647
648static struct amba_id mmci_ids[] = {
649 {
650 .id = 0x00041180,
651 .mask = 0x000fffff,
652 },
653 {
654 .id = 0x00041181,
655 .mask = 0x000fffff,
656 },
657 { 0, 0 },
658};
659
660static struct amba_driver mmci_driver = {
661 .drv = {
662 .name = DRIVER_NAME,
663 },
664 .probe = mmci_probe,
665 .remove = mmci_remove,
666 .suspend = mmci_suspend,
667 .resume = mmci_resume,
668 .id_table = mmci_ids,
669};
670
671static int __init mmci_init(void)
672{
673 return amba_driver_register(&mmci_driver);
674}
675
676static void __exit mmci_exit(void)
677{
678 amba_driver_unregister(&mmci_driver);
679}
680
681module_init(mmci_init);
682module_exit(mmci_exit);
683module_param(fmax, uint, 0444);
684
685MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
686MODULE_LICENSE("GPL");