Merge branch 'x86-trampoline-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / arch / arm / mach-s5pv310 / include / mach / smp.h
1 /* linux/arch/arm/mach-s5pv310/include/mach/smp.h
2  *
3  * Cloned from arch/arm/mach-realview/include/mach/smp.h
4 */
5
6 #ifndef ASM_ARCH_SMP_H
7 #define ASM_ARCH_SMP_H __FILE__
8
9 #include <asm/hardware/gic.h>
10 #include <asm/smp_mpidr.h>
11
12 extern void __iomem *gic_cpu_base_addr;
13
14 /*
15  * We use IRQ1 as the IPI
16  */
17 static inline void smp_cross_call(const struct cpumask *mask)
18 {
19         gic_raise_softirq(mask, 1);
20 }
21
22 #endif