From: Lubomir Rintel Date: Tue, 10 Jun 2014 18:46:43 +0000 (+0200) Subject: bcm2835_sdhci: Add SDHCI_QUIRK_NO_HISPD_BIT flag X-Git-Tag: v2014.10-rc1~17 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=64973023df4f31e72ecc56005f123da5841f7066;p=u-boot bcm2835_sdhci: Add SDHCI_QUIRK_NO_HISPD_BIT flag Seems like the controller doesn't support the flag. None of the hi-speed cards I've tried could be read, while they successfully worked with the quirk enabled. Signed-off-by: Lubomir Rintel Tested-by: Stephen Warren --- diff --git a/drivers/mmc/bcm2835_sdhci.c b/drivers/mmc/bcm2835_sdhci.c index 54cfabfb91..82079d67cd 100644 --- a/drivers/mmc/bcm2835_sdhci.c +++ b/drivers/mmc/bcm2835_sdhci.c @@ -179,7 +179,7 @@ int bcm2835_sdhci_init(u32 regbase, u32 emmc_freq) host->name = "bcm2835_sdhci"; host->ioaddr = (void *)regbase; host->quirks = SDHCI_QUIRK_BROKEN_VOLTAGE | SDHCI_QUIRK_BROKEN_R1B | - SDHCI_QUIRK_WAIT_SEND_CMD; + SDHCI_QUIRK_WAIT_SEND_CMD | SDHCI_QUIRK_NO_HISPD_BIT; host->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195; host->ops = &bcm2835_ops;