Skip to content

Commit 7ed71a9

Browse files
Chunyan Zhangstorulf
authored andcommitted
mmc: sdhci: SDMA may use Auto-CMD23 in v4 mode
When Host Version 4 Enable is set to 1, SDMA uses ADMA System Address register (05Fh-058h) instead of using register (000h-004h) to indicate its system address of data location. The register (000h-004h) is re-assigned to 32-bit Block Count and Auto CMD23 argument, so then SDMA may use Auto CMD23. Signed-off-by: Chunyan Zhang <zhang.chunyan@linaro.org> Acked-by: Adrian Hunter <adrian.hunter@intel.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
1 parent 427b651 commit 7ed71a9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

drivers/mmc/host/sdhci.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3844,10 +3844,13 @@ int sdhci_setup_host(struct sdhci_host *host)
38443844
if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
38453845
host->flags |= SDHCI_AUTO_CMD12;
38463846

3847-
/* Auto-CMD23 stuff only works in ADMA or PIO. */
3847+
/*
3848+
* For v3 mode, Auto-CMD23 stuff only works in ADMA or PIO.
3849+
* For v4 mode, SDMA may use Auto-CMD23 as well.
3850+
*/
38483851
if ((host->version >= SDHCI_SPEC_300) &&
38493852
((host->flags & SDHCI_USE_ADMA) ||
3850-
!(host->flags & SDHCI_USE_SDMA)) &&
3853+
!(host->flags & SDHCI_USE_SDMA) || host->v4_mode) &&
38513854
!(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
38523855
host->flags |= SDHCI_AUTO_CMD23;
38533856
DBG("Auto-CMD23 available\n");

0 commit comments

Comments
 (0)