2010-07-26 20:08:52 +08:00
|
|
|
/* linux/arch/arm/mach-s5pv310/include/mach/smp.h
|
|
|
|
*
|
|
|
|
* Cloned from arch/arm/mach-realview/include/mach/smp.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ASM_ARCH_SMP_H
|
|
|
|
#define ASM_ARCH_SMP_H __FILE__
|
|
|
|
|
|
|
|
#include <asm/hardware/gic.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We use IRQ1 as the IPI
|
|
|
|
*/
|
2010-11-15 17:42:08 +08:00
|
|
|
static inline void smp_cross_call(const struct cpumask *mask, int ipi)
|
2010-07-26 20:08:52 +08:00
|
|
|
{
|
2010-11-15 17:42:08 +08:00
|
|
|
gic_raise_softirq(mask, ipi);
|
2010-07-26 20:08:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|