1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/mmc/host/omap.c
5 * Copyright (C) 2004 Nokia Corporation
6 * Written by Tuukka Tikkanen and Juha Yrjölä<juha.yrjola@nokia.com>
7 * Misc hacks here and there by Tony Lindgren <tony@atomide.com>
8 * Other hacks (DMA, SD, etc) by David Brownell
11 #include <linux/module.h>
12 #include <linux/moduleparam.h>
13 #include <linux/init.h>
14 #include <linux/ioport.h>
15 #include <linux/platform_device.h>
16 #include <linux/interrupt.h>
17 #include <linux/dmaengine.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/delay.h>
20 #include <linux/spinlock.h>
21 #include <linux/timer.h>
23 #include <linux/mmc/host.h>
24 #include <linux/mmc/card.h>
25 #include <linux/mmc/mmc.h>
26 #include <linux/clk.h>
27 #include <linux/scatterlist.h>
28 #include <linux/slab.h>
29 #include <linux/gpio/consumer.h>
30 #include <linux/platform_data/mmc-omap.h>
31 #include <linux/workqueue.h>
34 #define OMAP_MMC_REG_CMD 0x00
35 #define OMAP_MMC_REG_ARGL 0x01
36 #define OMAP_MMC_REG_ARGH 0x02
37 #define OMAP_MMC_REG_CON 0x03
38 #define OMAP_MMC_REG_STAT 0x04
39 #define OMAP_MMC_REG_IE 0x05
40 #define OMAP_MMC_REG_CTO 0x06
41 #define OMAP_MMC_REG_DTO 0x07
42 #define OMAP_MMC_REG_DATA 0x08
43 #define OMAP_MMC_REG_BLEN 0x09
44 #define OMAP_MMC_REG_NBLK 0x0a
45 #define OMAP_MMC_REG_BUF 0x0b
46 #define OMAP_MMC_REG_SDIO 0x0d
47 #define OMAP_MMC_REG_REV 0x0f
48 #define OMAP_MMC_REG_RSP0 0x10
49 #define OMAP_MMC_REG_RSP1 0x11
50 #define OMAP_MMC_REG_RSP2 0x12
51 #define OMAP_MMC_REG_RSP3 0x13
52 #define OMAP_MMC_REG_RSP4 0x14
53 #define OMAP_MMC_REG_RSP5 0x15
54 #define OMAP_MMC_REG_RSP6 0x16
55 #define OMAP_MMC_REG_RSP7 0x17
56 #define OMAP_MMC_REG_IOSR 0x18
57 #define OMAP_MMC_REG_SYSC 0x19
58 #define OMAP_MMC_REG_SYSS 0x1a
60 #define OMAP_MMC_STAT_CARD_ERR (1 << 14)
61 #define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
62 #define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
63 #define OMAP_MMC_STAT_A_EMPTY (1 << 11)
64 #define OMAP_MMC_STAT_A_FULL (1 << 10)
65 #define OMAP_MMC_STAT_CMD_CRC (1 << 8)
66 #define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
67 #define OMAP_MMC_STAT_DATA_CRC (1 << 6)
68 #define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
69 #define OMAP_MMC_STAT_END_BUSY (1 << 4)
70 #define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
71 #define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
72 #define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
74 #define mmc_omap7xx() (host->features & MMC_OMAP7XX)
75 #define mmc_omap15xx() (host->features & MMC_OMAP15XX)
76 #define mmc_omap16xx() (host->features & MMC_OMAP16XX)
77 #define MMC_OMAP1_MASK (MMC_OMAP7XX | MMC_OMAP15XX | MMC_OMAP16XX)
78 #define mmc_omap1() (host->features & MMC_OMAP1_MASK)
79 #define mmc_omap2() (!mmc_omap1())
81 #define OMAP_MMC_REG(host, reg) (OMAP_MMC_REG_##reg << (host)->reg_shift)
82 #define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG(host, reg))
83 #define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG(host, reg))
88 #define OMAP_MMC_CMDTYPE_BC 0
89 #define OMAP_MMC_CMDTYPE_BCR 1
90 #define OMAP_MMC_CMDTYPE_AC 2
91 #define OMAP_MMC_CMDTYPE_ADTC 3
93 #define DRIVER_NAME "mmci-omap"
95 /* Specifies how often in millisecs to poll for card status changes
96 * when the cover switch is open */
97 #define OMAP_MMC_COVER_POLL_DELAY 500
101 struct mmc_omap_slot
{
107 unsigned int fclk_freq
;
109 struct work_struct cover_bh_work
;
110 struct timer_list cover_timer
;
113 struct mmc_request
*mrq
;
114 struct mmc_omap_host
*host
;
115 struct mmc_host
*mmc
;
116 struct gpio_desc
*vsd
;
117 struct gpio_desc
*vio
;
118 struct gpio_desc
*cover
;
119 struct omap_mmc_slot_data
*pdata
;
122 struct mmc_omap_host
{
124 struct mmc_request
* mrq
;
125 struct mmc_command
* cmd
;
126 struct mmc_data
* data
;
127 struct mmc_host
* mmc
;
129 unsigned char id
; /* 16xx chips have 2 MMC blocks */
132 struct dma_chan
*dma_rx
;
134 struct dma_chan
*dma_tx
;
136 void __iomem
*virt_base
;
137 unsigned int phys_base
;
139 unsigned char bus_mode
;
140 unsigned int reg_shift
;
141 struct gpio_desc
*slot_switch
;
143 struct work_struct cmd_abort_work
;
145 struct timer_list cmd_abort_timer
;
147 struct work_struct slot_release_work
;
148 struct mmc_omap_slot
*next_slot
;
149 struct work_struct send_stop_work
;
150 struct mmc_data
*stop_data
;
152 struct sg_mapping_iter sg_miter
;
154 u32 total_bytes_left
;
157 unsigned brs_received
:1, dma_done
:1;
158 unsigned dma_in_use
:1;
161 struct mmc_omap_slot
*slots
[OMAP_MMC_MAX_SLOTS
];
162 struct mmc_omap_slot
*current_slot
;
163 spinlock_t slot_lock
;
164 wait_queue_head_t slot_wq
;
167 struct timer_list clk_timer
;
168 spinlock_t clk_lock
; /* for changing enabled state */
169 unsigned int fclk_enabled
:1;
170 struct workqueue_struct
*mmc_omap_wq
;
172 struct omap_mmc_platform_data
*pdata
;
176 static void mmc_omap_fclk_offdelay(struct mmc_omap_slot
*slot
)
178 unsigned long tick_ns
;
180 if (slot
!= NULL
&& slot
->host
->fclk_enabled
&& slot
->fclk_freq
> 0) {
181 tick_ns
= DIV_ROUND_UP(NSEC_PER_SEC
, slot
->fclk_freq
);
186 static void mmc_omap_fclk_enable(struct mmc_omap_host
*host
, unsigned int enable
)
190 spin_lock_irqsave(&host
->clk_lock
, flags
);
191 if (host
->fclk_enabled
!= enable
) {
192 host
->fclk_enabled
= enable
;
194 clk_enable(host
->fclk
);
196 clk_disable(host
->fclk
);
198 spin_unlock_irqrestore(&host
->clk_lock
, flags
);
201 static void mmc_omap_select_slot(struct mmc_omap_slot
*slot
, int claimed
)
203 struct mmc_omap_host
*host
= slot
->host
;
208 spin_lock_irqsave(&host
->slot_lock
, flags
);
209 while (host
->mmc
!= NULL
) {
210 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
211 wait_event(host
->slot_wq
, host
->mmc
== NULL
);
212 spin_lock_irqsave(&host
->slot_lock
, flags
);
214 host
->mmc
= slot
->mmc
;
215 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
217 del_timer(&host
->clk_timer
);
218 if (host
->current_slot
!= slot
|| !claimed
)
219 mmc_omap_fclk_offdelay(host
->current_slot
);
221 if (host
->current_slot
!= slot
) {
222 OMAP_MMC_WRITE(host
, CON
, slot
->saved_con
& 0xFC00);
223 if (host
->slot_switch
)
225 * With two slots and a simple GPIO switch, setting
226 * the GPIO to 0 selects slot ID 0, setting it to 1
229 gpiod_set_value(host
->slot_switch
, slot
->id
);
230 host
->current_slot
= slot
;
234 mmc_omap_fclk_enable(host
, 1);
236 /* Doing the dummy read here seems to work around some bug
237 * at least in OMAP24xx silicon where the command would not
238 * start after writing the CMD register. Sigh. */
239 OMAP_MMC_READ(host
, CON
);
241 OMAP_MMC_WRITE(host
, CON
, slot
->saved_con
);
243 mmc_omap_fclk_enable(host
, 0);
246 static void mmc_omap_start_request(struct mmc_omap_host
*host
,
247 struct mmc_request
*req
);
249 static void mmc_omap_slot_release_work(struct work_struct
*work
)
251 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
253 struct mmc_omap_slot
*next_slot
= host
->next_slot
;
254 struct mmc_request
*rq
;
256 host
->next_slot
= NULL
;
257 mmc_omap_select_slot(next_slot
, 1);
260 next_slot
->mrq
= NULL
;
261 mmc_omap_start_request(host
, rq
);
264 static void mmc_omap_release_slot(struct mmc_omap_slot
*slot
, int clk_enabled
)
266 struct mmc_omap_host
*host
= slot
->host
;
270 BUG_ON(slot
== NULL
|| host
->mmc
== NULL
);
273 /* Keeps clock running for at least 8 cycles on valid freq */
274 mod_timer(&host
->clk_timer
, jiffies
+ HZ
/10);
276 del_timer(&host
->clk_timer
);
277 mmc_omap_fclk_offdelay(slot
);
278 mmc_omap_fclk_enable(host
, 0);
281 spin_lock_irqsave(&host
->slot_lock
, flags
);
282 /* Check for any pending requests */
283 for (i
= 0; i
< host
->nr_slots
; i
++) {
284 struct mmc_omap_slot
*new_slot
;
286 if (host
->slots
[i
] == NULL
|| host
->slots
[i
]->mrq
== NULL
)
289 BUG_ON(host
->next_slot
!= NULL
);
290 new_slot
= host
->slots
[i
];
291 /* The current slot should not have a request in queue */
292 BUG_ON(new_slot
== host
->current_slot
);
294 host
->next_slot
= new_slot
;
295 host
->mmc
= new_slot
->mmc
;
296 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
297 queue_work(host
->mmc_omap_wq
, &host
->slot_release_work
);
302 wake_up(&host
->slot_wq
);
303 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
307 int mmc_omap_cover_is_open(struct mmc_omap_slot
*slot
)
309 /* If we have a GPIO then use that */
311 return gpiod_get_value(slot
->cover
);
312 if (slot
->pdata
->get_cover_state
)
313 return slot
->pdata
->get_cover_state(mmc_dev(slot
->mmc
),
319 mmc_omap_show_cover_switch(struct device
*dev
, struct device_attribute
*attr
,
322 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
323 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
325 return sprintf(buf
, "%s\n", mmc_omap_cover_is_open(slot
) ? "open" :
329 static DEVICE_ATTR(cover_switch
, S_IRUGO
, mmc_omap_show_cover_switch
, NULL
);
332 mmc_omap_show_slot_name(struct device
*dev
, struct device_attribute
*attr
,
335 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
336 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
338 return sprintf(buf
, "%s\n", slot
->pdata
->name
);
341 static DEVICE_ATTR(slot_name
, S_IRUGO
, mmc_omap_show_slot_name
, NULL
);
344 mmc_omap_start_command(struct mmc_omap_host
*host
, struct mmc_command
*cmd
)
356 /* Our hardware needs to know exact type */
357 switch (mmc_resp_type(cmd
)) {
362 /* resp 1, 1b, 6, 7 */
372 dev_err(mmc_dev(host
->mmc
), "Invalid response type: %04x\n", mmc_resp_type(cmd
));
376 if (mmc_cmd_type(cmd
) == MMC_CMD_ADTC
) {
377 cmdtype
= OMAP_MMC_CMDTYPE_ADTC
;
378 } else if (mmc_cmd_type(cmd
) == MMC_CMD_BC
) {
379 cmdtype
= OMAP_MMC_CMDTYPE_BC
;
380 } else if (mmc_cmd_type(cmd
) == MMC_CMD_BCR
) {
381 cmdtype
= OMAP_MMC_CMDTYPE_BCR
;
383 cmdtype
= OMAP_MMC_CMDTYPE_AC
;
386 cmdreg
= cmd
->opcode
| (resptype
<< 8) | (cmdtype
<< 12);
388 if (host
->current_slot
->bus_mode
== MMC_BUSMODE_OPENDRAIN
)
391 if (cmd
->flags
& MMC_RSP_BUSY
)
394 if (host
->data
&& !(host
->data
->flags
& MMC_DATA_WRITE
))
397 mod_timer(&host
->cmd_abort_timer
, jiffies
+ HZ
/2);
399 OMAP_MMC_WRITE(host
, CTO
, 200);
400 OMAP_MMC_WRITE(host
, ARGL
, cmd
->arg
& 0xffff);
401 OMAP_MMC_WRITE(host
, ARGH
, cmd
->arg
>> 16);
402 irq_mask
= OMAP_MMC_STAT_A_EMPTY
| OMAP_MMC_STAT_A_FULL
|
403 OMAP_MMC_STAT_CMD_CRC
| OMAP_MMC_STAT_CMD_TOUT
|
404 OMAP_MMC_STAT_DATA_CRC
| OMAP_MMC_STAT_DATA_TOUT
|
405 OMAP_MMC_STAT_END_OF_CMD
| OMAP_MMC_STAT_CARD_ERR
|
406 OMAP_MMC_STAT_END_OF_DATA
;
407 if (cmd
->opcode
== MMC_ERASE
)
408 irq_mask
&= ~OMAP_MMC_STAT_DATA_TOUT
;
409 OMAP_MMC_WRITE(host
, IE
, irq_mask
);
410 OMAP_MMC_WRITE(host
, CMD
, cmdreg
);
414 mmc_omap_release_dma(struct mmc_omap_host
*host
, struct mmc_data
*data
,
417 enum dma_data_direction dma_data_dir
;
418 struct device
*dev
= mmc_dev(host
->mmc
);
421 if (data
->flags
& MMC_DATA_WRITE
) {
422 dma_data_dir
= DMA_TO_DEVICE
;
425 dma_data_dir
= DMA_FROM_DEVICE
;
430 dmaengine_terminate_all(c
);
431 /* Claim nothing transferred on error... */
432 data
->bytes_xfered
= 0;
434 dev
= c
->device
->dev
;
436 dma_unmap_sg(dev
, data
->sg
, host
->sg_len
, dma_data_dir
);
439 static void mmc_omap_send_stop_work(struct work_struct
*work
)
441 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
443 struct mmc_omap_slot
*slot
= host
->current_slot
;
444 struct mmc_data
*data
= host
->stop_data
;
445 unsigned long tick_ns
;
447 tick_ns
= DIV_ROUND_UP(NSEC_PER_SEC
, slot
->fclk_freq
);
450 mmc_omap_start_command(host
, data
->stop
);
454 mmc_omap_xfer_done(struct mmc_omap_host
*host
, struct mmc_data
*data
)
456 if (host
->dma_in_use
)
457 mmc_omap_release_dma(host
, data
, data
->error
);
459 sg_miter_stop(&host
->sg_miter
);
464 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
465 * dozens of requests until the card finishes writing data.
466 * It'd be cheaper to just wait till an EOFB interrupt arrives...
470 struct mmc_host
*mmc
;
474 mmc_omap_release_slot(host
->current_slot
, 1);
475 mmc_request_done(mmc
, data
->mrq
);
479 host
->stop_data
= data
;
480 queue_work(host
->mmc_omap_wq
, &host
->send_stop_work
);
484 mmc_omap_send_abort(struct mmc_omap_host
*host
, int maxloops
)
486 struct mmc_omap_slot
*slot
= host
->current_slot
;
487 unsigned int restarts
, passes
, timeout
;
490 /* Sending abort takes 80 clocks. Have some extra and round up */
491 timeout
= DIV_ROUND_UP(120 * USEC_PER_SEC
, slot
->fclk_freq
);
493 while (restarts
< maxloops
) {
494 OMAP_MMC_WRITE(host
, STAT
, 0xFFFF);
495 OMAP_MMC_WRITE(host
, CMD
, (3 << 12) | (1 << 7));
498 while (passes
< timeout
) {
499 stat
= OMAP_MMC_READ(host
, STAT
);
500 if (stat
& OMAP_MMC_STAT_END_OF_CMD
)
509 OMAP_MMC_WRITE(host
, STAT
, stat
);
513 mmc_omap_abort_xfer(struct mmc_omap_host
*host
, struct mmc_data
*data
)
515 if (host
->dma_in_use
)
516 mmc_omap_release_dma(host
, data
, 1);
521 mmc_omap_send_abort(host
, 10000);
525 mmc_omap_end_of_data(struct mmc_omap_host
*host
, struct mmc_data
*data
)
530 if (!host
->dma_in_use
) {
531 mmc_omap_xfer_done(host
, data
);
535 spin_lock_irqsave(&host
->dma_lock
, flags
);
539 host
->brs_received
= 1;
540 spin_unlock_irqrestore(&host
->dma_lock
, flags
);
542 mmc_omap_xfer_done(host
, data
);
546 mmc_omap_dma_done(struct mmc_omap_host
*host
, struct mmc_data
*data
)
552 spin_lock_irqsave(&host
->dma_lock
, flags
);
553 if (host
->brs_received
)
557 spin_unlock_irqrestore(&host
->dma_lock
, flags
);
559 mmc_omap_xfer_done(host
, data
);
563 mmc_omap_cmd_done(struct mmc_omap_host
*host
, struct mmc_command
*cmd
)
567 del_timer(&host
->cmd_abort_timer
);
569 if (cmd
->flags
& MMC_RSP_PRESENT
) {
570 if (cmd
->flags
& MMC_RSP_136
) {
571 /* response type 2 */
573 OMAP_MMC_READ(host
, RSP0
) |
574 (OMAP_MMC_READ(host
, RSP1
) << 16);
576 OMAP_MMC_READ(host
, RSP2
) |
577 (OMAP_MMC_READ(host
, RSP3
) << 16);
579 OMAP_MMC_READ(host
, RSP4
) |
580 (OMAP_MMC_READ(host
, RSP5
) << 16);
582 OMAP_MMC_READ(host
, RSP6
) |
583 (OMAP_MMC_READ(host
, RSP7
) << 16);
585 /* response types 1, 1b, 3, 4, 5, 6 */
587 OMAP_MMC_READ(host
, RSP6
) |
588 (OMAP_MMC_READ(host
, RSP7
) << 16);
592 if (host
->data
== NULL
|| cmd
->error
) {
593 struct mmc_host
*mmc
;
595 if (host
->data
!= NULL
)
596 mmc_omap_abort_xfer(host
, host
->data
);
599 mmc_omap_release_slot(host
->current_slot
, 1);
600 mmc_request_done(mmc
, cmd
->mrq
);
605 * Abort stuck command. Can occur when card is removed while it is being
608 static void mmc_omap_abort_command(struct work_struct
*work
)
610 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
614 dev_dbg(mmc_dev(host
->mmc
), "Aborting stuck command CMD%d\n",
617 if (host
->cmd
->error
== 0)
618 host
->cmd
->error
= -ETIMEDOUT
;
620 if (host
->data
== NULL
) {
621 struct mmc_command
*cmd
;
622 struct mmc_host
*mmc
;
626 mmc_omap_send_abort(host
, 10000);
630 mmc_omap_release_slot(host
->current_slot
, 1);
631 mmc_request_done(mmc
, cmd
->mrq
);
633 mmc_omap_cmd_done(host
, host
->cmd
);
636 enable_irq(host
->irq
);
640 mmc_omap_cmd_timer(struct timer_list
*t
)
642 struct mmc_omap_host
*host
= from_timer(host
, t
, cmd_abort_timer
);
645 spin_lock_irqsave(&host
->slot_lock
, flags
);
646 if (host
->cmd
!= NULL
&& !host
->abort
) {
647 OMAP_MMC_WRITE(host
, IE
, 0);
648 disable_irq(host
->irq
);
650 queue_work(host
->mmc_omap_wq
, &host
->cmd_abort_work
);
652 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
656 mmc_omap_clk_timer(struct timer_list
*t
)
658 struct mmc_omap_host
*host
= from_timer(host
, t
, clk_timer
);
660 mmc_omap_fclk_enable(host
, 0);
665 mmc_omap_xfer_data(struct mmc_omap_host
*host
, int write
)
667 struct sg_mapping_iter
*sgm
= &host
->sg_miter
;
671 if (!sg_miter_next(sgm
)) {
672 /* This should not happen */
673 dev_err(mmc_dev(host
->mmc
), "ran out of scatterlist prematurely\n");
681 if (n
> host
->total_bytes_left
)
682 n
= host
->total_bytes_left
;
684 /* Round up to handle odd number of bytes to transfer */
685 nwords
= DIV_ROUND_UP(n
, 2);
688 host
->total_bytes_left
-= n
;
689 host
->data
->bytes_xfered
+= n
;
692 __raw_writesw(host
->virt_base
+ OMAP_MMC_REG(host
, DATA
),
695 __raw_readsw(host
->virt_base
+ OMAP_MMC_REG(host
, DATA
),
700 #ifdef CONFIG_MMC_DEBUG
701 static void mmc_omap_report_irq(struct mmc_omap_host
*host
, u16 status
)
703 static const char *mmc_omap_status_bits
[] = {
704 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
705 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
708 char res
[64], *buf
= res
;
710 buf
+= sprintf(buf
, "MMC IRQ 0x%x:", status
);
712 for (i
= 0; i
< ARRAY_SIZE(mmc_omap_status_bits
); i
++)
713 if (status
& (1 << i
))
714 buf
+= sprintf(buf
, " %s", mmc_omap_status_bits
[i
]);
715 dev_vdbg(mmc_dev(host
->mmc
), "%s\n", res
);
718 static void mmc_omap_report_irq(struct mmc_omap_host
*host
, u16 status
)
724 static irqreturn_t
mmc_omap_irq(int irq
, void *dev_id
)
726 struct mmc_omap_host
* host
= (struct mmc_omap_host
*)dev_id
;
730 int transfer_error
, cmd_error
;
732 if (host
->cmd
== NULL
&& host
->data
== NULL
) {
733 status
= OMAP_MMC_READ(host
, STAT
);
734 dev_info(mmc_dev(host
->slots
[0]->mmc
),
735 "Spurious IRQ 0x%04x\n", status
);
737 OMAP_MMC_WRITE(host
, STAT
, status
);
738 OMAP_MMC_WRITE(host
, IE
, 0);
748 while ((status
= OMAP_MMC_READ(host
, STAT
)) != 0) {
751 OMAP_MMC_WRITE(host
, STAT
, status
);
752 if (host
->cmd
!= NULL
)
753 cmd
= host
->cmd
->opcode
;
756 dev_dbg(mmc_dev(host
->mmc
), "MMC IRQ %04x (CMD %d): ",
758 mmc_omap_report_irq(host
, status
);
760 if (host
->total_bytes_left
) {
761 if ((status
& OMAP_MMC_STAT_A_FULL
) ||
762 (status
& OMAP_MMC_STAT_END_OF_DATA
))
763 mmc_omap_xfer_data(host
, 0);
764 if (status
& OMAP_MMC_STAT_A_EMPTY
)
765 mmc_omap_xfer_data(host
, 1);
768 if (status
& OMAP_MMC_STAT_END_OF_DATA
)
771 if (status
& OMAP_MMC_STAT_DATA_TOUT
) {
772 dev_dbg(mmc_dev(host
->mmc
), "data timeout (CMD%d)\n",
775 host
->data
->error
= -ETIMEDOUT
;
780 if (status
& OMAP_MMC_STAT_DATA_CRC
) {
782 host
->data
->error
= -EILSEQ
;
783 dev_dbg(mmc_dev(host
->mmc
),
784 "data CRC error, bytes left %d\n",
785 host
->total_bytes_left
);
788 dev_dbg(mmc_dev(host
->mmc
), "data CRC error\n");
792 if (status
& OMAP_MMC_STAT_CMD_TOUT
) {
793 /* Timeouts are routine with some commands */
795 struct mmc_omap_slot
*slot
=
798 !mmc_omap_cover_is_open(slot
))
799 dev_err(mmc_dev(host
->mmc
),
800 "command timeout (CMD%d)\n",
802 host
->cmd
->error
= -ETIMEDOUT
;
808 if (status
& OMAP_MMC_STAT_CMD_CRC
) {
810 dev_err(mmc_dev(host
->mmc
),
811 "command CRC error (CMD%d, arg 0x%08x)\n",
812 cmd
, host
->cmd
->arg
);
813 host
->cmd
->error
= -EILSEQ
;
817 dev_err(mmc_dev(host
->mmc
),
818 "command CRC error without cmd?\n");
821 if (status
& OMAP_MMC_STAT_CARD_ERR
) {
822 dev_dbg(mmc_dev(host
->mmc
),
823 "ignoring card status error (CMD%d)\n",
829 * NOTE: On 1610 the END_OF_CMD may come too early when
832 if ((status
& OMAP_MMC_STAT_END_OF_CMD
) &&
833 (!(status
& OMAP_MMC_STAT_A_EMPTY
))) {
838 if (cmd_error
&& host
->data
) {
839 del_timer(&host
->cmd_abort_timer
);
841 OMAP_MMC_WRITE(host
, IE
, 0);
842 disable_irq_nosync(host
->irq
);
843 queue_work(host
->mmc_omap_wq
, &host
->cmd_abort_work
);
847 if (end_command
&& host
->cmd
)
848 mmc_omap_cmd_done(host
, host
->cmd
);
849 if (host
->data
!= NULL
) {
851 mmc_omap_xfer_done(host
, host
->data
);
852 else if (end_transfer
)
853 mmc_omap_end_of_data(host
, host
->data
);
859 void omap_mmc_notify_cover_event(struct device
*dev
, int num
, int is_closed
)
862 struct mmc_omap_host
*host
= dev_get_drvdata(dev
);
863 struct mmc_omap_slot
*slot
= host
->slots
[num
];
865 BUG_ON(num
>= host
->nr_slots
);
867 /* Other subsystems can call in here before we're initialised. */
868 if (host
->nr_slots
== 0 || !host
->slots
[num
])
871 cover_open
= mmc_omap_cover_is_open(slot
);
872 if (cover_open
!= slot
->cover_open
) {
873 slot
->cover_open
= cover_open
;
874 sysfs_notify(&slot
->mmc
->class_dev
.kobj
, NULL
, "cover_switch");
877 queue_work(system_bh_highpri_wq
, &slot
->cover_bh_work
);
880 static void mmc_omap_cover_timer(struct timer_list
*t
)
882 struct mmc_omap_slot
*slot
= from_timer(slot
, t
, cover_timer
);
883 queue_work(system_bh_wq
, &slot
->cover_bh_work
);
886 static void mmc_omap_cover_bh_handler(struct work_struct
*t
)
888 struct mmc_omap_slot
*slot
= from_work(slot
, t
, cover_bh_work
);
889 int cover_open
= mmc_omap_cover_is_open(slot
);
891 mmc_detect_change(slot
->mmc
, 0);
896 * If no card is inserted, we postpone polling until
897 * the cover has been closed.
899 if (slot
->mmc
->card
== NULL
)
902 mod_timer(&slot
->cover_timer
,
903 jiffies
+ msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY
));
906 static void mmc_omap_dma_callback(void *priv
)
908 struct mmc_omap_host
*host
= priv
;
909 struct mmc_data
*data
= host
->data
;
911 /* If we got to the end of DMA, assume everything went well */
912 data
->bytes_xfered
+= data
->blocks
* data
->blksz
;
914 mmc_omap_dma_done(host
, data
);
917 static inline void set_cmd_timeout(struct mmc_omap_host
*host
, struct mmc_request
*req
)
921 reg
= OMAP_MMC_READ(host
, SDIO
);
923 OMAP_MMC_WRITE(host
, SDIO
, reg
);
924 /* Set maximum timeout */
925 OMAP_MMC_WRITE(host
, CTO
, 0xfd);
928 static inline void set_data_timeout(struct mmc_omap_host
*host
, struct mmc_request
*req
)
930 unsigned int timeout
, cycle_ns
;
933 cycle_ns
= 1000000000 / host
->current_slot
->fclk_freq
;
934 timeout
= req
->data
->timeout_ns
/ cycle_ns
;
935 timeout
+= req
->data
->timeout_clks
;
937 /* Check if we need to use timeout multiplier register */
938 reg
= OMAP_MMC_READ(host
, SDIO
);
939 if (timeout
> 0xffff) {
944 OMAP_MMC_WRITE(host
, SDIO
, reg
);
945 OMAP_MMC_WRITE(host
, DTO
, timeout
);
949 mmc_omap_prepare_data(struct mmc_omap_host
*host
, struct mmc_request
*req
)
951 unsigned int miter_flags
= SG_MITER_ATOMIC
; /* Used from IRQ */
952 struct mmc_data
*data
= req
->data
;
953 int i
, use_dma
= 1, block_size
;
954 struct scatterlist
*sg
;
959 OMAP_MMC_WRITE(host
, BLEN
, 0);
960 OMAP_MMC_WRITE(host
, NBLK
, 0);
961 OMAP_MMC_WRITE(host
, BUF
, 0);
962 host
->dma_in_use
= 0;
963 set_cmd_timeout(host
, req
);
967 block_size
= data
->blksz
;
969 OMAP_MMC_WRITE(host
, NBLK
, data
->blocks
- 1);
970 OMAP_MMC_WRITE(host
, BLEN
, block_size
- 1);
971 set_data_timeout(host
, req
);
973 /* cope with calling layer confusion; it issues "single
974 * block" writes using multi-block scatterlists.
976 sg_len
= (data
->blocks
== 1) ? 1 : data
->sg_len
;
978 /* Only do DMA for entire blocks */
979 for_each_sg(data
->sg
, sg
, sg_len
, i
) {
980 if ((sg
->length
% block_size
) != 0) {
987 enum dma_data_direction dma_data_dir
;
988 struct dma_async_tx_descriptor
*tx
;
994 * FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx
995 * and 24xx. Use 16 or 32 word frames when the
996 * blocksize is at least that large. Blocksize is
997 * usually 512 bytes; but not for some SD reads.
999 burst
= mmc_omap15xx() ? 32 : 64;
1000 if (burst
> data
->blksz
)
1001 burst
= data
->blksz
;
1005 if (data
->flags
& MMC_DATA_WRITE
) {
1007 bp
= &host
->dma_tx_burst
;
1008 buf
= 0x0f80 | (burst
- 1) << 0;
1009 dma_data_dir
= DMA_TO_DEVICE
;
1012 bp
= &host
->dma_rx_burst
;
1013 buf
= 0x800f | (burst
- 1) << 8;
1014 dma_data_dir
= DMA_FROM_DEVICE
;
1020 /* Only reconfigure if we have a different burst size */
1022 struct dma_slave_config cfg
= {
1023 .src_addr
= host
->phys_base
+
1024 OMAP_MMC_REG(host
, DATA
),
1025 .dst_addr
= host
->phys_base
+
1026 OMAP_MMC_REG(host
, DATA
),
1027 .src_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
,
1028 .dst_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
,
1029 .src_maxburst
= burst
,
1030 .dst_maxburst
= burst
,
1033 if (dmaengine_slave_config(c
, &cfg
))
1039 host
->sg_len
= dma_map_sg(c
->device
->dev
, data
->sg
, sg_len
,
1041 if (host
->sg_len
== 0)
1044 tx
= dmaengine_prep_slave_sg(c
, data
->sg
, host
->sg_len
,
1045 data
->flags
& MMC_DATA_WRITE
? DMA_MEM_TO_DEV
: DMA_DEV_TO_MEM
,
1046 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1050 OMAP_MMC_WRITE(host
, BUF
, buf
);
1052 tx
->callback
= mmc_omap_dma_callback
;
1053 tx
->callback_param
= host
;
1054 dmaengine_submit(tx
);
1055 host
->brs_received
= 0;
1057 host
->dma_in_use
= 1;
1062 /* Revert to PIO? */
1063 OMAP_MMC_WRITE(host
, BUF
, 0x1f1f);
1064 host
->total_bytes_left
= data
->blocks
* block_size
;
1065 host
->sg_len
= sg_len
;
1066 if (data
->flags
& MMC_DATA_READ
)
1067 miter_flags
|= SG_MITER_TO_SG
;
1069 miter_flags
|= SG_MITER_FROM_SG
;
1070 sg_miter_start(&host
->sg_miter
, data
->sg
, data
->sg_len
, miter_flags
);
1071 host
->dma_in_use
= 0;
1074 static void mmc_omap_start_request(struct mmc_omap_host
*host
,
1075 struct mmc_request
*req
)
1077 BUG_ON(host
->mrq
!= NULL
);
1081 /* only touch fifo AFTER the controller readies it */
1082 mmc_omap_prepare_data(host
, req
);
1083 mmc_omap_start_command(host
, req
->cmd
);
1084 if (host
->dma_in_use
) {
1085 struct dma_chan
*c
= host
->data
->flags
& MMC_DATA_WRITE
?
1086 host
->dma_tx
: host
->dma_rx
;
1088 dma_async_issue_pending(c
);
1092 static void mmc_omap_request(struct mmc_host
*mmc
, struct mmc_request
*req
)
1094 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1095 struct mmc_omap_host
*host
= slot
->host
;
1096 unsigned long flags
;
1098 spin_lock_irqsave(&host
->slot_lock
, flags
);
1099 if (host
->mmc
!= NULL
) {
1100 BUG_ON(slot
->mrq
!= NULL
);
1102 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
1106 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
1107 mmc_omap_select_slot(slot
, 1);
1108 mmc_omap_start_request(host
, req
);
1111 static void mmc_omap_set_power(struct mmc_omap_slot
*slot
, int power_on
,
1114 struct mmc_omap_host
*host
;
1120 gpiod_set_value(slot
->vsd
, power_on
);
1124 gpiod_set_value(slot
->vio
, power_on
);
1129 gpiod_set_value(slot
->vio
, power_on
);
1133 gpiod_set_value(slot
->vsd
, power_on
);
1138 if (slot
->pdata
->set_power
!= NULL
)
1139 slot
->pdata
->set_power(mmc_dev(slot
->mmc
), slot
->id
, power_on
,
1145 w
= OMAP_MMC_READ(host
, CON
);
1146 OMAP_MMC_WRITE(host
, CON
, w
| (1 << 11));
1148 w
= OMAP_MMC_READ(host
, CON
);
1149 OMAP_MMC_WRITE(host
, CON
, w
& ~(1 << 11));
1154 static int mmc_omap_calc_divisor(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1156 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1157 struct mmc_omap_host
*host
= slot
->host
;
1158 int func_clk_rate
= clk_get_rate(host
->fclk
);
1161 if (ios
->clock
== 0)
1164 dsor
= func_clk_rate
/ ios
->clock
;
1168 if (func_clk_rate
/ dsor
> ios
->clock
)
1174 slot
->fclk_freq
= func_clk_rate
/ dsor
;
1176 if (ios
->bus_width
== MMC_BUS_WIDTH_4
)
1182 static void mmc_omap_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1184 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1185 struct mmc_omap_host
*host
= slot
->host
;
1187 int clk_enabled
, init_stream
;
1189 mmc_omap_select_slot(slot
, 0);
1191 dsor
= mmc_omap_calc_divisor(mmc
, ios
);
1193 if (ios
->vdd
!= slot
->vdd
)
1194 slot
->vdd
= ios
->vdd
;
1198 switch (ios
->power_mode
) {
1200 mmc_omap_set_power(slot
, 0, ios
->vdd
);
1203 /* Cannot touch dsor yet, just power up MMC */
1204 mmc_omap_set_power(slot
, 1, ios
->vdd
);
1205 slot
->power_mode
= ios
->power_mode
;
1208 mmc_omap_fclk_enable(host
, 1);
1211 if (slot
->power_mode
!= MMC_POWER_ON
)
1215 slot
->power_mode
= ios
->power_mode
;
1217 if (slot
->bus_mode
!= ios
->bus_mode
) {
1218 if (slot
->pdata
->set_bus_mode
!= NULL
)
1219 slot
->pdata
->set_bus_mode(mmc_dev(mmc
), slot
->id
,
1221 slot
->bus_mode
= ios
->bus_mode
;
1224 /* On insanely high arm_per frequencies something sometimes
1225 * goes somehow out of sync, and the POW bit is not being set,
1226 * which results in the while loop below getting stuck.
1227 * Writing to the CON register twice seems to do the trick. */
1228 for (i
= 0; i
< 2; i
++)
1229 OMAP_MMC_WRITE(host
, CON
, dsor
);
1230 slot
->saved_con
= dsor
;
1232 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1235 /* Send clock cycles, poll completion */
1236 OMAP_MMC_WRITE(host
, IE
, 0);
1237 OMAP_MMC_WRITE(host
, STAT
, 0xffff);
1238 OMAP_MMC_WRITE(host
, CMD
, 1 << 7);
1239 while (usecs
> 0 && (OMAP_MMC_READ(host
, STAT
) & 1) == 0) {
1243 OMAP_MMC_WRITE(host
, STAT
, 1);
1247 mmc_omap_release_slot(slot
, clk_enabled
);
1250 static const struct mmc_host_ops mmc_omap_ops
= {
1251 .request
= mmc_omap_request
,
1252 .set_ios
= mmc_omap_set_ios
,
1255 static int mmc_omap_new_slot(struct mmc_omap_host
*host
, int id
)
1257 struct mmc_omap_slot
*slot
= NULL
;
1258 struct mmc_host
*mmc
;
1261 mmc
= mmc_alloc_host(sizeof(struct mmc_omap_slot
), host
->dev
);
1265 slot
= mmc_priv(mmc
);
1269 slot
->power_mode
= MMC_POWER_UNDEFINED
;
1270 slot
->pdata
= &host
->pdata
->slots
[id
];
1272 /* Check for some optional GPIO controls */
1273 slot
->vsd
= devm_gpiod_get_index_optional(host
->dev
, "vsd",
1275 if (IS_ERR(slot
->vsd
))
1276 return dev_err_probe(host
->dev
, PTR_ERR(slot
->vsd
),
1277 "error looking up VSD GPIO\n");
1278 slot
->vio
= devm_gpiod_get_index_optional(host
->dev
, "vio",
1280 if (IS_ERR(slot
->vio
))
1281 return dev_err_probe(host
->dev
, PTR_ERR(slot
->vio
),
1282 "error looking up VIO GPIO\n");
1283 slot
->cover
= devm_gpiod_get_index_optional(host
->dev
, "cover",
1285 if (IS_ERR(slot
->cover
))
1286 return dev_err_probe(host
->dev
, PTR_ERR(slot
->cover
),
1287 "error looking up cover switch GPIO\n");
1289 host
->slots
[id
] = slot
;
1292 if (host
->pdata
->slots
[id
].wires
>= 4)
1293 mmc
->caps
|= MMC_CAP_4_BIT_DATA
;
1295 mmc
->ops
= &mmc_omap_ops
;
1296 mmc
->f_min
= 400000;
1299 mmc
->f_max
= 48000000;
1301 mmc
->f_max
= 24000000;
1302 if (host
->pdata
->max_freq
)
1303 mmc
->f_max
= min(host
->pdata
->max_freq
, mmc
->f_max
);
1304 mmc
->ocr_avail
= slot
->pdata
->ocr_mask
;
1306 /* Use scatterlist DMA to reduce per-transfer costs.
1307 * NOTE max_seg_size assumption that small blocks aren't
1308 * normally used (except e.g. for reading SD registers).
1311 mmc
->max_blk_size
= 2048; /* BLEN is 11 bits (+1) */
1312 mmc
->max_blk_count
= 2048; /* NBLK is 11 bits (+1) */
1313 mmc
->max_req_size
= mmc
->max_blk_size
* mmc
->max_blk_count
;
1314 mmc
->max_seg_size
= mmc
->max_req_size
;
1316 if (slot
->pdata
->get_cover_state
!= NULL
) {
1317 timer_setup(&slot
->cover_timer
, mmc_omap_cover_timer
, 0);
1318 INIT_WORK(&slot
->cover_bh_work
, mmc_omap_cover_bh_handler
);
1321 r
= mmc_add_host(mmc
);
1323 goto err_remove_host
;
1325 if (slot
->pdata
->name
!= NULL
) {
1326 r
= device_create_file(&mmc
->class_dev
,
1327 &dev_attr_slot_name
);
1329 goto err_remove_host
;
1332 if (slot
->pdata
->get_cover_state
!= NULL
) {
1333 r
= device_create_file(&mmc
->class_dev
,
1334 &dev_attr_cover_switch
);
1336 goto err_remove_slot_name
;
1337 queue_work(system_bh_wq
, &slot
->cover_bh_work
);
1342 err_remove_slot_name
:
1343 if (slot
->pdata
->name
!= NULL
)
1344 device_remove_file(&mmc
->class_dev
, &dev_attr_slot_name
);
1346 mmc_remove_host(mmc
);
1351 static void mmc_omap_remove_slot(struct mmc_omap_slot
*slot
)
1353 struct mmc_host
*mmc
= slot
->mmc
;
1355 if (slot
->pdata
->name
!= NULL
)
1356 device_remove_file(&mmc
->class_dev
, &dev_attr_slot_name
);
1357 if (slot
->pdata
->get_cover_state
!= NULL
)
1358 device_remove_file(&mmc
->class_dev
, &dev_attr_cover_switch
);
1360 cancel_work_sync(&slot
->cover_bh_work
);
1361 del_timer_sync(&slot
->cover_timer
);
1362 flush_workqueue(slot
->host
->mmc_omap_wq
);
1364 mmc_remove_host(mmc
);
1368 static int mmc_omap_probe(struct platform_device
*pdev
)
1370 struct omap_mmc_platform_data
*pdata
= pdev
->dev
.platform_data
;
1371 struct mmc_omap_host
*host
= NULL
;
1372 struct resource
*res
;
1376 if (pdata
== NULL
) {
1377 dev_err(&pdev
->dev
, "platform data missing\n");
1380 if (pdata
->nr_slots
== 0) {
1381 dev_err(&pdev
->dev
, "no slots\n");
1382 return -EPROBE_DEFER
;
1385 host
= devm_kzalloc(&pdev
->dev
, sizeof(struct mmc_omap_host
),
1390 irq
= platform_get_irq(pdev
, 0);
1394 host
->virt_base
= devm_platform_get_and_ioremap_resource(pdev
, 0, &res
);
1395 if (IS_ERR(host
->virt_base
))
1396 return PTR_ERR(host
->virt_base
);
1398 INIT_WORK(&host
->slot_release_work
, mmc_omap_slot_release_work
);
1399 INIT_WORK(&host
->send_stop_work
, mmc_omap_send_stop_work
);
1401 INIT_WORK(&host
->cmd_abort_work
, mmc_omap_abort_command
);
1402 timer_setup(&host
->cmd_abort_timer
, mmc_omap_cmd_timer
, 0);
1404 spin_lock_init(&host
->clk_lock
);
1405 timer_setup(&host
->clk_timer
, mmc_omap_clk_timer
, 0);
1407 spin_lock_init(&host
->dma_lock
);
1408 spin_lock_init(&host
->slot_lock
);
1409 init_waitqueue_head(&host
->slot_wq
);
1411 host
->pdata
= pdata
;
1412 host
->features
= host
->pdata
->slots
[0].features
;
1413 host
->dev
= &pdev
->dev
;
1414 platform_set_drvdata(pdev
, host
);
1416 host
->slot_switch
= devm_gpiod_get_optional(host
->dev
, "switch",
1418 if (IS_ERR(host
->slot_switch
))
1419 return dev_err_probe(host
->dev
, PTR_ERR(host
->slot_switch
),
1420 "error looking up slot switch GPIO\n");
1422 host
->id
= pdev
->id
;
1424 host
->phys_base
= res
->start
;
1425 host
->iclk
= clk_get(&pdev
->dev
, "ick");
1426 if (IS_ERR(host
->iclk
))
1427 return PTR_ERR(host
->iclk
);
1428 clk_prepare_enable(host
->iclk
);
1430 host
->fclk
= clk_get(&pdev
->dev
, "fck");
1431 if (IS_ERR(host
->fclk
)) {
1432 ret
= PTR_ERR(host
->fclk
);
1436 ret
= clk_prepare(host
->fclk
);
1440 host
->dma_tx_burst
= -1;
1441 host
->dma_rx_burst
= -1;
1443 host
->dma_tx
= dma_request_chan(&pdev
->dev
, "tx");
1444 if (IS_ERR(host
->dma_tx
)) {
1445 ret
= PTR_ERR(host
->dma_tx
);
1446 if (ret
== -EPROBE_DEFER
)
1449 host
->dma_tx
= NULL
;
1450 dev_warn(host
->dev
, "TX DMA channel request failed\n");
1453 host
->dma_rx
= dma_request_chan(&pdev
->dev
, "rx");
1454 if (IS_ERR(host
->dma_rx
)) {
1455 ret
= PTR_ERR(host
->dma_rx
);
1456 if (ret
== -EPROBE_DEFER
) {
1458 dma_release_channel(host
->dma_tx
);
1462 host
->dma_rx
= NULL
;
1463 dev_warn(host
->dev
, "RX DMA channel request failed\n");
1466 ret
= request_irq(host
->irq
, mmc_omap_irq
, 0, DRIVER_NAME
, host
);
1470 if (pdata
->init
!= NULL
) {
1471 ret
= pdata
->init(&pdev
->dev
);
1476 host
->nr_slots
= pdata
->nr_slots
;
1477 host
->reg_shift
= (mmc_omap7xx() ? 1 : 2);
1479 host
->mmc_omap_wq
= alloc_workqueue("mmc_omap", 0, 0);
1480 if (!host
->mmc_omap_wq
) {
1482 goto err_plat_cleanup
;
1485 for (i
= 0; i
< pdata
->nr_slots
; i
++) {
1486 ret
= mmc_omap_new_slot(host
, i
);
1489 mmc_omap_remove_slot(host
->slots
[i
]);
1491 goto err_destroy_wq
;
1498 destroy_workqueue(host
->mmc_omap_wq
);
1501 pdata
->cleanup(&pdev
->dev
);
1503 free_irq(host
->irq
, host
);
1506 dma_release_channel(host
->dma_tx
);
1508 dma_release_channel(host
->dma_rx
);
1510 clk_unprepare(host
->fclk
);
1512 clk_put(host
->fclk
);
1514 clk_disable_unprepare(host
->iclk
);
1515 clk_put(host
->iclk
);
1519 static void mmc_omap_remove(struct platform_device
*pdev
)
1521 struct mmc_omap_host
*host
= platform_get_drvdata(pdev
);
1524 BUG_ON(host
== NULL
);
1526 for (i
= 0; i
< host
->nr_slots
; i
++)
1527 mmc_omap_remove_slot(host
->slots
[i
]);
1529 if (host
->pdata
->cleanup
)
1530 host
->pdata
->cleanup(&pdev
->dev
);
1532 mmc_omap_fclk_enable(host
, 0);
1533 free_irq(host
->irq
, host
);
1534 clk_unprepare(host
->fclk
);
1535 clk_put(host
->fclk
);
1536 clk_disable_unprepare(host
->iclk
);
1537 clk_put(host
->iclk
);
1540 dma_release_channel(host
->dma_tx
);
1542 dma_release_channel(host
->dma_rx
);
1544 destroy_workqueue(host
->mmc_omap_wq
);
1547 #if IS_BUILTIN(CONFIG_OF)
1548 static const struct of_device_id mmc_omap_match
[] = {
1549 { .compatible
= "ti,omap2420-mmc", },
1552 MODULE_DEVICE_TABLE(of
, mmc_omap_match
);
1555 static struct platform_driver mmc_omap_driver
= {
1556 .probe
= mmc_omap_probe
,
1557 .remove
= mmc_omap_remove
,
1559 .name
= DRIVER_NAME
,
1560 .probe_type
= PROBE_PREFER_ASYNCHRONOUS
,
1561 .of_match_table
= of_match_ptr(mmc_omap_match
),
1565 module_platform_driver(mmc_omap_driver
);
1566 MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1567 MODULE_LICENSE("GPL");
1568 MODULE_ALIAS("platform:" DRIVER_NAME
);
1569 MODULE_AUTHOR("Juha Yrjölä");