]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
memory: tegra: Wire up system sleep PM ops
authorAshish Mhetre <amhetre@nvidia.com>
Thu, 30 Apr 2026 09:52:01 +0000 (09:52 +0000)
committerKrzysztof Kozlowski <krzk@kernel.org>
Mon, 4 May 2026 17:17:48 +0000 (19:17 +0200)
The tegra-mc platform driver does not register any dev_pm_ops, so the
SoC-specific ->resume() is never invoked (e.g. tegra186_mc_resume) on
system wake. On Tegra186 and later this means MC client Stream-ID
override registers are not reprogrammed, and clients behind the ARM
SMMU fault on the first DMA after resume.

Register a dev_pm_ops on the tegra-mc driver and route the system
resume callback into mc->soc->ops->resume() so the existing SID
restore path runs again on wake.

No suspend callback is needed as the resume path reprograms all MC
state from the static SoC tables, so there is nothing to save.

Fixes: fe3b082a6eb8 ("memory: tegra: Add SID override programming for MC clients")
Signed-off-by: Ashish Mhetre <amhetre@nvidia.com>
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
Link: https://patch.msgid.link/20260430095202.1167651-3-amhetre@nvidia.com
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
drivers/memory/tegra/mc.c

index d620660da3311c4aa7c6f4d77bdbd1ed9a343016..64e41338cdf2d17e71aadc1b92b3488f6cb78346 100644 (file)
@@ -13,6 +13,7 @@
 #include <linux/of.h>
 #include <linux/of_platform.h>
 #include <linux/platform_device.h>
+#include <linux/pm.h>
 #include <linux/slab.h>
 #include <linux/sort.h>
 #include <linux/tegra-icc.h>
@@ -1010,10 +1011,23 @@ static void tegra_mc_sync_state(struct device *dev)
                icc_sync_state(dev);
 }
 
+static int tegra_mc_resume(struct device *dev)
+{
+       struct tegra_mc *mc = dev_get_drvdata(dev);
+
+       if (mc->soc->ops && mc->soc->ops->resume)
+               mc->soc->ops->resume(mc);
+
+       return 0;
+}
+
+static DEFINE_SIMPLE_DEV_PM_OPS(tegra_mc_pm_ops, NULL, tegra_mc_resume);
+
 static struct platform_driver tegra_mc_driver = {
        .driver = {
                .name = "tegra-mc",
                .of_match_table = tegra_mc_of_match,
+               .pm = pm_sleep_ptr(&tegra_mc_pm_ops),
                .suppress_bind_attrs = true,
                .sync_state = tegra_mc_sync_state,
        },