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