x86: add x2apic_wrmsr_fence() to x2apic flush tlb paths
[linux-2.6-block.git] / arch / x86 / kernel / apic / x2apic_phys.c
CommitLineData
2d9579a1
SS
1#include <linux/threads.h>
2#include <linux/cpumask.h>
3#include <linux/string.h>
4#include <linux/kernel.h>
5#include <linux/ctype.h>
6#include <linux/init.h>
1b9b89e7
YL
7#include <linux/dmar.h>
8
2d9579a1 9#include <asm/smp.h>
7b6aa335 10#include <asm/apic.h>
c1eeb2de 11#include <asm/ipi.h>
2d9579a1 12
ef1f87aa 13int x2apic_phys;
1b9b89e7
YL
14
15static int set_x2apic_phys_mode(char *arg)
16{
17 x2apic_phys = 1;
18 return 0;
19}
20early_param("x2apic_phys", set_x2apic_phys_mode);
21
3cfba089 22static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
1b9b89e7 23{
ef1f87aa
SS
24 if (x2apic_phys)
25 return x2apic_enabled();
26 else
27 return 0;
1b9b89e7 28}
2d9579a1
SS
29
30/* Start with all IRQs pointing to boot CPU. IRQ balancing will shift them. */
31
bcda016e 32static const struct cpumask *x2apic_target_cpus(void)
2d9579a1 33{
bcda016e 34 return cpumask_of(0);
2d9579a1
SS
35}
36
bcda016e 37static void x2apic_vector_allocation_domain(int cpu, struct cpumask *retmask)
2d9579a1 38{
bcda016e
MT
39 cpumask_clear(retmask);
40 cpumask_set_cpu(cpu, retmask);
2d9579a1
SS
41}
42
43static void __x2apic_send_IPI_dest(unsigned int apicid, int vector,
44 unsigned int dest)
45{
46 unsigned long cfg;
47
48 cfg = __prepare_ICR(0, vector, dest);
49
50 /*
51 * send the IPI.
52 */
c1eeb2de 53 native_x2apic_icr_write(cfg, apicid);
2d9579a1
SS
54}
55
bcda016e 56static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
2d9579a1 57{
2d9579a1 58 unsigned long query_cpu;
dac5f412 59 unsigned long flags;
2d9579a1 60
ce4e240c
SS
61 x2apic_wrmsr_fence();
62
2d9579a1 63 local_irq_save(flags);
bcda016e 64 for_each_cpu(query_cpu, mask) {
2d9579a1
SS
65 __x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
66 vector, APIC_DEST_PHYSICAL);
67 }
68 local_irq_restore(flags);
69}
70
dac5f412
IM
71static void
72 x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
2d9579a1 73{
e7986739 74 unsigned long this_cpu = smp_processor_id();
dac5f412
IM
75 unsigned long query_cpu;
76 unsigned long flags;
e7986739 77
ce4e240c
SS
78 x2apic_wrmsr_fence();
79
e7986739 80 local_irq_save(flags);
bcda016e 81 for_each_cpu(query_cpu, mask) {
e7986739
MT
82 if (query_cpu != this_cpu)
83 __x2apic_send_IPI_dest(
84 per_cpu(x86_cpu_to_apicid, query_cpu),
85 vector, APIC_DEST_PHYSICAL);
86 }
87 local_irq_restore(flags);
88}
2d9579a1 89
e7986739
MT
90static void x2apic_send_IPI_allbutself(int vector)
91{
e7986739 92 unsigned long this_cpu = smp_processor_id();
dac5f412
IM
93 unsigned long query_cpu;
94 unsigned long flags;
2d9579a1 95
ce4e240c
SS
96 x2apic_wrmsr_fence();
97
e7986739 98 local_irq_save(flags);
dac5f412
IM
99 for_each_online_cpu(query_cpu) {
100 if (query_cpu == this_cpu)
101 continue;
102 __x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
103 vector, APIC_DEST_PHYSICAL);
104 }
e7986739 105 local_irq_restore(flags);
2d9579a1
SS
106}
107
108static void x2apic_send_IPI_all(int vector)
109{
bcda016e 110 x2apic_send_IPI_mask(cpu_online_mask, vector);
2d9579a1
SS
111}
112
113static int x2apic_apic_id_registered(void)
114{
115 return 1;
116}
117
bcda016e 118static unsigned int x2apic_cpu_mask_to_apicid(const struct cpumask *cpumask)
2d9579a1 119{
2d9579a1
SS
120 /*
121 * We're using fixed IRQ delivery, can only return one phys APIC ID.
122 * May as well be the first.
123 */
debccb3e
IM
124 int cpu = cpumask_first(cpumask);
125
e7986739 126 if ((unsigned)cpu < nr_cpu_ids)
2d9579a1
SS
127 return per_cpu(x86_cpu_to_apicid, cpu);
128 else
129 return BAD_APICID;
130}
131
debccb3e
IM
132static unsigned int
133x2apic_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
134 const struct cpumask *andmask)
95d313cf
MT
135{
136 int cpu;
137
138 /*
139 * We're using fixed IRQ delivery, can only return one phys APIC ID.
140 * May as well be the first.
141 */
debccb3e 142 for_each_cpu_and(cpu, cpumask, andmask) {
a775a38b
MT
143 if (cpumask_test_cpu(cpu, cpu_online_mask))
144 break;
debccb3e
IM
145 }
146
6eeb7c5a
MT
147 if (cpu < nr_cpu_ids)
148 return per_cpu(x86_cpu_to_apicid, cpu);
debccb3e 149
95d313cf
MT
150 return BAD_APICID;
151}
152
ca6c8ed4 153static unsigned int x2apic_phys_get_apic_id(unsigned long x)
f910a9dc 154{
dac5f412 155 return x;
f910a9dc
YL
156}
157
158static unsigned long set_apic_id(unsigned int id)
159{
dac5f412 160 return id;
f910a9dc
YL
161}
162
d4c9a9f3 163static int x2apic_phys_pkg_id(int initial_apicid, int index_msb)
2d9579a1 164{
e17941b0 165 return current_cpu_data.initial_apicid >> index_msb;
2d9579a1
SS
166}
167
4d08d97f 168static void x2apic_send_IPI_self(int vector)
2d9579a1
SS
169{
170 apic_write(APIC_SELF_IPI, vector);
171}
172
4d08d97f 173static void init_x2apic_ldr(void)
2d9579a1 174{
2d9579a1
SS
175}
176
be163a15 177struct apic apic_x2apic_phys = {
05c155c2
IM
178
179 .name = "physical x2apic",
180 .probe = NULL,
181 .acpi_madt_oem_check = x2apic_acpi_madt_oem_check,
182 .apic_id_registered = x2apic_apic_id_registered,
183
f8987a10 184 .irq_delivery_mode = dest_Fixed,
0b06e734 185 .irq_dest_mode = 0, /* physical */
05c155c2
IM
186
187 .target_cpus = x2apic_target_cpus,
08125d3e 188 .disable_esr = 0,
bdb1a9b6 189 .dest_logical = 0,
05c155c2
IM
190 .check_apicid_used = NULL,
191 .check_apicid_present = NULL,
192
05c155c2
IM
193 .vector_allocation_domain = x2apic_vector_allocation_domain,
194 .init_apic_ldr = init_x2apic_ldr,
195
196 .ioapic_phys_id_map = NULL,
197 .setup_apic_routing = NULL,
198 .multi_timer_check = NULL,
199 .apicid_to_node = NULL,
200 .cpu_to_logical_apicid = NULL,
a21769a4 201 .cpu_present_to_apicid = default_cpu_present_to_apicid,
05c155c2
IM
202 .apicid_to_cpu_present = NULL,
203 .setup_portio_remap = NULL,
a27a6210 204 .check_phys_apicid_present = default_check_phys_apicid_present,
05c155c2 205 .enable_apic_mode = NULL,
d4c9a9f3 206 .phys_pkg_id = x2apic_phys_pkg_id,
05c155c2
IM
207 .mps_oem_check = NULL,
208
ca6c8ed4 209 .get_apic_id = x2apic_phys_get_apic_id,
05c155c2
IM
210 .set_apic_id = set_apic_id,
211 .apic_id_mask = 0xFFFFFFFFu,
212
213 .cpu_mask_to_apicid = x2apic_cpu_mask_to_apicid,
214 .cpu_mask_to_apicid_and = x2apic_cpu_mask_to_apicid_and,
215
216 .send_IPI_mask = x2apic_send_IPI_mask,
217 .send_IPI_mask_allbutself = x2apic_send_IPI_mask_allbutself,
218 .send_IPI_allbutself = x2apic_send_IPI_allbutself,
219 .send_IPI_all = x2apic_send_IPI_all,
220 .send_IPI_self = x2apic_send_IPI_self,
221
abfa584c
IM
222 .trampoline_phys_low = DEFAULT_TRAMPOLINE_PHYS_LOW,
223 .trampoline_phys_high = DEFAULT_TRAMPOLINE_PHYS_HIGH,
05c155c2
IM
224 .wait_for_init_deassert = NULL,
225 .smp_callin_clear_local_apic = NULL,
05c155c2 226 .inquire_remote_apic = NULL,
c1eeb2de
YL
227
228 .read = native_apic_msr_read,
229 .write = native_apic_msr_write,
230 .icr_read = native_x2apic_icr_read,
231 .icr_write = native_x2apic_icr_write,
232 .wait_icr_idle = native_x2apic_wait_icr_idle,
233 .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
2d9579a1 234};