diff options
author | Abhilash Kesavan <a.kesavan@samsung.com> | 2014-11-06 19:20:16 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2014-11-21 08:49:46 -0500 |
commit | adc548d77c22daa371d5217b382a139b593dec47 (patch) | |
tree | e8bf2f7eb460e4126053db2f4469aba631bc8ad6 /arch/arm/mach-exynos/platsmp.c | |
parent | 0fdf088fd84d87d6fc5d3961cc86feb8bd295398 (diff) |
ARM: EXYNOS: Use MCPM call-backs to support S2R on exynos5420
Use the MCPM layer to handle core suspend/resume on Exynos5420.
Also, restore the entry address setup code post-resume.
Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Acked-by: Nicolas Pitre <nico@linaro.org>
Reviewed-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos/platsmp.c')
-rw-r--r-- | arch/arm/mach-exynos/platsmp.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/platsmp.c b/arch/arm/mach-exynos/platsmp.c index adb36a8e8785..7a1ebfeeeeb8 100644 --- a/arch/arm/mach-exynos/platsmp.c +++ b/arch/arm/mach-exynos/platsmp.c | |||
@@ -126,6 +126,18 @@ static inline void platform_do_lowpower(unsigned int cpu, int *spurious) | |||
126 | */ | 126 | */ |
127 | void exynos_cpu_power_down(int cpu) | 127 | void exynos_cpu_power_down(int cpu) |
128 | { | 128 | { |
129 | if (cpu == 0 && (of_machine_is_compatible("samsung,exynos5420") || | ||
130 | of_machine_is_compatible("samsung,exynos5800"))) { | ||
131 | /* | ||
132 | * Bypass power down for CPU0 during suspend. Check for | ||
133 | * the SYS_PWR_REG value to decide if we are suspending | ||
134 | * the system. | ||
135 | */ | ||
136 | int val = pmu_raw_readl(EXYNOS5_ARM_CORE0_SYS_PWR_REG); | ||
137 | |||
138 | if (!(val & S5P_CORE_LOCAL_PWR_EN)) | ||
139 | return; | ||
140 | } | ||
129 | pmu_raw_writel(0, EXYNOS_ARM_CORE_CONFIGURATION(cpu)); | 141 | pmu_raw_writel(0, EXYNOS_ARM_CORE_CONFIGURATION(cpu)); |
130 | } | 142 | } |
131 | 143 | ||