xref: /openbmc/linux/arch/x86/include/asm/apic.h (revision 13d779fd)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef _ASM_X86_APIC_H
3 #define _ASM_X86_APIC_H
4 
5 #include <linux/cpumask.h>
6 
7 #include <asm/alternative.h>
8 #include <asm/cpufeature.h>
9 #include <asm/apicdef.h>
10 #include <linux/atomic.h>
11 #include <asm/fixmap.h>
12 #include <asm/mpspec.h>
13 #include <asm/msr.h>
14 #include <asm/hardirq.h>
15 
16 #define ARCH_APICTIMER_STOPS_ON_C3	1
17 
18 /*
19  * Debugging macros
20  */
21 #define APIC_QUIET   0
22 #define APIC_VERBOSE 1
23 #define APIC_DEBUG   2
24 
25 /* Macros for apic_extnmi which controls external NMI masking */
26 #define APIC_EXTNMI_BSP		0 /* Default */
27 #define APIC_EXTNMI_ALL		1
28 #define APIC_EXTNMI_NONE	2
29 
30 /*
31  * Define the default level of output to be very little
32  * This can be turned up by using apic=verbose for more
33  * information and apic=debug for _lots_ of information.
34  * apic_verbosity is defined in apic.c
35  */
36 #define apic_printk(v, s, a...) do {       \
37 		if ((v) <= apic_verbosity) \
38 			printk(s, ##a);    \
39 	} while (0)
40 
41 
42 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
43 extern void x86_32_probe_apic(void);
44 #else
45 static inline void x86_32_probe_apic(void) { }
46 #endif
47 
48 #ifdef CONFIG_X86_LOCAL_APIC
49 
50 extern int apic_verbosity;
51 extern int local_apic_timer_c2_ok;
52 
53 extern bool apic_is_disabled;
54 extern unsigned int lapic_timer_period;
55 
56 extern int cpuid_to_apicid[];
57 
58 extern enum apic_intr_mode_id apic_intr_mode;
59 enum apic_intr_mode_id {
60 	APIC_PIC,
61 	APIC_VIRTUAL_WIRE,
62 	APIC_VIRTUAL_WIRE_NO_CONFIG,
63 	APIC_SYMMETRIC_IO,
64 	APIC_SYMMETRIC_IO_NO_ROUTING
65 };
66 
67 /*
68  * With 82489DX we can't rely on apic feature bit
69  * retrieved via cpuid but still have to deal with
70  * such an apic chip so we assume that SMP configuration
71  * is found from MP table (64bit case uses ACPI mostly
72  * which set smp presence flag as well so we are safe
73  * to use this helper too).
74  */
75 static inline bool apic_from_smp_config(void)
76 {
77 	return smp_found_config && !apic_is_disabled;
78 }
79 
80 /*
81  * Basic functions accessing APICs.
82  */
83 #ifdef CONFIG_PARAVIRT
84 #include <asm/paravirt.h>
85 #endif
86 
87 static inline void native_apic_mem_write(u32 reg, u32 v)
88 {
89 	volatile u32 *addr = (volatile u32 *)(APIC_BASE + reg);
90 
91 	alternative_io("movl %0, %P1", "xchgl %0, %P1", X86_BUG_11AP,
92 		       ASM_OUTPUT2("=r" (v), "=m" (*addr)),
93 		       ASM_OUTPUT2("0" (v), "m" (*addr)));
94 }
95 
96 static inline u32 native_apic_mem_read(u32 reg)
97 {
98 	return *((volatile u32 *)(APIC_BASE + reg));
99 }
100 
101 extern u32 native_safe_apic_wait_icr_idle(void);
102 extern void native_apic_icr_write(u32 low, u32 id);
103 extern u64 native_apic_icr_read(void);
104 
105 static inline bool apic_is_x2apic_enabled(void)
106 {
107 	u64 msr;
108 
109 	if (rdmsrl_safe(MSR_IA32_APICBASE, &msr))
110 		return false;
111 	return msr & X2APIC_ENABLE;
112 }
113 
114 extern void enable_IR_x2apic(void);
115 
116 extern int get_physical_broadcast(void);
117 
118 extern int lapic_get_maxlvt(void);
119 extern void clear_local_APIC(void);
120 extern void disconnect_bsp_APIC(int virt_wire_setup);
121 extern void disable_local_APIC(void);
122 extern void apic_soft_disable(void);
123 extern void lapic_shutdown(void);
124 extern void sync_Arb_IDs(void);
125 extern void init_bsp_APIC(void);
126 extern void apic_intr_mode_select(void);
127 extern void apic_intr_mode_init(void);
128 extern void init_apic_mappings(void);
129 void register_lapic_address(unsigned long address);
130 extern void setup_boot_APIC_clock(void);
131 extern void setup_secondary_APIC_clock(void);
132 extern void lapic_update_tsc_freq(void);
133 
134 #ifdef CONFIG_X86_64
135 static inline bool apic_force_enable(unsigned long addr)
136 {
137 	return false;
138 }
139 #else
140 extern bool apic_force_enable(unsigned long addr);
141 #endif
142 
143 extern void apic_ap_setup(void);
144 
145 /*
146  * On 32bit this is mach-xxx local
147  */
148 #ifdef CONFIG_X86_64
149 extern int apic_is_clustered_box(void);
150 #else
151 static inline int apic_is_clustered_box(void)
152 {
153 	return 0;
154 }
155 #endif
156 
157 extern int setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask);
158 extern void lapic_assign_system_vectors(void);
159 extern void lapic_assign_legacy_vector(unsigned int isairq, bool replace);
160 extern void lapic_update_legacy_vectors(void);
161 extern void lapic_online(void);
162 extern void lapic_offline(void);
163 extern bool apic_needs_pit(void);
164 
165 extern void apic_send_IPI_allbutself(unsigned int vector);
166 
167 #else /* !CONFIG_X86_LOCAL_APIC */
168 static inline void lapic_shutdown(void) { }
169 #define local_apic_timer_c2_ok		1
170 static inline void init_apic_mappings(void) { }
171 static inline void disable_local_APIC(void) { }
172 # define setup_boot_APIC_clock x86_init_noop
173 # define setup_secondary_APIC_clock x86_init_noop
174 static inline void lapic_update_tsc_freq(void) { }
175 static inline void init_bsp_APIC(void) { }
176 static inline void apic_intr_mode_select(void) { }
177 static inline void apic_intr_mode_init(void) { }
178 static inline void lapic_assign_system_vectors(void) { }
179 static inline void lapic_assign_legacy_vector(unsigned int i, bool r) { }
180 static inline bool apic_needs_pit(void) { return true; }
181 #endif /* !CONFIG_X86_LOCAL_APIC */
182 
183 #ifdef CONFIG_X86_X2APIC
184 static inline void native_apic_msr_write(u32 reg, u32 v)
185 {
186 	if (reg == APIC_DFR || reg == APIC_ID || reg == APIC_LDR ||
187 	    reg == APIC_LVR)
188 		return;
189 
190 	wrmsr(APIC_BASE_MSR + (reg >> 4), v, 0);
191 }
192 
193 static inline void native_apic_msr_eoi_write(u32 reg, u32 v)
194 {
195 	__wrmsr(APIC_BASE_MSR + (APIC_EOI >> 4), APIC_EOI_ACK, 0);
196 }
197 
198 static inline u32 native_apic_msr_read(u32 reg)
199 {
200 	u64 msr;
201 
202 	if (reg == APIC_DFR)
203 		return -1;
204 
205 	rdmsrl(APIC_BASE_MSR + (reg >> 4), msr);
206 	return (u32)msr;
207 }
208 
209 static inline void native_x2apic_icr_write(u32 low, u32 id)
210 {
211 	wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
212 }
213 
214 static inline u64 native_x2apic_icr_read(void)
215 {
216 	unsigned long val;
217 
218 	rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
219 	return val;
220 }
221 
222 extern int x2apic_mode;
223 extern int x2apic_phys;
224 extern void __init x2apic_set_max_apicid(u32 apicid);
225 extern void x2apic_setup(void);
226 static inline int x2apic_enabled(void)
227 {
228 	return boot_cpu_has(X86_FEATURE_X2APIC) && apic_is_x2apic_enabled();
229 }
230 
231 #define x2apic_supported()	(boot_cpu_has(X86_FEATURE_X2APIC))
232 #else /* !CONFIG_X86_X2APIC */
233 static inline void x2apic_setup(void) { }
234 static inline int x2apic_enabled(void) { return 0; }
235 static inline u32 native_apic_msr_read(u32 reg) { BUG(); }
236 #define x2apic_mode		(0)
237 #define	x2apic_supported()	(0)
238 #endif /* !CONFIG_X86_X2APIC */
239 extern void __init check_x2apic(void);
240 
241 struct irq_data;
242 
243 /*
244  * Copyright 2004 James Cleverdon, IBM.
245  *
246  * Generic APIC sub-arch data struct.
247  *
248  * Hacked for x86-64 by James Cleverdon from i386 architecture code by
249  * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
250  * James Cleverdon.
251  */
252 struct apic {
253 	/* Hotpath functions first */
254 	void	(*eoi_write)(u32 reg, u32 v);
255 	void	(*native_eoi_write)(u32 reg, u32 v);
256 	void	(*write)(u32 reg, u32 v);
257 	u32	(*read)(u32 reg);
258 
259 	/* IPI related functions */
260 	void	(*wait_icr_idle)(void);
261 	u32	(*safe_wait_icr_idle)(void);
262 
263 	void	(*send_IPI)(int cpu, int vector);
264 	void	(*send_IPI_mask)(const struct cpumask *mask, int vector);
265 	void	(*send_IPI_mask_allbutself)(const struct cpumask *msk, int vec);
266 	void	(*send_IPI_allbutself)(int vector);
267 	void	(*send_IPI_all)(int vector);
268 	void	(*send_IPI_self)(int vector);
269 
270 	u32	disable_esr;
271 
272 	enum apic_delivery_modes delivery_mode;
273 	bool	dest_mode_logical;
274 
275 	u32	(*calc_dest_apicid)(unsigned int cpu);
276 
277 	/* ICR related functions */
278 	u64	(*icr_read)(void);
279 	void	(*icr_write)(u32 low, u32 high);
280 
281 	/* Probe, setup and smpboot functions */
282 	int	(*probe)(void);
283 	int	(*acpi_madt_oem_check)(char *oem_id, char *oem_table_id);
284 	int	(*apic_id_valid)(u32 apicid);
285 	bool	(*apic_id_registered)(void);
286 
287 	bool	(*check_apicid_used)(physid_mask_t *map, int apicid);
288 	void	(*init_apic_ldr)(void);
289 	void	(*ioapic_phys_id_map)(physid_mask_t *phys_map, physid_mask_t *retmap);
290 	int	(*cpu_present_to_apicid)(int mps_cpu);
291 	int	(*phys_pkg_id)(int cpuid_apic, int index_msb);
292 
293 	u32	(*get_apic_id)(unsigned long x);
294 	u32	(*set_apic_id)(unsigned int id);
295 
296 	/* wakeup_secondary_cpu */
297 	int	(*wakeup_secondary_cpu)(int apicid, unsigned long start_eip);
298 	/* wakeup secondary CPU using 64-bit wakeup point */
299 	int	(*wakeup_secondary_cpu_64)(int apicid, unsigned long start_eip);
300 
301 	char	*name;
302 };
303 
304 /*
305  * Pointer to the local APIC driver in use on this system (there's
306  * always just one such driver in use - the kernel decides via an
307  * early probing process which one it picks - and then sticks to it):
308  */
309 extern struct apic *apic;
310 
311 /*
312  * APIC drivers are probed based on how they are listed in the .apicdrivers
313  * section. So the order is important and enforced by the ordering
314  * of different apic driver files in the Makefile.
315  *
316  * For the files having two apic drivers, we use apic_drivers()
317  * to enforce the order with in them.
318  */
319 #define apic_driver(sym)					\
320 	static const struct apic *__apicdrivers_##sym __used		\
321 	__aligned(sizeof(struct apic *))			\
322 	__section(".apicdrivers") = { &sym }
323 
324 #define apic_drivers(sym1, sym2)					\
325 	static struct apic *__apicdrivers_##sym1##sym2[2] __used	\
326 	__aligned(sizeof(struct apic *))				\
327 	__section(".apicdrivers") = { &sym1, &sym2 }
328 
329 extern struct apic *__apicdrivers[], *__apicdrivers_end[];
330 
331 /*
332  * APIC functionality to boot other CPUs - only used on SMP:
333  */
334 #ifdef CONFIG_SMP
335 extern int lapic_can_unplug_cpu(void);
336 #endif
337 
338 #ifdef CONFIG_X86_LOCAL_APIC
339 
340 static inline u32 apic_read(u32 reg)
341 {
342 	return apic->read(reg);
343 }
344 
345 static inline void apic_write(u32 reg, u32 val)
346 {
347 	apic->write(reg, val);
348 }
349 
350 static inline void apic_eoi(void)
351 {
352 	apic->eoi_write(APIC_EOI, APIC_EOI_ACK);
353 }
354 
355 static inline u64 apic_icr_read(void)
356 {
357 	return apic->icr_read();
358 }
359 
360 static inline void apic_icr_write(u32 low, u32 high)
361 {
362 	apic->icr_write(low, high);
363 }
364 
365 static inline void apic_wait_icr_idle(void)
366 {
367 	if (apic->wait_icr_idle)
368 		apic->wait_icr_idle();
369 }
370 
371 static inline u32 safe_apic_wait_icr_idle(void)
372 {
373 	return apic->safe_wait_icr_idle ? apic->safe_wait_icr_idle() : 0;
374 }
375 
376 extern void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v));
377 
378 #else /* CONFIG_X86_LOCAL_APIC */
379 
380 static inline u32 apic_read(u32 reg) { return 0; }
381 static inline void apic_write(u32 reg, u32 val) { }
382 static inline void apic_eoi(void) { }
383 static inline u64 apic_icr_read(void) { return 0; }
384 static inline void apic_icr_write(u32 low, u32 high) { }
385 static inline void apic_wait_icr_idle(void) { }
386 static inline u32 safe_apic_wait_icr_idle(void) { return 0; }
387 static inline void apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v)) {}
388 
389 #endif /* CONFIG_X86_LOCAL_APIC */
390 
391 extern void apic_ack_irq(struct irq_data *data);
392 
393 static inline void ack_APIC_irq(void)
394 {
395 	/*
396 	 * ack_APIC_irq() actually gets compiled as a single instruction
397 	 * ... yummie.
398 	 */
399 	apic_eoi();
400 }
401 
402 
403 static inline bool lapic_vector_set_in_irr(unsigned int vector)
404 {
405 	u32 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
406 
407 	return !!(irr & (1U << (vector % 32)));
408 }
409 
410 static inline unsigned default_get_apic_id(unsigned long x)
411 {
412 	unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));
413 
414 	if (APIC_XAPIC(ver) || boot_cpu_has(X86_FEATURE_EXTD_APICID))
415 		return (x >> 24) & 0xFF;
416 	else
417 		return (x >> 24) & 0x0F;
418 }
419 
420 /*
421  * Warm reset vector position:
422  */
423 #define TRAMPOLINE_PHYS_LOW		0x467
424 #define TRAMPOLINE_PHYS_HIGH		0x469
425 
426 extern void generic_bigsmp_probe(void);
427 
428 #ifdef CONFIG_X86_LOCAL_APIC
429 
430 #include <asm/smp.h>
431 
432 extern struct apic apic_noop;
433 
434 static inline unsigned int read_apic_id(void)
435 {
436 	unsigned int reg = apic_read(APIC_ID);
437 
438 	return apic->get_apic_id(reg);
439 }
440 
441 #ifdef CONFIG_X86_64
442 typedef int (*wakeup_cpu_handler)(int apicid, unsigned long start_eip);
443 extern void acpi_wake_cpu_handler_update(wakeup_cpu_handler handler);
444 extern int default_acpi_madt_oem_check(char *, char *);
445 extern void x86_64_probe_apic(void);
446 #else
447 static inline int default_acpi_madt_oem_check(char *a, char *b) { return 0; }
448 static inline void x86_64_probe_apic(void) { }
449 #endif
450 
451 extern int default_apic_id_valid(u32 apicid);
452 
453 extern u32 apic_default_calc_apicid(unsigned int cpu);
454 extern u32 apic_flat_calc_apicid(unsigned int cpu);
455 
456 extern bool default_check_apicid_used(physid_mask_t *map, int apicid);
457 extern void default_ioapic_phys_id_map(physid_mask_t *phys_map, physid_mask_t *retmap);
458 extern int default_cpu_present_to_apicid(int mps_cpu);
459 
460 #else /* CONFIG_X86_LOCAL_APIC */
461 
462 static inline unsigned int read_apic_id(void) { return 0; }
463 
464 #endif /* !CONFIG_X86_LOCAL_APIC */
465 
466 #ifdef CONFIG_SMP
467 void apic_smt_update(void);
468 #else
469 static inline void apic_smt_update(void) { }
470 #endif
471 
472 struct msi_msg;
473 struct irq_cfg;
474 
475 extern void __irq_msi_compose_msg(struct irq_cfg *cfg, struct msi_msg *msg,
476 				  bool dmar);
477 
478 extern void ioapic_zap_locks(void);
479 
480 #endif /* _ASM_X86_APIC_H */
481