Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_MACH_IPI_H |
| 2 | #define __ASM_MACH_IPI_H |
| 3 | |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame^] | 4 | /* Avoid include hell */ |
| 5 | #define NMI_VECTOR 0x02 |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | void send_IPI_mask_bitmask(cpumask_t mask, int vector); |
| 8 | void __send_IPI_shortcut(unsigned int shortcut, int vector); |
| 9 | |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 10 | extern int no_broadcast; |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | static inline void send_IPI_mask(cpumask_t mask, int vector) |
| 13 | { |
| 14 | send_IPI_mask_bitmask(mask, vector); |
| 15 | } |
| 16 | |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 17 | static inline void __local_send_IPI_allbutself(int vector) |
| 18 | { |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame^] | 19 | if (no_broadcast || vector == NMI_VECTOR) { |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 20 | cpumask_t mask = cpu_online_map; |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 21 | |
Zwane Mwaikambo | 329d400 | 2006-01-11 22:43:09 +0100 | [diff] [blame] | 22 | cpu_clear(smp_processor_id(), mask); |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 23 | send_IPI_mask(mask, vector); |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 24 | } else |
| 25 | __send_IPI_shortcut(APIC_DEST_ALLBUT, vector); |
| 26 | } |
| 27 | |
| 28 | static inline void __local_send_IPI_all(int vector) |
| 29 | { |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame^] | 30 | if (no_broadcast || vector == NMI_VECTOR) |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 31 | send_IPI_mask(cpu_online_map, vector); |
| 32 | else |
| 33 | __send_IPI_shortcut(APIC_DEST_ALLINC, vector); |
| 34 | } |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | static inline void send_IPI_allbutself(int vector) |
| 37 | { |
| 38 | /* |
| 39 | * if there are no other CPUs in the system then we get an APIC send |
| 40 | * error if we try to broadcast, thus avoid sending IPIs in this case. |
| 41 | */ |
| 42 | if (!(num_online_cpus() > 1)) |
| 43 | return; |
| 44 | |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 45 | __local_send_IPI_allbutself(vector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | return; |
| 47 | } |
| 48 | |
| 49 | static inline void send_IPI_all(int vector) |
| 50 | { |
Ashok Raj | 67664c8 | 2005-06-25 14:54:52 -0700 | [diff] [blame] | 51 | __local_send_IPI_all(vector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | #endif /* __ASM_MACH_IPI_H */ |