1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/mmc/host/au1xmmc.c - AU1XX0 MMC driver
5 * Copyright (c) 2005, Advanced Micro Devices, Inc.
7 * Developed with help from the 2.4.30 MMC AU1XXX controller including
8 * the following copyright notices:
9 * Copyright (c) 2003-2004 Embedded Edge, LLC.
10 * Portions Copyright (C) 2002 Embedix, Inc
11 * Copyright 2002 Hewlett-Packard Company
13 * 2.6 version of this driver inspired by:
14 * (drivers/mmc/wbsd.c) Copyright (C) 2004-2005 Pierre Ossman,
15 * All Rights Reserved.
16 * (drivers/mmc/pxa.c) Copyright (C) 2003 Russell King,
17 * All Rights Reserved.
22 /* Why don't we use the SD controllers' carddetect feature?
24 * From the AU1100 MMC application guide:
25 * If the Au1100-based design is intended to support both MultiMediaCards
26 * and 1- or 4-data bit SecureDigital cards, then the solution is to
27 * connect a weak (560KOhm) pull-up resistor to connector pin 1.
28 * In doing so, a MMC card never enters SPI-mode communications,
29 * but now the SecureDigital card-detect feature of CD/DAT3 is ineffective
30 * (the low to high transition will not occur).
33 #include <linux/clk.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/platform_device.h>
38 #include <linux/interrupt.h>
39 #include <linux/dma-mapping.h>
40 #include <linux/scatterlist.h>
41 #include <linux/highmem.h>
42 #include <linux/leds.h>
43 #include <linux/mmc/host.h>
44 #include <linux/slab.h>
47 #include <asm/mach-au1x00/au1000.h>
48 #include <asm/mach-au1x00/au1xxx_dbdma.h>
49 #include <asm/mach-au1x00/au1100_mmc.h>
51 #define DRIVER_NAME "au1xxx-mmc"
53 /* Set this to enable special debugging macros */
57 #define DBG(fmt, idx, args...) \
58 pr_debug("au1xmmc(%d): DEBUG: " fmt, idx, ##args)
60 #define DBG(fmt, idx, args...) do {} while (0)
63 /* Hardware definitions */
64 #define AU1XMMC_DESCRIPTOR_COUNT 1
66 /* max DMA seg size: 64KB on Au1100, 4MB on Au1200 */
67 #define AU1100_MMC_DESCRIPTOR_SIZE 0x0000ffff
68 #define AU1200_MMC_DESCRIPTOR_SIZE 0x003fffff
70 #define AU1XMMC_OCR (MMC_VDD_27_28 | MMC_VDD_28_29 | MMC_VDD_29_30 | \
71 MMC_VDD_30_31 | MMC_VDD_31_32 | MMC_VDD_32_33 | \
72 MMC_VDD_33_34 | MMC_VDD_34_35 | MMC_VDD_35_36)
74 /* This gives us a hard value for the stop command that we can write directly
75 * to the command register.
78 (SD_CMD_RT_1B | SD_CMD_CT_7 | (0xC << SD_CMD_CI_SHIFT) | SD_CMD_GO)
80 /* This is the set of interrupts that we configure by default. */
81 #define AU1XMMC_INTERRUPTS \
82 (SD_CONFIG_SC | SD_CONFIG_DT | SD_CONFIG_RAT | \
83 SD_CONFIG_CR | SD_CONFIG_I)
85 /* The poll event (looking for insert/remove events runs twice a second. */
86 #define AU1XMMC_DETECT_TIMEOUT (HZ/2)
90 struct mmc_request
*mrq
;
116 struct tasklet_struct finish_task
;
117 struct tasklet_struct data_task
;
118 struct au1xmmc_platform_data
*platdata
;
119 struct platform_device
*pdev
;
120 struct resource
*ioarea
;
124 /* Status flags used by the host structure */
125 #define HOST_F_XMIT 0x0001
126 #define HOST_F_RECV 0x0002
127 #define HOST_F_DMA 0x0010
128 #define HOST_F_DBDMA 0x0020
129 #define HOST_F_ACTIVE 0x0100
130 #define HOST_F_STOP 0x1000
132 #define HOST_S_IDLE 0x0001
133 #define HOST_S_CMD 0x0002
134 #define HOST_S_DATA 0x0003
135 #define HOST_S_STOP 0x0004
137 /* Easy access macros */
138 #define HOST_STATUS(h) ((h)->iobase + SD_STATUS)
139 #define HOST_CONFIG(h) ((h)->iobase + SD_CONFIG)
140 #define HOST_ENABLE(h) ((h)->iobase + SD_ENABLE)
141 #define HOST_TXPORT(h) ((h)->iobase + SD_TXPORT)
142 #define HOST_RXPORT(h) ((h)->iobase + SD_RXPORT)
143 #define HOST_CMDARG(h) ((h)->iobase + SD_CMDARG)
144 #define HOST_BLKSIZE(h) ((h)->iobase + SD_BLKSIZE)
145 #define HOST_CMD(h) ((h)->iobase + SD_CMD)
146 #define HOST_CONFIG2(h) ((h)->iobase + SD_CONFIG2)
147 #define HOST_TIMEOUT(h) ((h)->iobase + SD_TIMEOUT)
148 #define HOST_DEBUG(h) ((h)->iobase + SD_DEBUG)
150 #define DMA_CHANNEL(h) \
151 (((h)->flags & HOST_F_XMIT) ? (h)->tx_chan : (h)->rx_chan)
153 static inline int has_dbdma(void)
155 switch (alchemy_get_cputype()) {
156 case ALCHEMY_CPU_AU1200
:
157 case ALCHEMY_CPU_AU1300
:
164 static inline void IRQ_ON(struct au1xmmc_host
*host
, u32 mask
)
166 u32 val
= __raw_readl(HOST_CONFIG(host
));
168 __raw_writel(val
, HOST_CONFIG(host
));
169 wmb(); /* drain writebuffer */
172 static inline void FLUSH_FIFO(struct au1xmmc_host
*host
)
174 u32 val
= __raw_readl(HOST_CONFIG2(host
));
176 __raw_writel(val
| SD_CONFIG2_FF
, HOST_CONFIG2(host
));
177 wmb(); /* drain writebuffer */
180 /* SEND_STOP will turn off clock control - this re-enables it */
181 val
&= ~SD_CONFIG2_DF
;
183 __raw_writel(val
, HOST_CONFIG2(host
));
184 wmb(); /* drain writebuffer */
187 static inline void IRQ_OFF(struct au1xmmc_host
*host
, u32 mask
)
189 u32 val
= __raw_readl(HOST_CONFIG(host
));
191 __raw_writel(val
, HOST_CONFIG(host
));
192 wmb(); /* drain writebuffer */
195 static inline void SEND_STOP(struct au1xmmc_host
*host
)
199 WARN_ON(host
->status
!= HOST_S_DATA
);
200 host
->status
= HOST_S_STOP
;
202 config2
= __raw_readl(HOST_CONFIG2(host
));
203 __raw_writel(config2
| SD_CONFIG2_DF
, HOST_CONFIG2(host
));
204 wmb(); /* drain writebuffer */
206 /* Send the stop command */
207 __raw_writel(STOP_CMD
, HOST_CMD(host
));
208 wmb(); /* drain writebuffer */
211 static void au1xmmc_set_power(struct au1xmmc_host
*host
, int state
)
213 if (host
->platdata
&& host
->platdata
->set_power
)
214 host
->platdata
->set_power(host
->mmc
, state
);
217 static int au1xmmc_card_inserted(struct mmc_host
*mmc
)
219 struct au1xmmc_host
*host
= mmc_priv(mmc
);
221 if (host
->platdata
&& host
->platdata
->card_inserted
)
222 return !!host
->platdata
->card_inserted(host
->mmc
);
227 static int au1xmmc_card_readonly(struct mmc_host
*mmc
)
229 struct au1xmmc_host
*host
= mmc_priv(mmc
);
231 if (host
->platdata
&& host
->platdata
->card_readonly
)
232 return !!host
->platdata
->card_readonly(mmc
);
237 static void au1xmmc_finish_request(struct au1xmmc_host
*host
)
239 struct mmc_request
*mrq
= host
->mrq
;
242 host
->flags
&= HOST_F_ACTIVE
| HOST_F_DMA
;
248 host
->pio
.offset
= 0;
251 host
->status
= HOST_S_IDLE
;
253 mmc_request_done(host
->mmc
, mrq
);
256 static void au1xmmc_tasklet_finish(unsigned long param
)
258 struct au1xmmc_host
*host
= (struct au1xmmc_host
*) param
;
259 au1xmmc_finish_request(host
);
262 static int au1xmmc_send_command(struct au1xmmc_host
*host
, int wait
,
263 struct mmc_command
*cmd
, struct mmc_data
*data
)
265 u32 mmccmd
= (cmd
->opcode
<< SD_CMD_CI_SHIFT
);
267 switch (mmc_resp_type(cmd
)) {
271 mmccmd
|= SD_CMD_RT_1
;
274 mmccmd
|= SD_CMD_RT_1B
;
277 mmccmd
|= SD_CMD_RT_2
;
280 mmccmd
|= SD_CMD_RT_3
;
283 pr_info("au1xmmc: unhandled response type %02x\n",
289 if (data
->flags
& MMC_DATA_READ
) {
290 if (data
->blocks
> 1)
291 mmccmd
|= SD_CMD_CT_4
;
293 mmccmd
|= SD_CMD_CT_2
;
294 } else if (data
->flags
& MMC_DATA_WRITE
) {
295 if (data
->blocks
> 1)
296 mmccmd
|= SD_CMD_CT_3
;
298 mmccmd
|= SD_CMD_CT_1
;
302 __raw_writel(cmd
->arg
, HOST_CMDARG(host
));
303 wmb(); /* drain writebuffer */
306 IRQ_OFF(host
, SD_CONFIG_CR
);
308 __raw_writel((mmccmd
| SD_CMD_GO
), HOST_CMD(host
));
309 wmb(); /* drain writebuffer */
311 /* Wait for the command to go on the line */
312 while (__raw_readl(HOST_CMD(host
)) & SD_CMD_GO
)
315 /* Wait for the command to come back */
317 u32 status
= __raw_readl(HOST_STATUS(host
));
319 while (!(status
& SD_STATUS_CR
))
320 status
= __raw_readl(HOST_STATUS(host
));
322 /* Clear the CR status */
323 __raw_writel(SD_STATUS_CR
, HOST_STATUS(host
));
325 IRQ_ON(host
, SD_CONFIG_CR
);
331 static void au1xmmc_data_complete(struct au1xmmc_host
*host
, u32 status
)
333 struct mmc_request
*mrq
= host
->mrq
;
334 struct mmc_data
*data
;
337 WARN_ON((host
->status
!= HOST_S_DATA
) && (host
->status
!= HOST_S_STOP
));
339 if (host
->mrq
== NULL
)
342 data
= mrq
->cmd
->data
;
345 status
= __raw_readl(HOST_STATUS(host
));
347 /* The transaction is really over when the SD_STATUS_DB bit is clear */
348 while ((host
->flags
& HOST_F_XMIT
) && (status
& SD_STATUS_DB
))
349 status
= __raw_readl(HOST_STATUS(host
));
352 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
, data
->sg_len
, host
->dma
.dir
);
354 /* Process any errors */
355 crc
= (status
& (SD_STATUS_WC
| SD_STATUS_RC
));
356 if (host
->flags
& HOST_F_XMIT
)
357 crc
|= ((status
& 0x07) == 0x02) ? 0 : 1;
360 data
->error
= -EILSEQ
;
362 /* Clear the CRC bits */
363 __raw_writel(SD_STATUS_WC
| SD_STATUS_RC
, HOST_STATUS(host
));
365 data
->bytes_xfered
= 0;
368 if (host
->flags
& (HOST_F_DMA
| HOST_F_DBDMA
)) {
369 u32 chan
= DMA_CHANNEL(host
);
371 chan_tab_t
*c
= *((chan_tab_t
**)chan
);
372 au1x_dma_chan_t
*cp
= c
->chan_ptr
;
373 data
->bytes_xfered
= cp
->ddma_bytecnt
;
376 (data
->blocks
* data
->blksz
) - host
->pio
.len
;
379 au1xmmc_finish_request(host
);
382 static void au1xmmc_tasklet_data(unsigned long param
)
384 struct au1xmmc_host
*host
= (struct au1xmmc_host
*)param
;
386 u32 status
= __raw_readl(HOST_STATUS(host
));
387 au1xmmc_data_complete(host
, status
);
390 #define AU1XMMC_MAX_TRANSFER 8
392 static void au1xmmc_send_pio(struct au1xmmc_host
*host
)
394 struct mmc_data
*data
;
395 int sg_len
, max
, count
;
396 unsigned char *sg_ptr
, val
;
398 struct scatterlist
*sg
;
400 data
= host
->mrq
->data
;
402 if (!(host
->flags
& HOST_F_XMIT
))
405 /* This is the pointer to the data buffer */
406 sg
= &data
->sg
[host
->pio
.index
];
407 sg_ptr
= kmap_atomic(sg_page(sg
)) + sg
->offset
+ host
->pio
.offset
;
409 /* This is the space left inside the buffer */
410 sg_len
= data
->sg
[host
->pio
.index
].length
- host
->pio
.offset
;
412 /* Check if we need less than the size of the sg_buffer */
413 max
= (sg_len
> host
->pio
.len
) ? host
->pio
.len
: sg_len
;
414 if (max
> AU1XMMC_MAX_TRANSFER
)
415 max
= AU1XMMC_MAX_TRANSFER
;
417 for (count
= 0; count
< max
; count
++) {
418 status
= __raw_readl(HOST_STATUS(host
));
420 if (!(status
& SD_STATUS_TH
))
425 __raw_writel((unsigned long)val
, HOST_TXPORT(host
));
426 wmb(); /* drain writebuffer */
428 kunmap_atomic(sg_ptr
);
430 host
->pio
.len
-= count
;
431 host
->pio
.offset
+= count
;
433 if (count
== sg_len
) {
435 host
->pio
.offset
= 0;
438 if (host
->pio
.len
== 0) {
439 IRQ_OFF(host
, SD_CONFIG_TH
);
441 if (host
->flags
& HOST_F_STOP
)
444 tasklet_schedule(&host
->data_task
);
448 static void au1xmmc_receive_pio(struct au1xmmc_host
*host
)
450 struct mmc_data
*data
;
451 int max
, count
, sg_len
= 0;
452 unsigned char *sg_ptr
= NULL
;
454 struct scatterlist
*sg
;
456 data
= host
->mrq
->data
;
458 if (!(host
->flags
& HOST_F_RECV
))
463 if (host
->pio
.index
< host
->dma
.len
) {
464 sg
= &data
->sg
[host
->pio
.index
];
465 sg_ptr
= kmap_atomic(sg_page(sg
)) + sg
->offset
+ host
->pio
.offset
;
467 /* This is the space left inside the buffer */
468 sg_len
= sg_dma_len(&data
->sg
[host
->pio
.index
]) - host
->pio
.offset
;
470 /* Check if we need less than the size of the sg_buffer */
475 if (max
> AU1XMMC_MAX_TRANSFER
)
476 max
= AU1XMMC_MAX_TRANSFER
;
478 for (count
= 0; count
< max
; count
++) {
479 status
= __raw_readl(HOST_STATUS(host
));
481 if (!(status
& SD_STATUS_NE
))
484 if (status
& SD_STATUS_RC
) {
485 DBG("RX CRC Error [%d + %d].\n", host
->pdev
->id
,
486 host
->pio
.len
, count
);
490 if (status
& SD_STATUS_RO
) {
491 DBG("RX Overrun [%d + %d]\n", host
->pdev
->id
,
492 host
->pio
.len
, count
);
495 else if (status
& SD_STATUS_RU
) {
496 DBG("RX Underrun [%d + %d]\n", host
->pdev
->id
,
497 host
->pio
.len
, count
);
501 val
= __raw_readl(HOST_RXPORT(host
));
504 sg_ptr
[count
] = (unsigned char)(val
& 0xFF);
507 kunmap_atomic(sg_ptr
);
509 host
->pio
.len
-= count
;
510 host
->pio
.offset
+= count
;
512 if (sg_len
&& count
== sg_len
) {
514 host
->pio
.offset
= 0;
517 if (host
->pio
.len
== 0) {
518 /* IRQ_OFF(host, SD_CONFIG_RA | SD_CONFIG_RF); */
519 IRQ_OFF(host
, SD_CONFIG_NE
);
521 if (host
->flags
& HOST_F_STOP
)
524 tasklet_schedule(&host
->data_task
);
528 /* This is called when a command has been completed - grab the response
529 * and check for errors. Then start the data transfer if it is indicated.
531 static void au1xmmc_cmd_complete(struct au1xmmc_host
*host
, u32 status
)
533 struct mmc_request
*mrq
= host
->mrq
;
534 struct mmc_command
*cmd
;
544 if (cmd
->flags
& MMC_RSP_PRESENT
) {
545 if (cmd
->flags
& MMC_RSP_136
) {
546 r
[0] = __raw_readl(host
->iobase
+ SD_RESP3
);
547 r
[1] = __raw_readl(host
->iobase
+ SD_RESP2
);
548 r
[2] = __raw_readl(host
->iobase
+ SD_RESP1
);
549 r
[3] = __raw_readl(host
->iobase
+ SD_RESP0
);
551 /* The CRC is omitted from the response, so really
552 * we only got 120 bytes, but the engine expects
553 * 128 bits, so we have to shift things up.
555 for (i
= 0; i
< 4; i
++) {
556 cmd
->resp
[i
] = (r
[i
] & 0x00FFFFFF) << 8;
558 cmd
->resp
[i
] |= (r
[i
+ 1] & 0xFF000000) >> 24;
561 /* Techincally, we should be getting all 48 bits of
562 * the response (SD_RESP1 + SD_RESP2), but because
563 * our response omits the CRC, our data ends up
564 * being shifted 8 bits to the right. In this case,
565 * that means that the OSR data starts at bit 31,
566 * so we can just read RESP0 and return that.
568 cmd
->resp
[0] = __raw_readl(host
->iobase
+ SD_RESP0
);
572 /* Figure out errors */
573 if (status
& (SD_STATUS_SC
| SD_STATUS_WC
| SD_STATUS_RC
))
574 cmd
->error
= -EILSEQ
;
576 trans
= host
->flags
& (HOST_F_XMIT
| HOST_F_RECV
);
578 if (!trans
|| cmd
->error
) {
579 IRQ_OFF(host
, SD_CONFIG_TH
| SD_CONFIG_RA
| SD_CONFIG_RF
);
580 tasklet_schedule(&host
->finish_task
);
584 host
->status
= HOST_S_DATA
;
586 if ((host
->flags
& (HOST_F_DMA
| HOST_F_DBDMA
))) {
587 u32 channel
= DMA_CHANNEL(host
);
589 /* Start the DBDMA as soon as the buffer gets something in it */
591 if (host
->flags
& HOST_F_RECV
) {
592 u32 mask
= SD_STATUS_DB
| SD_STATUS_NE
;
594 while((status
& mask
) != mask
)
595 status
= __raw_readl(HOST_STATUS(host
));
598 au1xxx_dbdma_start(channel
);
602 static void au1xmmc_set_clock(struct au1xmmc_host
*host
, int rate
)
604 unsigned int pbus
= clk_get_rate(host
->clk
);
605 unsigned int divisor
= ((pbus
/ rate
) / 2) - 1;
608 config
= __raw_readl(HOST_CONFIG(host
));
610 config
&= ~(SD_CONFIG_DIV
);
611 config
|= (divisor
& SD_CONFIG_DIV
) | SD_CONFIG_DE
;
613 __raw_writel(config
, HOST_CONFIG(host
));
614 wmb(); /* drain writebuffer */
617 static int au1xmmc_prepare_data(struct au1xmmc_host
*host
,
618 struct mmc_data
*data
)
620 int datalen
= data
->blocks
* data
->blksz
;
622 if (data
->flags
& MMC_DATA_READ
)
623 host
->flags
|= HOST_F_RECV
;
625 host
->flags
|= HOST_F_XMIT
;
628 host
->flags
|= HOST_F_STOP
;
630 host
->dma
.dir
= DMA_BIDIRECTIONAL
;
632 host
->dma
.len
= dma_map_sg(mmc_dev(host
->mmc
), data
->sg
,
633 data
->sg_len
, host
->dma
.dir
);
635 if (host
->dma
.len
== 0)
638 __raw_writel(data
->blksz
- 1, HOST_BLKSIZE(host
));
640 if (host
->flags
& (HOST_F_DMA
| HOST_F_DBDMA
)) {
642 u32 channel
= DMA_CHANNEL(host
);
644 au1xxx_dbdma_stop(channel
);
646 for (i
= 0; i
< host
->dma
.len
; i
++) {
647 u32 ret
= 0, flags
= DDMA_FLAGS_NOIE
;
648 struct scatterlist
*sg
= &data
->sg
[i
];
649 int sg_len
= sg
->length
;
651 int len
= (datalen
> sg_len
) ? sg_len
: datalen
;
653 if (i
== host
->dma
.len
- 1)
654 flags
= DDMA_FLAGS_IE
;
656 if (host
->flags
& HOST_F_XMIT
) {
657 ret
= au1xxx_dbdma_put_source(channel
,
658 sg_phys(sg
), len
, flags
);
660 ret
= au1xxx_dbdma_put_dest(channel
,
661 sg_phys(sg
), len
, flags
);
671 host
->pio
.offset
= 0;
672 host
->pio
.len
= datalen
;
674 if (host
->flags
& HOST_F_XMIT
)
675 IRQ_ON(host
, SD_CONFIG_TH
);
677 IRQ_ON(host
, SD_CONFIG_NE
);
678 /* IRQ_ON(host, SD_CONFIG_RA | SD_CONFIG_RF); */
684 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
, data
->sg_len
,
689 /* This actually starts a command or data transaction */
690 static void au1xmmc_request(struct mmc_host
* mmc
, struct mmc_request
* mrq
)
692 struct au1xmmc_host
*host
= mmc_priv(mmc
);
695 WARN_ON(irqs_disabled());
696 WARN_ON(host
->status
!= HOST_S_IDLE
);
699 host
->status
= HOST_S_CMD
;
701 /* fail request immediately if no card is present */
702 if (0 == au1xmmc_card_inserted(mmc
)) {
703 mrq
->cmd
->error
= -ENOMEDIUM
;
704 au1xmmc_finish_request(host
);
710 ret
= au1xmmc_prepare_data(host
, mrq
->data
);
714 ret
= au1xmmc_send_command(host
, 0, mrq
->cmd
, mrq
->data
);
717 mrq
->cmd
->error
= ret
;
718 au1xmmc_finish_request(host
);
722 static void au1xmmc_reset_controller(struct au1xmmc_host
*host
)
724 /* Apply the clock */
725 __raw_writel(SD_ENABLE_CE
, HOST_ENABLE(host
));
726 wmb(); /* drain writebuffer */
729 __raw_writel(SD_ENABLE_R
| SD_ENABLE_CE
, HOST_ENABLE(host
));
730 wmb(); /* drain writebuffer */
733 __raw_writel(~0, HOST_STATUS(host
));
734 wmb(); /* drain writebuffer */
736 __raw_writel(0, HOST_BLKSIZE(host
));
737 __raw_writel(0x001fffff, HOST_TIMEOUT(host
));
738 wmb(); /* drain writebuffer */
740 __raw_writel(SD_CONFIG2_EN
, HOST_CONFIG2(host
));
741 wmb(); /* drain writebuffer */
743 __raw_writel(SD_CONFIG2_EN
| SD_CONFIG2_FF
, HOST_CONFIG2(host
));
744 wmb(); /* drain writebuffer */
747 __raw_writel(SD_CONFIG2_EN
, HOST_CONFIG2(host
));
748 wmb(); /* drain writebuffer */
750 /* Configure interrupts */
751 __raw_writel(AU1XMMC_INTERRUPTS
, HOST_CONFIG(host
));
752 wmb(); /* drain writebuffer */
756 static void au1xmmc_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
758 struct au1xmmc_host
*host
= mmc_priv(mmc
);
761 if (ios
->power_mode
== MMC_POWER_OFF
)
762 au1xmmc_set_power(host
, 0);
763 else if (ios
->power_mode
== MMC_POWER_ON
) {
764 au1xmmc_set_power(host
, 1);
767 if (ios
->clock
&& ios
->clock
!= host
->clock
) {
768 au1xmmc_set_clock(host
, ios
->clock
);
769 host
->clock
= ios
->clock
;
772 config2
= __raw_readl(HOST_CONFIG2(host
));
773 switch (ios
->bus_width
) {
774 case MMC_BUS_WIDTH_8
:
775 config2
|= SD_CONFIG2_BB
;
777 case MMC_BUS_WIDTH_4
:
778 config2
&= ~SD_CONFIG2_BB
;
779 config2
|= SD_CONFIG2_WB
;
781 case MMC_BUS_WIDTH_1
:
782 config2
&= ~(SD_CONFIG2_WB
| SD_CONFIG2_BB
);
785 __raw_writel(config2
, HOST_CONFIG2(host
));
786 wmb(); /* drain writebuffer */
789 #define STATUS_TIMEOUT (SD_STATUS_RAT | SD_STATUS_DT)
790 #define STATUS_DATA_IN (SD_STATUS_NE)
791 #define STATUS_DATA_OUT (SD_STATUS_TH)
793 static irqreturn_t
au1xmmc_irq(int irq
, void *dev_id
)
795 struct au1xmmc_host
*host
= dev_id
;
798 status
= __raw_readl(HOST_STATUS(host
));
800 if (!(status
& SD_STATUS_I
))
801 return IRQ_NONE
; /* not ours */
803 if (status
& SD_STATUS_SI
) /* SDIO */
804 mmc_signal_sdio_irq(host
->mmc
);
806 if (host
->mrq
&& (status
& STATUS_TIMEOUT
)) {
807 if (status
& SD_STATUS_RAT
)
808 host
->mrq
->cmd
->error
= -ETIMEDOUT
;
809 else if (status
& SD_STATUS_DT
)
810 host
->mrq
->data
->error
= -ETIMEDOUT
;
812 /* In PIO mode, interrupts might still be enabled */
813 IRQ_OFF(host
, SD_CONFIG_NE
| SD_CONFIG_TH
);
815 /* IRQ_OFF(host, SD_CONFIG_TH | SD_CONFIG_RA | SD_CONFIG_RF); */
816 tasklet_schedule(&host
->finish_task
);
819 else if (status
& SD_STATUS_DD
) {
820 /* Sometimes we get a DD before a NE in PIO mode */
821 if (!(host
->flags
& HOST_F_DMA
) && (status
& SD_STATUS_NE
))
822 au1xmmc_receive_pio(host
);
824 au1xmmc_data_complete(host
, status
);
825 /* tasklet_schedule(&host->data_task); */
829 else if (status
& SD_STATUS_CR
) {
830 if (host
->status
== HOST_S_CMD
)
831 au1xmmc_cmd_complete(host
, status
);
833 } else if (!(host
->flags
& HOST_F_DMA
)) {
834 if ((host
->flags
& HOST_F_XMIT
) && (status
& STATUS_DATA_OUT
))
835 au1xmmc_send_pio(host
);
836 else if ((host
->flags
& HOST_F_RECV
) && (status
& STATUS_DATA_IN
))
837 au1xmmc_receive_pio(host
);
839 } else if (status
& 0x203F3C70) {
840 DBG("Unhandled status %8.8x\n", host
->pdev
->id
,
844 __raw_writel(status
, HOST_STATUS(host
));
845 wmb(); /* drain writebuffer */
850 /* 8bit memory DMA device */
851 static dbdev_tab_t au1xmmc_mem_dbdev
= {
852 .dev_id
= DSCR_CMD0_ALWAYS
,
853 .dev_flags
= DEV_FLAGS_ANYUSE
,
856 .dev_physaddr
= 0x00000000,
858 .dev_intpolarity
= 0,
862 static void au1xmmc_dbdma_callback(int irq
, void *dev_id
)
864 struct au1xmmc_host
*host
= (struct au1xmmc_host
*)dev_id
;
866 /* Avoid spurious interrupts */
870 if (host
->flags
& HOST_F_STOP
)
873 tasklet_schedule(&host
->data_task
);
876 static int au1xmmc_dbdma_init(struct au1xmmc_host
*host
)
878 struct resource
*res
;
881 res
= platform_get_resource(host
->pdev
, IORESOURCE_DMA
, 0);
886 res
= platform_get_resource(host
->pdev
, IORESOURCE_DMA
, 1);
894 host
->tx_chan
= au1xxx_dbdma_chan_alloc(memid
, txid
,
895 au1xmmc_dbdma_callback
, (void *)host
);
896 if (!host
->tx_chan
) {
897 dev_err(&host
->pdev
->dev
, "cannot allocate TX DMA\n");
901 host
->rx_chan
= au1xxx_dbdma_chan_alloc(rxid
, memid
,
902 au1xmmc_dbdma_callback
, (void *)host
);
903 if (!host
->rx_chan
) {
904 dev_err(&host
->pdev
->dev
, "cannot allocate RX DMA\n");
905 au1xxx_dbdma_chan_free(host
->tx_chan
);
909 au1xxx_dbdma_set_devwidth(host
->tx_chan
, 8);
910 au1xxx_dbdma_set_devwidth(host
->rx_chan
, 8);
912 au1xxx_dbdma_ring_alloc(host
->tx_chan
, AU1XMMC_DESCRIPTOR_COUNT
);
913 au1xxx_dbdma_ring_alloc(host
->rx_chan
, AU1XMMC_DESCRIPTOR_COUNT
);
915 /* DBDMA is good to go */
916 host
->flags
|= HOST_F_DMA
| HOST_F_DBDMA
;
921 static void au1xmmc_dbdma_shutdown(struct au1xmmc_host
*host
)
923 if (host
->flags
& HOST_F_DMA
) {
924 host
->flags
&= ~HOST_F_DMA
;
925 au1xxx_dbdma_chan_free(host
->tx_chan
);
926 au1xxx_dbdma_chan_free(host
->rx_chan
);
930 static void au1xmmc_enable_sdio_irq(struct mmc_host
*mmc
, int en
)
932 struct au1xmmc_host
*host
= mmc_priv(mmc
);
935 IRQ_ON(host
, SD_CONFIG_SI
);
937 IRQ_OFF(host
, SD_CONFIG_SI
);
940 static const struct mmc_host_ops au1xmmc_ops
= {
941 .request
= au1xmmc_request
,
942 .set_ios
= au1xmmc_set_ios
,
943 .get_ro
= au1xmmc_card_readonly
,
944 .get_cd
= au1xmmc_card_inserted
,
945 .enable_sdio_irq
= au1xmmc_enable_sdio_irq
,
948 static int au1xmmc_probe(struct platform_device
*pdev
)
950 struct mmc_host
*mmc
;
951 struct au1xmmc_host
*host
;
955 mmc
= mmc_alloc_host(sizeof(struct au1xmmc_host
), &pdev
->dev
);
957 dev_err(&pdev
->dev
, "no memory for mmc_host\n");
962 host
= mmc_priv(mmc
);
964 host
->platdata
= pdev
->dev
.platform_data
;
968 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
970 dev_err(&pdev
->dev
, "no mmio defined\n");
974 host
->ioarea
= request_mem_region(r
->start
, resource_size(r
),
977 dev_err(&pdev
->dev
, "mmio already in use\n");
981 host
->iobase
= ioremap(r
->start
, 0x3c);
983 dev_err(&pdev
->dev
, "cannot remap mmio\n");
987 host
->irq
= platform_get_irq(pdev
, 0);
991 mmc
->ops
= &au1xmmc_ops
;
994 mmc
->f_max
= 24000000;
996 mmc
->max_blk_size
= 2048;
997 mmc
->max_blk_count
= 512;
999 mmc
->ocr_avail
= AU1XMMC_OCR
;
1000 mmc
->caps
= MMC_CAP_4_BIT_DATA
| MMC_CAP_SDIO_IRQ
;
1001 mmc
->max_segs
= AU1XMMC_DESCRIPTOR_COUNT
;
1003 iflag
= IRQF_SHARED
; /* Au1100/Au1200: one int for both ctrls */
1005 switch (alchemy_get_cputype()) {
1006 case ALCHEMY_CPU_AU1100
:
1007 mmc
->max_seg_size
= AU1100_MMC_DESCRIPTOR_SIZE
;
1009 case ALCHEMY_CPU_AU1200
:
1010 mmc
->max_seg_size
= AU1200_MMC_DESCRIPTOR_SIZE
;
1012 case ALCHEMY_CPU_AU1300
:
1013 iflag
= 0; /* nothing is shared */
1014 mmc
->max_seg_size
= AU1200_MMC_DESCRIPTOR_SIZE
;
1015 mmc
->f_max
= 52000000;
1016 if (host
->ioarea
->start
== AU1100_SD0_PHYS_ADDR
)
1017 mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
1021 ret
= request_irq(host
->irq
, au1xmmc_irq
, iflag
, DRIVER_NAME
, host
);
1023 dev_err(&pdev
->dev
, "cannot grab IRQ\n");
1027 host
->clk
= clk_get(&pdev
->dev
, ALCHEMY_PERIPH_CLK
);
1028 if (IS_ERR(host
->clk
)) {
1029 dev_err(&pdev
->dev
, "cannot find clock\n");
1030 ret
= PTR_ERR(host
->clk
);
1034 ret
= clk_prepare_enable(host
->clk
);
1036 dev_err(&pdev
->dev
, "cannot enable clock\n");
1040 host
->status
= HOST_S_IDLE
;
1042 /* board-specific carddetect setup, if any */
1043 if (host
->platdata
&& host
->platdata
->cd_setup
) {
1044 ret
= host
->platdata
->cd_setup(mmc
, 1);
1046 dev_warn(&pdev
->dev
, "board CD setup failed\n");
1047 mmc
->caps
|= MMC_CAP_NEEDS_POLL
;
1050 mmc
->caps
|= MMC_CAP_NEEDS_POLL
;
1052 /* platform may not be able to use all advertised caps */
1054 mmc
->caps
&= ~(host
->platdata
->mask_host_caps
);
1056 tasklet_init(&host
->data_task
, au1xmmc_tasklet_data
,
1057 (unsigned long)host
);
1059 tasklet_init(&host
->finish_task
, au1xmmc_tasklet_finish
,
1060 (unsigned long)host
);
1063 ret
= au1xmmc_dbdma_init(host
);
1065 pr_info(DRIVER_NAME
": DBDMA init failed; using PIO\n");
1068 #ifdef CONFIG_LEDS_CLASS
1069 if (host
->platdata
&& host
->platdata
->led
) {
1070 struct led_classdev
*led
= host
->platdata
->led
;
1071 led
->name
= mmc_hostname(mmc
);
1072 led
->brightness
= LED_OFF
;
1073 led
->default_trigger
= mmc_hostname(mmc
);
1074 ret
= led_classdev_register(mmc_dev(mmc
), led
);
1080 au1xmmc_reset_controller(host
);
1082 ret
= mmc_add_host(mmc
);
1084 dev_err(&pdev
->dev
, "cannot add mmc host\n");
1088 platform_set_drvdata(pdev
, host
);
1090 pr_info(DRIVER_NAME
": MMC Controller %d set up at %p"
1091 " (mode=%s)\n", pdev
->id
, host
->iobase
,
1092 host
->flags
& HOST_F_DMA
? "dma" : "pio");
1094 return 0; /* all ok */
1097 #ifdef CONFIG_LEDS_CLASS
1098 if (host
->platdata
&& host
->platdata
->led
)
1099 led_classdev_unregister(host
->platdata
->led
);
1102 __raw_writel(0, HOST_ENABLE(host
));
1103 __raw_writel(0, HOST_CONFIG(host
));
1104 __raw_writel(0, HOST_CONFIG2(host
));
1105 wmb(); /* drain writebuffer */
1107 if (host
->flags
& HOST_F_DBDMA
)
1108 au1xmmc_dbdma_shutdown(host
);
1110 tasklet_kill(&host
->data_task
);
1111 tasklet_kill(&host
->finish_task
);
1113 if (host
->platdata
&& host
->platdata
->cd_setup
&&
1114 !(mmc
->caps
& MMC_CAP_NEEDS_POLL
))
1115 host
->platdata
->cd_setup(mmc
, 0);
1117 clk_disable_unprepare(host
->clk
);
1120 free_irq(host
->irq
, host
);
1122 iounmap((void *)host
->iobase
);
1124 release_resource(host
->ioarea
);
1125 kfree(host
->ioarea
);
1132 static int au1xmmc_remove(struct platform_device
*pdev
)
1134 struct au1xmmc_host
*host
= platform_get_drvdata(pdev
);
1137 mmc_remove_host(host
->mmc
);
1139 #ifdef CONFIG_LEDS_CLASS
1140 if (host
->platdata
&& host
->platdata
->led
)
1141 led_classdev_unregister(host
->platdata
->led
);
1144 if (host
->platdata
&& host
->platdata
->cd_setup
&&
1145 !(host
->mmc
->caps
& MMC_CAP_NEEDS_POLL
))
1146 host
->platdata
->cd_setup(host
->mmc
, 0);
1148 __raw_writel(0, HOST_ENABLE(host
));
1149 __raw_writel(0, HOST_CONFIG(host
));
1150 __raw_writel(0, HOST_CONFIG2(host
));
1151 wmb(); /* drain writebuffer */
1153 tasklet_kill(&host
->data_task
);
1154 tasklet_kill(&host
->finish_task
);
1156 if (host
->flags
& HOST_F_DBDMA
)
1157 au1xmmc_dbdma_shutdown(host
);
1159 au1xmmc_set_power(host
, 0);
1161 clk_disable_unprepare(host
->clk
);
1164 free_irq(host
->irq
, host
);
1165 iounmap((void *)host
->iobase
);
1166 release_resource(host
->ioarea
);
1167 kfree(host
->ioarea
);
1169 mmc_free_host(host
->mmc
);
1175 static int au1xmmc_suspend(struct platform_device
*pdev
, pm_message_t state
)
1177 struct au1xmmc_host
*host
= platform_get_drvdata(pdev
);
1179 __raw_writel(0, HOST_CONFIG2(host
));
1180 __raw_writel(0, HOST_CONFIG(host
));
1181 __raw_writel(0xffffffff, HOST_STATUS(host
));
1182 __raw_writel(0, HOST_ENABLE(host
));
1183 wmb(); /* drain writebuffer */
1188 static int au1xmmc_resume(struct platform_device
*pdev
)
1190 struct au1xmmc_host
*host
= platform_get_drvdata(pdev
);
1192 au1xmmc_reset_controller(host
);
1197 #define au1xmmc_suspend NULL
1198 #define au1xmmc_resume NULL
1201 static struct platform_driver au1xmmc_driver
= {
1202 .probe
= au1xmmc_probe
,
1203 .remove
= au1xmmc_remove
,
1204 .suspend
= au1xmmc_suspend
,
1205 .resume
= au1xmmc_resume
,
1207 .name
= DRIVER_NAME
,
1211 static int __init
au1xmmc_init(void)
1214 /* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride
1215 * of 8 bits. And since devices are shared, we need to create
1216 * our own to avoid freaking out other devices.
1218 memid
= au1xxx_ddma_add_device(&au1xmmc_mem_dbdev
);
1220 pr_err("au1xmmc: cannot add memory dbdma\n");
1222 return platform_driver_register(&au1xmmc_driver
);
1225 static void __exit
au1xmmc_exit(void)
1227 if (has_dbdma() && memid
)
1228 au1xxx_ddma_del_device(memid
);
1230 platform_driver_unregister(&au1xmmc_driver
);
1233 module_init(au1xmmc_init
);
1234 module_exit(au1xmmc_exit
);
1236 MODULE_AUTHOR("Advanced Micro Devices, Inc");
1237 MODULE_DESCRIPTION("MMC/SD driver for the Alchemy Au1XXX");
1238 MODULE_LICENSE("GPL");
1239 MODULE_ALIAS("platform:au1xxx-mmc");