blob: 437e8439db67456defdef8952bf72a037f12117a [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
46 x2apic_wrmsr_fence();
47 __x2apic_send_IPI_dest(dest, vector, APIC_DEST_PHYSICAL);
48}
49
Ingo Molnardac5f412009-01-28 15:42:24 +010050static void
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070051__x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest)
Mike Travise7986732008-12-16 17:33:52 -080052{
Ingo Molnardac5f412009-01-28 15:42:24 +010053 unsigned long query_cpu;
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070054 unsigned long this_cpu;
Ingo Molnardac5f412009-01-28 15:42:24 +010055 unsigned long flags;
Mike Travise7986732008-12-16 17:33:52 -080056
Suresh Siddhace4e2402009-03-17 10:16:54 -080057 x2apic_wrmsr_fence();
58
Mike Travise7986732008-12-16 17:33:52 -080059 local_irq_save(flags);
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070060
61 this_cpu = smp_processor_id();
Mike Travisbcda0162008-12-16 17:33:59 -080062 for_each_cpu(query_cpu, mask) {
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070063 if (apic_dest == APIC_DEST_ALLBUT && this_cpu == query_cpu)
Ingo Molnardac5f412009-01-28 15:42:24 +010064 continue;
65 __x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
66 vector, APIC_DEST_PHYSICAL);
67 }
Mike Travise7986732008-12-16 17:33:52 -080068 local_irq_restore(flags);
Suresh Siddha2d9579a2008-07-10 11:16:59 -070069}
70
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070071static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
72{
73 __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC);
74}
75
76static 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
82static void x2apic_send_IPI_allbutself(int vector)
83{
Thomas Gleixner43931d32019-07-22 20:47:30 +020084 __x2apic_send_IPI_shorthand(vector, APIC_DEST_ALLBUT);
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070085}
86
Suresh Siddha2d9579a2008-07-10 11:16:59 -070087static void x2apic_send_IPI_all(int vector)
88{
Thomas Gleixner43931d32019-07-22 20:47:30 +020089 __x2apic_send_IPI_shorthand(vector, APIC_DEST_ALLINC);
Suresh Siddha2d9579a2008-07-10 11:16:59 -070090}
91
Jaswinder Singh Rajput4d08d972008-12-29 22:11:40 +053092static void init_x2apic_ldr(void)
Suresh Siddha2d9579a2008-07-10 11:16:59 -070093{
Suresh Siddha2d9579a2008-07-10 11:16:59 -070094}
95
Suresh Siddha9ebd6802011-05-19 16:45:46 -070096static int x2apic_phys_probe(void)
97{
Stoney Wangcb214ed2013-02-07 10:53:02 -080098 if (x2apic_mode && (x2apic_phys || x2apic_fadt_phys()))
Suresh Siddha9ebd6802011-05-19 16:45:46 -070099 return 1;
100
101 return apic == &apic_x2apic_phys;
102}
103
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200104/* Common x2apic functions, also used by x2apic_cluster */
Li RongQinga7746352018-04-10 09:16:06 +0800105int x2apic_apic_id_valid(u32 apicid)
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200106{
David Woodhouse26573a92020-10-24 22:35:01 +0100107 if (x2apic_max_apicid && apicid > x2apic_max_apicid)
108 return 0;
109
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200110 return 1;
111}
112
113int x2apic_apic_id_registered(void)
114{
115 return 1;
116}
117
118void __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 Gleixner43931d32019-07-22 20:47:30 +0200124void __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 Gleixner981c2ea2017-09-13 23:29:16 +0200132unsigned int x2apic_get_apic_id(unsigned long id)
133{
134 return id;
135}
136
Thomas Gleixner727657e2017-09-13 23:29:17 +0200137u32 x2apic_set_apic_id(unsigned int id)
Thomas Gleixner981c2ea2017-09-13 23:29:16 +0200138{
139 return id;
140}
141
142int x2apic_phys_pkg_id(int initial_apicid, int index_msb)
143{
144 return initial_apicid >> index_msb;
145}
146
147void x2apic_send_IPI_self(int vector)
148{
149 apic_write(APIC_SELF_IPI, vector);
150}
151
Kees Cook404f6aa2016-08-08 16:29:06 -0700152static struct apic apic_x2apic_phys __ro_after_init = {
Ingo Molnar05c155c2009-01-28 02:37:01 +0100153
154 .name = "physical x2apic",
Suresh Siddha9ebd6802011-05-19 16:45:46 -0700155 .probe = x2apic_phys_probe,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100156 .acpi_madt_oem_check = x2apic_acpi_madt_oem_check,
Steffen Persvoldb7157ac2012-03-16 20:25:35 +0100157 .apic_id_valid = x2apic_apic_id_valid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100158 .apic_id_registered = x2apic_apic_id_registered,
159
Thomas Gleixner72161292020-10-24 22:35:05 +0100160 .delivery_mode = APIC_DELIVERY_MODE_FIXED,
Ingo Molnar0b06e732009-01-28 05:13:04 +0100161 .irq_dest_mode = 0, /* physical */
Ingo Molnar05c155c2009-01-28 02:37:01 +0100162
Ingo Molnar08125d32009-01-28 05:08:44 +0100163 .disable_esr = 0,
Ingo Molnarbdb1a9b2009-01-28 05:29:25 +0100164 .dest_logical = 0,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100165 .check_apicid_used = NULL,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100166
Ingo Molnar05c155c2009-01-28 02:37:01 +0100167 .init_apic_ldr = init_x2apic_ldr,
168
169 .ioapic_phys_id_map = NULL,
170 .setup_apic_routing = NULL,
Ingo Molnara21769a42009-01-28 06:50:47 +0100171 .cpu_present_to_apicid = default_cpu_present_to_apicid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100172 .apicid_to_cpu_present = NULL,
Ingo Molnara27a6212009-01-28 12:43:18 +0100173 .check_phys_apicid_present = default_check_phys_apicid_present,
Ingo Molnard4c9a9f2009-01-28 13:31:22 +0100174 .phys_pkg_id = x2apic_phys_pkg_id,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100175
Cyrill Gorcunov79deb8e2011-05-19 16:45:50 -0700176 .get_apic_id = x2apic_get_apic_id,
177 .set_apic_id = x2apic_set_apic_id,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100178
Thomas Gleixner9f9e3bb2017-09-13 23:29:37 +0200179 .calc_dest_apicid = apic_default_calc_apicid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100180
Thomas Gleixnerf2bffe82015-11-04 22:57:04 +0000181 .send_IPI = x2apic_send_IPI,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100182 .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 Molnar05c155c2009-01-28 02:37:01 +0100188 .inquire_remote_apic = NULL,
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800189
190 .read = native_apic_msr_read,
191 .write = native_apic_msr_write,
Michael S. Tsirkin0ab711a2012-05-16 19:03:58 +0300192 .eoi_write = native_apic_msr_eoi_write,
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800193 .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 Siddha2d9579a2008-07-10 11:16:59 -0700197};
Suresh Siddha107e0e02011-05-20 17:51:17 -0700198
199apic_driver(apic_x2apic_phys);