Linux MultiMedia Card development
 help / color / mirror / Atom feed
* [PATCH v3] mmc: sdhci-of-arasan: Add shutdown callback
@ 2025-06-12  5:41 Paul Alvin
  2025-06-16 11:34 ` Adrian Hunter
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Alvin @ 2025-06-12  5:41 UTC (permalink / raw)
  To: michal.simek, adrian.hunter, ulf.hansson
  Cc: git, alvin.paulp, linux-arm-kernel, linux-mmc, linux-kernel

Implement shutdown hook to ensure proper host shutdown by using sdhci
platform suspend. This ensure a safe transition when the Kexec utility
calls the shutdown hook, facilitating seamless loading and booting of
a new kernel from the currently running one.

Signed-off-by: Paul Alvin <alvin.paulp@amd.com>
---

Changes in v3:
- Updated commit description.

Changes in v2:
- Make use of platform suspend instead of driver suspend as driver
  suspend will only get defined if PMC_SLEEP is configured which
  results in build failure if it is not configured.
- Updated commit description.

 drivers/mmc/host/sdhci-of-arasan.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c
index 8c29676ab662..4abdad3c4e5b 100644
--- a/drivers/mmc/host/sdhci-of-arasan.c
+++ b/drivers/mmc/host/sdhci-of-arasan.c
@@ -2056,6 +2056,11 @@ static void sdhci_arasan_remove(struct platform_device *pdev)
 	clk_disable_unprepare(clk_ahb);
 }
 
+static void sdhci_arasan_shutdown(struct platform_device *pdev)
+{
+	sdhci_pltfm_suspend(&pdev->dev);
+}
+
 static struct platform_driver sdhci_arasan_driver = {
 	.driver = {
 		.name = "sdhci-arasan",
@@ -2065,6 +2070,7 @@ static struct platform_driver sdhci_arasan_driver = {
 	},
 	.probe = sdhci_arasan_probe,
 	.remove = sdhci_arasan_remove,
+	.shutdown = sdhci_arasan_shutdown,
 };
 
 module_platform_driver(sdhci_arasan_driver);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-06-16 11:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-12  5:41 [PATCH v3] mmc: sdhci-of-arasan: Add shutdown callback Paul Alvin
2025-06-16 11:34 ` Adrian Hunter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox