smp.h 231 B

1234567891011121314
  1. #ifndef ASMARM_ARCH_SMP_H
  2. #define ASMARM_ARCH_SMP_H
  3. #include <asm/hardware/gic.h>
  4. /*
  5. * We use IRQ1 as the IPI
  6. */
  7. static inline void smp_cross_call(const struct cpumask *mask, int ipi)
  8. {
  9. gic_raise_softirq(mask, ipi);
  10. }
  11. #endif