diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2014-09-10 09:35:38 -0400 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2015-06-22 04:36:56 -0400 |
commit | 82fea5a1bbbe8c3b56d5f3efbf8880c7b25b1758 (patch) | |
tree | 736061a26f019af1912dd6824f8ab4eb5a20eb33 /arch/arc/plat-sim | |
parent | 173eaafaed284fc95209902f68f011d01d1eda02 (diff) |
ARCv2: SMP: Support ARConnect (MCIP) for Inter-Core-Interrupts et al
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/plat-sim')
-rw-r--r-- | arch/arc/plat-sim/platform.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arc/plat-sim/platform.c b/arch/arc/plat-sim/platform.c index 114fdc30941c..8795ae2ef48a 100644 --- a/arch/arc/plat-sim/platform.c +++ b/arch/arc/plat-sim/platform.c | |||
@@ -10,6 +10,7 @@ | |||
10 | 10 | ||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <asm/mach_desc.h> | 12 | #include <asm/mach_desc.h> |
13 | #include <asm/mcip.h> | ||
13 | 14 | ||
14 | /*----------------------- Machine Descriptions ------------------------------ | 15 | /*----------------------- Machine Descriptions ------------------------------ |
15 | * | 16 | * |
@@ -27,4 +28,8 @@ static const char *simulation_compat[] __initconst = { | |||
27 | 28 | ||
28 | MACHINE_START(SIMULATION, "simulation") | 29 | MACHINE_START(SIMULATION, "simulation") |
29 | .dt_compat = simulation_compat, | 30 | .dt_compat = simulation_compat, |
31 | #ifdef CONFIG_ARC_MCIP | ||
32 | .init_early = mcip_init_early_smp, | ||
33 | .init_smp = mcip_init_smp, | ||
34 | #endif | ||
30 | MACHINE_END | 35 | MACHINE_END |