]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
mmc: sdhci: move SDMA capability check to sdhci_setup_cfg()
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 25 Aug 2016 07:07:37 +0000 (16:07 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Mon, 19 Sep 2016 21:46:01 +0000 (06:46 +0900)
If CONFIG_BLK is enabled, add_sdhci() is never called.  Move this
quirk handling to sdhci_setup_cfg(), which is now the central place
for hardware capability checks.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
drivers/mmc/sdhci.c

index c66151c8cf6ea4624bcfd2d48ee59779dec52fd6..da73653ffa5e88688aed26e80c8b84720fa2ea45 100644 (file)
@@ -519,6 +519,14 @@ int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host,
        u32 caps;
 
        caps = sdhci_readl(host, SDHCI_CAPABILITIES);
+
+#ifdef CONFIG_MMC_SDMA
+       if (!(caps & SDHCI_CAN_DO_SDMA)) {
+               printf("%s: Your controller doesn't support SDMA!!\n",
+                      __func__);
+               return -EINVAL;
+       }
+#endif
        host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
 
        cfg->name = host->name;
@@ -585,17 +593,6 @@ int add_sdhci(struct sdhci_host *host, u32 max_clk, u32 min_clk)
 {
        int ret;
 
-#ifdef CONFIG_MMC_SDMA
-       unsigned int caps;
-
-       caps = sdhci_readl(host, SDHCI_CAPABILITIES);
-       if (!(caps & SDHCI_CAN_DO_SDMA)) {
-               printf("%s: Your controller doesn't support SDMA!!\n",
-                      __func__);
-               return -1;
-       }
-#endif
-
        ret = sdhci_setup_cfg(&host->cfg, host, max_clk, min_clk);
        if (ret)
                return ret;