blob: a8d717f2c7e778cb12a207bf2d477b12dc00e8b9 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_IPI_H
2#define _ASM_X86_IPI_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4/*
5 * Copyright 2004 James Cleverdon, IBM.
6 * Subject to the GNU Public License, v.2
7 *
8 * Generic APIC InterProcessor Interrupt code.
9 *
10 * Moved to include file by James Cleverdon from
11 * arch/x86-64/kernel/smp.c
12 *
13 * Copyrights from kernel/smp.c:
14 *
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
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/hw_irq.h>
Jan Beulich00f1ea62007-05-02 19:27:04 +020022#include <asm/apic.h>
Paul Jacksone3f8ba82008-05-14 08:15:04 -070023#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/*
26 * the following functions deal with sending IPIs between CPUs.
27 *
28 * We use 'broadcast', CPU->CPU IPIs and self-IPIs too.
29 */
30
Joe Perches061b3d92008-03-23 01:02:27 -070031static inline unsigned int __prepare_ICR(unsigned int shortcut, int vector,
32 unsigned int dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Jan Beulich1a426cb2005-09-12 18:49:24 +020034 unsigned int icr = shortcut | dest;
35
36 switch (vector) {
37 default:
38 icr |= APIC_DM_FIXED | vector;
39 break;
40 case NMI_VECTOR:
Jan Beulich1a426cb2005-09-12 18:49:24 +020041 icr |= APIC_DM_NMI;
42 break;
43 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return icr;
45}
46
Joe Perches061b3d92008-03-23 01:02:27 -070047static inline int __prepare_ICR2(unsigned int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 return SET_APIC_DEST_FIELD(mask);
50}
51
Suresh Siddha1b374e42008-07-10 11:16:49 -070052static inline void __xapic_wait_icr_idle(void)
53{
54 while (native_apic_mem_read(APIC_ICR) & APIC_ICR_BUSY)
55 cpu_relax();
56}
57
Ingo Molnardac5f412009-01-28 15:42:24 +010058static inline void
59__default_send_IPI_shortcut(unsigned int shortcut,
60 int vector, unsigned int dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 /*
63 * Subtle. In the case of the 'never do double writes' workaround
64 * we have to lock out interrupts to be safe. As we don't care
65 * of the value read we use an atomic rmw access to avoid costly
66 * cli/sti. Otherwise we use an even cheaper single atomic write
67 * to the APIC.
68 */
69 unsigned int cfg;
70
71 /*
72 * Wait for idle.
73 */
Suresh Siddha1b374e42008-07-10 11:16:49 -070074 __xapic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 /*
77 * No need to touch the target chip field
78 */
79 cfg = __prepare_ICR(shortcut, vector, dest);
80
81 /*
82 * Send the IPI. The write to APIC_ICR fires this off.
83 */
Suresh Siddha1b374e42008-07-10 11:16:49 -070084 native_apic_mem_write(APIC_ICR, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Fernando Luis [** ISO-8859-1 charset **] VázquezCao9062d882007-05-02 19:27:18 +020087/*
88 * This is used to send an IPI with no shorthand notation (the destination is
89 * specified in bits 56 to 63 of the ICR).
90 */
Ingo Molnardac5f412009-01-28 15:42:24 +010091static inline void
92 __default_send_IPI_dest_field(unsigned int mask, int vector, unsigned int dest)
Fernando Luis [** ISO-8859-1 charset **] VázquezCao9062d882007-05-02 19:27:18 +020093{
94 unsigned long cfg;
95
96 /*
97 * Wait for idle.
98 */
Fernando Luis [** ISO-8859-1 charset **] VázquezCao70ae77f2007-05-02 19:27:18 +020099 if (unlikely(vector == NMI_VECTOR))
100 safe_apic_wait_icr_idle();
101 else
Suresh Siddha1b374e42008-07-10 11:16:49 -0700102 __xapic_wait_icr_idle();
Fernando Luis [** ISO-8859-1 charset **] VázquezCao9062d882007-05-02 19:27:18 +0200103
104 /*
105 * prepare target chip field
106 */
107 cfg = __prepare_ICR2(mask);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700108 native_apic_mem_write(APIC_ICR2, cfg);
Fernando Luis [** ISO-8859-1 charset **] VázquezCao9062d882007-05-02 19:27:18 +0200109
110 /*
111 * program the ICR
112 */
113 cfg = __prepare_ICR(0, vector, dest);
114
115 /*
116 * Send the IPI. The write to APIC_ICR fires this off.
117 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700118 native_apic_mem_write(APIC_ICR, cfg);
Fernando Luis [** ISO-8859-1 charset **] VázquezCao9062d882007-05-02 19:27:18 +0200119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Ingo Molnardac5f412009-01-28 15:42:24 +0100121static inline void
122default_send_IPI_mask_sequence(const struct cpumask *mask, int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 unsigned long query_cpu;
Ingo Molnardac5f412009-01-28 15:42:24 +0100125 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /*
128 * Hack. The clustered APIC addressing mode doesn't allow us to send
129 * to an arbitrary mask, so I do a unicast to each CPU instead.
130 * - mbligh
131 */
132 local_irq_save(flags);
Mike Travisbcda0162008-12-16 17:33:59 -0800133 for_each_cpu(query_cpu, mask) {
Ingo Molnardac5f412009-01-28 15:42:24 +0100134 __default_send_IPI_dest_field(per_cpu(x86_cpu_to_apicid,
135 query_cpu), vector, APIC_DEST_PHYSICAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137 local_irq_restore(flags);
138}
139
Ingo Molnardac5f412009-01-28 15:42:24 +0100140static inline void
141default_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
Mike Travise7986732008-12-16 17:33:52 -0800142{
Mike Travise7986732008-12-16 17:33:52 -0800143 unsigned int this_cpu = smp_processor_id();
Ingo Molnardac5f412009-01-28 15:42:24 +0100144 unsigned int query_cpu;
145 unsigned long flags;
Mike Travise7986732008-12-16 17:33:52 -0800146
147 /* See Hack comment above */
148
149 local_irq_save(flags);
Ingo Molnardac5f412009-01-28 15:42:24 +0100150 for_each_cpu(query_cpu, mask) {
151 if (query_cpu == this_cpu)
152 continue;
153 __default_send_IPI_dest_field(per_cpu(x86_cpu_to_apicid,
154 query_cpu), vector, APIC_DEST_PHYSICAL);
155 }
Mike Travise7986732008-12-16 17:33:52 -0800156 local_irq_restore(flags);
157}
158
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700159#endif /* _ASM_X86_IPI_H */