From: Kevin Liu <kliu5@xxxxxxxxxxx> Host controller must enable 1.8v signal for UHS modes. Otherwise UHS modes won't take effect. But mmc core does NOT switch to 1.8v for DDR50 mode. So enable the 1.8v signal for mmc DDR50 mode in host driver. In JEDEC spec, there are two emmc device types which support DDR50. One type can work under signal 1.2v while the other type work under signal 1.8v or 3v. So current code just keep 3v for the second device type. But in SD host spec, 1.8v signal must be enabled for all UHS modes taking effect. So the fact is, if using SD host to work with emmc chip, then 1.8v signal must be selected in order to enable DDR50. Current code missed this. Because DDR50 shall can work under both signal 1.8v and 3v according to JEDEC spec, So should not switch to 1.8v in mmc core code. It's the host controller requirement that 1.8v signal must be enabled in order to enable DDR50, which conflict with emmc spec. So add this in host driver. Signed-off-by: Kevin Liu <kliu5@xxxxxxxxxxx> --- drivers/mmc/host/sdhci.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index c3e786d..522e501 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -1529,8 +1529,15 @@ static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios) ctrl_2 |= SDHCI_CTRL_UHS_SDR50; else if (ios->timing == MMC_TIMING_UHS_SDR104) ctrl_2 |= SDHCI_CTRL_UHS_SDR104; - else if (ios->timing == MMC_TIMING_UHS_DDR50) + else if (ios->timing == MMC_TIMING_UHS_DDR50) { + struct mmc_card *card; + ctrl_2 |= SDHCI_CTRL_UHS_DDR50; + card = container_of(&(host->mmc), + struct mmc_card, host); + if (mmc_card_mmc(card)) + ctrl_2 |= SDHCI_CTRL_VDD_180; + } sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2); } if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) && -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html