]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
mmc: core: Further prevent card detect during shutdown
authorUlf Hansson <ulf.hansson@linaro.org>
Mon, 25 Nov 2024 12:24:46 +0000 (13:24 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 2 Dec 2024 14:37:16 +0000 (15:37 +0100)
Disabling card detect from the host's ->shutdown_pre() callback turned out
to not be the complete solution. More precisely, beyond the point when the
mmc_bus->shutdown() has been called, to gracefully power off the card, we
need to prevent card detect. Otherwise the mmc_rescan work may poll for the
card with a CMD13, to see if it's still alive, which then will fail and
hang as the card has already been powered off.

To fix this problem, let's disable mmc_rescan prior to power off the card
during shutdown.

Reported-by: Anthony Pighin <anthony.pighin@nokia.com>
Fixes: 66c915d09b94 ("mmc: core: Disable card detect during shutdown")
Cc: stable@vger.kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>
Closes: https://lore.kernel.org/all/BN0PR08MB695133000AF116F04C3A9FFE83212@BN0PR08MB6951.namprd08.prod.outlook.com/
Tested-by: Anthony Pighin <anthony.pighin@nokia.com>
Message-ID: <20241125122446.18684-1-ulf.hansson@linaro.org>

drivers/mmc/core/bus.c
drivers/mmc/core/core.c

index 9283b28bc69fe9b0410d7cfadf4ca85ac8ccd2b3..1cf64e0952fbe2ae18506da6b87beef71bf39162 100644 (file)
@@ -149,6 +149,8 @@ static void mmc_bus_shutdown(struct device *dev)
        if (dev->driver && drv->shutdown)
                drv->shutdown(card);
 
+       __mmc_stop_host(host);
+
        if (host->bus_ops->shutdown) {
                ret = host->bus_ops->shutdown(host);
                if (ret)
index a499f3c59de5544aa8a8fde55871b459e0167c9a..d996d39c0d6fa1b837313eb752667b20289f6727 100644 (file)
@@ -2335,6 +2335,9 @@ void mmc_start_host(struct mmc_host *host)
 
 void __mmc_stop_host(struct mmc_host *host)
 {
+       if (host->rescan_disable)
+               return;
+
        if (host->slot.cd_irq >= 0) {
                mmc_gpio_set_cd_wake(host, false);
                disable_irq(host->slot.cd_irq);