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> |
Randy Dunlap | b18bf09 | 2011-05-23 10:43:00 -0700 | [diff] [blame] | 19 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/smp.h> |
Ingo Molnar | 7b6aa33 | 2009-02-17 13:58:15 +0100 | [diff] [blame] | 21 | #include <asm/apic.h> |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 22 | #include <asm/ipi.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 | |
Suresh Siddha | 1a8880a | 2011-05-20 17:51:20 -0700 | [diff] [blame] | 28 | static struct apic apic_physflat; |
| 29 | static struct apic apic_flat; |
| 30 | |
| 31 | struct apic __read_mostly *apic = &apic_flat; |
| 32 | EXPORT_SYMBOL_GPL(apic); |
| 33 | |
Marcin Slusarz | 983f91f | 2008-10-12 11:44:08 +0200 | [diff] [blame] | 34 | static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id) |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 35 | { |
| 36 | return 1; |
| 37 | } |
| 38 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 39 | static void flat_vector_allocation_domain(int cpu, struct cpumask *retmask) |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 40 | { |
| 41 | /* Careful. Some cpus do not strictly honor the set of cpus |
| 42 | * specified in the interrupt destination when using lowest |
| 43 | * priority interrupt delivery mode. |
| 44 | * |
| 45 | * In particular there was a hyperthreading cpu observed to |
| 46 | * deliver interrupts to the wrong hyperthread when only one |
| 47 | * hyperthread was specified in the interrupt desitination. |
| 48 | */ |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 49 | cpumask_clear(retmask); |
| 50 | cpumask_bits(retmask)[0] = APIC_ALL_CPUS; |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 51 | } |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /* |
| 54 | * Set up the logical destination ID. |
| 55 | * |
| 56 | * Intel recommends to set DFR, LDR and TPR before enabling |
| 57 | * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel |
| 58 | * document number 292116). So here it goes... |
| 59 | */ |
Daniel J Blueman | 9a0ebfb | 2011-12-05 16:20:36 +0800 | [diff] [blame] | 60 | void flat_init_apic_ldr(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | unsigned long val; |
| 63 | unsigned long num, id; |
| 64 | |
| 65 | num = smp_processor_id(); |
| 66 | id = 1UL << num; |
Andi Kleen | eddfb4e | 2005-09-12 18:49:23 +0200 | [diff] [blame] | 67 | apic_write(APIC_DFR, APIC_DFR_FLAT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | val = apic_read(APIC_LDR) & ~APIC_LDR_MASK; |
| 69 | val |= SET_APIC_LOGICAL_ID(id); |
Andi Kleen | eddfb4e | 2005-09-12 18:49:23 +0200 | [diff] [blame] | 70 | apic_write(APIC_LDR, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 73 | static inline void _flat_send_IPI_mask(unsigned long mask, int vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
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); |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 78 | __default_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 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 82 | static void flat_send_IPI_mask(const struct cpumask *cpumask, int vector) |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 83 | { |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 84 | unsigned long mask = cpumask_bits(cpumask)[0]; |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 85 | |
| 86 | _flat_send_IPI_mask(mask, vector); |
| 87 | } |
| 88 | |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 89 | static void |
Alexander Gordeev | 49d0c7a | 2012-06-05 13:23:15 +0200 | [diff] [blame] | 90 | flat_send_IPI_mask_allbutself(const struct cpumask *cpumask, int vector) |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 91 | { |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 92 | unsigned long mask = cpumask_bits(cpumask)[0]; |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 93 | int cpu = smp_processor_id(); |
| 94 | |
| 95 | if (cpu < BITS_PER_LONG) |
| 96 | clear_bit(cpu, &mask); |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 97 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 98 | _flat_send_IPI_mask(mask, vector); |
| 99 | } |
| 100 | |
Ashok Raj | 884d9e4 | 2005-06-25 14:55:02 -0700 | [diff] [blame] | 101 | static void flat_send_IPI_allbutself(int vector) |
| 102 | { |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 103 | int cpu = smp_processor_id(); |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 104 | #ifdef CONFIG_HOTPLUG_CPU |
| 105 | int hotplug = 1; |
Ashok Raj | fdf26d9 | 2005-09-09 13:01:52 -0700 | [diff] [blame] | 106 | #else |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 107 | int hotplug = 0; |
Ashok Raj | fdf26d9 | 2005-09-09 13:01:52 -0700 | [diff] [blame] | 108 | #endif |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 109 | if (hotplug || vector == NMI_VECTOR) { |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 110 | if (!cpumask_equal(cpu_online_mask, cpumask_of(cpu))) { |
| 111 | unsigned long mask = cpumask_bits(cpu_online_mask)[0]; |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 112 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 113 | if (cpu < BITS_PER_LONG) |
| 114 | clear_bit(cpu, &mask); |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 115 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 116 | _flat_send_IPI_mask(mask, vector); |
| 117 | } |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 118 | } else if (num_online_cpus() > 1) { |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 119 | __default_send_IPI_shortcut(APIC_DEST_ALLBUT, |
| 120 | vector, apic->dest_logical); |
Keith Owens | e77deac | 2006-06-26 13:59:56 +0200 | [diff] [blame] | 121 | } |
Ashok Raj | 884d9e4 | 2005-06-25 14:55:02 -0700 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static void flat_send_IPI_all(int vector) |
| 125 | { |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 126 | if (vector == NMI_VECTOR) { |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 127 | flat_send_IPI_mask(cpu_online_mask, vector); |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 128 | } else { |
| 129 | __default_send_IPI_shortcut(APIC_DEST_ALLINC, |
| 130 | vector, apic->dest_logical); |
| 131 | } |
Ashok Raj | 884d9e4 | 2005-06-25 14:55:02 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Ingo Molnar | ca6c8ed | 2009-01-28 14:08:38 +0100 | [diff] [blame] | 134 | static unsigned int flat_get_apic_id(unsigned long x) |
Yinghai Lu | f910a9d | 2008-07-12 01:01:20 -0700 | [diff] [blame] | 135 | { |
| 136 | unsigned int id; |
| 137 | |
| 138 | id = (((x)>>24) & 0xFFu); |
Ingo Molnar | ca6c8ed | 2009-01-28 14:08:38 +0100 | [diff] [blame] | 139 | |
Yinghai Lu | f910a9d | 2008-07-12 01:01:20 -0700 | [diff] [blame] | 140 | return id; |
| 141 | } |
| 142 | |
| 143 | static unsigned long set_apic_id(unsigned int id) |
| 144 | { |
| 145 | unsigned long x; |
| 146 | |
| 147 | x = ((id & 0xFFu)<<24); |
| 148 | return x; |
| 149 | } |
| 150 | |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 151 | static unsigned int read_xapic_id(void) |
| 152 | { |
| 153 | unsigned int id; |
| 154 | |
Ingo Molnar | ca6c8ed | 2009-01-28 14:08:38 +0100 | [diff] [blame] | 155 | id = flat_get_apic_id(apic_read(APIC_ID)); |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 156 | return id; |
| 157 | } |
| 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | static int flat_apic_id_registered(void) |
| 160 | { |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 161 | return physid_isset(read_xapic_id(), phys_cpu_present_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Ingo Molnar | d4c9a9f | 2009-01-28 13:31:22 +0100 | [diff] [blame] | 164 | static int flat_phys_pkg_id(int initial_apic_id, int index_msb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
Yinghai Lu | 2759c32 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 166 | return initial_apic_id >> index_msb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Yinghai Lu | e8524b2 | 2011-12-21 17:45:15 -0800 | [diff] [blame] | 169 | static int flat_probe(void) |
| 170 | { |
| 171 | return 1; |
| 172 | } |
| 173 | |
Suresh Siddha | 1a8880a | 2011-05-20 17:51:20 -0700 | [diff] [blame] | 174 | static struct apic apic_flat = { |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 175 | .name = "flat", |
Yinghai Lu | e8524b2 | 2011-12-21 17:45:15 -0800 | [diff] [blame] | 176 | .probe = flat_probe, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 177 | .acpi_madt_oem_check = flat_acpi_madt_oem_check, |
Daniel J Blueman | fa63030 | 2012-03-14 15:17:34 +0800 | [diff] [blame] | 178 | .apic_id_valid = default_apic_id_valid, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 179 | .apic_id_registered = flat_apic_id_registered, |
| 180 | |
Ingo Molnar | f8987a1 | 2009-01-28 04:02:31 +0100 | [diff] [blame] | 181 | .irq_delivery_mode = dest_LowestPrio, |
Ingo Molnar | 0b06e73 | 2009-01-28 05:13:04 +0100 | [diff] [blame] | 182 | .irq_dest_mode = 1, /* logical */ |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 183 | |
Alexander Gordeev | bf721d3 | 2012-06-05 13:23:29 +0200 | [diff] [blame^] | 184 | .target_cpus = online_target_cpus, |
Ingo Molnar | 08125d3 | 2009-01-28 05:08:44 +0100 | [diff] [blame] | 185 | .disable_esr = 0, |
Ingo Molnar | bdb1a9b | 2009-01-28 05:29:25 +0100 | [diff] [blame] | 186 | .dest_logical = APIC_DEST_LOGICAL, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 187 | .check_apicid_used = NULL, |
| 188 | .check_apicid_present = NULL, |
| 189 | |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 190 | .vector_allocation_domain = flat_vector_allocation_domain, |
| 191 | .init_apic_ldr = flat_init_apic_ldr, |
| 192 | |
| 193 | .ioapic_phys_id_map = NULL, |
| 194 | .setup_apic_routing = NULL, |
| 195 | .multi_timer_check = NULL, |
Ingo Molnar | a21769a4 | 2009-01-28 06:50:47 +0100 | [diff] [blame] | 196 | .cpu_present_to_apicid = default_cpu_present_to_apicid, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 197 | .apicid_to_cpu_present = NULL, |
| 198 | .setup_portio_remap = NULL, |
Ingo Molnar | a27a621 | 2009-01-28 12:43:18 +0100 | [diff] [blame] | 199 | .check_phys_apicid_present = default_check_phys_apicid_present, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 200 | .enable_apic_mode = NULL, |
Ingo Molnar | d4c9a9f | 2009-01-28 13:31:22 +0100 | [diff] [blame] | 201 | .phys_pkg_id = flat_phys_pkg_id, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 202 | .mps_oem_check = NULL, |
| 203 | |
Ingo Molnar | ca6c8ed | 2009-01-28 14:08:38 +0100 | [diff] [blame] | 204 | .get_apic_id = flat_get_apic_id, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 205 | .set_apic_id = set_apic_id, |
| 206 | .apic_id_mask = 0xFFu << 24, |
| 207 | |
Yinghai Lu | f56e503 | 2009-03-24 14:16:30 -0700 | [diff] [blame] | 208 | .cpu_mask_to_apicid = default_cpu_mask_to_apicid, |
| 209 | .cpu_mask_to_apicid_and = default_cpu_mask_to_apicid_and, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 210 | |
| 211 | .send_IPI_mask = flat_send_IPI_mask, |
| 212 | .send_IPI_mask_allbutself = flat_send_IPI_mask_allbutself, |
| 213 | .send_IPI_allbutself = flat_send_IPI_allbutself, |
| 214 | .send_IPI_all = flat_send_IPI_all, |
| 215 | .send_IPI_self = apic_send_IPI_self, |
| 216 | |
Ingo Molnar | abfa584 | 2009-01-28 16:15:16 +0100 | [diff] [blame] | 217 | .trampoline_phys_low = DEFAULT_TRAMPOLINE_PHYS_LOW, |
| 218 | .trampoline_phys_high = DEFAULT_TRAMPOLINE_PHYS_HIGH, |
Ingo Molnar | f2f05ee | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 219 | .wait_for_init_deassert = NULL, |
| 220 | .smp_callin_clear_local_apic = NULL, |
Yinghai Lu | 08d63b1 | 2009-04-08 08:00:01 -0700 | [diff] [blame] | 221 | .inquire_remote_apic = default_inquire_remote_apic, |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 222 | |
| 223 | .read = native_apic_mem_read, |
| 224 | .write = native_apic_mem_write, |
Michael S. Tsirkin | 2a43195 | 2012-05-16 19:03:52 +0300 | [diff] [blame] | 225 | .eoi_write = native_apic_mem_write, |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 226 | .icr_read = native_apic_icr_read, |
| 227 | .icr_write = native_apic_icr_write, |
| 228 | .wait_icr_idle = native_apic_wait_icr_idle, |
| 229 | .safe_wait_icr_idle = native_safe_apic_wait_icr_idle, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | }; |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 231 | |
| 232 | /* |
Jasper Spaans | e34b700 | 2009-11-20 14:20:05 +0100 | [diff] [blame] | 233 | * Physflat mode is used when there are more than 8 CPUs on a system. |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 234 | * We cannot use logical delivery in this case because the mask |
| 235 | * overflows, so use physical mode. |
| 236 | */ |
Marcin Slusarz | fae17216 | 2008-10-12 11:44:09 +0200 | [diff] [blame] | 237 | static int physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id) |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 238 | { |
| 239 | #ifdef CONFIG_ACPI |
| 240 | /* |
| 241 | * Quirk: some x86_64 machines can only use physical APIC mode |
| 242 | * regardless of how many processors are present (x86_64 ES7000 |
| 243 | * is an example). |
| 244 | */ |
Yinghai Lu | 61fe91e | 2009-05-09 23:47:42 -0700 | [diff] [blame] | 245 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && |
Yinghai Lu | 02c1df1 | 2008-09-04 20:57:11 +0200 | [diff] [blame] | 246 | (acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) { |
| 247 | printk(KERN_DEBUG "system APIC only can use physical flat"); |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 248 | return 1; |
Yinghai Lu | 02c1df1 | 2008-09-04 20:57:11 +0200 | [diff] [blame] | 249 | } |
Suresh Siddha | dfea91d | 2010-01-18 12:10:48 -0800 | [diff] [blame] | 250 | |
| 251 | if (!strncmp(oem_id, "IBM", 3) && !strncmp(oem_table_id, "EXA", 3)) { |
| 252 | printk(KERN_DEBUG "IBM Summit detected, will use apic physical"); |
| 253 | return 1; |
| 254 | } |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 255 | #endif |
| 256 | |
| 257 | return 0; |
| 258 | } |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 259 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 260 | static void physflat_vector_allocation_domain(int cpu, struct cpumask *retmask) |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 261 | { |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 262 | cpumask_clear(retmask); |
| 263 | cpumask_set_cpu(cpu, retmask); |
Eric W. Biederman | c7111c13 | 2006-10-08 07:47:55 -0600 | [diff] [blame] | 264 | } |
| 265 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 266 | static void physflat_send_IPI_mask(const struct cpumask *cpumask, int vector) |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 267 | { |
Yinghai Lu | 43f3989 | 2009-01-29 19:31:49 -0800 | [diff] [blame] | 268 | default_send_IPI_mask_sequence_phys(cpumask, vector); |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 269 | } |
| 270 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 271 | static void physflat_send_IPI_mask_allbutself(const struct cpumask *cpumask, |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 272 | int vector) |
| 273 | { |
Yinghai Lu | 43f3989 | 2009-01-29 19:31:49 -0800 | [diff] [blame] | 274 | default_send_IPI_mask_allbutself_phys(cpumask, vector); |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 275 | } |
| 276 | |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 277 | static void physflat_send_IPI_allbutself(int vector) |
| 278 | { |
Yinghai Lu | 43f3989 | 2009-01-29 19:31:49 -0800 | [diff] [blame] | 279 | default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector); |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | static void physflat_send_IPI_all(int vector) |
| 283 | { |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 284 | physflat_send_IPI_mask(cpu_online_mask, vector); |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 287 | static unsigned int physflat_cpu_mask_to_apicid(const struct cpumask *cpumask) |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 288 | { |
| 289 | int cpu; |
| 290 | |
| 291 | /* |
| 292 | * We're using fixed IRQ delivery, can only return one phys APIC ID. |
| 293 | * May as well be the first. |
| 294 | */ |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 295 | cpu = cpumask_first(cpumask); |
Mike Travis | 1bd9d6b | 2008-07-18 18:11:30 -0700 | [diff] [blame] | 296 | if ((unsigned)cpu < nr_cpu_ids) |
Mike Travis | 71fff5e | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 297 | return per_cpu(x86_cpu_to_apicid, cpu); |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 298 | else |
| 299 | return BAD_APICID; |
| 300 | } |
| 301 | |
Mike Travis | 6eeb7c5 | 2008-12-16 17:33:55 -0800 | [diff] [blame] | 302 | static unsigned int |
| 303 | physflat_cpu_mask_to_apicid_and(const struct cpumask *cpumask, |
| 304 | const struct cpumask *andmask) |
Mike Travis | 95d313c | 2008-12-16 17:33:54 -0800 | [diff] [blame] | 305 | { |
| 306 | int cpu; |
| 307 | |
| 308 | /* |
| 309 | * We're using fixed IRQ delivery, can only return one phys APIC ID. |
| 310 | * May as well be the first. |
| 311 | */ |
Ingo Molnar | debccb3 | 2009-01-28 15:20:18 +0100 | [diff] [blame] | 312 | for_each_cpu_and(cpu, cpumask, andmask) { |
Mike Travis | a775a38 | 2008-12-17 15:21:39 -0800 | [diff] [blame] | 313 | if (cpumask_test_cpu(cpu, cpu_online_mask)) |
| 314 | break; |
Ingo Molnar | debccb3 | 2009-01-28 15:20:18 +0100 | [diff] [blame] | 315 | } |
Suresh Siddha | 18374d8 | 2009-12-17 18:29:46 -0800 | [diff] [blame] | 316 | return per_cpu(x86_cpu_to_apicid, cpu); |
Mike Travis | 95d313c | 2008-12-16 17:33:54 -0800 | [diff] [blame] | 317 | } |
| 318 | |
Suresh Siddha | 9ebd680 | 2011-05-19 16:45:46 -0700 | [diff] [blame] | 319 | static int physflat_probe(void) |
| 320 | { |
| 321 | if (apic == &apic_physflat || num_possible_cpus() > 8) |
| 322 | return 1; |
| 323 | |
| 324 | return 0; |
| 325 | } |
| 326 | |
Suresh Siddha | 1a8880a | 2011-05-20 17:51:20 -0700 | [diff] [blame] | 327 | static struct apic apic_physflat = { |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 328 | |
| 329 | .name = "physical flat", |
Suresh Siddha | 9ebd680 | 2011-05-19 16:45:46 -0700 | [diff] [blame] | 330 | .probe = physflat_probe, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 331 | .acpi_madt_oem_check = physflat_acpi_madt_oem_check, |
Daniel J Blueman | fa63030 | 2012-03-14 15:17:34 +0800 | [diff] [blame] | 332 | .apic_id_valid = default_apic_id_valid, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 333 | .apic_id_registered = flat_apic_id_registered, |
| 334 | |
Ingo Molnar | f8987a1 | 2009-01-28 04:02:31 +0100 | [diff] [blame] | 335 | .irq_delivery_mode = dest_Fixed, |
Ingo Molnar | 0b06e73 | 2009-01-28 05:13:04 +0100 | [diff] [blame] | 336 | .irq_dest_mode = 0, /* physical */ |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 337 | |
Alexander Gordeev | bf721d3 | 2012-06-05 13:23:29 +0200 | [diff] [blame^] | 338 | .target_cpus = online_target_cpus, |
Ingo Molnar | 08125d3 | 2009-01-28 05:08:44 +0100 | [diff] [blame] | 339 | .disable_esr = 0, |
Ingo Molnar | bdb1a9b | 2009-01-28 05:29:25 +0100 | [diff] [blame] | 340 | .dest_logical = 0, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 341 | .check_apicid_used = NULL, |
| 342 | .check_apicid_present = NULL, |
| 343 | |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 344 | .vector_allocation_domain = physflat_vector_allocation_domain, |
| 345 | /* not needed, but shouldn't hurt: */ |
| 346 | .init_apic_ldr = flat_init_apic_ldr, |
| 347 | |
| 348 | .ioapic_phys_id_map = NULL, |
| 349 | .setup_apic_routing = NULL, |
| 350 | .multi_timer_check = NULL, |
Ingo Molnar | a21769a4 | 2009-01-28 06:50:47 +0100 | [diff] [blame] | 351 | .cpu_present_to_apicid = default_cpu_present_to_apicid, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 352 | .apicid_to_cpu_present = NULL, |
| 353 | .setup_portio_remap = NULL, |
Ingo Molnar | a27a621 | 2009-01-28 12:43:18 +0100 | [diff] [blame] | 354 | .check_phys_apicid_present = default_check_phys_apicid_present, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 355 | .enable_apic_mode = NULL, |
Ingo Molnar | d4c9a9f | 2009-01-28 13:31:22 +0100 | [diff] [blame] | 356 | .phys_pkg_id = flat_phys_pkg_id, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 357 | .mps_oem_check = NULL, |
| 358 | |
Ingo Molnar | ca6c8ed | 2009-01-28 14:08:38 +0100 | [diff] [blame] | 359 | .get_apic_id = flat_get_apic_id, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 360 | .set_apic_id = set_apic_id, |
Ingo Molnar | 5b81272 | 2009-01-28 14:59:17 +0100 | [diff] [blame] | 361 | .apic_id_mask = 0xFFu << 24, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 362 | |
| 363 | .cpu_mask_to_apicid = physflat_cpu_mask_to_apicid, |
| 364 | .cpu_mask_to_apicid_and = physflat_cpu_mask_to_apicid_and, |
| 365 | |
| 366 | .send_IPI_mask = physflat_send_IPI_mask, |
| 367 | .send_IPI_mask_allbutself = physflat_send_IPI_mask_allbutself, |
| 368 | .send_IPI_allbutself = physflat_send_IPI_allbutself, |
| 369 | .send_IPI_all = physflat_send_IPI_all, |
| 370 | .send_IPI_self = apic_send_IPI_self, |
| 371 | |
Ingo Molnar | abfa584 | 2009-01-28 16:15:16 +0100 | [diff] [blame] | 372 | .trampoline_phys_low = DEFAULT_TRAMPOLINE_PHYS_LOW, |
| 373 | .trampoline_phys_high = DEFAULT_TRAMPOLINE_PHYS_HIGH, |
Ingo Molnar | 4c3e51e | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 374 | .wait_for_init_deassert = NULL, |
| 375 | .smp_callin_clear_local_apic = NULL, |
Yinghai Lu | 08d63b1 | 2009-04-08 08:00:01 -0700 | [diff] [blame] | 376 | .inquire_remote_apic = default_inquire_remote_apic, |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 377 | |
| 378 | .read = native_apic_mem_read, |
| 379 | .write = native_apic_mem_write, |
Michael S. Tsirkin | 2a43195 | 2012-05-16 19:03:52 +0300 | [diff] [blame] | 380 | .eoi_write = native_apic_mem_write, |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 381 | .icr_read = native_apic_icr_read, |
| 382 | .icr_write = native_apic_icr_write, |
| 383 | .wait_icr_idle = native_apic_wait_icr_idle, |
| 384 | .safe_wait_icr_idle = native_safe_apic_wait_icr_idle, |
Andi Kleen | f8d3119 | 2005-07-28 21:15:42 -0700 | [diff] [blame] | 385 | }; |
Suresh Siddha | 107e0e0 | 2011-05-20 17:51:17 -0700 | [diff] [blame] | 386 | |
| 387 | /* |
| 388 | * We need to check for physflat first, so this order is important. |
| 389 | */ |
| 390 | apic_drivers(apic_physflat, apic_flat); |