mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
ARM: shmobile: Move EMEV2 CPU boot vector setup code
Move the boot vector setup code for the EMEV2 SoC to match the sh73a0 and r8a7779 implementations. With this in place all SoC specific SMP implementations for mach-shmobile uses the ->smp_prepare_cpus() callback to setup the boot vector. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
This commit is contained in:
parent
d62242d7f6
commit
da252b8ee5
@ -74,9 +74,6 @@ static int __cpuinit emev2_boot_secondary(unsigned int cpu, struct task_struct *
|
|||||||
/* enable cache coherency */
|
/* enable cache coherency */
|
||||||
modify_scu_cpu_psr(0, 3 << (cpu * 8));
|
modify_scu_cpu_psr(0, 3 << (cpu * 8));
|
||||||
|
|
||||||
/* Tell ROM loader about our vector (in headsmp.S) */
|
|
||||||
emev2_set_boot_vector(__pa(shmobile_secondary_vector));
|
|
||||||
|
|
||||||
arch_send_wakeup_ipi_mask(cpumask_of(cpu));
|
arch_send_wakeup_ipi_mask(cpumask_of(cpu));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -87,6 +84,9 @@ static void __init emev2_smp_prepare_cpus(unsigned int max_cpus)
|
|||||||
|
|
||||||
scu_enable(scu_base);
|
scu_enable(scu_base);
|
||||||
|
|
||||||
|
/* Tell ROM loader about our vector (in headsmp.S) */
|
||||||
|
emev2_set_boot_vector(__pa(shmobile_secondary_vector));
|
||||||
|
|
||||||
/* enable cache coherency on CPU0 */
|
/* enable cache coherency on CPU0 */
|
||||||
modify_scu_cpu_psr(0, 3 << (cpu * 8));
|
modify_scu_cpu_psr(0, 3 << (cpu * 8));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user