mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
3131d970f0
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 commitc00def71ef
"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:c00def71ef
("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>
9 lines
198 B
Makefile
9 lines
198 B
Makefile
#
|
|
# Makefile for the linux kernel, U8500 machine.
|
|
#
|
|
|
|
obj-y := pm.o
|
|
obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o
|
|
obj-$(CONFIG_SMP) += platsmp.o
|
|
obj-$(CONFIG_PM_GENERIC_DOMAINS) += pm_domains.o
|