smp.h 364 B

1234567891011121314151617181920
  1. /* linux/arch/arm/mach-s5pv310/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. #include <asm/smp_mpidr.h>
  9. /*
  10. * We use IRQ1 as the IPI
  11. */
  12. static inline void smp_cross_call(const struct cpumask *mask)
  13. {
  14. gic_raise_softirq(mask, 1);
  15. }
  16. #endif