diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2015-10-14 11:08:02 +0200 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2015-10-28 11:43:41 +0100 |
commit | 286130ebf196d9643800977d57bdb7cda266b49e (patch) | |
tree | 0048c504925232821d822b201a6f58b87f0b6e9f /arch/arc/kernel/smp.c | |
parent | ARC: smp: Rename platform hook @init_smp -> @init_cpu_smp (diff) | |
download | linux-286130ebf196d9643800977d57bdb7cda266b49e.tar.xz linux-286130ebf196d9643800977d57bdb7cda266b49e.zip |
ARC: smp: Introduce smp hook @init_irq_cpu called for all cores
Note this is not part of platform owned static machine_desc,
but more of device owned plat_smp_ops (rather misnamed) which a IPI
provider or some such typically defines.
This will help us seperate out the IPI registration from platform
specific init_cpu_smp() into device specific init_irq_cpu()
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/kernel/smp.c')
-rw-r--r-- | arch/arc/kernel/smp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c index 35ee18f1de58..580587805fa3 100644 --- a/arch/arc/kernel/smp.c +++ b/arch/arc/kernel/smp.c @@ -131,6 +131,10 @@ void start_kernel_secondary(void) pr_info("## CPU%u LIVE ##: Executing Code...\n", cpu); + /* Some SMP H/w setup - for each cpu */ + if (plat_smp_ops.init_irq_cpu) + plat_smp_ops.init_irq_cpu(cpu); + if (machine_desc->init_cpu_smp) machine_desc->init_cpu_smp(cpu); |