]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
firmware: tegra: bpmp: Implement suspend/resume support
authorThierry Reding <treding@nvidia.com>
Fri, 21 Sep 2018 10:08:56 +0000 (12:08 +0200)
committerThierry Reding <treding@nvidia.com>
Wed, 10 Oct 2018 14:47:22 +0000 (16:47 +0200)
When returning from a system sleep state, the BPMP driver needs to
reinitialize the IVC channels used to communicate with the BPMP to
restore proper functionality.

Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/firmware/tegra/bpmp.c

index 14a456afa379a073ee4cd233f96153edc1a79a3c..a3d5b518c10e4a13deeba7c6e9309c13c33cdded 100644 (file)
@@ -18,6 +18,7 @@
 #include <linux/of_address.h>
 #include <linux/of_device.h>
 #include <linux/platform_device.h>
+#include <linux/pm.h>
 #include <linux/semaphore.h>
 #include <linux/sched/clock.h>
 
@@ -843,6 +844,23 @@ free_tx:
        return err;
 }
 
+static int __maybe_unused tegra_bpmp_resume(struct device *dev)
+{
+       struct tegra_bpmp *bpmp = dev_get_drvdata(dev);
+       unsigned int i;
+
+       /* reset message channels */
+       tegra_bpmp_channel_reset(bpmp->tx_channel);
+       tegra_bpmp_channel_reset(bpmp->rx_channel);
+
+       for (i = 0; i < bpmp->threaded.count; i++)
+               tegra_bpmp_channel_reset(&bpmp->threaded_channels[i]);
+
+       return 0;
+}
+
+static SIMPLE_DEV_PM_OPS(tegra_bpmp_pm_ops, NULL, tegra_bpmp_resume);
+
 static const struct tegra_bpmp_soc tegra186_soc = {
        .channels = {
                .cpu_tx = {
@@ -871,6 +889,7 @@ static struct platform_driver tegra_bpmp_driver = {
        .driver = {
                .name = "tegra-bpmp",
                .of_match_table = tegra_bpmp_match,
+               .pm = &tegra_bpmp_pm_ops,
        },
        .probe = tegra_bpmp_probe,
 };