]> rtime.felk.cvut.cz Git - mcf548x/linux.git/blob - arch/arm/mach-tegra/include/mach/smp.h
Initial 2.6.37
[mcf548x/linux.git] / arch / arm / mach-tegra / include / mach / smp.h
1 #ifndef ASMARM_ARCH_SMP_H
2 #define ASMARM_ARCH_SMP_H
3
4 #include <asm/hardware/gic.h>
5 #include <asm/smp_mpidr.h>
6
7 /*
8  * We use IRQ1 as the IPI
9  */
10 static inline void smp_cross_call(const struct cpumask *mask)
11 {
12         gic_raise_softirq(mask, 1);
13 }
14
15 /*
16  * Do nothing on MPcore.
17  */
18 static inline void smp_cross_call_done(cpumask_t callmap)
19 {
20 }
21
22 #endif