5 * Copyright 2004 James Cleverdon, IBM.
6 * Subject to the GNU Public License, v.2
8 * Generic APIC InterProcessor Interrupt code.
10 * Moved to include file by James Cleverdon from
11 * arch/x86-64/kernel/smp.c
13 * Copyrights from kernel/smp.c:
15 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
16 * (c) 1998-99, 2000 Ingo Molnar <mingo@redhat.com>
17 * (c) 2002,2003 Andi Kleen, SuSE Labs.
18 * Subject to the GNU Public License, v.2
21 #include <asm/hw_irq.h>
26 * the following functions deal with sending IPIs between CPUs.
28 * We use 'broadcast', CPU->CPU IPIs and self-IPIs too.
31 static inline unsigned int __prepare_ICR(unsigned int shortcut, int vector,
34 unsigned int icr = shortcut | dest;
38 icr |= APIC_DM_FIXED | vector;
47 static inline int __prepare_ICR2(unsigned int mask)
49 return SET_APIC_DEST_FIELD(mask);
52 static inline void __xapic_wait_icr_idle(void)
54 while (native_apic_mem_read(APIC_ICR) & APIC_ICR_BUSY)
58 static inline void __send_IPI_shortcut(unsigned int shortcut, int vector,
62 * Subtle. In the case of the 'never do double writes' workaround
63 * we have to lock out interrupts to be safe. As we don't care
64 * of the value read we use an atomic rmw access to avoid costly
65 * cli/sti. Otherwise we use an even cheaper single atomic write
73 __xapic_wait_icr_idle();
76 * No need to touch the target chip field
78 cfg = __prepare_ICR(shortcut, vector, dest);
81 * Send the IPI. The write to APIC_ICR fires this off.
83 native_apic_mem_write(APIC_ICR, cfg);
87 * This is used to send an IPI with no shorthand notation (the destination is
88 * specified in bits 56 to 63 of the ICR).
90 static inline void __send_IPI_dest_field(unsigned int mask, int vector,
98 if (unlikely(vector == NMI_VECTOR))
99 safe_apic_wait_icr_idle();
101 __xapic_wait_icr_idle();
104 * prepare target chip field
106 cfg = __prepare_ICR2(mask);
107 native_apic_mem_write(APIC_ICR2, cfg);
112 cfg = __prepare_ICR(0, vector, dest);
115 * Send the IPI. The write to APIC_ICR fires this off.
117 native_apic_mem_write(APIC_ICR, cfg);
120 static inline void send_IPI_mask_sequence(const struct cpumask *mask,
124 unsigned long query_cpu;
127 * Hack. The clustered APIC addressing mode doesn't allow us to send
128 * to an arbitrary mask, so I do a unicast to each CPU instead.
131 local_irq_save(flags);
132 for_each_cpu(query_cpu, mask) {
133 __send_IPI_dest_field(per_cpu(x86_cpu_to_apicid, query_cpu),
134 vector, APIC_DEST_PHYSICAL);
136 local_irq_restore(flags);
139 static inline void send_IPI_mask_allbutself(const struct cpumask *mask,
143 unsigned int query_cpu;
144 unsigned int this_cpu = smp_processor_id();
146 /* See Hack comment above */
148 local_irq_save(flags);
149 for_each_cpu(query_cpu, mask)
150 if (query_cpu != this_cpu)
151 __send_IPI_dest_field(
152 per_cpu(x86_cpu_to_apicid, query_cpu),
153 vector, APIC_DEST_PHYSICAL);
154 local_irq_restore(flags);
157 #endif /* _ASM_X86_IPI_H */