2 * linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver
4 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
11 * Thanks to the following companies for their support:
13 * - JMicron (hardware and technical support)
16 #include <linux/delay.h>
17 #include <linux/highmem.h>
19 #include <linux/module.h>
20 #include <linux/dma-mapping.h>
21 #include <linux/slab.h>
22 #include <linux/scatterlist.h>
23 #include <linux/regulator/consumer.h>
24 #include <linux/pm_runtime.h>
26 #include <linux/leds.h>
28 #include <linux/mmc/mmc.h>
29 #include <linux/mmc/host.h>
33 #define DRIVER_NAME "sdhci"
35 #define DBG(f, x...) \
36 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
38 #if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
39 defined(CONFIG_MMC_SDHCI_MODULE))
40 #define SDHCI_USE_LEDS_CLASS
43 #define MAX_TUNING_LOOP 40
45 static unsigned int debug_quirks
= 0;
46 static unsigned int debug_quirks2
;
48 static void sdhci_finish_data(struct sdhci_host
*);
50 static void sdhci_send_command(struct sdhci_host
*, struct mmc_command
*);
51 static void sdhci_finish_command(struct sdhci_host
*);
52 static int sdhci_execute_tuning(struct mmc_host
*mmc
, u32 opcode
);
53 static void sdhci_tuning_timer(unsigned long data
);
55 #ifdef CONFIG_PM_RUNTIME
56 static int sdhci_runtime_pm_get(struct sdhci_host
*host
);
57 static int sdhci_runtime_pm_put(struct sdhci_host
*host
);
59 static inline int sdhci_runtime_pm_get(struct sdhci_host
*host
)
63 static inline int sdhci_runtime_pm_put(struct sdhci_host
*host
)
69 static void sdhci_dumpregs(struct sdhci_host
*host
)
71 pr_debug(DRIVER_NAME
": =========== REGISTER DUMP (%s)===========\n",
72 mmc_hostname(host
->mmc
));
74 pr_debug(DRIVER_NAME
": Sys addr: 0x%08x | Version: 0x%08x\n",
75 sdhci_readl(host
, SDHCI_DMA_ADDRESS
),
76 sdhci_readw(host
, SDHCI_HOST_VERSION
));
77 pr_debug(DRIVER_NAME
": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
78 sdhci_readw(host
, SDHCI_BLOCK_SIZE
),
79 sdhci_readw(host
, SDHCI_BLOCK_COUNT
));
80 pr_debug(DRIVER_NAME
": Argument: 0x%08x | Trn mode: 0x%08x\n",
81 sdhci_readl(host
, SDHCI_ARGUMENT
),
82 sdhci_readw(host
, SDHCI_TRANSFER_MODE
));
83 pr_debug(DRIVER_NAME
": Present: 0x%08x | Host ctl: 0x%08x\n",
84 sdhci_readl(host
, SDHCI_PRESENT_STATE
),
85 sdhci_readb(host
, SDHCI_HOST_CONTROL
));
86 pr_debug(DRIVER_NAME
": Power: 0x%08x | Blk gap: 0x%08x\n",
87 sdhci_readb(host
, SDHCI_POWER_CONTROL
),
88 sdhci_readb(host
, SDHCI_BLOCK_GAP_CONTROL
));
89 pr_debug(DRIVER_NAME
": Wake-up: 0x%08x | Clock: 0x%08x\n",
90 sdhci_readb(host
, SDHCI_WAKE_UP_CONTROL
),
91 sdhci_readw(host
, SDHCI_CLOCK_CONTROL
));
92 pr_debug(DRIVER_NAME
": Timeout: 0x%08x | Int stat: 0x%08x\n",
93 sdhci_readb(host
, SDHCI_TIMEOUT_CONTROL
),
94 sdhci_readl(host
, SDHCI_INT_STATUS
));
95 pr_debug(DRIVER_NAME
": Int enab: 0x%08x | Sig enab: 0x%08x\n",
96 sdhci_readl(host
, SDHCI_INT_ENABLE
),
97 sdhci_readl(host
, SDHCI_SIGNAL_ENABLE
));
98 pr_debug(DRIVER_NAME
": AC12 err: 0x%08x | Slot int: 0x%08x\n",
99 sdhci_readw(host
, SDHCI_ACMD12_ERR
),
100 sdhci_readw(host
, SDHCI_SLOT_INT_STATUS
));
101 pr_debug(DRIVER_NAME
": Caps: 0x%08x | Caps_1: 0x%08x\n",
102 sdhci_readl(host
, SDHCI_CAPABILITIES
),
103 sdhci_readl(host
, SDHCI_CAPABILITIES_1
));
104 pr_debug(DRIVER_NAME
": Cmd: 0x%08x | Max curr: 0x%08x\n",
105 sdhci_readw(host
, SDHCI_COMMAND
),
106 sdhci_readl(host
, SDHCI_MAX_CURRENT
));
107 pr_debug(DRIVER_NAME
": Host ctl2: 0x%08x\n",
108 sdhci_readw(host
, SDHCI_HOST_CONTROL2
));
110 if (host
->flags
& SDHCI_USE_ADMA
)
111 pr_debug(DRIVER_NAME
": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
112 readl(host
->ioaddr
+ SDHCI_ADMA_ERROR
),
113 readl(host
->ioaddr
+ SDHCI_ADMA_ADDRESS
));
115 pr_debug(DRIVER_NAME
": ===========================================\n");
118 /*****************************************************************************\
120 * Low level functions *
122 \*****************************************************************************/
124 static void sdhci_clear_set_irqs(struct sdhci_host
*host
, u32 clear
, u32 set
)
128 ier
= sdhci_readl(host
, SDHCI_INT_ENABLE
);
131 sdhci_writel(host
, ier
, SDHCI_INT_ENABLE
);
132 sdhci_writel(host
, ier
, SDHCI_SIGNAL_ENABLE
);
135 static void sdhci_unmask_irqs(struct sdhci_host
*host
, u32 irqs
)
137 sdhci_clear_set_irqs(host
, 0, irqs
);
140 static void sdhci_mask_irqs(struct sdhci_host
*host
, u32 irqs
)
142 sdhci_clear_set_irqs(host
, irqs
, 0);
145 static void sdhci_set_card_detection(struct sdhci_host
*host
, bool enable
)
149 if ((host
->quirks
& SDHCI_QUIRK_BROKEN_CARD_DETECTION
) ||
150 (host
->mmc
->caps
& MMC_CAP_NONREMOVABLE
))
153 present
= sdhci_readl(host
, SDHCI_PRESENT_STATE
) &
155 irqs
= present
? SDHCI_INT_CARD_REMOVE
: SDHCI_INT_CARD_INSERT
;
158 sdhci_unmask_irqs(host
, irqs
);
160 sdhci_mask_irqs(host
, irqs
);
163 static void sdhci_enable_card_detection(struct sdhci_host
*host
)
165 sdhci_set_card_detection(host
, true);
168 static void sdhci_disable_card_detection(struct sdhci_host
*host
)
170 sdhci_set_card_detection(host
, false);
173 static void sdhci_reset(struct sdhci_host
*host
, u8 mask
)
175 unsigned long timeout
;
176 u32
uninitialized_var(ier
);
178 if (host
->quirks
& SDHCI_QUIRK_NO_CARD_NO_RESET
) {
179 if (!(sdhci_readl(host
, SDHCI_PRESENT_STATE
) &
184 if (host
->quirks
& SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET
)
185 ier
= sdhci_readl(host
, SDHCI_INT_ENABLE
);
187 if (host
->ops
->platform_reset_enter
)
188 host
->ops
->platform_reset_enter(host
, mask
);
190 sdhci_writeb(host
, mask
, SDHCI_SOFTWARE_RESET
);
192 if (mask
& SDHCI_RESET_ALL
)
195 /* Wait max 100 ms */
198 /* hw clears the bit when it's done */
199 while (sdhci_readb(host
, SDHCI_SOFTWARE_RESET
) & mask
) {
201 pr_err("%s: Reset 0x%x never completed.\n",
202 mmc_hostname(host
->mmc
), (int)mask
);
203 sdhci_dumpregs(host
);
210 if (host
->ops
->platform_reset_exit
)
211 host
->ops
->platform_reset_exit(host
, mask
);
213 if (host
->quirks
& SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET
)
214 sdhci_clear_set_irqs(host
, SDHCI_INT_ALL_MASK
, ier
);
216 if (host
->flags
& (SDHCI_USE_SDMA
| SDHCI_USE_ADMA
)) {
217 if ((host
->ops
->enable_dma
) && (mask
& SDHCI_RESET_ALL
))
218 host
->ops
->enable_dma(host
);
222 static void sdhci_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
);
224 static void sdhci_init(struct sdhci_host
*host
, int soft
)
227 sdhci_reset(host
, SDHCI_RESET_CMD
|SDHCI_RESET_DATA
);
229 sdhci_reset(host
, SDHCI_RESET_ALL
);
231 sdhci_clear_set_irqs(host
, SDHCI_INT_ALL_MASK
,
232 SDHCI_INT_BUS_POWER
| SDHCI_INT_DATA_END_BIT
|
233 SDHCI_INT_DATA_CRC
| SDHCI_INT_DATA_TIMEOUT
| SDHCI_INT_INDEX
|
234 SDHCI_INT_END_BIT
| SDHCI_INT_CRC
| SDHCI_INT_TIMEOUT
|
235 SDHCI_INT_DATA_END
| SDHCI_INT_RESPONSE
);
238 /* force clock reconfiguration */
240 sdhci_set_ios(host
->mmc
, &host
->mmc
->ios
);
244 static void sdhci_reinit(struct sdhci_host
*host
)
247 sdhci_enable_card_detection(host
);
250 static void sdhci_activate_led(struct sdhci_host
*host
)
254 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
255 ctrl
|= SDHCI_CTRL_LED
;
256 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
259 static void sdhci_deactivate_led(struct sdhci_host
*host
)
263 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
264 ctrl
&= ~SDHCI_CTRL_LED
;
265 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
268 #ifdef SDHCI_USE_LEDS_CLASS
269 static void sdhci_led_control(struct led_classdev
*led
,
270 enum led_brightness brightness
)
272 struct sdhci_host
*host
= container_of(led
, struct sdhci_host
, led
);
275 spin_lock_irqsave(&host
->lock
, flags
);
277 if (host
->runtime_suspended
)
280 if (brightness
== LED_OFF
)
281 sdhci_deactivate_led(host
);
283 sdhci_activate_led(host
);
285 spin_unlock_irqrestore(&host
->lock
, flags
);
289 /*****************************************************************************\
293 \*****************************************************************************/
295 static void sdhci_read_block_pio(struct sdhci_host
*host
)
298 size_t blksize
, len
, chunk
;
299 u32
uninitialized_var(scratch
);
302 DBG("PIO reading\n");
304 blksize
= host
->data
->blksz
;
307 local_irq_save(flags
);
310 if (!sg_miter_next(&host
->sg_miter
))
313 len
= min(host
->sg_miter
.length
, blksize
);
316 host
->sg_miter
.consumed
= len
;
318 buf
= host
->sg_miter
.addr
;
322 scratch
= sdhci_readl(host
, SDHCI_BUFFER
);
326 *buf
= scratch
& 0xFF;
335 sg_miter_stop(&host
->sg_miter
);
337 local_irq_restore(flags
);
340 static void sdhci_write_block_pio(struct sdhci_host
*host
)
343 size_t blksize
, len
, chunk
;
347 DBG("PIO writing\n");
349 blksize
= host
->data
->blksz
;
353 local_irq_save(flags
);
356 if (!sg_miter_next(&host
->sg_miter
))
359 len
= min(host
->sg_miter
.length
, blksize
);
362 host
->sg_miter
.consumed
= len
;
364 buf
= host
->sg_miter
.addr
;
367 scratch
|= (u32
)*buf
<< (chunk
* 8);
373 if ((chunk
== 4) || ((len
== 0) && (blksize
== 0))) {
374 sdhci_writel(host
, scratch
, SDHCI_BUFFER
);
381 sg_miter_stop(&host
->sg_miter
);
383 local_irq_restore(flags
);
386 static void sdhci_transfer_pio(struct sdhci_host
*host
)
392 if (host
->blocks
== 0)
395 if (host
->data
->flags
& MMC_DATA_READ
)
396 mask
= SDHCI_DATA_AVAILABLE
;
398 mask
= SDHCI_SPACE_AVAILABLE
;
401 * Some controllers (JMicron JMB38x) mess up the buffer bits
402 * for transfers < 4 bytes. As long as it is just one block,
403 * we can ignore the bits.
405 if ((host
->quirks
& SDHCI_QUIRK_BROKEN_SMALL_PIO
) &&
406 (host
->data
->blocks
== 1))
409 while (sdhci_readl(host
, SDHCI_PRESENT_STATE
) & mask
) {
410 if (host
->quirks
& SDHCI_QUIRK_PIO_NEEDS_DELAY
)
413 if (host
->data
->flags
& MMC_DATA_READ
)
414 sdhci_read_block_pio(host
);
416 sdhci_write_block_pio(host
);
419 if (host
->blocks
== 0)
423 DBG("PIO transfer complete.\n");
426 static char *sdhci_kmap_atomic(struct scatterlist
*sg
, unsigned long *flags
)
428 local_irq_save(*flags
);
429 return kmap_atomic(sg_page(sg
)) + sg
->offset
;
432 static void sdhci_kunmap_atomic(void *buffer
, unsigned long *flags
)
434 kunmap_atomic(buffer
);
435 local_irq_restore(*flags
);
438 static void sdhci_set_adma_desc(u8
*desc
, u32 addr
, int len
, unsigned cmd
)
440 __le32
*dataddr
= (__le32 __force
*)(desc
+ 4);
441 __le16
*cmdlen
= (__le16 __force
*)desc
;
443 /* SDHCI specification says ADMA descriptors should be 4 byte
444 * aligned, so using 16 or 32bit operations should be safe. */
446 cmdlen
[0] = cpu_to_le16(cmd
);
447 cmdlen
[1] = cpu_to_le16(len
);
449 dataddr
[0] = cpu_to_le32(addr
);
452 static int sdhci_adma_table_pre(struct sdhci_host
*host
,
453 struct mmc_data
*data
)
460 dma_addr_t align_addr
;
463 struct scatterlist
*sg
;
469 * The spec does not specify endianness of descriptor table.
470 * We currently guess that it is LE.
473 if (data
->flags
& MMC_DATA_READ
)
474 direction
= DMA_FROM_DEVICE
;
476 direction
= DMA_TO_DEVICE
;
479 * The ADMA descriptor table is mapped further down as we
480 * need to fill it with data first.
483 host
->align_addr
= dma_map_single(mmc_dev(host
->mmc
),
484 host
->align_buffer
, 128 * 4, direction
);
485 if (dma_mapping_error(mmc_dev(host
->mmc
), host
->align_addr
))
487 BUG_ON(host
->align_addr
& 0x3);
489 host
->sg_count
= dma_map_sg(mmc_dev(host
->mmc
),
490 data
->sg
, data
->sg_len
, direction
);
491 if (host
->sg_count
== 0)
494 desc
= host
->adma_desc
;
495 align
= host
->align_buffer
;
497 align_addr
= host
->align_addr
;
499 for_each_sg(data
->sg
, sg
, host
->sg_count
, i
) {
500 addr
= sg_dma_address(sg
);
501 len
= sg_dma_len(sg
);
504 * The SDHCI specification states that ADMA
505 * addresses must be 32-bit aligned. If they
506 * aren't, then we use a bounce buffer for
507 * the (up to three) bytes that screw up the
510 offset
= (4 - (addr
& 0x3)) & 0x3;
512 if (data
->flags
& MMC_DATA_WRITE
) {
513 buffer
= sdhci_kmap_atomic(sg
, &flags
);
514 WARN_ON(((long)buffer
& PAGE_MASK
) > (PAGE_SIZE
- 3));
515 memcpy(align
, buffer
, offset
);
516 sdhci_kunmap_atomic(buffer
, &flags
);
520 sdhci_set_adma_desc(desc
, align_addr
, offset
, 0x21);
522 BUG_ON(offset
> 65536);
536 sdhci_set_adma_desc(desc
, addr
, len
, 0x21);
540 * If this triggers then we have a calculation bug
543 WARN_ON((desc
- host
->adma_desc
) > (128 * 2 + 1) * 4);
546 if (host
->quirks
& SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
) {
548 * Mark the last descriptor as the terminating descriptor
550 if (desc
!= host
->adma_desc
) {
552 desc
[0] |= 0x2; /* end */
556 * Add a terminating entry.
559 /* nop, end, valid */
560 sdhci_set_adma_desc(desc
, 0, 0, 0x3);
564 * Resync align buffer as we might have changed it.
566 if (data
->flags
& MMC_DATA_WRITE
) {
567 dma_sync_single_for_device(mmc_dev(host
->mmc
),
568 host
->align_addr
, 128 * 4, direction
);
571 host
->adma_addr
= dma_map_single(mmc_dev(host
->mmc
),
572 host
->adma_desc
, (128 * 2 + 1) * 4, DMA_TO_DEVICE
);
573 if (dma_mapping_error(mmc_dev(host
->mmc
), host
->adma_addr
))
575 BUG_ON(host
->adma_addr
& 0x3);
580 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
,
581 data
->sg_len
, direction
);
583 dma_unmap_single(mmc_dev(host
->mmc
), host
->align_addr
,
589 static void sdhci_adma_table_post(struct sdhci_host
*host
,
590 struct mmc_data
*data
)
594 struct scatterlist
*sg
;
600 if (data
->flags
& MMC_DATA_READ
)
601 direction
= DMA_FROM_DEVICE
;
603 direction
= DMA_TO_DEVICE
;
605 dma_unmap_single(mmc_dev(host
->mmc
), host
->adma_addr
,
606 (128 * 2 + 1) * 4, DMA_TO_DEVICE
);
608 dma_unmap_single(mmc_dev(host
->mmc
), host
->align_addr
,
611 if (data
->flags
& MMC_DATA_READ
) {
612 dma_sync_sg_for_cpu(mmc_dev(host
->mmc
), data
->sg
,
613 data
->sg_len
, direction
);
615 align
= host
->align_buffer
;
617 for_each_sg(data
->sg
, sg
, host
->sg_count
, i
) {
618 if (sg_dma_address(sg
) & 0x3) {
619 size
= 4 - (sg_dma_address(sg
) & 0x3);
621 buffer
= sdhci_kmap_atomic(sg
, &flags
);
622 WARN_ON(((long)buffer
& PAGE_MASK
) > (PAGE_SIZE
- 3));
623 memcpy(buffer
, align
, size
);
624 sdhci_kunmap_atomic(buffer
, &flags
);
631 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
,
632 data
->sg_len
, direction
);
635 static u8
sdhci_calc_timeout(struct sdhci_host
*host
, struct mmc_command
*cmd
)
638 struct mmc_data
*data
= cmd
->data
;
639 unsigned target_timeout
, current_timeout
;
642 * If the host controller provides us with an incorrect timeout
643 * value, just skip the check and use 0xE. The hardware may take
644 * longer to time out, but that's much better than having a too-short
647 if (host
->quirks
& SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
)
650 /* Unspecified timeout, assume max */
651 if (!data
&& !cmd
->cmd_timeout_ms
)
656 target_timeout
= cmd
->cmd_timeout_ms
* 1000;
658 target_timeout
= data
->timeout_ns
/ 1000;
660 target_timeout
+= data
->timeout_clks
/ host
->clock
;
664 * Figure out needed cycles.
665 * We do this in steps in order to fit inside a 32 bit int.
666 * The first step is the minimum timeout, which will have a
667 * minimum resolution of 6 bits:
668 * (1) 2^13*1000 > 2^22,
669 * (2) host->timeout_clk < 2^16
674 current_timeout
= (1 << 13) * 1000 / host
->timeout_clk
;
675 while (current_timeout
< target_timeout
) {
677 current_timeout
<<= 1;
683 pr_warning("%s: Too large timeout requested for CMD%d!\n",
684 mmc_hostname(host
->mmc
), cmd
->opcode
);
691 static void sdhci_set_transfer_irqs(struct sdhci_host
*host
)
693 u32 pio_irqs
= SDHCI_INT_DATA_AVAIL
| SDHCI_INT_SPACE_AVAIL
;
694 u32 dma_irqs
= SDHCI_INT_DMA_END
| SDHCI_INT_ADMA_ERROR
;
696 if (host
->flags
& SDHCI_REQ_USE_DMA
)
697 sdhci_clear_set_irqs(host
, pio_irqs
, dma_irqs
);
699 sdhci_clear_set_irqs(host
, dma_irqs
, pio_irqs
);
702 static void sdhci_prepare_data(struct sdhci_host
*host
, struct mmc_command
*cmd
)
706 struct mmc_data
*data
= cmd
->data
;
711 if (data
|| (cmd
->flags
& MMC_RSP_BUSY
)) {
712 count
= sdhci_calc_timeout(host
, cmd
);
713 sdhci_writeb(host
, count
, SDHCI_TIMEOUT_CONTROL
);
720 BUG_ON(data
->blksz
* data
->blocks
> 524288);
721 BUG_ON(data
->blksz
> host
->mmc
->max_blk_size
);
722 BUG_ON(data
->blocks
> 65535);
725 host
->data_early
= 0;
726 host
->data
->bytes_xfered
= 0;
728 if (host
->flags
& (SDHCI_USE_SDMA
| SDHCI_USE_ADMA
))
729 host
->flags
|= SDHCI_REQ_USE_DMA
;
732 * FIXME: This doesn't account for merging when mapping the
735 if (host
->flags
& SDHCI_REQ_USE_DMA
) {
737 struct scatterlist
*sg
;
740 if (host
->flags
& SDHCI_USE_ADMA
) {
741 if (host
->quirks
& SDHCI_QUIRK_32BIT_ADMA_SIZE
)
744 if (host
->quirks
& SDHCI_QUIRK_32BIT_DMA_SIZE
)
748 if (unlikely(broken
)) {
749 for_each_sg(data
->sg
, sg
, data
->sg_len
, i
) {
750 if (sg
->length
& 0x3) {
751 DBG("Reverting to PIO because of "
752 "transfer size (%d)\n",
754 host
->flags
&= ~SDHCI_REQ_USE_DMA
;
762 * The assumption here being that alignment is the same after
763 * translation to device address space.
765 if (host
->flags
& SDHCI_REQ_USE_DMA
) {
767 struct scatterlist
*sg
;
770 if (host
->flags
& SDHCI_USE_ADMA
) {
772 * As we use 3 byte chunks to work around
773 * alignment problems, we need to check this
776 if (host
->quirks
& SDHCI_QUIRK_32BIT_ADMA_SIZE
)
779 if (host
->quirks
& SDHCI_QUIRK_32BIT_DMA_ADDR
)
783 if (unlikely(broken
)) {
784 for_each_sg(data
->sg
, sg
, data
->sg_len
, i
) {
785 if (sg
->offset
& 0x3) {
786 DBG("Reverting to PIO because of "
788 host
->flags
&= ~SDHCI_REQ_USE_DMA
;
795 if (host
->flags
& SDHCI_REQ_USE_DMA
) {
796 if (host
->flags
& SDHCI_USE_ADMA
) {
797 ret
= sdhci_adma_table_pre(host
, data
);
800 * This only happens when someone fed
801 * us an invalid request.
804 host
->flags
&= ~SDHCI_REQ_USE_DMA
;
806 sdhci_writel(host
, host
->adma_addr
,
812 sg_cnt
= dma_map_sg(mmc_dev(host
->mmc
),
813 data
->sg
, data
->sg_len
,
814 (data
->flags
& MMC_DATA_READ
) ?
819 * This only happens when someone fed
820 * us an invalid request.
823 host
->flags
&= ~SDHCI_REQ_USE_DMA
;
825 WARN_ON(sg_cnt
!= 1);
826 sdhci_writel(host
, sg_dma_address(data
->sg
),
833 * Always adjust the DMA selection as some controllers
834 * (e.g. JMicron) can't do PIO properly when the selection
837 if (host
->version
>= SDHCI_SPEC_200
) {
838 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
839 ctrl
&= ~SDHCI_CTRL_DMA_MASK
;
840 if ((host
->flags
& SDHCI_REQ_USE_DMA
) &&
841 (host
->flags
& SDHCI_USE_ADMA
))
842 ctrl
|= SDHCI_CTRL_ADMA32
;
844 ctrl
|= SDHCI_CTRL_SDMA
;
845 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
848 if (!(host
->flags
& SDHCI_REQ_USE_DMA
)) {
851 flags
= SG_MITER_ATOMIC
;
852 if (host
->data
->flags
& MMC_DATA_READ
)
853 flags
|= SG_MITER_TO_SG
;
855 flags
|= SG_MITER_FROM_SG
;
856 sg_miter_start(&host
->sg_miter
, data
->sg
, data
->sg_len
, flags
);
857 host
->blocks
= data
->blocks
;
860 sdhci_set_transfer_irqs(host
);
862 /* Set the DMA boundary value and block size */
863 sdhci_writew(host
, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG
,
864 data
->blksz
), SDHCI_BLOCK_SIZE
);
865 sdhci_writew(host
, data
->blocks
, SDHCI_BLOCK_COUNT
);
868 static void sdhci_set_transfer_mode(struct sdhci_host
*host
,
869 struct mmc_command
*cmd
)
872 struct mmc_data
*data
= cmd
->data
;
877 WARN_ON(!host
->data
);
879 mode
= SDHCI_TRNS_BLK_CNT_EN
;
880 if (mmc_op_multi(cmd
->opcode
) || data
->blocks
> 1) {
881 mode
|= SDHCI_TRNS_MULTI
;
883 * If we are sending CMD23, CMD12 never gets sent
884 * on successful completion (so no Auto-CMD12).
886 if (!host
->mrq
->sbc
&& (host
->flags
& SDHCI_AUTO_CMD12
))
887 mode
|= SDHCI_TRNS_AUTO_CMD12
;
888 else if (host
->mrq
->sbc
&& (host
->flags
& SDHCI_AUTO_CMD23
)) {
889 mode
|= SDHCI_TRNS_AUTO_CMD23
;
890 sdhci_writel(host
, host
->mrq
->sbc
->arg
, SDHCI_ARGUMENT2
);
894 if (data
->flags
& MMC_DATA_READ
)
895 mode
|= SDHCI_TRNS_READ
;
896 if (host
->flags
& SDHCI_REQ_USE_DMA
)
897 mode
|= SDHCI_TRNS_DMA
;
899 sdhci_writew(host
, mode
, SDHCI_TRANSFER_MODE
);
902 static void sdhci_finish_data(struct sdhci_host
*host
)
904 struct mmc_data
*data
;
911 if (host
->flags
& SDHCI_REQ_USE_DMA
) {
912 if (host
->flags
& SDHCI_USE_ADMA
)
913 sdhci_adma_table_post(host
, data
);
915 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
,
916 data
->sg_len
, (data
->flags
& MMC_DATA_READ
) ?
917 DMA_FROM_DEVICE
: DMA_TO_DEVICE
);
922 * The specification states that the block count register must
923 * be updated, but it does not specify at what point in the
924 * data flow. That makes the register entirely useless to read
925 * back so we have to assume that nothing made it to the card
926 * in the event of an error.
929 data
->bytes_xfered
= 0;
931 data
->bytes_xfered
= data
->blksz
* data
->blocks
;
934 * Need to send CMD12 if -
935 * a) open-ended multiblock transfer (no CMD23)
936 * b) error in multiblock transfer
943 * The controller needs a reset of internal state machines
944 * upon error conditions.
947 sdhci_reset(host
, SDHCI_RESET_CMD
);
948 sdhci_reset(host
, SDHCI_RESET_DATA
);
951 sdhci_send_command(host
, data
->stop
);
953 tasklet_schedule(&host
->finish_tasklet
);
956 static void sdhci_send_command(struct sdhci_host
*host
, struct mmc_command
*cmd
)
960 unsigned long timeout
;
967 mask
= SDHCI_CMD_INHIBIT
;
968 if ((cmd
->data
!= NULL
) || (cmd
->flags
& MMC_RSP_BUSY
))
969 mask
|= SDHCI_DATA_INHIBIT
;
971 /* We shouldn't wait for data inihibit for stop commands, even
972 though they might use busy signaling */
973 if (host
->mrq
->data
&& (cmd
== host
->mrq
->data
->stop
))
974 mask
&= ~SDHCI_DATA_INHIBIT
;
976 while (sdhci_readl(host
, SDHCI_PRESENT_STATE
) & mask
) {
978 pr_err("%s: Controller never released "
979 "inhibit bit(s).\n", mmc_hostname(host
->mmc
));
980 sdhci_dumpregs(host
);
982 tasklet_schedule(&host
->finish_tasklet
);
989 mod_timer(&host
->timer
, jiffies
+ 10 * HZ
);
993 sdhci_prepare_data(host
, cmd
);
995 sdhci_writel(host
, cmd
->arg
, SDHCI_ARGUMENT
);
997 sdhci_set_transfer_mode(host
, cmd
);
999 if ((cmd
->flags
& MMC_RSP_136
) && (cmd
->flags
& MMC_RSP_BUSY
)) {
1000 pr_err("%s: Unsupported response type!\n",
1001 mmc_hostname(host
->mmc
));
1002 cmd
->error
= -EINVAL
;
1003 tasklet_schedule(&host
->finish_tasklet
);
1007 if (!(cmd
->flags
& MMC_RSP_PRESENT
))
1008 flags
= SDHCI_CMD_RESP_NONE
;
1009 else if (cmd
->flags
& MMC_RSP_136
)
1010 flags
= SDHCI_CMD_RESP_LONG
;
1011 else if (cmd
->flags
& MMC_RSP_BUSY
)
1012 flags
= SDHCI_CMD_RESP_SHORT_BUSY
;
1014 flags
= SDHCI_CMD_RESP_SHORT
;
1016 if (cmd
->flags
& MMC_RSP_CRC
)
1017 flags
|= SDHCI_CMD_CRC
;
1018 if (cmd
->flags
& MMC_RSP_OPCODE
)
1019 flags
|= SDHCI_CMD_INDEX
;
1021 /* CMD19 is special in that the Data Present Select should be set */
1022 if (cmd
->data
|| cmd
->opcode
== MMC_SEND_TUNING_BLOCK
||
1023 cmd
->opcode
== MMC_SEND_TUNING_BLOCK_HS200
)
1024 flags
|= SDHCI_CMD_DATA
;
1026 sdhci_writew(host
, SDHCI_MAKE_CMD(cmd
->opcode
, flags
), SDHCI_COMMAND
);
1029 static void sdhci_finish_command(struct sdhci_host
*host
)
1033 BUG_ON(host
->cmd
== NULL
);
1035 if (host
->cmd
->flags
& MMC_RSP_PRESENT
) {
1036 if (host
->cmd
->flags
& MMC_RSP_136
) {
1037 /* CRC is stripped so we need to do some shifting. */
1038 for (i
= 0;i
< 4;i
++) {
1039 host
->cmd
->resp
[i
] = sdhci_readl(host
,
1040 SDHCI_RESPONSE
+ (3-i
)*4) << 8;
1042 host
->cmd
->resp
[i
] |=
1044 SDHCI_RESPONSE
+ (3-i
)*4-1);
1047 host
->cmd
->resp
[0] = sdhci_readl(host
, SDHCI_RESPONSE
);
1051 host
->cmd
->error
= 0;
1053 /* Finished CMD23, now send actual command. */
1054 if (host
->cmd
== host
->mrq
->sbc
) {
1056 sdhci_send_command(host
, host
->mrq
->cmd
);
1059 /* Processed actual command. */
1060 if (host
->data
&& host
->data_early
)
1061 sdhci_finish_data(host
);
1063 if (!host
->cmd
->data
)
1064 tasklet_schedule(&host
->finish_tasklet
);
1070 static void sdhci_set_clock(struct sdhci_host
*host
, unsigned int clock
)
1072 int div
= 0; /* Initialized for compiler warning */
1073 int real_div
= div
, clk_mul
= 1;
1075 unsigned long timeout
;
1077 if (clock
&& clock
== host
->clock
)
1080 host
->mmc
->actual_clock
= 0;
1082 if (host
->ops
->set_clock
) {
1083 host
->ops
->set_clock(host
, clock
);
1084 if (host
->quirks
& SDHCI_QUIRK_NONSTANDARD_CLOCK
)
1088 sdhci_writew(host
, 0, SDHCI_CLOCK_CONTROL
);
1093 if (host
->version
>= SDHCI_SPEC_300
) {
1095 * Check if the Host Controller supports Programmable Clock
1098 if (host
->clk_mul
) {
1102 * We need to figure out whether the Host Driver needs
1103 * to select Programmable Clock Mode, or the value can
1104 * be set automatically by the Host Controller based on
1105 * the Preset Value registers.
1107 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1108 if (!(ctrl
& SDHCI_CTRL_PRESET_VAL_ENABLE
)) {
1109 for (div
= 1; div
<= 1024; div
++) {
1110 if (((host
->max_clk
* host
->clk_mul
) /
1115 * Set Programmable Clock Mode in the Clock
1118 clk
= SDHCI_PROG_CLOCK_MODE
;
1120 clk_mul
= host
->clk_mul
;
1124 /* Version 3.00 divisors must be a multiple of 2. */
1125 if (host
->max_clk
<= clock
)
1128 for (div
= 2; div
< SDHCI_MAX_DIV_SPEC_300
;
1130 if ((host
->max_clk
/ div
) <= clock
)
1138 /* Version 2.00 divisors must be a power of 2. */
1139 for (div
= 1; div
< SDHCI_MAX_DIV_SPEC_200
; div
*= 2) {
1140 if ((host
->max_clk
/ div
) <= clock
)
1148 host
->mmc
->actual_clock
= (host
->max_clk
* clk_mul
) / real_div
;
1150 clk
|= (div
& SDHCI_DIV_MASK
) << SDHCI_DIVIDER_SHIFT
;
1151 clk
|= ((div
& SDHCI_DIV_HI_MASK
) >> SDHCI_DIV_MASK_LEN
)
1152 << SDHCI_DIVIDER_HI_SHIFT
;
1153 clk
|= SDHCI_CLOCK_INT_EN
;
1154 sdhci_writew(host
, clk
, SDHCI_CLOCK_CONTROL
);
1156 /* Wait max 20 ms */
1158 while (!((clk
= sdhci_readw(host
, SDHCI_CLOCK_CONTROL
))
1159 & SDHCI_CLOCK_INT_STABLE
)) {
1161 pr_err("%s: Internal clock never "
1162 "stabilised.\n", mmc_hostname(host
->mmc
));
1163 sdhci_dumpregs(host
);
1170 clk
|= SDHCI_CLOCK_CARD_EN
;
1171 sdhci_writew(host
, clk
, SDHCI_CLOCK_CONTROL
);
1174 host
->clock
= clock
;
1177 static int sdhci_set_power(struct sdhci_host
*host
, unsigned short power
)
1181 if (power
!= (unsigned short)-1) {
1182 switch (1 << power
) {
1183 case MMC_VDD_165_195
:
1184 pwr
= SDHCI_POWER_180
;
1188 pwr
= SDHCI_POWER_300
;
1192 pwr
= SDHCI_POWER_330
;
1199 if (host
->pwr
== pwr
)
1205 sdhci_writeb(host
, 0, SDHCI_POWER_CONTROL
);
1210 * Spec says that we should clear the power reg before setting
1211 * a new value. Some controllers don't seem to like this though.
1213 if (!(host
->quirks
& SDHCI_QUIRK_SINGLE_POWER_WRITE
))
1214 sdhci_writeb(host
, 0, SDHCI_POWER_CONTROL
);
1217 * At least the Marvell CaFe chip gets confused if we set the voltage
1218 * and set turn on power at the same time, so set the voltage first.
1220 if (host
->quirks
& SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
)
1221 sdhci_writeb(host
, pwr
, SDHCI_POWER_CONTROL
);
1223 pwr
|= SDHCI_POWER_ON
;
1225 sdhci_writeb(host
, pwr
, SDHCI_POWER_CONTROL
);
1228 * Some controllers need an extra 10ms delay of 10ms before they
1229 * can apply clock after applying power
1231 if (host
->quirks
& SDHCI_QUIRK_DELAY_AFTER_POWER
)
1237 /*****************************************************************************\
1241 \*****************************************************************************/
1243 static void sdhci_request(struct mmc_host
*mmc
, struct mmc_request
*mrq
)
1245 struct sdhci_host
*host
;
1247 unsigned long flags
;
1249 host
= mmc_priv(mmc
);
1251 sdhci_runtime_pm_get(host
);
1253 spin_lock_irqsave(&host
->lock
, flags
);
1255 WARN_ON(host
->mrq
!= NULL
);
1257 #ifndef SDHCI_USE_LEDS_CLASS
1258 sdhci_activate_led(host
);
1262 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1263 * requests if Auto-CMD12 is enabled.
1265 if (!mrq
->sbc
&& (host
->flags
& SDHCI_AUTO_CMD12
)) {
1267 mrq
->data
->stop
= NULL
;
1274 /* If polling, assume that the card is always present. */
1275 if (host
->quirks
& SDHCI_QUIRK_BROKEN_CARD_DETECTION
)
1278 present
= sdhci_readl(host
, SDHCI_PRESENT_STATE
) &
1281 if (!present
|| host
->flags
& SDHCI_DEVICE_DEAD
) {
1282 host
->mrq
->cmd
->error
= -ENOMEDIUM
;
1283 tasklet_schedule(&host
->finish_tasklet
);
1287 present_state
= sdhci_readl(host
, SDHCI_PRESENT_STATE
);
1289 * Check if the re-tuning timer has already expired and there
1290 * is no on-going data transfer. If so, we need to execute
1291 * tuning procedure before sending command.
1293 if ((host
->flags
& SDHCI_NEEDS_RETUNING
) &&
1294 !(present_state
& (SDHCI_DOING_WRITE
| SDHCI_DOING_READ
))) {
1295 spin_unlock_irqrestore(&host
->lock
, flags
);
1296 sdhci_execute_tuning(mmc
, mrq
->cmd
->opcode
);
1297 spin_lock_irqsave(&host
->lock
, flags
);
1299 /* Restore original mmc_request structure */
1303 if (mrq
->sbc
&& !(host
->flags
& SDHCI_AUTO_CMD23
))
1304 sdhci_send_command(host
, mrq
->sbc
);
1306 sdhci_send_command(host
, mrq
->cmd
);
1310 spin_unlock_irqrestore(&host
->lock
, flags
);
1313 static void sdhci_do_set_ios(struct sdhci_host
*host
, struct mmc_ios
*ios
)
1315 unsigned long flags
;
1319 spin_lock_irqsave(&host
->lock
, flags
);
1321 if (host
->flags
& SDHCI_DEVICE_DEAD
) {
1322 spin_unlock_irqrestore(&host
->lock
, flags
);
1323 if (host
->vmmc
&& ios
->power_mode
== MMC_POWER_OFF
)
1324 mmc_regulator_set_ocr(host
->mmc
, host
->vmmc
, 0);
1329 * Reset the chip on each power off.
1330 * Should clear out any weird states.
1332 if (ios
->power_mode
== MMC_POWER_OFF
) {
1333 sdhci_writel(host
, 0, SDHCI_SIGNAL_ENABLE
);
1337 sdhci_set_clock(host
, ios
->clock
);
1339 if (ios
->power_mode
== MMC_POWER_OFF
)
1340 vdd_bit
= sdhci_set_power(host
, -1);
1342 vdd_bit
= sdhci_set_power(host
, ios
->vdd
);
1344 if (host
->vmmc
&& vdd_bit
!= -1) {
1345 spin_unlock_irqrestore(&host
->lock
, flags
);
1346 mmc_regulator_set_ocr(host
->mmc
, host
->vmmc
, vdd_bit
);
1347 spin_lock_irqsave(&host
->lock
, flags
);
1350 if (host
->ops
->platform_send_init_74_clocks
)
1351 host
->ops
->platform_send_init_74_clocks(host
, ios
->power_mode
);
1354 * If your platform has 8-bit width support but is not a v3 controller,
1355 * or if it requires special setup code, you should implement that in
1356 * platform_8bit_width().
1358 if (host
->ops
->platform_8bit_width
)
1359 host
->ops
->platform_8bit_width(host
, ios
->bus_width
);
1361 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
1362 if (ios
->bus_width
== MMC_BUS_WIDTH_8
) {
1363 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
1364 if (host
->version
>= SDHCI_SPEC_300
)
1365 ctrl
|= SDHCI_CTRL_8BITBUS
;
1367 if (host
->version
>= SDHCI_SPEC_300
)
1368 ctrl
&= ~SDHCI_CTRL_8BITBUS
;
1369 if (ios
->bus_width
== MMC_BUS_WIDTH_4
)
1370 ctrl
|= SDHCI_CTRL_4BITBUS
;
1372 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
1374 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
1377 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
1379 if ((ios
->timing
== MMC_TIMING_SD_HS
||
1380 ios
->timing
== MMC_TIMING_MMC_HS
)
1381 && !(host
->quirks
& SDHCI_QUIRK_NO_HISPD_BIT
))
1382 ctrl
|= SDHCI_CTRL_HISPD
;
1384 ctrl
&= ~SDHCI_CTRL_HISPD
;
1386 if (host
->version
>= SDHCI_SPEC_300
) {
1390 /* In case of UHS-I modes, set High Speed Enable */
1391 if ((ios
->timing
== MMC_TIMING_MMC_HS200
) ||
1392 (ios
->timing
== MMC_TIMING_UHS_SDR50
) ||
1393 (ios
->timing
== MMC_TIMING_UHS_SDR104
) ||
1394 (ios
->timing
== MMC_TIMING_UHS_DDR50
) ||
1395 (ios
->timing
== MMC_TIMING_UHS_SDR25
))
1396 ctrl
|= SDHCI_CTRL_HISPD
;
1398 ctrl_2
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1399 if (!(ctrl_2
& SDHCI_CTRL_PRESET_VAL_ENABLE
)) {
1400 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
1402 * We only need to set Driver Strength if the
1403 * preset value enable is not set.
1405 ctrl_2
&= ~SDHCI_CTRL_DRV_TYPE_MASK
;
1406 if (ios
->drv_type
== MMC_SET_DRIVER_TYPE_A
)
1407 ctrl_2
|= SDHCI_CTRL_DRV_TYPE_A
;
1408 else if (ios
->drv_type
== MMC_SET_DRIVER_TYPE_C
)
1409 ctrl_2
|= SDHCI_CTRL_DRV_TYPE_C
;
1411 sdhci_writew(host
, ctrl_2
, SDHCI_HOST_CONTROL2
);
1414 * According to SDHC Spec v3.00, if the Preset Value
1415 * Enable in the Host Control 2 register is set, we
1416 * need to reset SD Clock Enable before changing High
1417 * Speed Enable to avoid generating clock gliches.
1420 /* Reset SD Clock Enable */
1421 clk
= sdhci_readw(host
, SDHCI_CLOCK_CONTROL
);
1422 clk
&= ~SDHCI_CLOCK_CARD_EN
;
1423 sdhci_writew(host
, clk
, SDHCI_CLOCK_CONTROL
);
1425 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
1427 /* Re-enable SD Clock */
1428 clock
= host
->clock
;
1430 sdhci_set_clock(host
, clock
);
1434 /* Reset SD Clock Enable */
1435 clk
= sdhci_readw(host
, SDHCI_CLOCK_CONTROL
);
1436 clk
&= ~SDHCI_CLOCK_CARD_EN
;
1437 sdhci_writew(host
, clk
, SDHCI_CLOCK_CONTROL
);
1439 if (host
->ops
->set_uhs_signaling
)
1440 host
->ops
->set_uhs_signaling(host
, ios
->timing
);
1442 ctrl_2
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1443 /* Select Bus Speed Mode for host */
1444 ctrl_2
&= ~SDHCI_CTRL_UHS_MASK
;
1445 if (ios
->timing
== MMC_TIMING_MMC_HS200
)
1446 ctrl_2
|= SDHCI_CTRL_HS_SDR200
;
1447 else if (ios
->timing
== MMC_TIMING_UHS_SDR12
)
1448 ctrl_2
|= SDHCI_CTRL_UHS_SDR12
;
1449 else if (ios
->timing
== MMC_TIMING_UHS_SDR25
)
1450 ctrl_2
|= SDHCI_CTRL_UHS_SDR25
;
1451 else if (ios
->timing
== MMC_TIMING_UHS_SDR50
)
1452 ctrl_2
|= SDHCI_CTRL_UHS_SDR50
;
1453 else if (ios
->timing
== MMC_TIMING_UHS_SDR104
)
1454 ctrl_2
|= SDHCI_CTRL_UHS_SDR104
;
1455 else if (ios
->timing
== MMC_TIMING_UHS_DDR50
)
1456 ctrl_2
|= SDHCI_CTRL_UHS_DDR50
;
1457 sdhci_writew(host
, ctrl_2
, SDHCI_HOST_CONTROL2
);
1460 /* Re-enable SD Clock */
1461 clock
= host
->clock
;
1463 sdhci_set_clock(host
, clock
);
1465 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
1468 * Some (ENE) controllers go apeshit on some ios operation,
1469 * signalling timeout and CRC errors even on CMD0. Resetting
1470 * it on each ios seems to solve the problem.
1472 if(host
->quirks
& SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS
)
1473 sdhci_reset(host
, SDHCI_RESET_CMD
| SDHCI_RESET_DATA
);
1476 spin_unlock_irqrestore(&host
->lock
, flags
);
1479 static void sdhci_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1481 struct sdhci_host
*host
= mmc_priv(mmc
);
1483 sdhci_runtime_pm_get(host
);
1484 sdhci_do_set_ios(host
, ios
);
1485 sdhci_runtime_pm_put(host
);
1488 static int sdhci_check_ro(struct sdhci_host
*host
)
1490 unsigned long flags
;
1493 spin_lock_irqsave(&host
->lock
, flags
);
1495 if (host
->flags
& SDHCI_DEVICE_DEAD
)
1497 else if (host
->ops
->get_ro
)
1498 is_readonly
= host
->ops
->get_ro(host
);
1500 is_readonly
= !(sdhci_readl(host
, SDHCI_PRESENT_STATE
)
1501 & SDHCI_WRITE_PROTECT
);
1503 spin_unlock_irqrestore(&host
->lock
, flags
);
1505 /* This quirk needs to be replaced by a callback-function later */
1506 return host
->quirks
& SDHCI_QUIRK_INVERTED_WRITE_PROTECT
?
1507 !is_readonly
: is_readonly
;
1510 #define SAMPLE_COUNT 5
1512 static int sdhci_do_get_ro(struct sdhci_host
*host
)
1516 if (!(host
->quirks
& SDHCI_QUIRK_UNSTABLE_RO_DETECT
))
1517 return sdhci_check_ro(host
);
1520 for (i
= 0; i
< SAMPLE_COUNT
; i
++) {
1521 if (sdhci_check_ro(host
)) {
1522 if (++ro_count
> SAMPLE_COUNT
/ 2)
1530 static void sdhci_hw_reset(struct mmc_host
*mmc
)
1532 struct sdhci_host
*host
= mmc_priv(mmc
);
1534 if (host
->ops
&& host
->ops
->hw_reset
)
1535 host
->ops
->hw_reset(host
);
1538 static int sdhci_get_ro(struct mmc_host
*mmc
)
1540 struct sdhci_host
*host
= mmc_priv(mmc
);
1543 sdhci_runtime_pm_get(host
);
1544 ret
= sdhci_do_get_ro(host
);
1545 sdhci_runtime_pm_put(host
);
1549 static void sdhci_enable_sdio_irq_nolock(struct sdhci_host
*host
, int enable
)
1551 if (host
->flags
& SDHCI_DEVICE_DEAD
)
1555 host
->flags
|= SDHCI_SDIO_IRQ_ENABLED
;
1557 host
->flags
&= ~SDHCI_SDIO_IRQ_ENABLED
;
1559 /* SDIO IRQ will be enabled as appropriate in runtime resume */
1560 if (host
->runtime_suspended
)
1564 sdhci_unmask_irqs(host
, SDHCI_INT_CARD_INT
);
1566 sdhci_mask_irqs(host
, SDHCI_INT_CARD_INT
);
1571 static void sdhci_enable_sdio_irq(struct mmc_host
*mmc
, int enable
)
1573 struct sdhci_host
*host
= mmc_priv(mmc
);
1574 unsigned long flags
;
1576 spin_lock_irqsave(&host
->lock
, flags
);
1577 sdhci_enable_sdio_irq_nolock(host
, enable
);
1578 spin_unlock_irqrestore(&host
->lock
, flags
);
1581 static int sdhci_do_start_signal_voltage_switch(struct sdhci_host
*host
,
1582 struct mmc_ios
*ios
)
1589 * Signal Voltage Switching is only applicable for Host Controllers
1592 if (host
->version
< SDHCI_SPEC_300
)
1596 * We first check whether the request is to set signalling voltage
1597 * to 3.3V. If so, we change the voltage to 3.3V and return quickly.
1599 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1600 if (ios
->signal_voltage
== MMC_SIGNAL_VOLTAGE_330
) {
1601 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1602 ctrl
&= ~SDHCI_CTRL_VDD_180
;
1603 sdhci_writew(host
, ctrl
, SDHCI_HOST_CONTROL2
);
1606 usleep_range(5000, 5500);
1608 /* 3.3V regulator output should be stable within 5 ms */
1609 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1610 if (!(ctrl
& SDHCI_CTRL_VDD_180
))
1613 pr_info(DRIVER_NAME
": Switching to 3.3V "
1614 "signalling voltage failed\n");
1617 } else if (!(ctrl
& SDHCI_CTRL_VDD_180
) &&
1618 (ios
->signal_voltage
== MMC_SIGNAL_VOLTAGE_180
)) {
1620 clk
= sdhci_readw(host
, SDHCI_CLOCK_CONTROL
);
1621 clk
&= ~SDHCI_CLOCK_CARD_EN
;
1622 sdhci_writew(host
, clk
, SDHCI_CLOCK_CONTROL
);
1624 /* Check whether DAT[3:0] is 0000 */
1625 present_state
= sdhci_readl(host
, SDHCI_PRESENT_STATE
);
1626 if (!((present_state
& SDHCI_DATA_LVL_MASK
) >>
1627 SDHCI_DATA_LVL_SHIFT
)) {
1629 * Enable 1.8V Signal Enable in the Host Control2
1632 ctrl
|= SDHCI_CTRL_VDD_180
;
1633 sdhci_writew(host
, ctrl
, SDHCI_HOST_CONTROL2
);
1636 usleep_range(5000, 5500);
1638 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1639 if (ctrl
& SDHCI_CTRL_VDD_180
) {
1640 /* Provide SDCLK again and wait for 1ms*/
1641 clk
= sdhci_readw(host
, SDHCI_CLOCK_CONTROL
);
1642 clk
|= SDHCI_CLOCK_CARD_EN
;
1643 sdhci_writew(host
, clk
, SDHCI_CLOCK_CONTROL
);
1644 usleep_range(1000, 1500);
1647 * If DAT[3:0] level is 1111b, then the card
1648 * was successfully switched to 1.8V signaling.
1650 present_state
= sdhci_readl(host
,
1651 SDHCI_PRESENT_STATE
);
1652 if ((present_state
& SDHCI_DATA_LVL_MASK
) ==
1653 SDHCI_DATA_LVL_MASK
)
1659 * If we are here, that means the switch to 1.8V signaling
1660 * failed. We power cycle the card, and retry initialization
1661 * sequence by setting S18R to 0.
1663 pwr
= sdhci_readb(host
, SDHCI_POWER_CONTROL
);
1664 pwr
&= ~SDHCI_POWER_ON
;
1665 sdhci_writeb(host
, pwr
, SDHCI_POWER_CONTROL
);
1667 /* Wait for 1ms as per the spec */
1668 usleep_range(1000, 1500);
1669 pwr
|= SDHCI_POWER_ON
;
1670 sdhci_writeb(host
, pwr
, SDHCI_POWER_CONTROL
);
1672 pr_info(DRIVER_NAME
": Switching to 1.8V signalling "
1673 "voltage failed, retrying with S18R set to 0\n");
1676 /* No signal voltage switch required */
1680 static int sdhci_start_signal_voltage_switch(struct mmc_host
*mmc
,
1681 struct mmc_ios
*ios
)
1683 struct sdhci_host
*host
= mmc_priv(mmc
);
1686 if (host
->version
< SDHCI_SPEC_300
)
1688 sdhci_runtime_pm_get(host
);
1689 err
= sdhci_do_start_signal_voltage_switch(host
, ios
);
1690 sdhci_runtime_pm_put(host
);
1694 static int sdhci_execute_tuning(struct mmc_host
*mmc
, u32 opcode
)
1696 struct sdhci_host
*host
;
1699 int tuning_loop_counter
= MAX_TUNING_LOOP
;
1700 unsigned long timeout
;
1702 bool requires_tuning_nonuhs
= false;
1704 host
= mmc_priv(mmc
);
1706 sdhci_runtime_pm_get(host
);
1707 disable_irq(host
->irq
);
1708 spin_lock(&host
->lock
);
1710 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1713 * The Host Controller needs tuning only in case of SDR104 mode
1714 * and for SDR50 mode when Use Tuning for SDR50 is set in the
1715 * Capabilities register.
1716 * If the Host Controller supports the HS200 mode then the
1717 * tuning function has to be executed.
1719 if (((ctrl
& SDHCI_CTRL_UHS_MASK
) == SDHCI_CTRL_UHS_SDR50
) &&
1720 (host
->flags
& SDHCI_SDR50_NEEDS_TUNING
||
1721 host
->flags
& SDHCI_HS200_NEEDS_TUNING
))
1722 requires_tuning_nonuhs
= true;
1724 if (((ctrl
& SDHCI_CTRL_UHS_MASK
) == SDHCI_CTRL_UHS_SDR104
) ||
1725 requires_tuning_nonuhs
)
1726 ctrl
|= SDHCI_CTRL_EXEC_TUNING
;
1728 spin_unlock(&host
->lock
);
1729 enable_irq(host
->irq
);
1730 sdhci_runtime_pm_put(host
);
1734 sdhci_writew(host
, ctrl
, SDHCI_HOST_CONTROL2
);
1737 * As per the Host Controller spec v3.00, tuning command
1738 * generates Buffer Read Ready interrupt, so enable that.
1740 * Note: The spec clearly says that when tuning sequence
1741 * is being performed, the controller does not generate
1742 * interrupts other than Buffer Read Ready interrupt. But
1743 * to make sure we don't hit a controller bug, we _only_
1744 * enable Buffer Read Ready interrupt here.
1746 ier
= sdhci_readl(host
, SDHCI_INT_ENABLE
);
1747 sdhci_clear_set_irqs(host
, ier
, SDHCI_INT_DATA_AVAIL
);
1750 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
1751 * of loops reaches 40 times or a timeout of 150ms occurs.
1755 struct mmc_command cmd
= {0};
1756 struct mmc_request mrq
= {NULL
};
1758 if (!tuning_loop_counter
&& !timeout
)
1761 cmd
.opcode
= opcode
;
1763 cmd
.flags
= MMC_RSP_R1
| MMC_CMD_ADTC
;
1772 * In response to CMD19, the card sends 64 bytes of tuning
1773 * block to the Host Controller. So we set the block size
1776 if (cmd
.opcode
== MMC_SEND_TUNING_BLOCK_HS200
) {
1777 if (mmc
->ios
.bus_width
== MMC_BUS_WIDTH_8
)
1778 sdhci_writew(host
, SDHCI_MAKE_BLKSZ(7, 128),
1780 else if (mmc
->ios
.bus_width
== MMC_BUS_WIDTH_4
)
1781 sdhci_writew(host
, SDHCI_MAKE_BLKSZ(7, 64),
1784 sdhci_writew(host
, SDHCI_MAKE_BLKSZ(7, 64),
1789 * The tuning block is sent by the card to the host controller.
1790 * So we set the TRNS_READ bit in the Transfer Mode register.
1791 * This also takes care of setting DMA Enable and Multi Block
1792 * Select in the same register to 0.
1794 sdhci_writew(host
, SDHCI_TRNS_READ
, SDHCI_TRANSFER_MODE
);
1796 sdhci_send_command(host
, &cmd
);
1801 spin_unlock(&host
->lock
);
1802 enable_irq(host
->irq
);
1804 /* Wait for Buffer Read Ready interrupt */
1805 wait_event_interruptible_timeout(host
->buf_ready_int
,
1806 (host
->tuning_done
== 1),
1807 msecs_to_jiffies(50));
1808 disable_irq(host
->irq
);
1809 spin_lock(&host
->lock
);
1811 if (!host
->tuning_done
) {
1812 pr_info(DRIVER_NAME
": Timeout waiting for "
1813 "Buffer Read Ready interrupt during tuning "
1814 "procedure, falling back to fixed sampling "
1816 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1817 ctrl
&= ~SDHCI_CTRL_TUNED_CLK
;
1818 ctrl
&= ~SDHCI_CTRL_EXEC_TUNING
;
1819 sdhci_writew(host
, ctrl
, SDHCI_HOST_CONTROL2
);
1825 host
->tuning_done
= 0;
1827 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1828 tuning_loop_counter
--;
1831 } while (ctrl
& SDHCI_CTRL_EXEC_TUNING
);
1834 * The Host Driver has exhausted the maximum number of loops allowed,
1835 * so use fixed sampling frequency.
1837 if (!tuning_loop_counter
|| !timeout
) {
1838 ctrl
&= ~SDHCI_CTRL_TUNED_CLK
;
1839 sdhci_writew(host
, ctrl
, SDHCI_HOST_CONTROL2
);
1841 if (!(ctrl
& SDHCI_CTRL_TUNED_CLK
)) {
1842 pr_info(DRIVER_NAME
": Tuning procedure"
1843 " failed, falling back to fixed sampling"
1851 * If this is the very first time we are here, we start the retuning
1852 * timer. Since only during the first time, SDHCI_NEEDS_RETUNING
1853 * flag won't be set, we check this condition before actually starting
1856 if (!(host
->flags
& SDHCI_NEEDS_RETUNING
) && host
->tuning_count
&&
1857 (host
->tuning_mode
== SDHCI_TUNING_MODE_1
)) {
1858 mod_timer(&host
->tuning_timer
, jiffies
+
1859 host
->tuning_count
* HZ
);
1860 /* Tuning mode 1 limits the maximum data length to 4MB */
1861 mmc
->max_blk_count
= (4 * 1024 * 1024) / mmc
->max_blk_size
;
1863 host
->flags
&= ~SDHCI_NEEDS_RETUNING
;
1864 /* Reload the new initial value for timer */
1865 if (host
->tuning_mode
== SDHCI_TUNING_MODE_1
)
1866 mod_timer(&host
->tuning_timer
, jiffies
+
1867 host
->tuning_count
* HZ
);
1871 * In case tuning fails, host controllers which support re-tuning can
1872 * try tuning again at a later time, when the re-tuning timer expires.
1873 * So for these controllers, we return 0. Since there might be other
1874 * controllers who do not have this capability, we return error for
1877 if (err
&& host
->tuning_count
&&
1878 host
->tuning_mode
== SDHCI_TUNING_MODE_1
)
1881 sdhci_clear_set_irqs(host
, SDHCI_INT_DATA_AVAIL
, ier
);
1882 spin_unlock(&host
->lock
);
1883 enable_irq(host
->irq
);
1884 sdhci_runtime_pm_put(host
);
1889 static void sdhci_do_enable_preset_value(struct sdhci_host
*host
, bool enable
)
1892 unsigned long flags
;
1894 /* Host Controller v3.00 defines preset value registers */
1895 if (host
->version
< SDHCI_SPEC_300
)
1898 spin_lock_irqsave(&host
->lock
, flags
);
1900 ctrl
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1903 * We only enable or disable Preset Value if they are not already
1904 * enabled or disabled respectively. Otherwise, we bail out.
1906 if (enable
&& !(ctrl
& SDHCI_CTRL_PRESET_VAL_ENABLE
)) {
1907 ctrl
|= SDHCI_CTRL_PRESET_VAL_ENABLE
;
1908 sdhci_writew(host
, ctrl
, SDHCI_HOST_CONTROL2
);
1909 host
->flags
|= SDHCI_PV_ENABLED
;
1910 } else if (!enable
&& (ctrl
& SDHCI_CTRL_PRESET_VAL_ENABLE
)) {
1911 ctrl
&= ~SDHCI_CTRL_PRESET_VAL_ENABLE
;
1912 sdhci_writew(host
, ctrl
, SDHCI_HOST_CONTROL2
);
1913 host
->flags
&= ~SDHCI_PV_ENABLED
;
1916 spin_unlock_irqrestore(&host
->lock
, flags
);
1919 static void sdhci_enable_preset_value(struct mmc_host
*mmc
, bool enable
)
1921 struct sdhci_host
*host
= mmc_priv(mmc
);
1923 sdhci_runtime_pm_get(host
);
1924 sdhci_do_enable_preset_value(host
, enable
);
1925 sdhci_runtime_pm_put(host
);
1928 static const struct mmc_host_ops sdhci_ops
= {
1929 .request
= sdhci_request
,
1930 .set_ios
= sdhci_set_ios
,
1931 .get_ro
= sdhci_get_ro
,
1932 .hw_reset
= sdhci_hw_reset
,
1933 .enable_sdio_irq
= sdhci_enable_sdio_irq
,
1934 .start_signal_voltage_switch
= sdhci_start_signal_voltage_switch
,
1935 .execute_tuning
= sdhci_execute_tuning
,
1936 .enable_preset_value
= sdhci_enable_preset_value
,
1939 /*****************************************************************************\
1943 \*****************************************************************************/
1945 static void sdhci_tasklet_card(unsigned long param
)
1947 struct sdhci_host
*host
;
1948 unsigned long flags
;
1950 host
= (struct sdhci_host
*)param
;
1952 spin_lock_irqsave(&host
->lock
, flags
);
1954 /* Check host->mrq first in case we are runtime suspended */
1956 !(sdhci_readl(host
, SDHCI_PRESENT_STATE
) & SDHCI_CARD_PRESENT
)) {
1957 pr_err("%s: Card removed during transfer!\n",
1958 mmc_hostname(host
->mmc
));
1959 pr_err("%s: Resetting controller.\n",
1960 mmc_hostname(host
->mmc
));
1962 sdhci_reset(host
, SDHCI_RESET_CMD
);
1963 sdhci_reset(host
, SDHCI_RESET_DATA
);
1965 host
->mrq
->cmd
->error
= -ENOMEDIUM
;
1966 tasklet_schedule(&host
->finish_tasklet
);
1969 spin_unlock_irqrestore(&host
->lock
, flags
);
1971 mmc_detect_change(host
->mmc
, msecs_to_jiffies(200));
1974 static void sdhci_tasklet_finish(unsigned long param
)
1976 struct sdhci_host
*host
;
1977 unsigned long flags
;
1978 struct mmc_request
*mrq
;
1980 host
= (struct sdhci_host
*)param
;
1982 spin_lock_irqsave(&host
->lock
, flags
);
1985 * If this tasklet gets rescheduled while running, it will
1986 * be run again afterwards but without any active request.
1989 spin_unlock_irqrestore(&host
->lock
, flags
);
1993 del_timer(&host
->timer
);
1998 * The controller needs a reset of internal state machines
1999 * upon error conditions.
2001 if (!(host
->flags
& SDHCI_DEVICE_DEAD
) &&
2002 ((mrq
->cmd
&& mrq
->cmd
->error
) ||
2003 (mrq
->data
&& (mrq
->data
->error
||
2004 (mrq
->data
->stop
&& mrq
->data
->stop
->error
))) ||
2005 (host
->quirks
& SDHCI_QUIRK_RESET_AFTER_REQUEST
))) {
2007 /* Some controllers need this kick or reset won't work here */
2008 if (host
->quirks
& SDHCI_QUIRK_CLOCK_BEFORE_RESET
) {
2011 /* This is to force an update */
2012 clock
= host
->clock
;
2014 sdhci_set_clock(host
, clock
);
2017 /* Spec says we should do both at the same time, but Ricoh
2018 controllers do not like that. */
2019 sdhci_reset(host
, SDHCI_RESET_CMD
);
2020 sdhci_reset(host
, SDHCI_RESET_DATA
);
2027 #ifndef SDHCI_USE_LEDS_CLASS
2028 sdhci_deactivate_led(host
);
2032 spin_unlock_irqrestore(&host
->lock
, flags
);
2034 mmc_request_done(host
->mmc
, mrq
);
2035 sdhci_runtime_pm_put(host
);
2038 static void sdhci_timeout_timer(unsigned long data
)
2040 struct sdhci_host
*host
;
2041 unsigned long flags
;
2043 host
= (struct sdhci_host
*)data
;
2045 spin_lock_irqsave(&host
->lock
, flags
);
2048 pr_err("%s: Timeout waiting for hardware "
2049 "interrupt.\n", mmc_hostname(host
->mmc
));
2050 sdhci_dumpregs(host
);
2053 host
->data
->error
= -ETIMEDOUT
;
2054 sdhci_finish_data(host
);
2057 host
->cmd
->error
= -ETIMEDOUT
;
2059 host
->mrq
->cmd
->error
= -ETIMEDOUT
;
2061 tasklet_schedule(&host
->finish_tasklet
);
2066 spin_unlock_irqrestore(&host
->lock
, flags
);
2069 static void sdhci_tuning_timer(unsigned long data
)
2071 struct sdhci_host
*host
;
2072 unsigned long flags
;
2074 host
= (struct sdhci_host
*)data
;
2076 spin_lock_irqsave(&host
->lock
, flags
);
2078 host
->flags
|= SDHCI_NEEDS_RETUNING
;
2080 spin_unlock_irqrestore(&host
->lock
, flags
);
2083 /*****************************************************************************\
2085 * Interrupt handling *
2087 \*****************************************************************************/
2089 static void sdhci_cmd_irq(struct sdhci_host
*host
, u32 intmask
)
2091 BUG_ON(intmask
== 0);
2094 pr_err("%s: Got command interrupt 0x%08x even "
2095 "though no command operation was in progress.\n",
2096 mmc_hostname(host
->mmc
), (unsigned)intmask
);
2097 sdhci_dumpregs(host
);
2101 if (intmask
& SDHCI_INT_TIMEOUT
)
2102 host
->cmd
->error
= -ETIMEDOUT
;
2103 else if (intmask
& (SDHCI_INT_CRC
| SDHCI_INT_END_BIT
|
2105 host
->cmd
->error
= -EILSEQ
;
2107 if (host
->cmd
->error
) {
2108 tasklet_schedule(&host
->finish_tasklet
);
2113 * The host can send and interrupt when the busy state has
2114 * ended, allowing us to wait without wasting CPU cycles.
2115 * Unfortunately this is overloaded on the "data complete"
2116 * interrupt, so we need to take some care when handling
2119 * Note: The 1.0 specification is a bit ambiguous about this
2120 * feature so there might be some problems with older
2123 if (host
->cmd
->flags
& MMC_RSP_BUSY
) {
2124 if (host
->cmd
->data
)
2125 DBG("Cannot wait for busy signal when also "
2126 "doing a data transfer");
2127 else if (!(host
->quirks
& SDHCI_QUIRK_NO_BUSY_IRQ
))
2130 /* The controller does not support the end-of-busy IRQ,
2131 * fall through and take the SDHCI_INT_RESPONSE */
2134 if (intmask
& SDHCI_INT_RESPONSE
)
2135 sdhci_finish_command(host
);
2138 #ifdef CONFIG_MMC_DEBUG
2139 static void sdhci_show_adma_error(struct sdhci_host
*host
)
2141 const char *name
= mmc_hostname(host
->mmc
);
2142 u8
*desc
= host
->adma_desc
;
2147 sdhci_dumpregs(host
);
2150 dma
= (__le32
*)(desc
+ 4);
2151 len
= (__le16
*)(desc
+ 2);
2154 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2155 name
, desc
, le32_to_cpu(*dma
), le16_to_cpu(*len
), attr
);
2164 static void sdhci_show_adma_error(struct sdhci_host
*host
) { }
2167 static void sdhci_data_irq(struct sdhci_host
*host
, u32 intmask
)
2170 BUG_ON(intmask
== 0);
2172 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2173 if (intmask
& SDHCI_INT_DATA_AVAIL
) {
2174 command
= SDHCI_GET_CMD(sdhci_readw(host
, SDHCI_COMMAND
));
2175 if (command
== MMC_SEND_TUNING_BLOCK
||
2176 command
== MMC_SEND_TUNING_BLOCK_HS200
) {
2177 host
->tuning_done
= 1;
2178 wake_up(&host
->buf_ready_int
);
2185 * The "data complete" interrupt is also used to
2186 * indicate that a busy state has ended. See comment
2187 * above in sdhci_cmd_irq().
2189 if (host
->cmd
&& (host
->cmd
->flags
& MMC_RSP_BUSY
)) {
2190 if (intmask
& SDHCI_INT_DATA_END
) {
2191 sdhci_finish_command(host
);
2196 pr_err("%s: Got data interrupt 0x%08x even "
2197 "though no data operation was in progress.\n",
2198 mmc_hostname(host
->mmc
), (unsigned)intmask
);
2199 sdhci_dumpregs(host
);
2204 if (intmask
& SDHCI_INT_DATA_TIMEOUT
)
2205 host
->data
->error
= -ETIMEDOUT
;
2206 else if (intmask
& SDHCI_INT_DATA_END_BIT
)
2207 host
->data
->error
= -EILSEQ
;
2208 else if ((intmask
& SDHCI_INT_DATA_CRC
) &&
2209 SDHCI_GET_CMD(sdhci_readw(host
, SDHCI_COMMAND
))
2211 host
->data
->error
= -EILSEQ
;
2212 else if (intmask
& SDHCI_INT_ADMA_ERROR
) {
2213 pr_err("%s: ADMA error\n", mmc_hostname(host
->mmc
));
2214 sdhci_show_adma_error(host
);
2215 host
->data
->error
= -EIO
;
2218 if (host
->data
->error
)
2219 sdhci_finish_data(host
);
2221 if (intmask
& (SDHCI_INT_DATA_AVAIL
| SDHCI_INT_SPACE_AVAIL
))
2222 sdhci_transfer_pio(host
);
2225 * We currently don't do anything fancy with DMA
2226 * boundaries, but as we can't disable the feature
2227 * we need to at least restart the transfer.
2229 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2230 * should return a valid address to continue from, but as
2231 * some controllers are faulty, don't trust them.
2233 if (intmask
& SDHCI_INT_DMA_END
) {
2234 u32 dmastart
, dmanow
;
2235 dmastart
= sg_dma_address(host
->data
->sg
);
2236 dmanow
= dmastart
+ host
->data
->bytes_xfered
;
2238 * Force update to the next DMA block boundary.
2241 ~(SDHCI_DEFAULT_BOUNDARY_SIZE
- 1)) +
2242 SDHCI_DEFAULT_BOUNDARY_SIZE
;
2243 host
->data
->bytes_xfered
= dmanow
- dmastart
;
2244 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2246 mmc_hostname(host
->mmc
), dmastart
,
2247 host
->data
->bytes_xfered
, dmanow
);
2248 sdhci_writel(host
, dmanow
, SDHCI_DMA_ADDRESS
);
2251 if (intmask
& SDHCI_INT_DATA_END
) {
2254 * Data managed to finish before the
2255 * command completed. Make sure we do
2256 * things in the proper order.
2258 host
->data_early
= 1;
2260 sdhci_finish_data(host
);
2266 static irqreturn_t
sdhci_irq(int irq
, void *dev_id
)
2269 struct sdhci_host
*host
= dev_id
;
2273 spin_lock(&host
->lock
);
2275 if (host
->runtime_suspended
) {
2276 spin_unlock(&host
->lock
);
2277 pr_warning("%s: got irq while runtime suspended\n",
2278 mmc_hostname(host
->mmc
));
2282 intmask
= sdhci_readl(host
, SDHCI_INT_STATUS
);
2284 if (!intmask
|| intmask
== 0xffffffff) {
2289 DBG("*** %s got interrupt: 0x%08x\n",
2290 mmc_hostname(host
->mmc
), intmask
);
2292 if (intmask
& (SDHCI_INT_CARD_INSERT
| SDHCI_INT_CARD_REMOVE
)) {
2293 u32 present
= sdhci_readl(host
, SDHCI_PRESENT_STATE
) &
2297 * There is a observation on i.mx esdhc. INSERT bit will be
2298 * immediately set again when it gets cleared, if a card is
2299 * inserted. We have to mask the irq to prevent interrupt
2300 * storm which will freeze the system. And the REMOVE gets
2301 * the same situation.
2303 * More testing are needed here to ensure it works for other
2306 sdhci_mask_irqs(host
, present
? SDHCI_INT_CARD_INSERT
:
2307 SDHCI_INT_CARD_REMOVE
);
2308 sdhci_unmask_irqs(host
, present
? SDHCI_INT_CARD_REMOVE
:
2309 SDHCI_INT_CARD_INSERT
);
2311 sdhci_writel(host
, intmask
& (SDHCI_INT_CARD_INSERT
|
2312 SDHCI_INT_CARD_REMOVE
), SDHCI_INT_STATUS
);
2313 intmask
&= ~(SDHCI_INT_CARD_INSERT
| SDHCI_INT_CARD_REMOVE
);
2314 tasklet_schedule(&host
->card_tasklet
);
2317 if (intmask
& SDHCI_INT_CMD_MASK
) {
2318 sdhci_writel(host
, intmask
& SDHCI_INT_CMD_MASK
,
2320 sdhci_cmd_irq(host
, intmask
& SDHCI_INT_CMD_MASK
);
2323 if (intmask
& SDHCI_INT_DATA_MASK
) {
2324 sdhci_writel(host
, intmask
& SDHCI_INT_DATA_MASK
,
2326 sdhci_data_irq(host
, intmask
& SDHCI_INT_DATA_MASK
);
2329 intmask
&= ~(SDHCI_INT_CMD_MASK
| SDHCI_INT_DATA_MASK
);
2331 intmask
&= ~SDHCI_INT_ERROR
;
2333 if (intmask
& SDHCI_INT_BUS_POWER
) {
2334 pr_err("%s: Card is consuming too much power!\n",
2335 mmc_hostname(host
->mmc
));
2336 sdhci_writel(host
, SDHCI_INT_BUS_POWER
, SDHCI_INT_STATUS
);
2339 intmask
&= ~SDHCI_INT_BUS_POWER
;
2341 if (intmask
& SDHCI_INT_CARD_INT
)
2344 intmask
&= ~SDHCI_INT_CARD_INT
;
2347 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2348 mmc_hostname(host
->mmc
), intmask
);
2349 sdhci_dumpregs(host
);
2351 sdhci_writel(host
, intmask
, SDHCI_INT_STATUS
);
2354 result
= IRQ_HANDLED
;
2358 spin_unlock(&host
->lock
);
2361 * We have to delay this as it calls back into the driver.
2364 mmc_signal_sdio_irq(host
->mmc
);
2369 /*****************************************************************************\
2373 \*****************************************************************************/
2377 int sdhci_suspend_host(struct sdhci_host
*host
)
2380 bool has_tuning_timer
;
2382 sdhci_disable_card_detection(host
);
2384 /* Disable tuning since we are suspending */
2385 has_tuning_timer
= host
->version
>= SDHCI_SPEC_300
&&
2386 host
->tuning_count
&& host
->tuning_mode
== SDHCI_TUNING_MODE_1
;
2387 if (has_tuning_timer
) {
2388 del_timer_sync(&host
->tuning_timer
);
2389 host
->flags
&= ~SDHCI_NEEDS_RETUNING
;
2392 ret
= mmc_suspend_host(host
->mmc
);
2394 if (has_tuning_timer
) {
2395 host
->flags
|= SDHCI_NEEDS_RETUNING
;
2396 mod_timer(&host
->tuning_timer
, jiffies
+
2397 host
->tuning_count
* HZ
);
2400 sdhci_enable_card_detection(host
);
2405 free_irq(host
->irq
, host
);
2410 EXPORT_SYMBOL_GPL(sdhci_suspend_host
);
2412 int sdhci_resume_host(struct sdhci_host
*host
)
2416 if (host
->flags
& (SDHCI_USE_SDMA
| SDHCI_USE_ADMA
)) {
2417 if (host
->ops
->enable_dma
)
2418 host
->ops
->enable_dma(host
);
2421 ret
= request_irq(host
->irq
, sdhci_irq
, IRQF_SHARED
,
2422 mmc_hostname(host
->mmc
), host
);
2426 sdhci_init(host
, (host
->mmc
->pm_flags
& MMC_PM_KEEP_POWER
));
2429 ret
= mmc_resume_host(host
->mmc
);
2430 sdhci_enable_card_detection(host
);
2432 /* Set the re-tuning expiration flag */
2433 if ((host
->version
>= SDHCI_SPEC_300
) && host
->tuning_count
&&
2434 (host
->tuning_mode
== SDHCI_TUNING_MODE_1
))
2435 host
->flags
|= SDHCI_NEEDS_RETUNING
;
2440 EXPORT_SYMBOL_GPL(sdhci_resume_host
);
2442 void sdhci_enable_irq_wakeups(struct sdhci_host
*host
)
2445 val
= sdhci_readb(host
, SDHCI_WAKE_UP_CONTROL
);
2446 val
|= SDHCI_WAKE_ON_INT
;
2447 sdhci_writeb(host
, val
, SDHCI_WAKE_UP_CONTROL
);
2450 EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups
);
2452 #endif /* CONFIG_PM */
2454 #ifdef CONFIG_PM_RUNTIME
2456 static int sdhci_runtime_pm_get(struct sdhci_host
*host
)
2458 return pm_runtime_get_sync(host
->mmc
->parent
);
2461 static int sdhci_runtime_pm_put(struct sdhci_host
*host
)
2463 pm_runtime_mark_last_busy(host
->mmc
->parent
);
2464 return pm_runtime_put_autosuspend(host
->mmc
->parent
);
2467 int sdhci_runtime_suspend_host(struct sdhci_host
*host
)
2469 unsigned long flags
;
2472 /* Disable tuning since we are suspending */
2473 if (host
->version
>= SDHCI_SPEC_300
&&
2474 host
->tuning_mode
== SDHCI_TUNING_MODE_1
) {
2475 del_timer_sync(&host
->tuning_timer
);
2476 host
->flags
&= ~SDHCI_NEEDS_RETUNING
;
2479 spin_lock_irqsave(&host
->lock
, flags
);
2480 sdhci_mask_irqs(host
, SDHCI_INT_ALL_MASK
);
2481 spin_unlock_irqrestore(&host
->lock
, flags
);
2483 synchronize_irq(host
->irq
);
2485 spin_lock_irqsave(&host
->lock
, flags
);
2486 host
->runtime_suspended
= true;
2487 spin_unlock_irqrestore(&host
->lock
, flags
);
2491 EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host
);
2493 int sdhci_runtime_resume_host(struct sdhci_host
*host
)
2495 unsigned long flags
;
2496 int ret
= 0, host_flags
= host
->flags
;
2498 if (host_flags
& (SDHCI_USE_SDMA
| SDHCI_USE_ADMA
)) {
2499 if (host
->ops
->enable_dma
)
2500 host
->ops
->enable_dma(host
);
2503 sdhci_init(host
, 0);
2505 /* Force clock and power re-program */
2508 sdhci_do_set_ios(host
, &host
->mmc
->ios
);
2510 sdhci_do_start_signal_voltage_switch(host
, &host
->mmc
->ios
);
2511 if (host_flags
& SDHCI_PV_ENABLED
)
2512 sdhci_do_enable_preset_value(host
, true);
2514 /* Set the re-tuning expiration flag */
2515 if ((host
->version
>= SDHCI_SPEC_300
) && host
->tuning_count
&&
2516 (host
->tuning_mode
== SDHCI_TUNING_MODE_1
))
2517 host
->flags
|= SDHCI_NEEDS_RETUNING
;
2519 spin_lock_irqsave(&host
->lock
, flags
);
2521 host
->runtime_suspended
= false;
2523 /* Enable SDIO IRQ */
2524 if ((host
->flags
& SDHCI_SDIO_IRQ_ENABLED
))
2525 sdhci_enable_sdio_irq_nolock(host
, true);
2527 /* Enable Card Detection */
2528 sdhci_enable_card_detection(host
);
2530 spin_unlock_irqrestore(&host
->lock
, flags
);
2534 EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host
);
2538 /*****************************************************************************\
2540 * Device allocation/registration *
2542 \*****************************************************************************/
2544 struct sdhci_host
*sdhci_alloc_host(struct device
*dev
,
2547 struct mmc_host
*mmc
;
2548 struct sdhci_host
*host
;
2550 WARN_ON(dev
== NULL
);
2552 mmc
= mmc_alloc_host(sizeof(struct sdhci_host
) + priv_size
, dev
);
2554 return ERR_PTR(-ENOMEM
);
2556 host
= mmc_priv(mmc
);
2562 EXPORT_SYMBOL_GPL(sdhci_alloc_host
);
2564 int sdhci_add_host(struct sdhci_host
*host
)
2566 struct mmc_host
*mmc
;
2568 u32 max_current_caps
;
2569 unsigned int ocr_avail
;
2572 WARN_ON(host
== NULL
);
2579 host
->quirks
= debug_quirks
;
2581 host
->quirks2
= debug_quirks2
;
2583 sdhci_reset(host
, SDHCI_RESET_ALL
);
2585 host
->version
= sdhci_readw(host
, SDHCI_HOST_VERSION
);
2586 host
->version
= (host
->version
& SDHCI_SPEC_VER_MASK
)
2587 >> SDHCI_SPEC_VER_SHIFT
;
2588 if (host
->version
> SDHCI_SPEC_300
) {
2589 pr_err("%s: Unknown controller version (%d). "
2590 "You may experience problems.\n", mmc_hostname(mmc
),
2594 caps
[0] = (host
->quirks
& SDHCI_QUIRK_MISSING_CAPS
) ? host
->caps
:
2595 sdhci_readl(host
, SDHCI_CAPABILITIES
);
2597 caps
[1] = (host
->version
>= SDHCI_SPEC_300
) ?
2598 sdhci_readl(host
, SDHCI_CAPABILITIES_1
) : 0;
2600 if (host
->quirks
& SDHCI_QUIRK_FORCE_DMA
)
2601 host
->flags
|= SDHCI_USE_SDMA
;
2602 else if (!(caps
[0] & SDHCI_CAN_DO_SDMA
))
2603 DBG("Controller doesn't have SDMA capability\n");
2605 host
->flags
|= SDHCI_USE_SDMA
;
2607 if ((host
->quirks
& SDHCI_QUIRK_BROKEN_DMA
) &&
2608 (host
->flags
& SDHCI_USE_SDMA
)) {
2609 DBG("Disabling DMA as it is marked broken\n");
2610 host
->flags
&= ~SDHCI_USE_SDMA
;
2613 if ((host
->version
>= SDHCI_SPEC_200
) &&
2614 (caps
[0] & SDHCI_CAN_DO_ADMA2
))
2615 host
->flags
|= SDHCI_USE_ADMA
;
2617 if ((host
->quirks
& SDHCI_QUIRK_BROKEN_ADMA
) &&
2618 (host
->flags
& SDHCI_USE_ADMA
)) {
2619 DBG("Disabling ADMA as it is marked broken\n");
2620 host
->flags
&= ~SDHCI_USE_ADMA
;
2623 if (host
->flags
& (SDHCI_USE_SDMA
| SDHCI_USE_ADMA
)) {
2624 if (host
->ops
->enable_dma
) {
2625 if (host
->ops
->enable_dma(host
)) {
2626 pr_warning("%s: No suitable DMA "
2627 "available. Falling back to PIO.\n",
2630 ~(SDHCI_USE_SDMA
| SDHCI_USE_ADMA
);
2635 if (host
->flags
& SDHCI_USE_ADMA
) {
2637 * We need to allocate descriptors for all sg entries
2638 * (128) and potentially one alignment transfer for
2639 * each of those entries.
2641 host
->adma_desc
= kmalloc((128 * 2 + 1) * 4, GFP_KERNEL
);
2642 host
->align_buffer
= kmalloc(128 * 4, GFP_KERNEL
);
2643 if (!host
->adma_desc
|| !host
->align_buffer
) {
2644 kfree(host
->adma_desc
);
2645 kfree(host
->align_buffer
);
2646 pr_warning("%s: Unable to allocate ADMA "
2647 "buffers. Falling back to standard DMA.\n",
2649 host
->flags
&= ~SDHCI_USE_ADMA
;
2654 * If we use DMA, then it's up to the caller to set the DMA
2655 * mask, but PIO does not need the hw shim so we set a new
2656 * mask here in that case.
2658 if (!(host
->flags
& (SDHCI_USE_SDMA
| SDHCI_USE_ADMA
))) {
2659 host
->dma_mask
= DMA_BIT_MASK(64);
2660 mmc_dev(host
->mmc
)->dma_mask
= &host
->dma_mask
;
2663 if (host
->version
>= SDHCI_SPEC_300
)
2664 host
->max_clk
= (caps
[0] & SDHCI_CLOCK_V3_BASE_MASK
)
2665 >> SDHCI_CLOCK_BASE_SHIFT
;
2667 host
->max_clk
= (caps
[0] & SDHCI_CLOCK_BASE_MASK
)
2668 >> SDHCI_CLOCK_BASE_SHIFT
;
2670 host
->max_clk
*= 1000000;
2671 if (host
->max_clk
== 0 || host
->quirks
&
2672 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN
) {
2673 if (!host
->ops
->get_max_clock
) {
2674 pr_err("%s: Hardware doesn't specify base clock "
2675 "frequency.\n", mmc_hostname(mmc
));
2678 host
->max_clk
= host
->ops
->get_max_clock(host
);
2682 * In case of Host Controller v3.00, find out whether clock
2683 * multiplier is supported.
2685 host
->clk_mul
= (caps
[1] & SDHCI_CLOCK_MUL_MASK
) >>
2686 SDHCI_CLOCK_MUL_SHIFT
;
2689 * In case the value in Clock Multiplier is 0, then programmable
2690 * clock mode is not supported, otherwise the actual clock
2691 * multiplier is one more than the value of Clock Multiplier
2692 * in the Capabilities Register.
2698 * Set host parameters.
2700 mmc
->ops
= &sdhci_ops
;
2701 mmc
->f_max
= host
->max_clk
;
2702 if (host
->ops
->get_min_clock
)
2703 mmc
->f_min
= host
->ops
->get_min_clock(host
);
2704 else if (host
->version
>= SDHCI_SPEC_300
) {
2705 if (host
->clk_mul
) {
2706 mmc
->f_min
= (host
->max_clk
* host
->clk_mul
) / 1024;
2707 mmc
->f_max
= host
->max_clk
* host
->clk_mul
;
2709 mmc
->f_min
= host
->max_clk
/ SDHCI_MAX_DIV_SPEC_300
;
2711 mmc
->f_min
= host
->max_clk
/ SDHCI_MAX_DIV_SPEC_200
;
2714 (caps
[0] & SDHCI_TIMEOUT_CLK_MASK
) >> SDHCI_TIMEOUT_CLK_SHIFT
;
2715 if (host
->timeout_clk
== 0) {
2716 if (host
->ops
->get_timeout_clock
) {
2717 host
->timeout_clk
= host
->ops
->get_timeout_clock(host
);
2718 } else if (!(host
->quirks
&
2719 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
)) {
2720 pr_err("%s: Hardware doesn't specify timeout clock "
2721 "frequency.\n", mmc_hostname(mmc
));
2725 if (caps
[0] & SDHCI_TIMEOUT_CLK_UNIT
)
2726 host
->timeout_clk
*= 1000;
2728 if (host
->quirks
& SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
)
2729 host
->timeout_clk
= mmc
->f_max
/ 1000;
2731 mmc
->max_discard_to
= (1 << 27) / host
->timeout_clk
;
2733 mmc
->caps
|= MMC_CAP_SDIO_IRQ
| MMC_CAP_ERASE
| MMC_CAP_CMD23
;
2735 if (host
->quirks
& SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12
)
2736 host
->flags
|= SDHCI_AUTO_CMD12
;
2738 /* Auto-CMD23 stuff only works in ADMA or PIO. */
2739 if ((host
->version
>= SDHCI_SPEC_300
) &&
2740 ((host
->flags
& SDHCI_USE_ADMA
) ||
2741 !(host
->flags
& SDHCI_USE_SDMA
))) {
2742 host
->flags
|= SDHCI_AUTO_CMD23
;
2743 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc
));
2745 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc
));
2749 * A controller may support 8-bit width, but the board itself
2750 * might not have the pins brought out. Boards that support
2751 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
2752 * their platform code before calling sdhci_add_host(), and we
2753 * won't assume 8-bit width for hosts without that CAP.
2755 if (!(host
->quirks
& SDHCI_QUIRK_FORCE_1_BIT_DATA
))
2756 mmc
->caps
|= MMC_CAP_4_BIT_DATA
;
2758 if (caps
[0] & SDHCI_CAN_DO_HISPD
)
2759 mmc
->caps
|= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_MMC_HIGHSPEED
;
2761 if ((host
->quirks
& SDHCI_QUIRK_BROKEN_CARD_DETECTION
) &&
2762 mmc_card_is_removable(mmc
))
2763 mmc
->caps
|= MMC_CAP_NEEDS_POLL
;
2765 /* UHS-I mode(s) supported by the host controller. */
2766 if (host
->version
>= SDHCI_SPEC_300
)
2767 mmc
->caps
|= MMC_CAP_UHS_SDR12
| MMC_CAP_UHS_SDR25
;
2769 /* SDR104 supports also implies SDR50 support */
2770 if (caps
[1] & SDHCI_SUPPORT_SDR104
)
2771 mmc
->caps
|= MMC_CAP_UHS_SDR104
| MMC_CAP_UHS_SDR50
;
2772 else if (caps
[1] & SDHCI_SUPPORT_SDR50
)
2773 mmc
->caps
|= MMC_CAP_UHS_SDR50
;
2775 if (caps
[1] & SDHCI_SUPPORT_DDR50
)
2776 mmc
->caps
|= MMC_CAP_UHS_DDR50
;
2778 /* Does the host need tuning for SDR50? */
2779 if (caps
[1] & SDHCI_USE_SDR50_TUNING
)
2780 host
->flags
|= SDHCI_SDR50_NEEDS_TUNING
;
2782 /* Does the host need tuning for HS200? */
2783 if (mmc
->caps2
& MMC_CAP2_HS200
)
2784 host
->flags
|= SDHCI_HS200_NEEDS_TUNING
;
2786 /* Driver Type(s) (A, C, D) supported by the host */
2787 if (caps
[1] & SDHCI_DRIVER_TYPE_A
)
2788 mmc
->caps
|= MMC_CAP_DRIVER_TYPE_A
;
2789 if (caps
[1] & SDHCI_DRIVER_TYPE_C
)
2790 mmc
->caps
|= MMC_CAP_DRIVER_TYPE_C
;
2791 if (caps
[1] & SDHCI_DRIVER_TYPE_D
)
2792 mmc
->caps
|= MMC_CAP_DRIVER_TYPE_D
;
2795 * If Power Off Notify capability is enabled by the host,
2796 * set notify to short power off notify timeout value.
2798 if (mmc
->caps2
& MMC_CAP2_POWEROFF_NOTIFY
)
2799 mmc
->power_notify_type
= MMC_HOST_PW_NOTIFY_SHORT
;
2801 mmc
->power_notify_type
= MMC_HOST_PW_NOTIFY_NONE
;
2803 /* Initial value for re-tuning timer count */
2804 host
->tuning_count
= (caps
[1] & SDHCI_RETUNING_TIMER_COUNT_MASK
) >>
2805 SDHCI_RETUNING_TIMER_COUNT_SHIFT
;
2808 * In case Re-tuning Timer is not disabled, the actual value of
2809 * re-tuning timer will be 2 ^ (n - 1).
2811 if (host
->tuning_count
)
2812 host
->tuning_count
= 1 << (host
->tuning_count
- 1);
2814 /* Re-tuning mode supported by the Host Controller */
2815 host
->tuning_mode
= (caps
[1] & SDHCI_RETUNING_MODE_MASK
) >>
2816 SDHCI_RETUNING_MODE_SHIFT
;
2820 * According to SD Host Controller spec v3.00, if the Host System
2821 * can afford more than 150mA, Host Driver should set XPC to 1. Also
2822 * the value is meaningful only if Voltage Support in the Capabilities
2823 * register is set. The actual current value is 4 times the register
2826 max_current_caps
= sdhci_readl(host
, SDHCI_MAX_CURRENT
);
2828 if (caps
[0] & SDHCI_CAN_VDD_330
) {
2829 int max_current_330
;
2831 ocr_avail
|= MMC_VDD_32_33
| MMC_VDD_33_34
;
2833 max_current_330
= ((max_current_caps
&
2834 SDHCI_MAX_CURRENT_330_MASK
) >>
2835 SDHCI_MAX_CURRENT_330_SHIFT
) *
2836 SDHCI_MAX_CURRENT_MULTIPLIER
;
2838 if (max_current_330
> 150)
2839 mmc
->caps
|= MMC_CAP_SET_XPC_330
;
2841 if (caps
[0] & SDHCI_CAN_VDD_300
) {
2842 int max_current_300
;
2844 ocr_avail
|= MMC_VDD_29_30
| MMC_VDD_30_31
;
2846 max_current_300
= ((max_current_caps
&
2847 SDHCI_MAX_CURRENT_300_MASK
) >>
2848 SDHCI_MAX_CURRENT_300_SHIFT
) *
2849 SDHCI_MAX_CURRENT_MULTIPLIER
;
2851 if (max_current_300
> 150)
2852 mmc
->caps
|= MMC_CAP_SET_XPC_300
;
2854 if (caps
[0] & SDHCI_CAN_VDD_180
) {
2855 int max_current_180
;
2857 ocr_avail
|= MMC_VDD_165_195
;
2859 max_current_180
= ((max_current_caps
&
2860 SDHCI_MAX_CURRENT_180_MASK
) >>
2861 SDHCI_MAX_CURRENT_180_SHIFT
) *
2862 SDHCI_MAX_CURRENT_MULTIPLIER
;
2864 if (max_current_180
> 150)
2865 mmc
->caps
|= MMC_CAP_SET_XPC_180
;
2867 /* Maximum current capabilities of the host at 1.8V */
2868 if (max_current_180
>= 800)
2869 mmc
->caps
|= MMC_CAP_MAX_CURRENT_800
;
2870 else if (max_current_180
>= 600)
2871 mmc
->caps
|= MMC_CAP_MAX_CURRENT_600
;
2872 else if (max_current_180
>= 400)
2873 mmc
->caps
|= MMC_CAP_MAX_CURRENT_400
;
2875 mmc
->caps
|= MMC_CAP_MAX_CURRENT_200
;
2878 mmc
->ocr_avail
= ocr_avail
;
2879 mmc
->ocr_avail_sdio
= ocr_avail
;
2880 if (host
->ocr_avail_sdio
)
2881 mmc
->ocr_avail_sdio
&= host
->ocr_avail_sdio
;
2882 mmc
->ocr_avail_sd
= ocr_avail
;
2883 if (host
->ocr_avail_sd
)
2884 mmc
->ocr_avail_sd
&= host
->ocr_avail_sd
;
2885 else /* normal SD controllers don't support 1.8V */
2886 mmc
->ocr_avail_sd
&= ~MMC_VDD_165_195
;
2887 mmc
->ocr_avail_mmc
= ocr_avail
;
2888 if (host
->ocr_avail_mmc
)
2889 mmc
->ocr_avail_mmc
&= host
->ocr_avail_mmc
;
2891 if (mmc
->ocr_avail
== 0) {
2892 pr_err("%s: Hardware doesn't report any "
2893 "support voltages.\n", mmc_hostname(mmc
));
2897 spin_lock_init(&host
->lock
);
2900 * Maximum number of segments. Depends on if the hardware
2901 * can do scatter/gather or not.
2903 if (host
->flags
& SDHCI_USE_ADMA
)
2904 mmc
->max_segs
= 128;
2905 else if (host
->flags
& SDHCI_USE_SDMA
)
2908 mmc
->max_segs
= 128;
2911 * Maximum number of sectors in one transfer. Limited by DMA boundary
2914 mmc
->max_req_size
= 524288;
2917 * Maximum segment size. Could be one segment with the maximum number
2918 * of bytes. When doing hardware scatter/gather, each entry cannot
2919 * be larger than 64 KiB though.
2921 if (host
->flags
& SDHCI_USE_ADMA
) {
2922 if (host
->quirks
& SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
)
2923 mmc
->max_seg_size
= 65535;
2925 mmc
->max_seg_size
= 65536;
2927 mmc
->max_seg_size
= mmc
->max_req_size
;
2931 * Maximum block size. This varies from controller to controller and
2932 * is specified in the capabilities register.
2934 if (host
->quirks
& SDHCI_QUIRK_FORCE_BLK_SZ_2048
) {
2935 mmc
->max_blk_size
= 2;
2937 mmc
->max_blk_size
= (caps
[0] & SDHCI_MAX_BLOCK_MASK
) >>
2938 SDHCI_MAX_BLOCK_SHIFT
;
2939 if (mmc
->max_blk_size
>= 3) {
2940 pr_warning("%s: Invalid maximum block size, "
2941 "assuming 512 bytes\n", mmc_hostname(mmc
));
2942 mmc
->max_blk_size
= 0;
2946 mmc
->max_blk_size
= 512 << mmc
->max_blk_size
;
2949 * Maximum block count.
2951 mmc
->max_blk_count
= (host
->quirks
& SDHCI_QUIRK_NO_MULTIBLOCK
) ? 1 : 65535;
2956 tasklet_init(&host
->card_tasklet
,
2957 sdhci_tasklet_card
, (unsigned long)host
);
2958 tasklet_init(&host
->finish_tasklet
,
2959 sdhci_tasklet_finish
, (unsigned long)host
);
2961 setup_timer(&host
->timer
, sdhci_timeout_timer
, (unsigned long)host
);
2963 if (host
->version
>= SDHCI_SPEC_300
) {
2964 init_waitqueue_head(&host
->buf_ready_int
);
2966 /* Initialize re-tuning timer */
2967 init_timer(&host
->tuning_timer
);
2968 host
->tuning_timer
.data
= (unsigned long)host
;
2969 host
->tuning_timer
.function
= sdhci_tuning_timer
;
2972 ret
= request_irq(host
->irq
, sdhci_irq
, IRQF_SHARED
,
2973 mmc_hostname(mmc
), host
);
2977 host
->vmmc
= regulator_get(mmc_dev(mmc
), "vmmc");
2978 if (IS_ERR(host
->vmmc
)) {
2979 pr_info("%s: no vmmc regulator found\n", mmc_hostname(mmc
));
2983 sdhci_init(host
, 0);
2985 #ifdef CONFIG_MMC_DEBUG
2986 sdhci_dumpregs(host
);
2989 #ifdef SDHCI_USE_LEDS_CLASS
2990 snprintf(host
->led_name
, sizeof(host
->led_name
),
2991 "%s::", mmc_hostname(mmc
));
2992 host
->led
.name
= host
->led_name
;
2993 host
->led
.brightness
= LED_OFF
;
2994 host
->led
.default_trigger
= mmc_hostname(mmc
);
2995 host
->led
.brightness_set
= sdhci_led_control
;
2997 ret
= led_classdev_register(mmc_dev(mmc
), &host
->led
);
3006 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
3007 mmc_hostname(mmc
), host
->hw_name
, dev_name(mmc_dev(mmc
)),
3008 (host
->flags
& SDHCI_USE_ADMA
) ? "ADMA" :
3009 (host
->flags
& SDHCI_USE_SDMA
) ? "DMA" : "PIO");
3011 sdhci_enable_card_detection(host
);
3015 #ifdef SDHCI_USE_LEDS_CLASS
3017 sdhci_reset(host
, SDHCI_RESET_ALL
);
3018 free_irq(host
->irq
, host
);
3021 tasklet_kill(&host
->card_tasklet
);
3022 tasklet_kill(&host
->finish_tasklet
);
3027 EXPORT_SYMBOL_GPL(sdhci_add_host
);
3029 void sdhci_remove_host(struct sdhci_host
*host
, int dead
)
3031 unsigned long flags
;
3034 spin_lock_irqsave(&host
->lock
, flags
);
3036 host
->flags
|= SDHCI_DEVICE_DEAD
;
3039 pr_err("%s: Controller removed during "
3040 " transfer!\n", mmc_hostname(host
->mmc
));
3042 host
->mrq
->cmd
->error
= -ENOMEDIUM
;
3043 tasklet_schedule(&host
->finish_tasklet
);
3046 spin_unlock_irqrestore(&host
->lock
, flags
);
3049 sdhci_disable_card_detection(host
);
3051 mmc_remove_host(host
->mmc
);
3053 #ifdef SDHCI_USE_LEDS_CLASS
3054 led_classdev_unregister(&host
->led
);
3058 sdhci_reset(host
, SDHCI_RESET_ALL
);
3060 free_irq(host
->irq
, host
);
3062 del_timer_sync(&host
->timer
);
3063 if (host
->version
>= SDHCI_SPEC_300
)
3064 del_timer_sync(&host
->tuning_timer
);
3066 tasklet_kill(&host
->card_tasklet
);
3067 tasklet_kill(&host
->finish_tasklet
);
3070 regulator_put(host
->vmmc
);
3072 kfree(host
->adma_desc
);
3073 kfree(host
->align_buffer
);
3075 host
->adma_desc
= NULL
;
3076 host
->align_buffer
= NULL
;
3079 EXPORT_SYMBOL_GPL(sdhci_remove_host
);
3081 void sdhci_free_host(struct sdhci_host
*host
)
3083 mmc_free_host(host
->mmc
);
3086 EXPORT_SYMBOL_GPL(sdhci_free_host
);
3088 /*****************************************************************************\
3090 * Driver init/exit *
3092 \*****************************************************************************/
3094 static int __init
sdhci_drv_init(void)
3097 ": Secure Digital Host Controller Interface driver\n");
3098 pr_info(DRIVER_NAME
": Copyright(c) Pierre Ossman\n");
3103 static void __exit
sdhci_drv_exit(void)
3107 module_init(sdhci_drv_init
);
3108 module_exit(sdhci_drv_exit
);
3110 module_param(debug_quirks
, uint
, 0444);
3111 module_param(debug_quirks2
, uint
, 0444);
3113 MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
3114 MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
3115 MODULE_LICENSE("GPL");
3117 MODULE_PARM_DESC(debug_quirks
, "Force certain quirks.");
3118 MODULE_PARM_DESC(debug_quirks2
, "Force certain other quirks.");