blob: 34185488e4fb47e41aed797bcd8cd6b1a5c9d33d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2004 James Cleverdon, IBM.
3 * Subject to the GNU Public License, v.2
4 *
Andi Kleenf8d31192005-07-28 21:15:42 -07005 * Flat APIC subarch code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Hacked for x86-64 by James Cleverdon from i386 architecture code by
8 * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
9 * James Cleverdon.
10 */
Andi Kleenf19cccf2007-05-02 19:27:21 +020011#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/threads.h>
13#include <linux/cpumask.h>
14#include <linux/string.h>
15#include <linux/kernel.h>
16#include <linux/ctype.h>
17#include <linux/init.h>
Suresh Siddha0c81c742008-07-10 11:16:48 -070018#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/smp.h>
20#include <asm/ipi.h>
Jan Beulich00f1ea62007-05-02 19:27:04 +020021#include <asm/genapic.h>
Suresh Siddha0c81c742008-07-10 11:16:48 -070022#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070024#ifdef CONFIG_ACPI
25#include <acpi/acpi_bus.h>
26#endif
27
Marcin Slusarz983f91f2008-10-12 11:44:08 +020028static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070029{
30 return 1;
31}
32
Mike Travisbcda0162008-12-16 17:33:59 -080033static const struct cpumask *flat_target_cpus(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Mike Travisbcda0162008-12-16 17:33:59 -080035 return cpu_online_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37
Mike Travisbcda0162008-12-16 17:33:59 -080038static void flat_vector_allocation_domain(int cpu, struct cpumask *retmask)
Eric W. Biedermanc7111c132006-10-08 07:47:55 -060039{
40 /* Careful. Some cpus do not strictly honor the set of cpus
41 * specified in the interrupt destination when using lowest
42 * priority interrupt delivery mode.
43 *
44 * In particular there was a hyperthreading cpu observed to
45 * deliver interrupts to the wrong hyperthread when only one
46 * hyperthread was specified in the interrupt desitination.
47 */
Mike Travisbcda0162008-12-16 17:33:59 -080048 cpumask_clear(retmask);
49 cpumask_bits(retmask)[0] = APIC_ALL_CPUS;
Eric W. Biedermanc7111c132006-10-08 07:47:55 -060050}
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
53 * Set up the logical destination ID.
54 *
55 * Intel recommends to set DFR, LDR and TPR before enabling
56 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
57 * document number 292116). So here it goes...
58 */
59static void flat_init_apic_ldr(void)
60{
61 unsigned long val;
62 unsigned long num, id;
63
64 num = smp_processor_id();
65 id = 1UL << num;
Andi Kleeneddfb4e2005-09-12 18:49:23 +020066 apic_write(APIC_DFR, APIC_DFR_FLAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
68 val |= SET_APIC_LOGICAL_ID(id);
Andi Kleeneddfb4e2005-09-12 18:49:23 +020069 apic_write(APIC_LDR, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Mike Travise7986732008-12-16 17:33:52 -080072static inline void _flat_send_IPI_mask(unsigned long mask, int vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 unsigned long flags;
75
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +020076 local_irq_save(flags);
Fernando Luis [** ISO-8859-1 charset **] VázquezCao9062d882007-05-02 19:27:18 +020077 __send_IPI_dest_field(mask, vector, APIC_DEST_LOGICAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 local_irq_restore(flags);
79}
80
Mike Travisbcda0162008-12-16 17:33:59 -080081static void flat_send_IPI_mask(const struct cpumask *cpumask, int vector)
Mike Travise7986732008-12-16 17:33:52 -080082{
Mike Travisbcda0162008-12-16 17:33:59 -080083 unsigned long mask = cpumask_bits(cpumask)[0];
Mike Travise7986732008-12-16 17:33:52 -080084
85 _flat_send_IPI_mask(mask, vector);
86}
87
Mike Travisbcda0162008-12-16 17:33:59 -080088static void flat_send_IPI_mask_allbutself(const struct cpumask *cpumask,
89 int vector)
Mike Travise7986732008-12-16 17:33:52 -080090{
Mike Travisbcda0162008-12-16 17:33:59 -080091 unsigned long mask = cpumask_bits(cpumask)[0];
Mike Travise7986732008-12-16 17:33:52 -080092 int cpu = smp_processor_id();
93
94 if (cpu < BITS_PER_LONG)
95 clear_bit(cpu, &mask);
96 _flat_send_IPI_mask(mask, vector);
97}
98
Ashok Raj884d9e42005-06-25 14:55:02 -070099static void flat_send_IPI_allbutself(int vector)
100{
Mike Travise7986732008-12-16 17:33:52 -0800101 int cpu = smp_processor_id();
Keith Owense77deac2006-06-26 13:59:56 +0200102#ifdef CONFIG_HOTPLUG_CPU
103 int hotplug = 1;
Ashok Rajfdf26d92005-09-09 13:01:52 -0700104#else
Keith Owense77deac2006-06-26 13:59:56 +0200105 int hotplug = 0;
Ashok Rajfdf26d92005-09-09 13:01:52 -0700106#endif
Keith Owense77deac2006-06-26 13:59:56 +0200107 if (hotplug || vector == NMI_VECTOR) {
Mike Travisbcda0162008-12-16 17:33:59 -0800108 if (!cpumask_equal(cpu_online_mask, cpumask_of(cpu))) {
109 unsigned long mask = cpumask_bits(cpu_online_mask)[0];
Keith Owense77deac2006-06-26 13:59:56 +0200110
Mike Travise7986732008-12-16 17:33:52 -0800111 if (cpu < BITS_PER_LONG)
112 clear_bit(cpu, &mask);
Keith Owense77deac2006-06-26 13:59:56 +0200113
Mike Travise7986732008-12-16 17:33:52 -0800114 _flat_send_IPI_mask(mask, vector);
115 }
Keith Owense77deac2006-06-26 13:59:56 +0200116 } else if (num_online_cpus() > 1) {
117 __send_IPI_shortcut(APIC_DEST_ALLBUT, vector,APIC_DEST_LOGICAL);
118 }
Ashok Raj884d9e42005-06-25 14:55:02 -0700119}
120
121static void flat_send_IPI_all(int vector)
122{
Keith Owense77deac2006-06-26 13:59:56 +0200123 if (vector == NMI_VECTOR)
Mike Travisbcda0162008-12-16 17:33:59 -0800124 flat_send_IPI_mask(cpu_online_mask, vector);
Keith Owense77deac2006-06-26 13:59:56 +0200125 else
126 __send_IPI_shortcut(APIC_DEST_ALLINC, vector, APIC_DEST_LOGICAL);
Ashok Raj884d9e42005-06-25 14:55:02 -0700127}
128
Yinghai Luf910a9d2008-07-12 01:01:20 -0700129static unsigned int get_apic_id(unsigned long x)
130{
131 unsigned int id;
132
133 id = (((x)>>24) & 0xFFu);
134 return id;
135}
136
137static unsigned long set_apic_id(unsigned int id)
138{
139 unsigned long x;
140
141 x = ((id & 0xFFu)<<24);
142 return x;
143}
144
Suresh Siddha0c81c742008-07-10 11:16:48 -0700145static unsigned int read_xapic_id(void)
146{
147 unsigned int id;
148
Yinghai Luf910a9d2008-07-12 01:01:20 -0700149 id = get_apic_id(apic_read(APIC_ID));
Suresh Siddha0c81c742008-07-10 11:16:48 -0700150 return id;
151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static int flat_apic_id_registered(void)
154{
Suresh Siddha0c81c742008-07-10 11:16:48 -0700155 return physid_isset(read_xapic_id(), phys_cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Mike Travisbcda0162008-12-16 17:33:59 -0800158static unsigned int flat_cpu_mask_to_apicid(const struct cpumask *cpumask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Mike Travisbcda0162008-12-16 17:33:59 -0800160 return cpumask_bits(cpumask)[0] & APIC_ALL_CPUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Mike Travis6eeb7c52008-12-16 17:33:55 -0800163static unsigned int flat_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
164 const struct cpumask *andmask)
Mike Travis95d313c2008-12-16 17:33:54 -0800165{
Mike Travis6eeb7c52008-12-16 17:33:55 -0800166 unsigned long mask1 = cpumask_bits(cpumask)[0] & APIC_ALL_CPUS;
167 unsigned long mask2 = cpumask_bits(andmask)[0] & APIC_ALL_CPUS;
Mike Travis95d313c2008-12-16 17:33:54 -0800168
Mike Travis6eeb7c52008-12-16 17:33:55 -0800169 return mask1 & mask2;
Mike Travis95d313c2008-12-16 17:33:54 -0800170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static unsigned int phys_pkg_id(int index_msb)
173{
ravikiran thirumalai0f4fdb72006-06-26 13:56:04 +0200174 return hard_smp_processor_id() >> index_msb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177struct genapic apic_flat = {
178 .name = "flat",
Yinghai Lu1b9b89e2008-07-21 22:08:21 -0700179 .acpi_madt_oem_check = flat_acpi_madt_oem_check,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .int_delivery_mode = dest_LowestPrio,
181 .int_dest_mode = (APIC_DEST_LOGICAL != 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .target_cpus = flat_target_cpus,
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600183 .vector_allocation_domain = flat_vector_allocation_domain,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 .apic_id_registered = flat_apic_id_registered,
185 .init_apic_ldr = flat_init_apic_ldr,
186 .send_IPI_all = flat_send_IPI_all,
187 .send_IPI_allbutself = flat_send_IPI_allbutself,
188 .send_IPI_mask = flat_send_IPI_mask,
Mike Travise7986732008-12-16 17:33:52 -0800189 .send_IPI_mask_allbutself = flat_send_IPI_mask_allbutself,
Suresh Siddhacff73a62008-07-10 11:16:53 -0700190 .send_IPI_self = apic_send_IPI_self,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .cpu_mask_to_apicid = flat_cpu_mask_to_apicid,
Mike Travis95d313c2008-12-16 17:33:54 -0800192 .cpu_mask_to_apicid_and = flat_cpu_mask_to_apicid_and,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 .phys_pkg_id = phys_pkg_id,
Yinghai Luf910a9d2008-07-12 01:01:20 -0700194 .get_apic_id = get_apic_id,
195 .set_apic_id = set_apic_id,
196 .apic_id_mask = (0xFFu<<24),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
Andi Kleenf8d31192005-07-28 21:15:42 -0700198
199/*
200 * Physflat mode is used when there are more than 8 CPUs on a AMD system.
201 * We cannot use logical delivery in this case because the mask
202 * overflows, so use physical mode.
203 */
Marcin Slusarzfae172162008-10-12 11:44:09 +0200204static int physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Yinghai Lu1b9b89e2008-07-21 22:08:21 -0700205{
206#ifdef CONFIG_ACPI
207 /*
208 * Quirk: some x86_64 machines can only use physical APIC mode
209 * regardless of how many processors are present (x86_64 ES7000
210 * is an example).
211 */
212 if (acpi_gbl_FADT.header.revision > FADT2_REVISION_ID &&
Yinghai Lu02c1df12008-09-04 20:57:11 +0200213 (acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
214 printk(KERN_DEBUG "system APIC only can use physical flat");
Yinghai Lu1b9b89e2008-07-21 22:08:21 -0700215 return 1;
Yinghai Lu02c1df12008-09-04 20:57:11 +0200216 }
Yinghai Lu1b9b89e2008-07-21 22:08:21 -0700217#endif
218
219 return 0;
220}
Andi Kleenf8d31192005-07-28 21:15:42 -0700221
Mike Travisbcda0162008-12-16 17:33:59 -0800222static const struct cpumask *physflat_target_cpus(void)
Andi Kleenf8d31192005-07-28 21:15:42 -0700223{
Mike Travisbcda0162008-12-16 17:33:59 -0800224 return cpu_online_mask;
Andi Kleenf8d31192005-07-28 21:15:42 -0700225}
226
Mike Travisbcda0162008-12-16 17:33:59 -0800227static void physflat_vector_allocation_domain(int cpu, struct cpumask *retmask)
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600228{
Mike Travisbcda0162008-12-16 17:33:59 -0800229 cpumask_clear(retmask);
230 cpumask_set_cpu(cpu, retmask);
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600231}
232
Mike Travisbcda0162008-12-16 17:33:59 -0800233static void physflat_send_IPI_mask(const struct cpumask *cpumask, int vector)
Andi Kleenf8d31192005-07-28 21:15:42 -0700234{
235 send_IPI_mask_sequence(cpumask, vector);
236}
237
Mike Travisbcda0162008-12-16 17:33:59 -0800238static void physflat_send_IPI_mask_allbutself(const struct cpumask *cpumask,
Mike Travise7986732008-12-16 17:33:52 -0800239 int vector)
240{
241 send_IPI_mask_allbutself(cpumask, vector);
242}
243
Andi Kleenf8d31192005-07-28 21:15:42 -0700244static void physflat_send_IPI_allbutself(int vector)
245{
Mike Travisbcda0162008-12-16 17:33:59 -0800246 send_IPI_mask_allbutself(cpu_online_mask, vector);
Andi Kleenf8d31192005-07-28 21:15:42 -0700247}
248
249static void physflat_send_IPI_all(int vector)
250{
Mike Travisbcda0162008-12-16 17:33:59 -0800251 physflat_send_IPI_mask(cpu_online_mask, vector);
Andi Kleenf8d31192005-07-28 21:15:42 -0700252}
253
Mike Travisbcda0162008-12-16 17:33:59 -0800254static unsigned int physflat_cpu_mask_to_apicid(const struct cpumask *cpumask)
Andi Kleenf8d31192005-07-28 21:15:42 -0700255{
256 int cpu;
257
258 /*
259 * We're using fixed IRQ delivery, can only return one phys APIC ID.
260 * May as well be the first.
261 */
Mike Travisbcda0162008-12-16 17:33:59 -0800262 cpu = cpumask_first(cpumask);
Mike Travis1bd9d6b2008-07-18 18:11:30 -0700263 if ((unsigned)cpu < nr_cpu_ids)
Mike Travis71fff5e2007-10-19 20:35:03 +0200264 return per_cpu(x86_cpu_to_apicid, cpu);
Andi Kleenf8d31192005-07-28 21:15:42 -0700265 else
266 return BAD_APICID;
267}
268
Mike Travis6eeb7c52008-12-16 17:33:55 -0800269static unsigned int
270physflat_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
271 const struct cpumask *andmask)
Mike Travis95d313c2008-12-16 17:33:54 -0800272{
273 int cpu;
274
275 /*
276 * We're using fixed IRQ delivery, can only return one phys APIC ID.
277 * May as well be the first.
278 */
Mike Travisa775a382008-12-17 15:21:39 -0800279 for_each_cpu_and(cpu, cpumask, andmask)
280 if (cpumask_test_cpu(cpu, cpu_online_mask))
281 break;
Mike Travis6eeb7c52008-12-16 17:33:55 -0800282 if (cpu < nr_cpu_ids)
283 return per_cpu(x86_cpu_to_apicid, cpu);
Mike Travis95d313c2008-12-16 17:33:54 -0800284 return BAD_APICID;
285}
286
Andi Kleenf8d31192005-07-28 21:15:42 -0700287struct genapic apic_physflat = {
288 .name = "physical flat",
Yinghai Lu1b9b89e2008-07-21 22:08:21 -0700289 .acpi_madt_oem_check = physflat_acpi_madt_oem_check,
Ashok Rajc1a71a12005-09-12 18:49:24 +0200290 .int_delivery_mode = dest_Fixed,
Andi Kleenf8d31192005-07-28 21:15:42 -0700291 .int_dest_mode = (APIC_DEST_PHYSICAL != 0),
Andi Kleenf8d31192005-07-28 21:15:42 -0700292 .target_cpus = physflat_target_cpus,
Eric W. Biedermanc7111c132006-10-08 07:47:55 -0600293 .vector_allocation_domain = physflat_vector_allocation_domain,
Andi Kleenf8d31192005-07-28 21:15:42 -0700294 .apic_id_registered = flat_apic_id_registered,
295 .init_apic_ldr = flat_init_apic_ldr,/*not needed, but shouldn't hurt*/
296 .send_IPI_all = physflat_send_IPI_all,
297 .send_IPI_allbutself = physflat_send_IPI_allbutself,
298 .send_IPI_mask = physflat_send_IPI_mask,
Mike Travise7986732008-12-16 17:33:52 -0800299 .send_IPI_mask_allbutself = physflat_send_IPI_mask_allbutself,
Suresh Siddhacff73a62008-07-10 11:16:53 -0700300 .send_IPI_self = apic_send_IPI_self,
Andi Kleenf8d31192005-07-28 21:15:42 -0700301 .cpu_mask_to_apicid = physflat_cpu_mask_to_apicid,
Mike Travis95d313c2008-12-16 17:33:54 -0800302 .cpu_mask_to_apicid_and = physflat_cpu_mask_to_apicid_and,
Andi Kleenf8d31192005-07-28 21:15:42 -0700303 .phys_pkg_id = phys_pkg_id,
Yinghai Luf910a9d2008-07-12 01:01:20 -0700304 .get_apic_id = get_apic_id,
305 .set_apic_id = set_apic_id,
306 .apic_id_mask = (0xFFu<<24),
Andi Kleenf8d31192005-07-28 21:15:42 -0700307};