|
@@ -18,6 +18,7 @@
|
|
|
#include <linux/err.h>
|
|
|
#include <linux/io.h>
|
|
|
#include <linux/mmc/host.h>
|
|
|
+#include <linux/mmc/slot-gpio.h>
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_device.h>
|
|
@@ -204,6 +205,25 @@ static int sdhci_at91_probe(struct platform_device *pdev)
|
|
|
if (ret)
|
|
|
goto pm_runtime_disable;
|
|
|
|
|
|
+ /*
|
|
|
+ * When calling sdhci_runtime_suspend_host(), the sdhci layer makes
|
|
|
+ * the assumption that all the clocks of the controller are disabled.
|
|
|
+ * It means we can't get irq from it when it is runtime suspended.
|
|
|
+ * For that reason, it is not planned to wake-up on a card detect irq
|
|
|
+ * from the controller.
|
|
|
+ * If we want to use runtime PM and to be able to wake-up on card
|
|
|
+ * insertion, we have to use a GPIO for the card detection or we can
|
|
|
+ * use polling. Be aware that using polling will resume/suspend the
|
|
|
+ * controller between each attempt.
|
|
|
+ * Disable SDHCI_QUIRK_BROKEN_CARD_DETECTION to be sure nobody tries
|
|
|
+ * to enable polling via device tree with broken-cd property.
|
|
|
+ */
|
|
|
+ if (!(host->mmc->caps & MMC_CAP_NONREMOVABLE) &&
|
|
|
+ IS_ERR_VALUE(mmc_gpio_get_cd(host->mmc))) {
|
|
|
+ host->mmc->caps |= MMC_CAP_NEEDS_POLL;
|
|
|
+ host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
|
|
|
+ }
|
|
|
+
|
|
|
pm_runtime_put_autosuspend(&pdev->dev);
|
|
|
|
|
|
return 0;
|