diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2017-02-27 10:13:38 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-03-02 17:53:17 +0100 |
commit | 3131d970f0d86bea41811766d55fc638e382daf3 (patch) | |
tree | 81be3e19d388f0b874dbbdf24bd17e211e23e859 /arch/arm/mach-ux500/cpu-db8500.c | |
parent | d4b80d9aacfa760cf0f363caec33b6d54f3afa2b (diff) | |
download | linux-3131d970f0d86bea41811766d55fc638e382daf3.tar.gz linux-3131d970f0d86bea41811766d55fc638e382daf3.tar.bz2 linux-3131d970f0d86bea41811766d55fc638e382daf3.zip |
ARM: ux500: resume the second core properly
The pen hold/release scheme was copied over to Ux500 from the ARM
reference designs like most of these at the time. It is not needed
at all, and was mostly removed in commit c00def71efd9
"ARM: ux500: simplify secondary CPU boot".
However on the suspend/resume path and hot plug/unplug of CPUs,
the .cpu_die() callback was still waiting for the pen to be
released which made it spin forever and the second core never come
back online after suspend/resume.
Fix this by simply replacing the strange custom .cpu_die() with
a oneline wfi() just like e.g. the qcom platform does. This fixes
the issue and makes the second core come up properly after
suspend/resume.
As a side effect, this rids us of the completely surplus local
setup.h and hotplug.c files, and we just compile this into platsmp.c
with everything else SMP.
Cc: stable@vger.kernel.org
Fixes: c00def71efd9 ("ARM: ux500: simplify secondary CPU boot")
Cc: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-ux500/cpu-db8500.c')
-rw-r--r-- | arch/arm/mach-ux500/cpu-db8500.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-ux500/cpu-db8500.c b/arch/arm/mach-ux500/cpu-db8500.c index 24529cf58df6..28083ef72819 100644 --- a/arch/arm/mach-ux500/cpu-db8500.c +++ b/arch/arm/mach-ux500/cpu-db8500.c @@ -31,8 +31,6 @@ #include <asm/mach/map.h> #include <asm/mach/arch.h> -#include "setup.h" - #include "db8500-regs.h" static int __init ux500_l2x0_unlock(void) |