1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/cpumask.h>
4 #include <linux/delay.h>
7 #include <asm/io_apic.h>
11 DEFINE_STATIC_KEY_FALSE(apic_use_ipi_shorthand);
14 static int apic_ipi_shorthand_off __ro_after_init;
16 static __init int apic_ipi_shorthand(char *str)
18 get_option(&str, &apic_ipi_shorthand_off);
21 __setup("no_ipi_broadcast=", apic_ipi_shorthand);
23 static int __init print_ipi_mode(void)
25 pr_info("IPI shorthand broadcast: %s\n",
26 apic_ipi_shorthand_off ? "disabled" : "enabled");
29 late_initcall(print_ipi_mode);
31 void apic_smt_update(void)
34 * Do not switch to broadcast mode if:
35 * - Disabled on the command line
36 * - Only a single CPU is online
37 * - Not all present CPUs have been at least booted once
39 * The latter is important as the local APIC might be in some
40 * random state and a broadcast might cause havoc. That's
41 * especially true for NMI broadcasting.
43 if (apic_ipi_shorthand_off || num_online_cpus() == 1 ||
44 !cpumask_equal(cpu_present_mask, &cpus_booted_once_mask)) {
45 static_branch_disable(&apic_use_ipi_shorthand);
47 static_branch_enable(&apic_use_ipi_shorthand);
51 void apic_send_IPI_allbutself(unsigned int vector)
53 if (num_online_cpus() < 2)
56 if (static_branch_likely(&apic_use_ipi_shorthand))
57 __apic_send_IPI_allbutself(vector);
59 __apic_send_IPI_mask_allbutself(cpu_online_mask, vector);
63 * Send a 'reschedule' IPI to another CPU. It goes straight through and
64 * wastes no time serializing anything. Worst case is that we lose a
67 void native_smp_send_reschedule(int cpu)
69 if (unlikely(cpu_is_offline(cpu))) {
70 WARN(1, "sched: Unexpected reschedule of offline CPU#%d!\n", cpu);
73 __apic_send_IPI(cpu, RESCHEDULE_VECTOR);
76 void native_send_call_func_single_ipi(int cpu)
78 __apic_send_IPI(cpu, CALL_FUNCTION_SINGLE_VECTOR);
81 void native_send_call_func_ipi(const struct cpumask *mask)
83 if (static_branch_likely(&apic_use_ipi_shorthand)) {
84 unsigned int cpu = smp_processor_id();
86 if (!cpumask_or_equal(mask, cpumask_of(cpu), cpu_online_mask))
89 if (cpumask_test_cpu(cpu, mask))
90 __apic_send_IPI_all(CALL_FUNCTION_VECTOR);
91 else if (num_online_cpus() > 1)
92 __apic_send_IPI_allbutself(CALL_FUNCTION_VECTOR);
97 __apic_send_IPI_mask(mask, CALL_FUNCTION_VECTOR);
100 void apic_send_nmi_to_offline_cpu(unsigned int cpu)
102 if (WARN_ON_ONCE(!apic->nmi_to_offline_cpu))
104 if (WARN_ON_ONCE(!cpumask_test_cpu(cpu, &cpus_booted_once_mask)))
106 apic->send_IPI(cpu, NMI_VECTOR);
108 #endif /* CONFIG_SMP */
110 static inline int __prepare_ICR2(unsigned int mask)
112 return SET_XAPIC_DEST_FIELD(mask);
115 u32 apic_mem_wait_icr_idle_timeout(void)
119 for (cnt = 0; cnt < 1000; cnt++) {
120 if (!(apic_read(APIC_ICR) & APIC_ICR_BUSY))
122 inc_irq_stat(icr_read_retry_count);
125 return APIC_ICR_BUSY;
128 void apic_mem_wait_icr_idle(void)
130 while (native_apic_mem_read(APIC_ICR) & APIC_ICR_BUSY)
135 * This is safe against interruption because it only writes the lower 32
136 * bits of the APIC_ICR register. The destination field is ignored for
147 * This function does not need to disable interrupts as there is no ICR2
148 * interaction. The memory write is direct except when the machine is
149 * affected by the 11AP Pentium erratum, which turns the plain write into
152 static void __default_send_IPI_shortcut(unsigned int shortcut, int vector)
155 * Wait for the previous ICR command to complete. Use
156 * safe_apic_wait_icr_idle() for the NMI vector as there have been
157 * issues where otherwise the system hangs when the panic CPU tries
158 * to stop the others before launching the kdump kernel.
160 if (unlikely(vector == NMI_VECTOR))
161 apic_mem_wait_icr_idle_timeout();
163 apic_mem_wait_icr_idle();
165 /* Destination field (ICR2) and the destination mode are ignored */
166 native_apic_mem_write(APIC_ICR, __prepare_ICR(shortcut, vector, 0));
170 * This is used to send an IPI with no shorthand notation (the destination is
171 * specified in bits 56 to 63 of the ICR).
173 void __default_send_IPI_dest_field(unsigned int dest_mask, int vector,
174 unsigned int dest_mode)
176 /* See comment in __default_send_IPI_shortcut() */
177 if (unlikely(vector == NMI_VECTOR))
178 apic_mem_wait_icr_idle_timeout();
180 apic_mem_wait_icr_idle();
182 /* Set the IPI destination field in the ICR */
183 native_apic_mem_write(APIC_ICR2, __prepare_ICR2(dest_mask));
184 /* Send it with the proper destination mode */
185 native_apic_mem_write(APIC_ICR, __prepare_ICR(0, vector, dest_mode));
188 void default_send_IPI_single_phys(int cpu, int vector)
192 local_irq_save(flags);
193 __default_send_IPI_dest_field(per_cpu(x86_cpu_to_apicid, cpu),
194 vector, APIC_DEST_PHYSICAL);
195 local_irq_restore(flags);
198 void default_send_IPI_mask_sequence_phys(const struct cpumask *mask, int vector)
203 local_irq_save(flags);
204 for_each_cpu(cpu, mask) {
205 __default_send_IPI_dest_field(per_cpu(x86_cpu_to_apicid,
206 cpu), vector, APIC_DEST_PHYSICAL);
208 local_irq_restore(flags);
211 void default_send_IPI_mask_allbutself_phys(const struct cpumask *mask,
214 unsigned int cpu, this_cpu = smp_processor_id();
217 local_irq_save(flags);
218 for_each_cpu(cpu, mask) {
221 __default_send_IPI_dest_field(per_cpu(x86_cpu_to_apicid,
222 cpu), vector, APIC_DEST_PHYSICAL);
224 local_irq_restore(flags);
228 * Helper function for APICs which insist on cpumasks
230 void default_send_IPI_single(int cpu, int vector)
232 __apic_send_IPI_mask(cpumask_of(cpu), vector);
235 void default_send_IPI_allbutself(int vector)
237 __default_send_IPI_shortcut(APIC_DEST_ALLBUT, vector);
240 void default_send_IPI_all(int vector)
242 __default_send_IPI_shortcut(APIC_DEST_ALLINC, vector);
245 void default_send_IPI_self(int vector)
247 __default_send_IPI_shortcut(APIC_DEST_SELF, vector);
251 void default_send_IPI_mask_sequence_logical(const struct cpumask *mask, int vector)
256 local_irq_save(flags);
257 for_each_cpu(cpu, mask)
258 __default_send_IPI_dest_field(1U << cpu, vector, APIC_DEST_LOGICAL);
259 local_irq_restore(flags);
262 void default_send_IPI_mask_allbutself_logical(const struct cpumask *mask,
265 unsigned int cpu, this_cpu = smp_processor_id();
268 local_irq_save(flags);
269 for_each_cpu(cpu, mask) {
272 __default_send_IPI_dest_field(1U << cpu, vector, APIC_DEST_LOGICAL);
274 local_irq_restore(flags);
277 void default_send_IPI_mask_logical(const struct cpumask *cpumask, int vector)
279 unsigned long mask = cpumask_bits(cpumask)[0];
285 local_irq_save(flags);
286 WARN_ON(mask & ~cpumask_bits(cpu_online_mask)[0]);
287 __default_send_IPI_dest_field(mask, vector, APIC_DEST_LOGICAL);
288 local_irq_restore(flags);
292 static int convert_apicid_to_cpu(u32 apic_id)
296 for_each_possible_cpu(i) {
297 if (per_cpu(x86_cpu_to_apicid, i) == apic_id)
303 int safe_smp_processor_id(void)
308 if (!boot_cpu_has(X86_FEATURE_APIC))
311 apicid = read_apic_id();
312 if (apicid == BAD_APICID)
315 cpuid = convert_apicid_to_cpu(apicid);
317 return cpuid >= 0 ? cpuid : 0;