blob: 6bde05a86b4edde5b0ea91b4f088424a97c4a216 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yinghai Lu1b9b89e2008-07-21 22:08:21 -07002
Thomas Gleixner521b82f2019-07-22 20:47:11 +02003#include <linux/cpumask.h>
4#include <linux/acpi.h>
5
Thomas Gleixnerc94f0712019-07-22 20:47:14 +02006#include "local.h"
Suresh Siddha2d9579a2008-07-10 11:16:59 -07007
Suresh Siddhaef1f87a2009-02-21 14:23:21 -08008int x2apic_phys;
Yinghai Lu1b9b89e2008-07-21 22:08:21 -07009
Suresh Siddha1a8880a2011-05-20 17:51:20 -070010static struct apic apic_x2apic_phys;
David Woodhouse26573a92020-10-24 22:35:01 +010011static u32 x2apic_max_apicid __ro_after_init;
12
13void __init x2apic_set_max_apicid(u32 apicid)
14{
15 x2apic_max_apicid = apicid;
16}
Suresh Siddha1a8880a2011-05-20 17:51:20 -070017
Dou Liyangafed7d12018-01-17 11:45:43 +080018static int __init set_x2apic_phys_mode(char *arg)
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070019{
20 x2apic_phys = 1;
21 return 0;
22}
23early_param("x2apic_phys", set_x2apic_phys_mode);
24
Stoney Wangcb214ed2013-02-07 10:53:02 -080025static bool x2apic_fadt_phys(void)
26{
Jan Kiszka781674f2015-05-04 17:58:00 +020027#ifdef CONFIG_ACPI
Stoney Wangcb214ed2013-02-07 10:53:02 -080028 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 Kiszka781674f2015-05-04 17:58:00 +020033#endif
Stoney Wangcb214ed2013-02-07 10:53:02 -080034 return false;
35}
36
Marcin Slusarz3cfba082008-10-12 11:46:23 +020037static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070038{
Stoney Wangcb214ed2013-02-07 10:53:02 -080039 return x2apic_enabled() && (x2apic_phys || x2apic_fadt_phys());
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070040}
Suresh Siddha2d9579a2008-07-10 11:16:59 -070041
Thomas Gleixnerf2bffe82015-11-04 22:57:04 +000042static void x2apic_send_IPI(int cpu, int vector)
43{
44 u32 dest = per_cpu(x86_cpu_to_apicid, cpu);
45
Dave Hansen25a068b2020-03-05 09:47:08 -080046 /* x2apic MSRs are special and need a special fence: */
47 weak_wrmsr_fence();
Thomas Gleixnerf2bffe82015-11-04 22:57:04 +000048 __x2apic_send_IPI_dest(dest, vector, APIC_DEST_PHYSICAL);
49}
50
Ingo Molnardac5f412009-01-28 15:42:24 +010051static void
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070052__x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest)
Mike Travise7986732008-12-16 17:33:52 -080053{
Ingo Molnardac5f412009-01-28 15:42:24 +010054 unsigned long query_cpu;
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070055 unsigned long this_cpu;
Ingo Molnardac5f412009-01-28 15:42:24 +010056 unsigned long flags;
Mike Travise7986732008-12-16 17:33:52 -080057
Dave Hansen25a068b2020-03-05 09:47:08 -080058 /* x2apic MSRs are special and need a special fence: */
59 weak_wrmsr_fence();
Suresh Siddhace4e2402009-03-17 10:16:54 -080060
Mike Travise7986732008-12-16 17:33:52 -080061 local_irq_save(flags);
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070062
63 this_cpu = smp_processor_id();
Mike Travisbcda0162008-12-16 17:33:59 -080064 for_each_cpu(query_cpu, mask) {
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070065 if (apic_dest == APIC_DEST_ALLBUT && this_cpu == query_cpu)
Ingo Molnardac5f412009-01-28 15:42:24 +010066 continue;
67 __x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
68 vector, APIC_DEST_PHYSICAL);
69 }
Mike Travise7986732008-12-16 17:33:52 -080070 local_irq_restore(flags);
Suresh Siddha2d9579a2008-07-10 11:16:59 -070071}
72
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070073static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
74{
75 __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC);
76}
77
78static void
79 x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
80{
81 __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLBUT);
82}
83
84static void x2apic_send_IPI_allbutself(int vector)
85{
Thomas Gleixner43931d32019-07-22 20:47:30 +020086 __x2apic_send_IPI_shorthand(vector, APIC_DEST_ALLBUT);
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070087}
88
Suresh Siddha2d9579a2008-07-10 11:16:59 -070089static void x2apic_send_IPI_all(int vector)
90{
Thomas Gleixner43931d32019-07-22 20:47:30 +020091 __x2apic_send_IPI_shorthand(vector, APIC_DEST_ALLINC);
Suresh Siddha2d9579a2008-07-10 11:16:59 -070092}
93
Jaswinder Singh Rajput4d08d972008-12-29 22:11:40 +053094static void init_x2apic_ldr(void)
Suresh Siddha2d9579a2008-07-10 11:16:59 -070095{
Suresh Siddha2d9579a2008-07-10 11:16:59 -070096}
97
Suresh Siddha9ebd6802011-05-19 16:45:46 -070098static int x2apic_phys_probe(void)
99{
Stoney Wangcb214ed2013-02-07 10:53:02 -0800100 if (x2apic_mode && (x2apic_phys || x2apic_fadt_phys()))
Suresh Siddha9ebd6802011-05-19 16:45:46 -0700101 return 1;
102
103 return apic == &apic_x2apic_phys;
104}
105
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200106/* Common x2apic functions, also used by x2apic_cluster */
Li RongQinga7746352018-04-10 09:16:06 +0800107int x2apic_apic_id_valid(u32 apicid)
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200108{
David Woodhouse26573a92020-10-24 22:35:01 +0100109 if (x2apic_max_apicid && apicid > x2apic_max_apicid)
110 return 0;
111
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200112 return 1;
113}
114
115int x2apic_apic_id_registered(void)
116{
117 return 1;
118}
119
120void __x2apic_send_IPI_dest(unsigned int apicid, int vector, unsigned int dest)
121{
122 unsigned long cfg = __prepare_ICR(0, vector, dest);
123 native_x2apic_icr_write(cfg, apicid);
124}
125
Thomas Gleixner43931d32019-07-22 20:47:30 +0200126void __x2apic_send_IPI_shorthand(int vector, u32 which)
127{
128 unsigned long cfg = __prepare_ICR(which, vector, 0);
129
Dave Hansen25a068b2020-03-05 09:47:08 -0800130 /* x2apic MSRs are special and need a special fence: */
131 weak_wrmsr_fence();
Thomas Gleixner43931d32019-07-22 20:47:30 +0200132 native_x2apic_icr_write(cfg, 0);
133}
134
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200135unsigned int x2apic_get_apic_id(unsigned long id)
136{
137 return id;
138}
139
Thomas Gleixner727657e2017-09-13 23:29:17 +0200140u32 x2apic_set_apic_id(unsigned int id)
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200141{
142 return id;
143}
144
145int x2apic_phys_pkg_id(int initial_apicid, int index_msb)
146{
147 return initial_apicid >> index_msb;
148}
149
150void x2apic_send_IPI_self(int vector)
151{
152 apic_write(APIC_SELF_IPI, vector);
153}
154
Kees Cook404f6aa2016-08-08 16:29:06 -0700155static struct apic apic_x2apic_phys __ro_after_init = {
Ingo Molnar05c155c2009-01-28 02:37:01 +0100156
157 .name = "physical x2apic",
Suresh Siddha9ebd6802011-05-19 16:45:46 -0700158 .probe = x2apic_phys_probe,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100159 .acpi_madt_oem_check = x2apic_acpi_madt_oem_check,
Steffen Persvoldb7157ac2012-03-16 20:25:35 +0100160 .apic_id_valid = x2apic_apic_id_valid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100161 .apic_id_registered = x2apic_apic_id_registered,
162
Thomas Gleixner72161292020-10-24 22:35:05 +0100163 .delivery_mode = APIC_DELIVERY_MODE_FIXED,
Thomas Gleixner8c449632020-10-24 22:35:08 +0100164 .dest_mode_logical = false,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100165
Ingo Molnar08125d32009-01-28 05:08:44 +0100166 .disable_esr = 0,
Thomas Gleixnere57d04e2020-10-24 22:35:07 +0100167
Ingo Molnar05c155c2009-01-28 02:37:01 +0100168 .check_apicid_used = NULL,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100169 .init_apic_ldr = init_x2apic_ldr,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100170 .ioapic_phys_id_map = NULL,
171 .setup_apic_routing = NULL,
Ingo Molnara21769a42009-01-28 06:50:47 +0100172 .cpu_present_to_apicid = default_cpu_present_to_apicid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100173 .apicid_to_cpu_present = NULL,
Ingo Molnara27a6212009-01-28 12:43:18 +0100174 .check_phys_apicid_present = default_check_phys_apicid_present,
Ingo Molnard4c9a9f2009-01-28 13:31:22 +0100175 .phys_pkg_id = x2apic_phys_pkg_id,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100176
Cyrill Gorcunov79deb8e2011-05-19 16:45:50 -0700177 .get_apic_id = x2apic_get_apic_id,
178 .set_apic_id = x2apic_set_apic_id,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100179
Thomas Gleixner9f9e3bb2017-09-13 23:29:37 +0200180 .calc_dest_apicid = apic_default_calc_apicid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100181
Thomas Gleixnerf2bffe82015-11-04 22:57:04 +0000182 .send_IPI = x2apic_send_IPI,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100183 .send_IPI_mask = x2apic_send_IPI_mask,
184 .send_IPI_mask_allbutself = x2apic_send_IPI_mask_allbutself,
185 .send_IPI_allbutself = x2apic_send_IPI_allbutself,
186 .send_IPI_all = x2apic_send_IPI_all,
187 .send_IPI_self = x2apic_send_IPI_self,
188
Ingo Molnar05c155c2009-01-28 02:37:01 +0100189 .inquire_remote_apic = NULL,
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800190
191 .read = native_apic_msr_read,
192 .write = native_apic_msr_write,
Michael S. Tsirkin0ab711a2012-05-16 19:03:58 +0300193 .eoi_write = native_apic_msr_eoi_write,
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800194 .icr_read = native_x2apic_icr_read,
195 .icr_write = native_x2apic_icr_write,
196 .wait_icr_idle = native_x2apic_wait_icr_idle,
197 .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
Suresh Siddha2d9579a2008-07-10 11:16:59 -0700198};
Suresh Siddha107e0e02011-05-20 17:51:17 -0700199
200apic_driver(apic_x2apic_phys);