1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/mmc/s3cmci.h - Samsung S3C MCI driver
5 * Copyright (C) 2004-2006 maintech GmbH, Thomas Kleffel <tk@maintech.de>
7 * Current driver maintained by Ben Dooks and Simtec Electronics
8 * Copyright (C) 2008 Simtec Electronics <ben-linux@fluff.org>
11 #include <linux/module.h>
12 #include <linux/dmaengine.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/clk.h>
15 #include <linux/mmc/host.h>
16 #include <linux/platform_device.h>
17 #include <linux/cpufreq.h>
18 #include <linux/debugfs.h>
19 #include <linux/seq_file.h>
20 #include <linux/gpio/consumer.h>
21 #include <linux/interrupt.h>
22 #include <linux/irq.h>
25 #include <linux/of_device.h>
26 #include <linux/mmc/slot-gpio.h>
27 #include <linux/platform_data/mmc-s3cmci.h>
31 #define DRIVER_NAME "s3c-mci"
33 #define S3C2410_SDICON (0x00)
34 #define S3C2410_SDIPRE (0x04)
35 #define S3C2410_SDICMDARG (0x08)
36 #define S3C2410_SDICMDCON (0x0C)
37 #define S3C2410_SDICMDSTAT (0x10)
38 #define S3C2410_SDIRSP0 (0x14)
39 #define S3C2410_SDIRSP1 (0x18)
40 #define S3C2410_SDIRSP2 (0x1C)
41 #define S3C2410_SDIRSP3 (0x20)
42 #define S3C2410_SDITIMER (0x24)
43 #define S3C2410_SDIBSIZE (0x28)
44 #define S3C2410_SDIDCON (0x2C)
45 #define S3C2410_SDIDCNT (0x30)
46 #define S3C2410_SDIDSTA (0x34)
47 #define S3C2410_SDIFSTA (0x38)
49 #define S3C2410_SDIDATA (0x3C)
50 #define S3C2410_SDIIMSK (0x40)
52 #define S3C2440_SDIDATA (0x40)
53 #define S3C2440_SDIIMSK (0x3C)
55 #define S3C2440_SDICON_SDRESET (1 << 8)
56 #define S3C2410_SDICON_SDIOIRQ (1 << 3)
57 #define S3C2410_SDICON_FIFORESET (1 << 1)
58 #define S3C2410_SDICON_CLOCKTYPE (1 << 0)
60 #define S3C2410_SDICMDCON_LONGRSP (1 << 10)
61 #define S3C2410_SDICMDCON_WAITRSP (1 << 9)
62 #define S3C2410_SDICMDCON_CMDSTART (1 << 8)
63 #define S3C2410_SDICMDCON_SENDERHOST (1 << 6)
64 #define S3C2410_SDICMDCON_INDEX (0x3f)
66 #define S3C2410_SDICMDSTAT_CRCFAIL (1 << 12)
67 #define S3C2410_SDICMDSTAT_CMDSENT (1 << 11)
68 #define S3C2410_SDICMDSTAT_CMDTIMEOUT (1 << 10)
69 #define S3C2410_SDICMDSTAT_RSPFIN (1 << 9)
71 #define S3C2440_SDIDCON_DS_WORD (2 << 22)
72 #define S3C2410_SDIDCON_TXAFTERRESP (1 << 20)
73 #define S3C2410_SDIDCON_RXAFTERCMD (1 << 19)
74 #define S3C2410_SDIDCON_BLOCKMODE (1 << 17)
75 #define S3C2410_SDIDCON_WIDEBUS (1 << 16)
76 #define S3C2410_SDIDCON_DMAEN (1 << 15)
77 #define S3C2410_SDIDCON_STOP (1 << 14)
78 #define S3C2440_SDIDCON_DATSTART (1 << 14)
80 #define S3C2410_SDIDCON_XFER_RXSTART (2 << 12)
81 #define S3C2410_SDIDCON_XFER_TXSTART (3 << 12)
83 #define S3C2410_SDIDCON_BLKNUM_MASK (0xFFF)
85 #define S3C2410_SDIDSTA_SDIOIRQDETECT (1 << 9)
86 #define S3C2410_SDIDSTA_FIFOFAIL (1 << 8)
87 #define S3C2410_SDIDSTA_CRCFAIL (1 << 7)
88 #define S3C2410_SDIDSTA_RXCRCFAIL (1 << 6)
89 #define S3C2410_SDIDSTA_DATATIMEOUT (1 << 5)
90 #define S3C2410_SDIDSTA_XFERFINISH (1 << 4)
91 #define S3C2410_SDIDSTA_TXDATAON (1 << 1)
92 #define S3C2410_SDIDSTA_RXDATAON (1 << 0)
94 #define S3C2440_SDIFSTA_FIFORESET (1 << 16)
95 #define S3C2440_SDIFSTA_FIFOFAIL (3 << 14)
96 #define S3C2410_SDIFSTA_TFDET (1 << 13)
97 #define S3C2410_SDIFSTA_RFDET (1 << 12)
98 #define S3C2410_SDIFSTA_COUNTMASK (0x7f)
100 #define S3C2410_SDIIMSK_RESPONSECRC (1 << 17)
101 #define S3C2410_SDIIMSK_CMDSENT (1 << 16)
102 #define S3C2410_SDIIMSK_CMDTIMEOUT (1 << 15)
103 #define S3C2410_SDIIMSK_RESPONSEND (1 << 14)
104 #define S3C2410_SDIIMSK_SDIOIRQ (1 << 12)
105 #define S3C2410_SDIIMSK_FIFOFAIL (1 << 11)
106 #define S3C2410_SDIIMSK_CRCSTATUS (1 << 10)
107 #define S3C2410_SDIIMSK_DATACRC (1 << 9)
108 #define S3C2410_SDIIMSK_DATATIMEOUT (1 << 8)
109 #define S3C2410_SDIIMSK_DATAFINISH (1 << 7)
110 #define S3C2410_SDIIMSK_TXFIFOHALF (1 << 4)
111 #define S3C2410_SDIIMSK_RXFIFOLAST (1 << 2)
112 #define S3C2410_SDIIMSK_RXFIFOHALF (1 << 0)
116 dbg_debug
= (1 << 1),
126 static const int dbgmap_err
= dbg_fail
;
127 static const int dbgmap_info
= dbg_info
| dbg_conf
;
128 static const int dbgmap_debug
= dbg_err
| dbg_debug
;
130 #define dbg(host, channels, args...) \
132 if (dbgmap_err & channels) \
133 dev_err(&host->pdev->dev, args); \
134 else if (dbgmap_info & channels) \
135 dev_info(&host->pdev->dev, args); \
136 else if (dbgmap_debug & channels) \
137 dev_dbg(&host->pdev->dev, args); \
140 static void finalize_request(struct s3cmci_host
*host
);
141 static void s3cmci_send_request(struct mmc_host
*mmc
);
142 static void s3cmci_reset(struct s3cmci_host
*host
);
144 #ifdef CONFIG_MMC_DEBUG
146 static void dbg_dumpregs(struct s3cmci_host
*host
, char *prefix
)
148 u32 con
, pre
, cmdarg
, cmdcon
, cmdsta
, r0
, r1
, r2
, r3
, timer
;
149 u32 datcon
, datcnt
, datsta
, fsta
;
151 con
= readl(host
->base
+ S3C2410_SDICON
);
152 pre
= readl(host
->base
+ S3C2410_SDIPRE
);
153 cmdarg
= readl(host
->base
+ S3C2410_SDICMDARG
);
154 cmdcon
= readl(host
->base
+ S3C2410_SDICMDCON
);
155 cmdsta
= readl(host
->base
+ S3C2410_SDICMDSTAT
);
156 r0
= readl(host
->base
+ S3C2410_SDIRSP0
);
157 r1
= readl(host
->base
+ S3C2410_SDIRSP1
);
158 r2
= readl(host
->base
+ S3C2410_SDIRSP2
);
159 r3
= readl(host
->base
+ S3C2410_SDIRSP3
);
160 timer
= readl(host
->base
+ S3C2410_SDITIMER
);
161 datcon
= readl(host
->base
+ S3C2410_SDIDCON
);
162 datcnt
= readl(host
->base
+ S3C2410_SDIDCNT
);
163 datsta
= readl(host
->base
+ S3C2410_SDIDSTA
);
164 fsta
= readl(host
->base
+ S3C2410_SDIFSTA
);
166 dbg(host
, dbg_debug
, "%s CON:[%08x] PRE:[%08x] TMR:[%08x]\n",
167 prefix
, con
, pre
, timer
);
169 dbg(host
, dbg_debug
, "%s CCON:[%08x] CARG:[%08x] CSTA:[%08x]\n",
170 prefix
, cmdcon
, cmdarg
, cmdsta
);
172 dbg(host
, dbg_debug
, "%s DCON:[%08x] FSTA:[%08x]"
173 " DSTA:[%08x] DCNT:[%08x]\n",
174 prefix
, datcon
, fsta
, datsta
, datcnt
);
176 dbg(host
, dbg_debug
, "%s R0:[%08x] R1:[%08x]"
177 " R2:[%08x] R3:[%08x]\n",
178 prefix
, r0
, r1
, r2
, r3
);
181 static void prepare_dbgmsg(struct s3cmci_host
*host
, struct mmc_command
*cmd
,
184 snprintf(host
->dbgmsg_cmd
, 300,
185 "#%u%s op:%i arg:0x%08x flags:0x08%x retries:%u",
186 host
->ccnt
, (stop
? " (STOP)" : ""),
187 cmd
->opcode
, cmd
->arg
, cmd
->flags
, cmd
->retries
);
190 snprintf(host
->dbgmsg_dat
, 300,
191 "#%u bsize:%u blocks:%u bytes:%u",
192 host
->dcnt
, cmd
->data
->blksz
,
194 cmd
->data
->blocks
* cmd
->data
->blksz
);
196 host
->dbgmsg_dat
[0] = '\0';
200 static void dbg_dumpcmd(struct s3cmci_host
*host
, struct mmc_command
*cmd
,
203 unsigned int dbglvl
= fail
? dbg_fail
: dbg_debug
;
208 if (cmd
->error
== 0) {
209 dbg(host
, dbglvl
, "CMD[OK] %s R0:0x%08x\n",
210 host
->dbgmsg_cmd
, cmd
->resp
[0]);
212 dbg(host
, dbglvl
, "CMD[ERR %i] %s Status:%s\n",
213 cmd
->error
, host
->dbgmsg_cmd
, host
->status
);
219 if (cmd
->data
->error
== 0) {
220 dbg(host
, dbglvl
, "DAT[OK] %s\n", host
->dbgmsg_dat
);
222 dbg(host
, dbglvl
, "DAT[ERR %i] %s DCNT:0x%08x\n",
223 cmd
->data
->error
, host
->dbgmsg_dat
,
224 readl(host
->base
+ S3C2410_SDIDCNT
));
228 static void dbg_dumpcmd(struct s3cmci_host
*host
,
229 struct mmc_command
*cmd
, int fail
) { }
231 static void prepare_dbgmsg(struct s3cmci_host
*host
, struct mmc_command
*cmd
,
234 static void dbg_dumpregs(struct s3cmci_host
*host
, char *prefix
) { }
236 #endif /* CONFIG_MMC_DEBUG */
239 * s3cmci_host_usedma - return whether the host is using dma or pio
240 * @host: The host state
242 * Return true if the host is using DMA to transfer data, else false
243 * to use PIO mode. Will return static data depending on the driver
246 static inline bool s3cmci_host_usedma(struct s3cmci_host
*host
)
248 #ifdef CONFIG_MMC_S3C_PIO
250 #else /* CONFIG_MMC_S3C_DMA */
255 static inline u32
enable_imask(struct s3cmci_host
*host
, u32 imask
)
259 newmask
= readl(host
->base
+ host
->sdiimsk
);
262 writel(newmask
, host
->base
+ host
->sdiimsk
);
267 static inline u32
disable_imask(struct s3cmci_host
*host
, u32 imask
)
271 newmask
= readl(host
->base
+ host
->sdiimsk
);
274 writel(newmask
, host
->base
+ host
->sdiimsk
);
279 static inline void clear_imask(struct s3cmci_host
*host
)
281 u32 mask
= readl(host
->base
+ host
->sdiimsk
);
283 /* preserve the SDIO IRQ mask state */
284 mask
&= S3C2410_SDIIMSK_SDIOIRQ
;
285 writel(mask
, host
->base
+ host
->sdiimsk
);
289 * s3cmci_check_sdio_irq - test whether the SDIO IRQ is being signalled
290 * @host: The host to check.
292 * Test to see if the SDIO interrupt is being signalled in case the
293 * controller has failed to re-detect a card interrupt. Read GPE8 and
294 * see if it is low and if so, signal a SDIO interrupt.
296 * This is currently called if a request is finished (we assume that the
297 * bus is now idle) and when the SDIO IRQ is enabled in case the IRQ is
298 * already being indicated.
300 static void s3cmci_check_sdio_irq(struct s3cmci_host
*host
)
302 if (host
->sdio_irqen
) {
303 if (host
->pdata
->bus
[3] &&
304 gpiod_get_value(host
->pdata
->bus
[3]) == 0) {
305 pr_debug("%s: signalling irq\n", __func__
);
306 mmc_signal_sdio_irq(host
->mmc
);
311 static inline int get_data_buffer(struct s3cmci_host
*host
,
312 u32
*bytes
, u32
**pointer
)
314 struct scatterlist
*sg
;
316 if (host
->pio_active
== XFER_NONE
)
319 if ((!host
->mrq
) || (!host
->mrq
->data
))
322 if (host
->pio_sgptr
>= host
->mrq
->data
->sg_len
) {
323 dbg(host
, dbg_debug
, "no more buffers (%i/%i)\n",
324 host
->pio_sgptr
, host
->mrq
->data
->sg_len
);
327 sg
= &host
->mrq
->data
->sg
[host
->pio_sgptr
];
330 *pointer
= sg_virt(sg
);
334 dbg(host
, dbg_sg
, "new buffer (%i/%i)\n",
335 host
->pio_sgptr
, host
->mrq
->data
->sg_len
);
340 static inline u32
fifo_count(struct s3cmci_host
*host
)
342 u32 fifostat
= readl(host
->base
+ S3C2410_SDIFSTA
);
344 fifostat
&= S3C2410_SDIFSTA_COUNTMASK
;
348 static inline u32
fifo_free(struct s3cmci_host
*host
)
350 u32 fifostat
= readl(host
->base
+ S3C2410_SDIFSTA
);
352 fifostat
&= S3C2410_SDIFSTA_COUNTMASK
;
353 return 63 - fifostat
;
357 * s3cmci_enable_irq - enable IRQ, after having disabled it.
358 * @host: The device state.
359 * @more: True if more IRQs are expected from transfer.
361 * Enable the main IRQ if needed after it has been disabled.
363 * The IRQ can be one of the following states:
364 * - disabled during IDLE
365 * - disabled whilst processing data
366 * - enabled during transfer
367 * - enabled whilst awaiting SDIO interrupt detection
369 static void s3cmci_enable_irq(struct s3cmci_host
*host
, bool more
)
374 local_irq_save(flags
);
376 host
->irq_enabled
= more
;
377 host
->irq_disabled
= false;
379 enable
= more
| host
->sdio_irqen
;
381 if (host
->irq_state
!= enable
) {
382 host
->irq_state
= enable
;
385 enable_irq(host
->irq
);
387 disable_irq(host
->irq
);
390 local_irq_restore(flags
);
393 static void s3cmci_disable_irq(struct s3cmci_host
*host
, bool transfer
)
397 local_irq_save(flags
);
399 /* pr_debug("%s: transfer %d\n", __func__, transfer); */
401 host
->irq_disabled
= transfer
;
403 if (transfer
&& host
->irq_state
) {
404 host
->irq_state
= false;
405 disable_irq(host
->irq
);
408 local_irq_restore(flags
);
411 static void do_pio_read(struct s3cmci_host
*host
)
417 void __iomem
*from_ptr
;
419 /* write real prescaler to host, it might be set slow to fix */
420 writel(host
->prescaler
, host
->base
+ S3C2410_SDIPRE
);
422 from_ptr
= host
->base
+ host
->sdidata
;
424 while ((fifo
= fifo_count(host
))) {
425 if (!host
->pio_bytes
) {
426 res
= get_data_buffer(host
, &host
->pio_bytes
,
429 host
->pio_active
= XFER_NONE
;
430 host
->complete_what
= COMPLETION_FINALIZE
;
432 dbg(host
, dbg_pio
, "pio_read(): "
433 "complete (no more data).\n");
438 "pio_read(): new target: [%i]@[%p]\n",
439 host
->pio_bytes
, host
->pio_ptr
);
443 "pio_read(): fifo:[%02i] buffer:[%03i] dcnt:[%08X]\n",
444 fifo
, host
->pio_bytes
,
445 readl(host
->base
+ S3C2410_SDIDCNT
));
447 /* If we have reached the end of the block, we can
448 * read a word and get 1 to 3 bytes. If we in the
449 * middle of the block, we have to read full words,
450 * otherwise we will write garbage, so round down to
451 * an even multiple of 4. */
452 if (fifo
>= host
->pio_bytes
)
453 fifo
= host
->pio_bytes
;
457 host
->pio_bytes
-= fifo
;
458 host
->pio_count
+= fifo
;
460 fifo_words
= fifo
>> 2;
463 *ptr
++ = readl(from_ptr
);
468 u32 data
= readl(from_ptr
);
469 u8
*p
= (u8
*)host
->pio_ptr
;
478 if (!host
->pio_bytes
) {
479 res
= get_data_buffer(host
, &host
->pio_bytes
, &host
->pio_ptr
);
482 "pio_read(): complete (no more buffers).\n");
483 host
->pio_active
= XFER_NONE
;
484 host
->complete_what
= COMPLETION_FINALIZE
;
491 S3C2410_SDIIMSK_RXFIFOHALF
| S3C2410_SDIIMSK_RXFIFOLAST
);
494 static void do_pio_write(struct s3cmci_host
*host
)
496 void __iomem
*to_ptr
;
501 to_ptr
= host
->base
+ host
->sdidata
;
503 while ((fifo
= fifo_free(host
)) > 3) {
504 if (!host
->pio_bytes
) {
505 res
= get_data_buffer(host
, &host
->pio_bytes
,
509 "pio_write(): complete (no more data).\n");
510 host
->pio_active
= XFER_NONE
;
516 "pio_write(): new source: [%i]@[%p]\n",
517 host
->pio_bytes
, host
->pio_ptr
);
521 /* If we have reached the end of the block, we have to
522 * write exactly the remaining number of bytes. If we
523 * in the middle of the block, we have to write full
524 * words, so round down to an even multiple of 4. */
525 if (fifo
>= host
->pio_bytes
)
526 fifo
= host
->pio_bytes
;
530 host
->pio_bytes
-= fifo
;
531 host
->pio_count
+= fifo
;
533 fifo
= (fifo
+ 3) >> 2;
536 writel(*ptr
++, to_ptr
);
540 enable_imask(host
, S3C2410_SDIIMSK_TXFIFOHALF
);
543 static void pio_tasklet(unsigned long data
)
545 struct s3cmci_host
*host
= (struct s3cmci_host
*) data
;
547 s3cmci_disable_irq(host
, true);
549 if (host
->pio_active
== XFER_WRITE
)
552 if (host
->pio_active
== XFER_READ
)
555 if (host
->complete_what
== COMPLETION_FINALIZE
) {
557 if (host
->pio_active
!= XFER_NONE
) {
558 dbg(host
, dbg_err
, "unfinished %s "
559 "- pio_count:[%u] pio_bytes:[%u]\n",
560 (host
->pio_active
== XFER_READ
) ? "read" : "write",
561 host
->pio_count
, host
->pio_bytes
);
564 host
->mrq
->data
->error
= -EINVAL
;
567 s3cmci_enable_irq(host
, false);
568 finalize_request(host
);
570 s3cmci_enable_irq(host
, true);
574 * ISR for SDI Interface IRQ
575 * Communication between driver and ISR works as follows:
576 * host->mrq points to current request
577 * host->complete_what Indicates when the request is considered done
578 * COMPLETION_CMDSENT when the command was sent
579 * COMPLETION_RSPFIN when a response was received
580 * COMPLETION_XFERFINISH when the data transfer is finished
581 * COMPLETION_XFERFINISH_RSPFIN both of the above.
582 * host->complete_request is the completion-object the driver waits for
584 * 1) Driver sets up host->mrq and host->complete_what
585 * 2) Driver prepares the transfer
586 * 3) Driver enables interrupts
587 * 4) Driver starts transfer
588 * 5) Driver waits for host->complete_rquest
589 * 6) ISR checks for request status (errors and success)
590 * 6) ISR sets host->mrq->cmd->error and host->mrq->data->error
591 * 7) ISR completes host->complete_request
592 * 8) ISR disables interrupts
593 * 9) Driver wakes up and takes care of the request
595 * Note: "->error"-fields are expected to be set to 0 before the request
596 * was issued by mmc.c - therefore they are only set, when an error
600 static irqreturn_t
s3cmci_irq(int irq
, void *dev_id
)
602 struct s3cmci_host
*host
= dev_id
;
603 struct mmc_command
*cmd
;
604 u32 mci_csta
, mci_dsta
, mci_fsta
, mci_dcnt
, mci_imsk
;
605 u32 mci_cclear
= 0, mci_dclear
;
606 unsigned long iflags
;
608 mci_dsta
= readl(host
->base
+ S3C2410_SDIDSTA
);
609 mci_imsk
= readl(host
->base
+ host
->sdiimsk
);
611 if (mci_dsta
& S3C2410_SDIDSTA_SDIOIRQDETECT
) {
612 if (mci_imsk
& S3C2410_SDIIMSK_SDIOIRQ
) {
613 mci_dclear
= S3C2410_SDIDSTA_SDIOIRQDETECT
;
614 writel(mci_dclear
, host
->base
+ S3C2410_SDIDSTA
);
616 mmc_signal_sdio_irq(host
->mmc
);
621 spin_lock_irqsave(&host
->complete_lock
, iflags
);
623 mci_csta
= readl(host
->base
+ S3C2410_SDICMDSTAT
);
624 mci_dcnt
= readl(host
->base
+ S3C2410_SDIDCNT
);
625 mci_fsta
= readl(host
->base
+ S3C2410_SDIFSTA
);
628 if ((host
->complete_what
== COMPLETION_NONE
) ||
629 (host
->complete_what
== COMPLETION_FINALIZE
)) {
630 host
->status
= "nothing to complete";
636 host
->status
= "no active mrq";
641 cmd
= host
->cmd_is_stop
? host
->mrq
->stop
: host
->mrq
->cmd
;
644 host
->status
= "no active cmd";
649 if (!s3cmci_host_usedma(host
)) {
650 if ((host
->pio_active
== XFER_WRITE
) &&
651 (mci_fsta
& S3C2410_SDIFSTA_TFDET
)) {
653 disable_imask(host
, S3C2410_SDIIMSK_TXFIFOHALF
);
654 tasklet_schedule(&host
->pio_tasklet
);
655 host
->status
= "pio tx";
658 if ((host
->pio_active
== XFER_READ
) &&
659 (mci_fsta
& S3C2410_SDIFSTA_RFDET
)) {
662 S3C2410_SDIIMSK_RXFIFOHALF
|
663 S3C2410_SDIIMSK_RXFIFOLAST
);
665 tasklet_schedule(&host
->pio_tasklet
);
666 host
->status
= "pio rx";
670 if (mci_csta
& S3C2410_SDICMDSTAT_CMDTIMEOUT
) {
671 dbg(host
, dbg_err
, "CMDSTAT: error CMDTIMEOUT\n");
672 cmd
->error
= -ETIMEDOUT
;
673 host
->status
= "error: command timeout";
677 if (mci_csta
& S3C2410_SDICMDSTAT_CMDSENT
) {
678 if (host
->complete_what
== COMPLETION_CMDSENT
) {
679 host
->status
= "ok: command sent";
683 mci_cclear
|= S3C2410_SDICMDSTAT_CMDSENT
;
686 if (mci_csta
& S3C2410_SDICMDSTAT_CRCFAIL
) {
687 if (cmd
->flags
& MMC_RSP_CRC
) {
688 if (host
->mrq
->cmd
->flags
& MMC_RSP_136
) {
690 "fixup: ignore CRC fail with long rsp\n");
692 /* note, we used to fail the transfer
693 * here, but it seems that this is just
694 * the hardware getting it wrong.
696 * cmd->error = -EILSEQ;
697 * host->status = "error: bad command crc";
698 * goto fail_transfer;
703 mci_cclear
|= S3C2410_SDICMDSTAT_CRCFAIL
;
706 if (mci_csta
& S3C2410_SDICMDSTAT_RSPFIN
) {
707 if (host
->complete_what
== COMPLETION_RSPFIN
) {
708 host
->status
= "ok: command response received";
712 if (host
->complete_what
== COMPLETION_XFERFINISH_RSPFIN
)
713 host
->complete_what
= COMPLETION_XFERFINISH
;
715 mci_cclear
|= S3C2410_SDICMDSTAT_RSPFIN
;
718 /* errors handled after this point are only relevant
719 when a data transfer is in progress */
722 goto clear_status_bits
;
724 /* Check for FIFO failure */
726 if (mci_fsta
& S3C2440_SDIFSTA_FIFOFAIL
) {
727 dbg(host
, dbg_err
, "FIFO failure\n");
728 host
->mrq
->data
->error
= -EILSEQ
;
729 host
->status
= "error: 2440 fifo failure";
733 if (mci_dsta
& S3C2410_SDIDSTA_FIFOFAIL
) {
734 dbg(host
, dbg_err
, "FIFO failure\n");
735 cmd
->data
->error
= -EILSEQ
;
736 host
->status
= "error: fifo failure";
741 if (mci_dsta
& S3C2410_SDIDSTA_RXCRCFAIL
) {
742 dbg(host
, dbg_err
, "bad data crc (outgoing)\n");
743 cmd
->data
->error
= -EILSEQ
;
744 host
->status
= "error: bad data crc (outgoing)";
748 if (mci_dsta
& S3C2410_SDIDSTA_CRCFAIL
) {
749 dbg(host
, dbg_err
, "bad data crc (incoming)\n");
750 cmd
->data
->error
= -EILSEQ
;
751 host
->status
= "error: bad data crc (incoming)";
755 if (mci_dsta
& S3C2410_SDIDSTA_DATATIMEOUT
) {
756 dbg(host
, dbg_err
, "data timeout\n");
757 cmd
->data
->error
= -ETIMEDOUT
;
758 host
->status
= "error: data timeout";
762 if (mci_dsta
& S3C2410_SDIDSTA_XFERFINISH
) {
763 if (host
->complete_what
== COMPLETION_XFERFINISH
) {
764 host
->status
= "ok: data transfer completed";
768 if (host
->complete_what
== COMPLETION_XFERFINISH_RSPFIN
)
769 host
->complete_what
= COMPLETION_RSPFIN
;
771 mci_dclear
|= S3C2410_SDIDSTA_XFERFINISH
;
775 writel(mci_cclear
, host
->base
+ S3C2410_SDICMDSTAT
);
776 writel(mci_dclear
, host
->base
+ S3C2410_SDIDSTA
);
781 host
->pio_active
= XFER_NONE
;
784 host
->complete_what
= COMPLETION_FINALIZE
;
787 tasklet_schedule(&host
->pio_tasklet
);
793 "csta:0x%08x dsta:0x%08x fsta:0x%08x dcnt:0x%08x status:%s.\n",
794 mci_csta
, mci_dsta
, mci_fsta
, mci_dcnt
, host
->status
);
796 spin_unlock_irqrestore(&host
->complete_lock
, iflags
);
801 static void s3cmci_dma_done_callback(void *arg
)
803 struct s3cmci_host
*host
= arg
;
804 unsigned long iflags
;
807 BUG_ON(!host
->mrq
->data
);
809 spin_lock_irqsave(&host
->complete_lock
, iflags
);
811 dbg(host
, dbg_dma
, "DMA FINISHED\n");
813 host
->dma_complete
= 1;
814 host
->complete_what
= COMPLETION_FINALIZE
;
816 tasklet_schedule(&host
->pio_tasklet
);
817 spin_unlock_irqrestore(&host
->complete_lock
, iflags
);
821 static void finalize_request(struct s3cmci_host
*host
)
823 struct mmc_request
*mrq
= host
->mrq
;
824 struct mmc_command
*cmd
;
825 int debug_as_failure
= 0;
827 if (host
->complete_what
!= COMPLETION_FINALIZE
)
832 cmd
= host
->cmd_is_stop
? mrq
->stop
: mrq
->cmd
;
834 if (cmd
->data
&& (cmd
->error
== 0) &&
835 (cmd
->data
->error
== 0)) {
836 if (s3cmci_host_usedma(host
) && (!host
->dma_complete
)) {
837 dbg(host
, dbg_dma
, "DMA Missing (%d)!\n",
843 /* Read response from controller. */
844 cmd
->resp
[0] = readl(host
->base
+ S3C2410_SDIRSP0
);
845 cmd
->resp
[1] = readl(host
->base
+ S3C2410_SDIRSP1
);
846 cmd
->resp
[2] = readl(host
->base
+ S3C2410_SDIRSP2
);
847 cmd
->resp
[3] = readl(host
->base
+ S3C2410_SDIRSP3
);
849 writel(host
->prescaler
, host
->base
+ S3C2410_SDIPRE
);
852 debug_as_failure
= 1;
854 if (cmd
->data
&& cmd
->data
->error
)
855 debug_as_failure
= 1;
857 dbg_dumpcmd(host
, cmd
, debug_as_failure
);
859 /* Cleanup controller */
860 writel(0, host
->base
+ S3C2410_SDICMDARG
);
861 writel(S3C2410_SDIDCON_STOP
, host
->base
+ S3C2410_SDIDCON
);
862 writel(0, host
->base
+ S3C2410_SDICMDCON
);
865 if (cmd
->data
&& cmd
->error
)
866 cmd
->data
->error
= cmd
->error
;
868 if (cmd
->data
&& cmd
->data
->stop
&& (!host
->cmd_is_stop
)) {
869 host
->cmd_is_stop
= 1;
870 s3cmci_send_request(host
->mmc
);
874 /* If we have no data transfer we are finished here */
878 /* Calculate the amout of bytes transfer if there was no error */
879 if (mrq
->data
->error
== 0) {
880 mrq
->data
->bytes_xfered
=
881 (mrq
->data
->blocks
* mrq
->data
->blksz
);
883 mrq
->data
->bytes_xfered
= 0;
886 /* If we had an error while transferring data we flush the
887 * DMA channel and the fifo to clear out any garbage. */
888 if (mrq
->data
->error
!= 0) {
889 if (s3cmci_host_usedma(host
))
890 dmaengine_terminate_all(host
->dma
);
893 /* Clear failure register and reset fifo. */
894 writel(S3C2440_SDIFSTA_FIFORESET
|
895 S3C2440_SDIFSTA_FIFOFAIL
,
896 host
->base
+ S3C2410_SDIFSTA
);
901 mci_con
= readl(host
->base
+ S3C2410_SDICON
);
902 mci_con
|= S3C2410_SDICON_FIFORESET
;
904 writel(mci_con
, host
->base
+ S3C2410_SDICON
);
909 host
->complete_what
= COMPLETION_NONE
;
912 s3cmci_check_sdio_irq(host
);
913 mmc_request_done(host
->mmc
, mrq
);
916 static void s3cmci_send_command(struct s3cmci_host
*host
,
917 struct mmc_command
*cmd
)
921 imsk
= S3C2410_SDIIMSK_CRCSTATUS
| S3C2410_SDIIMSK_CMDTIMEOUT
|
922 S3C2410_SDIIMSK_RESPONSEND
| S3C2410_SDIIMSK_CMDSENT
|
923 S3C2410_SDIIMSK_RESPONSECRC
;
925 enable_imask(host
, imsk
);
928 host
->complete_what
= COMPLETION_XFERFINISH_RSPFIN
;
929 else if (cmd
->flags
& MMC_RSP_PRESENT
)
930 host
->complete_what
= COMPLETION_RSPFIN
;
932 host
->complete_what
= COMPLETION_CMDSENT
;
934 writel(cmd
->arg
, host
->base
+ S3C2410_SDICMDARG
);
936 ccon
= cmd
->opcode
& S3C2410_SDICMDCON_INDEX
;
937 ccon
|= S3C2410_SDICMDCON_SENDERHOST
| S3C2410_SDICMDCON_CMDSTART
;
939 if (cmd
->flags
& MMC_RSP_PRESENT
)
940 ccon
|= S3C2410_SDICMDCON_WAITRSP
;
942 if (cmd
->flags
& MMC_RSP_136
)
943 ccon
|= S3C2410_SDICMDCON_LONGRSP
;
945 writel(ccon
, host
->base
+ S3C2410_SDICMDCON
);
948 static int s3cmci_setup_data(struct s3cmci_host
*host
, struct mmc_data
*data
)
950 u32 dcon
, imsk
, stoptries
= 3;
952 if ((data
->blksz
& 3) != 0) {
953 /* We cannot deal with unaligned blocks with more than
954 * one block being transferred. */
956 if (data
->blocks
> 1) {
957 pr_warn("%s: can't do non-word sized block transfers (blksz %d)\n",
958 __func__
, data
->blksz
);
963 while (readl(host
->base
+ S3C2410_SDIDSTA
) &
964 (S3C2410_SDIDSTA_TXDATAON
| S3C2410_SDIDSTA_RXDATAON
)) {
967 "mci_setup_data() transfer stillin progress.\n");
969 writel(S3C2410_SDIDCON_STOP
, host
->base
+ S3C2410_SDIDCON
);
972 if ((stoptries
--) == 0) {
973 dbg_dumpregs(host
, "DRF");
978 dcon
= data
->blocks
& S3C2410_SDIDCON_BLKNUM_MASK
;
980 if (s3cmci_host_usedma(host
))
981 dcon
|= S3C2410_SDIDCON_DMAEN
;
983 if (host
->bus_width
== MMC_BUS_WIDTH_4
)
984 dcon
|= S3C2410_SDIDCON_WIDEBUS
;
986 dcon
|= S3C2410_SDIDCON_BLOCKMODE
;
988 if (data
->flags
& MMC_DATA_WRITE
) {
989 dcon
|= S3C2410_SDIDCON_TXAFTERRESP
;
990 dcon
|= S3C2410_SDIDCON_XFER_TXSTART
;
993 if (data
->flags
& MMC_DATA_READ
) {
994 dcon
|= S3C2410_SDIDCON_RXAFTERCMD
;
995 dcon
|= S3C2410_SDIDCON_XFER_RXSTART
;
999 dcon
|= S3C2440_SDIDCON_DS_WORD
;
1000 dcon
|= S3C2440_SDIDCON_DATSTART
;
1003 writel(dcon
, host
->base
+ S3C2410_SDIDCON
);
1005 /* write BSIZE register */
1007 writel(data
->blksz
, host
->base
+ S3C2410_SDIBSIZE
);
1009 /* add to IMASK register */
1010 imsk
= S3C2410_SDIIMSK_FIFOFAIL
| S3C2410_SDIIMSK_DATACRC
|
1011 S3C2410_SDIIMSK_DATATIMEOUT
| S3C2410_SDIIMSK_DATAFINISH
;
1013 enable_imask(host
, imsk
);
1015 /* write TIMER register */
1018 writel(0x007FFFFF, host
->base
+ S3C2410_SDITIMER
);
1020 writel(0x0000FFFF, host
->base
+ S3C2410_SDITIMER
);
1022 /* FIX: set slow clock to prevent timeouts on read */
1023 if (data
->flags
& MMC_DATA_READ
)
1024 writel(0xFF, host
->base
+ S3C2410_SDIPRE
);
1030 #define BOTH_DIR (MMC_DATA_WRITE | MMC_DATA_READ)
1032 static int s3cmci_prepare_pio(struct s3cmci_host
*host
, struct mmc_data
*data
)
1034 int rw
= (data
->flags
& MMC_DATA_WRITE
) ? 1 : 0;
1036 BUG_ON((data
->flags
& BOTH_DIR
) == BOTH_DIR
);
1038 host
->pio_sgptr
= 0;
1039 host
->pio_bytes
= 0;
1040 host
->pio_count
= 0;
1041 host
->pio_active
= rw
? XFER_WRITE
: XFER_READ
;
1045 enable_imask(host
, S3C2410_SDIIMSK_TXFIFOHALF
);
1047 enable_imask(host
, S3C2410_SDIIMSK_RXFIFOHALF
1048 | S3C2410_SDIIMSK_RXFIFOLAST
);
1054 static int s3cmci_prepare_dma(struct s3cmci_host
*host
, struct mmc_data
*data
)
1056 int rw
= data
->flags
& MMC_DATA_WRITE
;
1057 struct dma_async_tx_descriptor
*desc
;
1058 struct dma_slave_config conf
= {
1059 .src_addr
= host
->mem
->start
+ host
->sdidata
,
1060 .dst_addr
= host
->mem
->start
+ host
->sdidata
,
1061 .src_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
,
1062 .dst_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
,
1065 BUG_ON((data
->flags
& BOTH_DIR
) == BOTH_DIR
);
1067 /* Restore prescaler value */
1068 writel(host
->prescaler
, host
->base
+ S3C2410_SDIPRE
);
1071 conf
.direction
= DMA_DEV_TO_MEM
;
1073 conf
.direction
= DMA_MEM_TO_DEV
;
1075 dma_map_sg(mmc_dev(host
->mmc
), data
->sg
, data
->sg_len
,
1076 mmc_get_dma_dir(data
));
1078 dmaengine_slave_config(host
->dma
, &conf
);
1079 desc
= dmaengine_prep_slave_sg(host
->dma
, data
->sg
, data
->sg_len
,
1081 DMA_CTRL_ACK
| DMA_PREP_INTERRUPT
);
1084 desc
->callback
= s3cmci_dma_done_callback
;
1085 desc
->callback_param
= host
;
1086 dmaengine_submit(desc
);
1087 dma_async_issue_pending(host
->dma
);
1092 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
, data
->sg_len
,
1093 mmc_get_dma_dir(data
));
1097 static void s3cmci_send_request(struct mmc_host
*mmc
)
1099 struct s3cmci_host
*host
= mmc_priv(mmc
);
1100 struct mmc_request
*mrq
= host
->mrq
;
1101 struct mmc_command
*cmd
= host
->cmd_is_stop
? mrq
->stop
: mrq
->cmd
;
1104 prepare_dbgmsg(host
, cmd
, host
->cmd_is_stop
);
1106 /* Clear command, data and fifo status registers
1107 Fifo clear only necessary on 2440, but doesn't hurt on 2410
1109 writel(0xFFFFFFFF, host
->base
+ S3C2410_SDICMDSTAT
);
1110 writel(0xFFFFFFFF, host
->base
+ S3C2410_SDIDSTA
);
1111 writel(0xFFFFFFFF, host
->base
+ S3C2410_SDIFSTA
);
1114 int res
= s3cmci_setup_data(host
, cmd
->data
);
1119 dbg(host
, dbg_err
, "setup data error %d\n", res
);
1121 cmd
->data
->error
= res
;
1123 mmc_request_done(mmc
, mrq
);
1127 if (s3cmci_host_usedma(host
))
1128 res
= s3cmci_prepare_dma(host
, cmd
->data
);
1130 res
= s3cmci_prepare_pio(host
, cmd
->data
);
1133 dbg(host
, dbg_err
, "data prepare error %d\n", res
);
1135 cmd
->data
->error
= res
;
1137 mmc_request_done(mmc
, mrq
);
1143 s3cmci_send_command(host
, cmd
);
1145 /* Enable Interrupt */
1146 s3cmci_enable_irq(host
, true);
1149 static void s3cmci_request(struct mmc_host
*mmc
, struct mmc_request
*mrq
)
1151 struct s3cmci_host
*host
= mmc_priv(mmc
);
1153 host
->status
= "mmc request";
1154 host
->cmd_is_stop
= 0;
1157 if (mmc_gpio_get_cd(mmc
) == 0) {
1158 dbg(host
, dbg_err
, "%s: no medium present\n", __func__
);
1159 host
->mrq
->cmd
->error
= -ENOMEDIUM
;
1160 mmc_request_done(mmc
, mrq
);
1162 s3cmci_send_request(mmc
);
1165 static void s3cmci_set_clk(struct s3cmci_host
*host
, struct mmc_ios
*ios
)
1170 for (mci_psc
= 0; mci_psc
< 255; mci_psc
++) {
1171 host
->real_rate
= host
->clk_rate
/ (host
->clk_div
*(mci_psc
+1));
1173 if (host
->real_rate
<= ios
->clock
)
1180 host
->prescaler
= mci_psc
;
1181 writel(host
->prescaler
, host
->base
+ S3C2410_SDIPRE
);
1183 /* If requested clock is 0, real_rate will be 0, too */
1184 if (ios
->clock
== 0)
1185 host
->real_rate
= 0;
1188 static void s3cmci_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1190 struct s3cmci_host
*host
= mmc_priv(mmc
);
1193 /* Set the power state */
1195 mci_con
= readl(host
->base
+ S3C2410_SDICON
);
1197 switch (ios
->power_mode
) {
1201 mci_con
|= S3C2410_SDICON_FIFORESET
;
1207 mci_con
|= S3C2440_SDICON_SDRESET
;
1211 if (host
->pdata
->set_power
)
1212 host
->pdata
->set_power(ios
->power_mode
, ios
->vdd
);
1214 s3cmci_set_clk(host
, ios
);
1216 /* Set CLOCK_ENABLE */
1218 mci_con
|= S3C2410_SDICON_CLOCKTYPE
;
1220 mci_con
&= ~S3C2410_SDICON_CLOCKTYPE
;
1222 writel(mci_con
, host
->base
+ S3C2410_SDICON
);
1224 if ((ios
->power_mode
== MMC_POWER_ON
) ||
1225 (ios
->power_mode
== MMC_POWER_UP
)) {
1226 dbg(host
, dbg_conf
, "running at %lukHz (requested: %ukHz).\n",
1227 host
->real_rate
/1000, ios
->clock
/1000);
1229 dbg(host
, dbg_conf
, "powered down.\n");
1232 host
->bus_width
= ios
->bus_width
;
1235 static void s3cmci_reset(struct s3cmci_host
*host
)
1237 u32 con
= readl(host
->base
+ S3C2410_SDICON
);
1239 con
|= S3C2440_SDICON_SDRESET
;
1240 writel(con
, host
->base
+ S3C2410_SDICON
);
1243 static void s3cmci_enable_sdio_irq(struct mmc_host
*mmc
, int enable
)
1245 struct s3cmci_host
*host
= mmc_priv(mmc
);
1246 unsigned long flags
;
1249 local_irq_save(flags
);
1251 con
= readl(host
->base
+ S3C2410_SDICON
);
1252 host
->sdio_irqen
= enable
;
1254 if (enable
== host
->sdio_irqen
)
1258 con
|= S3C2410_SDICON_SDIOIRQ
;
1259 enable_imask(host
, S3C2410_SDIIMSK_SDIOIRQ
);
1261 if (!host
->irq_state
&& !host
->irq_disabled
) {
1262 host
->irq_state
= true;
1263 enable_irq(host
->irq
);
1266 disable_imask(host
, S3C2410_SDIIMSK_SDIOIRQ
);
1267 con
&= ~S3C2410_SDICON_SDIOIRQ
;
1269 if (!host
->irq_enabled
&& host
->irq_state
) {
1270 disable_irq_nosync(host
->irq
);
1271 host
->irq_state
= false;
1275 writel(con
, host
->base
+ S3C2410_SDICON
);
1278 local_irq_restore(flags
);
1280 s3cmci_check_sdio_irq(host
);
1283 static const struct mmc_host_ops s3cmci_ops
= {
1284 .request
= s3cmci_request
,
1285 .set_ios
= s3cmci_set_ios
,
1286 .get_ro
= mmc_gpio_get_ro
,
1287 .get_cd
= mmc_gpio_get_cd
,
1288 .enable_sdio_irq
= s3cmci_enable_sdio_irq
,
1291 #ifdef CONFIG_ARM_S3C24XX_CPUFREQ
1293 static int s3cmci_cpufreq_transition(struct notifier_block
*nb
,
1294 unsigned long val
, void *data
)
1296 struct s3cmci_host
*host
;
1297 struct mmc_host
*mmc
;
1298 unsigned long newclk
;
1299 unsigned long flags
;
1301 host
= container_of(nb
, struct s3cmci_host
, freq_transition
);
1302 newclk
= clk_get_rate(host
->clk
);
1305 if ((val
== CPUFREQ_PRECHANGE
&& newclk
> host
->clk_rate
) ||
1306 (val
== CPUFREQ_POSTCHANGE
&& newclk
< host
->clk_rate
)) {
1307 spin_lock_irqsave(&mmc
->lock
, flags
);
1309 host
->clk_rate
= newclk
;
1311 if (mmc
->ios
.power_mode
!= MMC_POWER_OFF
&&
1312 mmc
->ios
.clock
!= 0)
1313 s3cmci_set_clk(host
, &mmc
->ios
);
1315 spin_unlock_irqrestore(&mmc
->lock
, flags
);
1321 static inline int s3cmci_cpufreq_register(struct s3cmci_host
*host
)
1323 host
->freq_transition
.notifier_call
= s3cmci_cpufreq_transition
;
1325 return cpufreq_register_notifier(&host
->freq_transition
,
1326 CPUFREQ_TRANSITION_NOTIFIER
);
1329 static inline void s3cmci_cpufreq_deregister(struct s3cmci_host
*host
)
1331 cpufreq_unregister_notifier(&host
->freq_transition
,
1332 CPUFREQ_TRANSITION_NOTIFIER
);
1336 static inline int s3cmci_cpufreq_register(struct s3cmci_host
*host
)
1341 static inline void s3cmci_cpufreq_deregister(struct s3cmci_host
*host
)
1347 #ifdef CONFIG_DEBUG_FS
1349 static int s3cmci_state_show(struct seq_file
*seq
, void *v
)
1351 struct s3cmci_host
*host
= seq
->private;
1353 seq_printf(seq
, "Register base = 0x%p\n", host
->base
);
1354 seq_printf(seq
, "Clock rate = %ld\n", host
->clk_rate
);
1355 seq_printf(seq
, "Prescale = %d\n", host
->prescaler
);
1356 seq_printf(seq
, "is2440 = %d\n", host
->is2440
);
1357 seq_printf(seq
, "IRQ = %d\n", host
->irq
);
1358 seq_printf(seq
, "IRQ enabled = %d\n", host
->irq_enabled
);
1359 seq_printf(seq
, "IRQ disabled = %d\n", host
->irq_disabled
);
1360 seq_printf(seq
, "IRQ state = %d\n", host
->irq_state
);
1361 seq_printf(seq
, "CD IRQ = %d\n", host
->irq_cd
);
1362 seq_printf(seq
, "Do DMA = %d\n", s3cmci_host_usedma(host
));
1363 seq_printf(seq
, "SDIIMSK at %d\n", host
->sdiimsk
);
1364 seq_printf(seq
, "SDIDATA at %d\n", host
->sdidata
);
1369 DEFINE_SHOW_ATTRIBUTE(s3cmci_state
);
1371 #define DBG_REG(_r) { .addr = S3C2410_SDI##_r, .name = #_r }
1374 unsigned short addr
;
1375 unsigned char *name
;
1378 static const struct s3cmci_reg debug_regs
[] = {
1397 static int s3cmci_regs_show(struct seq_file
*seq
, void *v
)
1399 struct s3cmci_host
*host
= seq
->private;
1400 const struct s3cmci_reg
*rptr
= debug_regs
;
1402 for (; rptr
->name
; rptr
++)
1403 seq_printf(seq
, "SDI%s\t=0x%08x\n", rptr
->name
,
1404 readl(host
->base
+ rptr
->addr
));
1406 seq_printf(seq
, "SDIIMSK\t=0x%08x\n", readl(host
->base
+ host
->sdiimsk
));
1411 DEFINE_SHOW_ATTRIBUTE(s3cmci_regs
);
1413 static void s3cmci_debugfs_attach(struct s3cmci_host
*host
)
1415 struct device
*dev
= &host
->pdev
->dev
;
1416 struct dentry
*root
;
1418 root
= debugfs_create_dir(dev_name(dev
), NULL
);
1419 host
->debug_root
= root
;
1421 debugfs_create_file("state", 0444, root
, host
, &s3cmci_state_fops
);
1422 debugfs_create_file("regs", 0444, root
, host
, &s3cmci_regs_fops
);
1425 static void s3cmci_debugfs_remove(struct s3cmci_host
*host
)
1427 debugfs_remove_recursive(host
->debug_root
);
1431 static inline void s3cmci_debugfs_attach(struct s3cmci_host
*host
) { }
1432 static inline void s3cmci_debugfs_remove(struct s3cmci_host
*host
) { }
1434 #endif /* CONFIG_DEBUG_FS */
1436 static int s3cmci_probe_pdata(struct s3cmci_host
*host
)
1438 struct platform_device
*pdev
= host
->pdev
;
1439 struct mmc_host
*mmc
= host
->mmc
;
1440 struct s3c24xx_mci_pdata
*pdata
;
1443 host
->is2440
= platform_get_device_id(pdev
)->driver_data
;
1444 pdata
= pdev
->dev
.platform_data
;
1446 dev_err(&pdev
->dev
, "need platform data");
1450 for (i
= 0; i
< 6; i
++) {
1451 pdata
->bus
[i
] = devm_gpiod_get_index(&pdev
->dev
, "bus", i
,
1453 if (IS_ERR(pdata
->bus
[i
])) {
1454 dev_err(&pdev
->dev
, "failed to get gpio %d\n", i
);
1455 return PTR_ERR(pdata
->bus
[i
]);
1459 if (pdata
->no_wprotect
)
1460 mmc
->caps2
|= MMC_CAP2_NO_WRITE_PROTECT
;
1462 if (pdata
->no_detect
)
1463 mmc
->caps
|= MMC_CAP_NEEDS_POLL
;
1465 if (pdata
->wprotect_invert
)
1466 mmc
->caps2
|= MMC_CAP2_RO_ACTIVE_HIGH
;
1468 /* If we get -ENOENT we have no card detect GPIO line */
1469 ret
= mmc_gpiod_request_cd(mmc
, "cd", 0, false, 0);
1470 if (ret
!= -ENOENT
) {
1471 dev_err(&pdev
->dev
, "error requesting GPIO for CD %d\n",
1476 ret
= mmc_gpiod_request_ro(host
->mmc
, "wp", 0, 0);
1477 if (ret
!= -ENOENT
) {
1478 dev_err(&pdev
->dev
, "error requesting GPIO for WP %d\n",
1486 static int s3cmci_probe_dt(struct s3cmci_host
*host
)
1488 struct platform_device
*pdev
= host
->pdev
;
1489 struct s3c24xx_mci_pdata
*pdata
;
1490 struct mmc_host
*mmc
= host
->mmc
;
1493 host
->is2440
= (long) of_device_get_match_data(&pdev
->dev
);
1495 ret
= mmc_of_parse(mmc
);
1499 pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1503 pdev
->dev
.platform_data
= pdata
;
1508 static int s3cmci_probe(struct platform_device
*pdev
)
1510 struct s3cmci_host
*host
;
1511 struct mmc_host
*mmc
;
1514 mmc
= mmc_alloc_host(sizeof(struct s3cmci_host
), &pdev
->dev
);
1520 host
= mmc_priv(mmc
);
1524 if (pdev
->dev
.of_node
)
1525 ret
= s3cmci_probe_dt(host
);
1527 ret
= s3cmci_probe_pdata(host
);
1530 goto probe_free_host
;
1532 host
->pdata
= pdev
->dev
.platform_data
;
1534 spin_lock_init(&host
->complete_lock
);
1535 tasklet_init(&host
->pio_tasklet
, pio_tasklet
, (unsigned long) host
);
1538 host
->sdiimsk
= S3C2440_SDIIMSK
;
1539 host
->sdidata
= S3C2440_SDIDATA
;
1542 host
->sdiimsk
= S3C2410_SDIIMSK
;
1543 host
->sdidata
= S3C2410_SDIDATA
;
1547 host
->complete_what
= COMPLETION_NONE
;
1548 host
->pio_active
= XFER_NONE
;
1550 host
->mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1553 "failed to get io memory region resource.\n");
1556 goto probe_free_host
;
1559 host
->mem
= request_mem_region(host
->mem
->start
,
1560 resource_size(host
->mem
), pdev
->name
);
1563 dev_err(&pdev
->dev
, "failed to request io memory region.\n");
1565 goto probe_free_host
;
1568 host
->base
= ioremap(host
->mem
->start
, resource_size(host
->mem
));
1570 dev_err(&pdev
->dev
, "failed to ioremap() io memory region.\n");
1572 goto probe_free_mem_region
;
1575 host
->irq
= platform_get_irq(pdev
, 0);
1576 if (host
->irq
<= 0) {
1581 if (request_irq(host
->irq
, s3cmci_irq
, 0, DRIVER_NAME
, host
)) {
1582 dev_err(&pdev
->dev
, "failed to request mci interrupt.\n");
1587 /* We get spurious interrupts even when we have set the IMSK
1588 * register to ignore everything, so use disable_irq() to make
1589 * ensure we don't lock the system with un-serviceable requests. */
1591 disable_irq(host
->irq
);
1592 host
->irq_state
= false;
1594 /* Depending on the dma state, get a DMA channel to use. */
1596 if (s3cmci_host_usedma(host
)) {
1597 host
->dma
= dma_request_chan(&pdev
->dev
, "rx-tx");
1598 ret
= PTR_ERR_OR_ZERO(host
->dma
);
1600 dev_err(&pdev
->dev
, "cannot get DMA channel.\n");
1601 goto probe_free_irq
;
1605 host
->clk
= clk_get(&pdev
->dev
, "sdi");
1606 if (IS_ERR(host
->clk
)) {
1607 dev_err(&pdev
->dev
, "failed to find clock source.\n");
1608 ret
= PTR_ERR(host
->clk
);
1610 goto probe_free_dma
;
1613 ret
= clk_prepare_enable(host
->clk
);
1615 dev_err(&pdev
->dev
, "failed to enable clock source.\n");
1619 host
->clk_rate
= clk_get_rate(host
->clk
);
1621 mmc
->ops
= &s3cmci_ops
;
1622 mmc
->ocr_avail
= MMC_VDD_32_33
| MMC_VDD_33_34
;
1623 #ifdef CONFIG_MMC_S3C_HW_SDIO_IRQ
1624 mmc
->caps
= MMC_CAP_4_BIT_DATA
| MMC_CAP_SDIO_IRQ
;
1626 mmc
->caps
= MMC_CAP_4_BIT_DATA
;
1628 mmc
->f_min
= host
->clk_rate
/ (host
->clk_div
* 256);
1629 mmc
->f_max
= host
->clk_rate
/ host
->clk_div
;
1631 if (host
->pdata
->ocr_avail
)
1632 mmc
->ocr_avail
= host
->pdata
->ocr_avail
;
1634 mmc
->max_blk_count
= 4095;
1635 mmc
->max_blk_size
= 4095;
1636 mmc
->max_req_size
= 4095 * 512;
1637 mmc
->max_seg_size
= mmc
->max_req_size
;
1639 mmc
->max_segs
= 128;
1641 dbg(host
, dbg_debug
,
1642 "probe: mode:%s mapped mci_base:%p irq:%u irq_cd:%u dma:%p.\n",
1643 (host
->is2440
?"2440":""),
1644 host
->base
, host
->irq
, host
->irq_cd
, host
->dma
);
1646 ret
= s3cmci_cpufreq_register(host
);
1648 dev_err(&pdev
->dev
, "failed to register cpufreq\n");
1652 ret
= mmc_add_host(mmc
);
1654 dev_err(&pdev
->dev
, "failed to add mmc host.\n");
1658 s3cmci_debugfs_attach(host
);
1660 platform_set_drvdata(pdev
, mmc
);
1661 dev_info(&pdev
->dev
, "%s - using %s, %s SDIO IRQ\n", mmc_hostname(mmc
),
1662 s3cmci_host_usedma(host
) ? "dma" : "pio",
1663 mmc
->caps
& MMC_CAP_SDIO_IRQ
? "hw" : "sw");
1668 s3cmci_cpufreq_deregister(host
);
1671 clk_disable_unprepare(host
->clk
);
1677 if (s3cmci_host_usedma(host
))
1678 dma_release_channel(host
->dma
);
1681 free_irq(host
->irq
, host
);
1684 iounmap(host
->base
);
1686 probe_free_mem_region
:
1687 release_mem_region(host
->mem
->start
, resource_size(host
->mem
));
1696 static void s3cmci_shutdown(struct platform_device
*pdev
)
1698 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
1699 struct s3cmci_host
*host
= mmc_priv(mmc
);
1701 if (host
->irq_cd
>= 0)
1702 free_irq(host
->irq_cd
, host
);
1704 s3cmci_debugfs_remove(host
);
1705 s3cmci_cpufreq_deregister(host
);
1706 mmc_remove_host(mmc
);
1707 clk_disable_unprepare(host
->clk
);
1710 static int s3cmci_remove(struct platform_device
*pdev
)
1712 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
1713 struct s3cmci_host
*host
= mmc_priv(mmc
);
1715 s3cmci_shutdown(pdev
);
1719 tasklet_disable(&host
->pio_tasklet
);
1721 if (s3cmci_host_usedma(host
))
1722 dma_release_channel(host
->dma
);
1724 free_irq(host
->irq
, host
);
1726 iounmap(host
->base
);
1727 release_mem_region(host
->mem
->start
, resource_size(host
->mem
));
1733 static const struct of_device_id s3cmci_dt_match
[] = {
1735 .compatible
= "samsung,s3c2410-sdi",
1739 .compatible
= "samsung,s3c2412-sdi",
1743 .compatible
= "samsung,s3c2440-sdi",
1748 MODULE_DEVICE_TABLE(of
, s3cmci_dt_match
);
1750 static const struct platform_device_id s3cmci_driver_ids
[] = {
1752 .name
= "s3c2410-sdi",
1755 .name
= "s3c2412-sdi",
1758 .name
= "s3c2440-sdi",
1764 MODULE_DEVICE_TABLE(platform
, s3cmci_driver_ids
);
1766 static struct platform_driver s3cmci_driver
= {
1769 .probe_type
= PROBE_PREFER_ASYNCHRONOUS
,
1770 .of_match_table
= s3cmci_dt_match
,
1772 .id_table
= s3cmci_driver_ids
,
1773 .probe
= s3cmci_probe
,
1774 .remove
= s3cmci_remove
,
1775 .shutdown
= s3cmci_shutdown
,
1778 module_platform_driver(s3cmci_driver
);
1780 MODULE_DESCRIPTION("Samsung S3C MMC/SD Card Interface driver");
1781 MODULE_LICENSE("GPL v2");
1782 MODULE_AUTHOR("Thomas Kleffel <tk@maintech.de>, Ben Dooks <ben-linux@fluff.org>");