mmc: sdhci-of-aspeed: add inversion signal presence
authorIvan Mikhaylov <i.mikhaylov@yadro.com>
Mon, 18 Nov 2019 10:46:46 +0000 (13:46 +0300)
committerUlf Hansson <ulf.hansson@linaro.org>
Wed, 20 Nov 2019 12:40:47 +0000 (13:40 +0100)
Add read_l callback in sdhci_ops with flipping of SDHCI_CARD_PRESENT
bit in case of inverted card detection signal.

Signed-off-by: Ivan Mikhaylov <i.mikhaylov@yadro.com>
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-of-aspeed.c

index 8962f66..56912e3 100644 (file)
@@ -111,7 +111,19 @@ static void aspeed_sdhci_set_bus_width(struct sdhci_host *host, int width)
        sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
 }
 
+static u32 aspeed_sdhci_readl(struct sdhci_host *host, int reg)
+{
+       u32 val = readl(host->ioaddr + reg);
+
+       if (unlikely(reg == SDHCI_PRESENT_STATE) &&
+           (host->mmc->caps2 & MMC_CAP2_CD_ACTIVE_HIGH))
+               val ^= SDHCI_CARD_PRESENT;
+
+       return val;
+}
+
 static const struct sdhci_ops aspeed_sdhci_ops = {
+       .read_l = aspeed_sdhci_readl,
        .set_clock = aspeed_sdhci_set_clock,
        .get_max_clock = aspeed_sdhci_get_max_clock,
        .set_bus_width = aspeed_sdhci_set_bus_width,