1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2004 James Cleverdon, IBM.
5 * Flat APIC subarch code.
7 * Hacked for x86-64 by James Cleverdon from i386 architecture code by
8 * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
11 #include <linux/cpumask.h>
12 #include <linux/export.h>
13 #include <linux/acpi.h>
15 #include <asm/jailhouse_para.h>
20 static struct apic apic_physflat
;
21 static struct apic apic_flat
;
23 struct apic
*apic __ro_after_init
= &apic_flat
;
24 EXPORT_SYMBOL_GPL(apic
);
26 static int flat_acpi_madt_oem_check(char *oem_id
, char *oem_table_id
)
32 * Set up the logical destination ID.
34 * Intel recommends to set DFR, LDR and TPR before enabling
35 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
36 * document number 292116). So here it goes...
38 void flat_init_apic_ldr(void)
41 unsigned long num
, id
;
43 num
= smp_processor_id();
45 apic_write(APIC_DFR
, APIC_DFR_FLAT
);
46 val
= apic_read(APIC_LDR
) & ~APIC_LDR_MASK
;
47 val
|= SET_APIC_LOGICAL_ID(id
);
48 apic_write(APIC_LDR
, val
);
51 static void _flat_send_IPI_mask(unsigned long mask
, int vector
)
55 local_irq_save(flags
);
56 __default_send_IPI_dest_field(mask
, vector
, apic
->dest_logical
);
57 local_irq_restore(flags
);
60 static void flat_send_IPI_mask(const struct cpumask
*cpumask
, int vector
)
62 unsigned long mask
= cpumask_bits(cpumask
)[0];
64 _flat_send_IPI_mask(mask
, vector
);
68 flat_send_IPI_mask_allbutself(const struct cpumask
*cpumask
, int vector
)
70 unsigned long mask
= cpumask_bits(cpumask
)[0];
71 int cpu
= smp_processor_id();
73 if (cpu
< BITS_PER_LONG
)
74 __clear_bit(cpu
, &mask
);
76 _flat_send_IPI_mask(mask
, vector
);
79 static unsigned int flat_get_apic_id(unsigned long x
)
81 return (x
>> 24) & 0xFF;
84 static u32
set_apic_id(unsigned int id
)
86 return (id
& 0xFF) << 24;
89 static unsigned int read_xapic_id(void)
91 return flat_get_apic_id(apic_read(APIC_ID
));
94 static int flat_apic_id_registered(void)
96 return physid_isset(read_xapic_id(), phys_cpu_present_map
);
99 static int flat_phys_pkg_id(int initial_apic_id
, int index_msb
)
101 return initial_apic_id
>> index_msb
;
104 static int flat_probe(void)
109 static struct apic apic_flat __ro_after_init
= {
112 .acpi_madt_oem_check
= flat_acpi_madt_oem_check
,
113 .apic_id_valid
= default_apic_id_valid
,
114 .apic_id_registered
= flat_apic_id_registered
,
116 .irq_delivery_mode
= dest_Fixed
,
117 .irq_dest_mode
= 1, /* logical */
120 .dest_logical
= APIC_DEST_LOGICAL
,
121 .check_apicid_used
= NULL
,
123 .init_apic_ldr
= flat_init_apic_ldr
,
125 .ioapic_phys_id_map
= NULL
,
126 .setup_apic_routing
= NULL
,
127 .cpu_present_to_apicid
= default_cpu_present_to_apicid
,
128 .apicid_to_cpu_present
= NULL
,
129 .check_phys_apicid_present
= default_check_phys_apicid_present
,
130 .phys_pkg_id
= flat_phys_pkg_id
,
132 .get_apic_id
= flat_get_apic_id
,
133 .set_apic_id
= set_apic_id
,
135 .calc_dest_apicid
= apic_flat_calc_apicid
,
137 .send_IPI
= default_send_IPI_single
,
138 .send_IPI_mask
= flat_send_IPI_mask
,
139 .send_IPI_mask_allbutself
= flat_send_IPI_mask_allbutself
,
140 .send_IPI_allbutself
= default_send_IPI_allbutself
,
141 .send_IPI_all
= default_send_IPI_all
,
142 .send_IPI_self
= default_send_IPI_self
,
144 .inquire_remote_apic
= default_inquire_remote_apic
,
146 .read
= native_apic_mem_read
,
147 .write
= native_apic_mem_write
,
148 .eoi_write
= native_apic_mem_write
,
149 .icr_read
= native_apic_icr_read
,
150 .icr_write
= native_apic_icr_write
,
151 .wait_icr_idle
= native_apic_wait_icr_idle
,
152 .safe_wait_icr_idle
= native_safe_apic_wait_icr_idle
,
156 * Physflat mode is used when there are more than 8 CPUs on a system.
157 * We cannot use logical delivery in this case because the mask
158 * overflows, so use physical mode.
160 static int physflat_acpi_madt_oem_check(char *oem_id
, char *oem_table_id
)
164 * Quirk: some x86_64 machines can only use physical APIC mode
165 * regardless of how many processors are present (x86_64 ES7000
168 if (acpi_gbl_FADT
.header
.revision
>= FADT2_REVISION_ID
&&
169 (acpi_gbl_FADT
.flags
& ACPI_FADT_APIC_PHYSICAL
)) {
170 printk(KERN_DEBUG
"system APIC only can use physical flat");
174 if (!strncmp(oem_id
, "IBM", 3) && !strncmp(oem_table_id
, "EXA", 3)) {
175 printk(KERN_DEBUG
"IBM Summit detected, will use apic physical");
183 static void physflat_init_apic_ldr(void)
186 * LDR and DFR are not involved in physflat mode, rather:
187 * "In physical destination mode, the destination processor is
188 * specified by its local APIC ID [...]." (Intel SDM, 10.6.2.1)
192 static int physflat_probe(void)
194 if (apic
== &apic_physflat
|| num_possible_cpus() > 8 ||
195 jailhouse_paravirt())
201 static struct apic apic_physflat __ro_after_init
= {
203 .name
= "physical flat",
204 .probe
= physflat_probe
,
205 .acpi_madt_oem_check
= physflat_acpi_madt_oem_check
,
206 .apic_id_valid
= default_apic_id_valid
,
207 .apic_id_registered
= flat_apic_id_registered
,
209 .irq_delivery_mode
= dest_Fixed
,
210 .irq_dest_mode
= 0, /* physical */
214 .check_apicid_used
= NULL
,
216 .init_apic_ldr
= physflat_init_apic_ldr
,
218 .ioapic_phys_id_map
= NULL
,
219 .setup_apic_routing
= NULL
,
220 .cpu_present_to_apicid
= default_cpu_present_to_apicid
,
221 .apicid_to_cpu_present
= NULL
,
222 .check_phys_apicid_present
= default_check_phys_apicid_present
,
223 .phys_pkg_id
= flat_phys_pkg_id
,
225 .get_apic_id
= flat_get_apic_id
,
226 .set_apic_id
= set_apic_id
,
228 .calc_dest_apicid
= apic_default_calc_apicid
,
230 .send_IPI
= default_send_IPI_single_phys
,
231 .send_IPI_mask
= default_send_IPI_mask_sequence_phys
,
232 .send_IPI_mask_allbutself
= default_send_IPI_mask_allbutself_phys
,
233 .send_IPI_allbutself
= default_send_IPI_allbutself
,
234 .send_IPI_all
= default_send_IPI_all
,
235 .send_IPI_self
= default_send_IPI_self
,
237 .inquire_remote_apic
= default_inquire_remote_apic
,
239 .read
= native_apic_mem_read
,
240 .write
= native_apic_mem_write
,
241 .eoi_write
= native_apic_mem_write
,
242 .icr_read
= native_apic_icr_read
,
243 .icr_write
= native_apic_icr_write
,
244 .wait_icr_idle
= native_apic_wait_icr_idle
,
245 .safe_wait_icr_idle
= native_safe_apic_wait_icr_idle
,
249 * We need to check for physflat first, so this order is important.
251 apic_drivers(apic_physflat
, apic_flat
);