Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2004 James Cleverdon, IBM. |
| 3 | * Subject to the GNU Public License, v.2 |
| 4 | * |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 5 | * Flat APIC subarch code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 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 Kleen | f19cccf | 2007-05-02 19:27:21 +0200 | [diff] [blame] | 11 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #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 Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 18 | #include <linux/hardirq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/smp.h> |
| 20 | #include <asm/ipi.h> |
Jan Beulich | 00f1ea6 | 2007-05-02 19:27:04 +0200 | [diff] [blame] | 21 | #include <asm/genapic.h> |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 22 | #include <mach_apicdef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 24 | #ifdef CONFIG_ACPI |
| 25 | #include <acpi/acpi_bus.h> |
| 26 | #endif |
| 27 | |
| 28 | static int __init flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id) |
| 29 | { |
| 30 | return 1; |
| 31 | } |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | static cpumask_t flat_target_cpus(void) |
| 34 | { |
| 35 | return cpu_online_map; |
| 36 | } |
| 37 | |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 38 | static cpumask_t flat_vector_allocation_domain(int cpu) |
| 39 | { |
| 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 | */ |
| 48 | cpumask_t domain = { { [0] = APIC_ALL_CPUS, } }; |
| 49 | return domain; |
| 50 | } |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* |
| 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 | */ |
| 59 | static 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 Kleen | eddfb4e | 2005-09-12 18:49:23 +0200 | [diff] [blame] | 66 | apic_write(APIC_DFR, APIC_DFR_FLAT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | val = apic_read(APIC_LDR) & ~APIC_LDR_MASK; |
| 68 | val |= SET_APIC_LOGICAL_ID(id); |
Andi Kleen | eddfb4e | 2005-09-12 18:49:23 +0200 | [diff] [blame] | 69 | apic_write(APIC_LDR, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | static void flat_send_IPI_mask(cpumask_t cpumask, int vector) |
| 73 | { |
| 74 | unsigned long mask = cpus_addr(cpumask)[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | unsigned long flags; |
| 76 | |
Fernando Luis Vázquez Cao | 2b94ab2 | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 77 | local_irq_save(flags); |
Fernando Luis [** ISO-8859-1 charset **] VázquezCao | 9062d88 | 2007-05-02 19:27:18 +0200 | [diff] [blame] | 78 | __send_IPI_dest_field(mask, vector, APIC_DEST_LOGICAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | local_irq_restore(flags); |
| 80 | } |
| 81 | |
Ashok Raj | 884d9e4 | 2005-06-25 14:55:02 -0700 | [diff] [blame] | 82 | static void flat_send_IPI_allbutself(int vector) |
| 83 | { |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 84 | #ifdef CONFIG_HOTPLUG_CPU |
| 85 | int hotplug = 1; |
Ashok Raj | fdf26d9 | 2005-09-09 13:01:52 -0700 | [diff] [blame] | 86 | #else |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 87 | int hotplug = 0; |
Ashok Raj | fdf26d9 | 2005-09-09 13:01:52 -0700 | [diff] [blame] | 88 | #endif |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 89 | if (hotplug || vector == NMI_VECTOR) { |
| 90 | cpumask_t allbutme = cpu_online_map; |
| 91 | |
| 92 | cpu_clear(smp_processor_id(), allbutme); |
| 93 | |
| 94 | if (!cpus_empty(allbutme)) |
| 95 | flat_send_IPI_mask(allbutme, vector); |
| 96 | } else if (num_online_cpus() > 1) { |
| 97 | __send_IPI_shortcut(APIC_DEST_ALLBUT, vector,APIC_DEST_LOGICAL); |
| 98 | } |
Ashok Raj | 884d9e4 | 2005-06-25 14:55:02 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | static void flat_send_IPI_all(int vector) |
| 102 | { |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 103 | if (vector == NMI_VECTOR) |
| 104 | flat_send_IPI_mask(cpu_online_map, vector); |
| 105 | else |
| 106 | __send_IPI_shortcut(APIC_DEST_ALLINC, vector, APIC_DEST_LOGICAL); |
Ashok Raj | 884d9e4 | 2005-06-25 14:55:02 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Yinghai Lu | f910a9d | 2008-07-12 01:01:20 -0700 | [diff] [blame] | 109 | static unsigned int get_apic_id(unsigned long x) |
| 110 | { |
| 111 | unsigned int id; |
| 112 | |
| 113 | id = (((x)>>24) & 0xFFu); |
| 114 | return id; |
| 115 | } |
| 116 | |
| 117 | static unsigned long set_apic_id(unsigned int id) |
| 118 | { |
| 119 | unsigned long x; |
| 120 | |
| 121 | x = ((id & 0xFFu)<<24); |
| 122 | return x; |
| 123 | } |
| 124 | |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 125 | static unsigned int read_xapic_id(void) |
| 126 | { |
| 127 | unsigned int id; |
| 128 | |
Yinghai Lu | f910a9d | 2008-07-12 01:01:20 -0700 | [diff] [blame] | 129 | id = get_apic_id(apic_read(APIC_ID)); |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 130 | return id; |
| 131 | } |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | static int flat_apic_id_registered(void) |
| 134 | { |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 135 | return physid_isset(read_xapic_id(), phys_cpu_present_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | static unsigned int flat_cpu_mask_to_apicid(cpumask_t cpumask) |
| 139 | { |
| 140 | return cpus_addr(cpumask)[0] & APIC_ALL_CPUS; |
| 141 | } |
| 142 | |
| 143 | static unsigned int phys_pkg_id(int index_msb) |
| 144 | { |
ravikiran thirumalai | 0f4fdb7 | 2006-06-26 13:56:04 +0200 | [diff] [blame] | 145 | return hard_smp_processor_id() >> index_msb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | struct genapic apic_flat = { |
| 149 | .name = "flat", |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 150 | .acpi_madt_oem_check = flat_acpi_madt_oem_check, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | .int_delivery_mode = dest_LowestPrio, |
| 152 | .int_dest_mode = (APIC_DEST_LOGICAL != 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | .target_cpus = flat_target_cpus, |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 154 | .vector_allocation_domain = flat_vector_allocation_domain, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | .apic_id_registered = flat_apic_id_registered, |
| 156 | .init_apic_ldr = flat_init_apic_ldr, |
| 157 | .send_IPI_all = flat_send_IPI_all, |
| 158 | .send_IPI_allbutself = flat_send_IPI_allbutself, |
| 159 | .send_IPI_mask = flat_send_IPI_mask, |
Suresh Siddha | cff73a6 | 2008-07-10 11:16:53 -0700 | [diff] [blame] | 160 | .send_IPI_self = apic_send_IPI_self, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | .cpu_mask_to_apicid = flat_cpu_mask_to_apicid, |
| 162 | .phys_pkg_id = phys_pkg_id, |
Yinghai Lu | f910a9d | 2008-07-12 01:01:20 -0700 | [diff] [blame] | 163 | .get_apic_id = get_apic_id, |
| 164 | .set_apic_id = set_apic_id, |
| 165 | .apic_id_mask = (0xFFu<<24), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | }; |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 167 | |
| 168 | /* |
| 169 | * Physflat mode is used when there are more than 8 CPUs on a AMD system. |
| 170 | * We cannot use logical delivery in this case because the mask |
| 171 | * overflows, so use physical mode. |
| 172 | */ |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 173 | static int __init physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id) |
| 174 | { |
| 175 | #ifdef CONFIG_ACPI |
| 176 | /* |
| 177 | * Quirk: some x86_64 machines can only use physical APIC mode |
| 178 | * regardless of how many processors are present (x86_64 ES7000 |
| 179 | * is an example). |
| 180 | */ |
| 181 | if (acpi_gbl_FADT.header.revision > FADT2_REVISION_ID && |
Yinghai Lu | 02c1df1 | 2008-09-04 20:57:11 +0200 | [diff] [blame] | 182 | (acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) { |
| 183 | printk(KERN_DEBUG "system APIC only can use physical flat"); |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 184 | return 1; |
Yinghai Lu | 02c1df1 | 2008-09-04 20:57:11 +0200 | [diff] [blame] | 185 | } |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 186 | #endif |
| 187 | |
| 188 | return 0; |
| 189 | } |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 190 | |
| 191 | static cpumask_t physflat_target_cpus(void) |
| 192 | { |
Eric W. Biederman | 84f404f | 2006-10-21 18:37:02 +0200 | [diff] [blame] | 193 | return cpu_online_map; |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 196 | static cpumask_t physflat_vector_allocation_domain(int cpu) |
| 197 | { |
Akinobu Mita | 7281c96 | 2008-04-05 22:39:08 +0900 | [diff] [blame] | 198 | return cpumask_of_cpu(cpu); |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 199 | } |
| 200 | |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 201 | static void physflat_send_IPI_mask(cpumask_t cpumask, int vector) |
| 202 | { |
| 203 | send_IPI_mask_sequence(cpumask, vector); |
| 204 | } |
| 205 | |
| 206 | static void physflat_send_IPI_allbutself(int vector) |
| 207 | { |
| 208 | cpumask_t allbutme = cpu_online_map; |
Zwane Mwaikambo | 329d400 | 2006-01-11 22:43:09 +0100 | [diff] [blame] | 209 | |
| 210 | cpu_clear(smp_processor_id(), allbutme); |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 211 | physflat_send_IPI_mask(allbutme, vector); |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | static void physflat_send_IPI_all(int vector) |
| 215 | { |
| 216 | physflat_send_IPI_mask(cpu_online_map, vector); |
| 217 | } |
| 218 | |
| 219 | static unsigned int physflat_cpu_mask_to_apicid(cpumask_t cpumask) |
| 220 | { |
| 221 | int cpu; |
| 222 | |
| 223 | /* |
| 224 | * We're using fixed IRQ delivery, can only return one phys APIC ID. |
| 225 | * May as well be the first. |
| 226 | */ |
| 227 | cpu = first_cpu(cpumask); |
Mike Travis | 1bd9d6b | 2008-07-18 18:11:30 -0700 | [diff] [blame] | 228 | if ((unsigned)cpu < nr_cpu_ids) |
Mike Travis | 71fff5e | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 229 | return per_cpu(x86_cpu_to_apicid, cpu); |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 230 | else |
| 231 | return BAD_APICID; |
| 232 | } |
| 233 | |
| 234 | struct genapic apic_physflat = { |
| 235 | .name = "physical flat", |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 236 | .acpi_madt_oem_check = physflat_acpi_madt_oem_check, |
Ashok Raj | c1a71a1 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 237 | .int_delivery_mode = dest_Fixed, |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 238 | .int_dest_mode = (APIC_DEST_PHYSICAL != 0), |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 239 | .target_cpus = physflat_target_cpus, |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 240 | .vector_allocation_domain = physflat_vector_allocation_domain, |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 241 | .apic_id_registered = flat_apic_id_registered, |
| 242 | .init_apic_ldr = flat_init_apic_ldr,/*not needed, but shouldn't hurt*/ |
| 243 | .send_IPI_all = physflat_send_IPI_all, |
| 244 | .send_IPI_allbutself = physflat_send_IPI_allbutself, |
| 245 | .send_IPI_mask = physflat_send_IPI_mask, |
Suresh Siddha | cff73a6 | 2008-07-10 11:16:53 -0700 | [diff] [blame] | 246 | .send_IPI_self = apic_send_IPI_self, |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 247 | .cpu_mask_to_apicid = physflat_cpu_mask_to_apicid, |
| 248 | .phys_pkg_id = phys_pkg_id, |
Yinghai Lu | f910a9d | 2008-07-12 01:01:20 -0700 | [diff] [blame] | 249 | .get_apic_id = get_apic_id, |
| 250 | .set_apic_id = set_apic_id, |
| 251 | .apic_id_mask = (0xFFu<<24), |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 252 | }; |