xref: /openbmc/linux/arch/x86/include/asm/apic.h (revision 2a43195d)
11965aae3SH. Peter Anvin #ifndef _ASM_X86_APIC_H
21965aae3SH. Peter Anvin #define _ASM_X86_APIC_H
3bb898558SAl Viro 
4e2780a68SIngo Molnar #include <linux/cpumask.h>
5e2780a68SIngo Molnar #include <linux/pm.h>
6bb898558SAl Viro 
7bb898558SAl Viro #include <asm/alternative.h>
8bb898558SAl Viro #include <asm/cpufeature.h>
9e2780a68SIngo Molnar #include <asm/processor.h>
10e2780a68SIngo Molnar #include <asm/apicdef.h>
1160063497SArun Sharma #include <linux/atomic.h>
12e2780a68SIngo Molnar #include <asm/fixmap.h>
13e2780a68SIngo Molnar #include <asm/mpspec.h>
14bb898558SAl Viro #include <asm/msr.h>
15bb898558SAl Viro 
16bb898558SAl Viro #define ARCH_APICTIMER_STOPS_ON_C3	1
17bb898558SAl Viro 
18bb898558SAl Viro /*
19bb898558SAl Viro  * Debugging macros
20bb898558SAl Viro  */
21bb898558SAl Viro #define APIC_QUIET   0
22bb898558SAl Viro #define APIC_VERBOSE 1
23bb898558SAl Viro #define APIC_DEBUG   2
24bb898558SAl Viro 
25bb898558SAl Viro /*
26bb898558SAl Viro  * Define the default level of output to be very little
27bb898558SAl Viro  * This can be turned up by using apic=verbose for more
28bb898558SAl Viro  * information and apic=debug for _lots_ of information.
29bb898558SAl Viro  * apic_verbosity is defined in apic.c
30bb898558SAl Viro  */
31bb898558SAl Viro #define apic_printk(v, s, a...) do {       \
32bb898558SAl Viro 		if ((v) <= apic_verbosity) \
33bb898558SAl Viro 			printk(s, ##a);    \
34bb898558SAl Viro 	} while (0)
35bb898558SAl Viro 
36bb898558SAl Viro 
37160d8dacSIngo Molnar #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
38bb898558SAl Viro extern void generic_apic_probe(void);
39160d8dacSIngo Molnar #else
40160d8dacSIngo Molnar static inline void generic_apic_probe(void)
41160d8dacSIngo Molnar {
42160d8dacSIngo Molnar }
43160d8dacSIngo Molnar #endif
44bb898558SAl Viro 
45bb898558SAl Viro #ifdef CONFIG_X86_LOCAL_APIC
46bb898558SAl Viro 
47bb898558SAl Viro extern unsigned int apic_verbosity;
48bb898558SAl Viro extern int local_apic_timer_c2_ok;
49bb898558SAl Viro 
50bb898558SAl Viro extern int disable_apic;
511ade93efSJacob Pan extern unsigned int lapic_timer_frequency;
520939e4fdSIngo Molnar 
530939e4fdSIngo Molnar #ifdef CONFIG_SMP
540939e4fdSIngo Molnar extern void __inquire_remote_apic(int apicid);
550939e4fdSIngo Molnar #else /* CONFIG_SMP */
560939e4fdSIngo Molnar static inline void __inquire_remote_apic(int apicid)
570939e4fdSIngo Molnar {
580939e4fdSIngo Molnar }
590939e4fdSIngo Molnar #endif /* CONFIG_SMP */
600939e4fdSIngo Molnar 
610939e4fdSIngo Molnar static inline void default_inquire_remote_apic(int apicid)
620939e4fdSIngo Molnar {
630939e4fdSIngo Molnar 	if (apic_verbosity >= APIC_DEBUG)
640939e4fdSIngo Molnar 		__inquire_remote_apic(apicid);
650939e4fdSIngo Molnar }
660939e4fdSIngo Molnar 
67bb898558SAl Viro /*
688312136fSCyrill Gorcunov  * With 82489DX we can't rely on apic feature bit
698312136fSCyrill Gorcunov  * retrieved via cpuid but still have to deal with
708312136fSCyrill Gorcunov  * such an apic chip so we assume that SMP configuration
718312136fSCyrill Gorcunov  * is found from MP table (64bit case uses ACPI mostly
728312136fSCyrill Gorcunov  * which set smp presence flag as well so we are safe
738312136fSCyrill Gorcunov  * to use this helper too).
748312136fSCyrill Gorcunov  */
758312136fSCyrill Gorcunov static inline bool apic_from_smp_config(void)
768312136fSCyrill Gorcunov {
778312136fSCyrill Gorcunov 	return smp_found_config && !disable_apic;
788312136fSCyrill Gorcunov }
798312136fSCyrill Gorcunov 
808312136fSCyrill Gorcunov /*
81bb898558SAl Viro  * Basic functions accessing APICs.
82bb898558SAl Viro  */
83bb898558SAl Viro #ifdef CONFIG_PARAVIRT
84bb898558SAl Viro #include <asm/paravirt.h>
85bb898558SAl Viro #endif
86bb898558SAl Viro 
8770511134SRavikiran G Thirumalai #ifdef CONFIG_X86_64
88bb898558SAl Viro extern int is_vsmp_box(void);
89129d8bc8SYinghai Lu #else
90129d8bc8SYinghai Lu static inline int is_vsmp_box(void)
91129d8bc8SYinghai Lu {
92129d8bc8SYinghai Lu 	return 0;
93129d8bc8SYinghai Lu }
94129d8bc8SYinghai Lu #endif
95bb898558SAl Viro extern void xapic_wait_icr_idle(void);
96bb898558SAl Viro extern u32 safe_xapic_wait_icr_idle(void);
97bb898558SAl Viro extern void xapic_icr_write(u32, u32);
98bb898558SAl Viro extern int setup_profiling_timer(unsigned int);
99bb898558SAl Viro 
100bb898558SAl Viro static inline void native_apic_mem_write(u32 reg, u32 v)
101bb898558SAl Viro {
102bb898558SAl Viro 	volatile u32 *addr = (volatile u32 *)(APIC_BASE + reg);
103bb898558SAl Viro 
104bb898558SAl Viro 	alternative_io("movl %0, %1", "xchgl %0, %1", X86_FEATURE_11AP,
105bb898558SAl Viro 		       ASM_OUTPUT2("=r" (v), "=m" (*addr)),
106bb898558SAl Viro 		       ASM_OUTPUT2("0" (v), "m" (*addr)));
107bb898558SAl Viro }
108bb898558SAl Viro 
109bb898558SAl Viro static inline u32 native_apic_mem_read(u32 reg)
110bb898558SAl Viro {
111bb898558SAl Viro 	return *((volatile u32 *)(APIC_BASE + reg));
112bb898558SAl Viro }
113bb898558SAl Viro 
114c1eeb2deSYinghai Lu extern void native_apic_wait_icr_idle(void);
115c1eeb2deSYinghai Lu extern u32 native_safe_apic_wait_icr_idle(void);
116c1eeb2deSYinghai Lu extern void native_apic_icr_write(u32 low, u32 id);
117c1eeb2deSYinghai Lu extern u64 native_apic_icr_read(void);
118c1eeb2deSYinghai Lu 
119fc1edaf9SSuresh Siddha extern int x2apic_mode;
120b24696bcSFenghua Yu 
121d0b03bd1SHan, Weidong #ifdef CONFIG_X86_X2APIC
122ce4e240cSSuresh Siddha /*
123ce4e240cSSuresh Siddha  * Make previous memory operations globally visible before
124ce4e240cSSuresh Siddha  * sending the IPI through x2apic wrmsr. We need a serializing instruction or
125ce4e240cSSuresh Siddha  * mfence for this.
126ce4e240cSSuresh Siddha  */
127ce4e240cSSuresh Siddha static inline void x2apic_wrmsr_fence(void)
128ce4e240cSSuresh Siddha {
129ce4e240cSSuresh Siddha 	asm volatile("mfence" : : : "memory");
130ce4e240cSSuresh Siddha }
131ce4e240cSSuresh Siddha 
132bb898558SAl Viro static inline void native_apic_msr_write(u32 reg, u32 v)
133bb898558SAl Viro {
134bb898558SAl Viro 	if (reg == APIC_DFR || reg == APIC_ID || reg == APIC_LDR ||
135bb898558SAl Viro 	    reg == APIC_LVR)
136bb898558SAl Viro 		return;
137bb898558SAl Viro 
138bb898558SAl Viro 	wrmsr(APIC_BASE_MSR + (reg >> 4), v, 0);
139bb898558SAl Viro }
140bb898558SAl Viro 
141bb898558SAl Viro static inline u32 native_apic_msr_read(u32 reg)
142bb898558SAl Viro {
1430059b243SAndi Kleen 	u64 msr;
144bb898558SAl Viro 
145bb898558SAl Viro 	if (reg == APIC_DFR)
146bb898558SAl Viro 		return -1;
147bb898558SAl Viro 
1480059b243SAndi Kleen 	rdmsrl(APIC_BASE_MSR + (reg >> 4), msr);
1490059b243SAndi Kleen 	return (u32)msr;
150bb898558SAl Viro }
151bb898558SAl Viro 
152c1eeb2deSYinghai Lu static inline void native_x2apic_wait_icr_idle(void)
153c1eeb2deSYinghai Lu {
154c1eeb2deSYinghai Lu 	/* no need to wait for icr idle in x2apic */
155c1eeb2deSYinghai Lu 	return;
156c1eeb2deSYinghai Lu }
157c1eeb2deSYinghai Lu 
158c1eeb2deSYinghai Lu static inline u32 native_safe_x2apic_wait_icr_idle(void)
159c1eeb2deSYinghai Lu {
160c1eeb2deSYinghai Lu 	/* no need to wait for icr idle in x2apic */
161c1eeb2deSYinghai Lu 	return 0;
162c1eeb2deSYinghai Lu }
163c1eeb2deSYinghai Lu 
164c1eeb2deSYinghai Lu static inline void native_x2apic_icr_write(u32 low, u32 id)
165c1eeb2deSYinghai Lu {
166c1eeb2deSYinghai Lu 	wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
167c1eeb2deSYinghai Lu }
168c1eeb2deSYinghai Lu 
169c1eeb2deSYinghai Lu static inline u64 native_x2apic_icr_read(void)
170c1eeb2deSYinghai Lu {
171c1eeb2deSYinghai Lu 	unsigned long val;
172c1eeb2deSYinghai Lu 
173c1eeb2deSYinghai Lu 	rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
174c1eeb2deSYinghai Lu 	return val;
175c1eeb2deSYinghai Lu }
176c1eeb2deSYinghai Lu 
177fc1edaf9SSuresh Siddha extern int x2apic_phys;
178fb209bd8SYinghai Lu extern int x2apic_preenabled;
179bb898558SAl Viro extern void check_x2apic(void);
180bb898558SAl Viro extern void enable_x2apic(void);
181bb898558SAl Viro extern void x2apic_icr_write(u32 low, u32 id);
182bb898558SAl Viro static inline int x2apic_enabled(void)
183bb898558SAl Viro {
1840059b243SAndi Kleen 	u64 msr;
185bb898558SAl Viro 
186bb898558SAl Viro 	if (!cpu_has_x2apic)
187bb898558SAl Viro 		return 0;
188bb898558SAl Viro 
1890059b243SAndi Kleen 	rdmsrl(MSR_IA32_APICBASE, msr);
190bb898558SAl Viro 	if (msr & X2APIC_ENABLE)
191bb898558SAl Viro 		return 1;
192bb898558SAl Viro 	return 0;
193bb898558SAl Viro }
194fc1edaf9SSuresh Siddha 
195fc1edaf9SSuresh Siddha #define x2apic_supported()	(cpu_has_x2apic)
196ce69a784SGleb Natapov static inline void x2apic_force_phys(void)
197ce69a784SGleb Natapov {
198ce69a784SGleb Natapov 	x2apic_phys = 1;
199ce69a784SGleb Natapov }
200bb898558SAl Viro #else
201fb209bd8SYinghai Lu static inline void disable_x2apic(void)
202fb209bd8SYinghai Lu {
203fb209bd8SYinghai Lu }
20406cd9a7dSYinghai Lu static inline void check_x2apic(void)
20506cd9a7dSYinghai Lu {
20606cd9a7dSYinghai Lu }
20706cd9a7dSYinghai Lu static inline void enable_x2apic(void)
20806cd9a7dSYinghai Lu {
20906cd9a7dSYinghai Lu }
21006cd9a7dSYinghai Lu static inline int x2apic_enabled(void)
21106cd9a7dSYinghai Lu {
21206cd9a7dSYinghai Lu 	return 0;
21306cd9a7dSYinghai Lu }
214ce69a784SGleb Natapov static inline void x2apic_force_phys(void)
215ce69a784SGleb Natapov {
216ce69a784SGleb Natapov }
217cf6567feSSuresh Siddha 
218a31bc327SYinghai Lu #define	nox2apic	0
21993758238SWeidong Han #define	x2apic_preenabled 0
220fc1edaf9SSuresh Siddha #define	x2apic_supported()	0
221bb898558SAl Viro #endif
222bb898558SAl Viro 
22393758238SWeidong Han extern void enable_IR_x2apic(void);
22493758238SWeidong Han 
225bb898558SAl Viro extern int get_physical_broadcast(void);
226bb898558SAl Viro 
227bb898558SAl Viro extern int lapic_get_maxlvt(void);
228bb898558SAl Viro extern void clear_local_APIC(void);
229bb898558SAl Viro extern void connect_bsp_APIC(void);
230bb898558SAl Viro extern void disconnect_bsp_APIC(int virt_wire_setup);
231bb898558SAl Viro extern void disable_local_APIC(void);
232bb898558SAl Viro extern void lapic_shutdown(void);
233bb898558SAl Viro extern int verify_local_APIC(void);
234bb898558SAl Viro extern void sync_Arb_IDs(void);
235bb898558SAl Viro extern void init_bsp_APIC(void);
236bb898558SAl Viro extern void setup_local_APIC(void);
237bb898558SAl Viro extern void end_local_APIC_setup(void);
2382fb270f3SJan Beulich extern void bsp_end_local_APIC_setup(void);
239bb898558SAl Viro extern void init_apic_mappings(void);
240c0104d38SYinghai Lu void register_lapic_address(unsigned long address);
241bb898558SAl Viro extern void setup_boot_APIC_clock(void);
242bb898558SAl Viro extern void setup_secondary_APIC_clock(void);
243bb898558SAl Viro extern int APIC_init_uniprocessor(void);
244a906fdaaSThomas Gleixner extern int apic_force_enable(unsigned long addr);
245bb898558SAl Viro 
246bb898558SAl Viro /*
247bb898558SAl Viro  * On 32bit this is mach-xxx local
248bb898558SAl Viro  */
249bb898558SAl Viro #ifdef CONFIG_X86_64
250bb898558SAl Viro extern int apic_is_clustered_box(void);
251bb898558SAl Viro #else
252bb898558SAl Viro static inline int apic_is_clustered_box(void)
253bb898558SAl Viro {
254bb898558SAl Viro 	return 0;
255bb898558SAl Viro }
256bb898558SAl Viro #endif
257bb898558SAl Viro 
25827afdf20SRobert Richter extern int setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask);
259bb898558SAl Viro 
260bb898558SAl Viro #else /* !CONFIG_X86_LOCAL_APIC */
261bb898558SAl Viro static inline void lapic_shutdown(void) { }
262bb898558SAl Viro #define local_apic_timer_c2_ok		1
263bb898558SAl Viro static inline void init_apic_mappings(void) { }
264d3ec5caeSIvan Vecera static inline void disable_local_APIC(void) { }
265736decacSThomas Gleixner # define setup_boot_APIC_clock x86_init_noop
266736decacSThomas Gleixner # define setup_secondary_APIC_clock x86_init_noop
267bb898558SAl Viro #endif /* !CONFIG_X86_LOCAL_APIC */
268bb898558SAl Viro 
2691f75ed0cSIngo Molnar #ifdef CONFIG_X86_64
2701f75ed0cSIngo Molnar #define	SET_APIC_ID(x)		(apic->set_apic_id(x))
2711f75ed0cSIngo Molnar #else
2721f75ed0cSIngo Molnar 
2731f75ed0cSIngo Molnar #endif
2741f75ed0cSIngo Molnar 
275e2780a68SIngo Molnar /*
276e2780a68SIngo Molnar  * Copyright 2004 James Cleverdon, IBM.
277e2780a68SIngo Molnar  * Subject to the GNU Public License, v.2
278e2780a68SIngo Molnar  *
279e2780a68SIngo Molnar  * Generic APIC sub-arch data struct.
280e2780a68SIngo Molnar  *
281e2780a68SIngo Molnar  * Hacked for x86-64 by James Cleverdon from i386 architecture code by
282e2780a68SIngo Molnar  * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
283e2780a68SIngo Molnar  * James Cleverdon.
284e2780a68SIngo Molnar  */
285be163a15SIngo Molnar struct apic {
286e2780a68SIngo Molnar 	char *name;
287e2780a68SIngo Molnar 
288e2780a68SIngo Molnar 	int (*probe)(void);
289e2780a68SIngo Molnar 	int (*acpi_madt_oem_check)(char *oem_id, char *oem_table_id);
290fa63030eSDaniel J Blueman 	int (*apic_id_valid)(int apicid);
291e2780a68SIngo Molnar 	int (*apic_id_registered)(void);
292e2780a68SIngo Molnar 
293e2780a68SIngo Molnar 	u32 irq_delivery_mode;
294e2780a68SIngo Molnar 	u32 irq_dest_mode;
295e2780a68SIngo Molnar 
296e2780a68SIngo Molnar 	const struct cpumask *(*target_cpus)(void);
297e2780a68SIngo Molnar 
298e2780a68SIngo Molnar 	int disable_esr;
299e2780a68SIngo Molnar 
300e2780a68SIngo Molnar 	int dest_logical;
3017abc0753SCyrill Gorcunov 	unsigned long (*check_apicid_used)(physid_mask_t *map, int apicid);
302e2780a68SIngo Molnar 	unsigned long (*check_apicid_present)(int apicid);
303e2780a68SIngo Molnar 
304e2780a68SIngo Molnar 	void (*vector_allocation_domain)(int cpu, struct cpumask *retmask);
305e2780a68SIngo Molnar 	void (*init_apic_ldr)(void);
306e2780a68SIngo Molnar 
3077abc0753SCyrill Gorcunov 	void (*ioapic_phys_id_map)(physid_mask_t *phys_map, physid_mask_t *retmap);
308e2780a68SIngo Molnar 
309e2780a68SIngo Molnar 	void (*setup_apic_routing)(void);
310e2780a68SIngo Molnar 	int (*multi_timer_check)(int apic, int irq);
311e2780a68SIngo Molnar 	int (*cpu_present_to_apicid)(int mps_cpu);
3127abc0753SCyrill Gorcunov 	void (*apicid_to_cpu_present)(int phys_apicid, physid_mask_t *retmap);
313e2780a68SIngo Molnar 	void (*setup_portio_remap)(void);
314e11dadabSThomas Gleixner 	int (*check_phys_apicid_present)(int phys_apicid);
315e2780a68SIngo Molnar 	void (*enable_apic_mode)(void);
316e2780a68SIngo Molnar 	int (*phys_pkg_id)(int cpuid_apic, int index_msb);
317e2780a68SIngo Molnar 
318e2780a68SIngo Molnar 	/*
319be163a15SIngo Molnar 	 * When one of the next two hooks returns 1 the apic
320e2780a68SIngo Molnar 	 * is switched to this. Essentially they are additional
321e2780a68SIngo Molnar 	 * probe functions:
322e2780a68SIngo Molnar 	 */
323e2780a68SIngo Molnar 	int (*mps_oem_check)(struct mpc_table *mpc, char *oem, char *productid);
324e2780a68SIngo Molnar 
325e2780a68SIngo Molnar 	unsigned int (*get_apic_id)(unsigned long x);
326e2780a68SIngo Molnar 	unsigned long (*set_apic_id)(unsigned int id);
327e2780a68SIngo Molnar 	unsigned long apic_id_mask;
328e2780a68SIngo Molnar 
329e2780a68SIngo Molnar 	unsigned int (*cpu_mask_to_apicid)(const struct cpumask *cpumask);
330e2780a68SIngo Molnar 	unsigned int (*cpu_mask_to_apicid_and)(const struct cpumask *cpumask,
331e2780a68SIngo Molnar 					       const struct cpumask *andmask);
332e2780a68SIngo Molnar 
333e2780a68SIngo Molnar 	/* ipi */
334e2780a68SIngo Molnar 	void (*send_IPI_mask)(const struct cpumask *mask, int vector);
335e2780a68SIngo Molnar 	void (*send_IPI_mask_allbutself)(const struct cpumask *mask,
336e2780a68SIngo Molnar 					 int vector);
337e2780a68SIngo Molnar 	void (*send_IPI_allbutself)(int vector);
338e2780a68SIngo Molnar 	void (*send_IPI_all)(int vector);
339e2780a68SIngo Molnar 	void (*send_IPI_self)(int vector);
340e2780a68SIngo Molnar 
341e2780a68SIngo Molnar 	/* wakeup_secondary_cpu */
3421f5bcabfSIngo Molnar 	int (*wakeup_secondary_cpu)(int apicid, unsigned long start_eip);
343e2780a68SIngo Molnar 
344e2780a68SIngo Molnar 	int trampoline_phys_low;
345e2780a68SIngo Molnar 	int trampoline_phys_high;
346e2780a68SIngo Molnar 
347e2780a68SIngo Molnar 	void (*wait_for_init_deassert)(atomic_t *deassert);
348e2780a68SIngo Molnar 	void (*smp_callin_clear_local_apic)(void);
349e2780a68SIngo Molnar 	void (*inquire_remote_apic)(int apicid);
350e2780a68SIngo Molnar 
351e2780a68SIngo Molnar 	/* apic ops */
352e2780a68SIngo Molnar 	u32 (*read)(u32 reg);
353e2780a68SIngo Molnar 	void (*write)(u32 reg, u32 v);
3542a43195dSMichael S. Tsirkin 	/*
3552a43195dSMichael S. Tsirkin 	 * ->eoi_write() has the same signature as ->write().
3562a43195dSMichael S. Tsirkin 	 *
3572a43195dSMichael S. Tsirkin 	 * Drivers can support both ->eoi_write() and ->write() by passing the same
3582a43195dSMichael S. Tsirkin 	 * callback value. Kernel can override ->eoi_write() and fall back
3592a43195dSMichael S. Tsirkin 	 * on write for EOI.
3602a43195dSMichael S. Tsirkin 	 */
3612a43195dSMichael S. Tsirkin 	void (*eoi_write)(u32 reg, u32 v);
362e2780a68SIngo Molnar 	u64 (*icr_read)(void);
363e2780a68SIngo Molnar 	void (*icr_write)(u32 low, u32 high);
364e2780a68SIngo Molnar 	void (*wait_icr_idle)(void);
365e2780a68SIngo Molnar 	u32 (*safe_wait_icr_idle)(void);
366acb8bc09STejun Heo 
367acb8bc09STejun Heo #ifdef CONFIG_X86_32
368acb8bc09STejun Heo 	/*
369acb8bc09STejun Heo 	 * Called very early during boot from get_smp_config().  It should
370acb8bc09STejun Heo 	 * return the logical apicid.  x86_[bios]_cpu_to_apicid is
371acb8bc09STejun Heo 	 * initialized before this function is called.
372acb8bc09STejun Heo 	 *
373acb8bc09STejun Heo 	 * If logical apicid can't be determined that early, the function
374acb8bc09STejun Heo 	 * may return BAD_APICID.  Logical apicid will be configured after
375acb8bc09STejun Heo 	 * init_apic_ldr() while bringing up CPUs.  Note that NUMA affinity
376acb8bc09STejun Heo 	 * won't be applied properly during early boot in this case.
377acb8bc09STejun Heo 	 */
378acb8bc09STejun Heo 	int (*x86_32_early_logical_apicid)(int cpu);
37989e5dc21STejun Heo 
38084914ed0STejun Heo 	/*
38184914ed0STejun Heo 	 * Optional method called from setup_local_APIC() after logical
38284914ed0STejun Heo 	 * apicid is guaranteed to be known to initialize apicid -> node
38384914ed0STejun Heo 	 * mapping if NUMA initialization hasn't done so already.  Don't
38484914ed0STejun Heo 	 * add new users.
38584914ed0STejun Heo 	 */
38689e5dc21STejun Heo 	int (*x86_32_numa_cpu_node)(int cpu);
387acb8bc09STejun Heo #endif
388e2780a68SIngo Molnar };
389e2780a68SIngo Molnar 
3900917c01fSIngo Molnar /*
3910917c01fSIngo Molnar  * Pointer to the local APIC driver in use on this system (there's
3920917c01fSIngo Molnar  * always just one such driver in use - the kernel decides via an
3930917c01fSIngo Molnar  * early probing process which one it picks - and then sticks to it):
3940917c01fSIngo Molnar  */
395be163a15SIngo Molnar extern struct apic *apic;
3960917c01fSIngo Molnar 
3970917c01fSIngo Molnar /*
398107e0e0cSSuresh Siddha  * APIC drivers are probed based on how they are listed in the .apicdrivers
399107e0e0cSSuresh Siddha  * section. So the order is important and enforced by the ordering
400107e0e0cSSuresh Siddha  * of different apic driver files in the Makefile.
401107e0e0cSSuresh Siddha  *
402107e0e0cSSuresh Siddha  * For the files having two apic drivers, we use apic_drivers()
403107e0e0cSSuresh Siddha  * to enforce the order with in them.
404107e0e0cSSuresh Siddha  */
405107e0e0cSSuresh Siddha #define apic_driver(sym)					\
406107e0e0cSSuresh Siddha 	static struct apic *__apicdrivers_##sym __used		\
407107e0e0cSSuresh Siddha 	__aligned(sizeof(struct apic *))			\
408107e0e0cSSuresh Siddha 	__section(.apicdrivers) = { &sym }
409107e0e0cSSuresh Siddha 
410107e0e0cSSuresh Siddha #define apic_drivers(sym1, sym2)					\
411107e0e0cSSuresh Siddha 	static struct apic *__apicdrivers_##sym1##sym2[2] __used	\
412107e0e0cSSuresh Siddha 	__aligned(sizeof(struct apic *))				\
413107e0e0cSSuresh Siddha 	__section(.apicdrivers) = { &sym1, &sym2 }
414107e0e0cSSuresh Siddha 
415107e0e0cSSuresh Siddha extern struct apic *__apicdrivers[], *__apicdrivers_end[];
416107e0e0cSSuresh Siddha 
417107e0e0cSSuresh Siddha /*
4180917c01fSIngo Molnar  * APIC functionality to boot other CPUs - only used on SMP:
4190917c01fSIngo Molnar  */
4200917c01fSIngo Molnar #ifdef CONFIG_SMP
4212b6163bfSYinghai Lu extern atomic_t init_deasserted;
4222b6163bfSYinghai Lu extern int wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip);
4230917c01fSIngo Molnar #endif
424e2780a68SIngo Molnar 
425d674cd19SCyrill Gorcunov #ifdef CONFIG_X86_LOCAL_APIC
426346b46beSFernando Luis Vázquez Cao 
427e2780a68SIngo Molnar static inline u32 apic_read(u32 reg)
428e2780a68SIngo Molnar {
429e2780a68SIngo Molnar 	return apic->read(reg);
430e2780a68SIngo Molnar }
431e2780a68SIngo Molnar 
432e2780a68SIngo Molnar static inline void apic_write(u32 reg, u32 val)
433e2780a68SIngo Molnar {
434e2780a68SIngo Molnar 	apic->write(reg, val);
435e2780a68SIngo Molnar }
436e2780a68SIngo Molnar 
4372a43195dSMichael S. Tsirkin static inline void apic_eoi(void)
4382a43195dSMichael S. Tsirkin {
4392a43195dSMichael S. Tsirkin 	apic->eoi_write(APIC_EOI, APIC_EOI_ACK);
4402a43195dSMichael S. Tsirkin }
4412a43195dSMichael S. Tsirkin 
442e2780a68SIngo Molnar static inline u64 apic_icr_read(void)
443e2780a68SIngo Molnar {
444e2780a68SIngo Molnar 	return apic->icr_read();
445e2780a68SIngo Molnar }
446e2780a68SIngo Molnar 
447e2780a68SIngo Molnar static inline void apic_icr_write(u32 low, u32 high)
448e2780a68SIngo Molnar {
449e2780a68SIngo Molnar 	apic->icr_write(low, high);
450e2780a68SIngo Molnar }
451e2780a68SIngo Molnar 
452e2780a68SIngo Molnar static inline void apic_wait_icr_idle(void)
453e2780a68SIngo Molnar {
454e2780a68SIngo Molnar 	apic->wait_icr_idle();
455e2780a68SIngo Molnar }
456e2780a68SIngo Molnar 
457e2780a68SIngo Molnar static inline u32 safe_apic_wait_icr_idle(void)
458e2780a68SIngo Molnar {
459e2780a68SIngo Molnar 	return apic->safe_wait_icr_idle();
460e2780a68SIngo Molnar }
461e2780a68SIngo Molnar 
462d674cd19SCyrill Gorcunov #else /* CONFIG_X86_LOCAL_APIC */
463d674cd19SCyrill Gorcunov 
464d674cd19SCyrill Gorcunov static inline u32 apic_read(u32 reg) { return 0; }
465d674cd19SCyrill Gorcunov static inline void apic_write(u32 reg, u32 val) { }
4662a43195dSMichael S. Tsirkin static inline void apic_eoi(void) { }
467d674cd19SCyrill Gorcunov static inline u64 apic_icr_read(void) { return 0; }
468d674cd19SCyrill Gorcunov static inline void apic_icr_write(u32 low, u32 high) { }
469d674cd19SCyrill Gorcunov static inline void apic_wait_icr_idle(void) { }
470d674cd19SCyrill Gorcunov static inline u32 safe_apic_wait_icr_idle(void) { return 0; }
471d674cd19SCyrill Gorcunov 
472d674cd19SCyrill Gorcunov #endif /* CONFIG_X86_LOCAL_APIC */
473e2780a68SIngo Molnar 
474e2780a68SIngo Molnar static inline void ack_APIC_irq(void)
475e2780a68SIngo Molnar {
476e2780a68SIngo Molnar 	/*
477e2780a68SIngo Molnar 	 * ack_APIC_irq() actually gets compiled as a single instruction
478e2780a68SIngo Molnar 	 * ... yummie.
479e2780a68SIngo Molnar 	 */
4802a43195dSMichael S. Tsirkin 	apic_eoi();
481e2780a68SIngo Molnar }
482e2780a68SIngo Molnar 
483e2780a68SIngo Molnar static inline unsigned default_get_apic_id(unsigned long x)
484e2780a68SIngo Molnar {
485e2780a68SIngo Molnar 	unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));
486e2780a68SIngo Molnar 
48742937e81SAndreas Herrmann 	if (APIC_XAPIC(ver) || boot_cpu_has(X86_FEATURE_EXTD_APICID))
488e2780a68SIngo Molnar 		return (x >> 24) & 0xFF;
489e2780a68SIngo Molnar 	else
490e2780a68SIngo Molnar 		return (x >> 24) & 0x0F;
491e2780a68SIngo Molnar }
492e2780a68SIngo Molnar 
493e2780a68SIngo Molnar /*
494e2780a68SIngo Molnar  * Warm reset vector default position:
495e2780a68SIngo Molnar  */
496e2780a68SIngo Molnar #define DEFAULT_TRAMPOLINE_PHYS_LOW		0x467
497e2780a68SIngo Molnar #define DEFAULT_TRAMPOLINE_PHYS_HIGH		0x469
498e2780a68SIngo Molnar 
4992b6163bfSYinghai Lu #ifdef CONFIG_X86_64
500e2780a68SIngo Molnar extern int default_acpi_madt_oem_check(char *, char *);
501e2780a68SIngo Molnar 
502e2780a68SIngo Molnar extern void apic_send_IPI_self(int vector);
503e2780a68SIngo Molnar 
504e2780a68SIngo Molnar DECLARE_PER_CPU(int, x2apic_extra_bits);
505e2780a68SIngo Molnar 
506e2780a68SIngo Molnar extern int default_cpu_present_to_apicid(int mps_cpu);
507e11dadabSThomas Gleixner extern int default_check_phys_apicid_present(int phys_apicid);
508e2780a68SIngo Molnar #endif
509e2780a68SIngo Molnar 
510e2780a68SIngo Molnar static inline void default_wait_for_init_deassert(atomic_t *deassert)
511e2780a68SIngo Molnar {
512e2780a68SIngo Molnar 	while (!atomic_read(deassert))
513e2780a68SIngo Molnar 		cpu_relax();
514e2780a68SIngo Molnar 	return;
515e2780a68SIngo Molnar }
516e2780a68SIngo Molnar 
517838312beSJan Beulich extern void generic_bigsmp_probe(void);
518e2780a68SIngo Molnar 
519e2780a68SIngo Molnar 
520e2780a68SIngo Molnar #ifdef CONFIG_X86_LOCAL_APIC
521e2780a68SIngo Molnar 
522e2780a68SIngo Molnar #include <asm/smp.h>
523e2780a68SIngo Molnar 
524e2780a68SIngo Molnar #define APIC_DFR_VALUE	(APIC_DFR_FLAT)
525e2780a68SIngo Molnar 
526e2780a68SIngo Molnar static inline const struct cpumask *default_target_cpus(void)
527e2780a68SIngo Molnar {
528e2780a68SIngo Molnar #ifdef CONFIG_SMP
529e2780a68SIngo Molnar 	return cpu_online_mask;
530e2780a68SIngo Molnar #else
531e2780a68SIngo Molnar 	return cpumask_of(0);
532e2780a68SIngo Molnar #endif
533e2780a68SIngo Molnar }
534e2780a68SIngo Molnar 
535e2780a68SIngo Molnar DECLARE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid);
536e2780a68SIngo Molnar 
537e2780a68SIngo Molnar 
538e2780a68SIngo Molnar static inline unsigned int read_apic_id(void)
539e2780a68SIngo Molnar {
540e2780a68SIngo Molnar 	unsigned int reg;
541e2780a68SIngo Molnar 
542e2780a68SIngo Molnar 	reg = apic_read(APIC_ID);
543e2780a68SIngo Molnar 
544e2780a68SIngo Molnar 	return apic->get_apic_id(reg);
545e2780a68SIngo Molnar }
546e2780a68SIngo Molnar 
547fa63030eSDaniel J Blueman static inline int default_apic_id_valid(int apicid)
548fa63030eSDaniel J Blueman {
549b7157acfSSteffen Persvold 	return (apicid < 255);
550fa63030eSDaniel J Blueman }
551fa63030eSDaniel J Blueman 
552e2780a68SIngo Molnar extern void default_setup_apic_routing(void);
553e2780a68SIngo Molnar 
5549844ab11SCyrill Gorcunov extern struct apic apic_noop;
5559844ab11SCyrill Gorcunov 
556e2780a68SIngo Molnar #ifdef CONFIG_X86_32
5572c1b284eSJaswinder Singh Rajput 
558acb8bc09STejun Heo static inline int noop_x86_32_early_logical_apicid(int cpu)
559acb8bc09STejun Heo {
560acb8bc09STejun Heo 	return BAD_APICID;
561acb8bc09STejun Heo }
562acb8bc09STejun Heo 
563e2780a68SIngo Molnar /*
564e2780a68SIngo Molnar  * Set up the logical destination ID.
565e2780a68SIngo Molnar  *
566e2780a68SIngo Molnar  * Intel recommends to set DFR, LDR and TPR before enabling
567e2780a68SIngo Molnar  * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
568e2780a68SIngo Molnar  * document number 292116).  So here it goes...
569e2780a68SIngo Molnar  */
570e2780a68SIngo Molnar extern void default_init_apic_ldr(void);
571e2780a68SIngo Molnar 
572e2780a68SIngo Molnar static inline int default_apic_id_registered(void)
573e2780a68SIngo Molnar {
574e2780a68SIngo Molnar 	return physid_isset(read_apic_id(), phys_cpu_present_map);
575e2780a68SIngo Molnar }
576e2780a68SIngo Molnar 
577f56e5034SYinghai Lu static inline int default_phys_pkg_id(int cpuid_apic, int index_msb)
578f56e5034SYinghai Lu {
579f56e5034SYinghai Lu 	return cpuid_apic >> index_msb;
580f56e5034SYinghai Lu }
581f56e5034SYinghai Lu 
582f56e5034SYinghai Lu #endif
583f56e5034SYinghai Lu 
584e2780a68SIngo Molnar static inline unsigned int
585e2780a68SIngo Molnar default_cpu_mask_to_apicid(const struct cpumask *cpumask)
586e2780a68SIngo Molnar {
587f56e5034SYinghai Lu 	return cpumask_bits(cpumask)[0] & APIC_ALL_CPUS;
588e2780a68SIngo Molnar }
589e2780a68SIngo Molnar 
590e2780a68SIngo Molnar static inline unsigned int
591e2780a68SIngo Molnar default_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
592e2780a68SIngo Molnar 			       const struct cpumask *andmask)
593e2780a68SIngo Molnar {
594e2780a68SIngo Molnar 	unsigned long mask1 = cpumask_bits(cpumask)[0];
595e2780a68SIngo Molnar 	unsigned long mask2 = cpumask_bits(andmask)[0];
596e2780a68SIngo Molnar 	unsigned long mask3 = cpumask_bits(cpu_online_mask)[0];
597e2780a68SIngo Molnar 
598e2780a68SIngo Molnar 	return (unsigned int)(mask1 & mask2 & mask3);
599e2780a68SIngo Molnar }
600e2780a68SIngo Molnar 
6017abc0753SCyrill Gorcunov static inline unsigned long default_check_apicid_used(physid_mask_t *map, int apicid)
602e2780a68SIngo Molnar {
6037abc0753SCyrill Gorcunov 	return physid_isset(apicid, *map);
604e2780a68SIngo Molnar }
605e2780a68SIngo Molnar 
606e2780a68SIngo Molnar static inline unsigned long default_check_apicid_present(int bit)
607e2780a68SIngo Molnar {
608e2780a68SIngo Molnar 	return physid_isset(bit, phys_cpu_present_map);
609e2780a68SIngo Molnar }
610e2780a68SIngo Molnar 
6117abc0753SCyrill Gorcunov static inline void default_ioapic_phys_id_map(physid_mask_t *phys_map, physid_mask_t *retmap)
612e2780a68SIngo Molnar {
6137abc0753SCyrill Gorcunov 	*retmap = *phys_map;
614e2780a68SIngo Molnar }
615e2780a68SIngo Molnar 
616e2780a68SIngo Molnar static inline int __default_cpu_present_to_apicid(int mps_cpu)
617e2780a68SIngo Molnar {
618e2780a68SIngo Molnar 	if (mps_cpu < nr_cpu_ids && cpu_present(mps_cpu))
619e2780a68SIngo Molnar 		return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu);
620e2780a68SIngo Molnar 	else
621e2780a68SIngo Molnar 		return BAD_APICID;
622e2780a68SIngo Molnar }
623e2780a68SIngo Molnar 
624e2780a68SIngo Molnar static inline int
625e11dadabSThomas Gleixner __default_check_phys_apicid_present(int phys_apicid)
626e2780a68SIngo Molnar {
627e11dadabSThomas Gleixner 	return physid_isset(phys_apicid, phys_cpu_present_map);
628e2780a68SIngo Molnar }
629e2780a68SIngo Molnar 
630e2780a68SIngo Molnar #ifdef CONFIG_X86_32
631e2780a68SIngo Molnar static inline int default_cpu_present_to_apicid(int mps_cpu)
632e2780a68SIngo Molnar {
633e2780a68SIngo Molnar 	return __default_cpu_present_to_apicid(mps_cpu);
634e2780a68SIngo Molnar }
635e2780a68SIngo Molnar 
636e2780a68SIngo Molnar static inline int
637e11dadabSThomas Gleixner default_check_phys_apicid_present(int phys_apicid)
638e2780a68SIngo Molnar {
639e11dadabSThomas Gleixner 	return __default_check_phys_apicid_present(phys_apicid);
640e2780a68SIngo Molnar }
641e2780a68SIngo Molnar #else
642e2780a68SIngo Molnar extern int default_cpu_present_to_apicid(int mps_cpu);
643e11dadabSThomas Gleixner extern int default_check_phys_apicid_present(int phys_apicid);
644e2780a68SIngo Molnar #endif
645e2780a68SIngo Molnar 
646e2780a68SIngo Molnar #endif /* CONFIG_X86_LOCAL_APIC */
647e2780a68SIngo Molnar 
6481965aae3SH. Peter Anvin #endif /* _ASM_X86_APIC_H */
649