Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 2 | |
Thomas Gleixner | 521b82f | 2019-07-22 20:47:11 +0200 | [diff] [blame] | 3 | #include <linux/cpumask.h> |
| 4 | #include <linux/acpi.h> |
| 5 | |
Thomas Gleixner | c94f071 | 2019-07-22 20:47:14 +0200 | [diff] [blame] | 6 | #include "local.h" |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 7 | |
Suresh Siddha | ef1f87a | 2009-02-21 14:23:21 -0800 | [diff] [blame] | 8 | int x2apic_phys; |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 9 | |
Suresh Siddha | 1a8880a | 2011-05-20 17:51:20 -0700 | [diff] [blame] | 10 | static struct apic apic_x2apic_phys; |
David Woodhouse | 26573a9 | 2020-10-24 22:35:01 +0100 | [diff] [blame^] | 11 | static u32 x2apic_max_apicid __ro_after_init; |
| 12 | |
| 13 | void __init x2apic_set_max_apicid(u32 apicid) |
| 14 | { |
| 15 | x2apic_max_apicid = apicid; |
| 16 | } |
Suresh Siddha | 1a8880a | 2011-05-20 17:51:20 -0700 | [diff] [blame] | 17 | |
Dou Liyang | afed7d1 | 2018-01-17 11:45:43 +0800 | [diff] [blame] | 18 | static int __init set_x2apic_phys_mode(char *arg) |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 19 | { |
| 20 | x2apic_phys = 1; |
| 21 | return 0; |
| 22 | } |
| 23 | early_param("x2apic_phys", set_x2apic_phys_mode); |
| 24 | |
Stoney Wang | cb214ed | 2013-02-07 10:53:02 -0800 | [diff] [blame] | 25 | static bool x2apic_fadt_phys(void) |
| 26 | { |
Jan Kiszka | 781674f | 2015-05-04 17:58:00 +0200 | [diff] [blame] | 27 | #ifdef CONFIG_ACPI |
Stoney Wang | cb214ed | 2013-02-07 10:53:02 -0800 | [diff] [blame] | 28 | if ((acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) && |
| 29 | (acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) { |
| 30 | printk(KERN_DEBUG "System requires x2apic physical mode\n"); |
| 31 | return true; |
| 32 | } |
Jan Kiszka | 781674f | 2015-05-04 17:58:00 +0200 | [diff] [blame] | 33 | #endif |
Stoney Wang | cb214ed | 2013-02-07 10:53:02 -0800 | [diff] [blame] | 34 | return false; |
| 35 | } |
| 36 | |
Marcin Slusarz | 3cfba08 | 2008-10-12 11:46:23 +0200 | [diff] [blame] | 37 | static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id) |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 38 | { |
Stoney Wang | cb214ed | 2013-02-07 10:53:02 -0800 | [diff] [blame] | 39 | return x2apic_enabled() && (x2apic_phys || x2apic_fadt_phys()); |
Yinghai Lu | 1b9b89e | 2008-07-21 22:08:21 -0700 | [diff] [blame] | 40 | } |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 41 | |
Thomas Gleixner | f2bffe8 | 2015-11-04 22:57:04 +0000 | [diff] [blame] | 42 | static void x2apic_send_IPI(int cpu, int vector) |
| 43 | { |
| 44 | u32 dest = per_cpu(x86_cpu_to_apicid, cpu); |
| 45 | |
| 46 | x2apic_wrmsr_fence(); |
| 47 | __x2apic_send_IPI_dest(dest, vector, APIC_DEST_PHYSICAL); |
| 48 | } |
| 49 | |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 50 | static void |
Suresh Siddha | a27d0b5 | 2011-05-19 16:45:47 -0700 | [diff] [blame] | 51 | __x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest) |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 52 | { |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 53 | unsigned long query_cpu; |
Suresh Siddha | a27d0b5 | 2011-05-19 16:45:47 -0700 | [diff] [blame] | 54 | unsigned long this_cpu; |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 55 | unsigned long flags; |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 56 | |
Suresh Siddha | ce4e240 | 2009-03-17 10:16:54 -0800 | [diff] [blame] | 57 | x2apic_wrmsr_fence(); |
| 58 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 59 | local_irq_save(flags); |
Suresh Siddha | a27d0b5 | 2011-05-19 16:45:47 -0700 | [diff] [blame] | 60 | |
| 61 | this_cpu = smp_processor_id(); |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 62 | for_each_cpu(query_cpu, mask) { |
Suresh Siddha | a27d0b5 | 2011-05-19 16:45:47 -0700 | [diff] [blame] | 63 | if (apic_dest == APIC_DEST_ALLBUT && this_cpu == query_cpu) |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 64 | continue; |
| 65 | __x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu), |
| 66 | vector, APIC_DEST_PHYSICAL); |
| 67 | } |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 68 | local_irq_restore(flags); |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Suresh Siddha | a27d0b5 | 2011-05-19 16:45:47 -0700 | [diff] [blame] | 71 | static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector) |
| 72 | { |
| 73 | __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC); |
| 74 | } |
| 75 | |
| 76 | static void |
| 77 | x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector) |
| 78 | { |
| 79 | __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLBUT); |
| 80 | } |
| 81 | |
| 82 | static void x2apic_send_IPI_allbutself(int vector) |
| 83 | { |
Thomas Gleixner | 43931d3 | 2019-07-22 20:47:30 +0200 | [diff] [blame] | 84 | __x2apic_send_IPI_shorthand(vector, APIC_DEST_ALLBUT); |
Suresh Siddha | a27d0b5 | 2011-05-19 16:45:47 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 87 | static void x2apic_send_IPI_all(int vector) |
| 88 | { |
Thomas Gleixner | 43931d3 | 2019-07-22 20:47:30 +0200 | [diff] [blame] | 89 | __x2apic_send_IPI_shorthand(vector, APIC_DEST_ALLINC); |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Jaswinder Singh Rajput | 4d08d97 | 2008-12-29 22:11:40 +0530 | [diff] [blame] | 92 | static void init_x2apic_ldr(void) |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 93 | { |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Suresh Siddha | 9ebd680 | 2011-05-19 16:45:46 -0700 | [diff] [blame] | 96 | static int x2apic_phys_probe(void) |
| 97 | { |
Stoney Wang | cb214ed | 2013-02-07 10:53:02 -0800 | [diff] [blame] | 98 | if (x2apic_mode && (x2apic_phys || x2apic_fadt_phys())) |
Suresh Siddha | 9ebd680 | 2011-05-19 16:45:46 -0700 | [diff] [blame] | 99 | return 1; |
| 100 | |
| 101 | return apic == &apic_x2apic_phys; |
| 102 | } |
| 103 | |
Thomas Gleixner | 981c2ea | 2017-09-13 23:29:16 +0200 | [diff] [blame] | 104 | /* Common x2apic functions, also used by x2apic_cluster */ |
Li RongQing | a774635 | 2018-04-10 09:16:06 +0800 | [diff] [blame] | 105 | int x2apic_apic_id_valid(u32 apicid) |
Thomas Gleixner | 981c2ea | 2017-09-13 23:29:16 +0200 | [diff] [blame] | 106 | { |
David Woodhouse | 26573a9 | 2020-10-24 22:35:01 +0100 | [diff] [blame^] | 107 | if (x2apic_max_apicid && apicid > x2apic_max_apicid) |
| 108 | return 0; |
| 109 | |
Thomas Gleixner | 981c2ea | 2017-09-13 23:29:16 +0200 | [diff] [blame] | 110 | return 1; |
| 111 | } |
| 112 | |
| 113 | int x2apic_apic_id_registered(void) |
| 114 | { |
| 115 | return 1; |
| 116 | } |
| 117 | |
| 118 | void __x2apic_send_IPI_dest(unsigned int apicid, int vector, unsigned int dest) |
| 119 | { |
| 120 | unsigned long cfg = __prepare_ICR(0, vector, dest); |
| 121 | native_x2apic_icr_write(cfg, apicid); |
| 122 | } |
| 123 | |
Thomas Gleixner | 43931d3 | 2019-07-22 20:47:30 +0200 | [diff] [blame] | 124 | void __x2apic_send_IPI_shorthand(int vector, u32 which) |
| 125 | { |
| 126 | unsigned long cfg = __prepare_ICR(which, vector, 0); |
| 127 | |
| 128 | x2apic_wrmsr_fence(); |
| 129 | native_x2apic_icr_write(cfg, 0); |
| 130 | } |
| 131 | |
Thomas Gleixner | 981c2ea | 2017-09-13 23:29:16 +0200 | [diff] [blame] | 132 | unsigned int x2apic_get_apic_id(unsigned long id) |
| 133 | { |
| 134 | return id; |
| 135 | } |
| 136 | |
Thomas Gleixner | 727657e | 2017-09-13 23:29:17 +0200 | [diff] [blame] | 137 | u32 x2apic_set_apic_id(unsigned int id) |
Thomas Gleixner | 981c2ea | 2017-09-13 23:29:16 +0200 | [diff] [blame] | 138 | { |
| 139 | return id; |
| 140 | } |
| 141 | |
| 142 | int x2apic_phys_pkg_id(int initial_apicid, int index_msb) |
| 143 | { |
| 144 | return initial_apicid >> index_msb; |
| 145 | } |
| 146 | |
| 147 | void x2apic_send_IPI_self(int vector) |
| 148 | { |
| 149 | apic_write(APIC_SELF_IPI, vector); |
| 150 | } |
| 151 | |
Kees Cook | 404f6aa | 2016-08-08 16:29:06 -0700 | [diff] [blame] | 152 | static struct apic apic_x2apic_phys __ro_after_init = { |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 153 | |
| 154 | .name = "physical x2apic", |
Suresh Siddha | 9ebd680 | 2011-05-19 16:45:46 -0700 | [diff] [blame] | 155 | .probe = x2apic_phys_probe, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 156 | .acpi_madt_oem_check = x2apic_acpi_madt_oem_check, |
Steffen Persvold | b7157ac | 2012-03-16 20:25:35 +0100 | [diff] [blame] | 157 | .apic_id_valid = x2apic_apic_id_valid, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 158 | .apic_id_registered = x2apic_apic_id_registered, |
| 159 | |
Ingo Molnar | f8987a1 | 2009-01-28 04:02:31 +0100 | [diff] [blame] | 160 | .irq_delivery_mode = dest_Fixed, |
Ingo Molnar | 0b06e73 | 2009-01-28 05:13:04 +0100 | [diff] [blame] | 161 | .irq_dest_mode = 0, /* physical */ |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 162 | |
Ingo Molnar | 08125d3 | 2009-01-28 05:08:44 +0100 | [diff] [blame] | 163 | .disable_esr = 0, |
Ingo Molnar | bdb1a9b | 2009-01-28 05:29:25 +0100 | [diff] [blame] | 164 | .dest_logical = 0, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 165 | .check_apicid_used = NULL, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 166 | |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 167 | .init_apic_ldr = init_x2apic_ldr, |
| 168 | |
| 169 | .ioapic_phys_id_map = NULL, |
| 170 | .setup_apic_routing = NULL, |
Ingo Molnar | a21769a4 | 2009-01-28 06:50:47 +0100 | [diff] [blame] | 171 | .cpu_present_to_apicid = default_cpu_present_to_apicid, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 172 | .apicid_to_cpu_present = NULL, |
Ingo Molnar | a27a621 | 2009-01-28 12:43:18 +0100 | [diff] [blame] | 173 | .check_phys_apicid_present = default_check_phys_apicid_present, |
Ingo Molnar | d4c9a9f | 2009-01-28 13:31:22 +0100 | [diff] [blame] | 174 | .phys_pkg_id = x2apic_phys_pkg_id, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 175 | |
Cyrill Gorcunov | 79deb8e | 2011-05-19 16:45:50 -0700 | [diff] [blame] | 176 | .get_apic_id = x2apic_get_apic_id, |
| 177 | .set_apic_id = x2apic_set_apic_id, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 178 | |
Thomas Gleixner | 9f9e3bb | 2017-09-13 23:29:37 +0200 | [diff] [blame] | 179 | .calc_dest_apicid = apic_default_calc_apicid, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 180 | |
Thomas Gleixner | f2bffe8 | 2015-11-04 22:57:04 +0000 | [diff] [blame] | 181 | .send_IPI = x2apic_send_IPI, |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 182 | .send_IPI_mask = x2apic_send_IPI_mask, |
| 183 | .send_IPI_mask_allbutself = x2apic_send_IPI_mask_allbutself, |
| 184 | .send_IPI_allbutself = x2apic_send_IPI_allbutself, |
| 185 | .send_IPI_all = x2apic_send_IPI_all, |
| 186 | .send_IPI_self = x2apic_send_IPI_self, |
| 187 | |
Ingo Molnar | 05c155c | 2009-01-28 02:37:01 +0100 | [diff] [blame] | 188 | .inquire_remote_apic = NULL, |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 189 | |
| 190 | .read = native_apic_msr_read, |
| 191 | .write = native_apic_msr_write, |
Michael S. Tsirkin | 0ab711a | 2012-05-16 19:03:58 +0300 | [diff] [blame] | 192 | .eoi_write = native_apic_msr_eoi_write, |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 193 | .icr_read = native_x2apic_icr_read, |
| 194 | .icr_write = native_x2apic_icr_write, |
| 195 | .wait_icr_idle = native_x2apic_wait_icr_idle, |
| 196 | .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle, |
Suresh Siddha | 2d9579a | 2008-07-10 11:16:59 -0700 | [diff] [blame] | 197 | }; |
Suresh Siddha | 107e0e0 | 2011-05-20 17:51:17 -0700 | [diff] [blame] | 198 | |
| 199 | apic_driver(apic_x2apic_phys); |