mmc: sdhci-of-arasan: Add DTS property to disable DCMDs.
authorChristoph Muellner <christoph.muellner@theobroma-systems.com>
Fri, 22 Mar 2019 11:38:05 +0000 (12:38 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 15 Apr 2019 09:55:54 +0000 (11:55 +0200)
Direct commands (DCMDs) are an optional feature of eMMC 5.1's command
queue engine (CQE). The Arasan eMMC 5.1 controller uses the CQHCI,
which exposes a control register bit to enable the feature.
The current implementation sets this bit unconditionally.

This patch allows to suppress the feature activation,
by specifying the property disable-cqe-dcmd.

Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Fixes: 84362d79f436 ("mmc: sdhci-of-arasan: Add CQHCI support for arasan,sdhci-5.1")
Cc: stable@vger.kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-of-arasan.c

index c9e3e050ccc8631b434aac45d3001c77be5798b0..88dc3f00a5be73be0a4ae5c1369e827858123bc9 100644 (file)
@@ -832,7 +832,10 @@ static int sdhci_arasan_probe(struct platform_device *pdev)
                host->mmc_host_ops.start_signal_voltage_switch =
                                        sdhci_arasan_voltage_switch;
                sdhci_arasan->has_cqe = true;
-               host->mmc->caps2 |= MMC_CAP2_CQE | MMC_CAP2_CQE_DCMD;
+               host->mmc->caps2 |= MMC_CAP2_CQE;
+
+               if (!of_property_read_bool(np, "disable-cqe-dcmd"))
+                       host->mmc->caps2 |= MMC_CAP2_CQE_DCMD;
        }
 
        ret = sdhci_arasan_add_host(sdhci_arasan);