ARM: tegra: Propagate error from tegra_idle_lp2_last()
authorDmitry Osipenko <digetx@gmail.com>
Mon, 24 Feb 2020 22:40:45 +0000 (01:40 +0300)
committerThierry Reding <treding@nvidia.com>
Thu, 12 Mar 2020 09:54:05 +0000 (10:54 +0100)
Technically cpu_suspend() may fail and it's never good to lose information
about failure. For example things like cpuidle core could correctly sample
idling time in the case of failure.

Acked-by: Peter De Schrijver <pdeschrijver@nvidia.com>
Tested-by: Peter Geis <pgwipeout@gmail.com>
Tested-by: Jasper Korten <jja2000@gmail.com>
Tested-by: David Heidelberg <david@ixit.cz>
Tested-by: Nicolas Chauvet <kwizart@gmail.com>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
arch/arm/mach-tegra/cpuidle-tegra20.c
arch/arm/mach-tegra/cpuidle-tegra30.c
arch/arm/mach-tegra/pm.c
arch/arm/mach-tegra/pm.h

index 78c20025dcfec43566996709fc33bf3933de86b5..b3087ece9421697936d5c3c73a2a421bedf2aa11 100644 (file)
@@ -86,15 +86,17 @@ static bool tegra20_cpu_cluster_power_down(struct cpuidle_device *dev,
                                           struct cpuidle_driver *drv,
                                           int index)
 {
+       bool ret;
+
        while (!tegra_cpu_rail_off_ready())
                cpu_relax();
 
-       tegra_idle_lp2_last();
+       ret = !tegra_idle_lp2_last();
 
        if (cpu_online(1))
                tegra20_wake_cpu1_from_reset();
 
-       return true;
+       return ret;
 }
 
 #ifdef CONFIG_SMP
index a3ce8dabfe184e5cb443a7f05eb338cf846632e4..17cbd118abeeb6ef035fb0e43d1e9577d09ec495 100644 (file)
@@ -68,9 +68,7 @@ static bool tegra30_cpu_cluster_power_down(struct cpuidle_device *dev,
                return false;
        }
 
-       tegra_idle_lp2_last();
-
-       return true;
+       return !tegra_idle_lp2_last();
 }
 
 #ifdef CONFIG_SMP
index a72f9a2d3cb77996a098b2cf028f4a200aa4542f..a094acaca3074cd554cebf80722fb41391f3df54 100644 (file)
@@ -189,14 +189,16 @@ static void tegra_pm_set(enum tegra_suspend_mode mode)
        tegra_pmc_enter_suspend_mode(mode);
 }
 
-void tegra_idle_lp2_last(void)
+int tegra_idle_lp2_last(void)
 {
+       int err;
+
        tegra_pm_set(TEGRA_SUSPEND_LP2);
 
        cpu_cluster_pm_enter();
        suspend_cpu_complex();
 
-       cpu_suspend(PHYS_OFFSET - PAGE_OFFSET, &tegra_sleep_cpu);
+       err = cpu_suspend(PHYS_OFFSET - PAGE_OFFSET, &tegra_sleep_cpu);
 
        /*
         * Resume L2 cache if it wasn't re-enabled early during resume,
@@ -208,6 +210,8 @@ void tegra_idle_lp2_last(void)
 
        restore_cpu_complex();
        cpu_cluster_pm_exit();
+
+       return err;
 }
 
 enum tegra_suspend_mode tegra_pm_validate_suspend_mode(
index 2c294f6365c04c314f6295931697e35918a5eb20..7d72f31dee77c00d47d6a7360772378959c4d83f 100644 (file)
@@ -25,7 +25,7 @@ void tegra30_sleep_core_init(void);
 
 void tegra_clear_cpu_in_lp2(void);
 void tegra_set_cpu_in_lp2(void);
-void tegra_idle_lp2_last(void);
+int tegra_idle_lp2_last(void);
 extern void (*tegra_tear_down_cpu)(void);
 
 #ifdef CONFIG_PM_SLEEP