xref: /openbmc/linux/arch/x86/kernel/apic/apic.c (revision 44eb5a7e)
1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2f62bae50SIngo Molnar /*
3f62bae50SIngo Molnar  *	Local APIC handling, local APIC timers
4f62bae50SIngo Molnar  *
5f62bae50SIngo Molnar  *	(c) 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
6f62bae50SIngo Molnar  *
7f62bae50SIngo Molnar  *	Fixes
8f62bae50SIngo Molnar  *	Maciej W. Rozycki	:	Bits for genuine 82489DX APICs;
9f62bae50SIngo Molnar  *					thanks to Eric Gilmore
10f62bae50SIngo Molnar  *					and Rolf G. Tews
11f62bae50SIngo Molnar  *					for testing these extensively.
12f62bae50SIngo Molnar  *	Maciej W. Rozycki	:	Various updates and fixes.
13f62bae50SIngo Molnar  *	Mikael Pettersson	:	Power Management for UP-APIC.
14f62bae50SIngo Molnar  *	Pavel Machek and
15f62bae50SIngo Molnar  *	Mikael Pettersson	:	PM converted to driver model.
16f62bae50SIngo Molnar  */
17f62bae50SIngo Molnar 
18cdd6c482SIngo Molnar #include <linux/perf_event.h>
19f62bae50SIngo Molnar #include <linux/kernel_stat.h>
20f62bae50SIngo Molnar #include <linux/mc146818rtc.h>
21f62bae50SIngo Molnar #include <linux/acpi_pmtmr.h>
22f62bae50SIngo Molnar #include <linux/clockchips.h>
23f62bae50SIngo Molnar #include <linux/interrupt.h>
2457c8a661SMike Rapoport #include <linux/memblock.h>
25f62bae50SIngo Molnar #include <linux/ftrace.h>
26f62bae50SIngo Molnar #include <linux/ioport.h>
27186f4360SPaul Gortmaker #include <linux/export.h>
28f3c6ea1bSRafael J. Wysocki #include <linux/syscore_ops.h>
29f62bae50SIngo Molnar #include <linux/delay.h>
30f62bae50SIngo Molnar #include <linux/timex.h>
31334955efSRalf Baechle #include <linux/i8253.h>
32f62bae50SIngo Molnar #include <linux/dmar.h>
33f62bae50SIngo Molnar #include <linux/init.h>
34f62bae50SIngo Molnar #include <linux/cpu.h>
35f62bae50SIngo Molnar #include <linux/dmi.h>
36f62bae50SIngo Molnar #include <linux/smp.h>
37f62bae50SIngo Molnar #include <linux/mm.h>
38f62bae50SIngo Molnar 
3983ab8514SSteven Rostedt (Red Hat) #include <asm/trace/irq_vectors.h>
408a8f422dSSuresh Siddha #include <asm/irq_remapping.h>
41cdd6c482SIngo Molnar #include <asm/perf_event.h>
42736decacSThomas Gleixner #include <asm/x86_init.h>
43f62bae50SIngo Molnar #include <asm/pgalloc.h>
4460063497SArun Sharma #include <linux/atomic.h>
45f62bae50SIngo Molnar #include <asm/mpspec.h>
46f62bae50SIngo Molnar #include <asm/i8259.h>
47f62bae50SIngo Molnar #include <asm/proto.h>
48ad3bc25aSBorislav Petkov #include <asm/traps.h>
49f62bae50SIngo Molnar #include <asm/apic.h>
507167d08eSHenrik Kretzschmar #include <asm/io_apic.h>
51f62bae50SIngo Molnar #include <asm/desc.h>
52f62bae50SIngo Molnar #include <asm/hpet.h>
53f62bae50SIngo Molnar #include <asm/mtrr.h>
5416f871bcSRalf Baechle #include <asm/time.h>
55f62bae50SIngo Molnar #include <asm/smp.h>
56638bee71SH. Peter Anvin #include <asm/mce.h>
578c3ba8d0SKerstin Jonsson #include <asm/tsc.h>
582904ed8dSSheng Yang #include <asm/hypervisor.h>
59bd9240a1SPeter Zijlstra #include <asm/cpu_device_id.h>
60bd9240a1SPeter Zijlstra #include <asm/intel-family.h>
61447ae316SNicolai Stange #include <asm/irq_regs.h>
62f62bae50SIngo Molnar 
63f62bae50SIngo Molnar unsigned int num_processors;
64f62bae50SIngo Molnar 
65148f9bb8SPaul Gortmaker unsigned disabled_cpus;
66f62bae50SIngo Molnar 
67f62bae50SIngo Molnar /* Processor that is doing the boot up */
686444b40eSSean Christopherson unsigned int boot_cpu_physical_apicid __ro_after_init = -1U;
69cc08e04cSDavid Rientjes EXPORT_SYMBOL_GPL(boot_cpu_physical_apicid);
70f62bae50SIngo Molnar 
716444b40eSSean Christopherson u8 boot_cpu_apic_version __ro_after_init;
72cff9ab2bSDenys Vlasenko 
73f62bae50SIngo Molnar /*
74f62bae50SIngo Molnar  * The highest APIC ID seen during enumeration.
75f62bae50SIngo Molnar  */
76a491cc90SJiang Liu static unsigned int max_physical_apicid;
77f62bae50SIngo Molnar 
78f62bae50SIngo Molnar /*
79f62bae50SIngo Molnar  * Bitmask of physically existing CPUs:
80f62bae50SIngo Molnar  */
81f62bae50SIngo Molnar physid_mask_t phys_cpu_present_map;
82f62bae50SIngo Molnar 
83f62bae50SIngo Molnar /*
84151e0c7dSHATAYAMA Daisuke  * Processor to be disabled specified by kernel parameter
85151e0c7dSHATAYAMA Daisuke  * disable_cpu_apicid=<int>, mostly used for the kdump 2nd kernel to
86151e0c7dSHATAYAMA Daisuke  * avoid undefined behaviour caused by sending INIT from AP to BSP.
87151e0c7dSHATAYAMA Daisuke  */
886444b40eSSean Christopherson static unsigned int disabled_cpu_apicid __ro_after_init = BAD_APICID;
89151e0c7dSHATAYAMA Daisuke 
90151e0c7dSHATAYAMA Daisuke /*
91b7c4948eSHidehiro Kawai  * This variable controls which CPUs receive external NMIs.  By default,
92b7c4948eSHidehiro Kawai  * external NMIs are delivered only to the BSP.
93b7c4948eSHidehiro Kawai  */
946444b40eSSean Christopherson static int apic_extnmi __ro_after_init = APIC_EXTNMI_BSP;
95b7c4948eSHidehiro Kawai 
96b7c4948eSHidehiro Kawai /*
97f62bae50SIngo Molnar  * Map cpu index to physical APIC ID
98f62bae50SIngo Molnar  */
990816b0f0SVlad Zolotarov DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_cpu_to_apicid, BAD_APICID);
1000816b0f0SVlad Zolotarov DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_bios_cpu_apicid, BAD_APICID);
1013e9e57faSVitaly Kuznetsov DEFINE_EARLY_PER_CPU_READ_MOSTLY(u32, x86_cpu_to_acpiid, U32_MAX);
102f62bae50SIngo Molnar EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
103f62bae50SIngo Molnar EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
1043e9e57faSVitaly Kuznetsov EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_acpiid);
105f62bae50SIngo Molnar 
106f62bae50SIngo Molnar #ifdef CONFIG_X86_32
1074c321ff8STejun Heo 
1084c321ff8STejun Heo /*
1094c321ff8STejun Heo  * On x86_32, the mapping between cpu and logical apicid may vary
1104c321ff8STejun Heo  * depending on apic in use.  The following early percpu variable is
1114c321ff8STejun Heo  * used for the mapping.  This is where the behaviors of x86_64 and 32
1124c321ff8STejun Heo  * actually diverge.  Let's keep it ugly for now.
1134c321ff8STejun Heo  */
1140816b0f0SVlad Zolotarov DEFINE_EARLY_PER_CPU_READ_MOSTLY(int, x86_cpu_to_logical_apicid, BAD_APICID);
1154c321ff8STejun Heo 
116f62bae50SIngo Molnar /* Local APIC was disabled by the BIOS and enabled by the kernel */
1176444b40eSSean Christopherson static int enabled_via_apicbase __ro_after_init;
118f62bae50SIngo Molnar 
119c0eaa453SCyrill Gorcunov /*
120c0eaa453SCyrill Gorcunov  * Handle interrupt mode configuration register (IMCR).
121c0eaa453SCyrill Gorcunov  * This register controls whether the interrupt signals
122c0eaa453SCyrill Gorcunov  * that reach the BSP come from the master PIC or from the
123c0eaa453SCyrill Gorcunov  * local APIC. Before entering Symmetric I/O Mode, either
124c0eaa453SCyrill Gorcunov  * the BIOS or the operating system must switch out of
125c0eaa453SCyrill Gorcunov  * PIC Mode by changing the IMCR.
126c0eaa453SCyrill Gorcunov  */
1275cda395fSAlexander van Heukelum static inline void imcr_pic_to_apic(void)
128c0eaa453SCyrill Gorcunov {
129c0eaa453SCyrill Gorcunov 	/* select IMCR register */
130c0eaa453SCyrill Gorcunov 	outb(0x70, 0x22);
131c0eaa453SCyrill Gorcunov 	/* NMI and 8259 INTR go through APIC */
132c0eaa453SCyrill Gorcunov 	outb(0x01, 0x23);
133c0eaa453SCyrill Gorcunov }
134c0eaa453SCyrill Gorcunov 
1355cda395fSAlexander van Heukelum static inline void imcr_apic_to_pic(void)
136c0eaa453SCyrill Gorcunov {
137c0eaa453SCyrill Gorcunov 	/* select IMCR register */
138c0eaa453SCyrill Gorcunov 	outb(0x70, 0x22);
139c0eaa453SCyrill Gorcunov 	/* NMI and 8259 INTR go directly to BSP */
140c0eaa453SCyrill Gorcunov 	outb(0x00, 0x23);
141c0eaa453SCyrill Gorcunov }
142f62bae50SIngo Molnar #endif
143f62bae50SIngo Molnar 
144279f1461SSuresh Siddha /*
145279f1461SSuresh Siddha  * Knob to control our willingness to enable the local APIC.
146279f1461SSuresh Siddha  *
147279f1461SSuresh Siddha  * +1=force-enable
148279f1461SSuresh Siddha  */
149279f1461SSuresh Siddha static int force_enable_local_apic __initdata;
150dc9788f4SDavid Rientjes 
151279f1461SSuresh Siddha /*
152279f1461SSuresh Siddha  * APIC command line parameters
153279f1461SSuresh Siddha  */
154279f1461SSuresh Siddha static int __init parse_lapic(char *arg)
155279f1461SSuresh Siddha {
15697f2645fSMasahiro Yamada 	if (IS_ENABLED(CONFIG_X86_32) && !arg)
157279f1461SSuresh Siddha 		force_enable_local_apic = 1;
15827cf9298SMathias Krause 	else if (arg && !strncmp(arg, "notscdeadline", 13))
159279f1461SSuresh Siddha 		setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER);
160279f1461SSuresh Siddha 	return 0;
161279f1461SSuresh Siddha }
162279f1461SSuresh Siddha early_param("lapic", parse_lapic);
163279f1461SSuresh Siddha 
164f62bae50SIngo Molnar #ifdef CONFIG_X86_64
165f62bae50SIngo Molnar static int apic_calibrate_pmtmr __initdata;
166f62bae50SIngo Molnar static __init int setup_apicpmtimer(char *s)
167f62bae50SIngo Molnar {
168f62bae50SIngo Molnar 	apic_calibrate_pmtmr = 1;
169f62bae50SIngo Molnar 	notsc_setup(NULL);
170f62bae50SIngo Molnar 	return 0;
171f62bae50SIngo Molnar }
172f62bae50SIngo Molnar __setup("apicpmtimer", setup_apicpmtimer);
173f62bae50SIngo Molnar #endif
174f62bae50SIngo Molnar 
1756444b40eSSean Christopherson unsigned long mp_lapic_addr __ro_after_init;
1766444b40eSSean Christopherson int disable_apic __ro_after_init;
177f62bae50SIngo Molnar /* Disable local APIC timer from the kernel commandline or via dmi quirk */
17825874a29SHenrik Kretzschmar static int disable_apic_timer __initdata;
179f62bae50SIngo Molnar /* Local APIC timer works in C2 */
1806444b40eSSean Christopherson int local_apic_timer_c2_ok __ro_after_init;
181f62bae50SIngo Molnar EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
182f62bae50SIngo Molnar 
183f62bae50SIngo Molnar /*
184f62bae50SIngo Molnar  * Debug level, exported for io_apic.c
185f62bae50SIngo Molnar  */
1866444b40eSSean Christopherson int apic_verbosity __ro_after_init;
187f62bae50SIngo Molnar 
1886444b40eSSean Christopherson int pic_mode __ro_after_init;
189f62bae50SIngo Molnar 
190f62bae50SIngo Molnar /* Have we found an MP table */
1916444b40eSSean Christopherson int smp_found_config __ro_after_init;
192f62bae50SIngo Molnar 
193f62bae50SIngo Molnar static struct resource lapic_resource = {
194f62bae50SIngo Molnar 	.name = "Local APIC",
195f62bae50SIngo Molnar 	.flags = IORESOURCE_MEM | IORESOURCE_BUSY,
196f62bae50SIngo Molnar };
197f62bae50SIngo Molnar 
19852ae346bSDaniel Drake unsigned int lapic_timer_period = 0;
199f62bae50SIngo Molnar 
200f62bae50SIngo Molnar static void apic_pm_activate(void);
201f62bae50SIngo Molnar 
2026444b40eSSean Christopherson static unsigned long apic_phys __ro_after_init;
203f62bae50SIngo Molnar 
204f62bae50SIngo Molnar /*
205f62bae50SIngo Molnar  * Get the LAPIC version
206f62bae50SIngo Molnar  */
207f62bae50SIngo Molnar static inline int lapic_get_version(void)
208f62bae50SIngo Molnar {
209f62bae50SIngo Molnar 	return GET_APIC_VERSION(apic_read(APIC_LVR));
210f62bae50SIngo Molnar }
211f62bae50SIngo Molnar 
212f62bae50SIngo Molnar /*
213f62bae50SIngo Molnar  * Check, if the APIC is integrated or a separate chip
214f62bae50SIngo Molnar  */
215f62bae50SIngo Molnar static inline int lapic_is_integrated(void)
216f62bae50SIngo Molnar {
217f62bae50SIngo Molnar 	return APIC_INTEGRATED(lapic_get_version());
218f62bae50SIngo Molnar }
219f62bae50SIngo Molnar 
220f62bae50SIngo Molnar /*
221f62bae50SIngo Molnar  * Check, whether this is a modern or a first generation APIC
222f62bae50SIngo Molnar  */
223f62bae50SIngo Molnar static int modern_apic(void)
224f62bae50SIngo Molnar {
225f62bae50SIngo Molnar 	/* AMD systems use old APIC versions, so check the CPU */
226f62bae50SIngo Molnar 	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
227f62bae50SIngo Molnar 	    boot_cpu_data.x86 >= 0xf)
228f62bae50SIngo Molnar 		return 1;
229da33dfefSPu Wen 
230da33dfefSPu Wen 	/* Hygon systems use modern APIC */
231da33dfefSPu Wen 	if (boot_cpu_data.x86_vendor == X86_VENDOR_HYGON)
232da33dfefSPu Wen 		return 1;
233da33dfefSPu Wen 
234f62bae50SIngo Molnar 	return lapic_get_version() >= 0x14;
235f62bae50SIngo Molnar }
236f62bae50SIngo Molnar 
23708306ce6SCyrill Gorcunov /*
238a933c618SCyrill Gorcunov  * right after this call apic become NOOP driven
239a933c618SCyrill Gorcunov  * so apic->write/read doesn't do anything
24008306ce6SCyrill Gorcunov  */
24125874a29SHenrik Kretzschmar static void __init apic_disable(void)
24208306ce6SCyrill Gorcunov {
243f88f2b4fSCyrill Gorcunov 	pr_info("APIC: switched to apic NOOP\n");
244a933c618SCyrill Gorcunov 	apic = &apic_noop;
24508306ce6SCyrill Gorcunov }
24608306ce6SCyrill Gorcunov 
247f62bae50SIngo Molnar void native_apic_wait_icr_idle(void)
248f62bae50SIngo Molnar {
249f62bae50SIngo Molnar 	while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
250f62bae50SIngo Molnar 		cpu_relax();
251f62bae50SIngo Molnar }
252f62bae50SIngo Molnar 
253f62bae50SIngo Molnar u32 native_safe_apic_wait_icr_idle(void)
254f62bae50SIngo Molnar {
255f62bae50SIngo Molnar 	u32 send_status;
256f62bae50SIngo Molnar 	int timeout;
257f62bae50SIngo Molnar 
258f62bae50SIngo Molnar 	timeout = 0;
259f62bae50SIngo Molnar 	do {
260f62bae50SIngo Molnar 		send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
261f62bae50SIngo Molnar 		if (!send_status)
262f62bae50SIngo Molnar 			break;
263b49d7d87SFernando Luis Vazquez Cao 		inc_irq_stat(icr_read_retry_count);
264f62bae50SIngo Molnar 		udelay(100);
265f62bae50SIngo Molnar 	} while (timeout++ < 1000);
266f62bae50SIngo Molnar 
267f62bae50SIngo Molnar 	return send_status;
268f62bae50SIngo Molnar }
269f62bae50SIngo Molnar 
270f62bae50SIngo Molnar void native_apic_icr_write(u32 low, u32 id)
271f62bae50SIngo Molnar {
272ea7bdc65SJan Kiszka 	unsigned long flags;
273ea7bdc65SJan Kiszka 
274ea7bdc65SJan Kiszka 	local_irq_save(flags);
275f62bae50SIngo Molnar 	apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
276f62bae50SIngo Molnar 	apic_write(APIC_ICR, low);
277ea7bdc65SJan Kiszka 	local_irq_restore(flags);
278f62bae50SIngo Molnar }
279f62bae50SIngo Molnar 
280f62bae50SIngo Molnar u64 native_apic_icr_read(void)
281f62bae50SIngo Molnar {
282f62bae50SIngo Molnar 	u32 icr1, icr2;
283f62bae50SIngo Molnar 
284f62bae50SIngo Molnar 	icr2 = apic_read(APIC_ICR2);
285f62bae50SIngo Molnar 	icr1 = apic_read(APIC_ICR);
286f62bae50SIngo Molnar 
287f62bae50SIngo Molnar 	return icr1 | ((u64)icr2 << 32);
288f62bae50SIngo Molnar }
289f62bae50SIngo Molnar 
290f62bae50SIngo Molnar #ifdef CONFIG_X86_32
291f62bae50SIngo Molnar /**
292f62bae50SIngo Molnar  * get_physical_broadcast - Get number of physical broadcast IDs
293f62bae50SIngo Molnar  */
294f62bae50SIngo Molnar int get_physical_broadcast(void)
295f62bae50SIngo Molnar {
296f62bae50SIngo Molnar 	return modern_apic() ? 0xff : 0xf;
297f62bae50SIngo Molnar }
298f62bae50SIngo Molnar #endif
299f62bae50SIngo Molnar 
300f62bae50SIngo Molnar /**
301f62bae50SIngo Molnar  * lapic_get_maxlvt - get the maximum number of local vector table entries
302f62bae50SIngo Molnar  */
303f62bae50SIngo Molnar int lapic_get_maxlvt(void)
304f62bae50SIngo Molnar {
305f62bae50SIngo Molnar 	/*
306f62bae50SIngo Molnar 	 * - we always have APIC integrated on 64bit mode
307f62bae50SIngo Molnar 	 * - 82489DXs do not report # of LVT entries
308f62bae50SIngo Molnar 	 */
309ae41a2a4SDou Liyang 	return lapic_is_integrated() ? GET_APIC_MAXLVT(apic_read(APIC_LVR)) : 2;
310f62bae50SIngo Molnar }
311f62bae50SIngo Molnar 
312f62bae50SIngo Molnar /*
313f62bae50SIngo Molnar  * Local APIC timer
314f62bae50SIngo Molnar  */
315f62bae50SIngo Molnar 
316f62bae50SIngo Molnar /* Clock divisor */
317f62bae50SIngo Molnar #define APIC_DIVISOR 16
3181a9e4c56SNicolai Stange #define TSC_DIVISOR  8
319f62bae50SIngo Molnar 
320f62bae50SIngo Molnar /*
321f62bae50SIngo Molnar  * This function sets up the local APIC timer, with a timeout of
322f62bae50SIngo Molnar  * 'clocks' APIC bus clock. During calibration we actually call
323f62bae50SIngo Molnar  * this function twice on the boot CPU, once with a bogus timeout
324f62bae50SIngo Molnar  * value, second time for real. The other (noncalibrating) CPUs
325f62bae50SIngo Molnar  * call this function only once, with the real, calibrated value.
326f62bae50SIngo Molnar  *
327f62bae50SIngo Molnar  * We do reads before writes even if unnecessary, to get around the
328f62bae50SIngo Molnar  * P5 APIC double write bug.
329f62bae50SIngo Molnar  */
330f62bae50SIngo Molnar static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
331f62bae50SIngo Molnar {
332f62bae50SIngo Molnar 	unsigned int lvtt_value, tmp_value;
333f62bae50SIngo Molnar 
334f62bae50SIngo Molnar 	lvtt_value = LOCAL_TIMER_VECTOR;
335f62bae50SIngo Molnar 	if (!oneshot)
336f62bae50SIngo Molnar 		lvtt_value |= APIC_LVT_TIMER_PERIODIC;
337279f1461SSuresh Siddha 	else if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
338279f1461SSuresh Siddha 		lvtt_value |= APIC_LVT_TIMER_TSCDEADLINE;
339279f1461SSuresh Siddha 
340f62bae50SIngo Molnar 	if (!lapic_is_integrated())
341f62bae50SIngo Molnar 		lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
342f62bae50SIngo Molnar 
343f62bae50SIngo Molnar 	if (!irqen)
344f62bae50SIngo Molnar 		lvtt_value |= APIC_LVT_MASKED;
345f62bae50SIngo Molnar 
346f62bae50SIngo Molnar 	apic_write(APIC_LVTT, lvtt_value);
347f62bae50SIngo Molnar 
348279f1461SSuresh Siddha 	if (lvtt_value & APIC_LVT_TIMER_TSCDEADLINE) {
3495d7c631dSShaohua Li 		/*
3505d7c631dSShaohua Li 		 * See Intel SDM: TSC-Deadline Mode chapter. In xAPIC mode,
3515d7c631dSShaohua Li 		 * writing to the APIC LVTT and TSC_DEADLINE MSR isn't serialized.
3525d7c631dSShaohua Li 		 * According to Intel, MFENCE can do the serialization here.
3535d7c631dSShaohua Li 		 */
3545d7c631dSShaohua Li 		asm volatile("mfence" : : : "memory");
3555d7c631dSShaohua Li 
356279f1461SSuresh Siddha 		printk_once(KERN_DEBUG "TSC deadline timer enabled\n");
357279f1461SSuresh Siddha 		return;
358279f1461SSuresh Siddha 	}
359279f1461SSuresh Siddha 
360f62bae50SIngo Molnar 	/*
361f62bae50SIngo Molnar 	 * Divide PICLK by 16
362f62bae50SIngo Molnar 	 */
363f62bae50SIngo Molnar 	tmp_value = apic_read(APIC_TDCR);
364f62bae50SIngo Molnar 	apic_write(APIC_TDCR,
365f62bae50SIngo Molnar 		(tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
366f62bae50SIngo Molnar 		APIC_TDR_DIV_16);
367f62bae50SIngo Molnar 
368f62bae50SIngo Molnar 	if (!oneshot)
369f62bae50SIngo Molnar 		apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
370f62bae50SIngo Molnar }
371f62bae50SIngo Molnar 
372f62bae50SIngo Molnar /*
373a68c439bSRobert Richter  * Setup extended LVT, AMD specific
374f62bae50SIngo Molnar  *
375a68c439bSRobert Richter  * Software should use the LVT offsets the BIOS provides.  The offsets
376a68c439bSRobert Richter  * are determined by the subsystems using it like those for MCE
377a68c439bSRobert Richter  * threshold or IBS.  On K8 only offset 0 (APIC500) and MCE interrupts
378a68c439bSRobert Richter  * are supported. Beginning with family 10h at least 4 offsets are
379a68c439bSRobert Richter  * available.
380f62bae50SIngo Molnar  *
381a68c439bSRobert Richter  * Since the offsets must be consistent for all cores, we keep track
382a68c439bSRobert Richter  * of the LVT offsets in software and reserve the offset for the same
383a68c439bSRobert Richter  * vector also to be used on other cores. An offset is freed by
384a68c439bSRobert Richter  * setting the entry to APIC_EILVT_MASKED.
385a68c439bSRobert Richter  *
386a68c439bSRobert Richter  * If the BIOS is right, there should be no conflicts. Otherwise a
387a68c439bSRobert Richter  * "[Firmware Bug]: ..." error message is generated. However, if
388a68c439bSRobert Richter  * software does not properly determines the offsets, it is not
389a68c439bSRobert Richter  * necessarily a BIOS bug.
390f62bae50SIngo Molnar  */
391f62bae50SIngo Molnar 
392a68c439bSRobert Richter static atomic_t eilvt_offsets[APIC_EILVT_NR_MAX];
393f62bae50SIngo Molnar 
394a68c439bSRobert Richter static inline int eilvt_entry_is_changeable(unsigned int old, unsigned int new)
395a68c439bSRobert Richter {
396a68c439bSRobert Richter 	return (old & APIC_EILVT_MASKED)
397a68c439bSRobert Richter 		|| (new == APIC_EILVT_MASKED)
398a68c439bSRobert Richter 		|| ((new & ~APIC_EILVT_MASKED) == old);
399a68c439bSRobert Richter }
400a68c439bSRobert Richter 
401a68c439bSRobert Richter static unsigned int reserve_eilvt_offset(int offset, unsigned int new)
402a68c439bSRobert Richter {
4038abc3122SRobert Richter 	unsigned int rsvd, vector;
404a68c439bSRobert Richter 
405a68c439bSRobert Richter 	if (offset >= APIC_EILVT_NR_MAX)
406a68c439bSRobert Richter 		return ~0;
407a68c439bSRobert Richter 
4088abc3122SRobert Richter 	rsvd = atomic_read(&eilvt_offsets[offset]);
409a68c439bSRobert Richter 	do {
4108abc3122SRobert Richter 		vector = rsvd & ~APIC_EILVT_MASKED;	/* 0: unassigned */
4118abc3122SRobert Richter 		if (vector && !eilvt_entry_is_changeable(vector, new))
412a68c439bSRobert Richter 			/* may not change if vectors are different */
413a68c439bSRobert Richter 			return rsvd;
414a68c439bSRobert Richter 		rsvd = atomic_cmpxchg(&eilvt_offsets[offset], rsvd, new);
415a68c439bSRobert Richter 	} while (rsvd != new);
416a68c439bSRobert Richter 
4178abc3122SRobert Richter 	rsvd &= ~APIC_EILVT_MASKED;
4188abc3122SRobert Richter 	if (rsvd && rsvd != vector)
4198abc3122SRobert Richter 		pr_info("LVT offset %d assigned for vector 0x%02x\n",
4208abc3122SRobert Richter 			offset, rsvd);
4218abc3122SRobert Richter 
422a68c439bSRobert Richter 	return new;
423a68c439bSRobert Richter }
424a68c439bSRobert Richter 
425a68c439bSRobert Richter /*
426a68c439bSRobert Richter  * If mask=1, the LVT entry does not generate interrupts while mask=0
427cbf74ceaSRobert Richter  * enables the vector. See also the BKDGs. Must be called with
428cbf74ceaSRobert Richter  * preemption disabled.
429a68c439bSRobert Richter  */
430a68c439bSRobert Richter 
43127afdf20SRobert Richter int setup_APIC_eilvt(u8 offset, u8 vector, u8 msg_type, u8 mask)
432a68c439bSRobert Richter {
433a68c439bSRobert Richter 	unsigned long reg = APIC_EILVTn(offset);
434a68c439bSRobert Richter 	unsigned int new, old, reserved;
435a68c439bSRobert Richter 
436a68c439bSRobert Richter 	new = (mask << 16) | (msg_type << 8) | vector;
437a68c439bSRobert Richter 	old = apic_read(reg);
438a68c439bSRobert Richter 	reserved = reserve_eilvt_offset(offset, new);
439a68c439bSRobert Richter 
440a68c439bSRobert Richter 	if (reserved != new) {
441eb48c9cbSRobert Richter 		pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
442eb48c9cbSRobert Richter 		       "vector 0x%x, but the register is already in use for "
443eb48c9cbSRobert Richter 		       "vector 0x%x on another cpu\n",
444eb48c9cbSRobert Richter 		       smp_processor_id(), reg, offset, new, reserved);
445a68c439bSRobert Richter 		return -EINVAL;
446a68c439bSRobert Richter 	}
447a68c439bSRobert Richter 
448a68c439bSRobert Richter 	if (!eilvt_entry_is_changeable(old, new)) {
449eb48c9cbSRobert Richter 		pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
450eb48c9cbSRobert Richter 		       "vector 0x%x, but the register is already in use for "
451eb48c9cbSRobert Richter 		       "vector 0x%x on this cpu\n",
452eb48c9cbSRobert Richter 		       smp_processor_id(), reg, offset, new, old);
453a68c439bSRobert Richter 		return -EBUSY;
454a68c439bSRobert Richter 	}
455a68c439bSRobert Richter 
456a68c439bSRobert Richter 	apic_write(reg, new);
457a68c439bSRobert Richter 
458a68c439bSRobert Richter 	return 0;
459f62bae50SIngo Molnar }
46027afdf20SRobert Richter EXPORT_SYMBOL_GPL(setup_APIC_eilvt);
461f62bae50SIngo Molnar 
462f62bae50SIngo Molnar /*
463f62bae50SIngo Molnar  * Program the next event, relative to now
464f62bae50SIngo Molnar  */
465f62bae50SIngo Molnar static int lapic_next_event(unsigned long delta,
466f62bae50SIngo Molnar 			    struct clock_event_device *evt)
467f62bae50SIngo Molnar {
468f62bae50SIngo Molnar 	apic_write(APIC_TMICT, delta);
469f62bae50SIngo Molnar 	return 0;
470f62bae50SIngo Molnar }
471f62bae50SIngo Molnar 
472279f1461SSuresh Siddha static int lapic_next_deadline(unsigned long delta,
473279f1461SSuresh Siddha 			       struct clock_event_device *evt)
474279f1461SSuresh Siddha {
475279f1461SSuresh Siddha 	u64 tsc;
476279f1461SSuresh Siddha 
4774ea1636bSAndy Lutomirski 	tsc = rdtsc();
478279f1461SSuresh Siddha 	wrmsrl(MSR_IA32_TSC_DEADLINE, tsc + (((u64) delta) * TSC_DIVISOR));
479279f1461SSuresh Siddha 	return 0;
480279f1461SSuresh Siddha }
481279f1461SSuresh Siddha 
482b23d8e52SViresh Kumar static int lapic_timer_shutdown(struct clock_event_device *evt)
483f62bae50SIngo Molnar {
484f62bae50SIngo Molnar 	unsigned int v;
485f62bae50SIngo Molnar 
486f62bae50SIngo Molnar 	/* Lapic used as dummy for broadcast ? */
487f62bae50SIngo Molnar 	if (evt->features & CLOCK_EVT_FEAT_DUMMY)
488b23d8e52SViresh Kumar 		return 0;
489f62bae50SIngo Molnar 
490f62bae50SIngo Molnar 	v = apic_read(APIC_LVTT);
491f62bae50SIngo Molnar 	v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
492f62bae50SIngo Molnar 	apic_write(APIC_LVTT, v);
4936f9b4100SAndreas Herrmann 	apic_write(APIC_TMICT, 0);
494b23d8e52SViresh Kumar 	return 0;
495f62bae50SIngo Molnar }
496f62bae50SIngo Molnar 
497b23d8e52SViresh Kumar static inline int
498b23d8e52SViresh Kumar lapic_timer_set_periodic_oneshot(struct clock_event_device *evt, bool oneshot)
499b23d8e52SViresh Kumar {
500b23d8e52SViresh Kumar 	/* Lapic used as dummy for broadcast ? */
501b23d8e52SViresh Kumar 	if (evt->features & CLOCK_EVT_FEAT_DUMMY)
502b23d8e52SViresh Kumar 		return 0;
503b23d8e52SViresh Kumar 
50452ae346bSDaniel Drake 	__setup_APIC_LVTT(lapic_timer_period, oneshot, 1);
505b23d8e52SViresh Kumar 	return 0;
506b23d8e52SViresh Kumar }
507b23d8e52SViresh Kumar 
508b23d8e52SViresh Kumar static int lapic_timer_set_periodic(struct clock_event_device *evt)
509b23d8e52SViresh Kumar {
510b23d8e52SViresh Kumar 	return lapic_timer_set_periodic_oneshot(evt, false);
511b23d8e52SViresh Kumar }
512b23d8e52SViresh Kumar 
513b23d8e52SViresh Kumar static int lapic_timer_set_oneshot(struct clock_event_device *evt)
514b23d8e52SViresh Kumar {
515b23d8e52SViresh Kumar 	return lapic_timer_set_periodic_oneshot(evt, true);
516f62bae50SIngo Molnar }
517f62bae50SIngo Molnar 
518f62bae50SIngo Molnar /*
519f62bae50SIngo Molnar  * Local APIC timer broadcast function
520f62bae50SIngo Molnar  */
521f62bae50SIngo Molnar static void lapic_timer_broadcast(const struct cpumask *mask)
522f62bae50SIngo Molnar {
523f62bae50SIngo Molnar #ifdef CONFIG_SMP
524f62bae50SIngo Molnar 	apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
525f62bae50SIngo Molnar #endif
526f62bae50SIngo Molnar }
527f62bae50SIngo Molnar 
52825874a29SHenrik Kretzschmar 
52925874a29SHenrik Kretzschmar /*
53025874a29SHenrik Kretzschmar  * The local apic timer can be used for any function which is CPU local.
53125874a29SHenrik Kretzschmar  */
53225874a29SHenrik Kretzschmar static struct clock_event_device lapic_clockevent = {
53325874a29SHenrik Kretzschmar 	.name				= "lapic",
534b23d8e52SViresh Kumar 	.features			= CLOCK_EVT_FEAT_PERIODIC |
535b23d8e52SViresh Kumar 					  CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_C3STOP
536b23d8e52SViresh Kumar 					  | CLOCK_EVT_FEAT_DUMMY,
53725874a29SHenrik Kretzschmar 	.shift				= 32,
538b23d8e52SViresh Kumar 	.set_state_shutdown		= lapic_timer_shutdown,
539b23d8e52SViresh Kumar 	.set_state_periodic		= lapic_timer_set_periodic,
540b23d8e52SViresh Kumar 	.set_state_oneshot		= lapic_timer_set_oneshot,
541914122c3SFrederic Weisbecker 	.set_state_oneshot_stopped	= lapic_timer_shutdown,
54225874a29SHenrik Kretzschmar 	.set_next_event			= lapic_next_event,
54325874a29SHenrik Kretzschmar 	.broadcast			= lapic_timer_broadcast,
54425874a29SHenrik Kretzschmar 	.rating				= 100,
54525874a29SHenrik Kretzschmar 	.irq				= -1,
54625874a29SHenrik Kretzschmar };
54725874a29SHenrik Kretzschmar static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
54825874a29SHenrik Kretzschmar 
549bd9240a1SPeter Zijlstra #define DEADLINE_MODEL_MATCH_FUNC(model, func)	\
550bd9240a1SPeter Zijlstra 	{ X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&func }
551bd9240a1SPeter Zijlstra 
552bd9240a1SPeter Zijlstra #define DEADLINE_MODEL_MATCH_REV(model, rev)	\
553bd9240a1SPeter Zijlstra 	{ X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)rev }
554bd9240a1SPeter Zijlstra 
555bd9240a1SPeter Zijlstra static u32 hsx_deadline_rev(void)
556bd9240a1SPeter Zijlstra {
557b399151cSJia Zhang 	switch (boot_cpu_data.x86_stepping) {
558bd9240a1SPeter Zijlstra 	case 0x02: return 0x3a; /* EP */
559bd9240a1SPeter Zijlstra 	case 0x04: return 0x0f; /* EX */
560bd9240a1SPeter Zijlstra 	}
561bd9240a1SPeter Zijlstra 
562bd9240a1SPeter Zijlstra 	return ~0U;
563bd9240a1SPeter Zijlstra }
564bd9240a1SPeter Zijlstra 
565bd9240a1SPeter Zijlstra static u32 bdx_deadline_rev(void)
566bd9240a1SPeter Zijlstra {
567b399151cSJia Zhang 	switch (boot_cpu_data.x86_stepping) {
568bd9240a1SPeter Zijlstra 	case 0x02: return 0x00000011;
569bd9240a1SPeter Zijlstra 	case 0x03: return 0x0700000e;
570bd9240a1SPeter Zijlstra 	case 0x04: return 0x0f00000c;
571bd9240a1SPeter Zijlstra 	case 0x05: return 0x0e000003;
572bd9240a1SPeter Zijlstra 	}
573bd9240a1SPeter Zijlstra 
574bd9240a1SPeter Zijlstra 	return ~0U;
575bd9240a1SPeter Zijlstra }
576bd9240a1SPeter Zijlstra 
577616dd587SLen Brown static u32 skx_deadline_rev(void)
578616dd587SLen Brown {
579b399151cSJia Zhang 	switch (boot_cpu_data.x86_stepping) {
580616dd587SLen Brown 	case 0x03: return 0x01000136;
581616dd587SLen Brown 	case 0x04: return 0x02000014;
582616dd587SLen Brown 	}
583616dd587SLen Brown 
584d9e6dbcfSLen Brown 	if (boot_cpu_data.x86_stepping > 4)
585d9e6dbcfSLen Brown 		return 0;
586d9e6dbcfSLen Brown 
587616dd587SLen Brown 	return ~0U;
588616dd587SLen Brown }
589616dd587SLen Brown 
590bd9240a1SPeter Zijlstra static const struct x86_cpu_id deadline_match[] = {
591bd9240a1SPeter Zijlstra 	DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_HASWELL_X,	hsx_deadline_rev),
592bd9240a1SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL_X,	0x0b000020),
5935ebb34edSPeter Zijlstra 	DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_BROADWELL_D,	bdx_deadline_rev),
594616dd587SLen Brown 	DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_SKYLAKE_X,	skx_deadline_rev),
595bd9240a1SPeter Zijlstra 
596c66f78a6SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL,		0x22),
597af239c44SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL_L,	0x20),
5985e741407SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL_G,	0x17),
599bd9240a1SPeter Zijlstra 
600c66f78a6SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL,	0x25),
6015e741407SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL_G,	0x17),
602bd9240a1SPeter Zijlstra 
603af239c44SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_SKYLAKE_L,	0xb2),
604c66f78a6SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_SKYLAKE,		0xb2),
605bd9240a1SPeter Zijlstra 
606af239c44SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_KABYLAKE_L,	0x52),
607c66f78a6SPeter Zijlstra 	DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_KABYLAKE,		0x52),
608bd9240a1SPeter Zijlstra 
609bd9240a1SPeter Zijlstra 	{},
610bd9240a1SPeter Zijlstra };
611bd9240a1SPeter Zijlstra 
612bd9240a1SPeter Zijlstra static void apic_check_deadline_errata(void)
613bd9240a1SPeter Zijlstra {
614594a30fbSHans de Goede 	const struct x86_cpu_id *m;
615bd9240a1SPeter Zijlstra 	u32 rev;
616bd9240a1SPeter Zijlstra 
617cc6afe22SPaolo Bonzini 	if (!boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER) ||
618cc6afe22SPaolo Bonzini 	    boot_cpu_has(X86_FEATURE_HYPERVISOR))
619594a30fbSHans de Goede 		return;
620594a30fbSHans de Goede 
621594a30fbSHans de Goede 	m = x86_match_cpu(deadline_match);
622bd9240a1SPeter Zijlstra 	if (!m)
623bd9240a1SPeter Zijlstra 		return;
624bd9240a1SPeter Zijlstra 
625bd9240a1SPeter Zijlstra 	/*
626bd9240a1SPeter Zijlstra 	 * Function pointers will have the MSB set due to address layout,
627bd9240a1SPeter Zijlstra 	 * immediate revisions will not.
628bd9240a1SPeter Zijlstra 	 */
629bd9240a1SPeter Zijlstra 	if ((long)m->driver_data < 0)
630bd9240a1SPeter Zijlstra 		rev = ((u32 (*)(void))(m->driver_data))();
631bd9240a1SPeter Zijlstra 	else
632bd9240a1SPeter Zijlstra 		rev = (u32)m->driver_data;
633bd9240a1SPeter Zijlstra 
634bd9240a1SPeter Zijlstra 	if (boot_cpu_data.microcode >= rev)
635bd9240a1SPeter Zijlstra 		return;
636bd9240a1SPeter Zijlstra 
637bd9240a1SPeter Zijlstra 	setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER);
638bd9240a1SPeter Zijlstra 	pr_err(FW_BUG "TSC_DEADLINE disabled due to Errata; "
639bd9240a1SPeter Zijlstra 	       "please update microcode to version: 0x%x (or later)\n", rev);
640bd9240a1SPeter Zijlstra }
641bd9240a1SPeter Zijlstra 
642f62bae50SIngo Molnar /*
643421f91d2SUwe Kleine-König  * Setup the local APIC timer for this CPU. Copy the initialized values
644f62bae50SIngo Molnar  * of the boot CPU and register the clock event in the framework.
645f62bae50SIngo Molnar  */
646148f9bb8SPaul Gortmaker static void setup_APIC_timer(void)
647f62bae50SIngo Molnar {
64889cbc767SChristoph Lameter 	struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
649f62bae50SIngo Molnar 
650349c004eSChristoph Lameter 	if (this_cpu_has(X86_FEATURE_ARAT)) {
651db954b58SVenkatesh Pallipadi 		lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
652db954b58SVenkatesh Pallipadi 		/* Make LAPIC timer preferrable over percpu HPET */
653db954b58SVenkatesh Pallipadi 		lapic_clockevent.rating = 150;
654db954b58SVenkatesh Pallipadi 	}
655db954b58SVenkatesh Pallipadi 
656f62bae50SIngo Molnar 	memcpy(levt, &lapic_clockevent, sizeof(*levt));
657f62bae50SIngo Molnar 	levt->cpumask = cpumask_of(smp_processor_id());
658f62bae50SIngo Molnar 
659279f1461SSuresh Siddha 	if (this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
660c6e9f42bSPeter Zijlstra 		levt->name = "lapic-deadline";
661279f1461SSuresh Siddha 		levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC |
662279f1461SSuresh Siddha 				    CLOCK_EVT_FEAT_DUMMY);
663279f1461SSuresh Siddha 		levt->set_next_event = lapic_next_deadline;
664279f1461SSuresh Siddha 		clockevents_config_and_register(levt,
6651a9e4c56SNicolai Stange 						tsc_khz * (1000 / TSC_DIVISOR),
666279f1461SSuresh Siddha 						0xF, ~0UL);
667279f1461SSuresh Siddha 	} else
668f62bae50SIngo Molnar 		clockevents_register_device(levt);
669f62bae50SIngo Molnar }
670f62bae50SIngo Molnar 
671f62bae50SIngo Molnar /*
6726731b0d6SNicolai Stange  * Install the updated TSC frequency from recalibration at the TSC
6736731b0d6SNicolai Stange  * deadline clockevent devices.
6746731b0d6SNicolai Stange  */
6756731b0d6SNicolai Stange static void __lapic_update_tsc_freq(void *info)
6766731b0d6SNicolai Stange {
6776731b0d6SNicolai Stange 	struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
6786731b0d6SNicolai Stange 
6796731b0d6SNicolai Stange 	if (!this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
6806731b0d6SNicolai Stange 		return;
6816731b0d6SNicolai Stange 
6826731b0d6SNicolai Stange 	clockevents_update_freq(levt, tsc_khz * (1000 / TSC_DIVISOR));
6836731b0d6SNicolai Stange }
6846731b0d6SNicolai Stange 
6856731b0d6SNicolai Stange void lapic_update_tsc_freq(void)
6866731b0d6SNicolai Stange {
6876731b0d6SNicolai Stange 	/*
6886731b0d6SNicolai Stange 	 * The clockevent device's ->mult and ->shift can both be
6896731b0d6SNicolai Stange 	 * changed. In order to avoid races, schedule the frequency
6906731b0d6SNicolai Stange 	 * update code on each CPU.
6916731b0d6SNicolai Stange 	 */
6926731b0d6SNicolai Stange 	on_each_cpu(__lapic_update_tsc_freq, NULL, 0);
6936731b0d6SNicolai Stange }
6946731b0d6SNicolai Stange 
6956731b0d6SNicolai Stange /*
696f62bae50SIngo Molnar  * In this functions we calibrate APIC bus clocks to the external timer.
697f62bae50SIngo Molnar  *
698f62bae50SIngo Molnar  * We want to do the calibration only once since we want to have local timer
699f62bae50SIngo Molnar  * irqs syncron. CPUs connected by the same APIC bus have the very same bus
700f62bae50SIngo Molnar  * frequency.
701f62bae50SIngo Molnar  *
702f62bae50SIngo Molnar  * This was previously done by reading the PIT/HPET and waiting for a wrap
703f62bae50SIngo Molnar  * around to find out, that a tick has elapsed. I have a box, where the PIT
704f62bae50SIngo Molnar  * readout is broken, so it never gets out of the wait loop again. This was
705f62bae50SIngo Molnar  * also reported by others.
706f62bae50SIngo Molnar  *
707f62bae50SIngo Molnar  * Monitoring the jiffies value is inaccurate and the clockevents
708f62bae50SIngo Molnar  * infrastructure allows us to do a simple substitution of the interrupt
709f62bae50SIngo Molnar  * handler.
710f62bae50SIngo Molnar  *
711f62bae50SIngo Molnar  * The calibration routine also uses the pm_timer when possible, as the PIT
712f62bae50SIngo Molnar  * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
713f62bae50SIngo Molnar  * back to normal later in the boot process).
714f62bae50SIngo Molnar  */
715f62bae50SIngo Molnar 
716f62bae50SIngo Molnar #define LAPIC_CAL_LOOPS		(HZ/10)
717f62bae50SIngo Molnar 
718f62bae50SIngo Molnar static __initdata int lapic_cal_loops = -1;
719f62bae50SIngo Molnar static __initdata long lapic_cal_t1, lapic_cal_t2;
720f62bae50SIngo Molnar static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
721f62bae50SIngo Molnar static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
722f62bae50SIngo Molnar static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
723f62bae50SIngo Molnar 
724f62bae50SIngo Molnar /*
725f897e60aSThomas Gleixner  * Temporary interrupt handler and polled calibration function.
726f62bae50SIngo Molnar  */
727f62bae50SIngo Molnar static void __init lapic_cal_handler(struct clock_event_device *dev)
728f62bae50SIngo Molnar {
729f62bae50SIngo Molnar 	unsigned long long tsc = 0;
730f62bae50SIngo Molnar 	long tapic = apic_read(APIC_TMCCT);
731f62bae50SIngo Molnar 	unsigned long pm = acpi_pm_read_early();
732f62bae50SIngo Molnar 
73359e21e3dSBorislav Petkov 	if (boot_cpu_has(X86_FEATURE_TSC))
7344ea1636bSAndy Lutomirski 		tsc = rdtsc();
735f62bae50SIngo Molnar 
736f62bae50SIngo Molnar 	switch (lapic_cal_loops++) {
737f62bae50SIngo Molnar 	case 0:
738f62bae50SIngo Molnar 		lapic_cal_t1 = tapic;
739f62bae50SIngo Molnar 		lapic_cal_tsc1 = tsc;
740f62bae50SIngo Molnar 		lapic_cal_pm1 = pm;
741f62bae50SIngo Molnar 		lapic_cal_j1 = jiffies;
742f62bae50SIngo Molnar 		break;
743f62bae50SIngo Molnar 
744f62bae50SIngo Molnar 	case LAPIC_CAL_LOOPS:
745f62bae50SIngo Molnar 		lapic_cal_t2 = tapic;
746f62bae50SIngo Molnar 		lapic_cal_tsc2 = tsc;
747f62bae50SIngo Molnar 		if (pm < lapic_cal_pm1)
748f62bae50SIngo Molnar 			pm += ACPI_PM_OVRRUN;
749f62bae50SIngo Molnar 		lapic_cal_pm2 = pm;
750f62bae50SIngo Molnar 		lapic_cal_j2 = jiffies;
751f62bae50SIngo Molnar 		break;
752f62bae50SIngo Molnar 	}
753f62bae50SIngo Molnar }
754f62bae50SIngo Molnar 
755f62bae50SIngo Molnar static int __init
756f62bae50SIngo Molnar calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
757f62bae50SIngo Molnar {
758f62bae50SIngo Molnar 	const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
759f62bae50SIngo Molnar 	const long pm_thresh = pm_100ms / 100;
760f62bae50SIngo Molnar 	unsigned long mult;
761f62bae50SIngo Molnar 	u64 res;
762f62bae50SIngo Molnar 
763f62bae50SIngo Molnar #ifndef CONFIG_X86_PM_TIMER
764f62bae50SIngo Molnar 	return -1;
765f62bae50SIngo Molnar #endif
766f62bae50SIngo Molnar 
767f62bae50SIngo Molnar 	apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
768f62bae50SIngo Molnar 
769f62bae50SIngo Molnar 	/* Check, if the PM timer is available */
770f62bae50SIngo Molnar 	if (!deltapm)
771f62bae50SIngo Molnar 		return -1;
772f62bae50SIngo Molnar 
773f62bae50SIngo Molnar 	mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
774f62bae50SIngo Molnar 
775f62bae50SIngo Molnar 	if (deltapm > (pm_100ms - pm_thresh) &&
776f62bae50SIngo Molnar 	    deltapm < (pm_100ms + pm_thresh)) {
777f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
778f62bae50SIngo Molnar 		return 0;
779f62bae50SIngo Molnar 	}
780f62bae50SIngo Molnar 
781f62bae50SIngo Molnar 	res = (((u64)deltapm) *  mult) >> 22;
782f62bae50SIngo Molnar 	do_div(res, 1000000);
783f62bae50SIngo Molnar 	pr_warning("APIC calibration not consistent "
784f62bae50SIngo Molnar 		   "with PM-Timer: %ldms instead of 100ms\n",(long)res);
785f62bae50SIngo Molnar 
786f62bae50SIngo Molnar 	/* Correct the lapic counter value */
787f62bae50SIngo Molnar 	res = (((u64)(*delta)) * pm_100ms);
788f62bae50SIngo Molnar 	do_div(res, deltapm);
789f62bae50SIngo Molnar 	pr_info("APIC delta adjusted to PM-Timer: "
790f62bae50SIngo Molnar 		"%lu (%ld)\n", (unsigned long)res, *delta);
791f62bae50SIngo Molnar 	*delta = (long)res;
792f62bae50SIngo Molnar 
793f62bae50SIngo Molnar 	/* Correct the tsc counter value */
79459e21e3dSBorislav Petkov 	if (boot_cpu_has(X86_FEATURE_TSC)) {
795f62bae50SIngo Molnar 		res = (((u64)(*deltatsc)) * pm_100ms);
796f62bae50SIngo Molnar 		do_div(res, deltapm);
797f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
798f62bae50SIngo Molnar 					  "PM-Timer: %lu (%ld)\n",
799f62bae50SIngo Molnar 					(unsigned long)res, *deltatsc);
800f62bae50SIngo Molnar 		*deltatsc = (long)res;
801f62bae50SIngo Molnar 	}
802f62bae50SIngo Molnar 
803f62bae50SIngo Molnar 	return 0;
804f62bae50SIngo Molnar }
805f62bae50SIngo Molnar 
8066eb4f082SJacob Pan static int __init lapic_init_clockevent(void)
8076eb4f082SJacob Pan {
80852ae346bSDaniel Drake 	if (!lapic_timer_period)
8096eb4f082SJacob Pan 		return -1;
8106eb4f082SJacob Pan 
8116eb4f082SJacob Pan 	/* Calculate the scaled math multiplication factor */
81252ae346bSDaniel Drake 	lapic_clockevent.mult = div_sc(lapic_timer_period/APIC_DIVISOR,
8136eb4f082SJacob Pan 					TICK_NSEC, lapic_clockevent.shift);
8146eb4f082SJacob Pan 	lapic_clockevent.max_delta_ns =
8156eb4f082SJacob Pan 		clockevent_delta2ns(0x7FFFFFFF, &lapic_clockevent);
8166eb4f082SJacob Pan 	lapic_clockevent.max_delta_ticks = 0x7FFFFFFF;
8176eb4f082SJacob Pan 	lapic_clockevent.min_delta_ns =
8186eb4f082SJacob Pan 		clockevent_delta2ns(0xF, &lapic_clockevent);
8196eb4f082SJacob Pan 	lapic_clockevent.min_delta_ticks = 0xF;
8206eb4f082SJacob Pan 
8216eb4f082SJacob Pan 	return 0;
8226eb4f082SJacob Pan }
8236eb4f082SJacob Pan 
824c8c40767SThomas Gleixner bool __init apic_needs_pit(void)
825c8c40767SThomas Gleixner {
826c8c40767SThomas Gleixner 	/*
827c8c40767SThomas Gleixner 	 * If the frequencies are not known, PIT is required for both TSC
828c8c40767SThomas Gleixner 	 * and apic timer calibration.
829c8c40767SThomas Gleixner 	 */
830c8c40767SThomas Gleixner 	if (!tsc_khz || !cpu_khz)
831c8c40767SThomas Gleixner 		return true;
832c8c40767SThomas Gleixner 
833c8c40767SThomas Gleixner 	/* Is there an APIC at all? */
834c8c40767SThomas Gleixner 	if (!boot_cpu_has(X86_FEATURE_APIC))
835c8c40767SThomas Gleixner 		return true;
836c8c40767SThomas Gleixner 
837afa8b475SJan Stancek 	/* Virt guests may lack ARAT, but still have DEADLINE */
838afa8b475SJan Stancek 	if (!boot_cpu_has(X86_FEATURE_ARAT))
839afa8b475SJan Stancek 		return true;
840afa8b475SJan Stancek 
841c8c40767SThomas Gleixner 	/* Deadline timer is based on TSC so no further PIT action required */
842c8c40767SThomas Gleixner 	if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
843c8c40767SThomas Gleixner 		return false;
844c8c40767SThomas Gleixner 
845c8c40767SThomas Gleixner 	/* APIC timer disabled? */
846c8c40767SThomas Gleixner 	if (disable_apic_timer)
847c8c40767SThomas Gleixner 		return true;
848c8c40767SThomas Gleixner 	/*
849c8c40767SThomas Gleixner 	 * The APIC timer frequency is known already, no PIT calibration
850c8c40767SThomas Gleixner 	 * required. If unknown, let the PIT be initialized.
851c8c40767SThomas Gleixner 	 */
852c8c40767SThomas Gleixner 	return lapic_timer_period == 0;
853c8c40767SThomas Gleixner }
854c8c40767SThomas Gleixner 
855f62bae50SIngo Molnar static int __init calibrate_APIC_clock(void)
856f62bae50SIngo Molnar {
85789cbc767SChristoph Lameter 	struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
858f897e60aSThomas Gleixner 	u64 tsc_perj = 0, tsc_start = 0;
859f897e60aSThomas Gleixner 	unsigned long jif_start;
860f62bae50SIngo Molnar 	unsigned long deltaj;
861f62bae50SIngo Molnar 	long delta, deltatsc;
862f62bae50SIngo Molnar 	int pm_referenced = 0;
863f62bae50SIngo Molnar 
8646eb4f082SJacob Pan 	if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
8656eb4f082SJacob Pan 		return 0;
8666eb4f082SJacob Pan 
8676eb4f082SJacob Pan 	/*
8686eb4f082SJacob Pan 	 * Check if lapic timer has already been calibrated by platform
8696eb4f082SJacob Pan 	 * specific routine, such as tsc calibration code. If so just fill
8701ade93efSJacob Pan 	 * in the clockevent structure and return.
8711ade93efSJacob Pan 	 */
8726eb4f082SJacob Pan 	if (!lapic_init_clockevent()) {
8731ade93efSJacob Pan 		apic_printk(APIC_VERBOSE, "lapic timer already calibrated %d\n",
87452ae346bSDaniel Drake 			    lapic_timer_period);
8756eb4f082SJacob Pan 		/*
8766eb4f082SJacob Pan 		 * Direct calibration methods must have an always running
8776eb4f082SJacob Pan 		 * local APIC timer, no need for broadcast timer.
8786eb4f082SJacob Pan 		 */
8791ade93efSJacob Pan 		lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
8801ade93efSJacob Pan 		return 0;
8811ade93efSJacob Pan 	}
8821ade93efSJacob Pan 
883279f1461SSuresh Siddha 	apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
884279f1461SSuresh Siddha 		    "calibrating APIC timer ...\n");
885279f1461SSuresh Siddha 
886f897e60aSThomas Gleixner 	/*
887f897e60aSThomas Gleixner 	 * There are platforms w/o global clockevent devices. Instead of
888f897e60aSThomas Gleixner 	 * making the calibration conditional on that, use a polling based
889f897e60aSThomas Gleixner 	 * approach everywhere.
890f897e60aSThomas Gleixner 	 */
891f62bae50SIngo Molnar 	local_irq_disable();
892f62bae50SIngo Molnar 
893f62bae50SIngo Molnar 	/*
894f62bae50SIngo Molnar 	 * Setup the APIC counter to maximum. There is no way the lapic
895f62bae50SIngo Molnar 	 * can underflow in the 100ms detection time frame
896f62bae50SIngo Molnar 	 */
897f62bae50SIngo Molnar 	__setup_APIC_LVTT(0xffffffff, 0, 0);
898f62bae50SIngo Molnar 
899f897e60aSThomas Gleixner 	/*
900f897e60aSThomas Gleixner 	 * Methods to terminate the calibration loop:
901f897e60aSThomas Gleixner 	 *  1) Global clockevent if available (jiffies)
902f897e60aSThomas Gleixner 	 *  2) TSC if available and frequency is known
903f897e60aSThomas Gleixner 	 */
904f897e60aSThomas Gleixner 	jif_start = READ_ONCE(jiffies);
905f897e60aSThomas Gleixner 
906f897e60aSThomas Gleixner 	if (tsc_khz) {
907f897e60aSThomas Gleixner 		tsc_start = rdtsc();
908f897e60aSThomas Gleixner 		tsc_perj = div_u64((u64)tsc_khz * 1000, HZ);
909f897e60aSThomas Gleixner 	}
910f897e60aSThomas Gleixner 
911f897e60aSThomas Gleixner 	/*
912f897e60aSThomas Gleixner 	 * Enable interrupts so the tick can fire, if a global
913f897e60aSThomas Gleixner 	 * clockevent device is available
914f897e60aSThomas Gleixner 	 */
915f62bae50SIngo Molnar 	local_irq_enable();
916f62bae50SIngo Molnar 
917f897e60aSThomas Gleixner 	while (lapic_cal_loops <= LAPIC_CAL_LOOPS) {
918f897e60aSThomas Gleixner 		/* Wait for a tick to elapse */
919f897e60aSThomas Gleixner 		while (1) {
920f897e60aSThomas Gleixner 			if (tsc_khz) {
921f897e60aSThomas Gleixner 				u64 tsc_now = rdtsc();
922f897e60aSThomas Gleixner 				if ((tsc_now - tsc_start) >= tsc_perj) {
923f897e60aSThomas Gleixner 					tsc_start += tsc_perj;
924f897e60aSThomas Gleixner 					break;
925f897e60aSThomas Gleixner 				}
926f897e60aSThomas Gleixner 			} else {
927f897e60aSThomas Gleixner 				unsigned long jif_now = READ_ONCE(jiffies);
928f897e60aSThomas Gleixner 
929f897e60aSThomas Gleixner 				if (time_after(jif_now, jif_start)) {
930f897e60aSThomas Gleixner 					jif_start = jif_now;
931f897e60aSThomas Gleixner 					break;
932f897e60aSThomas Gleixner 				}
933f897e60aSThomas Gleixner 			}
934f62bae50SIngo Molnar 			cpu_relax();
935f897e60aSThomas Gleixner 		}
936f897e60aSThomas Gleixner 
937f897e60aSThomas Gleixner 		/* Invoke the calibration routine */
938f897e60aSThomas Gleixner 		local_irq_disable();
939f897e60aSThomas Gleixner 		lapic_cal_handler(NULL);
940f897e60aSThomas Gleixner 		local_irq_enable();
941f897e60aSThomas Gleixner 	}
942f62bae50SIngo Molnar 
943f62bae50SIngo Molnar 	local_irq_disable();
944f62bae50SIngo Molnar 
945f62bae50SIngo Molnar 	/* Build delta t1-t2 as apic timer counts down */
946f62bae50SIngo Molnar 	delta = lapic_cal_t1 - lapic_cal_t2;
947f62bae50SIngo Molnar 	apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
948f62bae50SIngo Molnar 
949f62bae50SIngo Molnar 	deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
950f62bae50SIngo Molnar 
951f62bae50SIngo Molnar 	/* we trust the PM based calibration if possible */
952f62bae50SIngo Molnar 	pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
953f62bae50SIngo Molnar 					&delta, &deltatsc);
954f62bae50SIngo Molnar 
95552ae346bSDaniel Drake 	lapic_timer_period = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
9566eb4f082SJacob Pan 	lapic_init_clockevent();
957f62bae50SIngo Molnar 
958f62bae50SIngo Molnar 	apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
959411462f6SThomas Gleixner 	apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult);
960f62bae50SIngo Molnar 	apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
96152ae346bSDaniel Drake 		    lapic_timer_period);
962f62bae50SIngo Molnar 
96359e21e3dSBorislav Petkov 	if (boot_cpu_has(X86_FEATURE_TSC)) {
964f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
965f62bae50SIngo Molnar 			    "%ld.%04ld MHz.\n",
966f62bae50SIngo Molnar 			    (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
967f62bae50SIngo Molnar 			    (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
968f62bae50SIngo Molnar 	}
969f62bae50SIngo Molnar 
970f62bae50SIngo Molnar 	apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
971f62bae50SIngo Molnar 		    "%u.%04u MHz.\n",
97252ae346bSDaniel Drake 		    lapic_timer_period / (1000000 / HZ),
97352ae346bSDaniel Drake 		    lapic_timer_period % (1000000 / HZ));
974f62bae50SIngo Molnar 
975f62bae50SIngo Molnar 	/*
976f62bae50SIngo Molnar 	 * Do a sanity check on the APIC calibration result
977f62bae50SIngo Molnar 	 */
97852ae346bSDaniel Drake 	if (lapic_timer_period < (1000000 / HZ)) {
979f62bae50SIngo Molnar 		local_irq_enable();
980f62bae50SIngo Molnar 		pr_warning("APIC frequency too slow, disabling apic timer\n");
981f62bae50SIngo Molnar 		return -1;
982f62bae50SIngo Molnar 	}
983f62bae50SIngo Molnar 
984f62bae50SIngo Molnar 	levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
985f62bae50SIngo Molnar 
986f62bae50SIngo Molnar 	/*
987f897e60aSThomas Gleixner 	 * PM timer calibration failed or not turned on so lets try APIC
988f897e60aSThomas Gleixner 	 * timer based calibration, if a global clockevent device is
989f897e60aSThomas Gleixner 	 * available.
990f62bae50SIngo Molnar 	 */
991f897e60aSThomas Gleixner 	if (!pm_referenced && global_clock_event) {
992f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
993f62bae50SIngo Molnar 
994f62bae50SIngo Molnar 		/*
995f62bae50SIngo Molnar 		 * Setup the apic timer manually
996f62bae50SIngo Molnar 		 */
997f62bae50SIngo Molnar 		levt->event_handler = lapic_cal_handler;
998b23d8e52SViresh Kumar 		lapic_timer_set_periodic(levt);
999f62bae50SIngo Molnar 		lapic_cal_loops = -1;
1000f62bae50SIngo Molnar 
1001f62bae50SIngo Molnar 		/* Let the interrupts run */
1002f62bae50SIngo Molnar 		local_irq_enable();
1003f62bae50SIngo Molnar 
1004f62bae50SIngo Molnar 		while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
1005f62bae50SIngo Molnar 			cpu_relax();
1006f62bae50SIngo Molnar 
1007f62bae50SIngo Molnar 		/* Stop the lapic timer */
1008c948c260SThomas Gleixner 		local_irq_disable();
1009b23d8e52SViresh Kumar 		lapic_timer_shutdown(levt);
1010f62bae50SIngo Molnar 
1011f62bae50SIngo Molnar 		/* Jiffies delta */
1012f62bae50SIngo Molnar 		deltaj = lapic_cal_j2 - lapic_cal_j1;
1013f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
1014f62bae50SIngo Molnar 
1015f62bae50SIngo Molnar 		/* Check, if the jiffies result is consistent */
1016f62bae50SIngo Molnar 		if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
1017f62bae50SIngo Molnar 			apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
1018f62bae50SIngo Molnar 		else
1019f62bae50SIngo Molnar 			levt->features |= CLOCK_EVT_FEAT_DUMMY;
1020c948c260SThomas Gleixner 	}
1021f62bae50SIngo Molnar 	local_irq_enable();
1022f62bae50SIngo Molnar 
1023f62bae50SIngo Molnar 	if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
1024f62bae50SIngo Molnar 		pr_warning("APIC timer disabled due to verification failure\n");
1025f62bae50SIngo Molnar 		return -1;
1026f62bae50SIngo Molnar 	}
1027f62bae50SIngo Molnar 
1028f62bae50SIngo Molnar 	return 0;
1029f62bae50SIngo Molnar }
1030f62bae50SIngo Molnar 
1031f62bae50SIngo Molnar /*
1032f62bae50SIngo Molnar  * Setup the boot APIC
1033f62bae50SIngo Molnar  *
1034f62bae50SIngo Molnar  * Calibrate and verify the result.
1035f62bae50SIngo Molnar  */
1036f62bae50SIngo Molnar void __init setup_boot_APIC_clock(void)
1037f62bae50SIngo Molnar {
1038f62bae50SIngo Molnar 	/*
1039f62bae50SIngo Molnar 	 * The local apic timer can be disabled via the kernel
1040f62bae50SIngo Molnar 	 * commandline or from the CPU detection code. Register the lapic
1041f62bae50SIngo Molnar 	 * timer as a dummy clock event source on SMP systems, so the
1042f62bae50SIngo Molnar 	 * broadcast mechanism is used. On UP systems simply ignore it.
1043f62bae50SIngo Molnar 	 */
1044f62bae50SIngo Molnar 	if (disable_apic_timer) {
1045f62bae50SIngo Molnar 		pr_info("Disabling APIC timer\n");
1046f62bae50SIngo Molnar 		/* No broadcast on UP ! */
1047f62bae50SIngo Molnar 		if (num_possible_cpus() > 1) {
1048f62bae50SIngo Molnar 			lapic_clockevent.mult = 1;
1049f62bae50SIngo Molnar 			setup_APIC_timer();
1050f62bae50SIngo Molnar 		}
1051f62bae50SIngo Molnar 		return;
1052f62bae50SIngo Molnar 	}
1053f62bae50SIngo Molnar 
1054f62bae50SIngo Molnar 	if (calibrate_APIC_clock()) {
1055f62bae50SIngo Molnar 		/* No broadcast on UP ! */
1056f62bae50SIngo Molnar 		if (num_possible_cpus() > 1)
1057f62bae50SIngo Molnar 			setup_APIC_timer();
1058f62bae50SIngo Molnar 		return;
1059f62bae50SIngo Molnar 	}
1060f62bae50SIngo Molnar 
1061f62bae50SIngo Molnar 	/*
1062f62bae50SIngo Molnar 	 * If nmi_watchdog is set to IO_APIC, we need the
1063f62bae50SIngo Molnar 	 * PIT/HPET going.  Otherwise register lapic as a dummy
1064f62bae50SIngo Molnar 	 * device.
1065f62bae50SIngo Molnar 	 */
1066f62bae50SIngo Molnar 	lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
1067f62bae50SIngo Molnar 
1068f62bae50SIngo Molnar 	/* Setup the lapic or request the broadcast */
1069f62bae50SIngo Molnar 	setup_APIC_timer();
107007c94a38SBorislav Petkov 	amd_e400_c1e_apic_setup();
1071f62bae50SIngo Molnar }
1072f62bae50SIngo Molnar 
1073148f9bb8SPaul Gortmaker void setup_secondary_APIC_clock(void)
1074f62bae50SIngo Molnar {
1075f62bae50SIngo Molnar 	setup_APIC_timer();
107607c94a38SBorislav Petkov 	amd_e400_c1e_apic_setup();
1077f62bae50SIngo Molnar }
1078f62bae50SIngo Molnar 
1079f62bae50SIngo Molnar /*
1080f62bae50SIngo Molnar  * The guts of the apic timer interrupt
1081f62bae50SIngo Molnar  */
1082f62bae50SIngo Molnar static void local_apic_timer_interrupt(void)
1083f62bae50SIngo Molnar {
10843bec6defSThomas Gleixner 	struct clock_event_device *evt = this_cpu_ptr(&lapic_events);
1085f62bae50SIngo Molnar 
1086f62bae50SIngo Molnar 	/*
1087f62bae50SIngo Molnar 	 * Normally we should not be here till LAPIC has been initialized but
1088f62bae50SIngo Molnar 	 * in some cases like kdump, its possible that there is a pending LAPIC
1089f62bae50SIngo Molnar 	 * timer interrupt from previous kernel's context and is delivered in
1090f62bae50SIngo Molnar 	 * new kernel the moment interrupts are enabled.
1091f62bae50SIngo Molnar 	 *
1092f62bae50SIngo Molnar 	 * Interrupts are enabled early and LAPIC is setup much later, hence
1093f62bae50SIngo Molnar 	 * its possible that when we get here evt->event_handler is NULL.
1094f62bae50SIngo Molnar 	 * Check for event_handler being NULL and discard the interrupt as
1095f62bae50SIngo Molnar 	 * spurious.
1096f62bae50SIngo Molnar 	 */
1097f62bae50SIngo Molnar 	if (!evt->event_handler) {
10983bec6defSThomas Gleixner 		pr_warning("Spurious LAPIC timer interrupt on cpu %d\n",
10993bec6defSThomas Gleixner 			   smp_processor_id());
1100f62bae50SIngo Molnar 		/* Switch it off */
1101b23d8e52SViresh Kumar 		lapic_timer_shutdown(evt);
1102f62bae50SIngo Molnar 		return;
1103f62bae50SIngo Molnar 	}
1104f62bae50SIngo Molnar 
1105f62bae50SIngo Molnar 	/*
1106f62bae50SIngo Molnar 	 * the NMI deadlock-detector uses this.
1107f62bae50SIngo Molnar 	 */
1108f62bae50SIngo Molnar 	inc_irq_stat(apic_timer_irqs);
1109f62bae50SIngo Molnar 
1110f62bae50SIngo Molnar 	evt->event_handler(evt);
1111f62bae50SIngo Molnar }
1112f62bae50SIngo Molnar 
1113f62bae50SIngo Molnar /*
1114f62bae50SIngo Molnar  * Local APIC timer interrupt. This is the most natural way for doing
1115f62bae50SIngo Molnar  * local interrupts, but local timer interrupts can be emulated by
1116f62bae50SIngo Molnar  * broadcast interrupts too. [in case the hw doesn't support APIC timers]
1117f62bae50SIngo Molnar  *
1118f62bae50SIngo Molnar  * [ if a single-CPU system runs an SMP kernel then we call the local
1119f62bae50SIngo Molnar  *   interrupt as well. Thus we cannot inline the local irq ... ]
1120f62bae50SIngo Molnar  */
11211d9090e2SAndi Kleen __visible void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
1122f62bae50SIngo Molnar {
1123f62bae50SIngo Molnar 	struct pt_regs *old_regs = set_irq_regs(regs);
1124f62bae50SIngo Molnar 
1125f62bae50SIngo Molnar 	/*
1126f62bae50SIngo Molnar 	 * NOTE! We'd better ACK the irq immediately,
1127f62bae50SIngo Molnar 	 * because timer handling can be slow.
1128eddc0e92SSeiji Aguchi 	 *
1129f62bae50SIngo Molnar 	 * update_process_times() expects us to have done irq_enter().
1130f62bae50SIngo Molnar 	 * Besides, if we don't timer interrupts ignore the global
1131f62bae50SIngo Molnar 	 * interrupt lock, which is the WrongThing (tm) to do.
1132f62bae50SIngo Molnar 	 */
1133eddc0e92SSeiji Aguchi 	entering_ack_irq();
1134cf910e83SSeiji Aguchi 	trace_local_timer_entry(LOCAL_TIMER_VECTOR);
1135cf910e83SSeiji Aguchi 	local_apic_timer_interrupt();
1136cf910e83SSeiji Aguchi 	trace_local_timer_exit(LOCAL_TIMER_VECTOR);
1137cf910e83SSeiji Aguchi 	exiting_irq();
1138f62bae50SIngo Molnar 
1139f62bae50SIngo Molnar 	set_irq_regs(old_regs);
1140f62bae50SIngo Molnar }
1141f62bae50SIngo Molnar 
1142f62bae50SIngo Molnar int setup_profiling_timer(unsigned int multiplier)
1143f62bae50SIngo Molnar {
1144f62bae50SIngo Molnar 	return -EINVAL;
1145f62bae50SIngo Molnar }
1146f62bae50SIngo Molnar 
1147f62bae50SIngo Molnar /*
1148f62bae50SIngo Molnar  * Local APIC start and shutdown
1149f62bae50SIngo Molnar  */
1150f62bae50SIngo Molnar 
1151f62bae50SIngo Molnar /**
1152f62bae50SIngo Molnar  * clear_local_APIC - shutdown the local APIC
1153f62bae50SIngo Molnar  *
1154f62bae50SIngo Molnar  * This is called, when a CPU is disabled and before rebooting, so the state of
1155f62bae50SIngo Molnar  * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
1156f62bae50SIngo Molnar  * leftovers during boot.
1157f62bae50SIngo Molnar  */
1158f62bae50SIngo Molnar void clear_local_APIC(void)
1159f62bae50SIngo Molnar {
1160f62bae50SIngo Molnar 	int maxlvt;
1161f62bae50SIngo Molnar 	u32 v;
1162f62bae50SIngo Molnar 
1163f62bae50SIngo Molnar 	/* APIC hasn't been mapped yet */
1164fc1edaf9SSuresh Siddha 	if (!x2apic_mode && !apic_phys)
1165f62bae50SIngo Molnar 		return;
1166f62bae50SIngo Molnar 
1167f62bae50SIngo Molnar 	maxlvt = lapic_get_maxlvt();
1168f62bae50SIngo Molnar 	/*
1169f62bae50SIngo Molnar 	 * Masking an LVT entry can trigger a local APIC error
1170f62bae50SIngo Molnar 	 * if the vector is zero. Mask LVTERR first to prevent this.
1171f62bae50SIngo Molnar 	 */
1172f62bae50SIngo Molnar 	if (maxlvt >= 3) {
1173f62bae50SIngo Molnar 		v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
1174f62bae50SIngo Molnar 		apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
1175f62bae50SIngo Molnar 	}
1176f62bae50SIngo Molnar 	/*
1177f62bae50SIngo Molnar 	 * Careful: we have to set masks only first to deassert
1178f62bae50SIngo Molnar 	 * any level-triggered sources.
1179f62bae50SIngo Molnar 	 */
1180f62bae50SIngo Molnar 	v = apic_read(APIC_LVTT);
1181f62bae50SIngo Molnar 	apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
1182f62bae50SIngo Molnar 	v = apic_read(APIC_LVT0);
1183f62bae50SIngo Molnar 	apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1184f62bae50SIngo Molnar 	v = apic_read(APIC_LVT1);
1185f62bae50SIngo Molnar 	apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
1186f62bae50SIngo Molnar 	if (maxlvt >= 4) {
1187f62bae50SIngo Molnar 		v = apic_read(APIC_LVTPC);
1188f62bae50SIngo Molnar 		apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
1189f62bae50SIngo Molnar 	}
1190f62bae50SIngo Molnar 
1191f62bae50SIngo Molnar 	/* lets not touch this if we didn't frob it */
11924efc0670SAndi Kleen #ifdef CONFIG_X86_THERMAL_VECTOR
1193f62bae50SIngo Molnar 	if (maxlvt >= 5) {
1194f62bae50SIngo Molnar 		v = apic_read(APIC_LVTTHMR);
1195f62bae50SIngo Molnar 		apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
1196f62bae50SIngo Molnar 	}
1197f62bae50SIngo Molnar #endif
1198638bee71SH. Peter Anvin #ifdef CONFIG_X86_MCE_INTEL
1199638bee71SH. Peter Anvin 	if (maxlvt >= 6) {
1200638bee71SH. Peter Anvin 		v = apic_read(APIC_LVTCMCI);
1201638bee71SH. Peter Anvin 		if (!(v & APIC_LVT_MASKED))
1202638bee71SH. Peter Anvin 			apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
1203638bee71SH. Peter Anvin 	}
1204638bee71SH. Peter Anvin #endif
1205638bee71SH. Peter Anvin 
1206f62bae50SIngo Molnar 	/*
1207f62bae50SIngo Molnar 	 * Clean APIC state for other OSs:
1208f62bae50SIngo Molnar 	 */
1209f62bae50SIngo Molnar 	apic_write(APIC_LVTT, APIC_LVT_MASKED);
1210f62bae50SIngo Molnar 	apic_write(APIC_LVT0, APIC_LVT_MASKED);
1211f62bae50SIngo Molnar 	apic_write(APIC_LVT1, APIC_LVT_MASKED);
1212f62bae50SIngo Molnar 	if (maxlvt >= 3)
1213f62bae50SIngo Molnar 		apic_write(APIC_LVTERR, APIC_LVT_MASKED);
1214f62bae50SIngo Molnar 	if (maxlvt >= 4)
1215f62bae50SIngo Molnar 		apic_write(APIC_LVTPC, APIC_LVT_MASKED);
1216f62bae50SIngo Molnar 
1217f62bae50SIngo Molnar 	/* Integrated APIC (!82489DX) ? */
1218f62bae50SIngo Molnar 	if (lapic_is_integrated()) {
1219f62bae50SIngo Molnar 		if (maxlvt > 3)
1220f62bae50SIngo Molnar 			/* Clear ESR due to Pentium errata 3AP and 11AP */
1221f62bae50SIngo Molnar 			apic_write(APIC_ESR, 0);
1222f62bae50SIngo Molnar 		apic_read(APIC_ESR);
1223f62bae50SIngo Molnar 	}
1224f62bae50SIngo Molnar }
1225f62bae50SIngo Molnar 
1226f62bae50SIngo Molnar /**
122760dcaad5SThomas Gleixner  * apic_soft_disable - Clears and software disables the local APIC on hotplug
122860dcaad5SThomas Gleixner  *
122960dcaad5SThomas Gleixner  * Contrary to disable_local_APIC() this does not touch the enable bit in
123060dcaad5SThomas Gleixner  * MSR_IA32_APICBASE. Clearing that bit on systems based on the 3 wire APIC
123160dcaad5SThomas Gleixner  * bus would require a hardware reset as the APIC would lose track of bus
123260dcaad5SThomas Gleixner  * arbitration. On systems with FSB delivery APICBASE could be disabled,
123360dcaad5SThomas Gleixner  * but it has to be guaranteed that no interrupt is sent to the APIC while
123460dcaad5SThomas Gleixner  * in that state and it's not clear from the SDM whether it still responds
123560dcaad5SThomas Gleixner  * to INIT/SIPI messages. Stay on the safe side and use software disable.
123660dcaad5SThomas Gleixner  */
123760dcaad5SThomas Gleixner void apic_soft_disable(void)
123860dcaad5SThomas Gleixner {
123960dcaad5SThomas Gleixner 	u32 value;
124060dcaad5SThomas Gleixner 
124160dcaad5SThomas Gleixner 	clear_local_APIC();
124260dcaad5SThomas Gleixner 
124360dcaad5SThomas Gleixner 	/* Soft disable APIC (implies clearing of registers for 82489DX!). */
124460dcaad5SThomas Gleixner 	value = apic_read(APIC_SPIV);
124560dcaad5SThomas Gleixner 	value &= ~APIC_SPIV_APIC_ENABLED;
124660dcaad5SThomas Gleixner 	apic_write(APIC_SPIV, value);
124760dcaad5SThomas Gleixner }
124860dcaad5SThomas Gleixner 
124960dcaad5SThomas Gleixner /**
1250f62bae50SIngo Molnar  * disable_local_APIC - clear and disable the local APIC
1251f62bae50SIngo Molnar  */
1252f62bae50SIngo Molnar void disable_local_APIC(void)
1253f62bae50SIngo Molnar {
1254f62bae50SIngo Molnar 	/* APIC hasn't been mapped yet */
1255fd19dce7SYinghai Lu 	if (!x2apic_mode && !apic_phys)
1256f62bae50SIngo Molnar 		return;
1257f62bae50SIngo Molnar 
125860dcaad5SThomas Gleixner 	apic_soft_disable();
1259f62bae50SIngo Molnar 
1260f62bae50SIngo Molnar #ifdef CONFIG_X86_32
1261f62bae50SIngo Molnar 	/*
1262f62bae50SIngo Molnar 	 * When LAPIC was disabled by the BIOS and enabled by the kernel,
1263f62bae50SIngo Molnar 	 * restore the disabled state.
1264f62bae50SIngo Molnar 	 */
1265f62bae50SIngo Molnar 	if (enabled_via_apicbase) {
1266f62bae50SIngo Molnar 		unsigned int l, h;
1267f62bae50SIngo Molnar 
1268f62bae50SIngo Molnar 		rdmsr(MSR_IA32_APICBASE, l, h);
1269f62bae50SIngo Molnar 		l &= ~MSR_IA32_APICBASE_ENABLE;
1270f62bae50SIngo Molnar 		wrmsr(MSR_IA32_APICBASE, l, h);
1271f62bae50SIngo Molnar 	}
1272f62bae50SIngo Molnar #endif
1273f62bae50SIngo Molnar }
1274f62bae50SIngo Molnar 
1275f62bae50SIngo Molnar /*
1276f62bae50SIngo Molnar  * If Linux enabled the LAPIC against the BIOS default disable it down before
1277f62bae50SIngo Molnar  * re-entering the BIOS on shutdown.  Otherwise the BIOS may get confused and
1278f62bae50SIngo Molnar  * not power-off.  Additionally clear all LVT entries before disable_local_APIC
1279f62bae50SIngo Molnar  * for the case where Linux didn't enable the LAPIC.
1280f62bae50SIngo Molnar  */
1281f62bae50SIngo Molnar void lapic_shutdown(void)
1282f62bae50SIngo Molnar {
1283f62bae50SIngo Molnar 	unsigned long flags;
1284f62bae50SIngo Molnar 
128593984fbdSBorislav Petkov 	if (!boot_cpu_has(X86_FEATURE_APIC) && !apic_from_smp_config())
1286f62bae50SIngo Molnar 		return;
1287f62bae50SIngo Molnar 
1288f62bae50SIngo Molnar 	local_irq_save(flags);
1289f62bae50SIngo Molnar 
1290f62bae50SIngo Molnar #ifdef CONFIG_X86_32
1291f62bae50SIngo Molnar 	if (!enabled_via_apicbase)
1292f62bae50SIngo Molnar 		clear_local_APIC();
1293f62bae50SIngo Molnar 	else
1294f62bae50SIngo Molnar #endif
1295f62bae50SIngo Molnar 		disable_local_APIC();
1296f62bae50SIngo Molnar 
1297f62bae50SIngo Molnar 
1298f62bae50SIngo Molnar 	local_irq_restore(flags);
1299f62bae50SIngo Molnar }
1300f62bae50SIngo Molnar 
1301f62bae50SIngo Molnar /**
1302f62bae50SIngo Molnar  * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1303f62bae50SIngo Molnar  */
1304f62bae50SIngo Molnar void __init sync_Arb_IDs(void)
1305f62bae50SIngo Molnar {
1306f62bae50SIngo Molnar 	/*
1307f62bae50SIngo Molnar 	 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1308f62bae50SIngo Molnar 	 * needed on AMD.
1309f62bae50SIngo Molnar 	 */
1310f62bae50SIngo Molnar 	if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
1311f62bae50SIngo Molnar 		return;
1312f62bae50SIngo Molnar 
1313f62bae50SIngo Molnar 	/*
1314f62bae50SIngo Molnar 	 * Wait for idle.
1315f62bae50SIngo Molnar 	 */
1316f62bae50SIngo Molnar 	apic_wait_icr_idle();
1317f62bae50SIngo Molnar 
1318f62bae50SIngo Molnar 	apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
1319f62bae50SIngo Molnar 	apic_write(APIC_ICR, APIC_DEST_ALLINC |
1320f62bae50SIngo Molnar 			APIC_INT_LEVELTRIG | APIC_DM_INIT);
1321f62bae50SIngo Molnar }
1322f62bae50SIngo Molnar 
13236444b40eSSean Christopherson enum apic_intr_mode_id apic_intr_mode __ro_after_init;
13240114a8e8SDou Liyang 
13250114a8e8SDou Liyang static int __init apic_intr_mode_select(void)
1326f62bae50SIngo Molnar {
13270114a8e8SDou Liyang 	/* Check kernel option */
13280114a8e8SDou Liyang 	if (disable_apic) {
13290114a8e8SDou Liyang 		pr_info("APIC disabled via kernel command line\n");
13300114a8e8SDou Liyang 		return APIC_PIC;
13310114a8e8SDou Liyang 	}
1332f62bae50SIngo Molnar 
13330114a8e8SDou Liyang 	/* Check BIOS */
13340114a8e8SDou Liyang #ifdef CONFIG_X86_64
13350114a8e8SDou Liyang 	/* On 64-bit, the APIC must be integrated, Check local APIC only */
13360114a8e8SDou Liyang 	if (!boot_cpu_has(X86_FEATURE_APIC)) {
13370114a8e8SDou Liyang 		disable_apic = 1;
13380114a8e8SDou Liyang 		pr_info("APIC disabled by BIOS\n");
13390114a8e8SDou Liyang 		return APIC_PIC;
13400114a8e8SDou Liyang 	}
13410114a8e8SDou Liyang #else
13420114a8e8SDou Liyang 	/* On 32-bit, the APIC may be integrated APIC or 82489DX */
1343f62bae50SIngo Molnar 
13440114a8e8SDou Liyang 	/* Neither 82489DX nor integrated APIC ? */
13450114a8e8SDou Liyang 	if (!boot_cpu_has(X86_FEATURE_APIC) && !smp_found_config) {
13460114a8e8SDou Liyang 		disable_apic = 1;
13470114a8e8SDou Liyang 		return APIC_PIC;
13480114a8e8SDou Liyang 	}
1349f62bae50SIngo Molnar 
13500114a8e8SDou Liyang 	/* If the BIOS pretends there is an integrated APIC ? */
13510114a8e8SDou Liyang 	if (!boot_cpu_has(X86_FEATURE_APIC) &&
13520114a8e8SDou Liyang 		APIC_INTEGRATED(boot_cpu_apic_version)) {
13530114a8e8SDou Liyang 		disable_apic = 1;
13540114a8e8SDou Liyang 		pr_err(FW_BUG "Local APIC %d not detected, force emulation\n",
13550114a8e8SDou Liyang 				       boot_cpu_physical_apicid);
13560114a8e8SDou Liyang 		return APIC_PIC;
13570114a8e8SDou Liyang 	}
1358f62bae50SIngo Molnar #endif
1359f62bae50SIngo Molnar 
13600114a8e8SDou Liyang 	/* Check MP table or ACPI MADT configuration */
13610114a8e8SDou Liyang 	if (!smp_found_config) {
13620114a8e8SDou Liyang 		disable_ioapic_support();
13633e730dadSDou Liyang 		if (!acpi_lapic) {
13640114a8e8SDou Liyang 			pr_info("APIC: ACPI MADT or MP tables are not detected\n");
13653e730dadSDou Liyang 			return APIC_VIRTUAL_WIRE_NO_CONFIG;
13663e730dadSDou Liyang 		}
13670114a8e8SDou Liyang 		return APIC_VIRTUAL_WIRE;
13680114a8e8SDou Liyang 	}
13690114a8e8SDou Liyang 
13703e730dadSDou Liyang #ifdef CONFIG_SMP
13713e730dadSDou Liyang 	/* If SMP should be disabled, then really disable it! */
13723e730dadSDou Liyang 	if (!setup_max_cpus) {
13733e730dadSDou Liyang 		pr_info("APIC: SMP mode deactivated\n");
13743e730dadSDou Liyang 		return APIC_SYMMETRIC_IO_NO_ROUTING;
13753e730dadSDou Liyang 	}
13763e730dadSDou Liyang 
13773e730dadSDou Liyang 	if (read_apic_id() != boot_cpu_physical_apicid) {
13783e730dadSDou Liyang 		panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
13793e730dadSDou Liyang 		     read_apic_id(), boot_cpu_physical_apicid);
13803e730dadSDou Liyang 		/* Or can we switch back to PIC here? */
13813e730dadSDou Liyang 	}
13823e730dadSDou Liyang #endif
13833e730dadSDou Liyang 
13840114a8e8SDou Liyang 	return APIC_SYMMETRIC_IO;
13850114a8e8SDou Liyang }
13860114a8e8SDou Liyang 
1387fc90ccfdSVille Syrjälä /*
1388fc90ccfdSVille Syrjälä  * An initial setup of the virtual wire mode.
1389fc90ccfdSVille Syrjälä  */
1390fc90ccfdSVille Syrjälä void __init init_bsp_APIC(void)
1391fc90ccfdSVille Syrjälä {
1392fc90ccfdSVille Syrjälä 	unsigned int value;
1393fc90ccfdSVille Syrjälä 
1394fc90ccfdSVille Syrjälä 	/*
1395fc90ccfdSVille Syrjälä 	 * Don't do the setup now if we have a SMP BIOS as the
1396fc90ccfdSVille Syrjälä 	 * through-I/O-APIC virtual wire mode might be active.
1397fc90ccfdSVille Syrjälä 	 */
1398fc90ccfdSVille Syrjälä 	if (smp_found_config || !boot_cpu_has(X86_FEATURE_APIC))
1399fc90ccfdSVille Syrjälä 		return;
1400fc90ccfdSVille Syrjälä 
1401fc90ccfdSVille Syrjälä 	/*
1402fc90ccfdSVille Syrjälä 	 * Do not trust the local APIC being empty at bootup.
1403fc90ccfdSVille Syrjälä 	 */
1404fc90ccfdSVille Syrjälä 	clear_local_APIC();
1405fc90ccfdSVille Syrjälä 
1406fc90ccfdSVille Syrjälä 	/*
1407fc90ccfdSVille Syrjälä 	 * Enable APIC.
1408fc90ccfdSVille Syrjälä 	 */
1409fc90ccfdSVille Syrjälä 	value = apic_read(APIC_SPIV);
1410fc90ccfdSVille Syrjälä 	value &= ~APIC_VECTOR_MASK;
1411fc90ccfdSVille Syrjälä 	value |= APIC_SPIV_APIC_ENABLED;
1412fc90ccfdSVille Syrjälä 
1413fc90ccfdSVille Syrjälä #ifdef CONFIG_X86_32
1414fc90ccfdSVille Syrjälä 	/* This bit is reserved on P4/Xeon and should be cleared */
1415fc90ccfdSVille Syrjälä 	if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1416fc90ccfdSVille Syrjälä 	    (boot_cpu_data.x86 == 15))
1417fc90ccfdSVille Syrjälä 		value &= ~APIC_SPIV_FOCUS_DISABLED;
1418fc90ccfdSVille Syrjälä 	else
1419fc90ccfdSVille Syrjälä #endif
1420fc90ccfdSVille Syrjälä 		value |= APIC_SPIV_FOCUS_DISABLED;
1421fc90ccfdSVille Syrjälä 	value |= SPURIOUS_APIC_VECTOR;
1422fc90ccfdSVille Syrjälä 	apic_write(APIC_SPIV, value);
1423fc90ccfdSVille Syrjälä 
1424fc90ccfdSVille Syrjälä 	/*
1425fc90ccfdSVille Syrjälä 	 * Set up the virtual wire mode.
1426fc90ccfdSVille Syrjälä 	 */
1427fc90ccfdSVille Syrjälä 	apic_write(APIC_LVT0, APIC_DM_EXTINT);
1428fc90ccfdSVille Syrjälä 	value = APIC_DM_NMI;
1429fc90ccfdSVille Syrjälä 	if (!lapic_is_integrated())		/* 82489DX */
1430fc90ccfdSVille Syrjälä 		value |= APIC_LVT_LEVEL_TRIGGER;
1431fc90ccfdSVille Syrjälä 	if (apic_extnmi == APIC_EXTNMI_NONE)
1432fc90ccfdSVille Syrjälä 		value |= APIC_LVT_MASKED;
1433fc90ccfdSVille Syrjälä 	apic_write(APIC_LVT1, value);
1434fc90ccfdSVille Syrjälä }
1435fc90ccfdSVille Syrjälä 
1436748b170cSThomas Gleixner static void __init apic_bsp_setup(bool upmode);
1437748b170cSThomas Gleixner 
14384b1669e8SDou Liyang /* Init the interrupt delivery mode for the BSP */
14394b1669e8SDou Liyang void __init apic_intr_mode_init(void)
14404b1669e8SDou Liyang {
14410c759131SDou Liyang 	bool upmode = IS_ENABLED(CONFIG_UP_LATE_INIT);
14423e730dadSDou Liyang 
14434f45ed9fSDou Liyang 	apic_intr_mode = apic_intr_mode_select();
14444f45ed9fSDou Liyang 
14454f45ed9fSDou Liyang 	switch (apic_intr_mode) {
14464b1669e8SDou Liyang 	case APIC_PIC:
14474b1669e8SDou Liyang 		pr_info("APIC: Keep in PIC mode(8259)\n");
14484b1669e8SDou Liyang 		return;
14494b1669e8SDou Liyang 	case APIC_VIRTUAL_WIRE:
14504b1669e8SDou Liyang 		pr_info("APIC: Switch to virtual wire mode setup\n");
14513e730dadSDou Liyang 		default_setup_apic_routing();
14523e730dadSDou Liyang 		break;
14533e730dadSDou Liyang 	case APIC_VIRTUAL_WIRE_NO_CONFIG:
14543e730dadSDou Liyang 		pr_info("APIC: Switch to virtual wire mode setup with no configuration\n");
14553e730dadSDou Liyang 		upmode = true;
14563e730dadSDou Liyang 		default_setup_apic_routing();
14573e730dadSDou Liyang 		break;
14584b1669e8SDou Liyang 	case APIC_SYMMETRIC_IO:
145979761ce8SColin Ian King 		pr_info("APIC: Switch to symmetric I/O mode setup\n");
14603e730dadSDou Liyang 		default_setup_apic_routing();
14613e730dadSDou Liyang 		break;
14623e730dadSDou Liyang 	case APIC_SYMMETRIC_IO_NO_ROUTING:
146379761ce8SColin Ian King 		pr_info("APIC: Switch to symmetric I/O mode setup in no SMP routine\n");
14643e730dadSDou Liyang 		break;
14654b1669e8SDou Liyang 	}
14663e730dadSDou Liyang 
14673e730dadSDou Liyang 	apic_bsp_setup(upmode);
1468f62bae50SIngo Molnar }
1469f62bae50SIngo Molnar 
1470148f9bb8SPaul Gortmaker static void lapic_setup_esr(void)
1471f62bae50SIngo Molnar {
1472f62bae50SIngo Molnar 	unsigned int oldvalue, value, maxlvt;
1473f62bae50SIngo Molnar 
1474f62bae50SIngo Molnar 	if (!lapic_is_integrated()) {
1475f62bae50SIngo Molnar 		pr_info("No ESR for 82489DX.\n");
1476f62bae50SIngo Molnar 		return;
1477f62bae50SIngo Molnar 	}
1478f62bae50SIngo Molnar 
1479f62bae50SIngo Molnar 	if (apic->disable_esr) {
1480f62bae50SIngo Molnar 		/*
1481f62bae50SIngo Molnar 		 * Something untraceable is creating bad interrupts on
1482f62bae50SIngo Molnar 		 * secondary quads ... for the moment, just leave the
1483f62bae50SIngo Molnar 		 * ESR disabled - we can't do anything useful with the
1484f62bae50SIngo Molnar 		 * errors anyway - mbligh
1485f62bae50SIngo Molnar 		 */
1486f62bae50SIngo Molnar 		pr_info("Leaving ESR disabled.\n");
1487f62bae50SIngo Molnar 		return;
1488f62bae50SIngo Molnar 	}
1489f62bae50SIngo Molnar 
1490f62bae50SIngo Molnar 	maxlvt = lapic_get_maxlvt();
1491f62bae50SIngo Molnar 	if (maxlvt > 3)		/* Due to the Pentium erratum 3AP. */
1492f62bae50SIngo Molnar 		apic_write(APIC_ESR, 0);
1493f62bae50SIngo Molnar 	oldvalue = apic_read(APIC_ESR);
1494f62bae50SIngo Molnar 
1495f62bae50SIngo Molnar 	/* enables sending errors */
1496f62bae50SIngo Molnar 	value = ERROR_APIC_VECTOR;
1497f62bae50SIngo Molnar 	apic_write(APIC_LVTERR, value);
1498f62bae50SIngo Molnar 
1499f62bae50SIngo Molnar 	/*
1500f62bae50SIngo Molnar 	 * spec says clear errors after enabling vector.
1501f62bae50SIngo Molnar 	 */
1502f62bae50SIngo Molnar 	if (maxlvt > 3)
1503f62bae50SIngo Molnar 		apic_write(APIC_ESR, 0);
1504f62bae50SIngo Molnar 	value = apic_read(APIC_ESR);
1505f62bae50SIngo Molnar 	if (value != oldvalue)
1506f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "ESR value before enabling "
1507f62bae50SIngo Molnar 			"vector: 0x%08x  after: 0x%08x\n",
1508f62bae50SIngo Molnar 			oldvalue, value);
1509f62bae50SIngo Molnar }
1510f62bae50SIngo Molnar 
1511cc8bf191SThomas Gleixner #define APIC_IR_REGS		APIC_ISR_NR
1512cc8bf191SThomas Gleixner #define APIC_IR_BITS		(APIC_IR_REGS * 32)
1513cc8bf191SThomas Gleixner #define APIC_IR_MAPSIZE		(APIC_IR_BITS / BITS_PER_LONG)
15149b217f33SDou Liyang 
1515cc8bf191SThomas Gleixner union apic_ir {
1516cc8bf191SThomas Gleixner 	unsigned long	map[APIC_IR_MAPSIZE];
1517cc8bf191SThomas Gleixner 	u32		regs[APIC_IR_REGS];
1518cc8bf191SThomas Gleixner };
1519cc8bf191SThomas Gleixner 
1520cc8bf191SThomas Gleixner static bool apic_check_and_ack(union apic_ir *irr, union apic_ir *isr)
1521cc8bf191SThomas Gleixner {
1522cc8bf191SThomas Gleixner 	int i, bit;
1523cc8bf191SThomas Gleixner 
1524cc8bf191SThomas Gleixner 	/* Read the IRRs */
1525cc8bf191SThomas Gleixner 	for (i = 0; i < APIC_IR_REGS; i++)
1526cc8bf191SThomas Gleixner 		irr->regs[i] = apic_read(APIC_IRR + i * 0x10);
1527cc8bf191SThomas Gleixner 
1528cc8bf191SThomas Gleixner 	/* Read the ISRs */
1529cc8bf191SThomas Gleixner 	for (i = 0; i < APIC_IR_REGS; i++)
1530cc8bf191SThomas Gleixner 		isr->regs[i] = apic_read(APIC_ISR + i * 0x10);
1531cc8bf191SThomas Gleixner 
1532cc8bf191SThomas Gleixner 	/*
1533cc8bf191SThomas Gleixner 	 * If the ISR map is not empty. ACK the APIC and run another round
1534cc8bf191SThomas Gleixner 	 * to verify whether a pending IRR has been unblocked and turned
1535cc8bf191SThomas Gleixner 	 * into a ISR.
1536cc8bf191SThomas Gleixner 	 */
1537cc8bf191SThomas Gleixner 	if (!bitmap_empty(isr->map, APIC_IR_BITS)) {
1538cc8bf191SThomas Gleixner 		/*
1539cc8bf191SThomas Gleixner 		 * There can be multiple ISR bits set when a high priority
1540cc8bf191SThomas Gleixner 		 * interrupt preempted a lower priority one. Issue an ACK
1541cc8bf191SThomas Gleixner 		 * per set bit.
1542cc8bf191SThomas Gleixner 		 */
1543cc8bf191SThomas Gleixner 		for_each_set_bit(bit, isr->map, APIC_IR_BITS)
1544cc8bf191SThomas Gleixner 			ack_APIC_irq();
1545cc8bf191SThomas Gleixner 		return true;
1546cc8bf191SThomas Gleixner 	}
1547cc8bf191SThomas Gleixner 
1548cc8bf191SThomas Gleixner 	return !bitmap_empty(irr->map, APIC_IR_BITS);
1549cc8bf191SThomas Gleixner }
1550cc8bf191SThomas Gleixner 
15519b217f33SDou Liyang /*
15529b217f33SDou Liyang  * After a crash, we no longer service the interrupts and a pending
15539b217f33SDou Liyang  * interrupt from previous kernel might still have ISR bit set.
15549b217f33SDou Liyang  *
1555cc8bf191SThomas Gleixner  * Most probably by now the CPU has serviced that pending interrupt and it
1556cc8bf191SThomas Gleixner  * might not have done the ack_APIC_irq() because it thought, interrupt
1557cc8bf191SThomas Gleixner  * came from i8259 as ExtInt. LAPIC did not get EOI so it does not clear
1558cc8bf191SThomas Gleixner  * the ISR bit and cpu thinks it has already serivced the interrupt. Hence
1559cc8bf191SThomas Gleixner  * a vector might get locked. It was noticed for timer irq (vector
1560cc8bf191SThomas Gleixner  * 0x31). Issue an extra EOI to clear ISR.
1561cc8bf191SThomas Gleixner  *
1562cc8bf191SThomas Gleixner  * If there are pending IRR bits they turn into ISR bits after a higher
1563cc8bf191SThomas Gleixner  * priority ISR bit has been acked.
15649b217f33SDou Liyang  */
1565cc8bf191SThomas Gleixner static void apic_pending_intr_clear(void)
1566cc8bf191SThomas Gleixner {
1567cc8bf191SThomas Gleixner 	union apic_ir irr, isr;
1568cc8bf191SThomas Gleixner 	unsigned int i;
15699b217f33SDou Liyang 
1570cc8bf191SThomas Gleixner 	/* 512 loops are way oversized and give the APIC a chance to obey. */
1571cc8bf191SThomas Gleixner 	for (i = 0; i < 512; i++) {
1572cc8bf191SThomas Gleixner 		if (!apic_check_and_ack(&irr, &isr))
1573cc8bf191SThomas Gleixner 			return;
15749b217f33SDou Liyang 	}
1575cc8bf191SThomas Gleixner 	/* Dump the IRR/ISR content if that failed */
1576cc8bf191SThomas Gleixner 	pr_warn("APIC: Stale IRR: %256pb ISR: %256pb\n", irr.map, isr.map);
15779b217f33SDou Liyang }
15789b217f33SDou Liyang 
1579f62bae50SIngo Molnar /**
1580f62bae50SIngo Molnar  * setup_local_APIC - setup the local APIC
15810aa002feSTejun Heo  *
1582543113d2SDou Liyang  * Used to setup local APIC while initializing BSP or bringing up APs.
15830aa002feSTejun Heo  * Always called with preemption disabled.
1584f62bae50SIngo Molnar  */
1585b753a2b7SDou Liyang static void setup_local_APIC(void)
1586f62bae50SIngo Molnar {
15870aa002feSTejun Heo 	int cpu = smp_processor_id();
15889b217f33SDou Liyang 	unsigned int value;
15899b217f33SDou Liyang #ifdef CONFIG_X86_32
15908f156168SDou Liyang 	int logical_apicid, ldr_apicid;
15919b217f33SDou Liyang #endif
15928c3ba8d0SKerstin Jonsson 
1593f62bae50SIngo Molnar 	if (disable_apic) {
15947167d08eSHenrik Kretzschmar 		disable_ioapic_support();
1595f62bae50SIngo Molnar 		return;
1596f62bae50SIngo Molnar 	}
1597f62bae50SIngo Molnar 
15982640da4cSThomas Gleixner 	/*
15992640da4cSThomas Gleixner 	 * If this comes from kexec/kcrash the APIC might be enabled in
16002640da4cSThomas Gleixner 	 * SPIV. Soft disable it before doing further initialization.
16012640da4cSThomas Gleixner 	 */
16022640da4cSThomas Gleixner 	value = apic_read(APIC_SPIV);
16032640da4cSThomas Gleixner 	value &= ~APIC_SPIV_APIC_ENABLED;
16042640da4cSThomas Gleixner 	apic_write(APIC_SPIV, value);
16052640da4cSThomas Gleixner 
1606f62bae50SIngo Molnar #ifdef CONFIG_X86_32
1607f62bae50SIngo Molnar 	/* Pound the ESR really hard over the head with a big hammer - mbligh */
1608f62bae50SIngo Molnar 	if (lapic_is_integrated() && apic->disable_esr) {
1609f62bae50SIngo Molnar 		apic_write(APIC_ESR, 0);
1610f62bae50SIngo Molnar 		apic_write(APIC_ESR, 0);
1611f62bae50SIngo Molnar 		apic_write(APIC_ESR, 0);
1612f62bae50SIngo Molnar 		apic_write(APIC_ESR, 0);
1613f62bae50SIngo Molnar 	}
1614f62bae50SIngo Molnar #endif
1615f62bae50SIngo Molnar 	/*
1616f62bae50SIngo Molnar 	 * Double-check whether this APIC is really registered.
1617f62bae50SIngo Molnar 	 * This is meaningless in clustered apic mode, so we skip it.
1618f62bae50SIngo Molnar 	 */
1619c2777f98SDaniel Walker 	BUG_ON(!apic->apic_id_registered());
1620f62bae50SIngo Molnar 
1621f62bae50SIngo Molnar 	/*
1622f62bae50SIngo Molnar 	 * Intel recommends to set DFR, LDR and TPR before enabling
1623f62bae50SIngo Molnar 	 * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
1624f62bae50SIngo Molnar 	 * document number 292116).  So here it goes...
1625f62bae50SIngo Molnar 	 */
1626f62bae50SIngo Molnar 	apic->init_apic_ldr();
1627f62bae50SIngo Molnar 
16286f802c4bSTejun Heo #ifdef CONFIG_X86_32
16296f802c4bSTejun Heo 	/*
1630acb8bc09STejun Heo 	 * APIC LDR is initialized.  If logical_apicid mapping was
1631acb8bc09STejun Heo 	 * initialized during get_smp_config(), make sure it matches the
1632acb8bc09STejun Heo 	 * actual value.
16336f802c4bSTejun Heo 	 */
16348f156168SDou Liyang 	logical_apicid = early_per_cpu(x86_cpu_to_logical_apicid, cpu);
16358f156168SDou Liyang 	ldr_apicid = GET_APIC_LOGICAL_ID(apic_read(APIC_LDR));
16368f156168SDou Liyang 	WARN_ON(logical_apicid != BAD_APICID && logical_apicid != ldr_apicid);
1637acb8bc09STejun Heo 	/* always use the value from LDR */
16388f156168SDou Liyang 	early_per_cpu(x86_cpu_to_logical_apicid, cpu) = ldr_apicid;
16396f802c4bSTejun Heo #endif
16406f802c4bSTejun Heo 
1641f62bae50SIngo Molnar 	/*
1642229b969bSAndy Lutomirski 	 * Set Task Priority to 'accept all except vectors 0-31'.  An APIC
1643229b969bSAndy Lutomirski 	 * vector in the 16-31 range could be delivered if TPR == 0, but we
1644229b969bSAndy Lutomirski 	 * would think it's an exception and terrible things will happen.  We
1645229b969bSAndy Lutomirski 	 * never change this later on.
1646f62bae50SIngo Molnar 	 */
1647f62bae50SIngo Molnar 	value = apic_read(APIC_TASKPRI);
1648f62bae50SIngo Molnar 	value &= ~APIC_TPRI_MASK;
1649229b969bSAndy Lutomirski 	value |= 0x10;
1650f62bae50SIngo Molnar 	apic_write(APIC_TASKPRI, value);
1651f62bae50SIngo Molnar 
1652cc8bf191SThomas Gleixner 	/* Clear eventually stale ISR/IRR bits */
16539b217f33SDou Liyang 	apic_pending_intr_clear();
1654f62bae50SIngo Molnar 
1655f62bae50SIngo Molnar 	/*
1656f62bae50SIngo Molnar 	 * Now that we are all set up, enable the APIC
1657f62bae50SIngo Molnar 	 */
1658f62bae50SIngo Molnar 	value = apic_read(APIC_SPIV);
1659f62bae50SIngo Molnar 	value &= ~APIC_VECTOR_MASK;
1660f62bae50SIngo Molnar 	/*
1661f62bae50SIngo Molnar 	 * Enable APIC
1662f62bae50SIngo Molnar 	 */
1663f62bae50SIngo Molnar 	value |= APIC_SPIV_APIC_ENABLED;
1664f62bae50SIngo Molnar 
1665f62bae50SIngo Molnar #ifdef CONFIG_X86_32
1666f62bae50SIngo Molnar 	/*
1667f62bae50SIngo Molnar 	 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1668f62bae50SIngo Molnar 	 * certain networking cards. If high frequency interrupts are
1669f62bae50SIngo Molnar 	 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1670f62bae50SIngo Molnar 	 * entry is masked/unmasked at a high rate as well then sooner or
1671f62bae50SIngo Molnar 	 * later IOAPIC line gets 'stuck', no more interrupts are received
1672f62bae50SIngo Molnar 	 * from the device. If focus CPU is disabled then the hang goes
1673f62bae50SIngo Molnar 	 * away, oh well :-(
1674f62bae50SIngo Molnar 	 *
1675f62bae50SIngo Molnar 	 * [ This bug can be reproduced easily with a level-triggered
1676f62bae50SIngo Molnar 	 *   PCI Ne2000 networking cards and PII/PIII processors, dual
1677f62bae50SIngo Molnar 	 *   BX chipset. ]
1678f62bae50SIngo Molnar 	 */
1679f62bae50SIngo Molnar 	/*
1680f62bae50SIngo Molnar 	 * Actually disabling the focus CPU check just makes the hang less
1681f62bae50SIngo Molnar 	 * frequent as it makes the interrupt distributon model be more
1682f62bae50SIngo Molnar 	 * like LRU than MRU (the short-term load is more even across CPUs).
1683f62bae50SIngo Molnar 	 */
1684f62bae50SIngo Molnar 
1685f62bae50SIngo Molnar 	/*
1686f62bae50SIngo Molnar 	 * - enable focus processor (bit==0)
1687f62bae50SIngo Molnar 	 * - 64bit mode always use processor focus
1688f62bae50SIngo Molnar 	 *   so no need to set it
1689f62bae50SIngo Molnar 	 */
1690f62bae50SIngo Molnar 	value &= ~APIC_SPIV_FOCUS_DISABLED;
1691f62bae50SIngo Molnar #endif
1692f62bae50SIngo Molnar 
1693f62bae50SIngo Molnar 	/*
1694f62bae50SIngo Molnar 	 * Set spurious IRQ vector
1695f62bae50SIngo Molnar 	 */
1696f62bae50SIngo Molnar 	value |= SPURIOUS_APIC_VECTOR;
1697f62bae50SIngo Molnar 	apic_write(APIC_SPIV, value);
1698f62bae50SIngo Molnar 
169939c89dffSThomas Gleixner 	perf_events_lapic_init();
170039c89dffSThomas Gleixner 
1701f62bae50SIngo Molnar 	/*
1702f62bae50SIngo Molnar 	 * Set up LVT0, LVT1:
1703f62bae50SIngo Molnar 	 *
1704a1652bb8SJean Delvare 	 * set up through-local-APIC on the boot CPU's LINT0. This is not
1705f62bae50SIngo Molnar 	 * strictly necessary in pure symmetric-IO mode, but sometimes
1706f62bae50SIngo Molnar 	 * we delegate interrupts to the 8259A.
1707f62bae50SIngo Molnar 	 */
1708f62bae50SIngo Molnar 	/*
1709f62bae50SIngo Molnar 	 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1710f62bae50SIngo Molnar 	 */
1711f62bae50SIngo Molnar 	value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1712bee3204eSBaoquan He 	if (!cpu && (pic_mode || !value || skip_ioapic_setup)) {
1713f62bae50SIngo Molnar 		value = APIC_DM_EXTINT;
17140aa002feSTejun Heo 		apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", cpu);
1715f62bae50SIngo Molnar 	} else {
1716f62bae50SIngo Molnar 		value = APIC_DM_EXTINT | APIC_LVT_MASKED;
17170aa002feSTejun Heo 		apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", cpu);
1718f62bae50SIngo Molnar 	}
1719f62bae50SIngo Molnar 	apic_write(APIC_LVT0, value);
1720f62bae50SIngo Molnar 
1721f62bae50SIngo Molnar 	/*
1722b7c4948eSHidehiro Kawai 	 * Only the BSP sees the LINT1 NMI signal by default. This can be
1723b7c4948eSHidehiro Kawai 	 * modified by apic_extnmi= boot option.
1724f62bae50SIngo Molnar 	 */
1725b7c4948eSHidehiro Kawai 	if ((!cpu && apic_extnmi != APIC_EXTNMI_NONE) ||
1726b7c4948eSHidehiro Kawai 	    apic_extnmi == APIC_EXTNMI_ALL)
1727f62bae50SIngo Molnar 		value = APIC_DM_NMI;
1728f62bae50SIngo Molnar 	else
1729f62bae50SIngo Molnar 		value = APIC_DM_NMI | APIC_LVT_MASKED;
1730ae41a2a4SDou Liyang 
1731ae41a2a4SDou Liyang 	/* Is 82489DX ? */
1732ae41a2a4SDou Liyang 	if (!lapic_is_integrated())
1733f62bae50SIngo Molnar 		value |= APIC_LVT_LEVEL_TRIGGER;
1734f62bae50SIngo Molnar 	apic_write(APIC_LVT1, value);
1735f62bae50SIngo Molnar 
1736638bee71SH. Peter Anvin #ifdef CONFIG_X86_MCE_INTEL
1737638bee71SH. Peter Anvin 	/* Recheck CMCI information after local APIC is up on CPU #0 */
17380aa002feSTejun Heo 	if (!cpu)
1739638bee71SH. Peter Anvin 		cmci_recheck();
1740638bee71SH. Peter Anvin #endif
1741f62bae50SIngo Molnar }
1742f62bae50SIngo Molnar 
174305f7e46dSThomas Gleixner static void end_local_APIC_setup(void)
1744f62bae50SIngo Molnar {
1745f62bae50SIngo Molnar 	lapic_setup_esr();
1746f62bae50SIngo Molnar 
1747f62bae50SIngo Molnar #ifdef CONFIG_X86_32
1748f62bae50SIngo Molnar 	{
1749f62bae50SIngo Molnar 		unsigned int value;
1750f62bae50SIngo Molnar 		/* Disable the local apic timer */
1751f62bae50SIngo Molnar 		value = apic_read(APIC_LVTT);
1752f62bae50SIngo Molnar 		value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1753f62bae50SIngo Molnar 		apic_write(APIC_LVTT, value);
1754f62bae50SIngo Molnar 	}
1755f62bae50SIngo Molnar #endif
1756f62bae50SIngo Molnar 
1757f62bae50SIngo Molnar 	apic_pm_activate();
17582fb270f3SJan Beulich }
17592fb270f3SJan Beulich 
17607f7fbf45SKenji Kaneshige /*
176105f7e46dSThomas Gleixner  * APIC setup function for application processors. Called from smpboot.c
17627f7fbf45SKenji Kaneshige  */
176305f7e46dSThomas Gleixner void apic_ap_setup(void)
176405f7e46dSThomas Gleixner {
176505f7e46dSThomas Gleixner 	setup_local_APIC();
176605f7e46dSThomas Gleixner 	end_local_APIC_setup();
1767f62bae50SIngo Molnar }
1768f62bae50SIngo Molnar 
1769f62bae50SIngo Molnar #ifdef CONFIG_X86_X2APIC
1770bfb05070SThomas Gleixner int x2apic_mode;
177112e189d3SThomas Gleixner 
177212e189d3SThomas Gleixner enum {
177312e189d3SThomas Gleixner 	X2APIC_OFF,
177412e189d3SThomas Gleixner 	X2APIC_ON,
177512e189d3SThomas Gleixner 	X2APIC_DISABLED,
177612e189d3SThomas Gleixner };
177712e189d3SThomas Gleixner static int x2apic_state;
177812e189d3SThomas Gleixner 
1779d786ad32SDenys Vlasenko static void __x2apic_disable(void)
178044e25ff9SThomas Gleixner {
178144e25ff9SThomas Gleixner 	u64 msr;
178244e25ff9SThomas Gleixner 
178393984fbdSBorislav Petkov 	if (!boot_cpu_has(X86_FEATURE_APIC))
1784659006bfSThomas Gleixner 		return;
1785659006bfSThomas Gleixner 
178644e25ff9SThomas Gleixner 	rdmsrl(MSR_IA32_APICBASE, msr);
178744e25ff9SThomas Gleixner 	if (!(msr & X2APIC_ENABLE))
178844e25ff9SThomas Gleixner 		return;
178944e25ff9SThomas Gleixner 	/* Disable xapic and x2apic first and then reenable xapic mode */
179044e25ff9SThomas Gleixner 	wrmsrl(MSR_IA32_APICBASE, msr & ~(X2APIC_ENABLE | XAPIC_ENABLE));
179144e25ff9SThomas Gleixner 	wrmsrl(MSR_IA32_APICBASE, msr & ~X2APIC_ENABLE);
179244e25ff9SThomas Gleixner 	printk_once(KERN_INFO "x2apic disabled\n");
179344e25ff9SThomas Gleixner }
179444e25ff9SThomas Gleixner 
1795d786ad32SDenys Vlasenko static void __x2apic_enable(void)
1796659006bfSThomas Gleixner {
1797659006bfSThomas Gleixner 	u64 msr;
1798659006bfSThomas Gleixner 
1799659006bfSThomas Gleixner 	rdmsrl(MSR_IA32_APICBASE, msr);
1800659006bfSThomas Gleixner 	if (msr & X2APIC_ENABLE)
1801659006bfSThomas Gleixner 		return;
1802659006bfSThomas Gleixner 	wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE);
1803659006bfSThomas Gleixner 	printk_once(KERN_INFO "x2apic enabled\n");
1804659006bfSThomas Gleixner }
1805659006bfSThomas Gleixner 
1806bfb05070SThomas Gleixner static int __init setup_nox2apic(char *str)
1807bfb05070SThomas Gleixner {
1808bfb05070SThomas Gleixner 	if (x2apic_enabled()) {
1809bfb05070SThomas Gleixner 		int apicid = native_apic_msr_read(APIC_ID);
1810bfb05070SThomas Gleixner 
1811bfb05070SThomas Gleixner 		if (apicid >= 255) {
1812bfb05070SThomas Gleixner 			pr_warning("Apicid: %08x, cannot enforce nox2apic\n",
1813bfb05070SThomas Gleixner 				   apicid);
1814bfb05070SThomas Gleixner 			return 0;
1815bfb05070SThomas Gleixner 		}
181644e25ff9SThomas Gleixner 		pr_warning("x2apic already enabled.\n");
181744e25ff9SThomas Gleixner 		__x2apic_disable();
181844e25ff9SThomas Gleixner 	}
1819bfb05070SThomas Gleixner 	setup_clear_cpu_cap(X86_FEATURE_X2APIC);
182012e189d3SThomas Gleixner 	x2apic_state = X2APIC_DISABLED;
182144e25ff9SThomas Gleixner 	x2apic_mode = 0;
1822bfb05070SThomas Gleixner 	return 0;
1823bfb05070SThomas Gleixner }
1824bfb05070SThomas Gleixner early_param("nox2apic", setup_nox2apic);
1825bfb05070SThomas Gleixner 
1826659006bfSThomas Gleixner /* Called from cpu_init() to enable x2apic on (secondary) cpus */
1827659006bfSThomas Gleixner void x2apic_setup(void)
1828659006bfSThomas Gleixner {
1829659006bfSThomas Gleixner 	/*
1830659006bfSThomas Gleixner 	 * If x2apic is not in ON state, disable it if already enabled
1831659006bfSThomas Gleixner 	 * from BIOS.
1832659006bfSThomas Gleixner 	 */
1833659006bfSThomas Gleixner 	if (x2apic_state != X2APIC_ON) {
1834659006bfSThomas Gleixner 		__x2apic_disable();
1835659006bfSThomas Gleixner 		return;
1836659006bfSThomas Gleixner 	}
1837659006bfSThomas Gleixner 	__x2apic_enable();
1838659006bfSThomas Gleixner }
1839659006bfSThomas Gleixner 
184044e25ff9SThomas Gleixner static __init void x2apic_disable(void)
1841fb209bd8SYinghai Lu {
1842a57e456aSThomas Gleixner 	u32 x2apic_id, state = x2apic_state;
1843fb209bd8SYinghai Lu 
1844a57e456aSThomas Gleixner 	x2apic_mode = 0;
1845a57e456aSThomas Gleixner 	x2apic_state = X2APIC_DISABLED;
1846a57e456aSThomas Gleixner 
1847a57e456aSThomas Gleixner 	if (state != X2APIC_ON)
1848a57e456aSThomas Gleixner 		return;
1849fb209bd8SYinghai Lu 
18506d2d49d2SThomas Gleixner 	x2apic_id = read_apic_id();
1851fb209bd8SYinghai Lu 	if (x2apic_id >= 255)
1852fb209bd8SYinghai Lu 		panic("Cannot disable x2apic, id: %08x\n", x2apic_id);
1853fb209bd8SYinghai Lu 
185444e25ff9SThomas Gleixner 	__x2apic_disable();
1855fb209bd8SYinghai Lu 	register_lapic_address(mp_lapic_addr);
1856fb209bd8SYinghai Lu }
1857fb209bd8SYinghai Lu 
1858659006bfSThomas Gleixner static __init void x2apic_enable(void)
1859f62bae50SIngo Molnar {
1860659006bfSThomas Gleixner 	if (x2apic_state != X2APIC_OFF)
1861f62bae50SIngo Molnar 		return;
1862f62bae50SIngo Molnar 
1863659006bfSThomas Gleixner 	x2apic_mode = 1;
186412e189d3SThomas Gleixner 	x2apic_state = X2APIC_ON;
1865659006bfSThomas Gleixner 	__x2apic_enable();
1866f62bae50SIngo Molnar }
1867d524165cSThomas Gleixner 
186862e61633SThomas Gleixner static __init void try_to_enable_x2apic(int remap_mode)
186907806c50SJiang Liu {
1870659006bfSThomas Gleixner 	if (x2apic_state == X2APIC_DISABLED)
187107806c50SJiang Liu 		return;
187207806c50SJiang Liu 
187362e61633SThomas Gleixner 	if (remap_mode != IRQ_REMAP_X2APIC_MODE) {
187407806c50SJiang Liu 		/* IR is required if there is APIC ID > 255 even when running
187507806c50SJiang Liu 		 * under KVM
187607806c50SJiang Liu 		 */
187707806c50SJiang Liu 		if (max_physical_apicid > 255 ||
1878f72e38e8SJuergen Gross 		    !x86_init.hyper.x2apic_available()) {
187962e61633SThomas Gleixner 			pr_info("x2apic: IRQ remapping doesn't support X2APIC mode\n");
188044e25ff9SThomas Gleixner 			x2apic_disable();
188107806c50SJiang Liu 			return;
188207806c50SJiang Liu 		}
188307806c50SJiang Liu 
188407806c50SJiang Liu 		/*
188507806c50SJiang Liu 		 * without IR all CPUs can be addressed by IOAPIC/MSI
188607806c50SJiang Liu 		 * only in physical mode
188707806c50SJiang Liu 		 */
188855eae7deSThomas Gleixner 		x2apic_phys = 1;
188907806c50SJiang Liu 	}
1890659006bfSThomas Gleixner 	x2apic_enable();
189155eae7deSThomas Gleixner }
189255eae7deSThomas Gleixner 
189355eae7deSThomas Gleixner void __init check_x2apic(void)
189455eae7deSThomas Gleixner {
189555eae7deSThomas Gleixner 	if (x2apic_enabled()) {
189655eae7deSThomas Gleixner 		pr_info("x2apic: enabled by BIOS, switching to x2apic ops\n");
189755eae7deSThomas Gleixner 		x2apic_mode = 1;
189812e189d3SThomas Gleixner 		x2apic_state = X2APIC_ON;
189962436a4dSBorislav Petkov 	} else if (!boot_cpu_has(X86_FEATURE_X2APIC)) {
190012e189d3SThomas Gleixner 		x2apic_state = X2APIC_DISABLED;
190155eae7deSThomas Gleixner 	}
190255eae7deSThomas Gleixner }
190355eae7deSThomas Gleixner #else /* CONFIG_X86_X2APIC */
190455eae7deSThomas Gleixner static int __init validate_x2apic(void)
190555eae7deSThomas Gleixner {
190655eae7deSThomas Gleixner 	if (!apic_is_x2apic_enabled())
190755eae7deSThomas Gleixner 		return 0;
190855eae7deSThomas Gleixner 	/*
190955eae7deSThomas Gleixner 	 * Checkme: Can we simply turn off x2apic here instead of panic?
191055eae7deSThomas Gleixner 	 */
191155eae7deSThomas Gleixner 	panic("BIOS has enabled x2apic but kernel doesn't support x2apic, please disable x2apic in BIOS.\n");
191255eae7deSThomas Gleixner }
191355eae7deSThomas Gleixner early_initcall(validate_x2apic);
191455eae7deSThomas Gleixner 
191562e61633SThomas Gleixner static inline void try_to_enable_x2apic(int remap_mode) { }
1916659006bfSThomas Gleixner static inline void __x2apic_enable(void) { }
191755eae7deSThomas Gleixner #endif /* !CONFIG_X86_X2APIC */
191855eae7deSThomas Gleixner 
1919ce69a784SGleb Natapov void __init enable_IR_x2apic(void)
1920ce69a784SGleb Natapov {
1921ce69a784SGleb Natapov 	unsigned long flags;
192207806c50SJiang Liu 	int ret, ir_stat;
1923b7f42ab2SYinghai Lu 
192411277aabSDou Liyang 	if (skip_ioapic_setup) {
192511277aabSDou Liyang 		pr_info("Not enabling interrupt remapping due to skipped IO-APIC setup\n");
19262e63ad4bSWanpeng Li 		return;
192711277aabSDou Liyang 	}
19282e63ad4bSWanpeng Li 
192907806c50SJiang Liu 	ir_stat = irq_remapping_prepare();
193007806c50SJiang Liu 	if (ir_stat < 0 && !x2apic_supported())
1931e670761fSYinghai Lu 		return;
1932ce69a784SGleb Natapov 
193331dce14aSSuresh Siddha 	ret = save_ioapic_entries();
1934f62bae50SIngo Molnar 	if (ret) {
1935f62bae50SIngo Molnar 		pr_info("Saving IO-APIC state failed: %d\n", ret);
1936fb209bd8SYinghai Lu 		return;
1937f62bae50SIngo Molnar 	}
1938f62bae50SIngo Molnar 
193905c3dc2cSSuresh Siddha 	local_irq_save(flags);
1940b81bb373SJacob Pan 	legacy_pic->mask_all();
194131dce14aSSuresh Siddha 	mask_ioapic_entries();
194205c3dc2cSSuresh Siddha 
19436a6256f9SAdam Buchbinder 	/* If irq_remapping_prepare() succeeded, try to enable it */
194407806c50SJiang Liu 	if (ir_stat >= 0)
194511277aabSDou Liyang 		ir_stat = irq_remapping_enable();
194607806c50SJiang Liu 	/* ir_stat contains the remap mode or an error code */
194707806c50SJiang Liu 	try_to_enable_x2apic(ir_stat);
1948a31bc327SYinghai Lu 
194907806c50SJiang Liu 	if (ir_stat < 0)
195031dce14aSSuresh Siddha 		restore_ioapic_entries();
1951b81bb373SJacob Pan 	legacy_pic->restore_mask();
1952f62bae50SIngo Molnar 	local_irq_restore(flags);
1953f62bae50SIngo Molnar }
195493758238SWeidong Han 
1955f62bae50SIngo Molnar #ifdef CONFIG_X86_64
1956f62bae50SIngo Molnar /*
1957f62bae50SIngo Molnar  * Detect and enable local APICs on non-SMP boards.
1958f62bae50SIngo Molnar  * Original code written by Keir Fraser.
1959f62bae50SIngo Molnar  * On AMD64 we trust the BIOS - if it says no APIC it is likely
1960f62bae50SIngo Molnar  * not correctly set up (usually the APIC timer won't work etc.)
1961f62bae50SIngo Molnar  */
1962f62bae50SIngo Molnar static int __init detect_init_APIC(void)
1963f62bae50SIngo Molnar {
196493984fbdSBorislav Petkov 	if (!boot_cpu_has(X86_FEATURE_APIC)) {
1965f62bae50SIngo Molnar 		pr_info("No local APIC present\n");
1966f62bae50SIngo Molnar 		return -1;
1967f62bae50SIngo Molnar 	}
1968f62bae50SIngo Molnar 
1969f62bae50SIngo Molnar 	mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1970f62bae50SIngo Molnar 	return 0;
1971f62bae50SIngo Molnar }
1972f62bae50SIngo Molnar #else
19735a7ae78fSThomas Gleixner 
197425874a29SHenrik Kretzschmar static int __init apic_verify(void)
19755a7ae78fSThomas Gleixner {
19765a7ae78fSThomas Gleixner 	u32 features, h, l;
19775a7ae78fSThomas Gleixner 
19785a7ae78fSThomas Gleixner 	/*
19795a7ae78fSThomas Gleixner 	 * The APIC feature bit should now be enabled
19805a7ae78fSThomas Gleixner 	 * in `cpuid'
19815a7ae78fSThomas Gleixner 	 */
19825a7ae78fSThomas Gleixner 	features = cpuid_edx(1);
19835a7ae78fSThomas Gleixner 	if (!(features & (1 << X86_FEATURE_APIC))) {
19845a7ae78fSThomas Gleixner 		pr_warning("Could not enable APIC!\n");
19855a7ae78fSThomas Gleixner 		return -1;
19865a7ae78fSThomas Gleixner 	}
19875a7ae78fSThomas Gleixner 	set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
19885a7ae78fSThomas Gleixner 	mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
19895a7ae78fSThomas Gleixner 
19905a7ae78fSThomas Gleixner 	/* The BIOS may have set up the APIC at some other address */
1991cbf2829bSBryan O'Donoghue 	if (boot_cpu_data.x86 >= 6) {
19925a7ae78fSThomas Gleixner 		rdmsr(MSR_IA32_APICBASE, l, h);
19935a7ae78fSThomas Gleixner 		if (l & MSR_IA32_APICBASE_ENABLE)
19945a7ae78fSThomas Gleixner 			mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1995cbf2829bSBryan O'Donoghue 	}
19965a7ae78fSThomas Gleixner 
19975a7ae78fSThomas Gleixner 	pr_info("Found and enabled local APIC!\n");
19985a7ae78fSThomas Gleixner 	return 0;
19995a7ae78fSThomas Gleixner }
20005a7ae78fSThomas Gleixner 
200125874a29SHenrik Kretzschmar int __init apic_force_enable(unsigned long addr)
20025a7ae78fSThomas Gleixner {
20035a7ae78fSThomas Gleixner 	u32 h, l;
20045a7ae78fSThomas Gleixner 
20055a7ae78fSThomas Gleixner 	if (disable_apic)
20065a7ae78fSThomas Gleixner 		return -1;
20075a7ae78fSThomas Gleixner 
20085a7ae78fSThomas Gleixner 	/*
20095a7ae78fSThomas Gleixner 	 * Some BIOSes disable the local APIC in the APIC_BASE
20105a7ae78fSThomas Gleixner 	 * MSR. This can only be done in software for Intel P6 or later
20115a7ae78fSThomas Gleixner 	 * and AMD K7 (Model > 1) or later.
20125a7ae78fSThomas Gleixner 	 */
2013cbf2829bSBryan O'Donoghue 	if (boot_cpu_data.x86 >= 6) {
20145a7ae78fSThomas Gleixner 		rdmsr(MSR_IA32_APICBASE, l, h);
20155a7ae78fSThomas Gleixner 		if (!(l & MSR_IA32_APICBASE_ENABLE)) {
20165a7ae78fSThomas Gleixner 			pr_info("Local APIC disabled by BIOS -- reenabling.\n");
20175a7ae78fSThomas Gleixner 			l &= ~MSR_IA32_APICBASE_BASE;
2018a906fdaaSThomas Gleixner 			l |= MSR_IA32_APICBASE_ENABLE | addr;
20195a7ae78fSThomas Gleixner 			wrmsr(MSR_IA32_APICBASE, l, h);
20205a7ae78fSThomas Gleixner 			enabled_via_apicbase = 1;
20215a7ae78fSThomas Gleixner 		}
2022cbf2829bSBryan O'Donoghue 	}
20235a7ae78fSThomas Gleixner 	return apic_verify();
20245a7ae78fSThomas Gleixner }
20255a7ae78fSThomas Gleixner 
2026f62bae50SIngo Molnar /*
2027f62bae50SIngo Molnar  * Detect and initialize APIC
2028f62bae50SIngo Molnar  */
2029f62bae50SIngo Molnar static int __init detect_init_APIC(void)
2030f62bae50SIngo Molnar {
2031f62bae50SIngo Molnar 	/* Disabled by kernel option? */
2032f62bae50SIngo Molnar 	if (disable_apic)
2033f62bae50SIngo Molnar 		return -1;
2034f62bae50SIngo Molnar 
2035f62bae50SIngo Molnar 	switch (boot_cpu_data.x86_vendor) {
2036f62bae50SIngo Molnar 	case X86_VENDOR_AMD:
2037f62bae50SIngo Molnar 		if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
2038f62bae50SIngo Molnar 		    (boot_cpu_data.x86 >= 15))
2039f62bae50SIngo Molnar 			break;
2040f62bae50SIngo Molnar 		goto no_apic;
2041da33dfefSPu Wen 	case X86_VENDOR_HYGON:
2042da33dfefSPu Wen 		break;
2043f62bae50SIngo Molnar 	case X86_VENDOR_INTEL:
2044f62bae50SIngo Molnar 		if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
204593984fbdSBorislav Petkov 		    (boot_cpu_data.x86 == 5 && boot_cpu_has(X86_FEATURE_APIC)))
2046f62bae50SIngo Molnar 			break;
2047f62bae50SIngo Molnar 		goto no_apic;
2048f62bae50SIngo Molnar 	default:
2049f62bae50SIngo Molnar 		goto no_apic;
2050f62bae50SIngo Molnar 	}
2051f62bae50SIngo Molnar 
205293984fbdSBorislav Petkov 	if (!boot_cpu_has(X86_FEATURE_APIC)) {
2053f62bae50SIngo Molnar 		/*
2054f62bae50SIngo Molnar 		 * Over-ride BIOS and try to enable the local APIC only if
2055f62bae50SIngo Molnar 		 * "lapic" specified.
2056f62bae50SIngo Molnar 		 */
2057f62bae50SIngo Molnar 		if (!force_enable_local_apic) {
2058f62bae50SIngo Molnar 			pr_info("Local APIC disabled by BIOS -- "
2059f62bae50SIngo Molnar 				"you can enable it with \"lapic\"\n");
2060f62bae50SIngo Molnar 			return -1;
2061f62bae50SIngo Molnar 		}
2062a906fdaaSThomas Gleixner 		if (apic_force_enable(APIC_DEFAULT_PHYS_BASE))
20635a7ae78fSThomas Gleixner 			return -1;
20645a7ae78fSThomas Gleixner 	} else {
20655a7ae78fSThomas Gleixner 		if (apic_verify())
2066f62bae50SIngo Molnar 			return -1;
2067f62bae50SIngo Molnar 	}
2068f62bae50SIngo Molnar 
2069f62bae50SIngo Molnar 	apic_pm_activate();
2070f62bae50SIngo Molnar 
2071f62bae50SIngo Molnar 	return 0;
2072f62bae50SIngo Molnar 
2073f62bae50SIngo Molnar no_apic:
2074f62bae50SIngo Molnar 	pr_info("No local APIC present or hardware disabled\n");
2075f62bae50SIngo Molnar 	return -1;
2076f62bae50SIngo Molnar }
2077f62bae50SIngo Molnar #endif
2078f62bae50SIngo Molnar 
2079f62bae50SIngo Molnar /**
2080f62bae50SIngo Molnar  * init_apic_mappings - initialize APIC mappings
2081f62bae50SIngo Molnar  */
2082f62bae50SIngo Molnar void __init init_apic_mappings(void)
2083f62bae50SIngo Molnar {
20844401da61SYinghai Lu 	unsigned int new_apicid;
20854401da61SYinghai Lu 
2086bd9240a1SPeter Zijlstra 	apic_check_deadline_errata();
2087bd9240a1SPeter Zijlstra 
2088fc1edaf9SSuresh Siddha 	if (x2apic_mode) {
2089f62bae50SIngo Molnar 		boot_cpu_physical_apicid = read_apic_id();
2090f62bae50SIngo Molnar 		return;
2091f62bae50SIngo Molnar 	}
2092f62bae50SIngo Molnar 
20934797f6b0SYinghai Lu 	/* If no local APIC can be found return early */
2094f62bae50SIngo Molnar 	if (!smp_found_config && detect_init_APIC()) {
20954797f6b0SYinghai Lu 		/* lets NOP'ify apic operations */
20964797f6b0SYinghai Lu 		pr_info("APIC: disable apic facility\n");
20974797f6b0SYinghai Lu 		apic_disable();
20984797f6b0SYinghai Lu 	} else {
2099f62bae50SIngo Molnar 		apic_phys = mp_lapic_addr;
2100f62bae50SIngo Molnar 
21014401da61SYinghai Lu 		/*
21025ba039a5SDou Liyang 		 * If the system has ACPI MADT tables or MP info, the LAPIC
21035ba039a5SDou Liyang 		 * address is already registered.
21044401da61SYinghai Lu 		 */
21055989cd6aSEric W. Biederman 		if (!acpi_lapic && !smp_found_config)
2106326a2e6bSYinghai Lu 			register_lapic_address(apic_phys);
2107cec6be6dSCyrill Gorcunov 	}
2108f62bae50SIngo Molnar 
2109f62bae50SIngo Molnar 	/*
2110f62bae50SIngo Molnar 	 * Fetch the APIC ID of the BSP in case we have a
2111f62bae50SIngo Molnar 	 * default configuration (or the MP table is broken).
2112f62bae50SIngo Molnar 	 */
21134401da61SYinghai Lu 	new_apicid = read_apic_id();
21144401da61SYinghai Lu 	if (boot_cpu_physical_apicid != new_apicid) {
21154401da61SYinghai Lu 		boot_cpu_physical_apicid = new_apicid;
2116103428e5SCyrill Gorcunov 		/*
2117103428e5SCyrill Gorcunov 		 * yeah -- we lie about apic_version
2118103428e5SCyrill Gorcunov 		 * in case if apic was disabled via boot option
2119103428e5SCyrill Gorcunov 		 * but it's not a problem for SMP compiled kernel
21204f45ed9fSDou Liyang 		 * since apic_intr_mode_select is prepared for such
21214f45ed9fSDou Liyang 		 * a case and disable smp mode
2122103428e5SCyrill Gorcunov 		 */
2123cff9ab2bSDenys Vlasenko 		boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR));
212408306ce6SCyrill Gorcunov 	}
2125f62bae50SIngo Molnar }
2126f62bae50SIngo Molnar 
2127c0104d38SYinghai Lu void __init register_lapic_address(unsigned long address)
2128c0104d38SYinghai Lu {
2129c0104d38SYinghai Lu 	mp_lapic_addr = address;
2130c0104d38SYinghai Lu 
21310450193bSYinghai Lu 	if (!x2apic_mode) {
2132c0104d38SYinghai Lu 		set_fixmap_nocache(FIX_APIC_BASE, address);
2133f1157141SYinghai Lu 		apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
21346de42119SBaoquan He 			    APIC_BASE, address);
21350450193bSYinghai Lu 	}
2136c0104d38SYinghai Lu 	if (boot_cpu_physical_apicid == -1U) {
2137c0104d38SYinghai Lu 		boot_cpu_physical_apicid  = read_apic_id();
2138cff9ab2bSDenys Vlasenko 		boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR));
2139c0104d38SYinghai Lu 	}
2140c0104d38SYinghai Lu }
2141c0104d38SYinghai Lu 
2142f62bae50SIngo Molnar /*
2143f62bae50SIngo Molnar  * Local APIC interrupts
2144f62bae50SIngo Molnar  */
2145f62bae50SIngo Molnar 
2146f62bae50SIngo Molnar /*
2147f62bae50SIngo Molnar  * This interrupt should _never_ happen with our APIC/SMP architecture
2148f62bae50SIngo Molnar  */
214961069de7SThomas Gleixner __visible void __irq_entry smp_spurious_interrupt(struct pt_regs *regs)
2150f62bae50SIngo Molnar {
215161069de7SThomas Gleixner 	u8 vector = ~regs->orig_ax;
2152f62bae50SIngo Molnar 	u32 v;
2153f62bae50SIngo Molnar 
215461069de7SThomas Gleixner 	entering_irq();
215561069de7SThomas Gleixner 	trace_spurious_apic_entry(vector);
215661069de7SThomas Gleixner 
2157f62bae50SIngo Molnar 	inc_irq_stat(irq_spurious_count);
2158f62bae50SIngo Molnar 
2159f8a8fe61SThomas Gleixner 	/*
2160f8a8fe61SThomas Gleixner 	 * If this is a spurious interrupt then do not acknowledge
2161f8a8fe61SThomas Gleixner 	 */
2162f8a8fe61SThomas Gleixner 	if (vector == SPURIOUS_APIC_VECTOR) {
2163f8a8fe61SThomas Gleixner 		/* See SDM vol 3 */
2164f8a8fe61SThomas Gleixner 		pr_info("Spurious APIC interrupt (vector 0xFF) on CPU#%d, should never happen.\n",
2165f8a8fe61SThomas Gleixner 			smp_processor_id());
2166f8a8fe61SThomas Gleixner 		goto out;
2167f8a8fe61SThomas Gleixner 	}
2168eddc0e92SSeiji Aguchi 
2169f8a8fe61SThomas Gleixner 	/*
2170f8a8fe61SThomas Gleixner 	 * If it is a vectored one, verify it's set in the ISR. If set,
2171f8a8fe61SThomas Gleixner 	 * acknowledge it.
2172f8a8fe61SThomas Gleixner 	 */
2173f8a8fe61SThomas Gleixner 	v = apic_read(APIC_ISR + ((vector & ~0x1f) >> 1));
2174f8a8fe61SThomas Gleixner 	if (v & (1 << (vector & 0x1f))) {
2175f8a8fe61SThomas Gleixner 		pr_info("Spurious interrupt (vector 0x%02x) on CPU#%d. Acked\n",
2176f8a8fe61SThomas Gleixner 			vector, smp_processor_id());
2177f8a8fe61SThomas Gleixner 		ack_APIC_irq();
2178f8a8fe61SThomas Gleixner 	} else {
2179f8a8fe61SThomas Gleixner 		pr_info("Spurious interrupt (vector 0x%02x) on CPU#%d. Not pending!\n",
2180f8a8fe61SThomas Gleixner 			vector, smp_processor_id());
2181f8a8fe61SThomas Gleixner 	}
2182f8a8fe61SThomas Gleixner out:
21832414e021SJan Beulich 	trace_spurious_apic_exit(vector);
2184cf910e83SSeiji Aguchi 	exiting_irq();
2185f62bae50SIngo Molnar }
2186f62bae50SIngo Molnar 
2187f62bae50SIngo Molnar /*
2188f62bae50SIngo Molnar  * This interrupt should never happen with our APIC/SMP architecture
2189f62bae50SIngo Molnar  */
219061069de7SThomas Gleixner __visible void __irq_entry smp_error_interrupt(struct pt_regs *regs)
2191f62bae50SIngo Molnar {
21922b398bd9SYouquan Song 	static const char * const error_interrupt_reason[] = {
21932b398bd9SYouquan Song 		"Send CS error",		/* APIC Error Bit 0 */
21942b398bd9SYouquan Song 		"Receive CS error",		/* APIC Error Bit 1 */
21952b398bd9SYouquan Song 		"Send accept error",		/* APIC Error Bit 2 */
21962b398bd9SYouquan Song 		"Receive accept error",		/* APIC Error Bit 3 */
21972b398bd9SYouquan Song 		"Redirectable IPI",		/* APIC Error Bit 4 */
21982b398bd9SYouquan Song 		"Send illegal vector",		/* APIC Error Bit 5 */
21992b398bd9SYouquan Song 		"Received illegal vector",	/* APIC Error Bit 6 */
22002b398bd9SYouquan Song 		"Illegal register address",	/* APIC Error Bit 7 */
22012b398bd9SYouquan Song 	};
220261069de7SThomas Gleixner 	u32 v, i = 0;
220361069de7SThomas Gleixner 
220461069de7SThomas Gleixner 	entering_irq();
220561069de7SThomas Gleixner 	trace_error_apic_entry(ERROR_APIC_VECTOR);
2206f62bae50SIngo Molnar 
2207f62bae50SIngo Molnar 	/* First tickle the hardware, only then report what went on. -- REW */
2208023de4a0SMaciej W. Rozycki 	if (lapic_get_maxlvt() > 3)	/* Due to the Pentium erratum 3AP. */
2209f62bae50SIngo Molnar 		apic_write(APIC_ESR, 0);
221060283df7SRichard Weinberger 	v = apic_read(APIC_ESR);
2211f62bae50SIngo Molnar 	ack_APIC_irq();
2212f62bae50SIngo Molnar 	atomic_inc(&irq_err_count);
2213f62bae50SIngo Molnar 
221460283df7SRichard Weinberger 	apic_printk(APIC_DEBUG, KERN_DEBUG "APIC error on CPU%d: %02x",
221560283df7SRichard Weinberger 		    smp_processor_id(), v);
22162b398bd9SYouquan Song 
221760283df7SRichard Weinberger 	v &= 0xff;
221860283df7SRichard Weinberger 	while (v) {
221960283df7SRichard Weinberger 		if (v & 0x1)
22202b398bd9SYouquan Song 			apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]);
22212b398bd9SYouquan Song 		i++;
222260283df7SRichard Weinberger 		v >>= 1;
22234b8073e4SPeter Senna Tschudin 	}
22242b398bd9SYouquan Song 
22252b398bd9SYouquan Song 	apic_printk(APIC_DEBUG, KERN_CONT "\n");
22262b398bd9SYouquan Song 
2227cf910e83SSeiji Aguchi 	trace_error_apic_exit(ERROR_APIC_VECTOR);
2228cf910e83SSeiji Aguchi 	exiting_irq();
2229f62bae50SIngo Molnar }
2230f62bae50SIngo Molnar 
2231f62bae50SIngo Molnar /**
2232f62bae50SIngo Molnar  * connect_bsp_APIC - attach the APIC to the interrupt system
2233f62bae50SIngo Molnar  */
223405f7e46dSThomas Gleixner static void __init connect_bsp_APIC(void)
2235f62bae50SIngo Molnar {
2236f62bae50SIngo Molnar #ifdef CONFIG_X86_32
2237f62bae50SIngo Molnar 	if (pic_mode) {
2238f62bae50SIngo Molnar 		/*
2239f62bae50SIngo Molnar 		 * Do not trust the local APIC being empty at bootup.
2240f62bae50SIngo Molnar 		 */
2241f62bae50SIngo Molnar 		clear_local_APIC();
2242f62bae50SIngo Molnar 		/*
2243f62bae50SIngo Molnar 		 * PIC mode, enable APIC mode in the IMCR, i.e.  connect BSP's
2244f62bae50SIngo Molnar 		 * local APIC to INT and NMI lines.
2245f62bae50SIngo Molnar 		 */
2246f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "leaving PIC mode, "
2247f62bae50SIngo Molnar 				"enabling APIC mode.\n");
2248c0eaa453SCyrill Gorcunov 		imcr_pic_to_apic();
2249f62bae50SIngo Molnar 	}
2250f62bae50SIngo Molnar #endif
2251f62bae50SIngo Molnar }
2252f62bae50SIngo Molnar 
2253f62bae50SIngo Molnar /**
2254f62bae50SIngo Molnar  * disconnect_bsp_APIC - detach the APIC from the interrupt system
2255f62bae50SIngo Molnar  * @virt_wire_setup:	indicates, whether virtual wire mode is selected
2256f62bae50SIngo Molnar  *
2257f62bae50SIngo Molnar  * Virtual wire mode is necessary to deliver legacy interrupts even when the
2258f62bae50SIngo Molnar  * APIC is disabled.
2259f62bae50SIngo Molnar  */
2260f62bae50SIngo Molnar void disconnect_bsp_APIC(int virt_wire_setup)
2261f62bae50SIngo Molnar {
2262f62bae50SIngo Molnar 	unsigned int value;
2263f62bae50SIngo Molnar 
2264f62bae50SIngo Molnar #ifdef CONFIG_X86_32
2265f62bae50SIngo Molnar 	if (pic_mode) {
2266f62bae50SIngo Molnar 		/*
2267f62bae50SIngo Molnar 		 * Put the board back into PIC mode (has an effect only on
2268f62bae50SIngo Molnar 		 * certain older boards).  Note that APIC interrupts, including
2269f62bae50SIngo Molnar 		 * IPIs, won't work beyond this point!  The only exception are
2270f62bae50SIngo Molnar 		 * INIT IPIs.
2271f62bae50SIngo Molnar 		 */
2272f62bae50SIngo Molnar 		apic_printk(APIC_VERBOSE, "disabling APIC mode, "
2273f62bae50SIngo Molnar 				"entering PIC mode.\n");
2274c0eaa453SCyrill Gorcunov 		imcr_apic_to_pic();
2275f62bae50SIngo Molnar 		return;
2276f62bae50SIngo Molnar 	}
2277f62bae50SIngo Molnar #endif
2278f62bae50SIngo Molnar 
2279f62bae50SIngo Molnar 	/* Go back to Virtual Wire compatibility mode */
2280f62bae50SIngo Molnar 
2281f62bae50SIngo Molnar 	/* For the spurious interrupt use vector F, and enable it */
2282f62bae50SIngo Molnar 	value = apic_read(APIC_SPIV);
2283f62bae50SIngo Molnar 	value &= ~APIC_VECTOR_MASK;
2284f62bae50SIngo Molnar 	value |= APIC_SPIV_APIC_ENABLED;
2285f62bae50SIngo Molnar 	value |= 0xf;
2286f62bae50SIngo Molnar 	apic_write(APIC_SPIV, value);
2287f62bae50SIngo Molnar 
2288f62bae50SIngo Molnar 	if (!virt_wire_setup) {
2289f62bae50SIngo Molnar 		/*
2290f62bae50SIngo Molnar 		 * For LVT0 make it edge triggered, active high,
2291f62bae50SIngo Molnar 		 * external and enabled
2292f62bae50SIngo Molnar 		 */
2293f62bae50SIngo Molnar 		value = apic_read(APIC_LVT0);
2294f62bae50SIngo Molnar 		value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2295f62bae50SIngo Molnar 			APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2296f62bae50SIngo Molnar 			APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2297f62bae50SIngo Molnar 		value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2298f62bae50SIngo Molnar 		value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
2299f62bae50SIngo Molnar 		apic_write(APIC_LVT0, value);
2300f62bae50SIngo Molnar 	} else {
2301f62bae50SIngo Molnar 		/* Disable LVT0 */
2302f62bae50SIngo Molnar 		apic_write(APIC_LVT0, APIC_LVT_MASKED);
2303f62bae50SIngo Molnar 	}
2304f62bae50SIngo Molnar 
2305f62bae50SIngo Molnar 	/*
2306f62bae50SIngo Molnar 	 * For LVT1 make it edge triggered, active high,
2307f62bae50SIngo Molnar 	 * nmi and enabled
2308f62bae50SIngo Molnar 	 */
2309f62bae50SIngo Molnar 	value = apic_read(APIC_LVT1);
2310f62bae50SIngo Molnar 	value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2311f62bae50SIngo Molnar 			APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2312f62bae50SIngo Molnar 			APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2313f62bae50SIngo Molnar 	value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2314f62bae50SIngo Molnar 	value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
2315f62bae50SIngo Molnar 	apic_write(APIC_LVT1, value);
2316f62bae50SIngo Molnar }
2317f62bae50SIngo Molnar 
23188f54969dSGu Zheng /*
23198f54969dSGu Zheng  * The number of allocated logical CPU IDs. Since logical CPU IDs are allocated
23208f54969dSGu Zheng  * contiguously, it equals to current allocated max logical CPU ID plus 1.
232112bf98b9SDou Liyang  * All allocated CPU IDs should be in the [0, nr_logical_cpuids) range,
232212bf98b9SDou Liyang  * so the maximum of nr_logical_cpuids is nr_cpu_ids.
23238f54969dSGu Zheng  *
23248f54969dSGu Zheng  * NOTE: Reserve 0 for BSP.
23258f54969dSGu Zheng  */
23268f54969dSGu Zheng static int nr_logical_cpuids = 1;
23278f54969dSGu Zheng 
23288f54969dSGu Zheng /*
23298f54969dSGu Zheng  * Used to store mapping between logical CPU IDs and APIC IDs.
23308f54969dSGu Zheng  */
23318f54969dSGu Zheng static int cpuid_to_apicid[] = {
23328f54969dSGu Zheng 	[0 ... NR_CPUS - 1] = -1,
23338f54969dSGu Zheng };
23348f54969dSGu Zheng 
2335d0055f35SVlastimil Babka #ifdef CONFIG_SMP
23366a4d2657SThomas Gleixner /**
23376a4d2657SThomas Gleixner  * apic_id_is_primary_thread - Check whether APIC ID belongs to a primary thread
2338*44eb5a7eSYi Wang  * @apicid: APIC ID to check
23396a4d2657SThomas Gleixner  */
23406a4d2657SThomas Gleixner bool apic_id_is_primary_thread(unsigned int apicid)
23416a4d2657SThomas Gleixner {
23426a4d2657SThomas Gleixner 	u32 mask;
23436a4d2657SThomas Gleixner 
23446a4d2657SThomas Gleixner 	if (smp_num_siblings == 1)
23456a4d2657SThomas Gleixner 		return true;
23466a4d2657SThomas Gleixner 	/* Isolate the SMT bit(s) in the APICID and check for 0 */
23476a4d2657SThomas Gleixner 	mask = (1U << (fls(smp_num_siblings) - 1)) - 1;
23486a4d2657SThomas Gleixner 	return !(apicid & mask);
23496a4d2657SThomas Gleixner }
2350d0055f35SVlastimil Babka #endif
23516a4d2657SThomas Gleixner 
23528f54969dSGu Zheng /*
23538f54969dSGu Zheng  * Should use this API to allocate logical CPU IDs to keep nr_logical_cpuids
23548f54969dSGu Zheng  * and cpuid_to_apicid[] synchronized.
23558f54969dSGu Zheng  */
23568f54969dSGu Zheng static int allocate_logical_cpuid(int apicid)
23578f54969dSGu Zheng {
23588f54969dSGu Zheng 	int i;
23598f54969dSGu Zheng 
23608f54969dSGu Zheng 	/*
23618f54969dSGu Zheng 	 * cpuid <-> apicid mapping is persistent, so when a cpu is up,
23628f54969dSGu Zheng 	 * check if the kernel has allocated a cpuid for it.
23638f54969dSGu Zheng 	 */
23648f54969dSGu Zheng 	for (i = 0; i < nr_logical_cpuids; i++) {
23658f54969dSGu Zheng 		if (cpuid_to_apicid[i] == apicid)
23668f54969dSGu Zheng 			return i;
23678f54969dSGu Zheng 	}
23688f54969dSGu Zheng 
23698f54969dSGu Zheng 	/* Allocate a new cpuid. */
23708f54969dSGu Zheng 	if (nr_logical_cpuids >= nr_cpu_ids) {
23719b130ad5SAlexey Dobriyan 		WARN_ONCE(1, "APIC: NR_CPUS/possible_cpus limit of %u reached. "
23728f54969dSGu Zheng 			     "Processor %d/0x%x and the rest are ignored.\n",
2373bb3f0a52SDou Liyang 			     nr_cpu_ids, nr_logical_cpuids, apicid);
2374bb3f0a52SDou Liyang 		return -EINVAL;
23758f54969dSGu Zheng 	}
23768f54969dSGu Zheng 
23778f54969dSGu Zheng 	cpuid_to_apicid[nr_logical_cpuids] = apicid;
23788f54969dSGu Zheng 	return nr_logical_cpuids++;
23798f54969dSGu Zheng }
23808f54969dSGu Zheng 
23812b85b3d2SDou Liyang int generic_processor_info(int apicid, int version)
2382f62bae50SIngo Molnar {
238314cb6dcfSVivek Goyal 	int cpu, max = nr_cpu_ids;
238414cb6dcfSVivek Goyal 	bool boot_cpu_detected = physid_isset(boot_cpu_physical_apicid,
238514cb6dcfSVivek Goyal 				phys_cpu_present_map);
238614cb6dcfSVivek Goyal 
238714cb6dcfSVivek Goyal 	/*
2388151e0c7dSHATAYAMA Daisuke 	 * boot_cpu_physical_apicid is designed to have the apicid
2389151e0c7dSHATAYAMA Daisuke 	 * returned by read_apic_id(), i.e, the apicid of the
2390151e0c7dSHATAYAMA Daisuke 	 * currently booting-up processor. However, on some platforms,
23915b4d1dbcSH. Peter Anvin 	 * it is temporarily modified by the apicid reported as BSP
2392151e0c7dSHATAYAMA Daisuke 	 * through MP table. Concretely:
2393151e0c7dSHATAYAMA Daisuke 	 *
2394151e0c7dSHATAYAMA Daisuke 	 * - arch/x86/kernel/mpparse.c: MP_processor_info()
2395151e0c7dSHATAYAMA Daisuke 	 * - arch/x86/mm/amdtopology.c: amd_numa_init()
2396151e0c7dSHATAYAMA Daisuke 	 *
2397151e0c7dSHATAYAMA Daisuke 	 * This function is executed with the modified
2398151e0c7dSHATAYAMA Daisuke 	 * boot_cpu_physical_apicid. So, disabled_cpu_apicid kernel
2399151e0c7dSHATAYAMA Daisuke 	 * parameter doesn't work to disable APs on kdump 2nd kernel.
2400151e0c7dSHATAYAMA Daisuke 	 *
2401151e0c7dSHATAYAMA Daisuke 	 * Since fixing handling of boot_cpu_physical_apicid requires
2402151e0c7dSHATAYAMA Daisuke 	 * another discussion and tests on each platform, we leave it
2403151e0c7dSHATAYAMA Daisuke 	 * for now and here we use read_apic_id() directly in this
2404e2329b42SDou Liyang 	 * function, generic_processor_info().
2405151e0c7dSHATAYAMA Daisuke 	 */
2406151e0c7dSHATAYAMA Daisuke 	if (disabled_cpu_apicid != BAD_APICID &&
2407151e0c7dSHATAYAMA Daisuke 	    disabled_cpu_apicid != read_apic_id() &&
2408151e0c7dSHATAYAMA Daisuke 	    disabled_cpu_apicid == apicid) {
2409151e0c7dSHATAYAMA Daisuke 		int thiscpu = num_processors + disabled_cpus;
2410151e0c7dSHATAYAMA Daisuke 
24115b4d1dbcSH. Peter Anvin 		pr_warning("APIC: Disabling requested cpu."
2412151e0c7dSHATAYAMA Daisuke 			   " Processor %d/0x%x ignored.\n",
2413151e0c7dSHATAYAMA Daisuke 			   thiscpu, apicid);
2414151e0c7dSHATAYAMA Daisuke 
2415151e0c7dSHATAYAMA Daisuke 		disabled_cpus++;
2416151e0c7dSHATAYAMA Daisuke 		return -ENODEV;
2417151e0c7dSHATAYAMA Daisuke 	}
2418151e0c7dSHATAYAMA Daisuke 
2419151e0c7dSHATAYAMA Daisuke 	/*
242014cb6dcfSVivek Goyal 	 * If boot cpu has not been detected yet, then only allow upto
242114cb6dcfSVivek Goyal 	 * nr_cpu_ids - 1 processors and keep one slot free for boot cpu
242214cb6dcfSVivek Goyal 	 */
242314cb6dcfSVivek Goyal 	if (!boot_cpu_detected && num_processors >= nr_cpu_ids - 1 &&
242414cb6dcfSVivek Goyal 	    apicid != boot_cpu_physical_apicid) {
242514cb6dcfSVivek Goyal 		int thiscpu = max + disabled_cpus - 1;
242614cb6dcfSVivek Goyal 
242714cb6dcfSVivek Goyal 		pr_warning(
24283c8fad91SClaudio Fontana 			"APIC: NR_CPUS/possible_cpus limit of %i almost"
242914cb6dcfSVivek Goyal 			" reached. Keeping one slot for boot cpu."
243014cb6dcfSVivek Goyal 			"  Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
243114cb6dcfSVivek Goyal 
243214cb6dcfSVivek Goyal 		disabled_cpus++;
24337e1f85f9SJiang Liu 		return -ENODEV;
243414cb6dcfSVivek Goyal 	}
2435f62bae50SIngo Molnar 
2436f62bae50SIngo Molnar 	if (num_processors >= nr_cpu_ids) {
2437f62bae50SIngo Molnar 		int thiscpu = max + disabled_cpus;
2438f62bae50SIngo Molnar 
2439df610d67SThomas Gleixner 		pr_warning("APIC: NR_CPUS/possible_cpus limit of %i "
2440df610d67SThomas Gleixner 			   "reached. Processor %d/0x%x ignored.\n",
2441df610d67SThomas Gleixner 			   max, thiscpu, apicid);
2442f62bae50SIngo Molnar 
2443f62bae50SIngo Molnar 		disabled_cpus++;
24447e1f85f9SJiang Liu 		return -EINVAL;
2445f62bae50SIngo Molnar 	}
2446f62bae50SIngo Molnar 
2447f62bae50SIngo Molnar 	if (apicid == boot_cpu_physical_apicid) {
2448f62bae50SIngo Molnar 		/*
2449f62bae50SIngo Molnar 		 * x86_bios_cpu_apicid is required to have processors listed
2450f62bae50SIngo Molnar 		 * in same order as logical cpu numbers. Hence the first
2451f62bae50SIngo Molnar 		 * entry is BSP, and so on.
2452e5fea868SYinghai Lu 		 * boot_cpu_init() already hold bit 0 in cpu_present_mask
2453e5fea868SYinghai Lu 		 * for BSP.
2454f62bae50SIngo Molnar 		 */
2455f62bae50SIngo Molnar 		cpu = 0;
24568f54969dSGu Zheng 
24578f54969dSGu Zheng 		/* Logical cpuid 0 is reserved for BSP. */
24588f54969dSGu Zheng 		cpuid_to_apicid[0] = apicid;
24598f54969dSGu Zheng 	} else {
24608f54969dSGu Zheng 		cpu = allocate_logical_cpuid(apicid);
24618f54969dSGu Zheng 		if (cpu < 0) {
24628f54969dSGu Zheng 			disabled_cpus++;
24638f54969dSGu Zheng 			return -EINVAL;
24648f54969dSGu Zheng 		}
24658f54969dSGu Zheng 	}
2466e5fea868SYinghai Lu 
2467e5fea868SYinghai Lu 	/*
2468e5fea868SYinghai Lu 	 * Validate version
2469e5fea868SYinghai Lu 	 */
2470e5fea868SYinghai Lu 	if (version == 0x0) {
2471e5fea868SYinghai Lu 		pr_warning("BIOS bug: APIC version is 0 for CPU %d/0x%x, fixing up to 0x10\n",
2472e5fea868SYinghai Lu 			   cpu, apicid);
2473e5fea868SYinghai Lu 		version = 0x10;
2474f62bae50SIngo Molnar 	}
2475e5fea868SYinghai Lu 
2476cff9ab2bSDenys Vlasenko 	if (version != boot_cpu_apic_version) {
2477e5fea868SYinghai Lu 		pr_warning("BIOS bug: APIC version mismatch, boot CPU: %x, CPU %d: version %x\n",
2478cff9ab2bSDenys Vlasenko 			boot_cpu_apic_version, cpu, version);
2479e5fea868SYinghai Lu 	}
2480e5fea868SYinghai Lu 
2481f62bae50SIngo Molnar 	if (apicid > max_physical_apicid)
2482f62bae50SIngo Molnar 		max_physical_apicid = apicid;
2483f62bae50SIngo Molnar 
2484f62bae50SIngo Molnar #if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
2485f62bae50SIngo Molnar 	early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
2486f62bae50SIngo Molnar 	early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
2487f62bae50SIngo Molnar #endif
2488acb8bc09STejun Heo #ifdef CONFIG_X86_32
2489acb8bc09STejun Heo 	early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
2490acb8bc09STejun Heo 		apic->x86_32_early_logical_apicid(cpu);
2491acb8bc09STejun Heo #endif
2492f62bae50SIngo Molnar 	set_cpu_possible(cpu, true);
2493f7c28833SGu Zheng 	physid_set(apicid, phys_cpu_present_map);
2494f62bae50SIngo Molnar 	set_cpu_present(cpu, true);
24952b85b3d2SDou Liyang 	num_processors++;
24967e1f85f9SJiang Liu 
24977e1f85f9SJiang Liu 	return cpu;
2498f62bae50SIngo Molnar }
2499f62bae50SIngo Molnar 
2500f62bae50SIngo Molnar int hard_smp_processor_id(void)
2501f62bae50SIngo Molnar {
2502f62bae50SIngo Molnar 	return read_apic_id();
2503f62bae50SIngo Molnar }
2504f62bae50SIngo Molnar 
2505f62bae50SIngo Molnar /*
25061551df64SMichael S. Tsirkin  * Override the generic EOI implementation with an optimized version.
25071551df64SMichael S. Tsirkin  * Only called during early boot when only one CPU is active and with
25081551df64SMichael S. Tsirkin  * interrupts disabled, so we know this does not race with actual APIC driver
25091551df64SMichael S. Tsirkin  * use.
25101551df64SMichael S. Tsirkin  */
25111551df64SMichael S. Tsirkin void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v))
25121551df64SMichael S. Tsirkin {
25131551df64SMichael S. Tsirkin 	struct apic **drv;
25141551df64SMichael S. Tsirkin 
25151551df64SMichael S. Tsirkin 	for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
25161551df64SMichael S. Tsirkin 		/* Should happen once for each apic */
25171551df64SMichael S. Tsirkin 		WARN_ON((*drv)->eoi_write == eoi_write);
25188ca22552SWanpeng Li 		(*drv)->native_eoi_write = (*drv)->eoi_write;
25191551df64SMichael S. Tsirkin 		(*drv)->eoi_write = eoi_write;
25201551df64SMichael S. Tsirkin 	}
25211551df64SMichael S. Tsirkin }
25221551df64SMichael S. Tsirkin 
2523374aab33SThomas Gleixner static void __init apic_bsp_up_setup(void)
252405f7e46dSThomas Gleixner {
2525374aab33SThomas Gleixner #ifdef CONFIG_X86_64
25265d64d209SDou Liyang 	apic_write(APIC_ID, apic->set_apic_id(boot_cpu_physical_apicid));
2527374aab33SThomas Gleixner #else
252805f7e46dSThomas Gleixner 	/*
2529374aab33SThomas Gleixner 	 * Hack: In case of kdump, after a crash, kernel might be booting
2530374aab33SThomas Gleixner 	 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
2531374aab33SThomas Gleixner 	 * might be zero if read from MP tables. Get it from LAPIC.
253205f7e46dSThomas Gleixner 	 */
2533374aab33SThomas Gleixner # ifdef CONFIG_CRASH_DUMP
2534374aab33SThomas Gleixner 	boot_cpu_physical_apicid = read_apic_id();
2535374aab33SThomas Gleixner # endif
2536374aab33SThomas Gleixner #endif
2537374aab33SThomas Gleixner 	physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
253805f7e46dSThomas Gleixner }
253905f7e46dSThomas Gleixner 
254005f7e46dSThomas Gleixner /**
254105f7e46dSThomas Gleixner  * apic_bsp_setup - Setup function for local apic and io-apic
2542374aab33SThomas Gleixner  * @upmode:		Force UP mode (for APIC_init_uniprocessor)
254305f7e46dSThomas Gleixner  */
2544748b170cSThomas Gleixner static void __init apic_bsp_setup(bool upmode)
254505f7e46dSThomas Gleixner {
254605f7e46dSThomas Gleixner 	connect_bsp_APIC();
2547374aab33SThomas Gleixner 	if (upmode)
2548374aab33SThomas Gleixner 		apic_bsp_up_setup();
254905f7e46dSThomas Gleixner 	setup_local_APIC();
255005f7e46dSThomas Gleixner 
255105f7e46dSThomas Gleixner 	enable_IO_APIC();
2552374aab33SThomas Gleixner 	end_local_APIC_setup();
2553374aab33SThomas Gleixner 	irq_remap_enable_fault_handling();
255405f7e46dSThomas Gleixner 	setup_IO_APIC();
2555e714a91fSThomas Gleixner }
2556e714a91fSThomas Gleixner 
255730b8b006SThomas Gleixner #ifdef CONFIG_UP_LATE_INIT
255830b8b006SThomas Gleixner void __init up_late_init(void)
255930b8b006SThomas Gleixner {
25600c759131SDou Liyang 	if (apic_intr_mode == APIC_PIC)
25610c759131SDou Liyang 		return;
25620c759131SDou Liyang 
25630c759131SDou Liyang 	/* Setup local timer */
25640c759131SDou Liyang 	x86_init.timers.setup_percpu_clockev();
256530b8b006SThomas Gleixner }
256630b8b006SThomas Gleixner #endif
256730b8b006SThomas Gleixner 
2568e714a91fSThomas Gleixner /*
2569f62bae50SIngo Molnar  * Power management
2570f62bae50SIngo Molnar  */
2571f62bae50SIngo Molnar #ifdef CONFIG_PM
2572f62bae50SIngo Molnar 
2573f62bae50SIngo Molnar static struct {
2574f62bae50SIngo Molnar 	/*
2575f62bae50SIngo Molnar 	 * 'active' is true if the local APIC was enabled by us and
2576f62bae50SIngo Molnar 	 * not the BIOS; this signifies that we are also responsible
2577f62bae50SIngo Molnar 	 * for disabling it before entering apm/acpi suspend
2578f62bae50SIngo Molnar 	 */
2579f62bae50SIngo Molnar 	int active;
2580f62bae50SIngo Molnar 	/* r/w apic fields */
2581f62bae50SIngo Molnar 	unsigned int apic_id;
2582f62bae50SIngo Molnar 	unsigned int apic_taskpri;
2583f62bae50SIngo Molnar 	unsigned int apic_ldr;
2584f62bae50SIngo Molnar 	unsigned int apic_dfr;
2585f62bae50SIngo Molnar 	unsigned int apic_spiv;
2586f62bae50SIngo Molnar 	unsigned int apic_lvtt;
2587f62bae50SIngo Molnar 	unsigned int apic_lvtpc;
2588f62bae50SIngo Molnar 	unsigned int apic_lvt0;
2589f62bae50SIngo Molnar 	unsigned int apic_lvt1;
2590f62bae50SIngo Molnar 	unsigned int apic_lvterr;
2591f62bae50SIngo Molnar 	unsigned int apic_tmict;
2592f62bae50SIngo Molnar 	unsigned int apic_tdcr;
2593f62bae50SIngo Molnar 	unsigned int apic_thmr;
259442baa258SJuergen Gross 	unsigned int apic_cmci;
2595f62bae50SIngo Molnar } apic_pm_state;
2596f62bae50SIngo Molnar 
2597f3c6ea1bSRafael J. Wysocki static int lapic_suspend(void)
2598f62bae50SIngo Molnar {
2599f62bae50SIngo Molnar 	unsigned long flags;
2600f62bae50SIngo Molnar 	int maxlvt;
2601f62bae50SIngo Molnar 
2602f62bae50SIngo Molnar 	if (!apic_pm_state.active)
2603f62bae50SIngo Molnar 		return 0;
2604f62bae50SIngo Molnar 
2605f62bae50SIngo Molnar 	maxlvt = lapic_get_maxlvt();
2606f62bae50SIngo Molnar 
2607f62bae50SIngo Molnar 	apic_pm_state.apic_id = apic_read(APIC_ID);
2608f62bae50SIngo Molnar 	apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
2609f62bae50SIngo Molnar 	apic_pm_state.apic_ldr = apic_read(APIC_LDR);
2610f62bae50SIngo Molnar 	apic_pm_state.apic_dfr = apic_read(APIC_DFR);
2611f62bae50SIngo Molnar 	apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
2612f62bae50SIngo Molnar 	apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
2613f62bae50SIngo Molnar 	if (maxlvt >= 4)
2614f62bae50SIngo Molnar 		apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
2615f62bae50SIngo Molnar 	apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
2616f62bae50SIngo Molnar 	apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
2617f62bae50SIngo Molnar 	apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
2618f62bae50SIngo Molnar 	apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
2619f62bae50SIngo Molnar 	apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
26204efc0670SAndi Kleen #ifdef CONFIG_X86_THERMAL_VECTOR
2621f62bae50SIngo Molnar 	if (maxlvt >= 5)
2622f62bae50SIngo Molnar 		apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
2623f62bae50SIngo Molnar #endif
262442baa258SJuergen Gross #ifdef CONFIG_X86_MCE_INTEL
262542baa258SJuergen Gross 	if (maxlvt >= 6)
262642baa258SJuergen Gross 		apic_pm_state.apic_cmci = apic_read(APIC_LVTCMCI);
262742baa258SJuergen Gross #endif
2628f62bae50SIngo Molnar 
2629f62bae50SIngo Molnar 	local_irq_save(flags);
2630f62bae50SIngo Molnar 	disable_local_APIC();
2631fc1edaf9SSuresh Siddha 
263295a02e97SSuresh Siddha 	irq_remapping_disable();
2633fc1edaf9SSuresh Siddha 
2634f62bae50SIngo Molnar 	local_irq_restore(flags);
2635f62bae50SIngo Molnar 	return 0;
2636f62bae50SIngo Molnar }
2637f62bae50SIngo Molnar 
2638f3c6ea1bSRafael J. Wysocki static void lapic_resume(void)
2639f62bae50SIngo Molnar {
2640f62bae50SIngo Molnar 	unsigned int l, h;
2641f62bae50SIngo Molnar 	unsigned long flags;
264231dce14aSSuresh Siddha 	int maxlvt;
2643b24696bcSFenghua Yu 
2644f62bae50SIngo Molnar 	if (!apic_pm_state.active)
2645f3c6ea1bSRafael J. Wysocki 		return;
2646f62bae50SIngo Molnar 
2647b24696bcSFenghua Yu 	local_irq_save(flags);
2648336224baSJoerg Roedel 
264931dce14aSSuresh Siddha 	/*
265031dce14aSSuresh Siddha 	 * IO-APIC and PIC have their own resume routines.
265131dce14aSSuresh Siddha 	 * We just mask them here to make sure the interrupt
265231dce14aSSuresh Siddha 	 * subsystem is completely quiet while we enable x2apic
265331dce14aSSuresh Siddha 	 * and interrupt-remapping.
265431dce14aSSuresh Siddha 	 */
265531dce14aSSuresh Siddha 	mask_ioapic_entries();
2656b81bb373SJacob Pan 	legacy_pic->mask_all();
2657f62bae50SIngo Molnar 
2658659006bfSThomas Gleixner 	if (x2apic_mode) {
2659659006bfSThomas Gleixner 		__x2apic_enable();
2660659006bfSThomas Gleixner 	} else {
2661f62bae50SIngo Molnar 		/*
2662f62bae50SIngo Molnar 		 * Make sure the APICBASE points to the right address
2663f62bae50SIngo Molnar 		 *
2664f62bae50SIngo Molnar 		 * FIXME! This will be wrong if we ever support suspend on
2665f62bae50SIngo Molnar 		 * SMP! We'll need to do this as part of the CPU restore!
2666f62bae50SIngo Molnar 		 */
2667cbf2829bSBryan O'Donoghue 		if (boot_cpu_data.x86 >= 6) {
2668f62bae50SIngo Molnar 			rdmsr(MSR_IA32_APICBASE, l, h);
2669f62bae50SIngo Molnar 			l &= ~MSR_IA32_APICBASE_BASE;
2670f62bae50SIngo Molnar 			l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2671f62bae50SIngo Molnar 			wrmsr(MSR_IA32_APICBASE, l, h);
2672f62bae50SIngo Molnar 		}
2673cbf2829bSBryan O'Donoghue 	}
2674f62bae50SIngo Molnar 
2675b24696bcSFenghua Yu 	maxlvt = lapic_get_maxlvt();
2676f62bae50SIngo Molnar 	apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2677f62bae50SIngo Molnar 	apic_write(APIC_ID, apic_pm_state.apic_id);
2678f62bae50SIngo Molnar 	apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2679f62bae50SIngo Molnar 	apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2680f62bae50SIngo Molnar 	apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2681f62bae50SIngo Molnar 	apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2682f62bae50SIngo Molnar 	apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2683f62bae50SIngo Molnar 	apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
268442baa258SJuergen Gross #ifdef CONFIG_X86_THERMAL_VECTOR
2685f62bae50SIngo Molnar 	if (maxlvt >= 5)
2686f62bae50SIngo Molnar 		apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2687f62bae50SIngo Molnar #endif
268842baa258SJuergen Gross #ifdef CONFIG_X86_MCE_INTEL
268942baa258SJuergen Gross 	if (maxlvt >= 6)
269042baa258SJuergen Gross 		apic_write(APIC_LVTCMCI, apic_pm_state.apic_cmci);
269142baa258SJuergen Gross #endif
2692f62bae50SIngo Molnar 	if (maxlvt >= 4)
2693f62bae50SIngo Molnar 		apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
2694f62bae50SIngo Molnar 	apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2695f62bae50SIngo Molnar 	apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2696f62bae50SIngo Molnar 	apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2697f62bae50SIngo Molnar 	apic_write(APIC_ESR, 0);
2698f62bae50SIngo Molnar 	apic_read(APIC_ESR);
2699f62bae50SIngo Molnar 	apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2700f62bae50SIngo Molnar 	apic_write(APIC_ESR, 0);
2701f62bae50SIngo Molnar 	apic_read(APIC_ESR);
2702f62bae50SIngo Molnar 
270395a02e97SSuresh Siddha 	irq_remapping_reenable(x2apic_mode);
270431dce14aSSuresh Siddha 
2705f62bae50SIngo Molnar 	local_irq_restore(flags);
2706f62bae50SIngo Molnar }
2707f62bae50SIngo Molnar 
2708f62bae50SIngo Molnar /*
2709f62bae50SIngo Molnar  * This device has no shutdown method - fully functioning local APICs
2710f62bae50SIngo Molnar  * are needed on every CPU up until machine_halt/restart/poweroff.
2711f62bae50SIngo Molnar  */
2712f62bae50SIngo Molnar 
2713f3c6ea1bSRafael J. Wysocki static struct syscore_ops lapic_syscore_ops = {
2714f62bae50SIngo Molnar 	.resume		= lapic_resume,
2715f62bae50SIngo Molnar 	.suspend	= lapic_suspend,
2716f62bae50SIngo Molnar };
2717f62bae50SIngo Molnar 
2718148f9bb8SPaul Gortmaker static void apic_pm_activate(void)
2719f62bae50SIngo Molnar {
2720f62bae50SIngo Molnar 	apic_pm_state.active = 1;
2721f62bae50SIngo Molnar }
2722f62bae50SIngo Molnar 
2723f62bae50SIngo Molnar static int __init init_lapic_sysfs(void)
2724f62bae50SIngo Molnar {
2725f62bae50SIngo Molnar 	/* XXX: remove suspend/resume procs if !apic_pm_state.active? */
272693984fbdSBorislav Petkov 	if (boot_cpu_has(X86_FEATURE_APIC))
2727f3c6ea1bSRafael J. Wysocki 		register_syscore_ops(&lapic_syscore_ops);
2728f62bae50SIngo Molnar 
2729f3c6ea1bSRafael J. Wysocki 	return 0;
2730f62bae50SIngo Molnar }
2731b24696bcSFenghua Yu 
2732b24696bcSFenghua Yu /* local apic needs to resume before other devices access its registers. */
2733b24696bcSFenghua Yu core_initcall(init_lapic_sysfs);
2734f62bae50SIngo Molnar 
2735f62bae50SIngo Molnar #else	/* CONFIG_PM */
2736f62bae50SIngo Molnar 
2737f62bae50SIngo Molnar static void apic_pm_activate(void) { }
2738f62bae50SIngo Molnar 
2739f62bae50SIngo Molnar #endif	/* CONFIG_PM */
2740f62bae50SIngo Molnar 
2741f62bae50SIngo Molnar #ifdef CONFIG_X86_64
2742e0e42142SYinghai Lu 
2743148f9bb8SPaul Gortmaker static int multi_checked;
2744148f9bb8SPaul Gortmaker static int multi;
2745e0e42142SYinghai Lu 
2746148f9bb8SPaul Gortmaker static int set_multi(const struct dmi_system_id *d)
2747e0e42142SYinghai Lu {
2748e0e42142SYinghai Lu 	if (multi)
2749e0e42142SYinghai Lu 		return 0;
27506f0aced6SCyrill Gorcunov 	pr_info("APIC: %s detected, Multi Chassis\n", d->ident);
2751e0e42142SYinghai Lu 	multi = 1;
2752e0e42142SYinghai Lu 	return 0;
2753e0e42142SYinghai Lu }
2754e0e42142SYinghai Lu 
2755148f9bb8SPaul Gortmaker static const struct dmi_system_id multi_dmi_table[] = {
2756e0e42142SYinghai Lu 	{
2757e0e42142SYinghai Lu 		.callback = set_multi,
2758e0e42142SYinghai Lu 		.ident = "IBM System Summit2",
2759e0e42142SYinghai Lu 		.matches = {
2760e0e42142SYinghai Lu 			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
2761e0e42142SYinghai Lu 			DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"),
2762e0e42142SYinghai Lu 		},
2763e0e42142SYinghai Lu 	},
2764e0e42142SYinghai Lu 	{}
2765e0e42142SYinghai Lu };
2766e0e42142SYinghai Lu 
2767148f9bb8SPaul Gortmaker static void dmi_check_multi(void)
2768e0e42142SYinghai Lu {
2769e0e42142SYinghai Lu 	if (multi_checked)
2770e0e42142SYinghai Lu 		return;
2771e0e42142SYinghai Lu 
2772e0e42142SYinghai Lu 	dmi_check_system(multi_dmi_table);
2773e0e42142SYinghai Lu 	multi_checked = 1;
2774e0e42142SYinghai Lu }
2775f62bae50SIngo Molnar 
2776f62bae50SIngo Molnar /*
2777e0e42142SYinghai Lu  * apic_is_clustered_box() -- Check if we can expect good TSC
2778e0e42142SYinghai Lu  *
2779e0e42142SYinghai Lu  * Thus far, the major user of this is IBM's Summit2 series:
2780e0e42142SYinghai Lu  * Clustered boxes may have unsynced TSC problems if they are
2781e0e42142SYinghai Lu  * multi-chassis.
2782e0e42142SYinghai Lu  * Use DMI to check them
2783f62bae50SIngo Molnar  */
2784148f9bb8SPaul Gortmaker int apic_is_clustered_box(void)
2785e0e42142SYinghai Lu {
2786e0e42142SYinghai Lu 	dmi_check_multi();
2787411cf9eeSOren Twaig 	return multi;
2788f62bae50SIngo Molnar }
2789f62bae50SIngo Molnar #endif
2790f62bae50SIngo Molnar 
2791f62bae50SIngo Molnar /*
2792f62bae50SIngo Molnar  * APIC command line parameters
2793f62bae50SIngo Molnar  */
2794f62bae50SIngo Molnar static int __init setup_disableapic(char *arg)
2795f62bae50SIngo Molnar {
2796f62bae50SIngo Molnar 	disable_apic = 1;
2797f62bae50SIngo Molnar 	setup_clear_cpu_cap(X86_FEATURE_APIC);
2798f62bae50SIngo Molnar 	return 0;
2799f62bae50SIngo Molnar }
2800f62bae50SIngo Molnar early_param("disableapic", setup_disableapic);
2801f62bae50SIngo Molnar 
2802f62bae50SIngo Molnar /* same as disableapic, for compatibility */
2803f62bae50SIngo Molnar static int __init setup_nolapic(char *arg)
2804f62bae50SIngo Molnar {
2805f62bae50SIngo Molnar 	return setup_disableapic(arg);
2806f62bae50SIngo Molnar }
2807f62bae50SIngo Molnar early_param("nolapic", setup_nolapic);
2808f62bae50SIngo Molnar 
2809f62bae50SIngo Molnar static int __init parse_lapic_timer_c2_ok(char *arg)
2810f62bae50SIngo Molnar {
2811f62bae50SIngo Molnar 	local_apic_timer_c2_ok = 1;
2812f62bae50SIngo Molnar 	return 0;
2813f62bae50SIngo Molnar }
2814f62bae50SIngo Molnar early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2815f62bae50SIngo Molnar 
2816f62bae50SIngo Molnar static int __init parse_disable_apic_timer(char *arg)
2817f62bae50SIngo Molnar {
2818f62bae50SIngo Molnar 	disable_apic_timer = 1;
2819f62bae50SIngo Molnar 	return 0;
2820f62bae50SIngo Molnar }
2821f62bae50SIngo Molnar early_param("noapictimer", parse_disable_apic_timer);
2822f62bae50SIngo Molnar 
2823f62bae50SIngo Molnar static int __init parse_nolapic_timer(char *arg)
2824f62bae50SIngo Molnar {
2825f62bae50SIngo Molnar 	disable_apic_timer = 1;
2826f62bae50SIngo Molnar 	return 0;
2827f62bae50SIngo Molnar }
2828f62bae50SIngo Molnar early_param("nolapic_timer", parse_nolapic_timer);
2829f62bae50SIngo Molnar 
2830f62bae50SIngo Molnar static int __init apic_set_verbosity(char *arg)
2831f62bae50SIngo Molnar {
2832f62bae50SIngo Molnar 	if (!arg)  {
2833f62bae50SIngo Molnar #ifdef CONFIG_X86_64
2834f62bae50SIngo Molnar 		skip_ioapic_setup = 0;
2835f62bae50SIngo Molnar 		return 0;
2836f62bae50SIngo Molnar #endif
2837f62bae50SIngo Molnar 		return -EINVAL;
2838f62bae50SIngo Molnar 	}
2839f62bae50SIngo Molnar 
2840f62bae50SIngo Molnar 	if (strcmp("debug", arg) == 0)
2841f62bae50SIngo Molnar 		apic_verbosity = APIC_DEBUG;
2842f62bae50SIngo Molnar 	else if (strcmp("verbose", arg) == 0)
2843f62bae50SIngo Molnar 		apic_verbosity = APIC_VERBOSE;
28444fcab669SDou Liyang #ifdef CONFIG_X86_64
2845f62bae50SIngo Molnar 	else {
2846f62bae50SIngo Molnar 		pr_warning("APIC Verbosity level %s not recognised"
2847f62bae50SIngo Molnar 			" use apic=verbose or apic=debug\n", arg);
2848f62bae50SIngo Molnar 		return -EINVAL;
2849f62bae50SIngo Molnar 	}
28504fcab669SDou Liyang #endif
2851f62bae50SIngo Molnar 
2852f62bae50SIngo Molnar 	return 0;
2853f62bae50SIngo Molnar }
2854f62bae50SIngo Molnar early_param("apic", apic_set_verbosity);
2855f62bae50SIngo Molnar 
2856f62bae50SIngo Molnar static int __init lapic_insert_resource(void)
2857f62bae50SIngo Molnar {
2858f62bae50SIngo Molnar 	if (!apic_phys)
2859f62bae50SIngo Molnar 		return -1;
2860f62bae50SIngo Molnar 
2861f62bae50SIngo Molnar 	/* Put local APIC into the resource map. */
2862f62bae50SIngo Molnar 	lapic_resource.start = apic_phys;
2863f62bae50SIngo Molnar 	lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2864f62bae50SIngo Molnar 	insert_resource(&iomem_resource, &lapic_resource);
2865f62bae50SIngo Molnar 
2866f62bae50SIngo Molnar 	return 0;
2867f62bae50SIngo Molnar }
2868f62bae50SIngo Molnar 
2869f62bae50SIngo Molnar /*
28701506c8dcSIngo Molnar  * need call insert after e820__reserve_resources()
2871f62bae50SIngo Molnar  * that is using request_resource
2872f62bae50SIngo Molnar  */
2873f62bae50SIngo Molnar late_initcall(lapic_insert_resource);
2874151e0c7dSHATAYAMA Daisuke 
2875151e0c7dSHATAYAMA Daisuke static int __init apic_set_disabled_cpu_apicid(char *arg)
2876151e0c7dSHATAYAMA Daisuke {
2877151e0c7dSHATAYAMA Daisuke 	if (!arg || !get_option(&arg, &disabled_cpu_apicid))
2878151e0c7dSHATAYAMA Daisuke 		return -EINVAL;
2879151e0c7dSHATAYAMA Daisuke 
2880151e0c7dSHATAYAMA Daisuke 	return 0;
2881151e0c7dSHATAYAMA Daisuke }
2882151e0c7dSHATAYAMA Daisuke early_param("disable_cpu_apicid", apic_set_disabled_cpu_apicid);
2883b7c4948eSHidehiro Kawai 
2884b7c4948eSHidehiro Kawai static int __init apic_set_extnmi(char *arg)
2885b7c4948eSHidehiro Kawai {
2886b7c4948eSHidehiro Kawai 	if (!arg)
2887b7c4948eSHidehiro Kawai 		return -EINVAL;
2888b7c4948eSHidehiro Kawai 
2889b7c4948eSHidehiro Kawai 	if (!strncmp("all", arg, 3))
2890b7c4948eSHidehiro Kawai 		apic_extnmi = APIC_EXTNMI_ALL;
2891b7c4948eSHidehiro Kawai 	else if (!strncmp("none", arg, 4))
2892b7c4948eSHidehiro Kawai 		apic_extnmi = APIC_EXTNMI_NONE;
2893b7c4948eSHidehiro Kawai 	else if (!strncmp("bsp", arg, 3))
2894b7c4948eSHidehiro Kawai 		apic_extnmi = APIC_EXTNMI_BSP;
2895b7c4948eSHidehiro Kawai 	else {
2896b7c4948eSHidehiro Kawai 		pr_warn("Unknown external NMI delivery mode `%s' ignored\n", arg);
2897b7c4948eSHidehiro Kawai 		return -EINVAL;
2898b7c4948eSHidehiro Kawai 	}
2899b7c4948eSHidehiro Kawai 
2900b7c4948eSHidehiro Kawai 	return 0;
2901b7c4948eSHidehiro Kawai }
2902b7c4948eSHidehiro Kawai early_param("apic_extnmi", apic_set_extnmi);
2903