xref: /openbmc/linux/arch/x86/kernel/apic/x2apic_phys.c (revision a774635db5c430cbf21fa5d2f2df3d23aaa8e782)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2f62bae50SIngo Molnar #include <linux/threads.h>
3f62bae50SIngo Molnar #include <linux/cpumask.h>
4f62bae50SIngo Molnar #include <linux/string.h>
5f62bae50SIngo Molnar #include <linux/kernel.h>
6f62bae50SIngo Molnar #include <linux/ctype.h>
7f62bae50SIngo Molnar #include <linux/dmar.h>
8f62bae50SIngo Molnar 
9f62bae50SIngo Molnar #include <asm/smp.h>
10981c2eacSThomas Gleixner #include <asm/ipi.h>
11981c2eacSThomas Gleixner #include "x2apic.h"
12f62bae50SIngo Molnar 
13ef1f87aaSSuresh Siddha int x2apic_phys;
14f62bae50SIngo Molnar 
151a8880a1SSuresh Siddha static struct apic apic_x2apic_phys;
161a8880a1SSuresh Siddha 
17f62bae50SIngo Molnar static int set_x2apic_phys_mode(char *arg)
18f62bae50SIngo Molnar {
19f62bae50SIngo Molnar 	x2apic_phys = 1;
20f62bae50SIngo Molnar 	return 0;
21f62bae50SIngo Molnar }
22f62bae50SIngo Molnar early_param("x2apic_phys", set_x2apic_phys_mode);
23f62bae50SIngo Molnar 
24cb214edeSStoney Wang static bool x2apic_fadt_phys(void)
25cb214edeSStoney Wang {
26781674fcSJan Kiszka #ifdef CONFIG_ACPI
27cb214edeSStoney Wang 	if ((acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) &&
28cb214edeSStoney Wang 		(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
29cb214edeSStoney Wang 		printk(KERN_DEBUG "System requires x2apic physical mode\n");
30cb214edeSStoney Wang 		return true;
31cb214edeSStoney Wang 	}
32781674fcSJan Kiszka #endif
33cb214edeSStoney Wang 	return false;
34cb214edeSStoney Wang }
35cb214edeSStoney Wang 
36f62bae50SIngo Molnar static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
37f62bae50SIngo Molnar {
38cb214edeSStoney Wang 	return x2apic_enabled() && (x2apic_phys || x2apic_fadt_phys());
39f62bae50SIngo Molnar }
40f62bae50SIngo Molnar 
41f2bffe8aSThomas Gleixner static void x2apic_send_IPI(int cpu, int vector)
42f2bffe8aSThomas Gleixner {
43f2bffe8aSThomas Gleixner 	u32 dest = per_cpu(x86_cpu_to_apicid, cpu);
44f2bffe8aSThomas Gleixner 
45f2bffe8aSThomas Gleixner 	x2apic_wrmsr_fence();
46f2bffe8aSThomas Gleixner 	__x2apic_send_IPI_dest(dest, vector, APIC_DEST_PHYSICAL);
47f2bffe8aSThomas Gleixner }
48f2bffe8aSThomas Gleixner 
49f62bae50SIngo Molnar static void
50a27d0b5eSSuresh Siddha __x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest)
51f62bae50SIngo Molnar {
52f62bae50SIngo Molnar 	unsigned long query_cpu;
53a27d0b5eSSuresh Siddha 	unsigned long this_cpu;
54f62bae50SIngo Molnar 	unsigned long flags;
55f62bae50SIngo Molnar 
56ce4e240cSSuresh Siddha 	x2apic_wrmsr_fence();
57ce4e240cSSuresh Siddha 
58f62bae50SIngo Molnar 	local_irq_save(flags);
59a27d0b5eSSuresh Siddha 
60a27d0b5eSSuresh Siddha 	this_cpu = smp_processor_id();
61f62bae50SIngo Molnar 	for_each_cpu(query_cpu, mask) {
62a27d0b5eSSuresh Siddha 		if (apic_dest == APIC_DEST_ALLBUT && this_cpu == query_cpu)
63f62bae50SIngo Molnar 			continue;
64f62bae50SIngo Molnar 		__x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
65f62bae50SIngo Molnar 				       vector, APIC_DEST_PHYSICAL);
66f62bae50SIngo Molnar 	}
67f62bae50SIngo Molnar 	local_irq_restore(flags);
68f62bae50SIngo Molnar }
69f62bae50SIngo Molnar 
70a27d0b5eSSuresh Siddha static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
71a27d0b5eSSuresh Siddha {
72a27d0b5eSSuresh Siddha 	__x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC);
73a27d0b5eSSuresh Siddha }
74a27d0b5eSSuresh Siddha 
75a27d0b5eSSuresh Siddha static void
76a27d0b5eSSuresh Siddha  x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
77a27d0b5eSSuresh Siddha {
78a27d0b5eSSuresh Siddha 	__x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLBUT);
79a27d0b5eSSuresh Siddha }
80a27d0b5eSSuresh Siddha 
81a27d0b5eSSuresh Siddha static void x2apic_send_IPI_allbutself(int vector)
82a27d0b5eSSuresh Siddha {
83a27d0b5eSSuresh Siddha 	__x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLBUT);
84a27d0b5eSSuresh Siddha }
85a27d0b5eSSuresh Siddha 
86f62bae50SIngo Molnar static void x2apic_send_IPI_all(int vector)
87f62bae50SIngo Molnar {
88a27d0b5eSSuresh Siddha 	__x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLINC);
89f62bae50SIngo Molnar }
90f62bae50SIngo Molnar 
91f62bae50SIngo Molnar static void init_x2apic_ldr(void)
92f62bae50SIngo Molnar {
93f62bae50SIngo Molnar }
94f62bae50SIngo Molnar 
959ebd680bSSuresh Siddha static int x2apic_phys_probe(void)
969ebd680bSSuresh Siddha {
97cb214edeSStoney Wang 	if (x2apic_mode && (x2apic_phys || x2apic_fadt_phys()))
989ebd680bSSuresh Siddha 		return 1;
999ebd680bSSuresh Siddha 
1009ebd680bSSuresh Siddha 	return apic == &apic_x2apic_phys;
1019ebd680bSSuresh Siddha }
1029ebd680bSSuresh Siddha 
103981c2eacSThomas Gleixner /* Common x2apic functions, also used by x2apic_cluster */
104*a774635dSLi RongQing int x2apic_apic_id_valid(u32 apicid)
105981c2eacSThomas Gleixner {
106981c2eacSThomas Gleixner 	return 1;
107981c2eacSThomas Gleixner }
108981c2eacSThomas Gleixner 
109981c2eacSThomas Gleixner int x2apic_apic_id_registered(void)
110981c2eacSThomas Gleixner {
111981c2eacSThomas Gleixner 	return 1;
112981c2eacSThomas Gleixner }
113981c2eacSThomas Gleixner 
114981c2eacSThomas Gleixner void __x2apic_send_IPI_dest(unsigned int apicid, int vector, unsigned int dest)
115981c2eacSThomas Gleixner {
116981c2eacSThomas Gleixner 	unsigned long cfg = __prepare_ICR(0, vector, dest);
117981c2eacSThomas Gleixner 	native_x2apic_icr_write(cfg, apicid);
118981c2eacSThomas Gleixner }
119981c2eacSThomas Gleixner 
120981c2eacSThomas Gleixner unsigned int x2apic_get_apic_id(unsigned long id)
121981c2eacSThomas Gleixner {
122981c2eacSThomas Gleixner 	return id;
123981c2eacSThomas Gleixner }
124981c2eacSThomas Gleixner 
125727657e6SThomas Gleixner u32 x2apic_set_apic_id(unsigned int id)
126981c2eacSThomas Gleixner {
127981c2eacSThomas Gleixner 	return id;
128981c2eacSThomas Gleixner }
129981c2eacSThomas Gleixner 
130981c2eacSThomas Gleixner int x2apic_phys_pkg_id(int initial_apicid, int index_msb)
131981c2eacSThomas Gleixner {
132981c2eacSThomas Gleixner 	return initial_apicid >> index_msb;
133981c2eacSThomas Gleixner }
134981c2eacSThomas Gleixner 
135981c2eacSThomas Gleixner void x2apic_send_IPI_self(int vector)
136981c2eacSThomas Gleixner {
137981c2eacSThomas Gleixner 	apic_write(APIC_SELF_IPI, vector);
138981c2eacSThomas Gleixner }
139981c2eacSThomas Gleixner 
140404f6aacSKees Cook static struct apic apic_x2apic_phys __ro_after_init = {
141f62bae50SIngo Molnar 
142f62bae50SIngo Molnar 	.name				= "physical x2apic",
1439ebd680bSSuresh Siddha 	.probe				= x2apic_phys_probe,
144f62bae50SIngo Molnar 	.acpi_madt_oem_check		= x2apic_acpi_madt_oem_check,
145b7157acfSSteffen Persvold 	.apic_id_valid			= x2apic_apic_id_valid,
146f62bae50SIngo Molnar 	.apic_id_registered		= x2apic_apic_id_registered,
147f62bae50SIngo Molnar 
148f62bae50SIngo Molnar 	.irq_delivery_mode		= dest_Fixed,
149f62bae50SIngo Molnar 	.irq_dest_mode			= 0, /* physical */
150f62bae50SIngo Molnar 
151f62bae50SIngo Molnar 	.disable_esr			= 0,
152f62bae50SIngo Molnar 	.dest_logical			= 0,
153f62bae50SIngo Molnar 	.check_apicid_used		= NULL,
154f62bae50SIngo Molnar 
155f62bae50SIngo Molnar 	.init_apic_ldr			= init_x2apic_ldr,
156f62bae50SIngo Molnar 
157f62bae50SIngo Molnar 	.ioapic_phys_id_map		= NULL,
158f62bae50SIngo Molnar 	.setup_apic_routing		= NULL,
159f62bae50SIngo Molnar 	.cpu_present_to_apicid		= default_cpu_present_to_apicid,
160f62bae50SIngo Molnar 	.apicid_to_cpu_present		= NULL,
161f62bae50SIngo Molnar 	.check_phys_apicid_present	= default_check_phys_apicid_present,
162f62bae50SIngo Molnar 	.phys_pkg_id			= x2apic_phys_pkg_id,
163f62bae50SIngo Molnar 
16479deb8e5SCyrill Gorcunov 	.get_apic_id			= x2apic_get_apic_id,
16579deb8e5SCyrill Gorcunov 	.set_apic_id			= x2apic_set_apic_id,
166f62bae50SIngo Molnar 
1679f9e3bb1SThomas Gleixner 	.calc_dest_apicid		= apic_default_calc_apicid,
168f62bae50SIngo Molnar 
169f2bffe8aSThomas Gleixner 	.send_IPI			= x2apic_send_IPI,
170f62bae50SIngo Molnar 	.send_IPI_mask			= x2apic_send_IPI_mask,
171f62bae50SIngo Molnar 	.send_IPI_mask_allbutself	= x2apic_send_IPI_mask_allbutself,
172f62bae50SIngo Molnar 	.send_IPI_allbutself		= x2apic_send_IPI_allbutself,
173f62bae50SIngo Molnar 	.send_IPI_all			= x2apic_send_IPI_all,
174f62bae50SIngo Molnar 	.send_IPI_self			= x2apic_send_IPI_self,
175f62bae50SIngo Molnar 
176f62bae50SIngo Molnar 	.inquire_remote_apic		= NULL,
177f62bae50SIngo Molnar 
178f62bae50SIngo Molnar 	.read				= native_apic_msr_read,
179f62bae50SIngo Molnar 	.write				= native_apic_msr_write,
1800ab711aeSMichael S. Tsirkin 	.eoi_write			= native_apic_msr_eoi_write,
181f62bae50SIngo Molnar 	.icr_read			= native_x2apic_icr_read,
182f62bae50SIngo Molnar 	.icr_write			= native_x2apic_icr_write,
183f62bae50SIngo Molnar 	.wait_icr_idle			= native_x2apic_wait_icr_idle,
184f62bae50SIngo Molnar 	.safe_wait_icr_idle		= native_safe_x2apic_wait_icr_idle,
185f62bae50SIngo Molnar };
186107e0e0cSSuresh Siddha 
187107e0e0cSSuresh Siddha apic_driver(apic_x2apic_phys);
188