mmc: add support MMCIF for SuperH
[linux-2.6-block.git] / drivers / mmc / host / atmel-mci.c
CommitLineData
7d2be074
HS
1/*
2 * Atmel MultiMedia Card Interface driver
3 *
4 * Copyright (C) 2004-2008 Atmel Corporation
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/blkdev.h>
11#include <linux/clk.h>
deec9ae3 12#include <linux/debugfs.h>
7d2be074 13#include <linux/device.h>
65e8b083
HS
14#include <linux/dmaengine.h>
15#include <linux/dma-mapping.h>
fbfca4b8 16#include <linux/err.h>
3c26e170 17#include <linux/gpio.h>
7d2be074
HS
18#include <linux/init.h>
19#include <linux/interrupt.h>
20#include <linux/ioport.h>
21#include <linux/module.h>
22#include <linux/platform_device.h>
23#include <linux/scatterlist.h>
deec9ae3 24#include <linux/seq_file.h>
5a0e3ad6 25#include <linux/slab.h>
deec9ae3 26#include <linux/stat.h>
7d2be074
HS
27
28#include <linux/mmc/host.h>
2635d1ba
NF
29
30#include <mach/atmel-mci.h>
c42aa775 31#include <linux/atmel-mci.h>
7d2be074 32
7d2be074
HS
33#include <asm/io.h>
34#include <asm/unaligned.h>
35
04d699c3 36#include <mach/cpu.h>
3663b736 37#include <mach/board.h>
7d2be074
HS
38
39#include "atmel-mci-regs.h"
40
41#define ATMCI_DATA_ERROR_FLAGS (MCI_DCRCE | MCI_DTOE | MCI_OVRE | MCI_UNRE)
65e8b083 42#define ATMCI_DMA_THRESHOLD 16
7d2be074
HS
43
44enum {
45 EVENT_CMD_COMPLETE = 0,
7d2be074 46 EVENT_XFER_COMPLETE,
c06ad258
HS
47 EVENT_DATA_COMPLETE,
48 EVENT_DATA_ERROR,
49};
50
51enum atmel_mci_state {
965ebf33
HS
52 STATE_IDLE = 0,
53 STATE_SENDING_CMD,
c06ad258
HS
54 STATE_SENDING_DATA,
55 STATE_DATA_BUSY,
56 STATE_SENDING_STOP,
57 STATE_DATA_ERROR,
7d2be074
HS
58};
59
65e8b083
HS
60struct atmel_mci_dma {
61#ifdef CONFIG_MMC_ATMELMCI_DMA
65e8b083
HS
62 struct dma_chan *chan;
63 struct dma_async_tx_descriptor *data_desc;
64#endif
65};
66
965ebf33
HS
67/**
68 * struct atmel_mci - MMC controller state shared between all slots
69 * @lock: Spinlock protecting the queue and associated data.
70 * @regs: Pointer to MMIO registers.
71 * @sg: Scatterlist entry currently being processed by PIO code, if any.
72 * @pio_offset: Offset into the current scatterlist entry.
73 * @cur_slot: The slot which is currently using the controller.
74 * @mrq: The request currently being processed on @cur_slot,
75 * or NULL if the controller is idle.
76 * @cmd: The command currently being sent to the card, or NULL.
77 * @data: The data currently being transferred, or NULL if no data
78 * transfer is in progress.
65e8b083
HS
79 * @dma: DMA client state.
80 * @data_chan: DMA channel being used for the current data transfer.
965ebf33
HS
81 * @cmd_status: Snapshot of SR taken upon completion of the current
82 * command. Only valid when EVENT_CMD_COMPLETE is pending.
83 * @data_status: Snapshot of SR taken upon completion of the current
84 * data transfer. Only valid when EVENT_DATA_COMPLETE or
85 * EVENT_DATA_ERROR is pending.
86 * @stop_cmdr: Value to be loaded into CMDR when the stop command is
87 * to be sent.
88 * @tasklet: Tasklet running the request state machine.
89 * @pending_events: Bitmask of events flagged by the interrupt handler
90 * to be processed by the tasklet.
91 * @completed_events: Bitmask of events which the state machine has
92 * processed.
93 * @state: Tasklet state.
94 * @queue: List of slots waiting for access to the controller.
95 * @need_clock_update: Update the clock rate before the next request.
96 * @need_reset: Reset controller before next request.
97 * @mode_reg: Value of the MR register.
74791a2d 98 * @cfg_reg: Value of the CFG register.
965ebf33
HS
99 * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
100 * rate and timeout calculations.
101 * @mapbase: Physical address of the MMIO registers.
102 * @mck: The peripheral bus clock hooked up to the MMC controller.
103 * @pdev: Platform device associated with the MMC controller.
104 * @slot: Slots sharing this MMC controller.
105 *
106 * Locking
107 * =======
108 *
109 * @lock is a softirq-safe spinlock protecting @queue as well as
110 * @cur_slot, @mrq and @state. These must always be updated
111 * at the same time while holding @lock.
112 *
113 * @lock also protects mode_reg and need_clock_update since these are
114 * used to synchronize mode register updates with the queue
115 * processing.
116 *
117 * The @mrq field of struct atmel_mci_slot is also protected by @lock,
118 * and must always be written at the same time as the slot is added to
119 * @queue.
120 *
121 * @pending_events and @completed_events are accessed using atomic bit
122 * operations, so they don't need any locking.
123 *
124 * None of the fields touched by the interrupt handler need any
125 * locking. However, ordering is important: Before EVENT_DATA_ERROR or
126 * EVENT_DATA_COMPLETE is set in @pending_events, all data-related
127 * interrupts must be disabled and @data_status updated with a
128 * snapshot of SR. Similarly, before EVENT_CMD_COMPLETE is set, the
129 * CMDRDY interupt must be disabled and @cmd_status updated with a
130 * snapshot of SR, and before EVENT_XFER_COMPLETE can be set, the
131 * bytes_xfered field of @data must be written. This is ensured by
132 * using barriers.
133 */
7d2be074 134struct atmel_mci {
965ebf33 135 spinlock_t lock;
7d2be074
HS
136 void __iomem *regs;
137
138 struct scatterlist *sg;
139 unsigned int pio_offset;
140
965ebf33 141 struct atmel_mci_slot *cur_slot;
7d2be074
HS
142 struct mmc_request *mrq;
143 struct mmc_command *cmd;
144 struct mmc_data *data;
145
65e8b083
HS
146 struct atmel_mci_dma dma;
147 struct dma_chan *data_chan;
148
7d2be074
HS
149 u32 cmd_status;
150 u32 data_status;
7d2be074
HS
151 u32 stop_cmdr;
152
7d2be074
HS
153 struct tasklet_struct tasklet;
154 unsigned long pending_events;
155 unsigned long completed_events;
c06ad258 156 enum atmel_mci_state state;
965ebf33 157 struct list_head queue;
7d2be074 158
965ebf33
HS
159 bool need_clock_update;
160 bool need_reset;
161 u32 mode_reg;
74791a2d 162 u32 cfg_reg;
7d2be074
HS
163 unsigned long bus_hz;
164 unsigned long mapbase;
165 struct clk *mck;
166 struct platform_device *pdev;
965ebf33
HS
167
168 struct atmel_mci_slot *slot[ATMEL_MCI_MAX_NR_SLOTS];
169};
170
171/**
172 * struct atmel_mci_slot - MMC slot state
173 * @mmc: The mmc_host representing this slot.
174 * @host: The MMC controller this slot is using.
175 * @sdc_reg: Value of SDCR to be written before using this slot.
176 * @mrq: mmc_request currently being processed or waiting to be
177 * processed, or NULL when the slot is idle.
178 * @queue_node: List node for placing this node in the @queue list of
179 * &struct atmel_mci.
180 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
181 * @flags: Random state bits associated with the slot.
182 * @detect_pin: GPIO pin used for card detection, or negative if not
183 * available.
184 * @wp_pin: GPIO pin used for card write protect sending, or negative
185 * if not available.
1c1452be 186 * @detect_is_active_high: The state of the detect pin when it is active.
965ebf33
HS
187 * @detect_timer: Timer used for debouncing @detect_pin interrupts.
188 */
189struct atmel_mci_slot {
190 struct mmc_host *mmc;
191 struct atmel_mci *host;
192
193 u32 sdc_reg;
194
195 struct mmc_request *mrq;
196 struct list_head queue_node;
197
198 unsigned int clock;
199 unsigned long flags;
200#define ATMCI_CARD_PRESENT 0
201#define ATMCI_CARD_NEED_INIT 1
202#define ATMCI_SHUTDOWN 2
203
204 int detect_pin;
205 int wp_pin;
1c1452be 206 bool detect_is_active_high;
965ebf33
HS
207
208 struct timer_list detect_timer;
7d2be074
HS
209};
210
7d2be074
HS
211#define atmci_test_and_clear_pending(host, event) \
212 test_and_clear_bit(event, &host->pending_events)
7d2be074
HS
213#define atmci_set_completed(host, event) \
214 set_bit(event, &host->completed_events)
215#define atmci_set_pending(host, event) \
216 set_bit(event, &host->pending_events)
7d2be074 217
04d699c3
RE
218/*
219 * Enable or disable features/registers based on
220 * whether the processor supports them
221 */
222static bool mci_has_rwproof(void)
223{
224 if (cpu_is_at91sam9261() || cpu_is_at91rm9200())
225 return false;
226 else
227 return true;
228}
229
74791a2d
NF
230/*
231 * The new MCI2 module isn't 100% compatible with the old MCI module,
232 * and it has a few nice features which we want to use...
233 */
234static inline bool atmci_is_mci2(void)
235{
236 if (cpu_is_at91sam9g45())
237 return true;
238
239 return false;
240}
241
242
deec9ae3
HS
243/*
244 * The debugfs stuff below is mostly optimized away when
245 * CONFIG_DEBUG_FS is not set.
246 */
247static int atmci_req_show(struct seq_file *s, void *v)
248{
965ebf33
HS
249 struct atmel_mci_slot *slot = s->private;
250 struct mmc_request *mrq;
deec9ae3
HS
251 struct mmc_command *cmd;
252 struct mmc_command *stop;
253 struct mmc_data *data;
254
255 /* Make sure we get a consistent snapshot */
965ebf33
HS
256 spin_lock_bh(&slot->host->lock);
257 mrq = slot->mrq;
deec9ae3
HS
258
259 if (mrq) {
260 cmd = mrq->cmd;
261 data = mrq->data;
262 stop = mrq->stop;
263
264 if (cmd)
265 seq_printf(s,
266 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
267 cmd->opcode, cmd->arg, cmd->flags,
268 cmd->resp[0], cmd->resp[1], cmd->resp[2],
d586ebbb 269 cmd->resp[3], cmd->error);
deec9ae3
HS
270 if (data)
271 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
272 data->bytes_xfered, data->blocks,
273 data->blksz, data->flags, data->error);
274 if (stop)
275 seq_printf(s,
276 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
277 stop->opcode, stop->arg, stop->flags,
278 stop->resp[0], stop->resp[1], stop->resp[2],
d586ebbb 279 stop->resp[3], stop->error);
deec9ae3
HS
280 }
281
965ebf33 282 spin_unlock_bh(&slot->host->lock);
deec9ae3
HS
283
284 return 0;
285}
286
287static int atmci_req_open(struct inode *inode, struct file *file)
288{
289 return single_open(file, atmci_req_show, inode->i_private);
290}
291
292static const struct file_operations atmci_req_fops = {
293 .owner = THIS_MODULE,
294 .open = atmci_req_open,
295 .read = seq_read,
296 .llseek = seq_lseek,
297 .release = single_release,
298};
299
300static void atmci_show_status_reg(struct seq_file *s,
301 const char *regname, u32 value)
302{
303 static const char *sr_bit[] = {
304 [0] = "CMDRDY",
305 [1] = "RXRDY",
306 [2] = "TXRDY",
307 [3] = "BLKE",
308 [4] = "DTIP",
309 [5] = "NOTBUSY",
04d699c3
RE
310 [6] = "ENDRX",
311 [7] = "ENDTX",
deec9ae3
HS
312 [8] = "SDIOIRQA",
313 [9] = "SDIOIRQB",
04d699c3
RE
314 [12] = "SDIOWAIT",
315 [14] = "RXBUFF",
316 [15] = "TXBUFE",
deec9ae3
HS
317 [16] = "RINDE",
318 [17] = "RDIRE",
319 [18] = "RCRCE",
320 [19] = "RENDE",
321 [20] = "RTOE",
322 [21] = "DCRCE",
323 [22] = "DTOE",
04d699c3
RE
324 [23] = "CSTOE",
325 [24] = "BLKOVRE",
326 [25] = "DMADONE",
327 [26] = "FIFOEMPTY",
328 [27] = "XFRDONE",
deec9ae3
HS
329 [30] = "OVRE",
330 [31] = "UNRE",
331 };
332 unsigned int i;
333
334 seq_printf(s, "%s:\t0x%08x", regname, value);
335 for (i = 0; i < ARRAY_SIZE(sr_bit); i++) {
336 if (value & (1 << i)) {
337 if (sr_bit[i])
338 seq_printf(s, " %s", sr_bit[i]);
339 else
340 seq_puts(s, " UNKNOWN");
341 }
342 }
343 seq_putc(s, '\n');
344}
345
346static int atmci_regs_show(struct seq_file *s, void *v)
347{
348 struct atmel_mci *host = s->private;
349 u32 *buf;
350
351 buf = kmalloc(MCI_REGS_SIZE, GFP_KERNEL);
352 if (!buf)
353 return -ENOMEM;
354
965ebf33
HS
355 /*
356 * Grab a more or less consistent snapshot. Note that we're
357 * not disabling interrupts, so IMR and SR may not be
358 * consistent.
359 */
360 spin_lock_bh(&host->lock);
87e60f2b 361 clk_enable(host->mck);
deec9ae3 362 memcpy_fromio(buf, host->regs, MCI_REGS_SIZE);
87e60f2b 363 clk_disable(host->mck);
965ebf33 364 spin_unlock_bh(&host->lock);
deec9ae3
HS
365
366 seq_printf(s, "MR:\t0x%08x%s%s CLKDIV=%u\n",
367 buf[MCI_MR / 4],
368 buf[MCI_MR / 4] & MCI_MR_RDPROOF ? " RDPROOF" : "",
369 buf[MCI_MR / 4] & MCI_MR_WRPROOF ? " WRPROOF" : "",
370 buf[MCI_MR / 4] & 0xff);
371 seq_printf(s, "DTOR:\t0x%08x\n", buf[MCI_DTOR / 4]);
372 seq_printf(s, "SDCR:\t0x%08x\n", buf[MCI_SDCR / 4]);
373 seq_printf(s, "ARGR:\t0x%08x\n", buf[MCI_ARGR / 4]);
374 seq_printf(s, "BLKR:\t0x%08x BCNT=%u BLKLEN=%u\n",
375 buf[MCI_BLKR / 4],
376 buf[MCI_BLKR / 4] & 0xffff,
377 (buf[MCI_BLKR / 4] >> 16) & 0xffff);
74791a2d
NF
378 if (atmci_is_mci2())
379 seq_printf(s, "CSTOR:\t0x%08x\n", buf[MCI_CSTOR / 4]);
deec9ae3
HS
380
381 /* Don't read RSPR and RDR; it will consume the data there */
382
383 atmci_show_status_reg(s, "SR", buf[MCI_SR / 4]);
384 atmci_show_status_reg(s, "IMR", buf[MCI_IMR / 4]);
385
74791a2d
NF
386 if (atmci_is_mci2()) {
387 u32 val;
388
389 val = buf[MCI_DMA / 4];
390 seq_printf(s, "DMA:\t0x%08x OFFSET=%u CHKSIZE=%u%s\n",
391 val, val & 3,
392 ((val >> 4) & 3) ?
393 1 << (((val >> 4) & 3) + 1) : 1,
394 val & MCI_DMAEN ? " DMAEN" : "");
395
396 val = buf[MCI_CFG / 4];
397 seq_printf(s, "CFG:\t0x%08x%s%s%s%s\n",
398 val,
399 val & MCI_CFG_FIFOMODE_1DATA ? " FIFOMODE_ONE_DATA" : "",
400 val & MCI_CFG_FERRCTRL_COR ? " FERRCTRL_CLEAR_ON_READ" : "",
401 val & MCI_CFG_HSMODE ? " HSMODE" : "",
402 val & MCI_CFG_LSYNC ? " LSYNC" : "");
403 }
404
b17339a1
HS
405 kfree(buf);
406
deec9ae3
HS
407 return 0;
408}
409
410static int atmci_regs_open(struct inode *inode, struct file *file)
411{
412 return single_open(file, atmci_regs_show, inode->i_private);
413}
414
415static const struct file_operations atmci_regs_fops = {
416 .owner = THIS_MODULE,
417 .open = atmci_regs_open,
418 .read = seq_read,
419 .llseek = seq_lseek,
420 .release = single_release,
421};
422
965ebf33 423static void atmci_init_debugfs(struct atmel_mci_slot *slot)
deec9ae3 424{
965ebf33
HS
425 struct mmc_host *mmc = slot->mmc;
426 struct atmel_mci *host = slot->host;
427 struct dentry *root;
428 struct dentry *node;
deec9ae3 429
deec9ae3
HS
430 root = mmc->debugfs_root;
431 if (!root)
432 return;
433
434 node = debugfs_create_file("regs", S_IRUSR, root, host,
435 &atmci_regs_fops);
436 if (IS_ERR(node))
437 return;
438 if (!node)
439 goto err;
440
965ebf33 441 node = debugfs_create_file("req", S_IRUSR, root, slot, &atmci_req_fops);
deec9ae3
HS
442 if (!node)
443 goto err;
444
c06ad258
HS
445 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
446 if (!node)
447 goto err;
448
deec9ae3
HS
449 node = debugfs_create_x32("pending_events", S_IRUSR, root,
450 (u32 *)&host->pending_events);
451 if (!node)
452 goto err;
453
454 node = debugfs_create_x32("completed_events", S_IRUSR, root,
455 (u32 *)&host->completed_events);
456 if (!node)
457 goto err;
458
459 return;
460
461err:
965ebf33 462 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
deec9ae3 463}
7d2be074 464
7d2be074
HS
465static inline unsigned int ns_to_clocks(struct atmel_mci *host,
466 unsigned int ns)
467{
468 return (ns * (host->bus_hz / 1000000) + 999) / 1000;
469}
470
471static void atmci_set_timeout(struct atmel_mci *host,
965ebf33 472 struct atmel_mci_slot *slot, struct mmc_data *data)
7d2be074
HS
473{
474 static unsigned dtomul_to_shift[] = {
475 0, 4, 7, 8, 10, 12, 16, 20
476 };
477 unsigned timeout;
478 unsigned dtocyc;
479 unsigned dtomul;
480
481 timeout = ns_to_clocks(host, data->timeout_ns) + data->timeout_clks;
482
483 for (dtomul = 0; dtomul < 8; dtomul++) {
484 unsigned shift = dtomul_to_shift[dtomul];
485 dtocyc = (timeout + (1 << shift) - 1) >> shift;
486 if (dtocyc < 15)
487 break;
488 }
489
490 if (dtomul >= 8) {
491 dtomul = 7;
492 dtocyc = 15;
493 }
494
965ebf33 495 dev_vdbg(&slot->mmc->class_dev, "setting timeout to %u cycles\n",
7d2be074
HS
496 dtocyc << dtomul_to_shift[dtomul]);
497 mci_writel(host, DTOR, (MCI_DTOMUL(dtomul) | MCI_DTOCYC(dtocyc)));
498}
499
500/*
501 * Return mask with command flags to be enabled for this command.
502 */
503static u32 atmci_prepare_command(struct mmc_host *mmc,
504 struct mmc_command *cmd)
505{
506 struct mmc_data *data;
507 u32 cmdr;
508
509 cmd->error = -EINPROGRESS;
510
511 cmdr = MCI_CMDR_CMDNB(cmd->opcode);
512
513 if (cmd->flags & MMC_RSP_PRESENT) {
514 if (cmd->flags & MMC_RSP_136)
515 cmdr |= MCI_CMDR_RSPTYP_136BIT;
516 else
517 cmdr |= MCI_CMDR_RSPTYP_48BIT;
518 }
519
520 /*
521 * This should really be MAXLAT_5 for CMD2 and ACMD41, but
522 * it's too difficult to determine whether this is an ACMD or
523 * not. Better make it 64.
524 */
525 cmdr |= MCI_CMDR_MAXLAT_64CYC;
526
527 if (mmc->ios.bus_mode == MMC_BUSMODE_OPENDRAIN)
528 cmdr |= MCI_CMDR_OPDCMD;
529
530 data = cmd->data;
531 if (data) {
532 cmdr |= MCI_CMDR_START_XFER;
533 if (data->flags & MMC_DATA_STREAM)
534 cmdr |= MCI_CMDR_STREAM;
535 else if (data->blocks > 1)
536 cmdr |= MCI_CMDR_MULTI_BLOCK;
537 else
538 cmdr |= MCI_CMDR_BLOCK;
539
540 if (data->flags & MMC_DATA_READ)
541 cmdr |= MCI_CMDR_TRDIR_READ;
542 }
543
544 return cmdr;
545}
546
547static void atmci_start_command(struct atmel_mci *host,
965ebf33 548 struct mmc_command *cmd, u32 cmd_flags)
7d2be074 549{
7d2be074
HS
550 WARN_ON(host->cmd);
551 host->cmd = cmd;
552
965ebf33 553 dev_vdbg(&host->pdev->dev,
7d2be074
HS
554 "start command: ARGR=0x%08x CMDR=0x%08x\n",
555 cmd->arg, cmd_flags);
556
557 mci_writel(host, ARGR, cmd->arg);
558 mci_writel(host, CMDR, cmd_flags);
559}
560
965ebf33 561static void send_stop_cmd(struct atmel_mci *host, struct mmc_data *data)
7d2be074 562{
7d2be074
HS
563 atmci_start_command(host, data->stop, host->stop_cmdr);
564 mci_writel(host, IER, MCI_CMDRDY);
565}
566
65e8b083
HS
567#ifdef CONFIG_MMC_ATMELMCI_DMA
568static void atmci_dma_cleanup(struct atmel_mci *host)
569{
570 struct mmc_data *data = host->data;
571
009a891b
NF
572 if (data)
573 dma_unmap_sg(&host->pdev->dev, data->sg, data->sg_len,
574 ((data->flags & MMC_DATA_WRITE)
575 ? DMA_TO_DEVICE : DMA_FROM_DEVICE));
65e8b083
HS
576}
577
578static void atmci_stop_dma(struct atmel_mci *host)
579{
580 struct dma_chan *chan = host->data_chan;
581
582 if (chan) {
05827630 583 chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
65e8b083
HS
584 atmci_dma_cleanup(host);
585 } else {
586 /* Data transfer was stopped by the interrupt handler */
587 atmci_set_pending(host, EVENT_XFER_COMPLETE);
588 mci_writel(host, IER, MCI_NOTBUSY);
589 }
590}
591
592/* This function is called by the DMA driver from tasklet context. */
593static void atmci_dma_complete(void *arg)
594{
595 struct atmel_mci *host = arg;
596 struct mmc_data *data = host->data;
597
598 dev_vdbg(&host->pdev->dev, "DMA complete\n");
599
74791a2d
NF
600 if (atmci_is_mci2())
601 /* Disable DMA hardware handshaking on MCI */
602 mci_writel(host, DMA, mci_readl(host, DMA) & ~MCI_DMAEN);
603
65e8b083
HS
604 atmci_dma_cleanup(host);
605
606 /*
607 * If the card was removed, data will be NULL. No point trying
608 * to send the stop command or waiting for NBUSY in this case.
609 */
610 if (data) {
611 atmci_set_pending(host, EVENT_XFER_COMPLETE);
612 tasklet_schedule(&host->tasklet);
613
614 /*
615 * Regardless of what the documentation says, we have
616 * to wait for NOTBUSY even after block read
617 * operations.
618 *
619 * When the DMA transfer is complete, the controller
620 * may still be reading the CRC from the card, i.e.
621 * the data transfer is still in progress and we
622 * haven't seen all the potential error bits yet.
623 *
624 * The interrupt handler will schedule a different
625 * tasklet to finish things up when the data transfer
626 * is completely done.
627 *
628 * We may not complete the mmc request here anyway
629 * because the mmc layer may call back and cause us to
630 * violate the "don't submit new operations from the
631 * completion callback" rule of the dma engine
632 * framework.
633 */
634 mci_writel(host, IER, MCI_NOTBUSY);
635 }
636}
637
638static int
74791a2d 639atmci_prepare_data_dma(struct atmel_mci *host, struct mmc_data *data)
65e8b083
HS
640{
641 struct dma_chan *chan;
642 struct dma_async_tx_descriptor *desc;
643 struct scatterlist *sg;
644 unsigned int i;
645 enum dma_data_direction direction;
657a77fa 646 unsigned int sglen;
65e8b083
HS
647
648 /*
649 * We don't do DMA on "complex" transfers, i.e. with
650 * non-word-aligned buffers or lengths. Also, we don't bother
651 * with all the DMA setup overhead for short transfers.
652 */
653 if (data->blocks * data->blksz < ATMCI_DMA_THRESHOLD)
654 return -EINVAL;
655 if (data->blksz & 3)
656 return -EINVAL;
657
658 for_each_sg(data->sg, sg, data->sg_len, i) {
659 if (sg->offset & 3 || sg->length & 3)
660 return -EINVAL;
661 }
662
663 /* If we don't have a channel, we can't do DMA */
664 chan = host->dma.chan;
6f49a57a 665 if (chan)
65e8b083 666 host->data_chan = chan;
65e8b083
HS
667
668 if (!chan)
669 return -ENODEV;
670
74791a2d
NF
671 if (atmci_is_mci2())
672 mci_writel(host, DMA, MCI_DMA_CHKSIZE(3) | MCI_DMAEN);
673
65e8b083
HS
674 if (data->flags & MMC_DATA_READ)
675 direction = DMA_FROM_DEVICE;
676 else
677 direction = DMA_TO_DEVICE;
678
657a77fa
AN
679 sglen = dma_map_sg(&host->pdev->dev, data->sg, data->sg_len, direction);
680 if (sglen != data->sg_len)
681 goto unmap_exit;
65e8b083
HS
682 desc = chan->device->device_prep_slave_sg(chan,
683 data->sg, data->sg_len, direction,
684 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
685 if (!desc)
657a77fa 686 goto unmap_exit;
65e8b083
HS
687
688 host->dma.data_desc = desc;
689 desc->callback = atmci_dma_complete;
690 desc->callback_param = host;
65e8b083
HS
691
692 return 0;
657a77fa
AN
693unmap_exit:
694 dma_unmap_sg(&host->pdev->dev, data->sg, sglen, direction);
695 return -ENOMEM;
65e8b083
HS
696}
697
74791a2d
NF
698static void atmci_submit_data(struct atmel_mci *host)
699{
700 struct dma_chan *chan = host->data_chan;
701 struct dma_async_tx_descriptor *desc = host->dma.data_desc;
702
703 if (chan) {
704 desc->tx_submit(desc);
705 chan->device->device_issue_pending(chan);
706 }
707}
708
65e8b083
HS
709#else /* CONFIG_MMC_ATMELMCI_DMA */
710
74791a2d 711static int atmci_prepare_data_dma(struct atmel_mci *host, struct mmc_data *data)
65e8b083
HS
712{
713 return -ENOSYS;
714}
715
74791a2d
NF
716static void atmci_submit_data(struct atmel_mci *host) {}
717
65e8b083
HS
718static void atmci_stop_dma(struct atmel_mci *host)
719{
720 /* Data transfer was stopped by the interrupt handler */
721 atmci_set_pending(host, EVENT_XFER_COMPLETE);
722 mci_writel(host, IER, MCI_NOTBUSY);
723}
724
725#endif /* CONFIG_MMC_ATMELMCI_DMA */
726
7d2be074
HS
727/*
728 * Returns a mask of interrupt flags to be enabled after the whole
729 * request has been prepared.
730 */
74791a2d 731static u32 atmci_prepare_data(struct atmel_mci *host, struct mmc_data *data)
7d2be074 732{
965ebf33 733 u32 iflags;
7d2be074
HS
734
735 data->error = -EINPROGRESS;
736
737 WARN_ON(host->data);
738 host->sg = NULL;
739 host->data = data;
740
7d2be074 741 iflags = ATMCI_DATA_ERROR_FLAGS;
74791a2d 742 if (atmci_prepare_data_dma(host, data)) {
65e8b083 743 host->data_chan = NULL;
965ebf33 744
65e8b083
HS
745 /*
746 * Errata: MMC data write operation with less than 12
747 * bytes is impossible.
748 *
749 * Errata: MCI Transmit Data Register (TDR) FIFO
750 * corruption when length is not multiple of 4.
751 */
752 if (data->blocks * data->blksz < 12
753 || (data->blocks * data->blksz) & 3)
754 host->need_reset = true;
965ebf33 755
65e8b083
HS
756 host->sg = data->sg;
757 host->pio_offset = 0;
758 if (data->flags & MMC_DATA_READ)
759 iflags |= MCI_RXRDY;
760 else
761 iflags |= MCI_TXRDY;
762 }
7d2be074
HS
763
764 return iflags;
765}
766
965ebf33
HS
767static void atmci_start_request(struct atmel_mci *host,
768 struct atmel_mci_slot *slot)
7d2be074 769{
965ebf33 770 struct mmc_request *mrq;
7d2be074 771 struct mmc_command *cmd;
965ebf33 772 struct mmc_data *data;
7d2be074 773 u32 iflags;
965ebf33 774 u32 cmdflags;
7d2be074 775
965ebf33
HS
776 mrq = slot->mrq;
777 host->cur_slot = slot;
7d2be074 778 host->mrq = mrq;
965ebf33 779
7d2be074
HS
780 host->pending_events = 0;
781 host->completed_events = 0;
ca55f46e 782 host->data_status = 0;
7d2be074 783
965ebf33
HS
784 if (host->need_reset) {
785 mci_writel(host, CR, MCI_CR_SWRST);
786 mci_writel(host, CR, MCI_CR_MCIEN);
787 mci_writel(host, MR, host->mode_reg);
74791a2d
NF
788 if (atmci_is_mci2())
789 mci_writel(host, CFG, host->cfg_reg);
965ebf33
HS
790 host->need_reset = false;
791 }
792 mci_writel(host, SDCR, slot->sdc_reg);
793
794 iflags = mci_readl(host, IMR);
795 if (iflags)
796 dev_warn(&slot->mmc->class_dev, "WARNING: IMR=0x%08x\n",
797 iflags);
798
799 if (unlikely(test_and_clear_bit(ATMCI_CARD_NEED_INIT, &slot->flags))) {
800 /* Send init sequence (74 clock cycles) */
801 mci_writel(host, CMDR, MCI_CMDR_SPCMD_INIT);
802 while (!(mci_readl(host, SR) & MCI_CMDRDY))
803 cpu_relax();
804 }
74791a2d 805 iflags = 0;
7d2be074
HS
806 data = mrq->data;
807 if (data) {
965ebf33 808 atmci_set_timeout(host, slot, data);
a252e3e3
HS
809
810 /* Must set block count/size before sending command */
811 mci_writel(host, BLKR, MCI_BCNT(data->blocks)
812 | MCI_BLKLEN(data->blksz));
965ebf33
HS
813 dev_vdbg(&slot->mmc->class_dev, "BLKR=0x%08x\n",
814 MCI_BCNT(data->blocks) | MCI_BLKLEN(data->blksz));
74791a2d
NF
815
816 iflags |= atmci_prepare_data(host, data);
7d2be074
HS
817 }
818
74791a2d 819 iflags |= MCI_CMDRDY;
7d2be074 820 cmd = mrq->cmd;
965ebf33 821 cmdflags = atmci_prepare_command(slot->mmc, cmd);
7d2be074
HS
822 atmci_start_command(host, cmd, cmdflags);
823
824 if (data)
74791a2d 825 atmci_submit_data(host);
7d2be074
HS
826
827 if (mrq->stop) {
965ebf33 828 host->stop_cmdr = atmci_prepare_command(slot->mmc, mrq->stop);
7d2be074
HS
829 host->stop_cmdr |= MCI_CMDR_STOP_XFER;
830 if (!(data->flags & MMC_DATA_WRITE))
831 host->stop_cmdr |= MCI_CMDR_TRDIR_READ;
832 if (data->flags & MMC_DATA_STREAM)
833 host->stop_cmdr |= MCI_CMDR_STREAM;
834 else
835 host->stop_cmdr |= MCI_CMDR_MULTI_BLOCK;
836 }
837
838 /*
839 * We could have enabled interrupts earlier, but I suspect
840 * that would open up a nice can of interesting race
841 * conditions (e.g. command and data complete, but stop not
842 * prepared yet.)
843 */
844 mci_writel(host, IER, iflags);
965ebf33 845}
7d2be074 846
965ebf33
HS
847static void atmci_queue_request(struct atmel_mci *host,
848 struct atmel_mci_slot *slot, struct mmc_request *mrq)
849{
850 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
851 host->state);
852
853 spin_lock_bh(&host->lock);
854 slot->mrq = mrq;
855 if (host->state == STATE_IDLE) {
856 host->state = STATE_SENDING_CMD;
857 atmci_start_request(host, slot);
858 } else {
859 list_add_tail(&slot->queue_node, &host->queue);
860 }
861 spin_unlock_bh(&host->lock);
862}
7d2be074 863
965ebf33
HS
864static void atmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
865{
866 struct atmel_mci_slot *slot = mmc_priv(mmc);
867 struct atmel_mci *host = slot->host;
868 struct mmc_data *data;
869
870 WARN_ON(slot->mrq);
871
872 /*
873 * We may "know" the card is gone even though there's still an
874 * electrical connection. If so, we really need to communicate
875 * this to the MMC core since there won't be any more
876 * interrupts as the card is completely removed. Otherwise,
877 * the MMC core might believe the card is still there even
878 * though the card was just removed very slowly.
879 */
880 if (!test_bit(ATMCI_CARD_PRESENT, &slot->flags)) {
881 mrq->cmd->error = -ENOMEDIUM;
882 mmc_request_done(mmc, mrq);
883 return;
884 }
885
886 /* We don't support multiple blocks of weird lengths. */
887 data = mrq->data;
888 if (data && data->blocks > 1 && data->blksz & 3) {
889 mrq->cmd->error = -EINVAL;
890 mmc_request_done(mmc, mrq);
891 }
892
893 atmci_queue_request(host, slot, mrq);
7d2be074
HS
894}
895
896static void atmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
897{
965ebf33
HS
898 struct atmel_mci_slot *slot = mmc_priv(mmc);
899 struct atmel_mci *host = slot->host;
900 unsigned int i;
7d2be074 901
965ebf33 902 slot->sdc_reg &= ~MCI_SDCBUS_MASK;
945533b5
HS
903 switch (ios->bus_width) {
904 case MMC_BUS_WIDTH_1:
965ebf33 905 slot->sdc_reg |= MCI_SDCBUS_1BIT;
945533b5
HS
906 break;
907 case MMC_BUS_WIDTH_4:
32ab83a5 908 slot->sdc_reg |= MCI_SDCBUS_4BIT;
945533b5
HS
909 break;
910 }
911
7d2be074 912 if (ios->clock) {
965ebf33 913 unsigned int clock_min = ~0U;
7d2be074
HS
914 u32 clkdiv;
915
965ebf33
HS
916 spin_lock_bh(&host->lock);
917 if (!host->mode_reg) {
945533b5 918 clk_enable(host->mck);
965ebf33
HS
919 mci_writel(host, CR, MCI_CR_SWRST);
920 mci_writel(host, CR, MCI_CR_MCIEN);
74791a2d
NF
921 if (atmci_is_mci2())
922 mci_writel(host, CFG, host->cfg_reg);
965ebf33 923 }
945533b5 924
965ebf33
HS
925 /*
926 * Use mirror of ios->clock to prevent race with mmc
927 * core ios update when finding the minimum.
928 */
929 slot->clock = ios->clock;
930 for (i = 0; i < ATMEL_MCI_MAX_NR_SLOTS; i++) {
931 if (host->slot[i] && host->slot[i]->clock
932 && host->slot[i]->clock < clock_min)
933 clock_min = host->slot[i]->clock;
934 }
935
936 /* Calculate clock divider */
937 clkdiv = DIV_ROUND_UP(host->bus_hz, 2 * clock_min) - 1;
7d2be074
HS
938 if (clkdiv > 255) {
939 dev_warn(&mmc->class_dev,
940 "clock %u too slow; using %lu\n",
965ebf33 941 clock_min, host->bus_hz / (2 * 256));
7d2be074
HS
942 clkdiv = 255;
943 }
944
04d699c3
RE
945 host->mode_reg = MCI_MR_CLKDIV(clkdiv);
946
965ebf33
HS
947 /*
948 * WRPROOF and RDPROOF prevent overruns/underruns by
949 * stopping the clock when the FIFO is full/empty.
950 * This state is not expected to last for long.
951 */
04d699c3
RE
952 if (mci_has_rwproof())
953 host->mode_reg |= (MCI_MR_WRPROOF | MCI_MR_RDPROOF);
7d2be074 954
99ddffd8
NF
955 if (atmci_is_mci2()) {
956 /* setup High Speed mode in relation with card capacity */
957 if (ios->timing == MMC_TIMING_SD_HS)
958 host->cfg_reg |= MCI_CFG_HSMODE;
959 else
960 host->cfg_reg &= ~MCI_CFG_HSMODE;
961 }
962
963 if (list_empty(&host->queue)) {
965ebf33 964 mci_writel(host, MR, host->mode_reg);
99ddffd8
NF
965 if (atmci_is_mci2())
966 mci_writel(host, CFG, host->cfg_reg);
967 } else {
965ebf33 968 host->need_clock_update = true;
99ddffd8 969 }
965ebf33
HS
970
971 spin_unlock_bh(&host->lock);
945533b5 972 } else {
965ebf33
HS
973 bool any_slot_active = false;
974
975 spin_lock_bh(&host->lock);
976 slot->clock = 0;
977 for (i = 0; i < ATMEL_MCI_MAX_NR_SLOTS; i++) {
978 if (host->slot[i] && host->slot[i]->clock) {
979 any_slot_active = true;
980 break;
981 }
945533b5 982 }
965ebf33
HS
983 if (!any_slot_active) {
984 mci_writel(host, CR, MCI_CR_MCIDIS);
985 if (host->mode_reg) {
986 mci_readl(host, MR);
987 clk_disable(host->mck);
988 }
989 host->mode_reg = 0;
990 }
991 spin_unlock_bh(&host->lock);
7d2be074
HS
992 }
993
994 switch (ios->power_mode) {
965ebf33
HS
995 case MMC_POWER_UP:
996 set_bit(ATMCI_CARD_NEED_INIT, &slot->flags);
997 break;
7d2be074
HS
998 default:
999 /*
1000 * TODO: None of the currently available AVR32-based
1001 * boards allow MMC power to be turned off. Implement
1002 * power control when this can be tested properly.
965ebf33
HS
1003 *
1004 * We also need to hook this into the clock management
1005 * somehow so that newly inserted cards aren't
1006 * subjected to a fast clock before we have a chance
1007 * to figure out what the maximum rate is. Currently,
1008 * there's no way to avoid this, and there never will
1009 * be for boards that don't support power control.
7d2be074
HS
1010 */
1011 break;
1012 }
1013}
1014
1015static int atmci_get_ro(struct mmc_host *mmc)
1016{
965ebf33
HS
1017 int read_only = -ENOSYS;
1018 struct atmel_mci_slot *slot = mmc_priv(mmc);
7d2be074 1019
965ebf33
HS
1020 if (gpio_is_valid(slot->wp_pin)) {
1021 read_only = gpio_get_value(slot->wp_pin);
7d2be074
HS
1022 dev_dbg(&mmc->class_dev, "card is %s\n",
1023 read_only ? "read-only" : "read-write");
7d2be074
HS
1024 }
1025
1026 return read_only;
1027}
1028
965ebf33
HS
1029static int atmci_get_cd(struct mmc_host *mmc)
1030{
1031 int present = -ENOSYS;
1032 struct atmel_mci_slot *slot = mmc_priv(mmc);
1033
1034 if (gpio_is_valid(slot->detect_pin)) {
1c1452be
JL
1035 present = !(gpio_get_value(slot->detect_pin) ^
1036 slot->detect_is_active_high);
965ebf33
HS
1037 dev_dbg(&mmc->class_dev, "card is %spresent\n",
1038 present ? "" : "not ");
1039 }
1040
1041 return present;
1042}
1043
1044static const struct mmc_host_ops atmci_ops = {
7d2be074
HS
1045 .request = atmci_request,
1046 .set_ios = atmci_set_ios,
1047 .get_ro = atmci_get_ro,
965ebf33 1048 .get_cd = atmci_get_cd,
7d2be074
HS
1049};
1050
965ebf33
HS
1051/* Called with host->lock held */
1052static void atmci_request_end(struct atmel_mci *host, struct mmc_request *mrq)
1053 __releases(&host->lock)
1054 __acquires(&host->lock)
1055{
1056 struct atmel_mci_slot *slot = NULL;
1057 struct mmc_host *prev_mmc = host->cur_slot->mmc;
1058
1059 WARN_ON(host->cmd || host->data);
1060
1061 /*
1062 * Update the MMC clock rate if necessary. This may be
1063 * necessary if set_ios() is called when a different slot is
1064 * busy transfering data.
1065 */
99ddffd8 1066 if (host->need_clock_update) {
965ebf33 1067 mci_writel(host, MR, host->mode_reg);
99ddffd8
NF
1068 if (atmci_is_mci2())
1069 mci_writel(host, CFG, host->cfg_reg);
1070 }
965ebf33
HS
1071
1072 host->cur_slot->mrq = NULL;
1073 host->mrq = NULL;
1074 if (!list_empty(&host->queue)) {
1075 slot = list_entry(host->queue.next,
1076 struct atmel_mci_slot, queue_node);
1077 list_del(&slot->queue_node);
1078 dev_vdbg(&host->pdev->dev, "list not empty: %s is next\n",
1079 mmc_hostname(slot->mmc));
1080 host->state = STATE_SENDING_CMD;
1081 atmci_start_request(host, slot);
1082 } else {
1083 dev_vdbg(&host->pdev->dev, "list empty\n");
1084 host->state = STATE_IDLE;
1085 }
1086
1087 spin_unlock(&host->lock);
1088 mmc_request_done(prev_mmc, mrq);
1089 spin_lock(&host->lock);
1090}
1091
7d2be074 1092static void atmci_command_complete(struct atmel_mci *host,
c06ad258 1093 struct mmc_command *cmd)
7d2be074 1094{
c06ad258
HS
1095 u32 status = host->cmd_status;
1096
7d2be074
HS
1097 /* Read the response from the card (up to 16 bytes) */
1098 cmd->resp[0] = mci_readl(host, RSPR);
1099 cmd->resp[1] = mci_readl(host, RSPR);
1100 cmd->resp[2] = mci_readl(host, RSPR);
1101 cmd->resp[3] = mci_readl(host, RSPR);
1102
1103 if (status & MCI_RTOE)
1104 cmd->error = -ETIMEDOUT;
1105 else if ((cmd->flags & MMC_RSP_CRC) && (status & MCI_RCRCE))
1106 cmd->error = -EILSEQ;
1107 else if (status & (MCI_RINDE | MCI_RDIRE | MCI_RENDE))
1108 cmd->error = -EIO;
1109 else
1110 cmd->error = 0;
1111
1112 if (cmd->error) {
965ebf33 1113 dev_dbg(&host->pdev->dev,
7d2be074
HS
1114 "command error: status=0x%08x\n", status);
1115
1116 if (cmd->data) {
65e8b083 1117 atmci_stop_dma(host);
009a891b 1118 host->data = NULL;
7d2be074
HS
1119 mci_writel(host, IDR, MCI_NOTBUSY
1120 | MCI_TXRDY | MCI_RXRDY
1121 | ATMCI_DATA_ERROR_FLAGS);
1122 }
1123 }
1124}
1125
1126static void atmci_detect_change(unsigned long data)
1127{
965ebf33
HS
1128 struct atmel_mci_slot *slot = (struct atmel_mci_slot *)data;
1129 bool present;
1130 bool present_old;
7d2be074
HS
1131
1132 /*
965ebf33
HS
1133 * atmci_cleanup_slot() sets the ATMCI_SHUTDOWN flag before
1134 * freeing the interrupt. We must not re-enable the interrupt
1135 * if it has been freed, and if we're shutting down, it
1136 * doesn't really matter whether the card is present or not.
7d2be074
HS
1137 */
1138 smp_rmb();
965ebf33 1139 if (test_bit(ATMCI_SHUTDOWN, &slot->flags))
7d2be074
HS
1140 return;
1141
965ebf33 1142 enable_irq(gpio_to_irq(slot->detect_pin));
1c1452be
JL
1143 present = !(gpio_get_value(slot->detect_pin) ^
1144 slot->detect_is_active_high);
965ebf33 1145 present_old = test_bit(ATMCI_CARD_PRESENT, &slot->flags);
7d2be074 1146
965ebf33
HS
1147 dev_vdbg(&slot->mmc->class_dev, "detect change: %d (was %d)\n",
1148 present, present_old);
7d2be074 1149
965ebf33
HS
1150 if (present != present_old) {
1151 struct atmel_mci *host = slot->host;
1152 struct mmc_request *mrq;
1153
1154 dev_dbg(&slot->mmc->class_dev, "card %s\n",
7d2be074 1155 present ? "inserted" : "removed");
7d2be074 1156
965ebf33
HS
1157 spin_lock(&host->lock);
1158
1159 if (!present)
1160 clear_bit(ATMCI_CARD_PRESENT, &slot->flags);
1161 else
1162 set_bit(ATMCI_CARD_PRESENT, &slot->flags);
7d2be074
HS
1163
1164 /* Clean up queue if present */
965ebf33 1165 mrq = slot->mrq;
7d2be074 1166 if (mrq) {
965ebf33
HS
1167 if (mrq == host->mrq) {
1168 /*
1169 * Reset controller to terminate any ongoing
1170 * commands or data transfers.
1171 */
1172 mci_writel(host, CR, MCI_CR_SWRST);
1173 mci_writel(host, CR, MCI_CR_MCIEN);
1174 mci_writel(host, MR, host->mode_reg);
74791a2d
NF
1175 if (atmci_is_mci2())
1176 mci_writel(host, CFG, host->cfg_reg);
965ebf33
HS
1177
1178 host->data = NULL;
1179 host->cmd = NULL;
1180
1181 switch (host->state) {
1182 case STATE_IDLE:
c06ad258 1183 break;
965ebf33
HS
1184 case STATE_SENDING_CMD:
1185 mrq->cmd->error = -ENOMEDIUM;
1186 if (!mrq->data)
1187 break;
1188 /* fall through */
1189 case STATE_SENDING_DATA:
c06ad258 1190 mrq->data->error = -ENOMEDIUM;
65e8b083 1191 atmci_stop_dma(host);
c06ad258 1192 break;
965ebf33
HS
1193 case STATE_DATA_BUSY:
1194 case STATE_DATA_ERROR:
1195 if (mrq->data->error == -EINPROGRESS)
1196 mrq->data->error = -ENOMEDIUM;
1197 if (!mrq->stop)
1198 break;
1199 /* fall through */
1200 case STATE_SENDING_STOP:
1201 mrq->stop->error = -ENOMEDIUM;
1202 break;
1203 }
7d2be074 1204
965ebf33
HS
1205 atmci_request_end(host, mrq);
1206 } else {
1207 list_del(&slot->queue_node);
1208 mrq->cmd->error = -ENOMEDIUM;
1209 if (mrq->data)
1210 mrq->data->error = -ENOMEDIUM;
1211 if (mrq->stop)
1212 mrq->stop->error = -ENOMEDIUM;
1213
1214 spin_unlock(&host->lock);
1215 mmc_request_done(slot->mmc, mrq);
1216 spin_lock(&host->lock);
1217 }
7d2be074 1218 }
965ebf33 1219 spin_unlock(&host->lock);
7d2be074 1220
965ebf33 1221 mmc_detect_change(slot->mmc, 0);
7d2be074
HS
1222 }
1223}
1224
1225static void atmci_tasklet_func(unsigned long priv)
1226{
965ebf33 1227 struct atmel_mci *host = (struct atmel_mci *)priv;
7d2be074
HS
1228 struct mmc_request *mrq = host->mrq;
1229 struct mmc_data *data = host->data;
c06ad258
HS
1230 struct mmc_command *cmd = host->cmd;
1231 enum atmel_mci_state state = host->state;
1232 enum atmel_mci_state prev_state;
1233 u32 status;
1234
965ebf33
HS
1235 spin_lock(&host->lock);
1236
c06ad258 1237 state = host->state;
7d2be074 1238
965ebf33 1239 dev_vdbg(&host->pdev->dev,
c06ad258
HS
1240 "tasklet: state %u pending/completed/mask %lx/%lx/%x\n",
1241 state, host->pending_events, host->completed_events,
7d2be074
HS
1242 mci_readl(host, IMR));
1243
c06ad258
HS
1244 do {
1245 prev_state = state;
7d2be074 1246
c06ad258 1247 switch (state) {
965ebf33
HS
1248 case STATE_IDLE:
1249 break;
1250
c06ad258
HS
1251 case STATE_SENDING_CMD:
1252 if (!atmci_test_and_clear_pending(host,
1253 EVENT_CMD_COMPLETE))
1254 break;
7d2be074 1255
c06ad258
HS
1256 host->cmd = NULL;
1257 atmci_set_completed(host, EVENT_CMD_COMPLETE);
1258 atmci_command_complete(host, mrq->cmd);
1259 if (!mrq->data || cmd->error) {
965ebf33
HS
1260 atmci_request_end(host, host->mrq);
1261 goto unlock;
c06ad258 1262 }
7d2be074 1263
c06ad258
HS
1264 prev_state = state = STATE_SENDING_DATA;
1265 /* fall through */
7d2be074 1266
c06ad258
HS
1267 case STATE_SENDING_DATA:
1268 if (atmci_test_and_clear_pending(host,
1269 EVENT_DATA_ERROR)) {
65e8b083 1270 atmci_stop_dma(host);
c06ad258 1271 if (data->stop)
965ebf33 1272 send_stop_cmd(host, data);
c06ad258
HS
1273 state = STATE_DATA_ERROR;
1274 break;
1275 }
7d2be074 1276
c06ad258
HS
1277 if (!atmci_test_and_clear_pending(host,
1278 EVENT_XFER_COMPLETE))
1279 break;
7d2be074 1280
c06ad258
HS
1281 atmci_set_completed(host, EVENT_XFER_COMPLETE);
1282 prev_state = state = STATE_DATA_BUSY;
1283 /* fall through */
7d2be074 1284
c06ad258
HS
1285 case STATE_DATA_BUSY:
1286 if (!atmci_test_and_clear_pending(host,
1287 EVENT_DATA_COMPLETE))
1288 break;
1289
1290 host->data = NULL;
1291 atmci_set_completed(host, EVENT_DATA_COMPLETE);
1292 status = host->data_status;
1293 if (unlikely(status & ATMCI_DATA_ERROR_FLAGS)) {
1294 if (status & MCI_DTOE) {
965ebf33 1295 dev_dbg(&host->pdev->dev,
c06ad258
HS
1296 "data timeout error\n");
1297 data->error = -ETIMEDOUT;
1298 } else if (status & MCI_DCRCE) {
965ebf33 1299 dev_dbg(&host->pdev->dev,
c06ad258
HS
1300 "data CRC error\n");
1301 data->error = -EILSEQ;
1302 } else {
965ebf33 1303 dev_dbg(&host->pdev->dev,
c06ad258
HS
1304 "data FIFO error (status=%08x)\n",
1305 status);
1306 data->error = -EIO;
1307 }
1308 } else {
1309 data->bytes_xfered = data->blocks * data->blksz;
1310 data->error = 0;
abc2c9fd 1311 mci_writel(host, IDR, ATMCI_DATA_ERROR_FLAGS);
c06ad258
HS
1312 }
1313
1314 if (!data->stop) {
965ebf33
HS
1315 atmci_request_end(host, host->mrq);
1316 goto unlock;
c06ad258 1317 }
7d2be074 1318
c06ad258
HS
1319 prev_state = state = STATE_SENDING_STOP;
1320 if (!data->error)
965ebf33 1321 send_stop_cmd(host, data);
c06ad258
HS
1322 /* fall through */
1323
1324 case STATE_SENDING_STOP:
1325 if (!atmci_test_and_clear_pending(host,
1326 EVENT_CMD_COMPLETE))
1327 break;
1328
1329 host->cmd = NULL;
1330 atmci_command_complete(host, mrq->stop);
965ebf33
HS
1331 atmci_request_end(host, host->mrq);
1332 goto unlock;
c06ad258
HS
1333
1334 case STATE_DATA_ERROR:
1335 if (!atmci_test_and_clear_pending(host,
1336 EVENT_XFER_COMPLETE))
1337 break;
1338
1339 state = STATE_DATA_BUSY;
1340 break;
1341 }
1342 } while (state != prev_state);
1343
1344 host->state = state;
965ebf33
HS
1345
1346unlock:
1347 spin_unlock(&host->lock);
7d2be074
HS
1348}
1349
1350static void atmci_read_data_pio(struct atmel_mci *host)
1351{
1352 struct scatterlist *sg = host->sg;
1353 void *buf = sg_virt(sg);
1354 unsigned int offset = host->pio_offset;
1355 struct mmc_data *data = host->data;
1356 u32 value;
1357 u32 status;
1358 unsigned int nbytes = 0;
1359
1360 do {
1361 value = mci_readl(host, RDR);
1362 if (likely(offset + 4 <= sg->length)) {
1363 put_unaligned(value, (u32 *)(buf + offset));
1364
1365 offset += 4;
1366 nbytes += 4;
1367
1368 if (offset == sg->length) {
5e7184ae 1369 flush_dcache_page(sg_page(sg));
7d2be074
HS
1370 host->sg = sg = sg_next(sg);
1371 if (!sg)
1372 goto done;
1373
1374 offset = 0;
1375 buf = sg_virt(sg);
1376 }
1377 } else {
1378 unsigned int remaining = sg->length - offset;
1379 memcpy(buf + offset, &value, remaining);
1380 nbytes += remaining;
1381
1382 flush_dcache_page(sg_page(sg));
1383 host->sg = sg = sg_next(sg);
1384 if (!sg)
1385 goto done;
1386
1387 offset = 4 - remaining;
1388 buf = sg_virt(sg);
1389 memcpy(buf, (u8 *)&value + remaining, offset);
1390 nbytes += offset;
1391 }
1392
1393 status = mci_readl(host, SR);
1394 if (status & ATMCI_DATA_ERROR_FLAGS) {
1395 mci_writel(host, IDR, (MCI_NOTBUSY | MCI_RXRDY
1396 | ATMCI_DATA_ERROR_FLAGS));
1397 host->data_status = status;
965ebf33
HS
1398 data->bytes_xfered += nbytes;
1399 smp_wmb();
7d2be074
HS
1400 atmci_set_pending(host, EVENT_DATA_ERROR);
1401 tasklet_schedule(&host->tasklet);
965ebf33 1402 return;
7d2be074
HS
1403 }
1404 } while (status & MCI_RXRDY);
1405
1406 host->pio_offset = offset;
1407 data->bytes_xfered += nbytes;
1408
1409 return;
1410
1411done:
1412 mci_writel(host, IDR, MCI_RXRDY);
1413 mci_writel(host, IER, MCI_NOTBUSY);
1414 data->bytes_xfered += nbytes;
965ebf33 1415 smp_wmb();
c06ad258 1416 atmci_set_pending(host, EVENT_XFER_COMPLETE);
7d2be074
HS
1417}
1418
1419static void atmci_write_data_pio(struct atmel_mci *host)
1420{
1421 struct scatterlist *sg = host->sg;
1422 void *buf = sg_virt(sg);
1423 unsigned int offset = host->pio_offset;
1424 struct mmc_data *data = host->data;
1425 u32 value;
1426 u32 status;
1427 unsigned int nbytes = 0;
1428
1429 do {
1430 if (likely(offset + 4 <= sg->length)) {
1431 value = get_unaligned((u32 *)(buf + offset));
1432 mci_writel(host, TDR, value);
1433
1434 offset += 4;
1435 nbytes += 4;
1436 if (offset == sg->length) {
1437 host->sg = sg = sg_next(sg);
1438 if (!sg)
1439 goto done;
1440
1441 offset = 0;
1442 buf = sg_virt(sg);
1443 }
1444 } else {
1445 unsigned int remaining = sg->length - offset;
1446
1447 value = 0;
1448 memcpy(&value, buf + offset, remaining);
1449 nbytes += remaining;
1450
1451 host->sg = sg = sg_next(sg);
1452 if (!sg) {
1453 mci_writel(host, TDR, value);
1454 goto done;
1455 }
1456
1457 offset = 4 - remaining;
1458 buf = sg_virt(sg);
1459 memcpy((u8 *)&value + remaining, buf, offset);
1460 mci_writel(host, TDR, value);
1461 nbytes += offset;
1462 }
1463
1464 status = mci_readl(host, SR);
1465 if (status & ATMCI_DATA_ERROR_FLAGS) {
1466 mci_writel(host, IDR, (MCI_NOTBUSY | MCI_TXRDY
1467 | ATMCI_DATA_ERROR_FLAGS));
1468 host->data_status = status;
965ebf33
HS
1469 data->bytes_xfered += nbytes;
1470 smp_wmb();
7d2be074
HS
1471 atmci_set_pending(host, EVENT_DATA_ERROR);
1472 tasklet_schedule(&host->tasklet);
965ebf33 1473 return;
7d2be074
HS
1474 }
1475 } while (status & MCI_TXRDY);
1476
1477 host->pio_offset = offset;
1478 data->bytes_xfered += nbytes;
1479
1480 return;
1481
1482done:
1483 mci_writel(host, IDR, MCI_TXRDY);
1484 mci_writel(host, IER, MCI_NOTBUSY);
1485 data->bytes_xfered += nbytes;
965ebf33 1486 smp_wmb();
c06ad258 1487 atmci_set_pending(host, EVENT_XFER_COMPLETE);
7d2be074
HS
1488}
1489
965ebf33 1490static void atmci_cmd_interrupt(struct atmel_mci *host, u32 status)
7d2be074 1491{
7d2be074
HS
1492 mci_writel(host, IDR, MCI_CMDRDY);
1493
c06ad258 1494 host->cmd_status = status;
965ebf33 1495 smp_wmb();
c06ad258 1496 atmci_set_pending(host, EVENT_CMD_COMPLETE);
7d2be074
HS
1497 tasklet_schedule(&host->tasklet);
1498}
1499
1500static irqreturn_t atmci_interrupt(int irq, void *dev_id)
1501{
965ebf33 1502 struct atmel_mci *host = dev_id;
7d2be074
HS
1503 u32 status, mask, pending;
1504 unsigned int pass_count = 0;
1505
7d2be074
HS
1506 do {
1507 status = mci_readl(host, SR);
1508 mask = mci_readl(host, IMR);
1509 pending = status & mask;
1510 if (!pending)
1511 break;
1512
1513 if (pending & ATMCI_DATA_ERROR_FLAGS) {
1514 mci_writel(host, IDR, ATMCI_DATA_ERROR_FLAGS
1515 | MCI_RXRDY | MCI_TXRDY);
1516 pending &= mci_readl(host, IMR);
965ebf33 1517
7d2be074 1518 host->data_status = status;
965ebf33 1519 smp_wmb();
7d2be074
HS
1520 atmci_set_pending(host, EVENT_DATA_ERROR);
1521 tasklet_schedule(&host->tasklet);
1522 }
1523 if (pending & MCI_NOTBUSY) {
c06ad258
HS
1524 mci_writel(host, IDR,
1525 ATMCI_DATA_ERROR_FLAGS | MCI_NOTBUSY);
ca55f46e
HS
1526 if (!host->data_status)
1527 host->data_status = status;
965ebf33 1528 smp_wmb();
7d2be074
HS
1529 atmci_set_pending(host, EVENT_DATA_COMPLETE);
1530 tasklet_schedule(&host->tasklet);
1531 }
1532 if (pending & MCI_RXRDY)
1533 atmci_read_data_pio(host);
1534 if (pending & MCI_TXRDY)
1535 atmci_write_data_pio(host);
1536
1537 if (pending & MCI_CMDRDY)
965ebf33 1538 atmci_cmd_interrupt(host, status);
7d2be074
HS
1539 } while (pass_count++ < 5);
1540
7d2be074
HS
1541 return pass_count ? IRQ_HANDLED : IRQ_NONE;
1542}
1543
1544static irqreturn_t atmci_detect_interrupt(int irq, void *dev_id)
1545{
965ebf33 1546 struct atmel_mci_slot *slot = dev_id;
7d2be074
HS
1547
1548 /*
1549 * Disable interrupts until the pin has stabilized and check
1550 * the state then. Use mod_timer() since we may be in the
1551 * middle of the timer routine when this interrupt triggers.
1552 */
1553 disable_irq_nosync(irq);
965ebf33 1554 mod_timer(&slot->detect_timer, jiffies + msecs_to_jiffies(20));
7d2be074
HS
1555
1556 return IRQ_HANDLED;
1557}
1558
965ebf33
HS
1559static int __init atmci_init_slot(struct atmel_mci *host,
1560 struct mci_slot_pdata *slot_data, unsigned int id,
1561 u32 sdc_reg)
1562{
1563 struct mmc_host *mmc;
1564 struct atmel_mci_slot *slot;
1565
1566 mmc = mmc_alloc_host(sizeof(struct atmel_mci_slot), &host->pdev->dev);
1567 if (!mmc)
1568 return -ENOMEM;
1569
1570 slot = mmc_priv(mmc);
1571 slot->mmc = mmc;
1572 slot->host = host;
1573 slot->detect_pin = slot_data->detect_pin;
1574 slot->wp_pin = slot_data->wp_pin;
1c1452be 1575 slot->detect_is_active_high = slot_data->detect_is_active_high;
965ebf33
HS
1576 slot->sdc_reg = sdc_reg;
1577
1578 mmc->ops = &atmci_ops;
1579 mmc->f_min = DIV_ROUND_UP(host->bus_hz, 512);
1580 mmc->f_max = host->bus_hz / 2;
1581 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
99ddffd8
NF
1582 if (atmci_is_mci2())
1583 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
965ebf33
HS
1584 if (slot_data->bus_width >= 4)
1585 mmc->caps |= MMC_CAP_4_BIT_DATA;
1586
1587 mmc->max_hw_segs = 64;
1588 mmc->max_phys_segs = 64;
1589 mmc->max_req_size = 32768 * 512;
1590 mmc->max_blk_size = 32768;
1591 mmc->max_blk_count = 512;
1592
1593 /* Assume card is present initially */
1594 set_bit(ATMCI_CARD_PRESENT, &slot->flags);
1595 if (gpio_is_valid(slot->detect_pin)) {
1596 if (gpio_request(slot->detect_pin, "mmc_detect")) {
1597 dev_dbg(&mmc->class_dev, "no detect pin available\n");
1598 slot->detect_pin = -EBUSY;
1c1452be
JL
1599 } else if (gpio_get_value(slot->detect_pin) ^
1600 slot->detect_is_active_high) {
965ebf33
HS
1601 clear_bit(ATMCI_CARD_PRESENT, &slot->flags);
1602 }
1603 }
1604
1605 if (!gpio_is_valid(slot->detect_pin))
1606 mmc->caps |= MMC_CAP_NEEDS_POLL;
1607
1608 if (gpio_is_valid(slot->wp_pin)) {
1609 if (gpio_request(slot->wp_pin, "mmc_wp")) {
1610 dev_dbg(&mmc->class_dev, "no WP pin available\n");
1611 slot->wp_pin = -EBUSY;
1612 }
1613 }
1614
1615 host->slot[id] = slot;
1616 mmc_add_host(mmc);
1617
1618 if (gpio_is_valid(slot->detect_pin)) {
1619 int ret;
1620
1621 setup_timer(&slot->detect_timer, atmci_detect_change,
1622 (unsigned long)slot);
1623
1624 ret = request_irq(gpio_to_irq(slot->detect_pin),
1625 atmci_detect_interrupt,
1626 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
1627 "mmc-detect", slot);
1628 if (ret) {
1629 dev_dbg(&mmc->class_dev,
1630 "could not request IRQ %d for detect pin\n",
1631 gpio_to_irq(slot->detect_pin));
1632 gpio_free(slot->detect_pin);
1633 slot->detect_pin = -EBUSY;
1634 }
1635 }
1636
1637 atmci_init_debugfs(slot);
1638
1639 return 0;
1640}
1641
1642static void __exit atmci_cleanup_slot(struct atmel_mci_slot *slot,
1643 unsigned int id)
1644{
1645 /* Debugfs stuff is cleaned up by mmc core */
1646
1647 set_bit(ATMCI_SHUTDOWN, &slot->flags);
1648 smp_wmb();
1649
1650 mmc_remove_host(slot->mmc);
1651
1652 if (gpio_is_valid(slot->detect_pin)) {
1653 int pin = slot->detect_pin;
1654
1655 free_irq(gpio_to_irq(pin), slot);
1656 del_timer_sync(&slot->detect_timer);
1657 gpio_free(pin);
1658 }
1659 if (gpio_is_valid(slot->wp_pin))
1660 gpio_free(slot->wp_pin);
1661
1662 slot->host->slot[id] = NULL;
1663 mmc_free_host(slot->mmc);
1664}
1665
74465b4f 1666#ifdef CONFIG_MMC_ATMELMCI_DMA
7dd60251 1667static bool filter(struct dma_chan *chan, void *slave)
74465b4f 1668{
2635d1ba 1669 struct mci_dma_data *sl = slave;
74465b4f 1670
2635d1ba
NF
1671 if (sl && find_slave_dev(sl) == chan->device->dev) {
1672 chan->private = slave_data_ptr(sl);
7dd60251 1673 return true;
2635d1ba 1674 } else {
7dd60251 1675 return false;
2635d1ba 1676 }
74465b4f 1677}
2635d1ba
NF
1678
1679static void atmci_configure_dma(struct atmel_mci *host)
1680{
1681 struct mci_platform_data *pdata;
1682
1683 if (host == NULL)
1684 return;
1685
1686 pdata = host->pdev->dev.platform_data;
1687
1688 if (pdata && find_slave_dev(pdata->dma_slave)) {
1689 dma_cap_mask_t mask;
1690
1691 setup_dma_addr(pdata->dma_slave,
1692 host->mapbase + MCI_TDR,
1693 host->mapbase + MCI_RDR);
1694
1695 /* Try to grab a DMA channel */
1696 dma_cap_zero(mask);
1697 dma_cap_set(DMA_SLAVE, mask);
1698 host->dma.chan =
1699 dma_request_channel(mask, filter, pdata->dma_slave);
1700 }
1701 if (!host->dma.chan)
1702 dev_notice(&host->pdev->dev, "DMA not available, using PIO\n");
74791a2d
NF
1703 else
1704 dev_info(&host->pdev->dev,
1705 "Using %s for DMA transfers\n",
1706 dma_chan_name(host->dma.chan));
2635d1ba
NF
1707}
1708#else
1709static void atmci_configure_dma(struct atmel_mci *host) {}
74465b4f
DW
1710#endif
1711
7d2be074
HS
1712static int __init atmci_probe(struct platform_device *pdev)
1713{
1714 struct mci_platform_data *pdata;
965ebf33
HS
1715 struct atmel_mci *host;
1716 struct resource *regs;
1717 unsigned int nr_slots;
1718 int irq;
1719 int ret;
7d2be074
HS
1720
1721 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1722 if (!regs)
1723 return -ENXIO;
1724 pdata = pdev->dev.platform_data;
1725 if (!pdata)
1726 return -ENXIO;
1727 irq = platform_get_irq(pdev, 0);
1728 if (irq < 0)
1729 return irq;
1730
965ebf33
HS
1731 host = kzalloc(sizeof(struct atmel_mci), GFP_KERNEL);
1732 if (!host)
7d2be074
HS
1733 return -ENOMEM;
1734
7d2be074 1735 host->pdev = pdev;
965ebf33
HS
1736 spin_lock_init(&host->lock);
1737 INIT_LIST_HEAD(&host->queue);
7d2be074
HS
1738
1739 host->mck = clk_get(&pdev->dev, "mci_clk");
1740 if (IS_ERR(host->mck)) {
1741 ret = PTR_ERR(host->mck);
1742 goto err_clk_get;
1743 }
1744
1745 ret = -ENOMEM;
1746 host->regs = ioremap(regs->start, regs->end - regs->start + 1);
1747 if (!host->regs)
1748 goto err_ioremap;
1749
1750 clk_enable(host->mck);
1751 mci_writel(host, CR, MCI_CR_SWRST);
1752 host->bus_hz = clk_get_rate(host->mck);
1753 clk_disable(host->mck);
1754
1755 host->mapbase = regs->start;
1756
965ebf33 1757 tasklet_init(&host->tasklet, atmci_tasklet_func, (unsigned long)host);
7d2be074 1758
89c8aa20 1759 ret = request_irq(irq, atmci_interrupt, 0, dev_name(&pdev->dev), host);
7d2be074
HS
1760 if (ret)
1761 goto err_request_irq;
1762
2635d1ba 1763 atmci_configure_dma(host);
65e8b083 1764
7d2be074
HS
1765 platform_set_drvdata(pdev, host);
1766
965ebf33
HS
1767 /* We need at least one slot to succeed */
1768 nr_slots = 0;
1769 ret = -ENODEV;
1770 if (pdata->slot[0].bus_width) {
1771 ret = atmci_init_slot(host, &pdata->slot[0],
ebb1fea9 1772 0, MCI_SDCSEL_SLOT_A);
965ebf33
HS
1773 if (!ret)
1774 nr_slots++;
1775 }
1776 if (pdata->slot[1].bus_width) {
1777 ret = atmci_init_slot(host, &pdata->slot[1],
ebb1fea9 1778 1, MCI_SDCSEL_SLOT_B);
965ebf33
HS
1779 if (!ret)
1780 nr_slots++;
7d2be074
HS
1781 }
1782
04d699c3
RE
1783 if (!nr_slots) {
1784 dev_err(&pdev->dev, "init failed: no slot defined\n");
965ebf33 1785 goto err_init_slot;
04d699c3 1786 }
7d2be074 1787
965ebf33
HS
1788 dev_info(&pdev->dev,
1789 "Atmel MCI controller at 0x%08lx irq %d, %u slots\n",
1790 host->mapbase, irq, nr_slots);
deec9ae3 1791
7d2be074
HS
1792 return 0;
1793
965ebf33 1794err_init_slot:
65e8b083 1795#ifdef CONFIG_MMC_ATMELMCI_DMA
74465b4f
DW
1796 if (host->dma.chan)
1797 dma_release_channel(host->dma.chan);
65e8b083 1798#endif
965ebf33 1799 free_irq(irq, host);
7d2be074
HS
1800err_request_irq:
1801 iounmap(host->regs);
1802err_ioremap:
1803 clk_put(host->mck);
1804err_clk_get:
965ebf33 1805 kfree(host);
7d2be074
HS
1806 return ret;
1807}
1808
1809static int __exit atmci_remove(struct platform_device *pdev)
1810{
965ebf33
HS
1811 struct atmel_mci *host = platform_get_drvdata(pdev);
1812 unsigned int i;
7d2be074
HS
1813
1814 platform_set_drvdata(pdev, NULL);
1815
965ebf33
HS
1816 for (i = 0; i < ATMEL_MCI_MAX_NR_SLOTS; i++) {
1817 if (host->slot[i])
1818 atmci_cleanup_slot(host->slot[i], i);
1819 }
7d2be074 1820
965ebf33
HS
1821 clk_enable(host->mck);
1822 mci_writel(host, IDR, ~0UL);
1823 mci_writel(host, CR, MCI_CR_MCIDIS);
1824 mci_readl(host, SR);
1825 clk_disable(host->mck);
7d2be074 1826
65e8b083 1827#ifdef CONFIG_MMC_ATMELMCI_DMA
74465b4f
DW
1828 if (host->dma.chan)
1829 dma_release_channel(host->dma.chan);
65e8b083
HS
1830#endif
1831
965ebf33
HS
1832 free_irq(platform_get_irq(pdev, 0), host);
1833 iounmap(host->regs);
7d2be074 1834
965ebf33
HS
1835 clk_put(host->mck);
1836 kfree(host);
7d2be074 1837
7d2be074
HS
1838 return 0;
1839}
1840
1841static struct platform_driver atmci_driver = {
1842 .remove = __exit_p(atmci_remove),
1843 .driver = {
1844 .name = "atmel_mci",
1845 },
1846};
1847
1848static int __init atmci_init(void)
1849{
1850 return platform_driver_probe(&atmci_driver, atmci_probe);
1851}
1852
1853static void __exit atmci_exit(void)
1854{
1855 platform_driver_unregister(&atmci_driver);
1856}
1857
74465b4f 1858late_initcall(atmci_init); /* try to load after dma driver when built-in */
7d2be074
HS
1859module_exit(atmci_exit);
1860
1861MODULE_DESCRIPTION("Atmel Multimedia Card Interface driver");
1862MODULE_AUTHOR("Haavard Skinnemoen <haavard.skinnemoen@atmel.com>");
1863MODULE_LICENSE("GPL v2");