mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
73346794b4
The A31 is a quad Cortex-A7. Add the logic to use the IPs used to control the CPU configuration and the CPU power so that we can bring up secondary CPUs at boot. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
10 lines
196 B
ArmAsm
10 lines
196 B
ArmAsm
#include <linux/linkage.h>
|
|
#include <linux/init.h>
|
|
|
|
.section ".text.head", "ax"
|
|
|
|
ENTRY(sun6i_secondary_startup)
|
|
msr cpsr_fsxc, #0xd3
|
|
b secondary_startup
|
|
ENDPROC(sun6i_secondary_startup)
|