smp.h 348 B

12345678910111213141516171819
  1. /* linux/arch/arm/mach-exynos4/include/mach/smp.h
  2. *
  3. * Cloned from arch/arm/mach-realview/include/mach/smp.h
  4. */
  5. #ifndef ASM_ARCH_SMP_H
  6. #define ASM_ARCH_SMP_H __FILE__
  7. #include <asm/hardware/gic.h>
  8. /*
  9. * We use IRQ1 as the IPI
  10. */
  11. static inline void smp_cross_call(const struct cpumask *mask, int ipi)
  12. {
  13. gic_raise_softirq(mask, ipi);
  14. }
  15. #endif