4 #ifdef CONFIG_X86_LOCAL_APIC
7 * Copyright 2004 James Cleverdon, IBM.
8 * Subject to the GNU Public License, v.2
10 * Generic APIC InterProcessor Interrupt code.
12 * Moved to include file by James Cleverdon from
13 * arch/x86-64/kernel/smp.c
15 * Copyrights from kernel/smp.c:
17 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
18 * (c) 1998-99, 2000 Ingo Molnar <mingo@redhat.com>
19 * (c) 2002,2003 Andi Kleen, SuSE Labs.
20 * Subject to the GNU Public License, v.2
23 #include <asm/hw_irq.h>
28 * the following functions deal with sending IPIs between CPUs.
30 * We use 'broadcast', CPU->CPU IPIs and self-IPIs too.
33 static inline unsigned int __prepare_ICR(unsigned int shortcut, int vector,
36 unsigned int icr = shortcut | dest;
40 icr |= APIC_DM_FIXED | vector;
49 static inline int __prepare_ICR2(unsigned int mask)
51 return SET_APIC_DEST_FIELD(mask);
54 static inline void __xapic_wait_icr_idle(void)
56 while (native_apic_mem_read(APIC_ICR) & APIC_ICR_BUSY)
61 __default_send_IPI_shortcut(unsigned int shortcut, int vector, unsigned int dest)
64 * Subtle. In the case of the 'never do double writes' workaround
65 * we have to lock out interrupts to be safe. As we don't care
66 * of the value read we use an atomic rmw access to avoid costly
67 * cli/sti. Otherwise we use an even cheaper single atomic write
75 __xapic_wait_icr_idle();
78 * No need to touch the target chip field
80 cfg = __prepare_ICR(shortcut, vector, dest);
83 * Send the IPI. The write to APIC_ICR fires this off.
85 native_apic_mem_write(APIC_ICR, cfg);
89 * This is used to send an IPI with no shorthand notation (the destination is
90 * specified in bits 56 to 63 of the ICR).
93 __default_send_IPI_dest_field(unsigned int mask, int vector, unsigned int dest)
100 if (unlikely(vector == NMI_VECTOR))
101 safe_apic_wait_icr_idle();
103 __xapic_wait_icr_idle();
106 * prepare target chip field
108 cfg = __prepare_ICR2(mask);
109 native_apic_mem_write(APIC_ICR2, cfg);
114 cfg = __prepare_ICR(0, vector, dest);
117 * Send the IPI. The write to APIC_ICR fires this off.
119 native_apic_mem_write(APIC_ICR, cfg);
122 extern void default_send_IPI_mask_sequence_phys(const struct cpumask *mask,
124 extern void default_send_IPI_mask_allbutself_phys(const struct cpumask *mask,
126 extern void default_send_IPI_mask_sequence_logical(const struct cpumask *mask,
128 extern void default_send_IPI_mask_allbutself_logical(const struct cpumask *mask,
131 /* Avoid include hell */
132 #define NMI_VECTOR 0x02
134 extern int no_broadcast;
136 static inline void __default_local_send_IPI_allbutself(int vector)
138 if (no_broadcast || vector == NMI_VECTOR)
139 apic->send_IPI_mask_allbutself(cpu_online_mask, vector);
141 __default_send_IPI_shortcut(APIC_DEST_ALLBUT, vector, apic->dest_logical);
144 static inline void __default_local_send_IPI_all(int vector)
146 if (no_broadcast || vector == NMI_VECTOR)
147 apic->send_IPI_mask(cpu_online_mask, vector);
149 __default_send_IPI_shortcut(APIC_DEST_ALLINC, vector, apic->dest_logical);
153 extern void default_send_IPI_mask_logical(const struct cpumask *mask,
155 extern void default_send_IPI_allbutself(int vector);
156 extern void default_send_IPI_all(int vector);
157 extern void default_send_IPI_self(int vector);
162 #endif /* _ASM_X86_IPI_H */