From: Vipul Kumar Date: Thu, 14 Jun 2018 05:15:53 +0000 (+0530) Subject: mmc: sdhci: Fixed non high-spped mode issue X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5481635025dc3db2251a8205252b192e3f82bc2;p=thirdparty%2Fu-boot.git mmc: sdhci: Fixed non high-spped mode issue This patch added SDHCI_QUIRK_BROKEN_HISPD_MODE to force the sdhci host-controller to non high-speed mode when CONFIG_ZYNQ_HISPD_BROKEN is defined. Signed-off-by: Vipul Kumar Signed-off-by: Michal Simek --- diff --git a/drivers/mmc/zynq_sdhci.c b/drivers/mmc/zynq_sdhci.c index eadb2f608fb..5a6765ad884 100644 --- a/drivers/mmc/zynq_sdhci.c +++ b/drivers/mmc/zynq_sdhci.c @@ -208,7 +208,7 @@ static int arasan_sdhci_probe(struct udevice *dev) SDHCI_QUIRK_USE_ACMD12; #ifdef CONFIG_ZYNQ_HISPD_BROKEN - host->quirks |= SDHCI_QUIRK_NO_HISPD_BIT; + host->quirks |= SDHCI_QUIRK_BROKEN_HISPD_MODE; #endif if (priv->no_1p8)