2 * linux/drivers/mmc/at91_mci.c - ATMEL AT91RM9200 MCI Driver
4 * Copyright (C) 2005 Cougar Creek Computing Devices Ltd, All Rights Reserved
6 * Copyright (C) 2006 Malcolm Noyes
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 This is the AT91RM9200 MCI driver that has been tested with both MMC cards
15 and SD-cards. Boards that support write protect are now supported.
16 The CCAT91SBC001 board does not support SD cards.
18 The three entry points are at91_mci_request, at91_mci_set_ios
22 This configures the device to put it into the correct mode and clock speed
26 MCI request processes the commands sent in the mmc_request structure. This
27 can consist of a processing command and a stop command in the case of
28 multiple block transfers.
30 There are three main types of request, commands, reads and writes.
32 Commands are straight forward. The command is submitted to the controller and
33 the request function returns. When the controller generates an interrupt to indicate
34 the command is finished, the response to the command are read and the mmc_request_done
35 function called to end the request.
37 Reads and writes work in a similar manner to normal commands but involve the PDC (DMA)
38 controller to manage the transfers.
40 A read is done from the controller directly to the scatterlist passed in from the request.
41 Due to a bug in the controller, when a read is completed, all the words are byte
42 swapped in the scatterlist buffers.
44 The sequence of read interrupts is: ENDRX, RXBUFF, CMDRDY
46 A write is slightly different in that the bytes to write are read from the scatterlist
47 into a dma memory buffer (this is in case the source buffer should be read only). The
48 entire write buffer is then done from this single dma memory buffer.
50 The sequence of write interrupts is: ENDTX, TXBUFE, NOTBUSY, CMDRDY
53 Gets the status of the write protect pin, if available.
56 #include <linux/module.h>
57 #include <linux/moduleparam.h>
58 #include <linux/init.h>
59 #include <linux/ioport.h>
60 #include <linux/platform_device.h>
61 #include <linux/interrupt.h>
62 #include <linux/blkdev.h>
63 #include <linux/delay.h>
64 #include <linux/err.h>
65 #include <linux/dma-mapping.h>
66 #include <linux/clk.h>
68 #include <linux/mmc/host.h>
69 #include <linux/mmc/protocol.h>
73 #include <asm/mach/mmc.h>
74 #include <asm/arch/board.h>
75 #include <asm/arch/gpio.h>
76 #include <asm/arch/at91rm9200_mci.h>
77 #include <asm/arch/at91rm9200_pdc.h>
79 #define DRIVER_NAME "at91_mci"
83 static struct clk *mci_clk;
85 #define FL_SENT_COMMAND (1 << 0)
86 #define FL_SENT_STOP (1 << 1)
91 * Read from a MCI register.
93 static inline unsigned long at91_mci_read(unsigned int reg)
95 void __iomem *mci_base = (void __iomem *)AT91_VA_BASE_MCI;
97 return __raw_readl(mci_base + reg);
101 * Write to a MCI register.
103 static inline void at91_mci_write(unsigned int reg, unsigned long value)
105 void __iomem *mci_base = (void __iomem *)AT91_VA_BASE_MCI;
107 __raw_writel(value, mci_base + reg);
111 * Low level type for this driver
115 struct mmc_host *mmc;
116 struct mmc_command *cmd;
117 struct mmc_request *request;
119 struct at91_mmc_data *board;
123 * Flag indicating when the command has been sent. This is used to
124 * work out whether or not to send the stop
127 /* flag for current bus settings */
130 /* DMA buffer used for transmitting */
131 unsigned int* buffer;
132 dma_addr_t physical_address;
133 unsigned int total_length;
135 /* Latest in the scatterlist that has been enabled for transfer, but not freed */
138 /* Latest in the scatterlist that has been enabled for transfer */
143 * Copy from sg to a dma block - used for transfers
145 static inline void at91mci_sg_to_dma(struct at91mci_host *host, struct mmc_data *data)
147 unsigned int len, i, size;
148 unsigned *dmabuf = host->buffer;
150 size = host->total_length;
154 * Just loop through all entries. Size might not
155 * be the entire list though so make sure that
156 * we do not transfer too much.
158 for (i = 0; i < len; i++) {
159 struct scatterlist *sg;
162 unsigned int *sgbuffer;
166 sgbuffer = kmap_atomic(sg->page, KM_BIO_SRC_IRQ) + sg->offset;
167 amount = min(size, sg->length);
171 for (index = 0; index < amount; index++)
172 *dmabuf++ = swab32(sgbuffer[index]);
174 kunmap_atomic(sgbuffer, KM_BIO_SRC_IRQ);
181 * Check that we didn't get a request to transfer
182 * more data than can fit into the SG list.
190 static void at91mci_pre_dma_read(struct at91mci_host *host)
193 struct scatterlist *sg;
194 struct mmc_command *cmd;
195 struct mmc_data *data;
197 pr_debug("pre dma read\n");
201 pr_debug("no command\n");
207 pr_debug("no data\n");
211 for (i = 0; i < 2; i++) {
212 /* nothing left to transfer */
213 if (host->transfer_index >= data->sg_len) {
214 pr_debug("Nothing left to transfer (index = %d)\n", host->transfer_index);
218 /* Check to see if this needs filling */
220 if (at91_mci_read(AT91_PDC_RCR) != 0) {
221 pr_debug("Transfer active in current\n");
226 if (at91_mci_read(AT91_PDC_RNCR) != 0) {
227 pr_debug("Transfer active in next\n");
232 /* Setup the next transfer */
233 pr_debug("Using transfer index %d\n", host->transfer_index);
235 sg = &data->sg[host->transfer_index++];
236 pr_debug("sg = %p\n", sg);
238 sg->dma_address = dma_map_page(NULL, sg->page, sg->offset, sg->length, DMA_FROM_DEVICE);
240 pr_debug("dma address = %08X, length = %d\n", sg->dma_address, sg->length);
243 at91_mci_write(AT91_PDC_RPR, sg->dma_address);
244 at91_mci_write(AT91_PDC_RCR, sg->length / 4);
247 at91_mci_write(AT91_PDC_RNPR, sg->dma_address);
248 at91_mci_write(AT91_PDC_RNCR, sg->length / 4);
252 pr_debug("pre dma read done\n");
256 * Handle after a dma read
258 static void at91mci_post_dma_read(struct at91mci_host *host)
260 struct mmc_command *cmd;
261 struct mmc_data *data;
263 pr_debug("post dma read\n");
267 pr_debug("no command\n");
273 pr_debug("no data\n");
277 while (host->in_use_index < host->transfer_index) {
278 unsigned int *buffer;
282 struct scatterlist *sg;
284 pr_debug("finishing index %d\n", host->in_use_index);
286 sg = &data->sg[host->in_use_index++];
288 pr_debug("Unmapping page %08X\n", sg->dma_address);
290 dma_unmap_page(NULL, sg->dma_address, sg->length, DMA_FROM_DEVICE);
292 /* Swap the contents of the buffer */
293 buffer = kmap_atomic(sg->page, KM_BIO_SRC_IRQ) + sg->offset;
294 pr_debug("buffer = %p, length = %d\n", buffer, sg->length);
296 data->bytes_xfered += sg->length;
298 len = sg->length / 4;
300 for (index = 0; index < len; index++) {
301 buffer[index] = swab32(buffer[index]);
303 kunmap_atomic(buffer, KM_BIO_SRC_IRQ);
304 flush_dcache_page(sg->page);
307 /* Is there another transfer to trigger? */
308 if (host->transfer_index < data->sg_len)
309 at91mci_pre_dma_read(host);
311 at91_mci_write(AT91_MCI_IER, AT91_MCI_RXBUFF);
312 at91_mci_write(AT91_PDC_PTCR, AT91_PDC_RXTDIS | AT91_PDC_TXTDIS);
315 pr_debug("post dma read done\n");
319 * Handle transmitted data
321 static void at91_mci_handle_transmitted(struct at91mci_host *host)
323 struct mmc_command *cmd;
324 struct mmc_data *data;
326 pr_debug("Handling the transmit\n");
328 /* Disable the transfer */
329 at91_mci_write(AT91_PDC_PTCR, AT91_PDC_RXTDIS | AT91_PDC_TXTDIS);
331 /* Now wait for cmd ready */
332 at91_mci_write(AT91_MCI_IDR, AT91_MCI_TXBUFE);
333 at91_mci_write(AT91_MCI_IER, AT91_MCI_NOTBUSY);
341 data->bytes_xfered = host->total_length;
345 * Enable the controller
347 static void at91_mci_enable(void)
349 at91_mci_write(AT91_MCI_CR, AT91_MCI_MCIEN);
350 at91_mci_write(AT91_MCI_IDR, 0xFFFFFFFF);
351 at91_mci_write(AT91_MCI_DTOR, AT91_MCI_DTOMUL_1M | AT91_MCI_DTOCYC);
352 at91_mci_write(AT91_MCI_MR, 0x834A);
353 at91_mci_write(AT91_MCI_SDCR, 0x0);
357 * Disable the controller
359 static void at91_mci_disable(void)
361 at91_mci_write(AT91_MCI_CR, AT91_MCI_MCIDIS | AT91_MCI_SWRST);
366 * return the interrupts to enable
368 static unsigned int at91_mci_send_command(struct at91mci_host *host, struct mmc_command *cmd)
370 unsigned int cmdr, mr;
371 unsigned int block_length;
372 struct mmc_data *data = cmd->data;
375 unsigned int ier = 0;
379 /* Not sure if this is needed */
381 if ((at91_mci_read(AT91_MCI_SR) & AT91_MCI_RTOE) && (cmd->opcode == 1)) {
382 pr_debug("Clearing timeout\n");
383 at91_mci_write(AT91_MCI_ARGR, 0);
384 at91_mci_write(AT91_MCI_CMDR, AT91_MCI_OPDCMD);
385 while (!(at91_mci_read(AT91_MCI_SR) & AT91_MCI_CMDRDY)) {
387 pr_debug("Clearing: SR = %08X\n", at91_mci_read(AT91_MCI_SR));
393 if (mmc_resp_type(cmd) == MMC_RSP_NONE)
394 cmdr |= AT91_MCI_RSPTYP_NONE;
396 /* if a response is expected then allow maximum response latancy */
397 cmdr |= AT91_MCI_MAXLAT;
398 /* set 136 bit response for R2, 48 bit response otherwise */
399 if (mmc_resp_type(cmd) == MMC_RSP_R2)
400 cmdr |= AT91_MCI_RSPTYP_136;
402 cmdr |= AT91_MCI_RSPTYP_48;
406 block_length = data->blksz;
407 blocks = data->blocks;
409 /* always set data start - also set direction flag for read */
410 if (data->flags & MMC_DATA_READ)
411 cmdr |= (AT91_MCI_TRDIR | AT91_MCI_TRCMD_START);
412 else if (data->flags & MMC_DATA_WRITE)
413 cmdr |= AT91_MCI_TRCMD_START;
415 if (data->flags & MMC_DATA_STREAM)
416 cmdr |= AT91_MCI_TRTYP_STREAM;
417 if (data->flags & MMC_DATA_MULTI)
418 cmdr |= AT91_MCI_TRTYP_MULTIPLE;
425 if (cmd->opcode == MMC_STOP_TRANSMISSION)
426 cmdr |= AT91_MCI_TRCMD_STOP;
428 if (host->bus_mode == MMC_BUSMODE_OPENDRAIN)
429 cmdr |= AT91_MCI_OPDCMD;
432 * Set the arguments and send the command
434 pr_debug("Sending command %d as %08X, arg = %08X, blocks = %d, length = %d (MR = %08lX)\n",
435 cmd->opcode, cmdr, cmd->arg, blocks, block_length, at91_mci_read(AT91_MCI_MR));
438 at91_mci_write(AT91_PDC_PTCR, AT91_PDC_TXTDIS | AT91_PDC_RXTDIS);
439 at91_mci_write(AT91_PDC_RPR, 0);
440 at91_mci_write(AT91_PDC_RCR, 0);
441 at91_mci_write(AT91_PDC_RNPR, 0);
442 at91_mci_write(AT91_PDC_RNCR, 0);
443 at91_mci_write(AT91_PDC_TPR, 0);
444 at91_mci_write(AT91_PDC_TCR, 0);
445 at91_mci_write(AT91_PDC_TNPR, 0);
446 at91_mci_write(AT91_PDC_TNCR, 0);
448 at91_mci_write(AT91_MCI_ARGR, cmd->arg);
449 at91_mci_write(AT91_MCI_CMDR, cmdr);
450 return AT91_MCI_CMDRDY;
453 mr = at91_mci_read(AT91_MCI_MR) & 0x7fff; /* zero block length and PDC mode */
454 at91_mci_write(AT91_MCI_MR, mr | (block_length << 16) | AT91_MCI_PDCMODE);
457 * Disable the PDC controller
459 at91_mci_write(AT91_PDC_PTCR, AT91_PDC_RXTDIS | AT91_PDC_TXTDIS);
461 if (cmdr & AT91_MCI_TRCMD_START) {
462 data->bytes_xfered = 0;
463 host->transfer_index = 0;
464 host->in_use_index = 0;
465 if (cmdr & AT91_MCI_TRDIR) {
470 host->total_length = 0;
472 at91mci_pre_dma_read(host);
473 ier = AT91_MCI_ENDRX /* | AT91_MCI_RXBUFF */;
479 host->total_length = block_length * blocks;
480 host->buffer = dma_alloc_coherent(NULL,
482 &host->physical_address, GFP_KERNEL);
484 at91mci_sg_to_dma(host, data);
486 pr_debug("Transmitting %d bytes\n", host->total_length);
488 at91_mci_write(AT91_PDC_TPR, host->physical_address);
489 at91_mci_write(AT91_PDC_TCR, host->total_length / 4);
490 ier = AT91_MCI_TXBUFE;
495 * Send the command and then enable the PDC - not the other way round as
496 * the data sheet says
499 at91_mci_write(AT91_MCI_ARGR, cmd->arg);
500 at91_mci_write(AT91_MCI_CMDR, cmdr);
502 if (cmdr & AT91_MCI_TRCMD_START) {
503 if (cmdr & AT91_MCI_TRDIR)
504 at91_mci_write(AT91_PDC_PTCR, AT91_PDC_RXTEN);
506 at91_mci_write(AT91_PDC_PTCR, AT91_PDC_TXTEN);
512 * Wait for a command to complete
514 static void at91mci_process_command(struct at91mci_host *host, struct mmc_command *cmd)
518 ier = at91_mci_send_command(host, cmd);
520 pr_debug("setting ier to %08X\n", ier);
522 /* Stop on errors or the required value */
523 at91_mci_write(AT91_MCI_IER, 0xffff0000 | ier);
527 * Process the next step in the request
529 static void at91mci_process_next(struct at91mci_host *host)
531 if (!(host->flags & FL_SENT_COMMAND)) {
532 host->flags |= FL_SENT_COMMAND;
533 at91mci_process_command(host, host->request->cmd);
535 else if ((!(host->flags & FL_SENT_STOP)) && host->request->stop) {
536 host->flags |= FL_SENT_STOP;
537 at91mci_process_command(host, host->request->stop);
540 mmc_request_done(host->mmc, host->request);
544 * Handle a command that has been completed
546 static void at91mci_completed_command(struct at91mci_host *host)
548 struct mmc_command *cmd = host->cmd;
551 at91_mci_write(AT91_MCI_IDR, 0xffffffff);
553 cmd->resp[0] = at91_mci_read(AT91_MCI_RSPR(0));
554 cmd->resp[1] = at91_mci_read(AT91_MCI_RSPR(1));
555 cmd->resp[2] = at91_mci_read(AT91_MCI_RSPR(2));
556 cmd->resp[3] = at91_mci_read(AT91_MCI_RSPR(3));
559 dma_free_coherent(NULL, host->total_length, host->buffer, host->physical_address);
563 status = at91_mci_read(AT91_MCI_SR);
565 pr_debug("Status = %08X [%08X %08X %08X %08X]\n",
566 status, cmd->resp[0], cmd->resp[1], cmd->resp[2], cmd->resp[3]);
568 if (status & (AT91_MCI_RINDE | AT91_MCI_RDIRE | AT91_MCI_RCRCE |
569 AT91_MCI_RENDE | AT91_MCI_RTOE | AT91_MCI_DCRCE |
570 AT91_MCI_DTOE | AT91_MCI_OVRE | AT91_MCI_UNRE)) {
571 if ((status & AT91_MCI_RCRCE) &&
572 ((cmd->opcode == MMC_SEND_OP_COND) || (cmd->opcode == SD_APP_OP_COND))) {
573 cmd->error = MMC_ERR_NONE;
576 if (status & (AT91_MCI_RTOE | AT91_MCI_DTOE))
577 cmd->error = MMC_ERR_TIMEOUT;
578 else if (status & (AT91_MCI_RCRCE | AT91_MCI_DCRCE))
579 cmd->error = MMC_ERR_BADCRC;
580 else if (status & (AT91_MCI_OVRE | AT91_MCI_UNRE))
581 cmd->error = MMC_ERR_FIFO;
583 cmd->error = MMC_ERR_FAILED;
585 pr_debug("Error detected and set to %d (cmd = %d, retries = %d)\n",
586 cmd->error, cmd->opcode, cmd->retries);
590 cmd->error = MMC_ERR_NONE;
592 at91mci_process_next(host);
596 * Handle an MMC request
598 static void at91_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
600 struct at91mci_host *host = mmc_priv(mmc);
604 at91mci_process_next(host);
610 static void at91_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
613 struct at91mci_host *host = mmc_priv(mmc);
614 unsigned long at91_master_clock = clk_get_rate(mci_clk);
616 host->bus_mode = ios->bus_mode;
618 if (ios->clock == 0) {
619 /* Disable the MCI controller */
620 at91_mci_write(AT91_MCI_CR, AT91_MCI_MCIDIS);
624 /* Enable the MCI controller */
625 at91_mci_write(AT91_MCI_CR, AT91_MCI_MCIEN);
627 if ((at91_master_clock % (ios->clock * 2)) == 0)
628 clkdiv = ((at91_master_clock / ios->clock) / 2) - 1;
630 clkdiv = (at91_master_clock / ios->clock) / 2;
632 pr_debug("clkdiv = %d. mcck = %ld\n", clkdiv,
633 at91_master_clock / (2 * (clkdiv + 1)));
635 if (ios->bus_width == MMC_BUS_WIDTH_4 && host->board->wire4) {
636 pr_debug("MMC: Setting controller bus width to 4\n");
637 at91_mci_write(AT91_MCI_SDCR, at91_mci_read(AT91_MCI_SDCR) | AT91_MCI_SDCBUS);
640 pr_debug("MMC: Setting controller bus width to 1\n");
641 at91_mci_write(AT91_MCI_SDCR, at91_mci_read(AT91_MCI_SDCR) & ~AT91_MCI_SDCBUS);
644 /* Set the clock divider */
645 at91_mci_write(AT91_MCI_MR, (at91_mci_read(AT91_MCI_MR) & ~AT91_MCI_CLKDIV) | clkdiv);
647 /* maybe switch power to the card */
648 if (host->board->vcc_pin) {
649 switch (ios->power_mode) {
651 at91_set_gpio_output(host->board->vcc_pin, 0);
655 at91_set_gpio_output(host->board->vcc_pin, 1);
662 * Handle an interrupt
664 static irqreturn_t at91_mci_irq(int irq, void *devid, struct pt_regs *regs)
666 struct at91mci_host *host = devid;
669 unsigned int int_status;
671 int_status = at91_mci_read(AT91_MCI_SR);
672 pr_debug("MCI irq: status = %08X, %08lX, %08lX\n", int_status, at91_mci_read(AT91_MCI_IMR),
673 int_status & at91_mci_read(AT91_MCI_IMR));
675 if ((int_status & at91_mci_read(AT91_MCI_IMR)) & 0xffff0000)
678 int_status &= at91_mci_read(AT91_MCI_IMR);
680 if (int_status & AT91_MCI_UNRE)
681 pr_debug("MMC: Underrun error\n");
682 if (int_status & AT91_MCI_OVRE)
683 pr_debug("MMC: Overrun error\n");
684 if (int_status & AT91_MCI_DTOE)
685 pr_debug("MMC: Data timeout\n");
686 if (int_status & AT91_MCI_DCRCE)
687 pr_debug("MMC: CRC error in data\n");
688 if (int_status & AT91_MCI_RTOE)
689 pr_debug("MMC: Response timeout\n");
690 if (int_status & AT91_MCI_RENDE)
691 pr_debug("MMC: Response end bit error\n");
692 if (int_status & AT91_MCI_RCRCE)
693 pr_debug("MMC: Response CRC error\n");
694 if (int_status & AT91_MCI_RDIRE)
695 pr_debug("MMC: Response direction error\n");
696 if (int_status & AT91_MCI_RINDE)
697 pr_debug("MMC: Response index error\n");
699 /* Only continue processing if no errors */
701 if (int_status & AT91_MCI_TXBUFE) {
702 pr_debug("TX buffer empty\n");
703 at91_mci_handle_transmitted(host);
706 if (int_status & AT91_MCI_RXBUFF) {
707 pr_debug("RX buffer full\n");
708 at91_mci_write(AT91_MCI_IER, AT91_MCI_CMDRDY);
711 if (int_status & AT91_MCI_ENDTX) {
712 pr_debug("Transmit has ended\n");
715 if (int_status & AT91_MCI_ENDRX) {
716 pr_debug("Receive has ended\n");
717 at91mci_post_dma_read(host);
720 if (int_status & AT91_MCI_NOTBUSY) {
721 pr_debug("Card is ready\n");
722 at91_mci_write(AT91_MCI_IER, AT91_MCI_CMDRDY);
725 if (int_status & AT91_MCI_DTIP) {
726 pr_debug("Data transfer in progress\n");
729 if (int_status & AT91_MCI_BLKE) {
730 pr_debug("Block transfer has ended\n");
733 if (int_status & AT91_MCI_TXRDY) {
734 pr_debug("Ready to transmit\n");
737 if (int_status & AT91_MCI_RXRDY) {
738 pr_debug("Ready to receive\n");
741 if (int_status & AT91_MCI_CMDRDY) {
742 pr_debug("Command ready\n");
746 at91_mci_write(AT91_MCI_IDR, int_status);
749 pr_debug("Completed command\n");
750 at91_mci_write(AT91_MCI_IDR, 0xffffffff);
751 at91mci_completed_command(host);
757 static irqreturn_t at91_mmc_det_irq(int irq, void *_host, struct pt_regs *regs)
759 struct at91mci_host *host = _host;
760 int present = !at91_get_gpio_value(irq);
763 * we expect this irq on both insert and remove,
764 * and use a short delay to debounce.
766 if (present != host->present) {
767 host->present = present;
768 pr_debug("%s: card %s\n", mmc_hostname(host->mmc),
769 present ? "insert" : "remove");
771 pr_debug("****** Resetting SD-card bus width ******\n");
772 at91_mci_write(AT91_MCI_SDCR, 0);
774 mmc_detect_change(host->mmc, msecs_to_jiffies(100));
779 int at91_mci_get_ro(struct mmc_host *mmc)
782 struct at91mci_host *host = mmc_priv(mmc);
784 if (host->board->wp_pin) {
785 read_only = at91_get_gpio_value(host->board->wp_pin);
786 printk(KERN_WARNING "%s: card is %s\n", mmc_hostname(mmc),
787 (read_only ? "read-only" : "read-write") );
790 printk(KERN_WARNING "%s: host does not support reading read-only "
791 "switch. Assuming write-enable.\n", mmc_hostname(mmc));
796 static struct mmc_host_ops at91_mci_ops = {
797 .request = at91_mci_request,
798 .set_ios = at91_mci_set_ios,
799 .get_ro = at91_mci_get_ro,
803 * Probe for the device
805 static int at91_mci_probe(struct platform_device *pdev)
807 struct mmc_host *mmc;
808 struct at91mci_host *host;
811 pr_debug("Probe MCI devices\n");
815 mmc = mmc_alloc_host(sizeof(struct at91mci_host), &pdev->dev);
817 pr_debug("Failed to allocate mmc host\n");
821 mmc->ops = &at91_mci_ops;
823 mmc->f_max = 25000000;
824 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
826 host = mmc_priv(mmc);
830 host->board = pdev->dev.platform_data;
831 if (host->board->wire4) {
833 mmc->caps |= MMC_CAP_4_BIT_DATA;
835 printk("MMC: 4 wire bus mode not supported by this driver - using 1 wire\n");
842 mci_clk = clk_get(&pdev->dev, "mci_clk");
843 if (IS_ERR(mci_clk)) {
844 printk(KERN_ERR "AT91 MMC: no clock defined.\n");
848 clk_enable(mci_clk); /* Enable the peripheral clock */
851 * Allocate the MCI interrupt
853 ret = request_irq(AT91_ID_MCI, at91_mci_irq, IRQF_SHARED, DRIVER_NAME, host);
855 printk(KERN_ERR "Failed to request MCI interrupt\n");
856 clk_disable(mci_clk);
862 platform_set_drvdata(pdev, mmc);
865 * Add host to MMC layer
867 if (host->board->det_pin)
868 host->present = !at91_get_gpio_value(host->board->det_pin);
875 * monitor card insertion/removal if we can
877 if (host->board->det_pin) {
878 ret = request_irq(host->board->det_pin, at91_mmc_det_irq,
879 0, DRIVER_NAME, host);
881 printk(KERN_ERR "couldn't allocate MMC detect irq\n");
884 pr_debug(KERN_INFO "Added MCI driver\n");
892 static int at91_mci_remove(struct platform_device *pdev)
894 struct mmc_host *mmc = platform_get_drvdata(pdev);
895 struct at91mci_host *host;
900 host = mmc_priv(mmc);
902 if (host->present != -1) {
903 free_irq(host->board->det_pin, host);
904 cancel_delayed_work(&host->mmc->detect);
907 mmc_remove_host(mmc);
909 free_irq(AT91_ID_MCI, host);
912 clk_disable(mci_clk); /* Disable the peripheral clock */
915 platform_set_drvdata(pdev, NULL);
917 pr_debug("MCI Removed\n");
923 static int at91_mci_suspend(struct platform_device *pdev, pm_message_t state)
925 struct mmc_host *mmc = platform_get_drvdata(pdev);
929 ret = mmc_suspend_host(mmc, state);
934 static int at91_mci_resume(struct platform_device *pdev)
936 struct mmc_host *mmc = platform_get_drvdata(pdev);
940 ret = mmc_resume_host(mmc);
945 #define at91_mci_suspend NULL
946 #define at91_mci_resume NULL
949 static struct platform_driver at91_mci_driver = {
950 .probe = at91_mci_probe,
951 .remove = at91_mci_remove,
952 .suspend = at91_mci_suspend,
953 .resume = at91_mci_resume,
956 .owner = THIS_MODULE,
960 static int __init at91_mci_init(void)
962 return platform_driver_register(&at91_mci_driver);
965 static void __exit at91_mci_exit(void)
967 platform_driver_unregister(&at91_mci_driver);
970 module_init(at91_mci_init);
971 module_exit(at91_mci_exit);
973 MODULE_DESCRIPTION("AT91 Multimedia Card Interface driver");
974 MODULE_AUTHOR("Nick Randell");
975 MODULE_LICENSE("GPL");