2 * Synopsys DesignWare Multimedia Card Interface driver
3 * (Based on NXP driver for lpc 31xx)
5 * Copyright (C) 2009 NXP Semiconductors
6 * Copyright (C) 2009, 2010 Imagination Technologies Ltd.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/blkdev.h>
15 #include <linux/clk.h>
16 #include <linux/debugfs.h>
17 #include <linux/device.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/err.h>
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
22 #include <linux/iopoll.h>
23 #include <linux/ioport.h>
24 #include <linux/module.h>
25 #include <linux/platform_device.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/seq_file.h>
28 #include <linux/slab.h>
29 #include <linux/stat.h>
30 #include <linux/delay.h>
31 #include <linux/irq.h>
32 #include <linux/mmc/card.h>
33 #include <linux/mmc/host.h>
34 #include <linux/mmc/mmc.h>
35 #include <linux/mmc/sd.h>
36 #include <linux/mmc/sdio.h>
37 #include <linux/bitops.h>
38 #include <linux/regulator/consumer.h>
40 #include <linux/of_gpio.h>
41 #include <linux/mmc/slot-gpio.h>
45 /* Common flag combinations */
46 #define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DRTO | SDMMC_INT_DCRC | \
47 SDMMC_INT_HTO | SDMMC_INT_SBE | \
48 SDMMC_INT_EBE | SDMMC_INT_HLE)
49 #define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
50 SDMMC_INT_RESP_ERR | SDMMC_INT_HLE)
51 #define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
52 DW_MCI_CMD_ERROR_FLAGS)
53 #define DW_MCI_SEND_STATUS 1
54 #define DW_MCI_RECV_STATUS 2
55 #define DW_MCI_DMA_THRESHOLD 16
57 #define DW_MCI_FREQ_MAX 200000000 /* unit: HZ */
58 #define DW_MCI_FREQ_MIN 100000 /* unit: HZ */
60 #define IDMAC_INT_CLR (SDMMC_IDMAC_INT_AI | SDMMC_IDMAC_INT_NI | \
61 SDMMC_IDMAC_INT_CES | SDMMC_IDMAC_INT_DU | \
62 SDMMC_IDMAC_INT_FBE | SDMMC_IDMAC_INT_RI | \
65 #define DESC_RING_BUF_SZ PAGE_SIZE
67 struct idmac_desc_64addr
{
68 u32 des0
; /* Control Descriptor */
69 #define IDMAC_OWN_CLR64(x) \
70 !((x) & cpu_to_le32(IDMAC_DES0_OWN))
72 u32 des1
; /* Reserved */
74 u32 des2
; /*Buffer sizes */
75 #define IDMAC_64ADDR_SET_BUFFER1_SIZE(d, s) \
76 ((d)->des2 = ((d)->des2 & cpu_to_le32(0x03ffe000)) | \
77 ((cpu_to_le32(s)) & cpu_to_le32(0x1fff)))
79 u32 des3
; /* Reserved */
81 u32 des4
; /* Lower 32-bits of Buffer Address Pointer 1*/
82 u32 des5
; /* Upper 32-bits of Buffer Address Pointer 1*/
84 u32 des6
; /* Lower 32-bits of Next Descriptor Address */
85 u32 des7
; /* Upper 32-bits of Next Descriptor Address */
89 __le32 des0
; /* Control Descriptor */
90 #define IDMAC_DES0_DIC BIT(1)
91 #define IDMAC_DES0_LD BIT(2)
92 #define IDMAC_DES0_FD BIT(3)
93 #define IDMAC_DES0_CH BIT(4)
94 #define IDMAC_DES0_ER BIT(5)
95 #define IDMAC_DES0_CES BIT(30)
96 #define IDMAC_DES0_OWN BIT(31)
98 __le32 des1
; /* Buffer sizes */
99 #define IDMAC_SET_BUFFER1_SIZE(d, s) \
100 ((d)->des1 = ((d)->des1 & cpu_to_le32(0x03ffe000)) | (cpu_to_le32((s) & 0x1fff)))
102 __le32 des2
; /* buffer 1 physical address */
104 __le32 des3
; /* buffer 2 physical address */
107 /* Each descriptor can transfer up to 4KB of data in chained mode */
108 #define DW_MCI_DESC_DATA_LENGTH 0x1000
110 #if defined(CONFIG_DEBUG_FS)
111 static int dw_mci_req_show(struct seq_file
*s
, void *v
)
113 struct dw_mci_slot
*slot
= s
->private;
114 struct mmc_request
*mrq
;
115 struct mmc_command
*cmd
;
116 struct mmc_command
*stop
;
117 struct mmc_data
*data
;
119 /* Make sure we get a consistent snapshot */
120 spin_lock_bh(&slot
->host
->lock
);
130 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
131 cmd
->opcode
, cmd
->arg
, cmd
->flags
,
132 cmd
->resp
[0], cmd
->resp
[1], cmd
->resp
[2],
133 cmd
->resp
[2], cmd
->error
);
135 seq_printf(s
, "DATA %u / %u * %u flg %x err %d\n",
136 data
->bytes_xfered
, data
->blocks
,
137 data
->blksz
, data
->flags
, data
->error
);
140 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
141 stop
->opcode
, stop
->arg
, stop
->flags
,
142 stop
->resp
[0], stop
->resp
[1], stop
->resp
[2],
143 stop
->resp
[2], stop
->error
);
146 spin_unlock_bh(&slot
->host
->lock
);
151 static int dw_mci_req_open(struct inode
*inode
, struct file
*file
)
153 return single_open(file
, dw_mci_req_show
, inode
->i_private
);
156 static const struct file_operations dw_mci_req_fops
= {
157 .owner
= THIS_MODULE
,
158 .open
= dw_mci_req_open
,
161 .release
= single_release
,
164 static int dw_mci_regs_show(struct seq_file
*s
, void *v
)
166 struct dw_mci
*host
= s
->private;
168 seq_printf(s
, "STATUS:\t0x%08x\n", mci_readl(host
, STATUS
));
169 seq_printf(s
, "RINTSTS:\t0x%08x\n", mci_readl(host
, RINTSTS
));
170 seq_printf(s
, "CMD:\t0x%08x\n", mci_readl(host
, CMD
));
171 seq_printf(s
, "CTRL:\t0x%08x\n", mci_readl(host
, CTRL
));
172 seq_printf(s
, "INTMASK:\t0x%08x\n", mci_readl(host
, INTMASK
));
173 seq_printf(s
, "CLKENA:\t0x%08x\n", mci_readl(host
, CLKENA
));
178 static int dw_mci_regs_open(struct inode
*inode
, struct file
*file
)
180 return single_open(file
, dw_mci_regs_show
, inode
->i_private
);
183 static const struct file_operations dw_mci_regs_fops
= {
184 .owner
= THIS_MODULE
,
185 .open
= dw_mci_regs_open
,
188 .release
= single_release
,
191 static void dw_mci_init_debugfs(struct dw_mci_slot
*slot
)
193 struct mmc_host
*mmc
= slot
->mmc
;
194 struct dw_mci
*host
= slot
->host
;
198 root
= mmc
->debugfs_root
;
202 node
= debugfs_create_file("regs", S_IRUSR
, root
, host
,
207 node
= debugfs_create_file("req", S_IRUSR
, root
, slot
,
212 node
= debugfs_create_u32("state", S_IRUSR
, root
, (u32
*)&host
->state
);
216 node
= debugfs_create_x32("pending_events", S_IRUSR
, root
,
217 (u32
*)&host
->pending_events
);
221 node
= debugfs_create_x32("completed_events", S_IRUSR
, root
,
222 (u32
*)&host
->completed_events
);
229 dev_err(&mmc
->class_dev
, "failed to initialize debugfs for slot\n");
231 #endif /* defined(CONFIG_DEBUG_FS) */
233 static bool dw_mci_ctrl_reset(struct dw_mci
*host
, u32 reset
)
237 ctrl
= mci_readl(host
, CTRL
);
239 mci_writel(host
, CTRL
, ctrl
);
241 /* wait till resets clear */
242 if (readl_poll_timeout_atomic(host
->regs
+ SDMMC_CTRL
, ctrl
,
244 1, 500 * USEC_PER_MSEC
)) {
246 "Timeout resetting block (ctrl reset %#x)\n",
254 static void dw_mci_wait_while_busy(struct dw_mci
*host
, u32 cmd_flags
)
259 * Databook says that before issuing a new data transfer command
260 * we need to check to see if the card is busy. Data transfer commands
261 * all have SDMMC_CMD_PRV_DAT_WAIT set, so we'll key off that.
263 * ...also allow sending for SDMMC_CMD_VOLT_SWITCH where busy is
266 if ((cmd_flags
& SDMMC_CMD_PRV_DAT_WAIT
) &&
267 !(cmd_flags
& SDMMC_CMD_VOLT_SWITCH
)) {
268 if (readl_poll_timeout_atomic(host
->regs
+ SDMMC_STATUS
,
270 !(status
& SDMMC_STATUS_BUSY
),
271 10, 500 * USEC_PER_MSEC
))
272 dev_err(host
->dev
, "Busy; trying anyway\n");
276 static void mci_send_cmd(struct dw_mci_slot
*slot
, u32 cmd
, u32 arg
)
278 struct dw_mci
*host
= slot
->host
;
279 unsigned int cmd_status
= 0;
281 mci_writel(host
, CMDARG
, arg
);
282 wmb(); /* drain writebuffer */
283 dw_mci_wait_while_busy(host
, cmd
);
284 mci_writel(host
, CMD
, SDMMC_CMD_START
| cmd
);
286 if (readl_poll_timeout_atomic(host
->regs
+ SDMMC_CMD
, cmd_status
,
287 !(cmd_status
& SDMMC_CMD_START
),
288 1, 500 * USEC_PER_MSEC
))
289 dev_err(&slot
->mmc
->class_dev
,
290 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
291 cmd
, arg
, cmd_status
);
294 static u32
dw_mci_prepare_command(struct mmc_host
*mmc
, struct mmc_command
*cmd
)
296 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
297 struct dw_mci
*host
= slot
->host
;
300 cmd
->error
= -EINPROGRESS
;
303 if (cmd
->opcode
== MMC_STOP_TRANSMISSION
||
304 cmd
->opcode
== MMC_GO_IDLE_STATE
||
305 cmd
->opcode
== MMC_GO_INACTIVE_STATE
||
306 (cmd
->opcode
== SD_IO_RW_DIRECT
&&
307 ((cmd
->arg
>> 9) & 0x1FFFF) == SDIO_CCCR_ABORT
))
308 cmdr
|= SDMMC_CMD_STOP
;
309 else if (cmd
->opcode
!= MMC_SEND_STATUS
&& cmd
->data
)
310 cmdr
|= SDMMC_CMD_PRV_DAT_WAIT
;
312 if (cmd
->opcode
== SD_SWITCH_VOLTAGE
) {
315 /* Special bit makes CMD11 not die */
316 cmdr
|= SDMMC_CMD_VOLT_SWITCH
;
318 /* Change state to continue to handle CMD11 weirdness */
319 WARN_ON(slot
->host
->state
!= STATE_SENDING_CMD
);
320 slot
->host
->state
= STATE_SENDING_CMD11
;
323 * We need to disable low power mode (automatic clock stop)
324 * while doing voltage switch so we don't confuse the card,
325 * since stopping the clock is a specific part of the UHS
326 * voltage change dance.
328 * Note that low power mode (SDMMC_CLKEN_LOW_PWR) will be
329 * unconditionally turned back on in dw_mci_setup_bus() if it's
330 * ever called with a non-zero clock. That shouldn't happen
331 * until the voltage change is all done.
333 clk_en_a
= mci_readl(host
, CLKENA
);
334 clk_en_a
&= ~(SDMMC_CLKEN_LOW_PWR
<< slot
->id
);
335 mci_writel(host
, CLKENA
, clk_en_a
);
336 mci_send_cmd(slot
, SDMMC_CMD_UPD_CLK
|
337 SDMMC_CMD_PRV_DAT_WAIT
, 0);
340 if (cmd
->flags
& MMC_RSP_PRESENT
) {
341 /* We expect a response, so set this bit */
342 cmdr
|= SDMMC_CMD_RESP_EXP
;
343 if (cmd
->flags
& MMC_RSP_136
)
344 cmdr
|= SDMMC_CMD_RESP_LONG
;
347 if (cmd
->flags
& MMC_RSP_CRC
)
348 cmdr
|= SDMMC_CMD_RESP_CRC
;
351 cmdr
|= SDMMC_CMD_DAT_EXP
;
352 if (cmd
->data
->flags
& MMC_DATA_WRITE
)
353 cmdr
|= SDMMC_CMD_DAT_WR
;
356 if (!test_bit(DW_MMC_CARD_NO_USE_HOLD
, &slot
->flags
))
357 cmdr
|= SDMMC_CMD_USE_HOLD_REG
;
362 static u32
dw_mci_prep_stop_abort(struct dw_mci
*host
, struct mmc_command
*cmd
)
364 struct mmc_command
*stop
;
370 stop
= &host
->stop_abort
;
372 memset(stop
, 0, sizeof(struct mmc_command
));
374 if (cmdr
== MMC_READ_SINGLE_BLOCK
||
375 cmdr
== MMC_READ_MULTIPLE_BLOCK
||
376 cmdr
== MMC_WRITE_BLOCK
||
377 cmdr
== MMC_WRITE_MULTIPLE_BLOCK
||
378 cmdr
== MMC_SEND_TUNING_BLOCK
||
379 cmdr
== MMC_SEND_TUNING_BLOCK_HS200
) {
380 stop
->opcode
= MMC_STOP_TRANSMISSION
;
382 stop
->flags
= MMC_RSP_R1B
| MMC_CMD_AC
;
383 } else if (cmdr
== SD_IO_RW_EXTENDED
) {
384 stop
->opcode
= SD_IO_RW_DIRECT
;
385 stop
->arg
|= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT
<< 9) |
386 ((cmd
->arg
>> 28) & 0x7);
387 stop
->flags
= MMC_RSP_SPI_R5
| MMC_RSP_R5
| MMC_CMD_AC
;
392 cmdr
= stop
->opcode
| SDMMC_CMD_STOP
|
393 SDMMC_CMD_RESP_CRC
| SDMMC_CMD_RESP_EXP
;
395 if (!test_bit(DW_MMC_CARD_NO_USE_HOLD
, &host
->slot
->flags
))
396 cmdr
|= SDMMC_CMD_USE_HOLD_REG
;
401 static inline void dw_mci_set_cto(struct dw_mci
*host
)
403 unsigned int cto_clks
;
406 cto_clks
= mci_readl(host
, TMOUT
) & 0xff;
407 cto_ms
= DIV_ROUND_UP(cto_clks
, host
->bus_hz
/ 1000);
409 /* add a bit spare time */
412 mod_timer(&host
->cto_timer
,
413 jiffies
+ msecs_to_jiffies(cto_ms
) + 1);
416 static void dw_mci_start_command(struct dw_mci
*host
,
417 struct mmc_command
*cmd
, u32 cmd_flags
)
421 "start command: ARGR=0x%08x CMDR=0x%08x\n",
422 cmd
->arg
, cmd_flags
);
424 mci_writel(host
, CMDARG
, cmd
->arg
);
425 wmb(); /* drain writebuffer */
426 dw_mci_wait_while_busy(host
, cmd_flags
);
428 /* response expected command only */
429 if (cmd_flags
& SDMMC_CMD_RESP_EXP
)
430 dw_mci_set_cto(host
);
432 mci_writel(host
, CMD
, cmd_flags
| SDMMC_CMD_START
);
435 static inline void send_stop_abort(struct dw_mci
*host
, struct mmc_data
*data
)
437 struct mmc_command
*stop
= &host
->stop_abort
;
439 dw_mci_start_command(host
, stop
, host
->stop_cmdr
);
442 /* DMA interface functions */
443 static void dw_mci_stop_dma(struct dw_mci
*host
)
445 if (host
->using_dma
) {
446 host
->dma_ops
->stop(host
);
447 host
->dma_ops
->cleanup(host
);
450 /* Data transfer was stopped by the interrupt handler */
451 set_bit(EVENT_XFER_COMPLETE
, &host
->pending_events
);
454 static void dw_mci_dma_cleanup(struct dw_mci
*host
)
456 struct mmc_data
*data
= host
->data
;
458 if (data
&& data
->host_cookie
== COOKIE_MAPPED
) {
459 dma_unmap_sg(host
->dev
,
462 mmc_get_dma_dir(data
));
463 data
->host_cookie
= COOKIE_UNMAPPED
;
467 static void dw_mci_idmac_reset(struct dw_mci
*host
)
469 u32 bmod
= mci_readl(host
, BMOD
);
470 /* Software reset of DMA */
471 bmod
|= SDMMC_IDMAC_SWRESET
;
472 mci_writel(host
, BMOD
, bmod
);
475 static void dw_mci_idmac_stop_dma(struct dw_mci
*host
)
479 /* Disable and reset the IDMAC interface */
480 temp
= mci_readl(host
, CTRL
);
481 temp
&= ~SDMMC_CTRL_USE_IDMAC
;
482 temp
|= SDMMC_CTRL_DMA_RESET
;
483 mci_writel(host
, CTRL
, temp
);
485 /* Stop the IDMAC running */
486 temp
= mci_readl(host
, BMOD
);
487 temp
&= ~(SDMMC_IDMAC_ENABLE
| SDMMC_IDMAC_FB
);
488 temp
|= SDMMC_IDMAC_SWRESET
;
489 mci_writel(host
, BMOD
, temp
);
492 static void dw_mci_dmac_complete_dma(void *arg
)
494 struct dw_mci
*host
= arg
;
495 struct mmc_data
*data
= host
->data
;
497 dev_vdbg(host
->dev
, "DMA complete\n");
499 if ((host
->use_dma
== TRANS_MODE_EDMAC
) &&
500 data
&& (data
->flags
& MMC_DATA_READ
))
501 /* Invalidate cache after read */
502 dma_sync_sg_for_cpu(mmc_dev(host
->slot
->mmc
),
507 host
->dma_ops
->cleanup(host
);
510 * If the card was removed, data will be NULL. No point in trying to
511 * send the stop command or waiting for NBUSY in this case.
514 set_bit(EVENT_XFER_COMPLETE
, &host
->pending_events
);
515 tasklet_schedule(&host
->tasklet
);
519 static int dw_mci_idmac_init(struct dw_mci
*host
)
523 if (host
->dma_64bit_address
== 1) {
524 struct idmac_desc_64addr
*p
;
525 /* Number of descriptors in the ring buffer */
527 DESC_RING_BUF_SZ
/ sizeof(struct idmac_desc_64addr
);
529 /* Forward link the descriptor list */
530 for (i
= 0, p
= host
->sg_cpu
; i
< host
->ring_size
- 1;
532 p
->des6
= (host
->sg_dma
+
533 (sizeof(struct idmac_desc_64addr
) *
534 (i
+ 1))) & 0xffffffff;
536 p
->des7
= (u64
)(host
->sg_dma
+
537 (sizeof(struct idmac_desc_64addr
) *
539 /* Initialize reserved and buffer size fields to "0" */
545 /* Set the last descriptor as the end-of-ring descriptor */
546 p
->des6
= host
->sg_dma
& 0xffffffff;
547 p
->des7
= (u64
)host
->sg_dma
>> 32;
548 p
->des0
= IDMAC_DES0_ER
;
551 struct idmac_desc
*p
;
552 /* Number of descriptors in the ring buffer */
554 DESC_RING_BUF_SZ
/ sizeof(struct idmac_desc
);
556 /* Forward link the descriptor list */
557 for (i
= 0, p
= host
->sg_cpu
;
558 i
< host
->ring_size
- 1;
560 p
->des3
= cpu_to_le32(host
->sg_dma
+
561 (sizeof(struct idmac_desc
) * (i
+ 1)));
565 /* Set the last descriptor as the end-of-ring descriptor */
566 p
->des3
= cpu_to_le32(host
->sg_dma
);
567 p
->des0
= cpu_to_le32(IDMAC_DES0_ER
);
570 dw_mci_idmac_reset(host
);
572 if (host
->dma_64bit_address
== 1) {
573 /* Mask out interrupts - get Tx & Rx complete only */
574 mci_writel(host
, IDSTS64
, IDMAC_INT_CLR
);
575 mci_writel(host
, IDINTEN64
, SDMMC_IDMAC_INT_NI
|
576 SDMMC_IDMAC_INT_RI
| SDMMC_IDMAC_INT_TI
);
578 /* Set the descriptor base address */
579 mci_writel(host
, DBADDRL
, host
->sg_dma
& 0xffffffff);
580 mci_writel(host
, DBADDRU
, (u64
)host
->sg_dma
>> 32);
583 /* Mask out interrupts - get Tx & Rx complete only */
584 mci_writel(host
, IDSTS
, IDMAC_INT_CLR
);
585 mci_writel(host
, IDINTEN
, SDMMC_IDMAC_INT_NI
|
586 SDMMC_IDMAC_INT_RI
| SDMMC_IDMAC_INT_TI
);
588 /* Set the descriptor base address */
589 mci_writel(host
, DBADDR
, host
->sg_dma
);
595 static inline int dw_mci_prepare_desc64(struct dw_mci
*host
,
596 struct mmc_data
*data
,
599 unsigned int desc_len
;
600 struct idmac_desc_64addr
*desc_first
, *desc_last
, *desc
;
604 desc_first
= desc_last
= desc
= host
->sg_cpu
;
606 for (i
= 0; i
< sg_len
; i
++) {
607 unsigned int length
= sg_dma_len(&data
->sg
[i
]);
609 u64 mem_addr
= sg_dma_address(&data
->sg
[i
]);
611 for ( ; length
; desc
++) {
612 desc_len
= (length
<= DW_MCI_DESC_DATA_LENGTH
) ?
613 length
: DW_MCI_DESC_DATA_LENGTH
;
618 * Wait for the former clear OWN bit operation
619 * of IDMAC to make sure that this descriptor
620 * isn't still owned by IDMAC as IDMAC's write
621 * ops and CPU's read ops are asynchronous.
623 if (readl_poll_timeout_atomic(&desc
->des0
, val
,
624 !(val
& IDMAC_DES0_OWN
),
625 10, 100 * USEC_PER_MSEC
))
629 * Set the OWN bit and disable interrupts
630 * for this descriptor
632 desc
->des0
= IDMAC_DES0_OWN
| IDMAC_DES0_DIC
|
636 IDMAC_64ADDR_SET_BUFFER1_SIZE(desc
, desc_len
);
638 /* Physical address to DMA to/from */
639 desc
->des4
= mem_addr
& 0xffffffff;
640 desc
->des5
= mem_addr
>> 32;
642 /* Update physical address for the next desc */
643 mem_addr
+= desc_len
;
645 /* Save pointer to the last descriptor */
650 /* Set first descriptor */
651 desc_first
->des0
|= IDMAC_DES0_FD
;
653 /* Set last descriptor */
654 desc_last
->des0
&= ~(IDMAC_DES0_CH
| IDMAC_DES0_DIC
);
655 desc_last
->des0
|= IDMAC_DES0_LD
;
659 /* restore the descriptor chain as it's polluted */
660 dev_dbg(host
->dev
, "descriptor is still owned by IDMAC.\n");
661 memset(host
->sg_cpu
, 0, DESC_RING_BUF_SZ
);
662 dw_mci_idmac_init(host
);
667 static inline int dw_mci_prepare_desc32(struct dw_mci
*host
,
668 struct mmc_data
*data
,
671 unsigned int desc_len
;
672 struct idmac_desc
*desc_first
, *desc_last
, *desc
;
676 desc_first
= desc_last
= desc
= host
->sg_cpu
;
678 for (i
= 0; i
< sg_len
; i
++) {
679 unsigned int length
= sg_dma_len(&data
->sg
[i
]);
681 u32 mem_addr
= sg_dma_address(&data
->sg
[i
]);
683 for ( ; length
; desc
++) {
684 desc_len
= (length
<= DW_MCI_DESC_DATA_LENGTH
) ?
685 length
: DW_MCI_DESC_DATA_LENGTH
;
690 * Wait for the former clear OWN bit operation
691 * of IDMAC to make sure that this descriptor
692 * isn't still owned by IDMAC as IDMAC's write
693 * ops and CPU's read ops are asynchronous.
695 if (readl_poll_timeout_atomic(&desc
->des0
, val
,
696 IDMAC_OWN_CLR64(val
),
698 100 * USEC_PER_MSEC
))
702 * Set the OWN bit and disable interrupts
703 * for this descriptor
705 desc
->des0
= cpu_to_le32(IDMAC_DES0_OWN
|
710 IDMAC_SET_BUFFER1_SIZE(desc
, desc_len
);
712 /* Physical address to DMA to/from */
713 desc
->des2
= cpu_to_le32(mem_addr
);
715 /* Update physical address for the next desc */
716 mem_addr
+= desc_len
;
718 /* Save pointer to the last descriptor */
723 /* Set first descriptor */
724 desc_first
->des0
|= cpu_to_le32(IDMAC_DES0_FD
);
726 /* Set last descriptor */
727 desc_last
->des0
&= cpu_to_le32(~(IDMAC_DES0_CH
|
729 desc_last
->des0
|= cpu_to_le32(IDMAC_DES0_LD
);
733 /* restore the descriptor chain as it's polluted */
734 dev_dbg(host
->dev
, "descriptor is still owned by IDMAC.\n");
735 memset(host
->sg_cpu
, 0, DESC_RING_BUF_SZ
);
736 dw_mci_idmac_init(host
);
740 static int dw_mci_idmac_start_dma(struct dw_mci
*host
, unsigned int sg_len
)
745 if (host
->dma_64bit_address
== 1)
746 ret
= dw_mci_prepare_desc64(host
, host
->data
, sg_len
);
748 ret
= dw_mci_prepare_desc32(host
, host
->data
, sg_len
);
753 /* drain writebuffer */
756 /* Make sure to reset DMA in case we did PIO before this */
757 dw_mci_ctrl_reset(host
, SDMMC_CTRL_DMA_RESET
);
758 dw_mci_idmac_reset(host
);
760 /* Select IDMAC interface */
761 temp
= mci_readl(host
, CTRL
);
762 temp
|= SDMMC_CTRL_USE_IDMAC
;
763 mci_writel(host
, CTRL
, temp
);
765 /* drain writebuffer */
768 /* Enable the IDMAC */
769 temp
= mci_readl(host
, BMOD
);
770 temp
|= SDMMC_IDMAC_ENABLE
| SDMMC_IDMAC_FB
;
771 mci_writel(host
, BMOD
, temp
);
773 /* Start it running */
774 mci_writel(host
, PLDMND
, 1);
780 static const struct dw_mci_dma_ops dw_mci_idmac_ops
= {
781 .init
= dw_mci_idmac_init
,
782 .start
= dw_mci_idmac_start_dma
,
783 .stop
= dw_mci_idmac_stop_dma
,
784 .complete
= dw_mci_dmac_complete_dma
,
785 .cleanup
= dw_mci_dma_cleanup
,
788 static void dw_mci_edmac_stop_dma(struct dw_mci
*host
)
790 dmaengine_terminate_async(host
->dms
->ch
);
793 static int dw_mci_edmac_start_dma(struct dw_mci
*host
,
796 struct dma_slave_config cfg
;
797 struct dma_async_tx_descriptor
*desc
= NULL
;
798 struct scatterlist
*sgl
= host
->data
->sg
;
799 const u32 mszs
[] = {1, 4, 8, 16, 32, 64, 128, 256};
800 u32 sg_elems
= host
->data
->sg_len
;
802 u32 fifo_offset
= host
->fifo_reg
- host
->regs
;
805 /* Set external dma config: burst size, burst width */
806 cfg
.dst_addr
= host
->phy_regs
+ fifo_offset
;
807 cfg
.src_addr
= cfg
.dst_addr
;
808 cfg
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
809 cfg
.src_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
811 /* Match burst msize with external dma config */
812 fifoth_val
= mci_readl(host
, FIFOTH
);
813 cfg
.dst_maxburst
= mszs
[(fifoth_val
>> 28) & 0x7];
814 cfg
.src_maxburst
= cfg
.dst_maxburst
;
816 if (host
->data
->flags
& MMC_DATA_WRITE
)
817 cfg
.direction
= DMA_MEM_TO_DEV
;
819 cfg
.direction
= DMA_DEV_TO_MEM
;
821 ret
= dmaengine_slave_config(host
->dms
->ch
, &cfg
);
823 dev_err(host
->dev
, "Failed to config edmac.\n");
827 desc
= dmaengine_prep_slave_sg(host
->dms
->ch
, sgl
,
828 sg_len
, cfg
.direction
,
829 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
831 dev_err(host
->dev
, "Can't prepare slave sg.\n");
835 /* Set dw_mci_dmac_complete_dma as callback */
836 desc
->callback
= dw_mci_dmac_complete_dma
;
837 desc
->callback_param
= (void *)host
;
838 dmaengine_submit(desc
);
840 /* Flush cache before write */
841 if (host
->data
->flags
& MMC_DATA_WRITE
)
842 dma_sync_sg_for_device(mmc_dev(host
->slot
->mmc
), sgl
,
843 sg_elems
, DMA_TO_DEVICE
);
845 dma_async_issue_pending(host
->dms
->ch
);
850 static int dw_mci_edmac_init(struct dw_mci
*host
)
852 /* Request external dma channel */
853 host
->dms
= kzalloc(sizeof(struct dw_mci_dma_slave
), GFP_KERNEL
);
857 host
->dms
->ch
= dma_request_slave_channel(host
->dev
, "rx-tx");
858 if (!host
->dms
->ch
) {
859 dev_err(host
->dev
, "Failed to get external DMA channel.\n");
868 static void dw_mci_edmac_exit(struct dw_mci
*host
)
872 dma_release_channel(host
->dms
->ch
);
873 host
->dms
->ch
= NULL
;
880 static const struct dw_mci_dma_ops dw_mci_edmac_ops
= {
881 .init
= dw_mci_edmac_init
,
882 .exit
= dw_mci_edmac_exit
,
883 .start
= dw_mci_edmac_start_dma
,
884 .stop
= dw_mci_edmac_stop_dma
,
885 .complete
= dw_mci_dmac_complete_dma
,
886 .cleanup
= dw_mci_dma_cleanup
,
889 static int dw_mci_pre_dma_transfer(struct dw_mci
*host
,
890 struct mmc_data
*data
,
893 struct scatterlist
*sg
;
894 unsigned int i
, sg_len
;
896 if (data
->host_cookie
== COOKIE_PRE_MAPPED
)
900 * We don't do DMA on "complex" transfers, i.e. with
901 * non-word-aligned buffers or lengths. Also, we don't bother
902 * with all the DMA setup overhead for short transfers.
904 if (data
->blocks
* data
->blksz
< DW_MCI_DMA_THRESHOLD
)
910 for_each_sg(data
->sg
, sg
, data
->sg_len
, i
) {
911 if (sg
->offset
& 3 || sg
->length
& 3)
915 sg_len
= dma_map_sg(host
->dev
,
918 mmc_get_dma_dir(data
));
922 data
->host_cookie
= cookie
;
927 static void dw_mci_pre_req(struct mmc_host
*mmc
,
928 struct mmc_request
*mrq
)
930 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
931 struct mmc_data
*data
= mrq
->data
;
933 if (!slot
->host
->use_dma
|| !data
)
936 /* This data might be unmapped at this time */
937 data
->host_cookie
= COOKIE_UNMAPPED
;
939 if (dw_mci_pre_dma_transfer(slot
->host
, mrq
->data
,
940 COOKIE_PRE_MAPPED
) < 0)
941 data
->host_cookie
= COOKIE_UNMAPPED
;
944 static void dw_mci_post_req(struct mmc_host
*mmc
,
945 struct mmc_request
*mrq
,
948 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
949 struct mmc_data
*data
= mrq
->data
;
951 if (!slot
->host
->use_dma
|| !data
)
954 if (data
->host_cookie
!= COOKIE_UNMAPPED
)
955 dma_unmap_sg(slot
->host
->dev
,
958 mmc_get_dma_dir(data
));
959 data
->host_cookie
= COOKIE_UNMAPPED
;
962 static int dw_mci_get_cd(struct mmc_host
*mmc
)
965 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
966 struct dw_mci
*host
= slot
->host
;
967 int gpio_cd
= mmc_gpio_get_cd(mmc
);
969 /* Use platform get_cd function, else try onboard card detect */
970 if (((mmc
->caps
& MMC_CAP_NEEDS_POLL
)
971 || !mmc_card_is_removable(mmc
))) {
974 if (!test_bit(DW_MMC_CARD_PRESENT
, &slot
->flags
)) {
975 if (mmc
->caps
& MMC_CAP_NEEDS_POLL
) {
976 dev_info(&mmc
->class_dev
,
977 "card is polling.\n");
979 dev_info(&mmc
->class_dev
,
980 "card is non-removable.\n");
982 set_bit(DW_MMC_CARD_PRESENT
, &slot
->flags
);
986 } else if (gpio_cd
>= 0)
989 present
= (mci_readl(slot
->host
, CDETECT
) & (1 << slot
->id
))
992 spin_lock_bh(&host
->lock
);
993 if (present
&& !test_and_set_bit(DW_MMC_CARD_PRESENT
, &slot
->flags
))
994 dev_dbg(&mmc
->class_dev
, "card is present\n");
996 !test_and_clear_bit(DW_MMC_CARD_PRESENT
, &slot
->flags
))
997 dev_dbg(&mmc
->class_dev
, "card is not present\n");
998 spin_unlock_bh(&host
->lock
);
1003 static void dw_mci_adjust_fifoth(struct dw_mci
*host
, struct mmc_data
*data
)
1005 unsigned int blksz
= data
->blksz
;
1006 const u32 mszs
[] = {1, 4, 8, 16, 32, 64, 128, 256};
1007 u32 fifo_width
= 1 << host
->data_shift
;
1008 u32 blksz_depth
= blksz
/ fifo_width
, fifoth_val
;
1009 u32 msize
= 0, rx_wmark
= 1, tx_wmark
, tx_wmark_invers
;
1010 int idx
= ARRAY_SIZE(mszs
) - 1;
1012 /* pio should ship this scenario */
1016 tx_wmark
= (host
->fifo_depth
) / 2;
1017 tx_wmark_invers
= host
->fifo_depth
- tx_wmark
;
1021 * if blksz is not a multiple of the FIFO width
1023 if (blksz
% fifo_width
)
1027 if (!((blksz_depth
% mszs
[idx
]) ||
1028 (tx_wmark_invers
% mszs
[idx
]))) {
1030 rx_wmark
= mszs
[idx
] - 1;
1033 } while (--idx
> 0);
1035 * If idx is '0', it won't be tried
1036 * Thus, initial values are uesed
1039 fifoth_val
= SDMMC_SET_FIFOTH(msize
, rx_wmark
, tx_wmark
);
1040 mci_writel(host
, FIFOTH
, fifoth_val
);
1043 static void dw_mci_ctrl_thld(struct dw_mci
*host
, struct mmc_data
*data
)
1045 unsigned int blksz
= data
->blksz
;
1046 u32 blksz_depth
, fifo_depth
;
1051 * CDTHRCTL doesn't exist prior to 240A (in fact that register offset is
1052 * in the FIFO region, so we really shouldn't access it).
1054 if (host
->verid
< DW_MMC_240A
||
1055 (host
->verid
< DW_MMC_280A
&& data
->flags
& MMC_DATA_WRITE
))
1059 * Card write Threshold is introduced since 2.80a
1060 * It's used when HS400 mode is enabled.
1062 if (data
->flags
& MMC_DATA_WRITE
&&
1063 !(host
->timing
!= MMC_TIMING_MMC_HS400
))
1066 if (data
->flags
& MMC_DATA_WRITE
)
1067 enable
= SDMMC_CARD_WR_THR_EN
;
1069 enable
= SDMMC_CARD_RD_THR_EN
;
1071 if (host
->timing
!= MMC_TIMING_MMC_HS200
&&
1072 host
->timing
!= MMC_TIMING_UHS_SDR104
)
1075 blksz_depth
= blksz
/ (1 << host
->data_shift
);
1076 fifo_depth
= host
->fifo_depth
;
1078 if (blksz_depth
> fifo_depth
)
1082 * If (blksz_depth) >= (fifo_depth >> 1), should be 'thld_size <= blksz'
1083 * If (blksz_depth) < (fifo_depth >> 1), should be thld_size = blksz
1084 * Currently just choose blksz.
1087 mci_writel(host
, CDTHRCTL
, SDMMC_SET_THLD(thld_size
, enable
));
1091 mci_writel(host
, CDTHRCTL
, 0);
1094 static int dw_mci_submit_data_dma(struct dw_mci
*host
, struct mmc_data
*data
)
1096 unsigned long irqflags
;
1100 host
->using_dma
= 0;
1102 /* If we don't have a channel, we can't do DMA */
1106 sg_len
= dw_mci_pre_dma_transfer(host
, data
, COOKIE_MAPPED
);
1108 host
->dma_ops
->stop(host
);
1112 host
->using_dma
= 1;
1114 if (host
->use_dma
== TRANS_MODE_IDMAC
)
1116 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
1117 (unsigned long)host
->sg_cpu
,
1118 (unsigned long)host
->sg_dma
,
1122 * Decide the MSIZE and RX/TX Watermark.
1123 * If current block size is same with previous size,
1124 * no need to update fifoth.
1126 if (host
->prev_blksz
!= data
->blksz
)
1127 dw_mci_adjust_fifoth(host
, data
);
1129 /* Enable the DMA interface */
1130 temp
= mci_readl(host
, CTRL
);
1131 temp
|= SDMMC_CTRL_DMA_ENABLE
;
1132 mci_writel(host
, CTRL
, temp
);
1134 /* Disable RX/TX IRQs, let DMA handle it */
1135 spin_lock_irqsave(&host
->irq_lock
, irqflags
);
1136 temp
= mci_readl(host
, INTMASK
);
1137 temp
&= ~(SDMMC_INT_RXDR
| SDMMC_INT_TXDR
);
1138 mci_writel(host
, INTMASK
, temp
);
1139 spin_unlock_irqrestore(&host
->irq_lock
, irqflags
);
1141 if (host
->dma_ops
->start(host
, sg_len
)) {
1142 host
->dma_ops
->stop(host
);
1143 /* We can't do DMA, try PIO for this one */
1145 "%s: fall back to PIO mode for current transfer\n",
1153 static void dw_mci_submit_data(struct dw_mci
*host
, struct mmc_data
*data
)
1155 unsigned long irqflags
;
1156 int flags
= SG_MITER_ATOMIC
;
1159 data
->error
= -EINPROGRESS
;
1161 WARN_ON(host
->data
);
1165 if (data
->flags
& MMC_DATA_READ
)
1166 host
->dir_status
= DW_MCI_RECV_STATUS
;
1168 host
->dir_status
= DW_MCI_SEND_STATUS
;
1170 dw_mci_ctrl_thld(host
, data
);
1172 if (dw_mci_submit_data_dma(host
, data
)) {
1173 if (host
->data
->flags
& MMC_DATA_READ
)
1174 flags
|= SG_MITER_TO_SG
;
1176 flags
|= SG_MITER_FROM_SG
;
1178 sg_miter_start(&host
->sg_miter
, data
->sg
, data
->sg_len
, flags
);
1179 host
->sg
= data
->sg
;
1180 host
->part_buf_start
= 0;
1181 host
->part_buf_count
= 0;
1183 mci_writel(host
, RINTSTS
, SDMMC_INT_TXDR
| SDMMC_INT_RXDR
);
1185 spin_lock_irqsave(&host
->irq_lock
, irqflags
);
1186 temp
= mci_readl(host
, INTMASK
);
1187 temp
|= SDMMC_INT_TXDR
| SDMMC_INT_RXDR
;
1188 mci_writel(host
, INTMASK
, temp
);
1189 spin_unlock_irqrestore(&host
->irq_lock
, irqflags
);
1191 temp
= mci_readl(host
, CTRL
);
1192 temp
&= ~SDMMC_CTRL_DMA_ENABLE
;
1193 mci_writel(host
, CTRL
, temp
);
1196 * Use the initial fifoth_val for PIO mode. If wm_algined
1197 * is set, we set watermark same as data size.
1198 * If next issued data may be transfered by DMA mode,
1199 * prev_blksz should be invalidated.
1201 if (host
->wm_aligned
)
1202 dw_mci_adjust_fifoth(host
, data
);
1204 mci_writel(host
, FIFOTH
, host
->fifoth_val
);
1205 host
->prev_blksz
= 0;
1208 * Keep the current block size.
1209 * It will be used to decide whether to update
1210 * fifoth register next time.
1212 host
->prev_blksz
= data
->blksz
;
1216 static void dw_mci_setup_bus(struct dw_mci_slot
*slot
, bool force_clkinit
)
1218 struct dw_mci
*host
= slot
->host
;
1219 unsigned int clock
= slot
->clock
;
1222 u32 sdmmc_cmd_bits
= SDMMC_CMD_UPD_CLK
| SDMMC_CMD_PRV_DAT_WAIT
;
1224 /* We must continue to set bit 28 in CMD until the change is complete */
1225 if (host
->state
== STATE_WAITING_CMD11_DONE
)
1226 sdmmc_cmd_bits
|= SDMMC_CMD_VOLT_SWITCH
;
1229 mci_writel(host
, CLKENA
, 0);
1230 mci_send_cmd(slot
, sdmmc_cmd_bits
, 0);
1231 } else if (clock
!= host
->current_speed
|| force_clkinit
) {
1232 div
= host
->bus_hz
/ clock
;
1233 if (host
->bus_hz
% clock
&& host
->bus_hz
> clock
)
1235 * move the + 1 after the divide to prevent
1236 * over-clocking the card.
1240 div
= (host
->bus_hz
!= clock
) ? DIV_ROUND_UP(div
, 2) : 0;
1242 if ((clock
!= slot
->__clk_old
&&
1243 !test_bit(DW_MMC_CARD_NEEDS_POLL
, &slot
->flags
)) ||
1245 /* Silent the verbose log if calling from PM context */
1247 dev_info(&slot
->mmc
->class_dev
,
1248 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ div = %d)\n",
1249 slot
->id
, host
->bus_hz
, clock
,
1250 div
? ((host
->bus_hz
/ div
) >> 1) :
1254 * If card is polling, display the message only
1255 * one time at boot time.
1257 if (slot
->mmc
->caps
& MMC_CAP_NEEDS_POLL
&&
1258 slot
->mmc
->f_min
== clock
)
1259 set_bit(DW_MMC_CARD_NEEDS_POLL
, &slot
->flags
);
1263 mci_writel(host
, CLKENA
, 0);
1264 mci_writel(host
, CLKSRC
, 0);
1267 mci_send_cmd(slot
, sdmmc_cmd_bits
, 0);
1269 /* set clock to desired speed */
1270 mci_writel(host
, CLKDIV
, div
);
1273 mci_send_cmd(slot
, sdmmc_cmd_bits
, 0);
1275 /* enable clock; only low power if no SDIO */
1276 clk_en_a
= SDMMC_CLKEN_ENABLE
<< slot
->id
;
1277 if (!test_bit(DW_MMC_CARD_NO_LOW_PWR
, &slot
->flags
))
1278 clk_en_a
|= SDMMC_CLKEN_LOW_PWR
<< slot
->id
;
1279 mci_writel(host
, CLKENA
, clk_en_a
);
1282 mci_send_cmd(slot
, sdmmc_cmd_bits
, 0);
1284 /* keep the last clock value that was requested from core */
1285 slot
->__clk_old
= clock
;
1288 host
->current_speed
= clock
;
1290 /* Set the current slot bus width */
1291 mci_writel(host
, CTYPE
, (slot
->ctype
<< slot
->id
));
1294 static void __dw_mci_start_request(struct dw_mci
*host
,
1295 struct dw_mci_slot
*slot
,
1296 struct mmc_command
*cmd
)
1298 struct mmc_request
*mrq
;
1299 struct mmc_data
*data
;
1306 host
->pending_events
= 0;
1307 host
->completed_events
= 0;
1308 host
->cmd_status
= 0;
1309 host
->data_status
= 0;
1310 host
->dir_status
= 0;
1314 mci_writel(host
, TMOUT
, 0xFFFFFFFF);
1315 mci_writel(host
, BYTCNT
, data
->blksz
*data
->blocks
);
1316 mci_writel(host
, BLKSIZ
, data
->blksz
);
1319 cmdflags
= dw_mci_prepare_command(slot
->mmc
, cmd
);
1321 /* this is the first command, send the initialization clock */
1322 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT
, &slot
->flags
))
1323 cmdflags
|= SDMMC_CMD_INIT
;
1326 dw_mci_submit_data(host
, data
);
1327 wmb(); /* drain writebuffer */
1330 dw_mci_start_command(host
, cmd
, cmdflags
);
1332 if (cmd
->opcode
== SD_SWITCH_VOLTAGE
) {
1333 unsigned long irqflags
;
1336 * Databook says to fail after 2ms w/ no response, but evidence
1337 * shows that sometimes the cmd11 interrupt takes over 130ms.
1338 * We'll set to 500ms, plus an extra jiffy just in case jiffies
1339 * is just about to roll over.
1341 * We do this whole thing under spinlock and only if the
1342 * command hasn't already completed (indicating the the irq
1343 * already ran so we don't want the timeout).
1345 spin_lock_irqsave(&host
->irq_lock
, irqflags
);
1346 if (!test_bit(EVENT_CMD_COMPLETE
, &host
->pending_events
))
1347 mod_timer(&host
->cmd11_timer
,
1348 jiffies
+ msecs_to_jiffies(500) + 1);
1349 spin_unlock_irqrestore(&host
->irq_lock
, irqflags
);
1352 host
->stop_cmdr
= dw_mci_prep_stop_abort(host
, cmd
);
1355 static void dw_mci_start_request(struct dw_mci
*host
,
1356 struct dw_mci_slot
*slot
)
1358 struct mmc_request
*mrq
= slot
->mrq
;
1359 struct mmc_command
*cmd
;
1361 cmd
= mrq
->sbc
? mrq
->sbc
: mrq
->cmd
;
1362 __dw_mci_start_request(host
, slot
, cmd
);
1365 /* must be called with host->lock held */
1366 static void dw_mci_queue_request(struct dw_mci
*host
, struct dw_mci_slot
*slot
,
1367 struct mmc_request
*mrq
)
1369 dev_vdbg(&slot
->mmc
->class_dev
, "queue request: state=%d\n",
1374 if (host
->state
== STATE_WAITING_CMD11_DONE
) {
1375 dev_warn(&slot
->mmc
->class_dev
,
1376 "Voltage change didn't complete\n");
1378 * this case isn't expected to happen, so we can
1379 * either crash here or just try to continue on
1380 * in the closest possible state
1382 host
->state
= STATE_IDLE
;
1385 if (host
->state
== STATE_IDLE
) {
1386 host
->state
= STATE_SENDING_CMD
;
1387 dw_mci_start_request(host
, slot
);
1389 list_add_tail(&slot
->queue_node
, &host
->queue
);
1393 static void dw_mci_request(struct mmc_host
*mmc
, struct mmc_request
*mrq
)
1395 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1396 struct dw_mci
*host
= slot
->host
;
1401 * The check for card presence and queueing of the request must be
1402 * atomic, otherwise the card could be removed in between and the
1403 * request wouldn't fail until another card was inserted.
1406 if (!dw_mci_get_cd(mmc
)) {
1407 mrq
->cmd
->error
= -ENOMEDIUM
;
1408 mmc_request_done(mmc
, mrq
);
1412 spin_lock_bh(&host
->lock
);
1414 dw_mci_queue_request(host
, slot
, mrq
);
1416 spin_unlock_bh(&host
->lock
);
1419 static void dw_mci_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1421 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1422 const struct dw_mci_drv_data
*drv_data
= slot
->host
->drv_data
;
1426 switch (ios
->bus_width
) {
1427 case MMC_BUS_WIDTH_4
:
1428 slot
->ctype
= SDMMC_CTYPE_4BIT
;
1430 case MMC_BUS_WIDTH_8
:
1431 slot
->ctype
= SDMMC_CTYPE_8BIT
;
1434 /* set default 1 bit mode */
1435 slot
->ctype
= SDMMC_CTYPE_1BIT
;
1438 regs
= mci_readl(slot
->host
, UHS_REG
);
1441 if (ios
->timing
== MMC_TIMING_MMC_DDR52
||
1442 ios
->timing
== MMC_TIMING_UHS_DDR50
||
1443 ios
->timing
== MMC_TIMING_MMC_HS400
)
1444 regs
|= ((0x1 << slot
->id
) << 16);
1446 regs
&= ~((0x1 << slot
->id
) << 16);
1448 mci_writel(slot
->host
, UHS_REG
, regs
);
1449 slot
->host
->timing
= ios
->timing
;
1452 * Use mirror of ios->clock to prevent race with mmc
1453 * core ios update when finding the minimum.
1455 slot
->clock
= ios
->clock
;
1457 if (drv_data
&& drv_data
->set_ios
)
1458 drv_data
->set_ios(slot
->host
, ios
);
1460 switch (ios
->power_mode
) {
1462 if (!IS_ERR(mmc
->supply
.vmmc
)) {
1463 ret
= mmc_regulator_set_ocr(mmc
, mmc
->supply
.vmmc
,
1466 dev_err(slot
->host
->dev
,
1467 "failed to enable vmmc regulator\n");
1468 /*return, if failed turn on vmmc*/
1472 set_bit(DW_MMC_CARD_NEED_INIT
, &slot
->flags
);
1473 regs
= mci_readl(slot
->host
, PWREN
);
1474 regs
|= (1 << slot
->id
);
1475 mci_writel(slot
->host
, PWREN
, regs
);
1478 if (!slot
->host
->vqmmc_enabled
) {
1479 if (!IS_ERR(mmc
->supply
.vqmmc
)) {
1480 ret
= regulator_enable(mmc
->supply
.vqmmc
);
1482 dev_err(slot
->host
->dev
,
1483 "failed to enable vqmmc\n");
1485 slot
->host
->vqmmc_enabled
= true;
1488 /* Keep track so we don't reset again */
1489 slot
->host
->vqmmc_enabled
= true;
1492 /* Reset our state machine after powering on */
1493 dw_mci_ctrl_reset(slot
->host
,
1494 SDMMC_CTRL_ALL_RESET_FLAGS
);
1497 /* Adjust clock / bus width after power is up */
1498 dw_mci_setup_bus(slot
, false);
1502 /* Turn clock off before power goes down */
1503 dw_mci_setup_bus(slot
, false);
1505 if (!IS_ERR(mmc
->supply
.vmmc
))
1506 mmc_regulator_set_ocr(mmc
, mmc
->supply
.vmmc
, 0);
1508 if (!IS_ERR(mmc
->supply
.vqmmc
) && slot
->host
->vqmmc_enabled
)
1509 regulator_disable(mmc
->supply
.vqmmc
);
1510 slot
->host
->vqmmc_enabled
= false;
1512 regs
= mci_readl(slot
->host
, PWREN
);
1513 regs
&= ~(1 << slot
->id
);
1514 mci_writel(slot
->host
, PWREN
, regs
);
1520 if (slot
->host
->state
== STATE_WAITING_CMD11_DONE
&& ios
->clock
!= 0)
1521 slot
->host
->state
= STATE_IDLE
;
1524 static int dw_mci_card_busy(struct mmc_host
*mmc
)
1526 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1530 * Check the busy bit which is low when DAT[3:0]
1531 * (the data lines) are 0000
1533 status
= mci_readl(slot
->host
, STATUS
);
1535 return !!(status
& SDMMC_STATUS_BUSY
);
1538 static int dw_mci_switch_voltage(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1540 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1541 struct dw_mci
*host
= slot
->host
;
1542 const struct dw_mci_drv_data
*drv_data
= host
->drv_data
;
1544 u32 v18
= SDMMC_UHS_18V
<< slot
->id
;
1547 if (drv_data
&& drv_data
->switch_voltage
)
1548 return drv_data
->switch_voltage(mmc
, ios
);
1551 * Program the voltage. Note that some instances of dw_mmc may use
1552 * the UHS_REG for this. For other instances (like exynos) the UHS_REG
1553 * does no harm but you need to set the regulator directly. Try both.
1555 uhs
= mci_readl(host
, UHS_REG
);
1556 if (ios
->signal_voltage
== MMC_SIGNAL_VOLTAGE_330
)
1561 if (!IS_ERR(mmc
->supply
.vqmmc
)) {
1562 ret
= mmc_regulator_set_vqmmc(mmc
, ios
);
1565 dev_dbg(&mmc
->class_dev
,
1566 "Regulator set error %d - %s V\n",
1567 ret
, uhs
& v18
? "1.8" : "3.3");
1571 mci_writel(host
, UHS_REG
, uhs
);
1576 static int dw_mci_get_ro(struct mmc_host
*mmc
)
1579 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1580 int gpio_ro
= mmc_gpio_get_ro(mmc
);
1582 /* Use platform get_ro function, else try on board write protect */
1584 read_only
= gpio_ro
;
1587 mci_readl(slot
->host
, WRTPRT
) & (1 << slot
->id
) ? 1 : 0;
1589 dev_dbg(&mmc
->class_dev
, "card is %s\n",
1590 read_only
? "read-only" : "read-write");
1595 static void dw_mci_hw_reset(struct mmc_host
*mmc
)
1597 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1598 struct dw_mci
*host
= slot
->host
;
1601 if (host
->use_dma
== TRANS_MODE_IDMAC
)
1602 dw_mci_idmac_reset(host
);
1604 if (!dw_mci_ctrl_reset(host
, SDMMC_CTRL_DMA_RESET
|
1605 SDMMC_CTRL_FIFO_RESET
))
1609 * According to eMMC spec, card reset procedure:
1610 * tRstW >= 1us: RST_n pulse width
1611 * tRSCA >= 200us: RST_n to Command time
1612 * tRSTH >= 1us: RST_n high period
1614 reset
= mci_readl(host
, RST_N
);
1615 reset
&= ~(SDMMC_RST_HWACTIVE
<< slot
->id
);
1616 mci_writel(host
, RST_N
, reset
);
1618 reset
|= SDMMC_RST_HWACTIVE
<< slot
->id
;
1619 mci_writel(host
, RST_N
, reset
);
1620 usleep_range(200, 300);
1623 static void dw_mci_init_card(struct mmc_host
*mmc
, struct mmc_card
*card
)
1625 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1626 struct dw_mci
*host
= slot
->host
;
1629 * Low power mode will stop the card clock when idle. According to the
1630 * description of the CLKENA register we should disable low power mode
1631 * for SDIO cards if we need SDIO interrupts to work.
1633 if (mmc
->caps
& MMC_CAP_SDIO_IRQ
) {
1634 const u32 clken_low_pwr
= SDMMC_CLKEN_LOW_PWR
<< slot
->id
;
1638 clk_en_a_old
= mci_readl(host
, CLKENA
);
1640 if (card
->type
== MMC_TYPE_SDIO
||
1641 card
->type
== MMC_TYPE_SD_COMBO
) {
1642 set_bit(DW_MMC_CARD_NO_LOW_PWR
, &slot
->flags
);
1643 clk_en_a
= clk_en_a_old
& ~clken_low_pwr
;
1645 clear_bit(DW_MMC_CARD_NO_LOW_PWR
, &slot
->flags
);
1646 clk_en_a
= clk_en_a_old
| clken_low_pwr
;
1649 if (clk_en_a
!= clk_en_a_old
) {
1650 mci_writel(host
, CLKENA
, clk_en_a
);
1651 mci_send_cmd(slot
, SDMMC_CMD_UPD_CLK
|
1652 SDMMC_CMD_PRV_DAT_WAIT
, 0);
1657 static void __dw_mci_enable_sdio_irq(struct dw_mci_slot
*slot
, int enb
)
1659 struct dw_mci
*host
= slot
->host
;
1660 unsigned long irqflags
;
1663 spin_lock_irqsave(&host
->irq_lock
, irqflags
);
1665 /* Enable/disable Slot Specific SDIO interrupt */
1666 int_mask
= mci_readl(host
, INTMASK
);
1668 int_mask
|= SDMMC_INT_SDIO(slot
->sdio_id
);
1670 int_mask
&= ~SDMMC_INT_SDIO(slot
->sdio_id
);
1671 mci_writel(host
, INTMASK
, int_mask
);
1673 spin_unlock_irqrestore(&host
->irq_lock
, irqflags
);
1676 static void dw_mci_enable_sdio_irq(struct mmc_host
*mmc
, int enb
)
1678 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1679 struct dw_mci
*host
= slot
->host
;
1681 __dw_mci_enable_sdio_irq(slot
, enb
);
1683 /* Avoid runtime suspending the device when SDIO IRQ is enabled */
1685 pm_runtime_get_noresume(host
->dev
);
1687 pm_runtime_put_noidle(host
->dev
);
1690 static void dw_mci_ack_sdio_irq(struct mmc_host
*mmc
)
1692 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1694 __dw_mci_enable_sdio_irq(slot
, 1);
1697 static int dw_mci_execute_tuning(struct mmc_host
*mmc
, u32 opcode
)
1699 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1700 struct dw_mci
*host
= slot
->host
;
1701 const struct dw_mci_drv_data
*drv_data
= host
->drv_data
;
1704 if (drv_data
&& drv_data
->execute_tuning
)
1705 err
= drv_data
->execute_tuning(slot
, opcode
);
1709 static int dw_mci_prepare_hs400_tuning(struct mmc_host
*mmc
,
1710 struct mmc_ios
*ios
)
1712 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
1713 struct dw_mci
*host
= slot
->host
;
1714 const struct dw_mci_drv_data
*drv_data
= host
->drv_data
;
1716 if (drv_data
&& drv_data
->prepare_hs400_tuning
)
1717 return drv_data
->prepare_hs400_tuning(host
, ios
);
1722 static bool dw_mci_reset(struct dw_mci
*host
)
1724 u32 flags
= SDMMC_CTRL_RESET
| SDMMC_CTRL_FIFO_RESET
;
1729 * Resetting generates a block interrupt, hence setting
1730 * the scatter-gather pointer to NULL.
1733 sg_miter_stop(&host
->sg_miter
);
1738 flags
|= SDMMC_CTRL_DMA_RESET
;
1740 if (dw_mci_ctrl_reset(host
, flags
)) {
1742 * In all cases we clear the RAWINTS
1743 * register to clear any interrupts.
1745 mci_writel(host
, RINTSTS
, 0xFFFFFFFF);
1747 if (!host
->use_dma
) {
1752 /* Wait for dma_req to be cleared */
1753 if (readl_poll_timeout_atomic(host
->regs
+ SDMMC_STATUS
,
1755 !(status
& SDMMC_STATUS_DMA_REQ
),
1756 1, 500 * USEC_PER_MSEC
)) {
1758 "%s: Timeout waiting for dma_req to be cleared\n",
1763 /* when using DMA next we reset the fifo again */
1764 if (!dw_mci_ctrl_reset(host
, SDMMC_CTRL_FIFO_RESET
))
1767 /* if the controller reset bit did clear, then set clock regs */
1768 if (!(mci_readl(host
, CTRL
) & SDMMC_CTRL_RESET
)) {
1770 "%s: fifo/dma reset bits didn't clear but ciu was reset, doing clock update\n",
1776 if (host
->use_dma
== TRANS_MODE_IDMAC
)
1777 /* It is also recommended that we reset and reprogram idmac */
1778 dw_mci_idmac_reset(host
);
1783 /* After a CTRL reset we need to have CIU set clock registers */
1784 mci_send_cmd(host
->slot
, SDMMC_CMD_UPD_CLK
, 0);
1789 static const struct mmc_host_ops dw_mci_ops
= {
1790 .request
= dw_mci_request
,
1791 .pre_req
= dw_mci_pre_req
,
1792 .post_req
= dw_mci_post_req
,
1793 .set_ios
= dw_mci_set_ios
,
1794 .get_ro
= dw_mci_get_ro
,
1795 .get_cd
= dw_mci_get_cd
,
1796 .hw_reset
= dw_mci_hw_reset
,
1797 .enable_sdio_irq
= dw_mci_enable_sdio_irq
,
1798 .ack_sdio_irq
= dw_mci_ack_sdio_irq
,
1799 .execute_tuning
= dw_mci_execute_tuning
,
1800 .card_busy
= dw_mci_card_busy
,
1801 .start_signal_voltage_switch
= dw_mci_switch_voltage
,
1802 .init_card
= dw_mci_init_card
,
1803 .prepare_hs400_tuning
= dw_mci_prepare_hs400_tuning
,
1806 static void dw_mci_request_end(struct dw_mci
*host
, struct mmc_request
*mrq
)
1807 __releases(&host
->lock
)
1808 __acquires(&host
->lock
)
1810 struct dw_mci_slot
*slot
;
1811 struct mmc_host
*prev_mmc
= host
->slot
->mmc
;
1813 WARN_ON(host
->cmd
|| host
->data
);
1815 host
->slot
->mrq
= NULL
;
1817 if (!list_empty(&host
->queue
)) {
1818 slot
= list_entry(host
->queue
.next
,
1819 struct dw_mci_slot
, queue_node
);
1820 list_del(&slot
->queue_node
);
1821 dev_vdbg(host
->dev
, "list not empty: %s is next\n",
1822 mmc_hostname(slot
->mmc
));
1823 host
->state
= STATE_SENDING_CMD
;
1824 dw_mci_start_request(host
, slot
);
1826 dev_vdbg(host
->dev
, "list empty\n");
1828 if (host
->state
== STATE_SENDING_CMD11
)
1829 host
->state
= STATE_WAITING_CMD11_DONE
;
1831 host
->state
= STATE_IDLE
;
1834 spin_unlock(&host
->lock
);
1835 mmc_request_done(prev_mmc
, mrq
);
1836 spin_lock(&host
->lock
);
1839 static int dw_mci_command_complete(struct dw_mci
*host
, struct mmc_command
*cmd
)
1841 u32 status
= host
->cmd_status
;
1843 host
->cmd_status
= 0;
1845 /* Read the response from the card (up to 16 bytes) */
1846 if (cmd
->flags
& MMC_RSP_PRESENT
) {
1847 if (cmd
->flags
& MMC_RSP_136
) {
1848 cmd
->resp
[3] = mci_readl(host
, RESP0
);
1849 cmd
->resp
[2] = mci_readl(host
, RESP1
);
1850 cmd
->resp
[1] = mci_readl(host
, RESP2
);
1851 cmd
->resp
[0] = mci_readl(host
, RESP3
);
1853 cmd
->resp
[0] = mci_readl(host
, RESP0
);
1860 if (status
& SDMMC_INT_RTO
)
1861 cmd
->error
= -ETIMEDOUT
;
1862 else if ((cmd
->flags
& MMC_RSP_CRC
) && (status
& SDMMC_INT_RCRC
))
1863 cmd
->error
= -EILSEQ
;
1864 else if (status
& SDMMC_INT_RESP_ERR
)
1872 static int dw_mci_data_complete(struct dw_mci
*host
, struct mmc_data
*data
)
1874 u32 status
= host
->data_status
;
1876 if (status
& DW_MCI_DATA_ERROR_FLAGS
) {
1877 if (status
& SDMMC_INT_DRTO
) {
1878 data
->error
= -ETIMEDOUT
;
1879 } else if (status
& SDMMC_INT_DCRC
) {
1880 data
->error
= -EILSEQ
;
1881 } else if (status
& SDMMC_INT_EBE
) {
1882 if (host
->dir_status
==
1883 DW_MCI_SEND_STATUS
) {
1885 * No data CRC status was returned.
1886 * The number of bytes transferred
1887 * will be exaggerated in PIO mode.
1889 data
->bytes_xfered
= 0;
1890 data
->error
= -ETIMEDOUT
;
1891 } else if (host
->dir_status
==
1892 DW_MCI_RECV_STATUS
) {
1893 data
->error
= -EILSEQ
;
1896 /* SDMMC_INT_SBE is included */
1897 data
->error
= -EILSEQ
;
1900 dev_dbg(host
->dev
, "data error, status 0x%08x\n", status
);
1903 * After an error, there may be data lingering
1908 data
->bytes_xfered
= data
->blocks
* data
->blksz
;
1915 static void dw_mci_set_drto(struct dw_mci
*host
)
1917 unsigned int drto_clks
;
1918 unsigned int drto_ms
;
1920 drto_clks
= mci_readl(host
, TMOUT
) >> 8;
1921 drto_ms
= DIV_ROUND_UP(drto_clks
, host
->bus_hz
/ 1000);
1923 /* add a bit spare time */
1926 mod_timer(&host
->dto_timer
, jiffies
+ msecs_to_jiffies(drto_ms
));
1929 static void dw_mci_tasklet_func(unsigned long priv
)
1931 struct dw_mci
*host
= (struct dw_mci
*)priv
;
1932 struct mmc_data
*data
;
1933 struct mmc_command
*cmd
;
1934 struct mmc_request
*mrq
;
1935 enum dw_mci_state state
;
1936 enum dw_mci_state prev_state
;
1939 spin_lock(&host
->lock
);
1941 state
= host
->state
;
1950 case STATE_WAITING_CMD11_DONE
:
1953 case STATE_SENDING_CMD11
:
1954 case STATE_SENDING_CMD
:
1955 if (!test_and_clear_bit(EVENT_CMD_COMPLETE
,
1956 &host
->pending_events
))
1961 set_bit(EVENT_CMD_COMPLETE
, &host
->completed_events
);
1962 err
= dw_mci_command_complete(host
, cmd
);
1963 if (cmd
== mrq
->sbc
&& !err
) {
1964 prev_state
= state
= STATE_SENDING_CMD
;
1965 __dw_mci_start_request(host
, host
->slot
,
1970 if (cmd
->data
&& err
) {
1972 * During UHS tuning sequence, sending the stop
1973 * command after the response CRC error would
1974 * throw the system into a confused state
1975 * causing all future tuning phases to report
1978 * In such case controller will move into a data
1979 * transfer state after a response error or
1980 * response CRC error. Let's let that finish
1981 * before trying to send a stop, so we'll go to
1982 * STATE_SENDING_DATA.
1984 * Although letting the data transfer take place
1985 * will waste a bit of time (we already know
1986 * the command was bad), it can't cause any
1987 * errors since it's possible it would have
1988 * taken place anyway if this tasklet got
1989 * delayed. Allowing the transfer to take place
1990 * avoids races and keeps things simple.
1992 if ((err
!= -ETIMEDOUT
) &&
1993 (cmd
->opcode
== MMC_SEND_TUNING_BLOCK
)) {
1994 state
= STATE_SENDING_DATA
;
1998 dw_mci_stop_dma(host
);
1999 send_stop_abort(host
, data
);
2000 state
= STATE_SENDING_STOP
;
2004 if (!cmd
->data
|| err
) {
2005 dw_mci_request_end(host
, mrq
);
2009 prev_state
= state
= STATE_SENDING_DATA
;
2012 case STATE_SENDING_DATA
:
2014 * We could get a data error and never a transfer
2015 * complete so we'd better check for it here.
2017 * Note that we don't really care if we also got a
2018 * transfer complete; stopping the DMA and sending an
2021 if (test_and_clear_bit(EVENT_DATA_ERROR
,
2022 &host
->pending_events
)) {
2023 dw_mci_stop_dma(host
);
2024 if (!(host
->data_status
& (SDMMC_INT_DRTO
|
2026 send_stop_abort(host
, data
);
2027 state
= STATE_DATA_ERROR
;
2031 if (!test_and_clear_bit(EVENT_XFER_COMPLETE
,
2032 &host
->pending_events
)) {
2034 * If all data-related interrupts don't come
2035 * within the given time in reading data state.
2037 if (host
->dir_status
== DW_MCI_RECV_STATUS
)
2038 dw_mci_set_drto(host
);
2042 set_bit(EVENT_XFER_COMPLETE
, &host
->completed_events
);
2045 * Handle an EVENT_DATA_ERROR that might have shown up
2046 * before the transfer completed. This might not have
2047 * been caught by the check above because the interrupt
2048 * could have gone off between the previous check and
2049 * the check for transfer complete.
2051 * Technically this ought not be needed assuming we
2052 * get a DATA_COMPLETE eventually (we'll notice the
2053 * error and end the request), but it shouldn't hurt.
2055 * This has the advantage of sending the stop command.
2057 if (test_and_clear_bit(EVENT_DATA_ERROR
,
2058 &host
->pending_events
)) {
2059 dw_mci_stop_dma(host
);
2060 if (!(host
->data_status
& (SDMMC_INT_DRTO
|
2062 send_stop_abort(host
, data
);
2063 state
= STATE_DATA_ERROR
;
2066 prev_state
= state
= STATE_DATA_BUSY
;
2070 case STATE_DATA_BUSY
:
2071 if (!test_and_clear_bit(EVENT_DATA_COMPLETE
,
2072 &host
->pending_events
)) {
2074 * If data error interrupt comes but data over
2075 * interrupt doesn't come within the given time.
2076 * in reading data state.
2078 if (host
->dir_status
== DW_MCI_RECV_STATUS
)
2079 dw_mci_set_drto(host
);
2084 set_bit(EVENT_DATA_COMPLETE
, &host
->completed_events
);
2085 err
= dw_mci_data_complete(host
, data
);
2088 if (!data
->stop
|| mrq
->sbc
) {
2089 if (mrq
->sbc
&& data
->stop
)
2090 data
->stop
->error
= 0;
2091 dw_mci_request_end(host
, mrq
);
2095 /* stop command for open-ended transfer*/
2097 send_stop_abort(host
, data
);
2100 * If we don't have a command complete now we'll
2101 * never get one since we just reset everything;
2102 * better end the request.
2104 * If we do have a command complete we'll fall
2105 * through to the SENDING_STOP command and
2106 * everything will be peachy keen.
2108 if (!test_bit(EVENT_CMD_COMPLETE
,
2109 &host
->pending_events
)) {
2111 dw_mci_request_end(host
, mrq
);
2117 * If err has non-zero,
2118 * stop-abort command has been already issued.
2120 prev_state
= state
= STATE_SENDING_STOP
;
2124 case STATE_SENDING_STOP
:
2125 if (!test_and_clear_bit(EVENT_CMD_COMPLETE
,
2126 &host
->pending_events
))
2129 /* CMD error in data command */
2130 if (mrq
->cmd
->error
&& mrq
->data
)
2136 if (!mrq
->sbc
&& mrq
->stop
)
2137 dw_mci_command_complete(host
, mrq
->stop
);
2139 host
->cmd_status
= 0;
2141 dw_mci_request_end(host
, mrq
);
2144 case STATE_DATA_ERROR
:
2145 if (!test_and_clear_bit(EVENT_XFER_COMPLETE
,
2146 &host
->pending_events
))
2149 state
= STATE_DATA_BUSY
;
2152 } while (state
!= prev_state
);
2154 host
->state
= state
;
2156 spin_unlock(&host
->lock
);
2160 /* push final bytes to part_buf, only use during push */
2161 static void dw_mci_set_part_bytes(struct dw_mci
*host
, void *buf
, int cnt
)
2163 memcpy((void *)&host
->part_buf
, buf
, cnt
);
2164 host
->part_buf_count
= cnt
;
2167 /* append bytes to part_buf, only use during push */
2168 static int dw_mci_push_part_bytes(struct dw_mci
*host
, void *buf
, int cnt
)
2170 cnt
= min(cnt
, (1 << host
->data_shift
) - host
->part_buf_count
);
2171 memcpy((void *)&host
->part_buf
+ host
->part_buf_count
, buf
, cnt
);
2172 host
->part_buf_count
+= cnt
;
2176 /* pull first bytes from part_buf, only use during pull */
2177 static int dw_mci_pull_part_bytes(struct dw_mci
*host
, void *buf
, int cnt
)
2179 cnt
= min_t(int, cnt
, host
->part_buf_count
);
2181 memcpy(buf
, (void *)&host
->part_buf
+ host
->part_buf_start
,
2183 host
->part_buf_count
-= cnt
;
2184 host
->part_buf_start
+= cnt
;
2189 /* pull final bytes from the part_buf, assuming it's just been filled */
2190 static void dw_mci_pull_final_bytes(struct dw_mci
*host
, void *buf
, int cnt
)
2192 memcpy(buf
, &host
->part_buf
, cnt
);
2193 host
->part_buf_start
= cnt
;
2194 host
->part_buf_count
= (1 << host
->data_shift
) - cnt
;
2197 static void dw_mci_push_data16(struct dw_mci
*host
, void *buf
, int cnt
)
2199 struct mmc_data
*data
= host
->data
;
2202 /* try and push anything in the part_buf */
2203 if (unlikely(host
->part_buf_count
)) {
2204 int len
= dw_mci_push_part_bytes(host
, buf
, cnt
);
2208 if (host
->part_buf_count
== 2) {
2209 mci_fifo_writew(host
->fifo_reg
, host
->part_buf16
);
2210 host
->part_buf_count
= 0;
2213 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2214 if (unlikely((unsigned long)buf
& 0x1)) {
2216 u16 aligned_buf
[64];
2217 int len
= min(cnt
& -2, (int)sizeof(aligned_buf
));
2218 int items
= len
>> 1;
2220 /* memcpy from input buffer into aligned buffer */
2221 memcpy(aligned_buf
, buf
, len
);
2224 /* push data from aligned buffer into fifo */
2225 for (i
= 0; i
< items
; ++i
)
2226 mci_fifo_writew(host
->fifo_reg
, aligned_buf
[i
]);
2233 for (; cnt
>= 2; cnt
-= 2)
2234 mci_fifo_writew(host
->fifo_reg
, *pdata
++);
2237 /* put anything remaining in the part_buf */
2239 dw_mci_set_part_bytes(host
, buf
, cnt
);
2240 /* Push data if we have reached the expected data length */
2241 if ((data
->bytes_xfered
+ init_cnt
) ==
2242 (data
->blksz
* data
->blocks
))
2243 mci_fifo_writew(host
->fifo_reg
, host
->part_buf16
);
2247 static void dw_mci_pull_data16(struct dw_mci
*host
, void *buf
, int cnt
)
2249 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2250 if (unlikely((unsigned long)buf
& 0x1)) {
2252 /* pull data from fifo into aligned buffer */
2253 u16 aligned_buf
[64];
2254 int len
= min(cnt
& -2, (int)sizeof(aligned_buf
));
2255 int items
= len
>> 1;
2258 for (i
= 0; i
< items
; ++i
)
2259 aligned_buf
[i
] = mci_fifo_readw(host
->fifo_reg
);
2260 /* memcpy from aligned buffer into output buffer */
2261 memcpy(buf
, aligned_buf
, len
);
2270 for (; cnt
>= 2; cnt
-= 2)
2271 *pdata
++ = mci_fifo_readw(host
->fifo_reg
);
2275 host
->part_buf16
= mci_fifo_readw(host
->fifo_reg
);
2276 dw_mci_pull_final_bytes(host
, buf
, cnt
);
2280 static void dw_mci_push_data32(struct dw_mci
*host
, void *buf
, int cnt
)
2282 struct mmc_data
*data
= host
->data
;
2285 /* try and push anything in the part_buf */
2286 if (unlikely(host
->part_buf_count
)) {
2287 int len
= dw_mci_push_part_bytes(host
, buf
, cnt
);
2291 if (host
->part_buf_count
== 4) {
2292 mci_fifo_writel(host
->fifo_reg
, host
->part_buf32
);
2293 host
->part_buf_count
= 0;
2296 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2297 if (unlikely((unsigned long)buf
& 0x3)) {
2299 u32 aligned_buf
[32];
2300 int len
= min(cnt
& -4, (int)sizeof(aligned_buf
));
2301 int items
= len
>> 2;
2303 /* memcpy from input buffer into aligned buffer */
2304 memcpy(aligned_buf
, buf
, len
);
2307 /* push data from aligned buffer into fifo */
2308 for (i
= 0; i
< items
; ++i
)
2309 mci_fifo_writel(host
->fifo_reg
, aligned_buf
[i
]);
2316 for (; cnt
>= 4; cnt
-= 4)
2317 mci_fifo_writel(host
->fifo_reg
, *pdata
++);
2320 /* put anything remaining in the part_buf */
2322 dw_mci_set_part_bytes(host
, buf
, cnt
);
2323 /* Push data if we have reached the expected data length */
2324 if ((data
->bytes_xfered
+ init_cnt
) ==
2325 (data
->blksz
* data
->blocks
))
2326 mci_fifo_writel(host
->fifo_reg
, host
->part_buf32
);
2330 static void dw_mci_pull_data32(struct dw_mci
*host
, void *buf
, int cnt
)
2332 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2333 if (unlikely((unsigned long)buf
& 0x3)) {
2335 /* pull data from fifo into aligned buffer */
2336 u32 aligned_buf
[32];
2337 int len
= min(cnt
& -4, (int)sizeof(aligned_buf
));
2338 int items
= len
>> 2;
2341 for (i
= 0; i
< items
; ++i
)
2342 aligned_buf
[i
] = mci_fifo_readl(host
->fifo_reg
);
2343 /* memcpy from aligned buffer into output buffer */
2344 memcpy(buf
, aligned_buf
, len
);
2353 for (; cnt
>= 4; cnt
-= 4)
2354 *pdata
++ = mci_fifo_readl(host
->fifo_reg
);
2358 host
->part_buf32
= mci_fifo_readl(host
->fifo_reg
);
2359 dw_mci_pull_final_bytes(host
, buf
, cnt
);
2363 static void dw_mci_push_data64(struct dw_mci
*host
, void *buf
, int cnt
)
2365 struct mmc_data
*data
= host
->data
;
2368 /* try and push anything in the part_buf */
2369 if (unlikely(host
->part_buf_count
)) {
2370 int len
= dw_mci_push_part_bytes(host
, buf
, cnt
);
2375 if (host
->part_buf_count
== 8) {
2376 mci_fifo_writeq(host
->fifo_reg
, host
->part_buf
);
2377 host
->part_buf_count
= 0;
2380 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2381 if (unlikely((unsigned long)buf
& 0x7)) {
2383 u64 aligned_buf
[16];
2384 int len
= min(cnt
& -8, (int)sizeof(aligned_buf
));
2385 int items
= len
>> 3;
2387 /* memcpy from input buffer into aligned buffer */
2388 memcpy(aligned_buf
, buf
, len
);
2391 /* push data from aligned buffer into fifo */
2392 for (i
= 0; i
< items
; ++i
)
2393 mci_fifo_writeq(host
->fifo_reg
, aligned_buf
[i
]);
2400 for (; cnt
>= 8; cnt
-= 8)
2401 mci_fifo_writeq(host
->fifo_reg
, *pdata
++);
2404 /* put anything remaining in the part_buf */
2406 dw_mci_set_part_bytes(host
, buf
, cnt
);
2407 /* Push data if we have reached the expected data length */
2408 if ((data
->bytes_xfered
+ init_cnt
) ==
2409 (data
->blksz
* data
->blocks
))
2410 mci_fifo_writeq(host
->fifo_reg
, host
->part_buf
);
2414 static void dw_mci_pull_data64(struct dw_mci
*host
, void *buf
, int cnt
)
2416 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2417 if (unlikely((unsigned long)buf
& 0x7)) {
2419 /* pull data from fifo into aligned buffer */
2420 u64 aligned_buf
[16];
2421 int len
= min(cnt
& -8, (int)sizeof(aligned_buf
));
2422 int items
= len
>> 3;
2425 for (i
= 0; i
< items
; ++i
)
2426 aligned_buf
[i
] = mci_fifo_readq(host
->fifo_reg
);
2428 /* memcpy from aligned buffer into output buffer */
2429 memcpy(buf
, aligned_buf
, len
);
2438 for (; cnt
>= 8; cnt
-= 8)
2439 *pdata
++ = mci_fifo_readq(host
->fifo_reg
);
2443 host
->part_buf
= mci_fifo_readq(host
->fifo_reg
);
2444 dw_mci_pull_final_bytes(host
, buf
, cnt
);
2448 static void dw_mci_pull_data(struct dw_mci
*host
, void *buf
, int cnt
)
2452 /* get remaining partial bytes */
2453 len
= dw_mci_pull_part_bytes(host
, buf
, cnt
);
2454 if (unlikely(len
== cnt
))
2459 /* get the rest of the data */
2460 host
->pull_data(host
, buf
, cnt
);
2463 static void dw_mci_read_data_pio(struct dw_mci
*host
, bool dto
)
2465 struct sg_mapping_iter
*sg_miter
= &host
->sg_miter
;
2467 unsigned int offset
;
2468 struct mmc_data
*data
= host
->data
;
2469 int shift
= host
->data_shift
;
2472 unsigned int remain
, fcnt
;
2475 if (!sg_miter_next(sg_miter
))
2478 host
->sg
= sg_miter
->piter
.sg
;
2479 buf
= sg_miter
->addr
;
2480 remain
= sg_miter
->length
;
2484 fcnt
= (SDMMC_GET_FCNT(mci_readl(host
, STATUS
))
2485 << shift
) + host
->part_buf_count
;
2486 len
= min(remain
, fcnt
);
2489 dw_mci_pull_data(host
, (void *)(buf
+ offset
), len
);
2490 data
->bytes_xfered
+= len
;
2495 sg_miter
->consumed
= offset
;
2496 status
= mci_readl(host
, MINTSTS
);
2497 mci_writel(host
, RINTSTS
, SDMMC_INT_RXDR
);
2498 /* if the RXDR is ready read again */
2499 } while ((status
& SDMMC_INT_RXDR
) ||
2500 (dto
&& SDMMC_GET_FCNT(mci_readl(host
, STATUS
))));
2503 if (!sg_miter_next(sg_miter
))
2505 sg_miter
->consumed
= 0;
2507 sg_miter_stop(sg_miter
);
2511 sg_miter_stop(sg_miter
);
2513 smp_wmb(); /* drain writebuffer */
2514 set_bit(EVENT_XFER_COMPLETE
, &host
->pending_events
);
2517 static void dw_mci_write_data_pio(struct dw_mci
*host
)
2519 struct sg_mapping_iter
*sg_miter
= &host
->sg_miter
;
2521 unsigned int offset
;
2522 struct mmc_data
*data
= host
->data
;
2523 int shift
= host
->data_shift
;
2526 unsigned int fifo_depth
= host
->fifo_depth
;
2527 unsigned int remain
, fcnt
;
2530 if (!sg_miter_next(sg_miter
))
2533 host
->sg
= sg_miter
->piter
.sg
;
2534 buf
= sg_miter
->addr
;
2535 remain
= sg_miter
->length
;
2539 fcnt
= ((fifo_depth
-
2540 SDMMC_GET_FCNT(mci_readl(host
, STATUS
)))
2541 << shift
) - host
->part_buf_count
;
2542 len
= min(remain
, fcnt
);
2545 host
->push_data(host
, (void *)(buf
+ offset
), len
);
2546 data
->bytes_xfered
+= len
;
2551 sg_miter
->consumed
= offset
;
2552 status
= mci_readl(host
, MINTSTS
);
2553 mci_writel(host
, RINTSTS
, SDMMC_INT_TXDR
);
2554 } while (status
& SDMMC_INT_TXDR
); /* if TXDR write again */
2557 if (!sg_miter_next(sg_miter
))
2559 sg_miter
->consumed
= 0;
2561 sg_miter_stop(sg_miter
);
2565 sg_miter_stop(sg_miter
);
2567 smp_wmb(); /* drain writebuffer */
2568 set_bit(EVENT_XFER_COMPLETE
, &host
->pending_events
);
2571 static void dw_mci_cmd_interrupt(struct dw_mci
*host
, u32 status
)
2573 if (!host
->cmd_status
)
2574 host
->cmd_status
= status
;
2576 smp_wmb(); /* drain writebuffer */
2578 set_bit(EVENT_CMD_COMPLETE
, &host
->pending_events
);
2579 tasklet_schedule(&host
->tasklet
);
2582 static void dw_mci_handle_cd(struct dw_mci
*host
)
2584 struct dw_mci_slot
*slot
= host
->slot
;
2586 if (slot
->mmc
->ops
->card_event
)
2587 slot
->mmc
->ops
->card_event(slot
->mmc
);
2588 mmc_detect_change(slot
->mmc
,
2589 msecs_to_jiffies(host
->pdata
->detect_delay_ms
));
2592 static irqreturn_t
dw_mci_interrupt(int irq
, void *dev_id
)
2594 struct dw_mci
*host
= dev_id
;
2596 struct dw_mci_slot
*slot
= host
->slot
;
2598 pending
= mci_readl(host
, MINTSTS
); /* read-only mask reg */
2601 /* Check volt switch first, since it can look like an error */
2602 if ((host
->state
== STATE_SENDING_CMD11
) &&
2603 (pending
& SDMMC_INT_VOLT_SWITCH
)) {
2604 unsigned long irqflags
;
2606 mci_writel(host
, RINTSTS
, SDMMC_INT_VOLT_SWITCH
);
2607 pending
&= ~SDMMC_INT_VOLT_SWITCH
;
2610 * Hold the lock; we know cmd11_timer can't be kicked
2611 * off after the lock is released, so safe to delete.
2613 spin_lock_irqsave(&host
->irq_lock
, irqflags
);
2614 dw_mci_cmd_interrupt(host
, pending
);
2615 spin_unlock_irqrestore(&host
->irq_lock
, irqflags
);
2617 del_timer(&host
->cmd11_timer
);
2620 if (pending
& DW_MCI_CMD_ERROR_FLAGS
) {
2621 del_timer(&host
->cto_timer
);
2622 mci_writel(host
, RINTSTS
, DW_MCI_CMD_ERROR_FLAGS
);
2623 host
->cmd_status
= pending
;
2624 smp_wmb(); /* drain writebuffer */
2625 set_bit(EVENT_CMD_COMPLETE
, &host
->pending_events
);
2628 if (pending
& DW_MCI_DATA_ERROR_FLAGS
) {
2629 /* if there is an error report DATA_ERROR */
2630 mci_writel(host
, RINTSTS
, DW_MCI_DATA_ERROR_FLAGS
);
2631 host
->data_status
= pending
;
2632 smp_wmb(); /* drain writebuffer */
2633 set_bit(EVENT_DATA_ERROR
, &host
->pending_events
);
2634 tasklet_schedule(&host
->tasklet
);
2637 if (pending
& SDMMC_INT_DATA_OVER
) {
2638 del_timer(&host
->dto_timer
);
2640 mci_writel(host
, RINTSTS
, SDMMC_INT_DATA_OVER
);
2641 if (!host
->data_status
)
2642 host
->data_status
= pending
;
2643 smp_wmb(); /* drain writebuffer */
2644 if (host
->dir_status
== DW_MCI_RECV_STATUS
) {
2645 if (host
->sg
!= NULL
)
2646 dw_mci_read_data_pio(host
, true);
2648 set_bit(EVENT_DATA_COMPLETE
, &host
->pending_events
);
2649 tasklet_schedule(&host
->tasklet
);
2652 if (pending
& SDMMC_INT_RXDR
) {
2653 mci_writel(host
, RINTSTS
, SDMMC_INT_RXDR
);
2654 if (host
->dir_status
== DW_MCI_RECV_STATUS
&& host
->sg
)
2655 dw_mci_read_data_pio(host
, false);
2658 if (pending
& SDMMC_INT_TXDR
) {
2659 mci_writel(host
, RINTSTS
, SDMMC_INT_TXDR
);
2660 if (host
->dir_status
== DW_MCI_SEND_STATUS
&& host
->sg
)
2661 dw_mci_write_data_pio(host
);
2664 if (pending
& SDMMC_INT_CMD_DONE
) {
2665 del_timer(&host
->cto_timer
);
2666 mci_writel(host
, RINTSTS
, SDMMC_INT_CMD_DONE
);
2667 dw_mci_cmd_interrupt(host
, pending
);
2670 if (pending
& SDMMC_INT_CD
) {
2671 mci_writel(host
, RINTSTS
, SDMMC_INT_CD
);
2672 dw_mci_handle_cd(host
);
2675 if (pending
& SDMMC_INT_SDIO(slot
->sdio_id
)) {
2676 mci_writel(host
, RINTSTS
,
2677 SDMMC_INT_SDIO(slot
->sdio_id
));
2678 __dw_mci_enable_sdio_irq(slot
, 0);
2679 sdio_signal_irq(slot
->mmc
);
2684 if (host
->use_dma
!= TRANS_MODE_IDMAC
)
2687 /* Handle IDMA interrupts */
2688 if (host
->dma_64bit_address
== 1) {
2689 pending
= mci_readl(host
, IDSTS64
);
2690 if (pending
& (SDMMC_IDMAC_INT_TI
| SDMMC_IDMAC_INT_RI
)) {
2691 mci_writel(host
, IDSTS64
, SDMMC_IDMAC_INT_TI
|
2692 SDMMC_IDMAC_INT_RI
);
2693 mci_writel(host
, IDSTS64
, SDMMC_IDMAC_INT_NI
);
2694 if (!test_bit(EVENT_DATA_ERROR
, &host
->pending_events
))
2695 host
->dma_ops
->complete((void *)host
);
2698 pending
= mci_readl(host
, IDSTS
);
2699 if (pending
& (SDMMC_IDMAC_INT_TI
| SDMMC_IDMAC_INT_RI
)) {
2700 mci_writel(host
, IDSTS
, SDMMC_IDMAC_INT_TI
|
2701 SDMMC_IDMAC_INT_RI
);
2702 mci_writel(host
, IDSTS
, SDMMC_IDMAC_INT_NI
);
2703 if (!test_bit(EVENT_DATA_ERROR
, &host
->pending_events
))
2704 host
->dma_ops
->complete((void *)host
);
2711 static int dw_mci_init_slot(struct dw_mci
*host
)
2713 struct mmc_host
*mmc
;
2714 struct dw_mci_slot
*slot
;
2715 const struct dw_mci_drv_data
*drv_data
= host
->drv_data
;
2719 mmc
= mmc_alloc_host(sizeof(struct dw_mci_slot
), host
->dev
);
2723 slot
= mmc_priv(mmc
);
2725 slot
->sdio_id
= host
->sdio_id0
+ slot
->id
;
2730 mmc
->ops
= &dw_mci_ops
;
2731 if (device_property_read_u32_array(host
->dev
, "clock-freq-min-max",
2733 mmc
->f_min
= DW_MCI_FREQ_MIN
;
2734 mmc
->f_max
= DW_MCI_FREQ_MAX
;
2737 "'clock-freq-min-max' property was deprecated.\n");
2738 mmc
->f_min
= freq
[0];
2739 mmc
->f_max
= freq
[1];
2742 /*if there are external regulators, get them*/
2743 ret
= mmc_regulator_get_supply(mmc
);
2744 if (ret
== -EPROBE_DEFER
)
2745 goto err_host_allocated
;
2747 if (!mmc
->ocr_avail
)
2748 mmc
->ocr_avail
= MMC_VDD_32_33
| MMC_VDD_33_34
;
2750 if (host
->pdata
->caps
)
2751 mmc
->caps
= host
->pdata
->caps
;
2754 * Support MMC_CAP_ERASE by default.
2755 * It needs to use trim/discard/erase commands.
2757 mmc
->caps
|= MMC_CAP_ERASE
;
2759 if (host
->pdata
->pm_caps
)
2760 mmc
->pm_caps
= host
->pdata
->pm_caps
;
2762 if (host
->dev
->of_node
) {
2763 ctrl_id
= of_alias_get_id(host
->dev
->of_node
, "mshc");
2767 ctrl_id
= to_platform_device(host
->dev
)->id
;
2769 if (drv_data
&& drv_data
->caps
)
2770 mmc
->caps
|= drv_data
->caps
[ctrl_id
];
2772 if (host
->pdata
->caps2
)
2773 mmc
->caps2
= host
->pdata
->caps2
;
2775 ret
= mmc_of_parse(mmc
);
2777 goto err_host_allocated
;
2779 /* Process SDIO IRQs through the sdio_irq_work. */
2780 if (mmc
->caps
& MMC_CAP_SDIO_IRQ
)
2781 mmc
->caps2
|= MMC_CAP2_SDIO_IRQ_NOTHREAD
;
2783 /* Useful defaults if platform data is unset. */
2784 if (host
->use_dma
== TRANS_MODE_IDMAC
) {
2785 mmc
->max_segs
= host
->ring_size
;
2786 mmc
->max_blk_size
= 65535;
2787 mmc
->max_seg_size
= 0x1000;
2788 mmc
->max_req_size
= mmc
->max_seg_size
* host
->ring_size
;
2789 mmc
->max_blk_count
= mmc
->max_req_size
/ 512;
2790 } else if (host
->use_dma
== TRANS_MODE_EDMAC
) {
2792 mmc
->max_blk_size
= 65535;
2793 mmc
->max_blk_count
= 65535;
2795 mmc
->max_blk_size
* mmc
->max_blk_count
;
2796 mmc
->max_seg_size
= mmc
->max_req_size
;
2798 /* TRANS_MODE_PIO */
2800 mmc
->max_blk_size
= 65535; /* BLKSIZ is 16 bits */
2801 mmc
->max_blk_count
= 512;
2802 mmc
->max_req_size
= mmc
->max_blk_size
*
2804 mmc
->max_seg_size
= mmc
->max_req_size
;
2809 ret
= mmc_add_host(mmc
);
2811 goto err_host_allocated
;
2813 #if defined(CONFIG_DEBUG_FS)
2814 dw_mci_init_debugfs(slot
);
2824 static void dw_mci_cleanup_slot(struct dw_mci_slot
*slot
)
2826 /* Debugfs stuff is cleaned up by mmc core */
2827 mmc_remove_host(slot
->mmc
);
2828 slot
->host
->slot
= NULL
;
2829 mmc_free_host(slot
->mmc
);
2832 static void dw_mci_init_dma(struct dw_mci
*host
)
2835 struct device
*dev
= host
->dev
;
2838 * Check tansfer mode from HCON[17:16]
2839 * Clear the ambiguous description of dw_mmc databook:
2840 * 2b'00: No DMA Interface -> Actually means using Internal DMA block
2841 * 2b'01: DesignWare DMA Interface -> Synopsys DW-DMA block
2842 * 2b'10: Generic DMA Interface -> non-Synopsys generic DMA block
2843 * 2b'11: Non DW DMA Interface -> pio only
2844 * Compared to DesignWare DMA Interface, Generic DMA Interface has a
2845 * simpler request/acknowledge handshake mechanism and both of them
2846 * are regarded as external dma master for dw_mmc.
2848 host
->use_dma
= SDMMC_GET_TRANS_MODE(mci_readl(host
, HCON
));
2849 if (host
->use_dma
== DMA_INTERFACE_IDMA
) {
2850 host
->use_dma
= TRANS_MODE_IDMAC
;
2851 } else if (host
->use_dma
== DMA_INTERFACE_DWDMA
||
2852 host
->use_dma
== DMA_INTERFACE_GDMA
) {
2853 host
->use_dma
= TRANS_MODE_EDMAC
;
2858 /* Determine which DMA interface to use */
2859 if (host
->use_dma
== TRANS_MODE_IDMAC
) {
2861 * Check ADDR_CONFIG bit in HCON to find
2862 * IDMAC address bus width
2864 addr_config
= SDMMC_GET_ADDR_CONFIG(mci_readl(host
, HCON
));
2866 if (addr_config
== 1) {
2867 /* host supports IDMAC in 64-bit address mode */
2868 host
->dma_64bit_address
= 1;
2870 "IDMAC supports 64-bit address mode.\n");
2871 if (!dma_set_mask(host
->dev
, DMA_BIT_MASK(64)))
2872 dma_set_coherent_mask(host
->dev
,
2875 /* host supports IDMAC in 32-bit address mode */
2876 host
->dma_64bit_address
= 0;
2878 "IDMAC supports 32-bit address mode.\n");
2881 /* Alloc memory for sg translation */
2882 host
->sg_cpu
= dmam_alloc_coherent(host
->dev
,
2884 &host
->sg_dma
, GFP_KERNEL
);
2885 if (!host
->sg_cpu
) {
2887 "%s: could not alloc DMA memory\n",
2892 host
->dma_ops
= &dw_mci_idmac_ops
;
2893 dev_info(host
->dev
, "Using internal DMA controller.\n");
2895 /* TRANS_MODE_EDMAC: check dma bindings again */
2896 if ((device_property_read_string_array(dev
, "dma-names",
2898 !device_property_present(dev
, "dmas")) {
2901 host
->dma_ops
= &dw_mci_edmac_ops
;
2902 dev_info(host
->dev
, "Using external DMA controller.\n");
2905 if (host
->dma_ops
->init
&& host
->dma_ops
->start
&&
2906 host
->dma_ops
->stop
&& host
->dma_ops
->cleanup
) {
2907 if (host
->dma_ops
->init(host
)) {
2908 dev_err(host
->dev
, "%s: Unable to initialize DMA Controller.\n",
2913 dev_err(host
->dev
, "DMA initialization not found.\n");
2920 dev_info(host
->dev
, "Using PIO mode.\n");
2921 host
->use_dma
= TRANS_MODE_PIO
;
2924 static void dw_mci_cmd11_timer(unsigned long arg
)
2926 struct dw_mci
*host
= (struct dw_mci
*)arg
;
2928 if (host
->state
!= STATE_SENDING_CMD11
) {
2929 dev_warn(host
->dev
, "Unexpected CMD11 timeout\n");
2933 host
->cmd_status
= SDMMC_INT_RTO
;
2934 set_bit(EVENT_CMD_COMPLETE
, &host
->pending_events
);
2935 tasklet_schedule(&host
->tasklet
);
2938 static void dw_mci_cto_timer(unsigned long arg
)
2940 struct dw_mci
*host
= (struct dw_mci
*)arg
;
2942 switch (host
->state
) {
2943 case STATE_SENDING_CMD11
:
2944 case STATE_SENDING_CMD
:
2945 case STATE_SENDING_STOP
:
2947 * If CMD_DONE interrupt does NOT come in sending command
2948 * state, we should notify the driver to terminate current
2949 * transfer and report a command timeout to the core.
2951 host
->cmd_status
= SDMMC_INT_RTO
;
2952 set_bit(EVENT_CMD_COMPLETE
, &host
->pending_events
);
2953 tasklet_schedule(&host
->tasklet
);
2956 dev_warn(host
->dev
, "Unexpected command timeout, state %d\n",
2962 static void dw_mci_dto_timer(unsigned long arg
)
2964 struct dw_mci
*host
= (struct dw_mci
*)arg
;
2966 switch (host
->state
) {
2967 case STATE_SENDING_DATA
:
2968 case STATE_DATA_BUSY
:
2970 * If DTO interrupt does NOT come in sending data state,
2971 * we should notify the driver to terminate current transfer
2972 * and report a data timeout to the core.
2974 host
->data_status
= SDMMC_INT_DRTO
;
2975 set_bit(EVENT_DATA_ERROR
, &host
->pending_events
);
2976 set_bit(EVENT_DATA_COMPLETE
, &host
->pending_events
);
2977 tasklet_schedule(&host
->tasklet
);
2985 static struct dw_mci_board
*dw_mci_parse_dt(struct dw_mci
*host
)
2987 struct dw_mci_board
*pdata
;
2988 struct device
*dev
= host
->dev
;
2989 const struct dw_mci_drv_data
*drv_data
= host
->drv_data
;
2991 u32 clock_frequency
;
2993 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
2995 return ERR_PTR(-ENOMEM
);
2997 /* find reset controller when exist */
2998 pdata
->rstc
= devm_reset_control_get_optional_exclusive(dev
, "reset");
2999 if (IS_ERR(pdata
->rstc
)) {
3000 if (PTR_ERR(pdata
->rstc
) == -EPROBE_DEFER
)
3001 return ERR_PTR(-EPROBE_DEFER
);
3004 /* find out number of slots supported */
3005 if (!device_property_read_u32(dev
, "num-slots", &pdata
->num_slots
))
3006 dev_info(dev
, "'num-slots' was deprecated.\n");
3008 if (device_property_read_u32(dev
, "fifo-depth", &pdata
->fifo_depth
))
3010 "fifo-depth property not found, using value of FIFOTH register as default\n");
3012 device_property_read_u32(dev
, "card-detect-delay",
3013 &pdata
->detect_delay_ms
);
3015 device_property_read_u32(dev
, "data-addr", &host
->data_addr_override
);
3017 if (device_property_present(dev
, "fifo-watermark-aligned"))
3018 host
->wm_aligned
= true;
3020 if (!device_property_read_u32(dev
, "clock-frequency", &clock_frequency
))
3021 pdata
->bus_hz
= clock_frequency
;
3023 if (drv_data
&& drv_data
->parse_dt
) {
3024 ret
= drv_data
->parse_dt(host
);
3026 return ERR_PTR(ret
);
3032 #else /* CONFIG_OF */
3033 static struct dw_mci_board
*dw_mci_parse_dt(struct dw_mci
*host
)
3035 return ERR_PTR(-EINVAL
);
3037 #endif /* CONFIG_OF */
3039 static void dw_mci_enable_cd(struct dw_mci
*host
)
3041 unsigned long irqflags
;
3045 * No need for CD if all slots have a non-error GPIO
3046 * as well as broken card detection is found.
3048 if (host
->slot
->mmc
->caps
& MMC_CAP_NEEDS_POLL
)
3051 if (mmc_gpio_get_cd(host
->slot
->mmc
) < 0) {
3052 spin_lock_irqsave(&host
->irq_lock
, irqflags
);
3053 temp
= mci_readl(host
, INTMASK
);
3054 temp
|= SDMMC_INT_CD
;
3055 mci_writel(host
, INTMASK
, temp
);
3056 spin_unlock_irqrestore(&host
->irq_lock
, irqflags
);
3060 int dw_mci_probe(struct dw_mci
*host
)
3062 const struct dw_mci_drv_data
*drv_data
= host
->drv_data
;
3063 int width
, i
, ret
= 0;
3067 host
->pdata
= dw_mci_parse_dt(host
);
3068 if (PTR_ERR(host
->pdata
) == -EPROBE_DEFER
) {
3069 return -EPROBE_DEFER
;
3070 } else if (IS_ERR(host
->pdata
)) {
3071 dev_err(host
->dev
, "platform data not available\n");
3076 host
->biu_clk
= devm_clk_get(host
->dev
, "biu");
3077 if (IS_ERR(host
->biu_clk
)) {
3078 dev_dbg(host
->dev
, "biu clock not available\n");
3080 ret
= clk_prepare_enable(host
->biu_clk
);
3082 dev_err(host
->dev
, "failed to enable biu clock\n");
3087 host
->ciu_clk
= devm_clk_get(host
->dev
, "ciu");
3088 if (IS_ERR(host
->ciu_clk
)) {
3089 dev_dbg(host
->dev
, "ciu clock not available\n");
3090 host
->bus_hz
= host
->pdata
->bus_hz
;
3092 ret
= clk_prepare_enable(host
->ciu_clk
);
3094 dev_err(host
->dev
, "failed to enable ciu clock\n");
3098 if (host
->pdata
->bus_hz
) {
3099 ret
= clk_set_rate(host
->ciu_clk
, host
->pdata
->bus_hz
);
3102 "Unable to set bus rate to %uHz\n",
3103 host
->pdata
->bus_hz
);
3105 host
->bus_hz
= clk_get_rate(host
->ciu_clk
);
3108 if (!host
->bus_hz
) {
3110 "Platform data must supply bus speed\n");
3115 if (!IS_ERR(host
->pdata
->rstc
)) {
3116 reset_control_assert(host
->pdata
->rstc
);
3117 usleep_range(10, 50);
3118 reset_control_deassert(host
->pdata
->rstc
);
3121 if (drv_data
&& drv_data
->init
) {
3122 ret
= drv_data
->init(host
);
3125 "implementation specific init failed\n");
3130 setup_timer(&host
->cmd11_timer
,
3131 dw_mci_cmd11_timer
, (unsigned long)host
);
3133 setup_timer(&host
->cto_timer
,
3134 dw_mci_cto_timer
, (unsigned long)host
);
3136 setup_timer(&host
->dto_timer
,
3137 dw_mci_dto_timer
, (unsigned long)host
);
3139 spin_lock_init(&host
->lock
);
3140 spin_lock_init(&host
->irq_lock
);
3141 INIT_LIST_HEAD(&host
->queue
);
3144 * Get the host data width - this assumes that HCON has been set with
3145 * the correct values.
3147 i
= SDMMC_GET_HDATA_WIDTH(mci_readl(host
, HCON
));
3149 host
->push_data
= dw_mci_push_data16
;
3150 host
->pull_data
= dw_mci_pull_data16
;
3152 host
->data_shift
= 1;
3153 } else if (i
== 2) {
3154 host
->push_data
= dw_mci_push_data64
;
3155 host
->pull_data
= dw_mci_pull_data64
;
3157 host
->data_shift
= 3;
3159 /* Check for a reserved value, and warn if it is */
3161 "HCON reports a reserved host data width!\n"
3162 "Defaulting to 32-bit access.\n");
3163 host
->push_data
= dw_mci_push_data32
;
3164 host
->pull_data
= dw_mci_pull_data32
;
3166 host
->data_shift
= 2;
3169 /* Reset all blocks */
3170 if (!dw_mci_ctrl_reset(host
, SDMMC_CTRL_ALL_RESET_FLAGS
)) {
3175 host
->dma_ops
= host
->pdata
->dma_ops
;
3176 dw_mci_init_dma(host
);
3178 /* Clear the interrupts for the host controller */
3179 mci_writel(host
, RINTSTS
, 0xFFFFFFFF);
3180 mci_writel(host
, INTMASK
, 0); /* disable all mmc interrupt first */
3182 /* Put in max timeout */
3183 mci_writel(host
, TMOUT
, 0xFFFFFFFF);
3186 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
3187 * Tx Mark = fifo_size / 2 DMA Size = 8
3189 if (!host
->pdata
->fifo_depth
) {
3191 * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
3192 * have been overwritten by the bootloader, just like we're
3193 * about to do, so if you know the value for your hardware, you
3194 * should put it in the platform data.
3196 fifo_size
= mci_readl(host
, FIFOTH
);
3197 fifo_size
= 1 + ((fifo_size
>> 16) & 0xfff);
3199 fifo_size
= host
->pdata
->fifo_depth
;
3201 host
->fifo_depth
= fifo_size
;
3203 SDMMC_SET_FIFOTH(0x2, fifo_size
/ 2 - 1, fifo_size
/ 2);
3204 mci_writel(host
, FIFOTH
, host
->fifoth_val
);
3206 /* disable clock to CIU */
3207 mci_writel(host
, CLKENA
, 0);
3208 mci_writel(host
, CLKSRC
, 0);
3211 * In 2.40a spec, Data offset is changed.
3212 * Need to check the version-id and set data-offset for DATA register.
3214 host
->verid
= SDMMC_GET_VERID(mci_readl(host
, VERID
));
3215 dev_info(host
->dev
, "Version ID is %04x\n", host
->verid
);
3217 if (host
->data_addr_override
)
3218 host
->fifo_reg
= host
->regs
+ host
->data_addr_override
;
3219 else if (host
->verid
< DW_MMC_240A
)
3220 host
->fifo_reg
= host
->regs
+ DATA_OFFSET
;
3222 host
->fifo_reg
= host
->regs
+ DATA_240A_OFFSET
;
3224 tasklet_init(&host
->tasklet
, dw_mci_tasklet_func
, (unsigned long)host
);
3225 ret
= devm_request_irq(host
->dev
, host
->irq
, dw_mci_interrupt
,
3226 host
->irq_flags
, "dw-mci", host
);
3231 * Enable interrupts for command done, data over, data empty,
3232 * receive ready and error such as transmit, receive timeout, crc error
3234 mci_writel(host
, INTMASK
, SDMMC_INT_CMD_DONE
| SDMMC_INT_DATA_OVER
|
3235 SDMMC_INT_TXDR
| SDMMC_INT_RXDR
|
3236 DW_MCI_ERROR_FLAGS
);
3237 /* Enable mci interrupt */
3238 mci_writel(host
, CTRL
, SDMMC_CTRL_INT_ENABLE
);
3241 "DW MMC controller at irq %d,%d bit host data width,%u deep fifo\n",
3242 host
->irq
, width
, fifo_size
);
3244 /* We need at least one slot to succeed */
3245 ret
= dw_mci_init_slot(host
);
3247 dev_dbg(host
->dev
, "slot %d init failed\n", i
);
3251 /* Now that slots are all setup, we can enable card detect */
3252 dw_mci_enable_cd(host
);
3257 if (host
->use_dma
&& host
->dma_ops
->exit
)
3258 host
->dma_ops
->exit(host
);
3260 if (!IS_ERR(host
->pdata
->rstc
))
3261 reset_control_assert(host
->pdata
->rstc
);
3264 clk_disable_unprepare(host
->ciu_clk
);
3267 clk_disable_unprepare(host
->biu_clk
);
3271 EXPORT_SYMBOL(dw_mci_probe
);
3273 void dw_mci_remove(struct dw_mci
*host
)
3275 dev_dbg(host
->dev
, "remove slot\n");
3277 dw_mci_cleanup_slot(host
->slot
);
3279 mci_writel(host
, RINTSTS
, 0xFFFFFFFF);
3280 mci_writel(host
, INTMASK
, 0); /* disable all mmc interrupt first */
3282 /* disable clock to CIU */
3283 mci_writel(host
, CLKENA
, 0);
3284 mci_writel(host
, CLKSRC
, 0);
3286 if (host
->use_dma
&& host
->dma_ops
->exit
)
3287 host
->dma_ops
->exit(host
);
3289 if (!IS_ERR(host
->pdata
->rstc
))
3290 reset_control_assert(host
->pdata
->rstc
);
3292 clk_disable_unprepare(host
->ciu_clk
);
3293 clk_disable_unprepare(host
->biu_clk
);
3295 EXPORT_SYMBOL(dw_mci_remove
);
3300 int dw_mci_runtime_suspend(struct device
*dev
)
3302 struct dw_mci
*host
= dev_get_drvdata(dev
);
3304 if (host
->use_dma
&& host
->dma_ops
->exit
)
3305 host
->dma_ops
->exit(host
);
3307 clk_disable_unprepare(host
->ciu_clk
);
3310 (mmc_can_gpio_cd(host
->slot
->mmc
) ||
3311 !mmc_card_is_removable(host
->slot
->mmc
)))
3312 clk_disable_unprepare(host
->biu_clk
);
3316 EXPORT_SYMBOL(dw_mci_runtime_suspend
);
3318 int dw_mci_runtime_resume(struct device
*dev
)
3321 struct dw_mci
*host
= dev_get_drvdata(dev
);
3324 (mmc_can_gpio_cd(host
->slot
->mmc
) ||
3325 !mmc_card_is_removable(host
->slot
->mmc
))) {
3326 ret
= clk_prepare_enable(host
->biu_clk
);
3331 ret
= clk_prepare_enable(host
->ciu_clk
);
3335 if (!dw_mci_ctrl_reset(host
, SDMMC_CTRL_ALL_RESET_FLAGS
)) {
3336 clk_disable_unprepare(host
->ciu_clk
);
3341 if (host
->use_dma
&& host
->dma_ops
->init
)
3342 host
->dma_ops
->init(host
);
3345 * Restore the initial value at FIFOTH register
3346 * And Invalidate the prev_blksz with zero
3348 mci_writel(host
, FIFOTH
, host
->fifoth_val
);
3349 host
->prev_blksz
= 0;
3351 /* Put in max timeout */
3352 mci_writel(host
, TMOUT
, 0xFFFFFFFF);
3354 mci_writel(host
, RINTSTS
, 0xFFFFFFFF);
3355 mci_writel(host
, INTMASK
, SDMMC_INT_CMD_DONE
| SDMMC_INT_DATA_OVER
|
3356 SDMMC_INT_TXDR
| SDMMC_INT_RXDR
|
3357 DW_MCI_ERROR_FLAGS
);
3358 mci_writel(host
, CTRL
, SDMMC_CTRL_INT_ENABLE
);
3361 if (host
->slot
->mmc
->pm_flags
& MMC_PM_KEEP_POWER
)
3362 dw_mci_set_ios(host
->slot
->mmc
, &host
->slot
->mmc
->ios
);
3364 /* Force setup bus to guarantee available clock output */
3365 dw_mci_setup_bus(host
->slot
, true);
3367 /* Now that slots are all setup, we can enable card detect */
3368 dw_mci_enable_cd(host
);
3374 (mmc_can_gpio_cd(host
->slot
->mmc
) ||
3375 !mmc_card_is_removable(host
->slot
->mmc
)))
3376 clk_disable_unprepare(host
->biu_clk
);
3380 EXPORT_SYMBOL(dw_mci_runtime_resume
);
3381 #endif /* CONFIG_PM */
3383 static int __init
dw_mci_init(void)
3385 pr_info("Synopsys Designware Multimedia Card Interface Driver\n");
3389 static void __exit
dw_mci_exit(void)
3393 module_init(dw_mci_init
);
3394 module_exit(dw_mci_exit
);
3396 MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
3397 MODULE_AUTHOR("NXP Semiconductor VietNam");
3398 MODULE_AUTHOR("Imagination Technologies Ltd");
3399 MODULE_LICENSE("GPL v2");