2005-11-07 21:05:42 +00:00
|
|
|
#ifndef ASMARM_ARCH_SMP_H
|
|
|
|
#define ASMARM_ARCH_SMP_H
|
|
|
|
|
|
|
|
#include <asm/hardware/gic.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We use IRQ1 as the IPI
|
|
|
|
*/
|
2010-11-15 09:42:08 +00:00
|
|
|
static inline void smp_cross_call(const struct cpumask *mask, int ipi)
|
2005-11-07 21:05:42 +00:00
|
|
|
{
|
2010-11-15 09:42:08 +00:00
|
|
|
gic_raise_softirq(mask, ipi);
|
2005-11-07 21:05:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|