x86, apic: clean up ->cpu_present_to_apicid()
[linux-2.6-block.git] / arch / x86 / kernel / genx2apic_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
SS
9#include <asm/smp.h>
10#include <asm/ipi.h>
11#include <asm/genapic.h>
12
1b9b89e7
YL
13static int x2apic_phys;
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{
d25ae38b 24 if (cpu_has_x2apic && x2apic_phys)
1b9b89e7
YL
25 return 1;
26
27 return 0;
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 */
53 x2apic_icr_write(cfg, apicid);
54}
55
bcda016e 56static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
2d9579a1
SS
57{
58 unsigned long flags;
59 unsigned long query_cpu;
60
61 local_irq_save(flags);
bcda016e 62 for_each_cpu(query_cpu, mask) {
2d9579a1
SS
63 __x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
64 vector, APIC_DEST_PHYSICAL);
65 }
66 local_irq_restore(flags);
67}
68
bcda016e
MT
69static void x2apic_send_IPI_mask_allbutself(const struct cpumask *mask,
70 int vector)
2d9579a1 71{
e7986739
MT
72 unsigned long flags;
73 unsigned long query_cpu;
74 unsigned long this_cpu = smp_processor_id();
75
76 local_irq_save(flags);
bcda016e 77 for_each_cpu(query_cpu, mask) {
e7986739
MT
78 if (query_cpu != this_cpu)
79 __x2apic_send_IPI_dest(
80 per_cpu(x86_cpu_to_apicid, query_cpu),
81 vector, APIC_DEST_PHYSICAL);
82 }
83 local_irq_restore(flags);
84}
2d9579a1 85
e7986739
MT
86static void x2apic_send_IPI_allbutself(int vector)
87{
88 unsigned long flags;
89 unsigned long query_cpu;
90 unsigned long this_cpu = smp_processor_id();
2d9579a1 91
e7986739
MT
92 local_irq_save(flags);
93 for_each_online_cpu(query_cpu)
94 if (query_cpu != this_cpu)
95 __x2apic_send_IPI_dest(
96 per_cpu(x86_cpu_to_apicid, query_cpu),
97 vector, APIC_DEST_PHYSICAL);
98 local_irq_restore(flags);
2d9579a1
SS
99}
100
101static void x2apic_send_IPI_all(int vector)
102{
bcda016e 103 x2apic_send_IPI_mask(cpu_online_mask, vector);
2d9579a1
SS
104}
105
106static int x2apic_apic_id_registered(void)
107{
108 return 1;
109}
110
bcda016e 111static unsigned int x2apic_cpu_mask_to_apicid(const struct cpumask *cpumask)
2d9579a1
SS
112{
113 int cpu;
114
115 /*
116 * We're using fixed IRQ delivery, can only return one phys APIC ID.
117 * May as well be the first.
118 */
bcda016e 119 cpu = cpumask_first(cpumask);
e7986739 120 if ((unsigned)cpu < nr_cpu_ids)
2d9579a1
SS
121 return per_cpu(x86_cpu_to_apicid, cpu);
122 else
123 return BAD_APICID;
124}
125
6eeb7c5a
MT
126static unsigned int x2apic_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
127 const struct cpumask *andmask)
95d313cf
MT
128{
129 int cpu;
130
131 /*
132 * We're using fixed IRQ delivery, can only return one phys APIC ID.
133 * May as well be the first.
134 */
a775a38b
MT
135 for_each_cpu_and(cpu, cpumask, andmask)
136 if (cpumask_test_cpu(cpu, cpu_online_mask))
137 break;
6eeb7c5a
MT
138 if (cpu < nr_cpu_ids)
139 return per_cpu(x86_cpu_to_apicid, cpu);
95d313cf
MT
140 return BAD_APICID;
141}
142
f910a9dc
YL
143static unsigned int get_apic_id(unsigned long x)
144{
145 unsigned int id;
146
147 id = x;
148 return id;
149}
150
151static unsigned long set_apic_id(unsigned int id)
152{
153 unsigned long x;
154
155 x = id;
156 return x;
157}
158
2d9579a1
SS
159static unsigned int phys_pkg_id(int index_msb)
160{
e17941b0 161 return current_cpu_data.initial_apicid >> index_msb;
2d9579a1
SS
162}
163
4d08d97f 164static void x2apic_send_IPI_self(int vector)
2d9579a1
SS
165{
166 apic_write(APIC_SELF_IPI, vector);
167}
168
4d08d97f 169static void init_x2apic_ldr(void)
2d9579a1
SS
170{
171 return;
172}
173
174struct genapic apic_x2apic_phys = {
05c155c2
IM
175
176 .name = "physical x2apic",
177 .probe = NULL,
178 .acpi_madt_oem_check = x2apic_acpi_madt_oem_check,
179 .apic_id_registered = x2apic_apic_id_registered,
180
f8987a10 181 .irq_delivery_mode = dest_Fixed,
0b06e734 182 .irq_dest_mode = 0, /* physical */
05c155c2
IM
183
184 .target_cpus = x2apic_target_cpus,
08125d3e 185 .disable_esr = 0,
bdb1a9b6 186 .dest_logical = 0,
05c155c2
IM
187 .check_apicid_used = NULL,
188 .check_apicid_present = NULL,
189
05c155c2
IM
190 .vector_allocation_domain = x2apic_vector_allocation_domain,
191 .init_apic_ldr = init_x2apic_ldr,
192
193 .ioapic_phys_id_map = NULL,
194 .setup_apic_routing = NULL,
195 .multi_timer_check = NULL,
196 .apicid_to_node = NULL,
197 .cpu_to_logical_apicid = NULL,
a21769a4 198 .cpu_present_to_apicid = default_cpu_present_to_apicid,
05c155c2
IM
199 .apicid_to_cpu_present = NULL,
200 .setup_portio_remap = NULL,
201 .check_phys_apicid_present = NULL,
202 .enable_apic_mode = NULL,
203 .phys_pkg_id = phys_pkg_id,
204 .mps_oem_check = NULL,
205
206 .get_apic_id = get_apic_id,
207 .set_apic_id = set_apic_id,
208 .apic_id_mask = 0xFFFFFFFFu,
209
210 .cpu_mask_to_apicid = x2apic_cpu_mask_to_apicid,
211 .cpu_mask_to_apicid_and = x2apic_cpu_mask_to_apicid_and,
212
213 .send_IPI_mask = x2apic_send_IPI_mask,
214 .send_IPI_mask_allbutself = x2apic_send_IPI_mask_allbutself,
215 .send_IPI_allbutself = x2apic_send_IPI_allbutself,
216 .send_IPI_all = x2apic_send_IPI_all,
217 .send_IPI_self = x2apic_send_IPI_self,
218
219 .wakeup_cpu = NULL,
220 .trampoline_phys_low = 0,
221 .trampoline_phys_high = 0,
222 .wait_for_init_deassert = NULL,
223 .smp_callin_clear_local_apic = NULL,
224 .store_NMI_vector = NULL,
225 .restore_NMI_vector = NULL,
226 .inquire_remote_apic = NULL,
2d9579a1 227};