2 * linux/drivers/mmc/host/omap.c
4 * Copyright (C) 2004 Nokia Corporation
5 * Written by Tuukka Tikkanen and Juha Yrjölä<juha.yrjola@nokia.com>
6 * Misc hacks here and there by Tony Lindgren <tony@atomide.com>
7 * Other hacks (DMA, SD, etc) by David Brownell
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/ioport.h>
18 #include <linux/platform_device.h>
19 #include <linux/interrupt.h>
20 #include <linux/dmaengine.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/delay.h>
23 #include <linux/spinlock.h>
24 #include <linux/timer.h>
25 #include <linux/omap-dma.h>
26 #include <linux/mmc/host.h>
27 #include <linux/mmc/card.h>
28 #include <linux/clk.h>
29 #include <linux/scatterlist.h>
30 #include <linux/slab.h>
35 #define OMAP_MMC_REG_CMD 0x00
36 #define OMAP_MMC_REG_ARGL 0x01
37 #define OMAP_MMC_REG_ARGH 0x02
38 #define OMAP_MMC_REG_CON 0x03
39 #define OMAP_MMC_REG_STAT 0x04
40 #define OMAP_MMC_REG_IE 0x05
41 #define OMAP_MMC_REG_CTO 0x06
42 #define OMAP_MMC_REG_DTO 0x07
43 #define OMAP_MMC_REG_DATA 0x08
44 #define OMAP_MMC_REG_BLEN 0x09
45 #define OMAP_MMC_REG_NBLK 0x0a
46 #define OMAP_MMC_REG_BUF 0x0b
47 #define OMAP_MMC_REG_SDIO 0x0d
48 #define OMAP_MMC_REG_REV 0x0f
49 #define OMAP_MMC_REG_RSP0 0x10
50 #define OMAP_MMC_REG_RSP1 0x11
51 #define OMAP_MMC_REG_RSP2 0x12
52 #define OMAP_MMC_REG_RSP3 0x13
53 #define OMAP_MMC_REG_RSP4 0x14
54 #define OMAP_MMC_REG_RSP5 0x15
55 #define OMAP_MMC_REG_RSP6 0x16
56 #define OMAP_MMC_REG_RSP7 0x17
57 #define OMAP_MMC_REG_IOSR 0x18
58 #define OMAP_MMC_REG_SYSC 0x19
59 #define OMAP_MMC_REG_SYSS 0x1a
61 #define OMAP_MMC_STAT_CARD_ERR (1 << 14)
62 #define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
63 #define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
64 #define OMAP_MMC_STAT_A_EMPTY (1 << 11)
65 #define OMAP_MMC_STAT_A_FULL (1 << 10)
66 #define OMAP_MMC_STAT_CMD_CRC (1 << 8)
67 #define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
68 #define OMAP_MMC_STAT_DATA_CRC (1 << 6)
69 #define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
70 #define OMAP_MMC_STAT_END_BUSY (1 << 4)
71 #define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
72 #define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
73 #define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
75 #define OMAP_MMC_REG(host, reg) (OMAP_MMC_REG_##reg << (host)->reg_shift)
76 #define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG(host, reg))
77 #define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG(host, reg))
82 #define OMAP_MMC_CMDTYPE_BC 0
83 #define OMAP_MMC_CMDTYPE_BCR 1
84 #define OMAP_MMC_CMDTYPE_AC 2
85 #define OMAP_MMC_CMDTYPE_ADTC 3
88 #define DRIVER_NAME "mmci-omap"
90 /* Specifies how often in millisecs to poll for card status changes
91 * when the cover switch is open */
92 #define OMAP_MMC_COVER_POLL_DELAY 500
96 struct mmc_omap_slot
{
101 unsigned int fclk_freq
;
103 struct tasklet_struct cover_tasklet
;
104 struct timer_list cover_timer
;
107 struct mmc_request
*mrq
;
108 struct mmc_omap_host
*host
;
109 struct mmc_host
*mmc
;
110 struct omap_mmc_slot_data
*pdata
;
113 struct mmc_omap_host
{
116 struct mmc_request
* mrq
;
117 struct mmc_command
* cmd
;
118 struct mmc_data
* data
;
119 struct mmc_host
* mmc
;
121 unsigned char id
; /* 16xx chips have 2 MMC blocks */
124 struct dma_chan
*dma_rx
;
126 struct dma_chan
*dma_tx
;
128 struct resource
*mem_res
;
129 void __iomem
*virt_base
;
130 unsigned int phys_base
;
132 unsigned char bus_mode
;
133 unsigned int reg_shift
;
135 struct work_struct cmd_abort_work
;
137 struct timer_list cmd_abort_timer
;
139 struct work_struct slot_release_work
;
140 struct mmc_omap_slot
*next_slot
;
141 struct work_struct send_stop_work
;
142 struct mmc_data
*stop_data
;
147 u32 buffer_bytes_left
;
148 u32 total_bytes_left
;
151 unsigned brs_received
:1, dma_done
:1;
152 unsigned dma_in_use
:1;
155 struct mmc_omap_slot
*slots
[OMAP_MMC_MAX_SLOTS
];
156 struct mmc_omap_slot
*current_slot
;
157 spinlock_t slot_lock
;
158 wait_queue_head_t slot_wq
;
161 struct timer_list clk_timer
;
162 spinlock_t clk_lock
; /* for changing enabled state */
163 unsigned int fclk_enabled
:1;
164 struct workqueue_struct
*mmc_omap_wq
;
166 struct omap_mmc_platform_data
*pdata
;
170 static void mmc_omap_fclk_offdelay(struct mmc_omap_slot
*slot
)
172 unsigned long tick_ns
;
174 if (slot
!= NULL
&& slot
->host
->fclk_enabled
&& slot
->fclk_freq
> 0) {
175 tick_ns
= (1000000000 + slot
->fclk_freq
- 1) / slot
->fclk_freq
;
180 static void mmc_omap_fclk_enable(struct mmc_omap_host
*host
, unsigned int enable
)
184 spin_lock_irqsave(&host
->clk_lock
, flags
);
185 if (host
->fclk_enabled
!= enable
) {
186 host
->fclk_enabled
= enable
;
188 clk_enable(host
->fclk
);
190 clk_disable(host
->fclk
);
192 spin_unlock_irqrestore(&host
->clk_lock
, flags
);
195 static void mmc_omap_select_slot(struct mmc_omap_slot
*slot
, int claimed
)
197 struct mmc_omap_host
*host
= slot
->host
;
202 spin_lock_irqsave(&host
->slot_lock
, flags
);
203 while (host
->mmc
!= NULL
) {
204 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
205 wait_event(host
->slot_wq
, host
->mmc
== NULL
);
206 spin_lock_irqsave(&host
->slot_lock
, flags
);
208 host
->mmc
= slot
->mmc
;
209 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
211 del_timer(&host
->clk_timer
);
212 if (host
->current_slot
!= slot
|| !claimed
)
213 mmc_omap_fclk_offdelay(host
->current_slot
);
215 if (host
->current_slot
!= slot
) {
216 OMAP_MMC_WRITE(host
, CON
, slot
->saved_con
& 0xFC00);
217 if (host
->pdata
->switch_slot
!= NULL
)
218 host
->pdata
->switch_slot(mmc_dev(slot
->mmc
), slot
->id
);
219 host
->current_slot
= slot
;
223 mmc_omap_fclk_enable(host
, 1);
225 /* Doing the dummy read here seems to work around some bug
226 * at least in OMAP24xx silicon where the command would not
227 * start after writing the CMD register. Sigh. */
228 OMAP_MMC_READ(host
, CON
);
230 OMAP_MMC_WRITE(host
, CON
, slot
->saved_con
);
232 mmc_omap_fclk_enable(host
, 0);
235 static void mmc_omap_start_request(struct mmc_omap_host
*host
,
236 struct mmc_request
*req
);
238 static void mmc_omap_slot_release_work(struct work_struct
*work
)
240 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
242 struct mmc_omap_slot
*next_slot
= host
->next_slot
;
243 struct mmc_request
*rq
;
245 host
->next_slot
= NULL
;
246 mmc_omap_select_slot(next_slot
, 1);
249 next_slot
->mrq
= NULL
;
250 mmc_omap_start_request(host
, rq
);
253 static void mmc_omap_release_slot(struct mmc_omap_slot
*slot
, int clk_enabled
)
255 struct mmc_omap_host
*host
= slot
->host
;
259 BUG_ON(slot
== NULL
|| host
->mmc
== NULL
);
262 /* Keeps clock running for at least 8 cycles on valid freq */
263 mod_timer(&host
->clk_timer
, jiffies
+ HZ
/10);
265 del_timer(&host
->clk_timer
);
266 mmc_omap_fclk_offdelay(slot
);
267 mmc_omap_fclk_enable(host
, 0);
270 spin_lock_irqsave(&host
->slot_lock
, flags
);
271 /* Check for any pending requests */
272 for (i
= 0; i
< host
->nr_slots
; i
++) {
273 struct mmc_omap_slot
*new_slot
;
275 if (host
->slots
[i
] == NULL
|| host
->slots
[i
]->mrq
== NULL
)
278 BUG_ON(host
->next_slot
!= NULL
);
279 new_slot
= host
->slots
[i
];
280 /* The current slot should not have a request in queue */
281 BUG_ON(new_slot
== host
->current_slot
);
283 host
->next_slot
= new_slot
;
284 host
->mmc
= new_slot
->mmc
;
285 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
286 queue_work(host
->mmc_omap_wq
, &host
->slot_release_work
);
291 wake_up(&host
->slot_wq
);
292 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
296 int mmc_omap_cover_is_open(struct mmc_omap_slot
*slot
)
298 if (slot
->pdata
->get_cover_state
)
299 return slot
->pdata
->get_cover_state(mmc_dev(slot
->mmc
),
305 mmc_omap_show_cover_switch(struct device
*dev
, struct device_attribute
*attr
,
308 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
309 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
311 return sprintf(buf
, "%s\n", mmc_omap_cover_is_open(slot
) ? "open" :
315 static DEVICE_ATTR(cover_switch
, S_IRUGO
, mmc_omap_show_cover_switch
, NULL
);
318 mmc_omap_show_slot_name(struct device
*dev
, struct device_attribute
*attr
,
321 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
322 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
324 return sprintf(buf
, "%s\n", slot
->pdata
->name
);
327 static DEVICE_ATTR(slot_name
, S_IRUGO
, mmc_omap_show_slot_name
, NULL
);
330 mmc_omap_start_command(struct mmc_omap_host
*host
, struct mmc_command
*cmd
)
341 /* Our hardware needs to know exact type */
342 switch (mmc_resp_type(cmd
)) {
347 /* resp 1, 1b, 6, 7 */
357 dev_err(mmc_dev(host
->mmc
), "Invalid response type: %04x\n", mmc_resp_type(cmd
));
361 if (mmc_cmd_type(cmd
) == MMC_CMD_ADTC
) {
362 cmdtype
= OMAP_MMC_CMDTYPE_ADTC
;
363 } else if (mmc_cmd_type(cmd
) == MMC_CMD_BC
) {
364 cmdtype
= OMAP_MMC_CMDTYPE_BC
;
365 } else if (mmc_cmd_type(cmd
) == MMC_CMD_BCR
) {
366 cmdtype
= OMAP_MMC_CMDTYPE_BCR
;
368 cmdtype
= OMAP_MMC_CMDTYPE_AC
;
371 cmdreg
= cmd
->opcode
| (resptype
<< 8) | (cmdtype
<< 12);
373 if (host
->current_slot
->bus_mode
== MMC_BUSMODE_OPENDRAIN
)
376 if (cmd
->flags
& MMC_RSP_BUSY
)
379 if (host
->data
&& !(host
->data
->flags
& MMC_DATA_WRITE
))
382 mod_timer(&host
->cmd_abort_timer
, jiffies
+ HZ
/2);
384 OMAP_MMC_WRITE(host
, CTO
, 200);
385 OMAP_MMC_WRITE(host
, ARGL
, cmd
->arg
& 0xffff);
386 OMAP_MMC_WRITE(host
, ARGH
, cmd
->arg
>> 16);
387 OMAP_MMC_WRITE(host
, IE
,
388 OMAP_MMC_STAT_A_EMPTY
| OMAP_MMC_STAT_A_FULL
|
389 OMAP_MMC_STAT_CMD_CRC
| OMAP_MMC_STAT_CMD_TOUT
|
390 OMAP_MMC_STAT_DATA_CRC
| OMAP_MMC_STAT_DATA_TOUT
|
391 OMAP_MMC_STAT_END_OF_CMD
| OMAP_MMC_STAT_CARD_ERR
|
392 OMAP_MMC_STAT_END_OF_DATA
);
393 OMAP_MMC_WRITE(host
, CMD
, cmdreg
);
397 mmc_omap_release_dma(struct mmc_omap_host
*host
, struct mmc_data
*data
,
400 enum dma_data_direction dma_data_dir
;
401 struct device
*dev
= mmc_dev(host
->mmc
);
404 if (data
->flags
& MMC_DATA_WRITE
) {
405 dma_data_dir
= DMA_TO_DEVICE
;
408 dma_data_dir
= DMA_FROM_DEVICE
;
413 dmaengine_terminate_all(c
);
414 /* Claim nothing transferred on error... */
415 data
->bytes_xfered
= 0;
417 dev
= c
->device
->dev
;
419 dma_unmap_sg(dev
, data
->sg
, host
->sg_len
, dma_data_dir
);
422 static void mmc_omap_send_stop_work(struct work_struct
*work
)
424 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
426 struct mmc_omap_slot
*slot
= host
->current_slot
;
427 struct mmc_data
*data
= host
->stop_data
;
428 unsigned long tick_ns
;
430 tick_ns
= (1000000000 + slot
->fclk_freq
- 1)/slot
->fclk_freq
;
433 mmc_omap_start_command(host
, data
->stop
);
437 mmc_omap_xfer_done(struct mmc_omap_host
*host
, struct mmc_data
*data
)
439 if (host
->dma_in_use
)
440 mmc_omap_release_dma(host
, data
, data
->error
);
445 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
446 * dozens of requests until the card finishes writing data.
447 * It'd be cheaper to just wait till an EOFB interrupt arrives...
451 struct mmc_host
*mmc
;
455 mmc_omap_release_slot(host
->current_slot
, 1);
456 mmc_request_done(mmc
, data
->mrq
);
460 host
->stop_data
= data
;
461 queue_work(host
->mmc_omap_wq
, &host
->send_stop_work
);
465 mmc_omap_send_abort(struct mmc_omap_host
*host
, int maxloops
)
467 struct mmc_omap_slot
*slot
= host
->current_slot
;
468 unsigned int restarts
, passes
, timeout
;
471 /* Sending abort takes 80 clocks. Have some extra and round up */
472 timeout
= (120*1000000 + slot
->fclk_freq
- 1)/slot
->fclk_freq
;
474 while (restarts
< maxloops
) {
475 OMAP_MMC_WRITE(host
, STAT
, 0xFFFF);
476 OMAP_MMC_WRITE(host
, CMD
, (3 << 12) | (1 << 7));
479 while (passes
< timeout
) {
480 stat
= OMAP_MMC_READ(host
, STAT
);
481 if (stat
& OMAP_MMC_STAT_END_OF_CMD
)
490 OMAP_MMC_WRITE(host
, STAT
, stat
);
494 mmc_omap_abort_xfer(struct mmc_omap_host
*host
, struct mmc_data
*data
)
496 if (host
->dma_in_use
)
497 mmc_omap_release_dma(host
, data
, 1);
502 mmc_omap_send_abort(host
, 10000);
506 mmc_omap_end_of_data(struct mmc_omap_host
*host
, struct mmc_data
*data
)
511 if (!host
->dma_in_use
) {
512 mmc_omap_xfer_done(host
, data
);
516 spin_lock_irqsave(&host
->dma_lock
, flags
);
520 host
->brs_received
= 1;
521 spin_unlock_irqrestore(&host
->dma_lock
, flags
);
523 mmc_omap_xfer_done(host
, data
);
527 mmc_omap_dma_done(struct mmc_omap_host
*host
, struct mmc_data
*data
)
533 spin_lock_irqsave(&host
->dma_lock
, flags
);
534 if (host
->brs_received
)
538 spin_unlock_irqrestore(&host
->dma_lock
, flags
);
540 mmc_omap_xfer_done(host
, data
);
544 mmc_omap_cmd_done(struct mmc_omap_host
*host
, struct mmc_command
*cmd
)
548 del_timer(&host
->cmd_abort_timer
);
550 if (cmd
->flags
& MMC_RSP_PRESENT
) {
551 if (cmd
->flags
& MMC_RSP_136
) {
552 /* response type 2 */
554 OMAP_MMC_READ(host
, RSP0
) |
555 (OMAP_MMC_READ(host
, RSP1
) << 16);
557 OMAP_MMC_READ(host
, RSP2
) |
558 (OMAP_MMC_READ(host
, RSP3
) << 16);
560 OMAP_MMC_READ(host
, RSP4
) |
561 (OMAP_MMC_READ(host
, RSP5
) << 16);
563 OMAP_MMC_READ(host
, RSP6
) |
564 (OMAP_MMC_READ(host
, RSP7
) << 16);
566 /* response types 1, 1b, 3, 4, 5, 6 */
568 OMAP_MMC_READ(host
, RSP6
) |
569 (OMAP_MMC_READ(host
, RSP7
) << 16);
573 if (host
->data
== NULL
|| cmd
->error
) {
574 struct mmc_host
*mmc
;
576 if (host
->data
!= NULL
)
577 mmc_omap_abort_xfer(host
, host
->data
);
580 mmc_omap_release_slot(host
->current_slot
, 1);
581 mmc_request_done(mmc
, cmd
->mrq
);
586 * Abort stuck command. Can occur when card is removed while it is being
589 static void mmc_omap_abort_command(struct work_struct
*work
)
591 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
595 dev_dbg(mmc_dev(host
->mmc
), "Aborting stuck command CMD%d\n",
598 if (host
->cmd
->error
== 0)
599 host
->cmd
->error
= -ETIMEDOUT
;
601 if (host
->data
== NULL
) {
602 struct mmc_command
*cmd
;
603 struct mmc_host
*mmc
;
607 mmc_omap_send_abort(host
, 10000);
611 mmc_omap_release_slot(host
->current_slot
, 1);
612 mmc_request_done(mmc
, cmd
->mrq
);
614 mmc_omap_cmd_done(host
, host
->cmd
);
617 enable_irq(host
->irq
);
621 mmc_omap_cmd_timer(unsigned long data
)
623 struct mmc_omap_host
*host
= (struct mmc_omap_host
*) data
;
626 spin_lock_irqsave(&host
->slot_lock
, flags
);
627 if (host
->cmd
!= NULL
&& !host
->abort
) {
628 OMAP_MMC_WRITE(host
, IE
, 0);
629 disable_irq(host
->irq
);
631 queue_work(host
->mmc_omap_wq
, &host
->cmd_abort_work
);
633 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
638 mmc_omap_sg_to_buf(struct mmc_omap_host
*host
)
640 struct scatterlist
*sg
;
642 sg
= host
->data
->sg
+ host
->sg_idx
;
643 host
->buffer_bytes_left
= sg
->length
;
644 host
->buffer
= sg_virt(sg
);
645 if (host
->buffer_bytes_left
> host
->total_bytes_left
)
646 host
->buffer_bytes_left
= host
->total_bytes_left
;
650 mmc_omap_clk_timer(unsigned long data
)
652 struct mmc_omap_host
*host
= (struct mmc_omap_host
*) data
;
654 mmc_omap_fclk_enable(host
, 0);
659 mmc_omap_xfer_data(struct mmc_omap_host
*host
, int write
)
663 if (host
->buffer_bytes_left
== 0) {
665 BUG_ON(host
->sg_idx
== host
->sg_len
);
666 mmc_omap_sg_to_buf(host
);
669 if (n
> host
->buffer_bytes_left
)
670 n
= host
->buffer_bytes_left
;
673 nwords
+= n
& 1; /* handle odd number of bytes to transfer */
675 host
->buffer_bytes_left
-= n
;
676 host
->total_bytes_left
-= n
;
677 host
->data
->bytes_xfered
+= n
;
680 __raw_writesw(host
->virt_base
+ OMAP_MMC_REG(host
, DATA
),
681 host
->buffer
, nwords
);
683 __raw_readsw(host
->virt_base
+ OMAP_MMC_REG(host
, DATA
),
684 host
->buffer
, nwords
);
687 host
->buffer
+= nwords
;
690 #ifdef CONFIG_MMC_DEBUG
691 static void mmc_omap_report_irq(struct mmc_omap_host
*host
, u16 status
)
693 static const char *mmc_omap_status_bits
[] = {
694 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
695 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
698 char res
[64], *buf
= res
;
700 buf
+= sprintf(buf
, "MMC IRQ 0x%x:", status
);
702 for (i
= 0; i
< ARRAY_SIZE(mmc_omap_status_bits
); i
++)
703 if (status
& (1 << i
))
704 buf
+= sprintf(buf
, " %s", mmc_omap_status_bits
[i
]);
705 dev_vdbg(mmc_dev(host
->mmc
), "%s\n", res
);
708 static void mmc_omap_report_irq(struct mmc_omap_host
*host
, u16 status
)
714 static irqreturn_t
mmc_omap_irq(int irq
, void *dev_id
)
716 struct mmc_omap_host
* host
= (struct mmc_omap_host
*)dev_id
;
720 int transfer_error
, cmd_error
;
722 if (host
->cmd
== NULL
&& host
->data
== NULL
) {
723 status
= OMAP_MMC_READ(host
, STAT
);
724 dev_info(mmc_dev(host
->slots
[0]->mmc
),
725 "Spurious IRQ 0x%04x\n", status
);
727 OMAP_MMC_WRITE(host
, STAT
, status
);
728 OMAP_MMC_WRITE(host
, IE
, 0);
738 while ((status
= OMAP_MMC_READ(host
, STAT
)) != 0) {
741 OMAP_MMC_WRITE(host
, STAT
, status
);
742 if (host
->cmd
!= NULL
)
743 cmd
= host
->cmd
->opcode
;
746 dev_dbg(mmc_dev(host
->mmc
), "MMC IRQ %04x (CMD %d): ",
748 mmc_omap_report_irq(host
, status
);
750 if (host
->total_bytes_left
) {
751 if ((status
& OMAP_MMC_STAT_A_FULL
) ||
752 (status
& OMAP_MMC_STAT_END_OF_DATA
))
753 mmc_omap_xfer_data(host
, 0);
754 if (status
& OMAP_MMC_STAT_A_EMPTY
)
755 mmc_omap_xfer_data(host
, 1);
758 if (status
& OMAP_MMC_STAT_END_OF_DATA
)
761 if (status
& OMAP_MMC_STAT_DATA_TOUT
) {
762 dev_dbg(mmc_dev(host
->mmc
), "data timeout (CMD%d)\n",
765 host
->data
->error
= -ETIMEDOUT
;
770 if (status
& OMAP_MMC_STAT_DATA_CRC
) {
772 host
->data
->error
= -EILSEQ
;
773 dev_dbg(mmc_dev(host
->mmc
),
774 "data CRC error, bytes left %d\n",
775 host
->total_bytes_left
);
778 dev_dbg(mmc_dev(host
->mmc
), "data CRC error\n");
782 if (status
& OMAP_MMC_STAT_CMD_TOUT
) {
783 /* Timeouts are routine with some commands */
785 struct mmc_omap_slot
*slot
=
788 !mmc_omap_cover_is_open(slot
))
789 dev_err(mmc_dev(host
->mmc
),
790 "command timeout (CMD%d)\n",
792 host
->cmd
->error
= -ETIMEDOUT
;
798 if (status
& OMAP_MMC_STAT_CMD_CRC
) {
800 dev_err(mmc_dev(host
->mmc
),
801 "command CRC error (CMD%d, arg 0x%08x)\n",
802 cmd
, host
->cmd
->arg
);
803 host
->cmd
->error
= -EILSEQ
;
807 dev_err(mmc_dev(host
->mmc
),
808 "command CRC error without cmd?\n");
811 if (status
& OMAP_MMC_STAT_CARD_ERR
) {
812 dev_dbg(mmc_dev(host
->mmc
),
813 "ignoring card status error (CMD%d)\n",
819 * NOTE: On 1610 the END_OF_CMD may come too early when
822 if ((status
& OMAP_MMC_STAT_END_OF_CMD
) &&
823 (!(status
& OMAP_MMC_STAT_A_EMPTY
))) {
828 if (cmd_error
&& host
->data
) {
829 del_timer(&host
->cmd_abort_timer
);
831 OMAP_MMC_WRITE(host
, IE
, 0);
832 disable_irq_nosync(host
->irq
);
833 queue_work(host
->mmc_omap_wq
, &host
->cmd_abort_work
);
837 if (end_command
&& host
->cmd
)
838 mmc_omap_cmd_done(host
, host
->cmd
);
839 if (host
->data
!= NULL
) {
841 mmc_omap_xfer_done(host
, host
->data
);
842 else if (end_transfer
)
843 mmc_omap_end_of_data(host
, host
->data
);
849 void omap_mmc_notify_cover_event(struct device
*dev
, int num
, int is_closed
)
852 struct mmc_omap_host
*host
= dev_get_drvdata(dev
);
853 struct mmc_omap_slot
*slot
= host
->slots
[num
];
855 BUG_ON(num
>= host
->nr_slots
);
857 /* Other subsystems can call in here before we're initialised. */
858 if (host
->nr_slots
== 0 || !host
->slots
[num
])
861 cover_open
= mmc_omap_cover_is_open(slot
);
862 if (cover_open
!= slot
->cover_open
) {
863 slot
->cover_open
= cover_open
;
864 sysfs_notify(&slot
->mmc
->class_dev
.kobj
, NULL
, "cover_switch");
867 tasklet_hi_schedule(&slot
->cover_tasklet
);
870 static void mmc_omap_cover_timer(unsigned long arg
)
872 struct mmc_omap_slot
*slot
= (struct mmc_omap_slot
*) arg
;
873 tasklet_schedule(&slot
->cover_tasklet
);
876 static void mmc_omap_cover_handler(unsigned long param
)
878 struct mmc_omap_slot
*slot
= (struct mmc_omap_slot
*)param
;
879 int cover_open
= mmc_omap_cover_is_open(slot
);
881 mmc_detect_change(slot
->mmc
, 0);
886 * If no card is inserted, we postpone polling until
887 * the cover has been closed.
889 if (slot
->mmc
->card
== NULL
|| !mmc_card_present(slot
->mmc
->card
))
892 mod_timer(&slot
->cover_timer
,
893 jiffies
+ msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY
));
896 static void mmc_omap_dma_callback(void *priv
)
898 struct mmc_omap_host
*host
= priv
;
899 struct mmc_data
*data
= host
->data
;
901 /* If we got to the end of DMA, assume everything went well */
902 data
->bytes_xfered
+= data
->blocks
* data
->blksz
;
904 mmc_omap_dma_done(host
, data
);
907 static inline void set_cmd_timeout(struct mmc_omap_host
*host
, struct mmc_request
*req
)
911 reg
= OMAP_MMC_READ(host
, SDIO
);
913 OMAP_MMC_WRITE(host
, SDIO
, reg
);
914 /* Set maximum timeout */
915 OMAP_MMC_WRITE(host
, CTO
, 0xff);
918 static inline void set_data_timeout(struct mmc_omap_host
*host
, struct mmc_request
*req
)
920 unsigned int timeout
, cycle_ns
;
923 cycle_ns
= 1000000000 / host
->current_slot
->fclk_freq
;
924 timeout
= req
->data
->timeout_ns
/ cycle_ns
;
925 timeout
+= req
->data
->timeout_clks
;
927 /* Check if we need to use timeout multiplier register */
928 reg
= OMAP_MMC_READ(host
, SDIO
);
929 if (timeout
> 0xffff) {
934 OMAP_MMC_WRITE(host
, SDIO
, reg
);
935 OMAP_MMC_WRITE(host
, DTO
, timeout
);
939 mmc_omap_prepare_data(struct mmc_omap_host
*host
, struct mmc_request
*req
)
941 struct mmc_data
*data
= req
->data
;
942 int i
, use_dma
, block_size
;
947 OMAP_MMC_WRITE(host
, BLEN
, 0);
948 OMAP_MMC_WRITE(host
, NBLK
, 0);
949 OMAP_MMC_WRITE(host
, BUF
, 0);
950 host
->dma_in_use
= 0;
951 set_cmd_timeout(host
, req
);
955 block_size
= data
->blksz
;
957 OMAP_MMC_WRITE(host
, NBLK
, data
->blocks
- 1);
958 OMAP_MMC_WRITE(host
, BLEN
, block_size
- 1);
959 set_data_timeout(host
, req
);
961 /* cope with calling layer confusion; it issues "single
962 * block" writes using multi-block scatterlists.
964 sg_len
= (data
->blocks
== 1) ? 1 : data
->sg_len
;
966 /* Only do DMA for entire blocks */
967 use_dma
= host
->use_dma
;
969 for (i
= 0; i
< sg_len
; i
++) {
970 if ((data
->sg
[i
].length
% block_size
) != 0) {
979 enum dma_data_direction dma_data_dir
;
980 struct dma_async_tx_descriptor
*tx
;
986 * FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx
987 * and 24xx. Use 16 or 32 word frames when the
988 * blocksize is at least that large. Blocksize is
989 * usually 512 bytes; but not for some SD reads.
991 burst
= cpu_is_omap15xx() ? 32 : 64;
992 if (burst
> data
->blksz
)
997 if (data
->flags
& MMC_DATA_WRITE
) {
999 bp
= &host
->dma_tx_burst
;
1000 buf
= 0x0f80 | (burst
- 1) << 0;
1001 dma_data_dir
= DMA_TO_DEVICE
;
1004 bp
= &host
->dma_rx_burst
;
1005 buf
= 0x800f | (burst
- 1) << 8;
1006 dma_data_dir
= DMA_FROM_DEVICE
;
1012 /* Only reconfigure if we have a different burst size */
1014 struct dma_slave_config cfg
;
1016 cfg
.src_addr
= host
->phys_base
+ OMAP_MMC_REG(host
, DATA
);
1017 cfg
.dst_addr
= host
->phys_base
+ OMAP_MMC_REG(host
, DATA
);
1018 cfg
.src_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
;
1019 cfg
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
;
1020 cfg
.src_maxburst
= burst
;
1021 cfg
.dst_maxburst
= burst
;
1023 if (dmaengine_slave_config(c
, &cfg
))
1029 host
->sg_len
= dma_map_sg(c
->device
->dev
, data
->sg
, sg_len
,
1031 if (host
->sg_len
== 0)
1034 tx
= dmaengine_prep_slave_sg(c
, data
->sg
, host
->sg_len
,
1035 data
->flags
& MMC_DATA_WRITE
? DMA_MEM_TO_DEV
: DMA_DEV_TO_MEM
,
1036 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1040 OMAP_MMC_WRITE(host
, BUF
, buf
);
1042 tx
->callback
= mmc_omap_dma_callback
;
1043 tx
->callback_param
= host
;
1044 dmaengine_submit(tx
);
1045 host
->brs_received
= 0;
1047 host
->dma_in_use
= 1;
1052 /* Revert to PIO? */
1053 OMAP_MMC_WRITE(host
, BUF
, 0x1f1f);
1054 host
->total_bytes_left
= data
->blocks
* block_size
;
1055 host
->sg_len
= sg_len
;
1056 mmc_omap_sg_to_buf(host
);
1057 host
->dma_in_use
= 0;
1060 static void mmc_omap_start_request(struct mmc_omap_host
*host
,
1061 struct mmc_request
*req
)
1063 BUG_ON(host
->mrq
!= NULL
);
1067 /* only touch fifo AFTER the controller readies it */
1068 mmc_omap_prepare_data(host
, req
);
1069 mmc_omap_start_command(host
, req
->cmd
);
1070 if (host
->dma_in_use
) {
1071 struct dma_chan
*c
= host
->data
->flags
& MMC_DATA_WRITE
?
1072 host
->dma_tx
: host
->dma_rx
;
1074 dma_async_issue_pending(c
);
1078 static void mmc_omap_request(struct mmc_host
*mmc
, struct mmc_request
*req
)
1080 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1081 struct mmc_omap_host
*host
= slot
->host
;
1082 unsigned long flags
;
1084 spin_lock_irqsave(&host
->slot_lock
, flags
);
1085 if (host
->mmc
!= NULL
) {
1086 BUG_ON(slot
->mrq
!= NULL
);
1088 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
1092 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
1093 mmc_omap_select_slot(slot
, 1);
1094 mmc_omap_start_request(host
, req
);
1097 static void mmc_omap_set_power(struct mmc_omap_slot
*slot
, int power_on
,
1100 struct mmc_omap_host
*host
;
1104 if (slot
->pdata
->set_power
!= NULL
)
1105 slot
->pdata
->set_power(mmc_dev(slot
->mmc
), slot
->id
, power_on
,
1108 if (cpu_is_omap24xx()) {
1112 w
= OMAP_MMC_READ(host
, CON
);
1113 OMAP_MMC_WRITE(host
, CON
, w
| (1 << 11));
1115 w
= OMAP_MMC_READ(host
, CON
);
1116 OMAP_MMC_WRITE(host
, CON
, w
& ~(1 << 11));
1121 static int mmc_omap_calc_divisor(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1123 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1124 struct mmc_omap_host
*host
= slot
->host
;
1125 int func_clk_rate
= clk_get_rate(host
->fclk
);
1128 if (ios
->clock
== 0)
1131 dsor
= func_clk_rate
/ ios
->clock
;
1135 if (func_clk_rate
/ dsor
> ios
->clock
)
1141 slot
->fclk_freq
= func_clk_rate
/ dsor
;
1143 if (ios
->bus_width
== MMC_BUS_WIDTH_4
)
1149 static void mmc_omap_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1151 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1152 struct mmc_omap_host
*host
= slot
->host
;
1156 mmc_omap_select_slot(slot
, 0);
1158 dsor
= mmc_omap_calc_divisor(mmc
, ios
);
1160 if (ios
->vdd
!= slot
->vdd
)
1161 slot
->vdd
= ios
->vdd
;
1164 switch (ios
->power_mode
) {
1166 mmc_omap_set_power(slot
, 0, ios
->vdd
);
1169 /* Cannot touch dsor yet, just power up MMC */
1170 mmc_omap_set_power(slot
, 1, ios
->vdd
);
1173 mmc_omap_fclk_enable(host
, 1);
1179 if (slot
->bus_mode
!= ios
->bus_mode
) {
1180 if (slot
->pdata
->set_bus_mode
!= NULL
)
1181 slot
->pdata
->set_bus_mode(mmc_dev(mmc
), slot
->id
,
1183 slot
->bus_mode
= ios
->bus_mode
;
1186 /* On insanely high arm_per frequencies something sometimes
1187 * goes somehow out of sync, and the POW bit is not being set,
1188 * which results in the while loop below getting stuck.
1189 * Writing to the CON register twice seems to do the trick. */
1190 for (i
= 0; i
< 2; i
++)
1191 OMAP_MMC_WRITE(host
, CON
, dsor
);
1192 slot
->saved_con
= dsor
;
1193 if (ios
->power_mode
== MMC_POWER_ON
) {
1194 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1197 /* Send clock cycles, poll completion */
1198 OMAP_MMC_WRITE(host
, IE
, 0);
1199 OMAP_MMC_WRITE(host
, STAT
, 0xffff);
1200 OMAP_MMC_WRITE(host
, CMD
, 1 << 7);
1201 while (usecs
> 0 && (OMAP_MMC_READ(host
, STAT
) & 1) == 0) {
1205 OMAP_MMC_WRITE(host
, STAT
, 1);
1209 mmc_omap_release_slot(slot
, clk_enabled
);
1212 static const struct mmc_host_ops mmc_omap_ops
= {
1213 .request
= mmc_omap_request
,
1214 .set_ios
= mmc_omap_set_ios
,
1217 static int __devinit
mmc_omap_new_slot(struct mmc_omap_host
*host
, int id
)
1219 struct mmc_omap_slot
*slot
= NULL
;
1220 struct mmc_host
*mmc
;
1223 mmc
= mmc_alloc_host(sizeof(struct mmc_omap_slot
), host
->dev
);
1227 slot
= mmc_priv(mmc
);
1231 slot
->pdata
= &host
->pdata
->slots
[id
];
1233 host
->slots
[id
] = slot
;
1236 if (host
->pdata
->slots
[id
].wires
>= 4)
1237 mmc
->caps
|= MMC_CAP_4_BIT_DATA
;
1239 mmc
->ops
= &mmc_omap_ops
;
1240 mmc
->f_min
= 400000;
1242 if (cpu_class_is_omap2())
1243 mmc
->f_max
= 48000000;
1245 mmc
->f_max
= 24000000;
1246 if (host
->pdata
->max_freq
)
1247 mmc
->f_max
= min(host
->pdata
->max_freq
, mmc
->f_max
);
1248 mmc
->ocr_avail
= slot
->pdata
->ocr_mask
;
1250 /* Use scatterlist DMA to reduce per-transfer costs.
1251 * NOTE max_seg_size assumption that small blocks aren't
1252 * normally used (except e.g. for reading SD registers).
1255 mmc
->max_blk_size
= 2048; /* BLEN is 11 bits (+1) */
1256 mmc
->max_blk_count
= 2048; /* NBLK is 11 bits (+1) */
1257 mmc
->max_req_size
= mmc
->max_blk_size
* mmc
->max_blk_count
;
1258 mmc
->max_seg_size
= mmc
->max_req_size
;
1260 r
= mmc_add_host(mmc
);
1262 goto err_remove_host
;
1264 if (slot
->pdata
->name
!= NULL
) {
1265 r
= device_create_file(&mmc
->class_dev
,
1266 &dev_attr_slot_name
);
1268 goto err_remove_host
;
1271 if (slot
->pdata
->get_cover_state
!= NULL
) {
1272 r
= device_create_file(&mmc
->class_dev
,
1273 &dev_attr_cover_switch
);
1275 goto err_remove_slot_name
;
1277 setup_timer(&slot
->cover_timer
, mmc_omap_cover_timer
,
1278 (unsigned long)slot
);
1279 tasklet_init(&slot
->cover_tasklet
, mmc_omap_cover_handler
,
1280 (unsigned long)slot
);
1281 tasklet_schedule(&slot
->cover_tasklet
);
1286 err_remove_slot_name
:
1287 if (slot
->pdata
->name
!= NULL
)
1288 device_remove_file(&mmc
->class_dev
, &dev_attr_slot_name
);
1290 mmc_remove_host(mmc
);
1295 static void mmc_omap_remove_slot(struct mmc_omap_slot
*slot
)
1297 struct mmc_host
*mmc
= slot
->mmc
;
1299 if (slot
->pdata
->name
!= NULL
)
1300 device_remove_file(&mmc
->class_dev
, &dev_attr_slot_name
);
1301 if (slot
->pdata
->get_cover_state
!= NULL
)
1302 device_remove_file(&mmc
->class_dev
, &dev_attr_cover_switch
);
1304 tasklet_kill(&slot
->cover_tasklet
);
1305 del_timer_sync(&slot
->cover_timer
);
1306 flush_workqueue(slot
->host
->mmc_omap_wq
);
1308 mmc_remove_host(mmc
);
1312 static int __devinit
mmc_omap_probe(struct platform_device
*pdev
)
1314 struct omap_mmc_platform_data
*pdata
= pdev
->dev
.platform_data
;
1315 struct mmc_omap_host
*host
= NULL
;
1316 struct resource
*res
;
1317 dma_cap_mask_t mask
;
1322 if (pdata
== NULL
) {
1323 dev_err(&pdev
->dev
, "platform data missing\n");
1326 if (pdata
->nr_slots
== 0) {
1327 dev_err(&pdev
->dev
, "no slots\n");
1331 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1332 irq
= platform_get_irq(pdev
, 0);
1333 if (res
== NULL
|| irq
< 0)
1336 res
= request_mem_region(res
->start
, resource_size(res
),
1341 host
= kzalloc(sizeof(struct mmc_omap_host
), GFP_KERNEL
);
1344 goto err_free_mem_region
;
1347 INIT_WORK(&host
->slot_release_work
, mmc_omap_slot_release_work
);
1348 INIT_WORK(&host
->send_stop_work
, mmc_omap_send_stop_work
);
1350 INIT_WORK(&host
->cmd_abort_work
, mmc_omap_abort_command
);
1351 setup_timer(&host
->cmd_abort_timer
, mmc_omap_cmd_timer
,
1352 (unsigned long) host
);
1354 spin_lock_init(&host
->clk_lock
);
1355 setup_timer(&host
->clk_timer
, mmc_omap_clk_timer
, (unsigned long) host
);
1357 spin_lock_init(&host
->dma_lock
);
1358 spin_lock_init(&host
->slot_lock
);
1359 init_waitqueue_head(&host
->slot_wq
);
1361 host
->pdata
= pdata
;
1362 host
->dev
= &pdev
->dev
;
1363 platform_set_drvdata(pdev
, host
);
1365 host
->id
= pdev
->id
;
1366 host
->mem_res
= res
;
1370 host
->phys_base
= host
->mem_res
->start
;
1371 host
->virt_base
= ioremap(res
->start
, resource_size(res
));
1372 if (!host
->virt_base
)
1375 host
->iclk
= clk_get(&pdev
->dev
, "ick");
1376 if (IS_ERR(host
->iclk
)) {
1377 ret
= PTR_ERR(host
->iclk
);
1378 goto err_free_mmc_host
;
1380 clk_enable(host
->iclk
);
1382 host
->fclk
= clk_get(&pdev
->dev
, "fck");
1383 if (IS_ERR(host
->fclk
)) {
1384 ret
= PTR_ERR(host
->fclk
);
1389 dma_cap_set(DMA_SLAVE
, mask
);
1391 host
->dma_tx_burst
= -1;
1392 host
->dma_rx_burst
= -1;
1394 if (cpu_is_omap24xx())
1395 sig
= host
->id
== 0 ? OMAP24XX_DMA_MMC1_TX
: OMAP24XX_DMA_MMC2_TX
;
1397 sig
= host
->id
== 0 ? OMAP_DMA_MMC_TX
: OMAP_DMA_MMC2_TX
;
1398 host
->dma_tx
= dma_request_channel(mask
, omap_dma_filter_fn
, &sig
);
1400 if (!host
->dma_tx
) {
1401 dev_err(host
->dev
, "unable to obtain TX DMA engine channel %u\n",
1407 dev_warn(host
->dev
, "unable to obtain TX DMA engine channel %u\n",
1410 if (cpu_is_omap24xx())
1411 sig
= host
->id
== 0 ? OMAP24XX_DMA_MMC1_RX
: OMAP24XX_DMA_MMC2_RX
;
1413 sig
= host
->id
== 0 ? OMAP_DMA_MMC_RX
: OMAP_DMA_MMC2_RX
;
1414 host
->dma_rx
= dma_request_channel(mask
, omap_dma_filter_fn
, &sig
);
1416 if (!host
->dma_rx
) {
1417 dev_err(host
->dev
, "unable to obtain RX DMA engine channel %u\n",
1423 dev_warn(host
->dev
, "unable to obtain RX DMA engine channel %u\n",
1427 ret
= request_irq(host
->irq
, mmc_omap_irq
, 0, DRIVER_NAME
, host
);
1431 if (pdata
->init
!= NULL
) {
1432 ret
= pdata
->init(&pdev
->dev
);
1437 host
->nr_slots
= pdata
->nr_slots
;
1438 host
->reg_shift
= (cpu_is_omap7xx() ? 1 : 2);
1440 host
->mmc_omap_wq
= alloc_workqueue("mmc_omap", 0, 0);
1441 if (!host
->mmc_omap_wq
)
1442 goto err_plat_cleanup
;
1444 for (i
= 0; i
< pdata
->nr_slots
; i
++) {
1445 ret
= mmc_omap_new_slot(host
, i
);
1448 mmc_omap_remove_slot(host
->slots
[i
]);
1450 goto err_destroy_wq
;
1457 destroy_workqueue(host
->mmc_omap_wq
);
1460 pdata
->cleanup(&pdev
->dev
);
1462 free_irq(host
->irq
, host
);
1465 dma_release_channel(host
->dma_tx
);
1467 dma_release_channel(host
->dma_rx
);
1468 clk_put(host
->fclk
);
1470 clk_disable(host
->iclk
);
1471 clk_put(host
->iclk
);
1473 iounmap(host
->virt_base
);
1476 err_free_mem_region
:
1477 release_mem_region(res
->start
, resource_size(res
));
1481 static int __devexit
mmc_omap_remove(struct platform_device
*pdev
)
1483 struct mmc_omap_host
*host
= platform_get_drvdata(pdev
);
1486 platform_set_drvdata(pdev
, NULL
);
1488 BUG_ON(host
== NULL
);
1490 for (i
= 0; i
< host
->nr_slots
; i
++)
1491 mmc_omap_remove_slot(host
->slots
[i
]);
1493 if (host
->pdata
->cleanup
)
1494 host
->pdata
->cleanup(&pdev
->dev
);
1496 mmc_omap_fclk_enable(host
, 0);
1497 free_irq(host
->irq
, host
);
1498 clk_put(host
->fclk
);
1499 clk_disable(host
->iclk
);
1500 clk_put(host
->iclk
);
1503 dma_release_channel(host
->dma_tx
);
1505 dma_release_channel(host
->dma_rx
);
1507 iounmap(host
->virt_base
);
1508 release_mem_region(pdev
->resource
[0].start
,
1509 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1);
1510 destroy_workqueue(host
->mmc_omap_wq
);
1518 static int mmc_omap_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
1521 struct mmc_omap_host
*host
= platform_get_drvdata(pdev
);
1523 if (host
== NULL
|| host
->suspended
)
1526 for (i
= 0; i
< host
->nr_slots
; i
++) {
1527 struct mmc_omap_slot
*slot
;
1529 slot
= host
->slots
[i
];
1530 ret
= mmc_suspend_host(slot
->mmc
);
1533 slot
= host
->slots
[i
];
1534 mmc_resume_host(slot
->mmc
);
1539 host
->suspended
= 1;
1543 static int mmc_omap_resume(struct platform_device
*pdev
)
1546 struct mmc_omap_host
*host
= platform_get_drvdata(pdev
);
1548 if (host
== NULL
|| !host
->suspended
)
1551 for (i
= 0; i
< host
->nr_slots
; i
++) {
1552 struct mmc_omap_slot
*slot
;
1553 slot
= host
->slots
[i
];
1554 ret
= mmc_resume_host(slot
->mmc
);
1558 host
->suspended
= 0;
1563 #define mmc_omap_suspend NULL
1564 #define mmc_omap_resume NULL
1567 static struct platform_driver mmc_omap_driver
= {
1568 .probe
= mmc_omap_probe
,
1569 .remove
= __devexit_p(mmc_omap_remove
),
1570 .suspend
= mmc_omap_suspend
,
1571 .resume
= mmc_omap_resume
,
1573 .name
= DRIVER_NAME
,
1574 .owner
= THIS_MODULE
,
1578 module_platform_driver(mmc_omap_driver
);
1579 MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1580 MODULE_LICENSE("GPL");
1581 MODULE_ALIAS("platform:" DRIVER_NAME
);
1582 MODULE_AUTHOR("Juha Yrjölä");