2 * linux/drivers/mmc/host/pxa.c - PXA MMCI driver
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
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.
10 * This hardware is really sick:
11 * - No way to clear interrupts.
12 * - Have to turn off the clock whenever we touch the device.
13 * - Doesn't tell you how many data blocks were transferred.
16 * 1 and 3 byte data transfers not supported
17 * max block length up to 1023
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/ioport.h>
22 #include <linux/platform_device.h>
23 #include <linux/delay.h>
24 #include <linux/interrupt.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/clk.h>
27 #include <linux/err.h>
28 #include <linux/mmc/host.h>
30 #include <linux/regulator/consumer.h>
31 #include <linux/gpio.h>
33 #include <asm/sizes.h>
35 #include <mach/hardware.h>
41 #define DRIVER_NAME "pxa2xx-mci"
44 #define CLKRT_OFF (~0)
46 #define mmc_has_26MHz() (cpu_is_pxa300() || cpu_is_pxa310() \
55 unsigned long clkrate
;
61 unsigned int power_mode
;
62 struct pxamci_platform_data
*pdata
;
64 struct mmc_request
*mrq
;
65 struct mmc_command
*cmd
;
66 struct mmc_data
*data
;
69 struct pxa_dma_desc
*sg_cpu
;
73 unsigned int dma_drcmrrx
;
74 unsigned int dma_drcmrtx
;
76 struct regulator
*vcc
;
79 static inline void pxamci_init_ocr(struct pxamci_host
*host
)
81 #ifdef CONFIG_REGULATOR
82 host
->vcc
= regulator_get(mmc_dev(host
->mmc
), "vmmc");
84 if (IS_ERR(host
->vcc
))
87 host
->mmc
->ocr_avail
= mmc_regulator_get_ocrmask(host
->vcc
);
88 if (host
->pdata
&& host
->pdata
->ocr_mask
)
89 dev_warn(mmc_dev(host
->mmc
),
90 "ocr_mask/setpower will not be used\n");
93 if (host
->vcc
== NULL
) {
94 /* fall-back to platform data */
95 host
->mmc
->ocr_avail
= host
->pdata
?
96 host
->pdata
->ocr_mask
:
97 MMC_VDD_32_33
| MMC_VDD_33_34
;
101 static inline void pxamci_set_power(struct pxamci_host
*host
, unsigned int vdd
)
105 #ifdef CONFIG_REGULATOR
107 mmc_regulator_set_ocr(host
->vcc
, vdd
);
109 if (!host
->vcc
&& host
->pdata
&&
110 gpio_is_valid(host
->pdata
->gpio_power
)) {
111 on
= ((1 << vdd
) & host
->pdata
->ocr_mask
);
112 gpio_set_value(host
->pdata
->gpio_power
,
113 !!on
^ host
->pdata
->gpio_power_invert
);
115 if (!host
->vcc
&& host
->pdata
&& host
->pdata
->setpower
)
116 host
->pdata
->setpower(mmc_dev(host
->mmc
), vdd
);
119 static void pxamci_stop_clock(struct pxamci_host
*host
)
121 if (readl(host
->base
+ MMC_STAT
) & STAT_CLK_EN
) {
122 unsigned long timeout
= 10000;
125 writel(STOP_CLOCK
, host
->base
+ MMC_STRPCL
);
128 v
= readl(host
->base
+ MMC_STAT
);
129 if (!(v
& STAT_CLK_EN
))
135 dev_err(mmc_dev(host
->mmc
), "unable to stop clock\n");
139 static void pxamci_enable_irq(struct pxamci_host
*host
, unsigned int mask
)
143 spin_lock_irqsave(&host
->lock
, flags
);
144 host
->imask
&= ~mask
;
145 writel(host
->imask
, host
->base
+ MMC_I_MASK
);
146 spin_unlock_irqrestore(&host
->lock
, flags
);
149 static void pxamci_disable_irq(struct pxamci_host
*host
, unsigned int mask
)
153 spin_lock_irqsave(&host
->lock
, flags
);
155 writel(host
->imask
, host
->base
+ MMC_I_MASK
);
156 spin_unlock_irqrestore(&host
->lock
, flags
);
159 static void pxamci_setup_data(struct pxamci_host
*host
, struct mmc_data
*data
)
161 unsigned int nob
= data
->blocks
;
162 unsigned long long clks
;
163 unsigned int timeout
;
170 if (data
->flags
& MMC_DATA_STREAM
)
173 writel(nob
, host
->base
+ MMC_NOB
);
174 writel(data
->blksz
, host
->base
+ MMC_BLKLEN
);
176 clks
= (unsigned long long)data
->timeout_ns
* host
->clkrate
;
177 do_div(clks
, 1000000000UL);
178 timeout
= (unsigned int)clks
+ (data
->timeout_clks
<< host
->clkrt
);
179 writel((timeout
+ 255) / 256, host
->base
+ MMC_RDTO
);
181 if (data
->flags
& MMC_DATA_READ
) {
182 host
->dma_dir
= DMA_FROM_DEVICE
;
183 dcmd
= DCMD_INCTRGADDR
| DCMD_FLOWSRC
;
184 DRCMR(host
->dma_drcmrtx
) = 0;
185 DRCMR(host
->dma_drcmrrx
) = host
->dma
| DRCMR_MAPVLD
;
187 host
->dma_dir
= DMA_TO_DEVICE
;
188 dcmd
= DCMD_INCSRCADDR
| DCMD_FLOWTRG
;
189 DRCMR(host
->dma_drcmrrx
) = 0;
190 DRCMR(host
->dma_drcmrtx
) = host
->dma
| DRCMR_MAPVLD
;
193 dcmd
|= DCMD_BURST32
| DCMD_WIDTH1
;
195 host
->dma_len
= dma_map_sg(mmc_dev(host
->mmc
), data
->sg
, data
->sg_len
,
198 for (i
= 0; i
< host
->dma_len
; i
++) {
199 unsigned int length
= sg_dma_len(&data
->sg
[i
]);
200 host
->sg_cpu
[i
].dcmd
= dcmd
| length
;
201 if (length
& 31 && !(data
->flags
& MMC_DATA_READ
))
202 host
->sg_cpu
[i
].dcmd
|= DCMD_ENDIRQEN
;
203 /* Not aligned to 8-byte boundary? */
204 if (sg_dma_address(&data
->sg
[i
]) & 0x7)
206 if (data
->flags
& MMC_DATA_READ
) {
207 host
->sg_cpu
[i
].dsadr
= host
->res
->start
+ MMC_RXFIFO
;
208 host
->sg_cpu
[i
].dtadr
= sg_dma_address(&data
->sg
[i
]);
210 host
->sg_cpu
[i
].dsadr
= sg_dma_address(&data
->sg
[i
]);
211 host
->sg_cpu
[i
].dtadr
= host
->res
->start
+ MMC_TXFIFO
;
213 host
->sg_cpu
[i
].ddadr
= host
->sg_dma
+ (i
+ 1) *
214 sizeof(struct pxa_dma_desc
);
216 host
->sg_cpu
[host
->dma_len
- 1].ddadr
= DDADR_STOP
;
220 * The PXA27x DMA controller encounters overhead when working with
221 * unaligned (to 8-byte boundaries) data, so switch on byte alignment
222 * mode only if we have unaligned data.
225 DALGN
|= (1 << host
->dma
);
227 DALGN
&= ~(1 << host
->dma
);
228 DDADR(host
->dma
) = host
->sg_dma
;
231 * workaround for erratum #91:
232 * only start DMA now if we are doing a read,
233 * otherwise we wait until CMD/RESP has finished
234 * before starting DMA.
236 if (!cpu_is_pxa27x() || data
->flags
& MMC_DATA_READ
)
237 DCSR(host
->dma
) = DCSR_RUN
;
240 static void pxamci_start_cmd(struct pxamci_host
*host
, struct mmc_command
*cmd
, unsigned int cmdat
)
242 WARN_ON(host
->cmd
!= NULL
);
245 if (cmd
->flags
& MMC_RSP_BUSY
)
248 #define RSP_TYPE(x) ((x) & ~(MMC_RSP_BUSY|MMC_RSP_OPCODE))
249 switch (RSP_TYPE(mmc_resp_type(cmd
))) {
250 case RSP_TYPE(MMC_RSP_R1
): /* r1, r1b, r6, r7 */
251 cmdat
|= CMDAT_RESP_SHORT
;
253 case RSP_TYPE(MMC_RSP_R3
):
254 cmdat
|= CMDAT_RESP_R3
;
256 case RSP_TYPE(MMC_RSP_R2
):
257 cmdat
|= CMDAT_RESP_R2
;
263 writel(cmd
->opcode
, host
->base
+ MMC_CMD
);
264 writel(cmd
->arg
>> 16, host
->base
+ MMC_ARGH
);
265 writel(cmd
->arg
& 0xffff, host
->base
+ MMC_ARGL
);
266 writel(cmdat
, host
->base
+ MMC_CMDAT
);
267 writel(host
->clkrt
, host
->base
+ MMC_CLKRT
);
269 writel(START_CLOCK
, host
->base
+ MMC_STRPCL
);
271 pxamci_enable_irq(host
, END_CMD_RES
);
274 static void pxamci_finish_request(struct pxamci_host
*host
, struct mmc_request
*mrq
)
279 mmc_request_done(host
->mmc
, mrq
);
282 static int pxamci_cmd_done(struct pxamci_host
*host
, unsigned int stat
)
284 struct mmc_command
*cmd
= host
->cmd
;
294 * Did I mention this is Sick. We always need to
295 * discard the upper 8 bits of the first 16-bit word.
297 v
= readl(host
->base
+ MMC_RES
) & 0xffff;
298 for (i
= 0; i
< 4; i
++) {
299 u32 w1
= readl(host
->base
+ MMC_RES
) & 0xffff;
300 u32 w2
= readl(host
->base
+ MMC_RES
) & 0xffff;
301 cmd
->resp
[i
] = v
<< 24 | w1
<< 8 | w2
>> 8;
305 if (stat
& STAT_TIME_OUT_RESPONSE
) {
306 cmd
->error
= -ETIMEDOUT
;
307 } else if (stat
& STAT_RES_CRC_ERR
&& cmd
->flags
& MMC_RSP_CRC
) {
309 * workaround for erratum #42:
310 * Intel PXA27x Family Processor Specification Update Rev 001
311 * A bogus CRC error can appear if the msb of a 136 bit
314 if (cpu_is_pxa27x() &&
315 (cmd
->flags
& MMC_RSP_136
&& cmd
->resp
[0] & 0x80000000))
316 pr_debug("ignoring CRC from command %d - *risky*\n", cmd
->opcode
);
318 cmd
->error
= -EILSEQ
;
321 pxamci_disable_irq(host
, END_CMD_RES
);
322 if (host
->data
&& !cmd
->error
) {
323 pxamci_enable_irq(host
, DATA_TRAN_DONE
);
325 * workaround for erratum #91, if doing write
328 if (cpu_is_pxa27x() && host
->data
->flags
& MMC_DATA_WRITE
)
329 DCSR(host
->dma
) = DCSR_RUN
;
331 pxamci_finish_request(host
, host
->mrq
);
337 static int pxamci_data_done(struct pxamci_host
*host
, unsigned int stat
)
339 struct mmc_data
*data
= host
->data
;
345 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
, data
->sg_len
,
348 if (stat
& STAT_READ_TIME_OUT
)
349 data
->error
= -ETIMEDOUT
;
350 else if (stat
& (STAT_CRC_READ_ERROR
|STAT_CRC_WRITE_ERROR
))
351 data
->error
= -EILSEQ
;
354 * There appears to be a hardware design bug here. There seems to
355 * be no way to find out how much data was transferred to the card.
356 * This means that if there was an error on any block, we mark all
357 * data blocks as being in error.
360 data
->bytes_xfered
= data
->blocks
* data
->blksz
;
362 data
->bytes_xfered
= 0;
364 pxamci_disable_irq(host
, DATA_TRAN_DONE
);
367 if (host
->mrq
->stop
) {
368 pxamci_stop_clock(host
);
369 pxamci_start_cmd(host
, host
->mrq
->stop
, host
->cmdat
);
371 pxamci_finish_request(host
, host
->mrq
);
377 static irqreturn_t
pxamci_irq(int irq
, void *devid
)
379 struct pxamci_host
*host
= devid
;
383 ireg
= readl(host
->base
+ MMC_I_REG
) & ~readl(host
->base
+ MMC_I_MASK
);
386 unsigned stat
= readl(host
->base
+ MMC_STAT
);
388 pr_debug("PXAMCI: irq %08x stat %08x\n", ireg
, stat
);
390 if (ireg
& END_CMD_RES
)
391 handled
|= pxamci_cmd_done(host
, stat
);
392 if (ireg
& DATA_TRAN_DONE
)
393 handled
|= pxamci_data_done(host
, stat
);
394 if (ireg
& SDIO_INT
) {
395 mmc_signal_sdio_irq(host
->mmc
);
400 return IRQ_RETVAL(handled
);
403 static void pxamci_request(struct mmc_host
*mmc
, struct mmc_request
*mrq
)
405 struct pxamci_host
*host
= mmc_priv(mmc
);
408 WARN_ON(host
->mrq
!= NULL
);
412 pxamci_stop_clock(host
);
415 host
->cmdat
&= ~CMDAT_INIT
;
418 pxamci_setup_data(host
, mrq
->data
);
420 cmdat
&= ~CMDAT_BUSY
;
421 cmdat
|= CMDAT_DATAEN
| CMDAT_DMAEN
;
422 if (mrq
->data
->flags
& MMC_DATA_WRITE
)
423 cmdat
|= CMDAT_WRITE
;
425 if (mrq
->data
->flags
& MMC_DATA_STREAM
)
426 cmdat
|= CMDAT_STREAM
;
429 pxamci_start_cmd(host
, mrq
->cmd
, cmdat
);
432 static int pxamci_get_ro(struct mmc_host
*mmc
)
434 struct pxamci_host
*host
= mmc_priv(mmc
);
436 if (host
->pdata
&& gpio_is_valid(host
->pdata
->gpio_card_ro
)) {
437 if (host
->pdata
->gpio_card_ro_invert
)
438 return !gpio_get_value(host
->pdata
->gpio_card_ro
);
440 return gpio_get_value(host
->pdata
->gpio_card_ro
);
442 if (host
->pdata
&& host
->pdata
->get_ro
)
443 return !!host
->pdata
->get_ro(mmc_dev(mmc
));
445 * Board doesn't support read only detection; let the mmc core
451 static void pxamci_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
453 struct pxamci_host
*host
= mmc_priv(mmc
);
456 unsigned long rate
= host
->clkrate
;
457 unsigned int clk
= rate
/ ios
->clock
;
459 if (host
->clkrt
== CLKRT_OFF
)
460 clk_enable(host
->clk
);
462 if (ios
->clock
== 26000000) {
463 /* to support 26MHz */
466 /* to handle (19.5MHz, 26MHz) */
471 * clk might result in a lower divisor than we
472 * desire. check for that condition and adjust
475 if (rate
/ clk
> ios
->clock
)
477 host
->clkrt
= fls(clk
) - 1;
481 * we write clkrt on the next command
484 pxamci_stop_clock(host
);
485 if (host
->clkrt
!= CLKRT_OFF
) {
486 host
->clkrt
= CLKRT_OFF
;
487 clk_disable(host
->clk
);
491 if (host
->power_mode
!= ios
->power_mode
) {
492 host
->power_mode
= ios
->power_mode
;
494 pxamci_set_power(host
, ios
->vdd
);
496 if (ios
->power_mode
== MMC_POWER_ON
)
497 host
->cmdat
|= CMDAT_INIT
;
500 if (ios
->bus_width
== MMC_BUS_WIDTH_4
)
501 host
->cmdat
|= CMDAT_SD_4DAT
;
503 host
->cmdat
&= ~CMDAT_SD_4DAT
;
505 pr_debug("PXAMCI: clkrt = %x cmdat = %x\n",
506 host
->clkrt
, host
->cmdat
);
509 static void pxamci_enable_sdio_irq(struct mmc_host
*host
, int enable
)
511 struct pxamci_host
*pxa_host
= mmc_priv(host
);
514 pxamci_enable_irq(pxa_host
, SDIO_INT
);
516 pxamci_disable_irq(pxa_host
, SDIO_INT
);
519 static const struct mmc_host_ops pxamci_ops
= {
520 .request
= pxamci_request
,
521 .get_ro
= pxamci_get_ro
,
522 .set_ios
= pxamci_set_ios
,
523 .enable_sdio_irq
= pxamci_enable_sdio_irq
,
526 static void pxamci_dma_irq(int dma
, void *devid
)
528 struct pxamci_host
*host
= devid
;
529 int dcsr
= DCSR(dma
);
530 DCSR(dma
) = dcsr
& ~DCSR_STOPIRQEN
;
532 if (dcsr
& DCSR_ENDINTR
) {
533 writel(BUF_PART_FULL
, host
->base
+ MMC_PRTBUF
);
535 printk(KERN_ERR
"%s: DMA error on channel %d (DCSR=%#x)\n",
536 mmc_hostname(host
->mmc
), dma
, dcsr
);
537 host
->data
->error
= -EIO
;
538 pxamci_data_done(host
, 0);
542 static irqreturn_t
pxamci_detect_irq(int irq
, void *devid
)
544 struct pxamci_host
*host
= mmc_priv(devid
);
546 mmc_detect_change(devid
, host
->pdata
->detect_delay
);
550 static int pxamci_probe(struct platform_device
*pdev
)
552 struct mmc_host
*mmc
;
553 struct pxamci_host
*host
= NULL
;
554 struct resource
*r
, *dmarx
, *dmatx
;
555 int ret
, irq
, gpio_cd
= -1, gpio_ro
= -1, gpio_power
= -1;
557 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
558 irq
= platform_get_irq(pdev
, 0);
562 r
= request_mem_region(r
->start
, SZ_4K
, DRIVER_NAME
);
566 mmc
= mmc_alloc_host(sizeof(struct pxamci_host
), &pdev
->dev
);
572 mmc
->ops
= &pxamci_ops
;
575 * We can do SG-DMA, but we don't because we never know how much
576 * data we successfully wrote to the card.
578 mmc
->max_phys_segs
= NR_SG
;
581 * Our hardware DMA can handle a maximum of one page per SG entry.
583 mmc
->max_seg_size
= PAGE_SIZE
;
586 * Block length register is only 10 bits before PXA27x.
588 mmc
->max_blk_size
= cpu_is_pxa25x() ? 1023 : 2048;
591 * Block count register is 16 bits.
593 mmc
->max_blk_count
= 65535;
595 host
= mmc_priv(mmc
);
598 host
->pdata
= pdev
->dev
.platform_data
;
599 host
->clkrt
= CLKRT_OFF
;
601 host
->clk
= clk_get(&pdev
->dev
, NULL
);
602 if (IS_ERR(host
->clk
)) {
603 ret
= PTR_ERR(host
->clk
);
608 host
->clkrate
= clk_get_rate(host
->clk
);
611 * Calculate minimum clock rate, rounding up.
613 mmc
->f_min
= (host
->clkrate
+ 63) / 64;
614 mmc
->f_max
= (mmc_has_26MHz()) ? 26000000 : host
->clkrate
;
616 pxamci_init_ocr(host
);
620 if (!cpu_is_pxa25x()) {
621 mmc
->caps
|= MMC_CAP_4_BIT_DATA
| MMC_CAP_SDIO_IRQ
;
622 host
->cmdat
|= CMDAT_SDIO_INT_EN
;
624 mmc
->caps
|= MMC_CAP_MMC_HIGHSPEED
|
625 MMC_CAP_SD_HIGHSPEED
;
628 host
->sg_cpu
= dma_alloc_coherent(&pdev
->dev
, PAGE_SIZE
, &host
->sg_dma
, GFP_KERNEL
);
634 spin_lock_init(&host
->lock
);
637 host
->imask
= MMC_I_MASK_ALL
;
639 host
->base
= ioremap(r
->start
, SZ_4K
);
646 * Ensure that the host controller is shut down, and setup
649 pxamci_stop_clock(host
);
650 writel(0, host
->base
+ MMC_SPI
);
651 writel(64, host
->base
+ MMC_RESTO
);
652 writel(host
->imask
, host
->base
+ MMC_I_MASK
);
654 host
->dma
= pxa_request_dma(DRIVER_NAME
, DMA_PRIO_LOW
,
655 pxamci_dma_irq
, host
);
661 ret
= request_irq(host
->irq
, pxamci_irq
, 0, DRIVER_NAME
, host
);
665 platform_set_drvdata(pdev
, mmc
);
667 dmarx
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
672 host
->dma_drcmrrx
= dmarx
->start
;
674 dmatx
= platform_get_resource(pdev
, IORESOURCE_DMA
, 1);
679 host
->dma_drcmrtx
= dmatx
->start
;
682 gpio_cd
= host
->pdata
->gpio_card_detect
;
683 gpio_ro
= host
->pdata
->gpio_card_ro
;
684 gpio_power
= host
->pdata
->gpio_power
;
686 if (gpio_is_valid(gpio_power
)) {
687 ret
= gpio_request(gpio_power
, "mmc card power");
689 dev_err(&pdev
->dev
, "Failed requesting gpio_power %d\n", gpio_power
);
692 gpio_direction_output(gpio_power
,
693 host
->pdata
->gpio_power_invert
);
695 if (gpio_is_valid(gpio_ro
)) {
696 ret
= gpio_request(gpio_ro
, "mmc card read only");
698 dev_err(&pdev
->dev
, "Failed requesting gpio_ro %d\n", gpio_ro
);
701 gpio_direction_input(gpio_ro
);
703 if (gpio_is_valid(gpio_cd
)) {
704 ret
= gpio_request(gpio_cd
, "mmc card detect");
706 dev_err(&pdev
->dev
, "Failed requesting gpio_cd %d\n", gpio_cd
);
709 gpio_direction_input(gpio_cd
);
711 ret
= request_irq(gpio_to_irq(gpio_cd
), pxamci_detect_irq
,
712 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
,
713 "mmc card detect", mmc
);
715 dev_err(&pdev
->dev
, "failed to request card detect IRQ\n");
716 goto err_request_irq
;
720 if (host
->pdata
&& host
->pdata
->init
)
721 host
->pdata
->init(&pdev
->dev
, pxamci_detect_irq
, mmc
);
723 if (gpio_is_valid(gpio_power
) && host
->pdata
->setpower
)
724 dev_warn(&pdev
->dev
, "gpio_power and setpower() both defined\n");
725 if (gpio_is_valid(gpio_ro
) && host
->pdata
->get_ro
)
726 dev_warn(&pdev
->dev
, "gpio_ro and get_ro() both defined\n");
737 gpio_free(gpio_power
);
741 pxa_free_dma(host
->dma
);
745 dma_free_coherent(&pdev
->dev
, PAGE_SIZE
, host
->sg_cpu
, host
->sg_dma
);
755 static int pxamci_remove(struct platform_device
*pdev
)
757 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
758 int gpio_cd
= -1, gpio_ro
= -1, gpio_power
= -1;
760 platform_set_drvdata(pdev
, NULL
);
763 struct pxamci_host
*host
= mmc_priv(mmc
);
766 gpio_cd
= host
->pdata
->gpio_card_detect
;
767 gpio_ro
= host
->pdata
->gpio_card_ro
;
768 gpio_power
= host
->pdata
->gpio_power
;
770 if (gpio_is_valid(gpio_cd
)) {
771 free_irq(gpio_to_irq(gpio_cd
), mmc
);
774 if (gpio_is_valid(gpio_ro
))
776 if (gpio_is_valid(gpio_power
))
777 gpio_free(gpio_power
);
779 regulator_put(host
->vcc
);
781 if (host
->pdata
&& host
->pdata
->exit
)
782 host
->pdata
->exit(&pdev
->dev
, mmc
);
784 mmc_remove_host(mmc
);
786 pxamci_stop_clock(host
);
787 writel(TXFIFO_WR_REQ
|RXFIFO_RD_REQ
|CLK_IS_OFF
|STOP_CMD
|
788 END_CMD_RES
|PRG_DONE
|DATA_TRAN_DONE
,
789 host
->base
+ MMC_I_MASK
);
791 DRCMR(host
->dma_drcmrrx
) = 0;
792 DRCMR(host
->dma_drcmrtx
) = 0;
794 free_irq(host
->irq
, host
);
795 pxa_free_dma(host
->dma
);
797 dma_free_coherent(&pdev
->dev
, PAGE_SIZE
, host
->sg_cpu
, host
->sg_dma
);
801 release_resource(host
->res
);
809 static int pxamci_suspend(struct device
*dev
)
811 struct mmc_host
*mmc
= dev_get_drvdata(dev
);
815 ret
= mmc_suspend_host(mmc
, PMSG_SUSPEND
);
820 static int pxamci_resume(struct device
*dev
)
822 struct mmc_host
*mmc
= dev_get_drvdata(dev
);
826 ret
= mmc_resume_host(mmc
);
831 static struct dev_pm_ops pxamci_pm_ops
= {
832 .suspend
= pxamci_suspend
,
833 .resume
= pxamci_resume
,
837 static struct platform_driver pxamci_driver
= {
838 .probe
= pxamci_probe
,
839 .remove
= pxamci_remove
,
842 .owner
= THIS_MODULE
,
844 .pm
= &pxamci_pm_ops
,
849 static int __init
pxamci_init(void)
851 return platform_driver_register(&pxamci_driver
);
854 static void __exit
pxamci_exit(void)
856 platform_driver_unregister(&pxamci_driver
);
859 module_init(pxamci_init
);
860 module_exit(pxamci_exit
);
862 MODULE_DESCRIPTION("PXA Multimedia Card Interface Driver");
863 MODULE_LICENSE("GPL");
864 MODULE_ALIAS("platform:pxa2xx-mci");