ia64: sn_nodepda cannot be assigned to after this_cpu conversion. Use __this_cpu_write.
[linux-2.6-block.git] / arch / x86 / kernel / apic / x2apic_cluster.c
CommitLineData
12a67cf6
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>
1b9b89e7 6#include <linux/dmar.h>
9d0fa6c5 7#include <linux/cpu.h>
1b9b89e7 8
12a67cf6 9#include <asm/smp.h>
79deb8e5 10#include <asm/x2apic.h>
12a67cf6 11
2de1f33e 12static DEFINE_PER_CPU(u32, x86_cpu_to_logical_apicid);
a39d1f3f 13static DEFINE_PER_CPU(cpumask_var_t, cpus_in_cluster);
9d0fa6c5 14static DEFINE_PER_CPU(cpumask_var_t, ipi_mask);
12a67cf6 15
2caa3715 16static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
1b9b89e7 17{
ef1f87aa 18 return x2apic_enabled();
1b9b89e7
YL
19}
20
a39d1f3f
CG
21static inline u32 x2apic_cluster(int cpu)
22{
23 return per_cpu(x86_cpu_to_logical_apicid, cpu) >> 16;
24}
25
a27d0b5e
SS
26static void
27__x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest)
12a67cf6 28{
9d0fa6c5
CG
29 struct cpumask *cpus_in_cluster_ptr;
30 struct cpumask *ipi_mask_ptr;
31 unsigned int cpu, this_cpu;
dac5f412 32 unsigned long flags;
9d0fa6c5 33 u32 dest;
12a67cf6 34
ce4e240c
SS
35 x2apic_wrmsr_fence();
36
12a67cf6 37 local_irq_save(flags);
a27d0b5e
SS
38
39 this_cpu = smp_processor_id();
9d0fa6c5
CG
40
41 /*
42 * We are to modify mask, so we need an own copy
43 * and be sure it's manipulated with irq off.
44 */
4ba29684 45 ipi_mask_ptr = this_cpu_cpumask_var_ptr(ipi_mask);
9d0fa6c5
CG
46
47 /*
48 * The idea is to send one IPI per cluster.
49 */
50 for_each_cpu(cpu, ipi_mask_ptr) {
51 unsigned long i;
52
53 cpus_in_cluster_ptr = per_cpu(cpus_in_cluster, cpu);
54 dest = 0;
55
56 /* Collect cpus in cluster. */
57 for_each_cpu_and(i, ipi_mask_ptr, cpus_in_cluster_ptr) {
58 if (apic_dest == APIC_DEST_ALLINC || i != this_cpu)
59 dest |= per_cpu(x86_cpu_to_logical_apicid, i);
60 }
61
62 if (!dest)
a27d0b5e 63 continue;
9d0fa6c5
CG
64
65 __x2apic_send_IPI_dest(dest, vector, apic->dest_logical);
66 /*
67 * Cluster sibling cpus should be discared now so
68 * we would not send IPI them second time.
69 */
70 cpumask_andnot(ipi_mask_ptr, ipi_mask_ptr, cpus_in_cluster_ptr);
dac5f412 71 }
a27d0b5e 72
12a67cf6
SS
73 local_irq_restore(flags);
74}
75
a27d0b5e
SS
76static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
77{
78 __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC);
79}
80
dac5f412 81static void
49d0c7a0 82x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
12a67cf6 83{
a27d0b5e 84 __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLBUT);
e7986739 85}
12a67cf6 86
e7986739
MT
87static void x2apic_send_IPI_allbutself(int vector)
88{
a27d0b5e 89 __x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLBUT);
12a67cf6
SS
90}
91
92static void x2apic_send_IPI_all(int vector)
93{
a27d0b5e 94 __x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLINC);
12a67cf6
SS
95}
96
ff164324 97static int
debccb3e 98x2apic_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
ff164324
AG
99 const struct cpumask *andmask,
100 unsigned int *apicid)
95d313cf 101{
0b8255e6
SS
102 u32 dest = 0;
103 u16 cluster;
104 int i;
95d313cf 105
0b8255e6
SS
106 for_each_cpu_and(i, cpumask, andmask) {
107 if (!cpumask_test_cpu(i, cpu_online_mask))
108 continue;
109 dest = per_cpu(x86_cpu_to_logical_apicid, i);
110 cluster = x2apic_cluster(i);
111 break;
debccb3e
IM
112 }
113
0b8255e6 114 if (!dest)
ff164324 115 return -EINVAL;
0b8255e6
SS
116
117 for_each_cpu_and(i, cpumask, andmask) {
118 if (!cpumask_test_cpu(i, cpu_online_mask))
119 continue;
120 if (cluster != x2apic_cluster(i))
121 continue;
122 dest |= per_cpu(x86_cpu_to_logical_apicid, i);
123 }
124
ff164324
AG
125 *apicid = dest;
126
127 return 0;
95d313cf
MT
128}
129
12a67cf6 130static void init_x2apic_ldr(void)
a39d1f3f
CG
131{
132 unsigned int this_cpu = smp_processor_id();
133 unsigned int cpu;
134
135 per_cpu(x86_cpu_to_logical_apicid, this_cpu) = apic_read(APIC_LDR);
136
137 __cpu_set(this_cpu, per_cpu(cpus_in_cluster, this_cpu));
138 for_each_online_cpu(cpu) {
139 if (x2apic_cluster(this_cpu) != x2apic_cluster(cpu))
140 continue;
141 __cpu_set(this_cpu, per_cpu(cpus_in_cluster, cpu));
142 __cpu_set(cpu, per_cpu(cpus_in_cluster, this_cpu));
143 }
144}
145
146 /*
147 * At CPU state changes, update the x2apic cluster sibling info.
148 */
148f9bb8 149static int
a39d1f3f
CG
150update_clusterinfo(struct notifier_block *nfb, unsigned long action, void *hcpu)
151{
152 unsigned int this_cpu = (unsigned long)hcpu;
153 unsigned int cpu;
154 int err = 0;
155
156 switch (action) {
157 case CPU_UP_PREPARE:
158 if (!zalloc_cpumask_var(&per_cpu(cpus_in_cluster, this_cpu),
159 GFP_KERNEL)) {
160 err = -ENOMEM;
9d0fa6c5
CG
161 } else if (!zalloc_cpumask_var(&per_cpu(ipi_mask, this_cpu),
162 GFP_KERNEL)) {
163 free_cpumask_var(per_cpu(cpus_in_cluster, this_cpu));
164 err = -ENOMEM;
a39d1f3f
CG
165 }
166 break;
167 case CPU_UP_CANCELED:
168 case CPU_UP_CANCELED_FROZEN:
169 case CPU_DEAD:
170 for_each_online_cpu(cpu) {
171 if (x2apic_cluster(this_cpu) != x2apic_cluster(cpu))
172 continue;
173 __cpu_clear(this_cpu, per_cpu(cpus_in_cluster, cpu));
174 __cpu_clear(cpu, per_cpu(cpus_in_cluster, this_cpu));
175 }
176 free_cpumask_var(per_cpu(cpus_in_cluster, this_cpu));
9d0fa6c5 177 free_cpumask_var(per_cpu(ipi_mask, this_cpu));
a39d1f3f
CG
178 break;
179 }
180
181 return notifier_from_errno(err);
182}
183
184static struct notifier_block __refdata x2apic_cpu_notifier = {
185 .notifier_call = update_clusterinfo,
186};
187
188static int x2apic_init_cpu_notifier(void)
12a67cf6
SS
189{
190 int cpu = smp_processor_id();
191
a39d1f3f 192 zalloc_cpumask_var(&per_cpu(cpus_in_cluster, cpu), GFP_KERNEL);
9d0fa6c5 193 zalloc_cpumask_var(&per_cpu(ipi_mask, cpu), GFP_KERNEL);
a39d1f3f 194
9d0fa6c5 195 BUG_ON(!per_cpu(cpus_in_cluster, cpu) || !per_cpu(ipi_mask, cpu));
a39d1f3f
CG
196
197 __cpu_set(cpu, per_cpu(cpus_in_cluster, cpu));
198 register_hotcpu_notifier(&x2apic_cpu_notifier);
199 return 1;
12a67cf6
SS
200}
201
9ebd680b
SS
202static int x2apic_cluster_probe(void)
203{
a39d1f3f
CG
204 if (x2apic_mode)
205 return x2apic_init_cpu_notifier();
206 else
207 return 0;
9ebd680b
SS
208}
209
d872818d
SS
210static const struct cpumask *x2apic_cluster_target_cpus(void)
211{
212 return cpu_all_mask;
213}
214
0b8255e6
SS
215/*
216 * Each x2apic cluster is an allocation domain.
217 */
1ac322d0
SS
218static void cluster_vector_allocation_domain(int cpu, struct cpumask *retmask,
219 const struct cpumask *mask)
0b8255e6 220{
d872818d
SS
221 /*
222 * To minimize vector pressure, default case of boot, device bringup
223 * etc will use a single cpu for the interrupt destination.
224 *
225 * On explicit migration requests coming from irqbalance etc,
226 * interrupts will be routed to the x2apic cluster (cluster-id
227 * derived from the first cpu in the mask) members specified
228 * in the mask.
229 */
230 if (mask == x2apic_cluster_target_cpus())
231 cpumask_copy(retmask, cpumask_of(cpu));
232 else
233 cpumask_and(retmask, mask, per_cpu(cpus_in_cluster, cpu));
0b8255e6
SS
234}
235
1a8880a1 236static struct apic apic_x2apic_cluster = {
504a3c3a
IM
237
238 .name = "cluster x2apic",
9ebd680b 239 .probe = x2apic_cluster_probe,
504a3c3a 240 .acpi_madt_oem_check = x2apic_acpi_madt_oem_check,
b7157acf 241 .apic_id_valid = x2apic_apic_id_valid,
504a3c3a
IM
242 .apic_id_registered = x2apic_apic_id_registered,
243
f8987a10 244 .irq_delivery_mode = dest_LowestPrio,
0b06e734 245 .irq_dest_mode = 1, /* logical */
504a3c3a 246
d872818d 247 .target_cpus = x2apic_cluster_target_cpus,
08125d3e 248 .disable_esr = 0,
bdb1a9b6 249 .dest_logical = APIC_DEST_LOGICAL,
504a3c3a 250 .check_apicid_used = NULL,
504a3c3a 251
0b8255e6 252 .vector_allocation_domain = cluster_vector_allocation_domain,
504a3c3a
IM
253 .init_apic_ldr = init_x2apic_ldr,
254
255 .ioapic_phys_id_map = NULL,
256 .setup_apic_routing = NULL,
a21769a4 257 .cpu_present_to_apicid = default_cpu_present_to_apicid,
504a3c3a 258 .apicid_to_cpu_present = NULL,
a27a6210 259 .check_phys_apicid_present = default_check_phys_apicid_present,
79deb8e5 260 .phys_pkg_id = x2apic_phys_pkg_id,
504a3c3a 261
79deb8e5
CG
262 .get_apic_id = x2apic_get_apic_id,
263 .set_apic_id = x2apic_set_apic_id,
504a3c3a
IM
264 .apic_id_mask = 0xFFFFFFFFu,
265
504a3c3a
IM
266 .cpu_mask_to_apicid_and = x2apic_cpu_mask_to_apicid_and,
267
268 .send_IPI_mask = x2apic_send_IPI_mask,
269 .send_IPI_mask_allbutself = x2apic_send_IPI_mask_allbutself,
270 .send_IPI_allbutself = x2apic_send_IPI_allbutself,
271 .send_IPI_all = x2apic_send_IPI_all,
272 .send_IPI_self = x2apic_send_IPI_self,
273
465822cf 274 .wait_for_init_deassert = false,
504a3c3a 275 .inquire_remote_apic = NULL,
c1eeb2de
YL
276
277 .read = native_apic_msr_read,
278 .write = native_apic_msr_write,
0ab711ae 279 .eoi_write = native_apic_msr_eoi_write,
c1eeb2de
YL
280 .icr_read = native_x2apic_icr_read,
281 .icr_write = native_x2apic_icr_write,
282 .wait_icr_idle = native_x2apic_wait_icr_idle,
283 .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
12a67cf6 284};
107e0e0c
SS
285
286apic_driver(apic_x2apic_cluster);