blob: 99663b59123a0066fe42a427bb2a2cb51b8b8a55 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Local APIC handling, local APIC timers
3 *
Ingo Molnar8f47e162009-01-31 02:03:42 +01004 * (c) 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Fixes
7 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
8 * thanks to Eric Gilmore
9 * and Rolf G. Tews
10 * for testing these extensively.
11 * Maciej W. Rozycki : Various updates and fixes.
12 * Mikael Pettersson : Power Management for UP-APIC.
13 * Pavel Machek and
14 * Mikael Pettersson : PM converted to driver model.
15 */
16
Ingo Molnarcdd6c482009-09-21 12:02:48 +020017#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel_stat.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010019#include <linux/mc146818rtc.h>
Thomas Gleixner70a20022008-01-30 13:30:18 +010020#include <linux/acpi_pmtmr.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010021#include <linux/clockchips.h>
22#include <linux/interrupt.h>
23#include <linux/bootmem.h>
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +010024#include <linux/ftrace.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010025#include <linux/ioport.h>
26#include <linux/module.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010027#include <linux/syscore_ops.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010028#include <linux/delay.h>
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +053029#include <linux/timex.h>
Ralf Baechle334955e2011-06-01 19:04:57 +010030#include <linux/i8253.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010031#include <linux/dmar.h>
32#include <linux/init.h>
33#include <linux/cpu.h>
34#include <linux/dmi.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010035#include <linux/smp.h>
36#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Steven Rostedt (Red Hat)83ab8512013-06-21 10:29:05 -040038#include <asm/trace/irq_vectors.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070039#include <asm/irq_remapping.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020040#include <asm/perf_event.h>
Thomas Gleixner736deca2009-08-19 12:35:53 +020041#include <asm/x86_init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/pgalloc.h>
Arun Sharma600634972011-07-26 16:09:06 -070043#include <linux/atomic.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010044#include <asm/mpspec.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010045#include <asm/i8259.h>
Andi Kleen73dea472006-02-03 21:50:50 +010046#include <asm/proto.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020047#include <asm/apic.h>
Henrik Kretzschmar7167d082011-02-22 15:38:05 +010048#include <asm/io_apic.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010049#include <asm/desc.h>
50#include <asm/hpet.h>
51#include <asm/idle.h>
52#include <asm/mtrr.h>
Ralf Baechle16f871b2011-06-01 19:05:06 +010053#include <asm/time.h>
Jaswinder Singh Rajput2bc13792009-01-11 20:34:47 +053054#include <asm/smp.h>
Andi Kleenbe71b852009-02-12 13:49:38 +010055#include <asm/mce.h>
Kerstin Jonsson8c3ba8d2010-05-24 12:13:15 -070056#include <asm/tsc.h>
Sheng Yang2904ed82010-12-21 14:18:48 +080057#include <asm/hypervisor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Brian Gerstec70de82009-01-27 12:56:47 +090059unsigned int num_processors;
Ingo Molnarfdbecd92009-01-31 03:57:12 +010060
Brian Gerstec70de82009-01-27 12:56:47 +090061unsigned disabled_cpus __cpuinitdata;
Ingo Molnarfdbecd92009-01-31 03:57:12 +010062
Brian Gerstec70de82009-01-27 12:56:47 +090063/* Processor that is doing the boot up */
64unsigned int boot_cpu_physical_apicid = -1U;
Glauber Costa5af55732008-03-25 13:28:56 -030065
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070066/*
Ingo Molnarfdbecd92009-01-31 03:57:12 +010067 * The highest APIC ID seen during enumeration.
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070068 */
Brian Gerstec70de82009-01-27 12:56:47 +090069unsigned int max_physical_apicid;
70
Ingo Molnarfdbecd92009-01-31 03:57:12 +010071/*
72 * Bitmask of physically existing CPUs:
73 */
Brian Gerstec70de82009-01-27 12:56:47 +090074physid_mask_t phys_cpu_present_map;
75
76/*
77 * Map cpu index to physical APIC ID
78 */
Vlad Zolotarov0816b0f2012-06-11 12:56:52 +030079DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_cpu_to_apicid, BAD_APICID);
80DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_bios_cpu_apicid, BAD_APICID);
Brian Gerstec70de82009-01-27 12:56:47 +090081EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
82EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070083
Yinghai Lub3c51172008-08-24 02:01:46 -070084#ifdef CONFIG_X86_32
Tejun Heo4c321ff2011-01-23 14:37:30 +010085
Tejun Heo4c321ff2011-01-23 14:37:30 +010086/*
87 * On x86_32, the mapping between cpu and logical apicid may vary
88 * depending on apic in use. The following early percpu variable is
89 * used for the mapping. This is where the behaviors of x86_64 and 32
90 * actually diverge. Let's keep it ugly for now.
91 */
Vlad Zolotarov0816b0f2012-06-11 12:56:52 +030092DEFINE_EARLY_PER_CPU_READ_MOSTLY(int, x86_cpu_to_logical_apicid, BAD_APICID);
Tejun Heo4c321ff2011-01-23 14:37:30 +010093
Yinghai Luf28c0ae2008-08-24 02:01:49 -070094/* Local APIC was disabled by the BIOS and enabled by the kernel */
95static int enabled_via_apicbase;
96
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +040097/*
98 * Handle interrupt mode configuration register (IMCR).
99 * This register controls whether the interrupt signals
100 * that reach the BSP come from the master PIC or from the
101 * local APIC. Before entering Symmetric I/O Mode, either
102 * the BIOS or the operating system must switch out of
103 * PIC Mode by changing the IMCR.
104 */
Alexander van Heukelum5cda3952009-04-13 17:39:24 +0200105static inline void imcr_pic_to_apic(void)
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +0400106{
107 /* select IMCR register */
108 outb(0x70, 0x22);
109 /* NMI and 8259 INTR go through APIC */
110 outb(0x01, 0x23);
111}
112
Alexander van Heukelum5cda3952009-04-13 17:39:24 +0200113static inline void imcr_apic_to_pic(void)
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +0400114{
115 /* select IMCR register */
116 outb(0x70, 0x22);
117 /* NMI and 8259 INTR go directly to BSP */
118 outb(0x00, 0x23);
119}
Yinghai Lub3c51172008-08-24 02:01:46 -0700120#endif
121
Suresh Siddha279f1462012-10-22 14:37:58 -0700122/*
123 * Knob to control our willingness to enable the local APIC.
124 *
125 * +1=force-enable
126 */
127static int force_enable_local_apic __initdata;
128/*
129 * APIC command line parameters
130 */
131static int __init parse_lapic(char *arg)
132{
133 if (config_enabled(CONFIG_X86_32) && !arg)
134 force_enable_local_apic = 1;
Mathias Krause27cf9292013-02-19 20:47:07 +0100135 else if (arg && !strncmp(arg, "notscdeadline", 13))
Suresh Siddha279f1462012-10-22 14:37:58 -0700136 setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER);
137 return 0;
138}
139early_param("lapic", parse_lapic);
140
Yinghai Lub3c51172008-08-24 02:01:46 -0700141#ifdef CONFIG_X86_64
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200142static int apic_calibrate_pmtmr __initdata;
Yinghai Lub3c51172008-08-24 02:01:46 -0700143static __init int setup_apicpmtimer(char *s)
144{
145 apic_calibrate_pmtmr = 1;
146 notsc_setup(NULL);
147 return 0;
148}
149__setup("apicpmtimer", setup_apicpmtimer);
150#endif
151
Suresh Siddhafc1edaf2009-04-20 13:02:27 -0700152int x2apic_mode;
Yinghai Lu06cd9a72009-02-16 17:29:58 -0800153#ifdef CONFIG_X86_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700154/* x2apic enabled before OS handover */
Yinghai Lufb209bd2011-12-21 17:45:17 -0800155int x2apic_preenabled;
156static int x2apic_disabled;
Yinghai Lua31bc322011-12-23 11:01:43 -0800157static int nox2apic;
Yinghai Lu49899ea2008-08-24 02:01:47 -0700158static __init int setup_nox2apic(char *str)
159{
Suresh Siddha39d83a52009-04-20 13:02:29 -0700160 if (x2apic_enabled()) {
Yinghai Lua31bc322011-12-23 11:01:43 -0800161 int apicid = native_apic_msr_read(APIC_ID);
Suresh Siddha39d83a52009-04-20 13:02:29 -0700162
Yinghai Lua31bc322011-12-23 11:01:43 -0800163 if (apicid >= 255) {
164 pr_warning("Apicid: %08x, cannot enforce nox2apic\n",
165 apicid);
166 return 0;
167 }
168
169 pr_warning("x2apic already enabled. will disable it\n");
170 } else
171 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
172
173 nox2apic = 1;
174
Yinghai Lu49899ea2008-08-24 02:01:47 -0700175 return 0;
176}
177early_param("nox2apic", setup_nox2apic);
178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Yinghai Lub3c51172008-08-24 02:01:46 -0700180unsigned long mp_lapic_addr;
181int disable_apic;
182/* Disable local APIC timer from the kernel commandline or via dmi quirk */
Henrik Kretzschmar25874a22011-03-11 08:02:36 +0100183static int disable_apic_timer __initdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100184/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -0700185int local_apic_timer_c2_ok;
186EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
187
Yinghai Luefa25592008-08-19 20:50:36 -0700188int first_system_vector = 0xfe;
189
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100190/*
191 * Debug level, exported for io_apic.c
192 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100193unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100194
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700195int pic_mode;
196
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400197/* Have we found an MP table */
198int smp_found_config;
199
Aaron Durbin39928722006-12-07 02:14:01 +0100200static struct resource lapic_resource = {
201 .name = "Local APIC",
202 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
203};
204
Jacob Pan1ade93e2011-11-10 13:42:40 +0000205unsigned int lapic_timer_frequency = 0;
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200206
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100207static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200208
Andi Kleend3432892008-01-30 13:33:17 +0100209static unsigned long apic_phys;
210
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100211/*
212 * Get the LAPIC version
213 */
214static inline int lapic_get_version(void)
215{
216 return GET_APIC_VERSION(apic_read(APIC_LVR));
217}
218
219/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400220 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100221 */
222static inline int lapic_is_integrated(void)
223{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400224#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100225 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400226#else
227 return APIC_INTEGRATED(lapic_get_version());
228#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100229}
230
231/*
232 * Check, whether this is a modern or a first generation APIC
233 */
234static int modern_apic(void)
235{
236 /* AMD systems use old APIC versions, so check the CPU */
237 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
238 boot_cpu_data.x86 >= 0xf)
239 return 1;
240 return lapic_get_version() >= 0x14;
241}
242
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400243/*
Cyrill Gorcunova933c612009-10-14 00:07:04 +0400244 * right after this call apic become NOOP driven
245 * so apic->write/read doesn't do anything
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400246 */
Henrik Kretzschmar25874a22011-03-11 08:02:36 +0100247static void __init apic_disable(void)
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400248{
Cyrill Gorcunovf88f2b42009-10-15 19:04:16 +0400249 pr_info("APIC: switched to apic NOOP\n");
Cyrill Gorcunova933c612009-10-14 00:07:04 +0400250 apic = &apic_noop;
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400251}
252
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800253void native_apic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100254{
255 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
256 cpu_relax();
257}
258
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800259u32 native_safe_apic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100260{
261 u32 send_status;
262 int timeout;
263
264 timeout = 0;
265 do {
266 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
267 if (!send_status)
268 break;
Fernando Luis Vazquez Caob49d7d82011-12-15 11:32:24 +0900269 inc_irq_stat(icr_read_retry_count);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100270 udelay(100);
271 } while (timeout++ < 1000);
272
273 return send_status;
274}
275
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800276void native_apic_icr_write(u32 low, u32 id)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700277{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200278 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700279 apic_write(APIC_ICR, low);
280}
281
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800282u64 native_apic_icr_read(void)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700283{
284 u32 icr1, icr2;
285
286 icr2 = apic_read(APIC_ICR2);
287 icr1 = apic_read(APIC_ICR);
288
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400289 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700290}
291
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700292#ifdef CONFIG_X86_32
293/**
294 * get_physical_broadcast - Get number of physical broadcast IDs
295 */
296int get_physical_broadcast(void)
297{
298 return modern_apic() ? 0xff : 0xf;
299}
300#endif
301
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100302/**
303 * lapic_get_maxlvt - get the maximum number of local vector table entries
304 */
305int lapic_get_maxlvt(void)
306{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200307 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100308
309 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200310 /*
311 * - we always have APIC integrated on 64bit mode
312 * - 82489DXs do not report # of LVT entries
313 */
314 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100315}
316
317/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400318 * Local APIC timer
319 */
320
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400321/* Clock divisor */
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400322#define APIC_DIVISOR 16
Suresh Siddha279f1462012-10-22 14:37:58 -0700323#define TSC_DIVISOR 32
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200324
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100325/*
326 * This function sets up the local APIC timer, with a timeout of
327 * 'clocks' APIC bus clock. During calibration we actually call
328 * this function twice on the boot CPU, once with a bogus timeout
329 * value, second time for real. The other (noncalibrating) CPUs
330 * call this function only once, with the real, calibrated value.
331 *
332 * We do reads before writes even if unnecessary, to get around the
333 * P5 APIC double write bug.
334 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100335static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
336{
337 unsigned int lvtt_value, tmp_value;
338
339 lvtt_value = LOCAL_TIMER_VECTOR;
340 if (!oneshot)
341 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Suresh Siddha279f1462012-10-22 14:37:58 -0700342 else if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
343 lvtt_value |= APIC_LVT_TIMER_TSCDEADLINE;
344
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200345 if (!lapic_is_integrated())
346 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
347
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100348 if (!irqen)
349 lvtt_value |= APIC_LVT_MASKED;
350
351 apic_write(APIC_LVTT, lvtt_value);
352
Suresh Siddha279f1462012-10-22 14:37:58 -0700353 if (lvtt_value & APIC_LVT_TIMER_TSCDEADLINE) {
354 printk_once(KERN_DEBUG "TSC deadline timer enabled\n");
355 return;
356 }
357
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100358 /*
359 * Divide PICLK by 16
360 */
361 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400362 apic_write(APIC_TDCR,
363 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
364 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100365
366 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200367 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100368}
369
370/*
Robert Richtera68c4392010-10-06 12:27:53 +0200371 * Setup extended LVT, AMD specific
Robert Richter7b83dae2008-01-30 13:30:40 +0100372 *
Robert Richtera68c4392010-10-06 12:27:53 +0200373 * Software should use the LVT offsets the BIOS provides. The offsets
374 * are determined by the subsystems using it like those for MCE
375 * threshold or IBS. On K8 only offset 0 (APIC500) and MCE interrupts
376 * are supported. Beginning with family 10h at least 4 offsets are
377 * available.
Robert Richter286f5712008-07-22 21:08:46 +0200378 *
Robert Richtera68c4392010-10-06 12:27:53 +0200379 * Since the offsets must be consistent for all cores, we keep track
380 * of the LVT offsets in software and reserve the offset for the same
381 * vector also to be used on other cores. An offset is freed by
382 * setting the entry to APIC_EILVT_MASKED.
383 *
384 * If the BIOS is right, there should be no conflicts. Otherwise a
385 * "[Firmware Bug]: ..." error message is generated. However, if
386 * software does not properly determines the offsets, it is not
387 * necessarily a BIOS bug.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100388 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100389
Robert Richtera68c4392010-10-06 12:27:53 +0200390static atomic_t eilvt_offsets[APIC_EILVT_NR_MAX];
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100391
Robert Richtera68c4392010-10-06 12:27:53 +0200392static inline int eilvt_entry_is_changeable(unsigned int old, unsigned int new)
393{
394 return (old & APIC_EILVT_MASKED)
395 || (new == APIC_EILVT_MASKED)
396 || ((new & ~APIC_EILVT_MASKED) == old);
397}
398
399static unsigned int reserve_eilvt_offset(int offset, unsigned int new)
400{
Robert Richter8abc3122012-03-27 20:04:02 +0200401 unsigned int rsvd, vector;
Robert Richtera68c4392010-10-06 12:27:53 +0200402
403 if (offset >= APIC_EILVT_NR_MAX)
404 return ~0;
405
Robert Richter8abc3122012-03-27 20:04:02 +0200406 rsvd = atomic_read(&eilvt_offsets[offset]);
Robert Richtera68c4392010-10-06 12:27:53 +0200407 do {
Robert Richter8abc3122012-03-27 20:04:02 +0200408 vector = rsvd & ~APIC_EILVT_MASKED; /* 0: unassigned */
409 if (vector && !eilvt_entry_is_changeable(vector, new))
Robert Richtera68c4392010-10-06 12:27:53 +0200410 /* may not change if vectors are different */
411 return rsvd;
412 rsvd = atomic_cmpxchg(&eilvt_offsets[offset], rsvd, new);
413 } while (rsvd != new);
414
Robert Richter8abc3122012-03-27 20:04:02 +0200415 rsvd &= ~APIC_EILVT_MASKED;
416 if (rsvd && rsvd != vector)
417 pr_info("LVT offset %d assigned for vector 0x%02x\n",
418 offset, rsvd);
419
Robert Richtera68c4392010-10-06 12:27:53 +0200420 return new;
421}
422
423/*
424 * If mask=1, the LVT entry does not generate interrupts while mask=0
Robert Richtercbf74ce2011-05-30 16:31:11 +0200425 * enables the vector. See also the BKDGs. Must be called with
426 * preemption disabled.
Robert Richtera68c4392010-10-06 12:27:53 +0200427 */
428
Robert Richter27afdf22010-10-06 12:27:54 +0200429int setup_APIC_eilvt(u8 offset, u8 vector, u8 msg_type, u8 mask)
Robert Richtera68c4392010-10-06 12:27:53 +0200430{
431 unsigned long reg = APIC_EILVTn(offset);
432 unsigned int new, old, reserved;
433
434 new = (mask << 16) | (msg_type << 8) | vector;
435 old = apic_read(reg);
436 reserved = reserve_eilvt_offset(offset, new);
437
438 if (reserved != new) {
Robert Richtereb48c9c2010-10-25 16:03:39 +0200439 pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
440 "vector 0x%x, but the register is already in use for "
441 "vector 0x%x on another cpu\n",
442 smp_processor_id(), reg, offset, new, reserved);
Robert Richtera68c4392010-10-06 12:27:53 +0200443 return -EINVAL;
444 }
445
446 if (!eilvt_entry_is_changeable(old, new)) {
Robert Richtereb48c9c2010-10-25 16:03:39 +0200447 pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
448 "vector 0x%x, but the register is already in use for "
449 "vector 0x%x on this cpu\n",
450 smp_processor_id(), reg, offset, new, old);
Robert Richtera68c4392010-10-06 12:27:53 +0200451 return -EBUSY;
452 }
453
454 apic_write(reg, new);
455
456 return 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100457}
Robert Richter27afdf22010-10-06 12:27:54 +0200458EXPORT_SYMBOL_GPL(setup_APIC_eilvt);
Robert Richter7b83dae2008-01-30 13:30:40 +0100459
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100460/*
461 * Program the next event, relative to now
462 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200463static int lapic_next_event(unsigned long delta,
464 struct clock_event_device *evt)
465{
466 apic_write(APIC_TMICT, delta);
467 return 0;
468}
469
Suresh Siddha279f1462012-10-22 14:37:58 -0700470static int lapic_next_deadline(unsigned long delta,
471 struct clock_event_device *evt)
472{
473 u64 tsc;
474
475 rdtscll(tsc);
476 wrmsrl(MSR_IA32_TSC_DEADLINE, tsc + (((u64) delta) * TSC_DIVISOR));
477 return 0;
478}
479
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100480/*
481 * Setup the lapic timer in periodic or oneshot mode
482 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200483static void lapic_timer_setup(enum clock_event_mode mode,
484 struct clock_event_device *evt)
485{
486 unsigned long flags;
487 unsigned int v;
488
489 /* Lapic used as dummy for broadcast ? */
490 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
491 return;
492
493 local_irq_save(flags);
494
495 switch (mode) {
496 case CLOCK_EVT_MODE_PERIODIC:
497 case CLOCK_EVT_MODE_ONESHOT:
Jacob Pan1ade93e2011-11-10 13:42:40 +0000498 __setup_APIC_LVTT(lapic_timer_frequency,
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200499 mode != CLOCK_EVT_MODE_PERIODIC, 1);
500 break;
501 case CLOCK_EVT_MODE_UNUSED:
502 case CLOCK_EVT_MODE_SHUTDOWN:
503 v = apic_read(APIC_LVTT);
504 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
505 apic_write(APIC_LVTT, v);
Andreas Herrmann6f9b4102009-10-27 11:01:38 +0100506 apic_write(APIC_TMICT, 0);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200507 break;
508 case CLOCK_EVT_MODE_RESUME:
509 /* Nothing to do here */
510 break;
511 }
512
513 local_irq_restore(flags);
514}
515
516/*
517 * Local APIC timer broadcast function
518 */
Mike Travis96289372008-12-31 18:08:46 -0800519static void lapic_timer_broadcast(const struct cpumask *mask)
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200520{
521#ifdef CONFIG_SMP
Ingo Molnardac5f412009-01-28 15:42:24 +0100522 apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200523#endif
524}
525
Henrik Kretzschmar25874a22011-03-11 08:02:36 +0100526
527/*
528 * The local apic timer can be used for any function which is CPU local.
529 */
530static struct clock_event_device lapic_clockevent = {
531 .name = "lapic",
532 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
533 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
534 .shift = 32,
535 .set_mode = lapic_timer_setup,
536 .set_next_event = lapic_next_event,
537 .broadcast = lapic_timer_broadcast,
538 .rating = 100,
539 .irq = -1,
540};
541static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
542
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100543/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200544 * Setup the local APIC timer for this CPU. Copy the initialized values
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100545 * of the boot CPU and register the clock event in the framework.
546 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700547static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200548{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100549 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
550
Christoph Lameter349c0042011-03-12 12:50:10 +0100551 if (this_cpu_has(X86_FEATURE_ARAT)) {
Venkatesh Pallipadidb954b52009-04-06 18:51:29 -0700552 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
553 /* Make LAPIC timer preferrable over percpu HPET */
554 lapic_clockevent.rating = 150;
555 }
556
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100557 memcpy(levt, &lapic_clockevent, sizeof(*levt));
Rusty Russell320ab2b2008-12-13 21:20:26 +1030558 levt->cpumask = cpumask_of(smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100559
Suresh Siddha279f1462012-10-22 14:37:58 -0700560 if (this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
561 levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC |
562 CLOCK_EVT_FEAT_DUMMY);
563 levt->set_next_event = lapic_next_deadline;
564 clockevents_config_and_register(levt,
565 (tsc_khz / TSC_DIVISOR) * 1000,
566 0xF, ~0UL);
567 } else
568 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200569}
570
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700571/*
572 * In this functions we calibrate APIC bus clocks to the external timer.
573 *
574 * We want to do the calibration only once since we want to have local timer
575 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
576 * frequency.
577 *
578 * This was previously done by reading the PIT/HPET and waiting for a wrap
579 * around to find out, that a tick has elapsed. I have a box, where the PIT
580 * readout is broken, so it never gets out of the wait loop again. This was
581 * also reported by others.
582 *
583 * Monitoring the jiffies value is inaccurate and the clockevents
584 * infrastructure allows us to do a simple substitution of the interrupt
585 * handler.
586 *
587 * The calibration routine also uses the pm_timer when possible, as the PIT
588 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
589 * back to normal later in the boot process).
590 */
591
592#define LAPIC_CAL_LOOPS (HZ/10)
593
594static __initdata int lapic_cal_loops = -1;
595static __initdata long lapic_cal_t1, lapic_cal_t2;
596static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
597static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
598static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
599
600/*
601 * Temporary interrupt handler.
602 */
603static void __init lapic_cal_handler(struct clock_event_device *dev)
604{
605 unsigned long long tsc = 0;
606 long tapic = apic_read(APIC_TMCCT);
607 unsigned long pm = acpi_pm_read_early();
608
609 if (cpu_has_tsc)
610 rdtscll(tsc);
611
612 switch (lapic_cal_loops++) {
613 case 0:
614 lapic_cal_t1 = tapic;
615 lapic_cal_tsc1 = tsc;
616 lapic_cal_pm1 = pm;
617 lapic_cal_j1 = jiffies;
618 break;
619
620 case LAPIC_CAL_LOOPS:
621 lapic_cal_t2 = tapic;
622 lapic_cal_tsc2 = tsc;
623 if (pm < lapic_cal_pm1)
624 pm += ACPI_PM_OVRRUN;
625 lapic_cal_pm2 = pm;
626 lapic_cal_j2 = jiffies;
627 break;
628 }
629}
630
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900631static int __init
632calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400633{
634 const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
635 const long pm_thresh = pm_100ms / 100;
636 unsigned long mult;
637 u64 res;
638
639#ifndef CONFIG_X86_PM_TIMER
640 return -1;
641#endif
642
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900643 apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400644
645 /* Check, if the PM timer is available */
646 if (!deltapm)
647 return -1;
648
649 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
650
651 if (deltapm > (pm_100ms - pm_thresh) &&
652 deltapm < (pm_100ms + pm_thresh)) {
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900653 apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900654 return 0;
655 }
656
657 res = (((u64)deltapm) * mult) >> 22;
658 do_div(res, 1000000);
659 pr_warning("APIC calibration not consistent "
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900660 "with PM-Timer: %ldms instead of 100ms\n",(long)res);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900661
662 /* Correct the lapic counter value */
663 res = (((u64)(*delta)) * pm_100ms);
664 do_div(res, deltapm);
665 pr_info("APIC delta adjusted to PM-Timer: "
666 "%lu (%ld)\n", (unsigned long)res, *delta);
667 *delta = (long)res;
668
669 /* Correct the tsc counter value */
670 if (cpu_has_tsc) {
671 res = (((u64)(*deltatsc)) * pm_100ms);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400672 do_div(res, deltapm);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900673 apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
Frans Pop3235dc32010-02-06 18:47:17 +0100674 "PM-Timer: %lu (%ld)\n",
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900675 (unsigned long)res, *deltatsc);
676 *deltatsc = (long)res;
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400677 }
678
679 return 0;
680}
681
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700682static int __init calibrate_APIC_clock(void)
683{
684 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700685 void (*real_handler)(struct clock_event_device *dev);
686 unsigned long deltaj;
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900687 long delta, deltatsc;
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700688 int pm_referenced = 0;
689
Jacob Pan1ade93e2011-11-10 13:42:40 +0000690 /**
691 * check if lapic timer has already been calibrated by platform
692 * specific routine, such as tsc calibration code. if so, we just fill
693 * in the clockevent structure and return.
694 */
695
Suresh Siddha279f1462012-10-22 14:37:58 -0700696 if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
697 return 0;
698 } else if (lapic_timer_frequency) {
Jacob Pan1ade93e2011-11-10 13:42:40 +0000699 apic_printk(APIC_VERBOSE, "lapic timer already calibrated %d\n",
700 lapic_timer_frequency);
701 lapic_clockevent.mult = div_sc(lapic_timer_frequency/APIC_DIVISOR,
702 TICK_NSEC, lapic_clockevent.shift);
703 lapic_clockevent.max_delta_ns =
704 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
705 lapic_clockevent.min_delta_ns =
706 clockevent_delta2ns(0xF, &lapic_clockevent);
707 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
708 return 0;
709 }
710
Suresh Siddha279f1462012-10-22 14:37:58 -0700711 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
712 "calibrating APIC timer ...\n");
713
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700714 local_irq_disable();
715
716 /* Replace the global interrupt handler */
717 real_handler = global_clock_event->event_handler;
718 global_clock_event->event_handler = lapic_cal_handler;
719
720 /*
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400721 * Setup the APIC counter to maximum. There is no way the lapic
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700722 * can underflow in the 100ms detection time frame
723 */
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400724 __setup_APIC_LVTT(0xffffffff, 0, 0);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700725
726 /* Let the interrupts run */
727 local_irq_enable();
728
729 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
730 cpu_relax();
731
732 local_irq_disable();
733
734 /* Restore the real event handler */
735 global_clock_event->event_handler = real_handler;
736
737 /* Build delta t1-t2 as apic timer counts down */
738 delta = lapic_cal_t1 - lapic_cal_t2;
739 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
740
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900741 deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
742
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400743 /* we trust the PM based calibration if possible */
744 pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900745 &delta, &deltatsc);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700746
747 /* Calculate the scaled math multiplication factor */
748 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
749 lapic_clockevent.shift);
750 lapic_clockevent.max_delta_ns =
Pierre Tardy4aed89d2011-01-06 16:23:29 +0100751 clockevent_delta2ns(0x7FFFFFFF, &lapic_clockevent);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700752 lapic_clockevent.min_delta_ns =
753 clockevent_delta2ns(0xF, &lapic_clockevent);
754
Jacob Pan1ade93e2011-11-10 13:42:40 +0000755 lapic_timer_frequency = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700756
757 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
Thomas Gleixner411462f2009-11-16 11:52:39 +0100758 apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700759 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
Jacob Pan1ade93e2011-11-10 13:42:40 +0000760 lapic_timer_frequency);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700761
762 if (cpu_has_tsc) {
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700763 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
764 "%ld.%04ld MHz.\n",
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900765 (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
766 (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700767 }
768
769 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
770 "%u.%04u MHz.\n",
Jacob Pan1ade93e2011-11-10 13:42:40 +0000771 lapic_timer_frequency / (1000000 / HZ),
772 lapic_timer_frequency % (1000000 / HZ));
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700773
774 /*
775 * Do a sanity check on the APIC calibration result
776 */
Jacob Pan1ade93e2011-11-10 13:42:40 +0000777 if (lapic_timer_frequency < (1000000 / HZ)) {
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700778 local_irq_enable();
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100779 pr_warning("APIC frequency too slow, disabling apic timer\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700780 return -1;
781 }
782
783 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
784
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400785 /*
786 * PM timer calibration failed or not turned on
787 * so lets try APIC timer based calibration
788 */
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700789 if (!pm_referenced) {
790 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
791
792 /*
793 * Setup the apic timer manually
794 */
795 levt->event_handler = lapic_cal_handler;
796 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
797 lapic_cal_loops = -1;
798
799 /* Let the interrupts run */
800 local_irq_enable();
801
802 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
803 cpu_relax();
804
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700805 /* Stop the lapic timer */
806 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
807
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700808 /* Jiffies delta */
809 deltaj = lapic_cal_j2 - lapic_cal_j1;
810 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
811
812 /* Check, if the jiffies result is consistent */
813 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
814 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
815 else
816 levt->features |= CLOCK_EVT_FEAT_DUMMY;
817 } else
818 local_irq_enable();
819
820 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +0530821 pr_warning("APIC timer disabled due to verification failure\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700822 return -1;
823 }
824
825 return 0;
826}
827
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100828/*
829 * Setup the boot APIC
830 *
831 * Calibrate and verify the result.
832 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100833void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100835 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400836 * The local apic timer can be disabled via the kernel
837 * commandline or from the CPU detection code. Register the lapic
838 * timer as a dummy clock event source on SMP systems, so the
839 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100840 */
841 if (disable_apic_timer) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100842 pr_info("Disabling APIC timer\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100843 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100844 if (num_possible_cpus() > 1) {
845 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100846 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100847 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100848 return;
849 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200850
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400851 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100852 /* No broadcast on UP ! */
853 if (num_possible_cpus() > 1)
854 setup_APIC_timer();
855 return;
856 }
857
858 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100859 * If nmi_watchdog is set to IO_APIC, we need the
860 * PIT/HPET going. Otherwise register lapic as a dummy
861 * device.
862 */
Don Zickus072b1982010-11-12 11:22:24 -0500863 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100864
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400865 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100866 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100869void __cpuinit setup_secondary_APIC_clock(void)
870{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100871 setup_APIC_timer();
872}
873
874/*
875 * The guts of the apic timer interrupt
876 */
877static void local_apic_timer_interrupt(void)
878{
879 int cpu = smp_processor_id();
880 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
881
882 /*
883 * Normally we should not be here till LAPIC has been initialized but
884 * in some cases like kdump, its possible that there is a pending LAPIC
885 * timer interrupt from previous kernel's context and is delivered in
886 * new kernel the moment interrupts are enabled.
887 *
888 * Interrupts are enabled early and LAPIC is setup much later, hence
889 * its possible that when we get here evt->event_handler is NULL.
890 * Check for event_handler being NULL and discard the interrupt as
891 * spurious.
892 */
893 if (!evt->event_handler) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100894 pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100895 /* Switch it off */
896 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
897 return;
898 }
899
900 /*
901 * the NMI deadlock-detector uses this.
902 */
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -0800903 inc_irq_stat(apic_timer_irqs);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100904
905 evt->event_handler(evt);
906}
907
908/*
909 * Local APIC timer interrupt. This is the most natural way for doing
910 * local interrupts, but local timer interrupts can be emulated by
911 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
912 *
913 * [ if a single-CPU system runs an SMP kernel then we call the local
914 * interrupt as well. Thus we cannot inline the local irq ... ]
915 */
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100916void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100917{
918 struct pt_regs *old_regs = set_irq_regs(regs);
919
920 /*
921 * NOTE! We'd better ACK the irq immediately,
922 * because timer handling can be slow.
Seiji Aguchieddc0e92013-06-20 11:45:17 -0400923 *
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100924 * update_process_times() expects us to have done irq_enter().
925 * Besides, if we don't timer interrupts ignore the global
926 * interrupt lock, which is the WrongThing (tm) to do.
927 */
Seiji Aguchieddc0e92013-06-20 11:45:17 -0400928 entering_ack_irq();
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100929 local_apic_timer_interrupt();
Seiji Aguchieddc0e92013-06-20 11:45:17 -0400930 exiting_irq();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400931
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100932 set_irq_regs(old_regs);
933}
934
Seiji Aguchicf910e82013-06-20 11:46:53 -0400935void __irq_entry smp_trace_apic_timer_interrupt(struct pt_regs *regs)
936{
937 struct pt_regs *old_regs = set_irq_regs(regs);
938
939 /*
940 * NOTE! We'd better ACK the irq immediately,
941 * because timer handling can be slow.
942 *
943 * update_process_times() expects us to have done irq_enter().
944 * Besides, if we don't timer interrupts ignore the global
945 * interrupt lock, which is the WrongThing (tm) to do.
946 */
947 entering_ack_irq();
948 trace_local_timer_entry(LOCAL_TIMER_VECTOR);
949 local_apic_timer_interrupt();
950 trace_local_timer_exit(LOCAL_TIMER_VECTOR);
951 exiting_irq();
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100952
953 set_irq_regs(old_regs);
954}
955
956int setup_profiling_timer(unsigned int multiplier)
957{
958 return -EINVAL;
959}
960
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100961/*
962 * Local APIC start and shutdown
963 */
964
965/**
966 * clear_local_APIC - shutdown the local APIC
967 *
968 * This is called, when a CPU is disabled and before rebooting, so the state of
969 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
970 * leftovers during boot.
971 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972void clear_local_APIC(void)
973{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400974 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100975 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Andi Kleend3432892008-01-30 13:33:17 +0100977 /* APIC hasn't been mapped yet */
Suresh Siddhafc1edaf2009-04-20 13:02:27 -0700978 if (!x2apic_mode && !apic_phys)
Andi Kleend3432892008-01-30 13:33:17 +0100979 return;
980
981 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200983 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 * if the vector is zero. Mask LVTERR first to prevent this.
985 */
986 if (maxlvt >= 3) {
987 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100988 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990 /*
991 * Careful: we have to set masks only first to deassert
992 * any level-triggered sources.
993 */
994 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100995 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100997 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100999 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (maxlvt >= 4) {
1001 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +01001002 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004
Cyrill Gorcunov67640142008-08-16 23:21:50 +04001005 /* lets not touch this if we didn't frob it */
Andi Kleen4efc0672009-04-28 19:07:31 +02001006#ifdef CONFIG_X86_THERMAL_VECTOR
Cyrill Gorcunov67640142008-08-16 23:21:50 +04001007 if (maxlvt >= 5) {
1008 v = apic_read(APIC_LVTTHMR);
1009 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
1010 }
1011#endif
Andi Kleen5ca86812009-02-12 13:49:37 +01001012#ifdef CONFIG_X86_MCE_INTEL
1013 if (maxlvt >= 6) {
1014 v = apic_read(APIC_LVTCMCI);
1015 if (!(v & APIC_LVT_MASKED))
1016 apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
1017 }
1018#endif
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /*
1021 * Clean APIC state for other OSs:
1022 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001023 apic_write(APIC_LVTT, APIC_LVT_MASKED);
1024 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1025 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +01001027 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +01001029 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +04001030
1031 /* Integrated APIC (!82489DX) ? */
1032 if (lapic_is_integrated()) {
1033 if (maxlvt > 3)
1034 /* Clear ESR due to Pentium errata 3AP and 11AP */
1035 apic_write(APIC_ESR, 0);
1036 apic_read(APIC_ESR);
1037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001040/**
1041 * disable_local_APIC - clear and disable the local APIC
1042 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043void disable_local_APIC(void)
1044{
1045 unsigned int value;
1046
Jan Beulich4a13ad02009-01-14 12:28:51 +00001047 /* APIC hasn't been mapped yet */
Yinghai Lufd19dce2010-07-15 00:00:59 -07001048 if (!x2apic_mode && !apic_phys)
Jan Beulich4a13ad02009-01-14 12:28:51 +00001049 return;
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 clear_local_APIC();
1052
1053 /*
1054 * Disable APIC (implies clearing of registers
1055 * for 82489DX!).
1056 */
1057 value = apic_read(APIC_SPIV);
1058 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +01001059 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +04001060
1061#ifdef CONFIG_X86_32
1062 /*
1063 * When LAPIC was disabled by the BIOS and enabled by the kernel,
1064 * restore the disabled state.
1065 */
1066 if (enabled_via_apicbase) {
1067 unsigned int l, h;
1068
1069 rdmsr(MSR_IA32_APICBASE, l, h);
1070 l &= ~MSR_IA32_APICBASE_ENABLE;
1071 wrmsr(MSR_IA32_APICBASE, l, h);
1072 }
1073#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +04001076/*
1077 * If Linux enabled the LAPIC against the BIOS default disable it down before
1078 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
1079 * not power-off. Additionally clear all LVT entries before disable_local_APIC
1080 * for the case where Linux didn't enable the LAPIC.
1081 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -07001082void lapic_shutdown(void)
1083{
1084 unsigned long flags;
1085
Cyrill Gorcunov83121362009-09-15 11:12:30 +04001086 if (!cpu_has_apic && !apic_from_smp_config())
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -07001087 return;
1088
1089 local_irq_save(flags);
1090
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +04001091#ifdef CONFIG_X86_32
1092 if (!enabled_via_apicbase)
1093 clear_local_APIC();
1094 else
1095#endif
1096 disable_local_APIC();
1097
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -07001098
1099 local_irq_restore(flags);
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/*
1103 * This is to verify that we're looking at a real local APIC.
1104 * Check these against your board if the CPUs aren't getting
1105 * started for no apparent reason.
1106 */
1107int __init verify_local_APIC(void)
1108{
1109 unsigned int reg0, reg1;
1110
1111 /*
1112 * The version register is read-only in a real APIC.
1113 */
1114 reg0 = apic_read(APIC_LVR);
1115 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
1116 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
1117 reg1 = apic_read(APIC_LVR);
1118 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
1119
1120 /*
1121 * The two version reads above should print the same
1122 * numbers. If the second one is different, then we
1123 * poke at a non-APIC.
1124 */
1125 if (reg1 != reg0)
1126 return 0;
1127
1128 /*
1129 * Check if the version looks reasonably.
1130 */
1131 reg1 = GET_APIC_VERSION(reg0);
1132 if (reg1 == 0x00 || reg1 == 0xff)
1133 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001134 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (reg1 < 0x02 || reg1 == 0xff)
1136 return 0;
1137
1138 /*
1139 * The ID register is read/write in a real APIC.
1140 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001141 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +01001143 apic_write(APIC_ID, reg0 ^ apic->apic_id_mask);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001144 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
1146 apic_write(APIC_ID, reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +01001147 if (reg1 != (reg0 ^ apic->apic_id_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return 0;
1149
1150 /*
1151 * The next two are just to see if we have sane values.
1152 * They're only really relevant if we're in Virtual Wire
1153 * compatibility mode, but most boxes are anymore.
1154 */
1155 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001156 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 reg1 = apic_read(APIC_LVT1);
1158 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
1159
1160 return 1;
1161}
1162
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001163/**
1164 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1165 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166void __init sync_Arb_IDs(void)
1167{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +02001168 /*
1169 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1170 * needed on AMD.
1171 */
1172 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return;
1174
1175 /*
1176 * Wait for idle.
1177 */
1178 apic_wait_icr_idle();
1179
1180 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +04001181 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1182 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185/*
1186 * An initial setup of the virtual wire mode.
1187 */
1188void __init init_bsp_APIC(void)
1189{
Andi Kleen11a8e772006-01-11 22:46:51 +01001190 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 /*
1193 * Don't do the setup now if we have a SMP BIOS as the
1194 * through-I/O-APIC virtual wire mode might be active.
1195 */
1196 if (smp_found_config || !cpu_has_apic)
1197 return;
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /*
1200 * Do not trust the local APIC being empty at bootup.
1201 */
1202 clear_local_APIC();
1203
1204 /*
1205 * Enable APIC.
1206 */
1207 value = apic_read(APIC_SPIV);
1208 value &= ~APIC_VECTOR_MASK;
1209 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001210
1211#ifdef CONFIG_X86_32
1212 /* This bit is reserved on P4/Xeon and should be cleared */
1213 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1214 (boot_cpu_data.x86 == 15))
1215 value &= ~APIC_SPIV_FOCUS_DISABLED;
1216 else
1217#endif
1218 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001220 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /*
1223 * Set up the virtual wire mode.
1224 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001225 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001227 if (!lapic_is_integrated()) /* 82489DX */
1228 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001229 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001232static void __cpuinit lapic_setup_esr(void)
1233{
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001234 unsigned int oldvalue, value, maxlvt;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001235
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001236 if (!lapic_is_integrated()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001237 pr_info("No ESR for 82489DX.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001238 return;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001239 }
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001240
Ingo Molnar08125d32009-01-28 05:08:44 +01001241 if (apic->disable_esr) {
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001242 /*
1243 * Something untraceable is creating bad interrupts on
1244 * secondary quads ... for the moment, just leave the
1245 * ESR disabled - we can't do anything useful with the
1246 * errors anyway - mbligh
1247 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001248 pr_info("Leaving ESR disabled.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001249 return;
1250 }
1251
1252 maxlvt = lapic_get_maxlvt();
1253 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1254 apic_write(APIC_ESR, 0);
1255 oldvalue = apic_read(APIC_ESR);
1256
1257 /* enables sending errors */
1258 value = ERROR_APIC_VECTOR;
1259 apic_write(APIC_LVTERR, value);
1260
1261 /*
1262 * spec says clear errors after enabling vector.
1263 */
1264 if (maxlvt > 3)
1265 apic_write(APIC_ESR, 0);
1266 value = apic_read(APIC_ESR);
1267 if (value != oldvalue)
1268 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1269 "vector: 0x%08x after: 0x%08x\n",
1270 oldvalue, value);
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001271}
1272
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001273/**
1274 * setup_local_APIC - setup the local APIC
Tejun Heo0aa002f2010-12-09 11:47:21 +01001275 *
1276 * Used to setup local APIC while initializing BSP or bringin up APs.
1277 * Always called with preemption disabled.
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001278 */
1279void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Tejun Heo0aa002f2010-12-09 11:47:21 +01001281 int cpu = smp_processor_id();
Kerstin Jonsson8c3ba8d2010-05-24 12:13:15 -07001282 unsigned int value, queued;
1283 int i, j, acked = 0;
1284 unsigned long long tsc = 0, ntsc;
1285 long long max_loops = cpu_khz;
1286
1287 if (cpu_has_tsc)
1288 rdtscll(tsc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Jan Beulichf1182632009-01-14 12:27:35 +00001290 if (disable_apic) {
Henrik Kretzschmar7167d082011-02-22 15:38:05 +01001291 disable_ioapic_support();
Jan Beulichf1182632009-01-14 12:27:35 +00001292 return;
1293 }
1294
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001295#ifdef CONFIG_X86_32
1296 /* Pound the ESR really hard over the head with a big hammer - mbligh */
Ingo Molnar08125d32009-01-28 05:08:44 +01001297 if (lapic_is_integrated() && apic->disable_esr) {
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001298 apic_write(APIC_ESR, 0);
1299 apic_write(APIC_ESR, 0);
1300 apic_write(APIC_ESR, 0);
1301 apic_write(APIC_ESR, 0);
1302 }
1303#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001304 perf_events_lapic_init();
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 /*
1307 * Double-check whether this APIC is really registered.
1308 * This is meaningless in clustered apic mode, so we skip it.
1309 */
Daniel Walkerc2777f92009-09-12 10:40:20 -07001310 BUG_ON(!apic->apic_id_registered());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 /*
1313 * Intel recommends to set DFR, LDR and TPR before enabling
1314 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1315 * document number 292116). So here it goes...
1316 */
Ingo Molnara5c43292009-01-28 06:50:47 +01001317 apic->init_apic_ldr();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Tejun Heo6f802c42011-01-23 14:37:31 +01001319#ifdef CONFIG_X86_32
1320 /*
Tejun Heoacb8bc02011-01-23 14:37:33 +01001321 * APIC LDR is initialized. If logical_apicid mapping was
1322 * initialized during get_smp_config(), make sure it matches the
1323 * actual value.
Tejun Heo6f802c42011-01-23 14:37:31 +01001324 */
Tejun Heoacb8bc02011-01-23 14:37:33 +01001325 i = early_per_cpu(x86_cpu_to_logical_apicid, cpu);
1326 WARN_ON(i != BAD_APICID && i != logical_smp_processor_id());
1327 /* always use the value from LDR */
Tejun Heo6f802c42011-01-23 14:37:31 +01001328 early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
1329 logical_smp_processor_id();
Tejun Heoc4b90c12011-05-02 14:18:52 +02001330
1331 /*
1332 * Some NUMA implementations (NUMAQ) don't initialize apicid to
1333 * node mapping during NUMA init. Now that logical apicid is
1334 * guaranteed to be known, give it another chance. This is already
1335 * a bit too late - percpu allocation has already happened without
1336 * proper NUMA affinity.
1337 */
Tejun Heo84914ed02011-05-02 14:18:52 +02001338 if (apic->x86_32_numa_cpu_node)
1339 set_apicid_to_node(early_per_cpu(x86_cpu_to_apicid, cpu),
1340 apic->x86_32_numa_cpu_node(cpu));
Tejun Heo6f802c42011-01-23 14:37:31 +01001341#endif
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 /*
1344 * Set Task Priority to 'accept all'. We never change this
1345 * later on.
1346 */
1347 value = apic_read(APIC_TASKPRI);
1348 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001349 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001352 * After a crash, we no longer service the interrupts and a pending
1353 * interrupt from previous kernel might still have ISR bit set.
1354 *
1355 * Most probably by now CPU has serviced that pending interrupt and
1356 * it might not have done the ack_APIC_irq() because it thought,
1357 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1358 * does not clear the ISR bit and cpu thinks it has already serivced
1359 * the interrupt. Hence a vector might get locked. It was noticed
1360 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1361 */
Kerstin Jonsson8c3ba8d2010-05-24 12:13:15 -07001362 do {
1363 queued = 0;
1364 for (i = APIC_ISR_NR - 1; i >= 0; i--)
1365 queued |= apic_read(APIC_IRR + i*0x10);
1366
1367 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1368 value = apic_read(APIC_ISR + i*0x10);
1369 for (j = 31; j >= 0; j--) {
1370 if (value & (1<<j)) {
1371 ack_APIC_irq();
1372 acked++;
1373 }
1374 }
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001375 }
Kerstin Jonsson8c3ba8d2010-05-24 12:13:15 -07001376 if (acked > 256) {
1377 printk(KERN_ERR "LAPIC pending interrupts after %d EOI\n",
1378 acked);
1379 break;
1380 }
Shai Fultheim42fa4252012-04-20 01:12:32 +03001381 if (queued) {
1382 if (cpu_has_tsc) {
1383 rdtscll(ntsc);
1384 max_loops = (cpu_khz << 10) - (ntsc - tsc);
1385 } else
1386 max_loops--;
1387 }
Kerstin Jonsson8c3ba8d2010-05-24 12:13:15 -07001388 } while (queued && max_loops > 0);
1389 WARN_ON(max_loops <= 0);
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001390
1391 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 * Now that we are all set up, enable the APIC
1393 */
1394 value = apic_read(APIC_SPIV);
1395 value &= ~APIC_VECTOR_MASK;
1396 /*
1397 * Enable APIC
1398 */
1399 value |= APIC_SPIV_APIC_ENABLED;
1400
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001401#ifdef CONFIG_X86_32
1402 /*
1403 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1404 * certain networking cards. If high frequency interrupts are
1405 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1406 * entry is masked/unmasked at a high rate as well then sooner or
1407 * later IOAPIC line gets 'stuck', no more interrupts are received
1408 * from the device. If focus CPU is disabled then the hang goes
1409 * away, oh well :-(
1410 *
1411 * [ This bug can be reproduced easily with a level-triggered
1412 * PCI Ne2000 networking cards and PII/PIII processors, dual
1413 * BX chipset. ]
1414 */
1415 /*
1416 * Actually disabling the focus CPU check just makes the hang less
1417 * frequent as it makes the interrupt distributon model be more
1418 * like LRU than MRU (the short-term load is more even across CPUs).
1419 * See also the comment in end_level_ioapic_irq(). --macro
1420 */
1421
1422 /*
1423 * - enable focus processor (bit==0)
1424 * - 64bit mode always use processor focus
1425 * so no need to set it
1426 */
1427 value &= ~APIC_SPIV_FOCUS_DISABLED;
1428#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /*
1431 * Set spurious IRQ vector
1432 */
1433 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001434 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 /*
1437 * Set up LVT0, LVT1:
1438 *
1439 * set up through-local-APIC on the BP's LINT0. This is not
1440 * strictly necessary in pure symmetric-IO mode, but sometimes
1441 * we delegate interrupts to the 8259A.
1442 */
1443 /*
1444 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1445 */
1446 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Tejun Heo0aa002f2010-12-09 11:47:21 +01001447 if (!cpu && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 value = APIC_DM_EXTINT;
Tejun Heo0aa002f2010-12-09 11:47:21 +01001449 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 } else {
1451 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Tejun Heo0aa002f2010-12-09 11:47:21 +01001452 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001454 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 /*
1457 * only the BP should see the LINT1 NMI signal, obviously.
1458 */
Tejun Heo0aa002f2010-12-09 11:47:21 +01001459 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 value = APIC_DM_NMI;
1461 else
1462 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001463 if (!lapic_is_integrated()) /* 82489DX */
1464 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001465 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001466
Andi Kleenbe71b852009-02-12 13:49:38 +01001467#ifdef CONFIG_X86_MCE_INTEL
1468 /* Recheck CMCI information after local APIC is up on CPU #0 */
Tejun Heo0aa002f2010-12-09 11:47:21 +01001469 if (!cpu)
Andi Kleenbe71b852009-02-12 13:49:38 +01001470 cmci_recheck();
1471#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001472}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Andi Kleen739f33b2008-01-30 13:30:40 +01001474void __cpuinit end_local_APIC_setup(void)
1475{
1476 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001477
1478#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001479 {
1480 unsigned int value;
1481 /* Disable the local apic timer */
1482 value = apic_read(APIC_LVTT);
1483 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1484 apic_write(APIC_LVTT, value);
1485 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001486#endif
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 apic_pm_activate();
Jan Beulich2fb270f2011-02-09 08:21:02 +00001489}
1490
1491void __init bsp_end_local_APIC_setup(void)
1492{
1493 end_local_APIC_setup();
Kenji Kaneshige7f7fbf42010-11-30 22:22:28 -08001494
1495 /*
1496 * Now that local APIC setup is completed for BP, configure the fault
1497 * handling for interrupt remapping.
1498 */
Joerg Roedel70733e02012-09-26 12:44:33 +02001499 irq_remap_enable_fault_handling();
Kenji Kaneshige7f7fbf42010-11-30 22:22:28 -08001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001503#ifdef CONFIG_X86_X2APIC
Yinghai Lufb209bd2011-12-21 17:45:17 -08001504/*
1505 * Need to disable xapic and x2apic at the same time and then enable xapic mode
1506 */
1507static inline void __disable_x2apic(u64 msr)
1508{
1509 wrmsrl(MSR_IA32_APICBASE,
1510 msr & ~(X2APIC_ENABLE | XAPIC_ENABLE));
1511 wrmsrl(MSR_IA32_APICBASE, msr & ~X2APIC_ENABLE);
1512}
1513
Yinghai Lua31bc322011-12-23 11:01:43 -08001514static __init void disable_x2apic(void)
Yinghai Lufb209bd2011-12-21 17:45:17 -08001515{
1516 u64 msr;
1517
1518 if (!cpu_has_x2apic)
1519 return;
1520
1521 rdmsrl(MSR_IA32_APICBASE, msr);
1522 if (msr & X2APIC_ENABLE) {
1523 u32 x2apic_id = read_apic_id();
1524
1525 if (x2apic_id >= 255)
1526 panic("Cannot disable x2apic, id: %08x\n", x2apic_id);
1527
1528 pr_info("Disabling x2apic\n");
1529 __disable_x2apic(msr);
1530
Yinghai Lua31bc322011-12-23 11:01:43 -08001531 if (nox2apic) {
1532 clear_cpu_cap(&cpu_data(0), X86_FEATURE_X2APIC);
1533 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
1534 }
1535
Yinghai Lufb209bd2011-12-21 17:45:17 -08001536 x2apic_disabled = 1;
1537 x2apic_mode = 0;
1538
1539 register_lapic_address(mp_lapic_addr);
1540 }
1541}
1542
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001543void check_x2apic(void)
1544{
Suresh Siddhaef1f87a2009-02-21 14:23:21 -08001545 if (x2apic_enabled()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001546 pr_info("x2apic enabled by BIOS, switching to x2apic ops\n");
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001547 x2apic_preenabled = x2apic_mode = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001548 }
1549}
1550
1551void enable_x2apic(void)
1552{
Yinghai Lufb209bd2011-12-21 17:45:17 -08001553 u64 msr;
1554
1555 rdmsrl(MSR_IA32_APICBASE, msr);
1556 if (x2apic_disabled) {
1557 __disable_x2apic(msr);
1558 return;
1559 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001560
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001561 if (!x2apic_mode)
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001562 return;
1563
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001564 if (!(msr & X2APIC_ENABLE)) {
Mike Travis450b1e82009-12-11 08:08:50 -08001565 printk_once(KERN_INFO "Enabling x2apic\n");
Yinghai Lufb209bd2011-12-21 17:45:17 -08001566 wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001567 }
1568}
Weidong Han93758232009-04-17 16:42:14 +08001569#endif /* CONFIG_X86_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001570
Gleb Natapovce69a782009-07-20 15:24:17 +03001571int __init enable_IR(void)
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001572{
Suresh Siddhad3f13812011-08-23 17:05:25 -07001573#ifdef CONFIG_IRQ_REMAP
Suresh Siddha95a02e92012-03-30 11:47:07 -07001574 if (!irq_remapping_supported()) {
Weidong Han93758232009-04-17 16:42:14 +08001575 pr_debug("intr-remapping not supported\n");
Suresh Siddha41750d32011-08-23 17:05:18 -07001576 return -1;
Weidong Han93758232009-04-17 16:42:14 +08001577 }
1578
Weidong Han93758232009-04-17 16:42:14 +08001579 if (!x2apic_preenabled && skip_ioapic_setup) {
1580 pr_info("Skipped enabling intr-remap because of skipping "
1581 "io-apic setup\n");
Suresh Siddha41750d32011-08-23 17:05:18 -07001582 return -1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001583 }
1584
Suresh Siddha95a02e92012-03-30 11:47:07 -07001585 return irq_remapping_enable();
Gleb Natapovce69a782009-07-20 15:24:17 +03001586#endif
Suresh Siddha41750d32011-08-23 17:05:18 -07001587 return -1;
Gleb Natapovce69a782009-07-20 15:24:17 +03001588}
1589
1590void __init enable_IR_x2apic(void)
1591{
1592 unsigned long flags;
Gleb Natapovce69a782009-07-20 15:24:17 +03001593 int ret, x2apic_enabled = 0;
Joerg Roedel736baef2012-03-30 11:47:00 -07001594 int hardware_init_ret;
Yinghai Lub7f42ab2009-08-17 11:19:40 -07001595
Joerg Roedel736baef2012-03-30 11:47:00 -07001596 /* Make sure irq_remap_ops are initialized */
Suresh Siddha95a02e92012-03-30 11:47:07 -07001597 setup_irq_remapping_ops();
Joerg Roedel736baef2012-03-30 11:47:00 -07001598
Suresh Siddha95a02e92012-03-30 11:47:07 -07001599 hardware_init_ret = irq_remapping_prepare();
Joerg Roedel736baef2012-03-30 11:47:00 -07001600 if (hardware_init_ret && !x2apic_supported())
Yinghai Lue6707612009-11-21 00:23:37 -08001601 return;
Gleb Natapovce69a782009-07-20 15:24:17 +03001602
Suresh Siddha31dce142011-05-18 16:31:33 -07001603 ret = save_ioapic_entries();
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001604 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001605 pr_info("Saving IO-APIC state failed: %d\n", ret);
Yinghai Lufb209bd2011-12-21 17:45:17 -08001606 return;
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001607 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001608
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001609 local_irq_save(flags);
Jacob Panb81bb372009-11-09 11:27:04 -08001610 legacy_pic->mask_all();
Suresh Siddha31dce142011-05-18 16:31:33 -07001611 mask_ioapic_entries();
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001612
Yinghai Lua31bc322011-12-23 11:01:43 -08001613 if (x2apic_preenabled && nox2apic)
1614 disable_x2apic();
1615
Joerg Roedel736baef2012-03-30 11:47:00 -07001616 if (hardware_init_ret)
Suresh Siddha41750d32011-08-23 17:05:18 -07001617 ret = -1;
Yinghai Lub7f42ab2009-08-17 11:19:40 -07001618 else
1619 ret = enable_IR();
1620
Yinghai Lufb209bd2011-12-21 17:45:17 -08001621 if (!x2apic_supported())
Yinghai Lua31bc322011-12-23 11:01:43 -08001622 goto skip_x2apic;
Yinghai Lufb209bd2011-12-21 17:45:17 -08001623
Suresh Siddha41750d32011-08-23 17:05:18 -07001624 if (ret < 0) {
Gleb Natapovce69a782009-07-20 15:24:17 +03001625 /* IR is required if there is APIC ID > 255 even when running
1626 * under KVM
1627 */
Sheng Yang2904ed82010-12-21 14:18:48 +08001628 if (max_physical_apicid > 255 ||
Yinghai Lufb209bd2011-12-21 17:45:17 -08001629 !hypervisor_x2apic_available()) {
1630 if (x2apic_preenabled)
1631 disable_x2apic();
Yinghai Lua31bc322011-12-23 11:01:43 -08001632 goto skip_x2apic;
Yinghai Lufb209bd2011-12-21 17:45:17 -08001633 }
Gleb Natapovce69a782009-07-20 15:24:17 +03001634 /*
1635 * without IR all CPUs can be addressed by IOAPIC/MSI
1636 * only in physical mode
1637 */
1638 x2apic_force_phys();
1639 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001640
Yinghai Lufb209bd2011-12-21 17:45:17 -08001641 if (ret == IRQ_REMAP_XAPIC_MODE) {
1642 pr_info("x2apic not enabled, IRQ remapping is in xapic mode\n");
Yinghai Lua31bc322011-12-23 11:01:43 -08001643 goto skip_x2apic;
Yinghai Lufb209bd2011-12-21 17:45:17 -08001644 }
Suresh Siddha41750d32011-08-23 17:05:18 -07001645
Gleb Natapovce69a782009-07-20 15:24:17 +03001646 x2apic_enabled = 1;
Weidong Han93758232009-04-17 16:42:14 +08001647
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001648 if (x2apic_supported() && !x2apic_mode) {
1649 x2apic_mode = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001650 enable_x2apic();
Weidong Han93758232009-04-17 16:42:14 +08001651 pr_info("Enabled x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001652 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001653
Yinghai Lua31bc322011-12-23 11:01:43 -08001654skip_x2apic:
Suresh Siddha41750d32011-08-23 17:05:18 -07001655 if (ret < 0) /* IR enabling failed */
Suresh Siddha31dce142011-05-18 16:31:33 -07001656 restore_ioapic_entries();
Jacob Panb81bb372009-11-09 11:27:04 -08001657 legacy_pic->restore_mask();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001658 local_irq_restore(flags);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001659}
Weidong Han93758232009-04-17 16:42:14 +08001660
Yinghai Lube7a6562008-08-24 02:01:51 -07001661#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001662/*
1663 * Detect and enable local APICs on non-SMP boards.
1664 * Original code written by Keir Fraser.
1665 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1666 * not correctly set up (usually the APIC timer won't work etc.)
1667 */
1668static int __init detect_init_APIC(void)
1669{
1670 if (!cpu_has_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001671 pr_info("No local APIC present\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001672 return -1;
1673 }
1674
1675 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001676 return 0;
1677}
Yinghai Lube7a6562008-08-24 02:01:51 -07001678#else
Thomas Gleixner5a7ae782010-10-19 10:46:28 -07001679
Henrik Kretzschmar25874a22011-03-11 08:02:36 +01001680static int __init apic_verify(void)
Thomas Gleixner5a7ae782010-10-19 10:46:28 -07001681{
1682 u32 features, h, l;
1683
1684 /*
1685 * The APIC feature bit should now be enabled
1686 * in `cpuid'
1687 */
1688 features = cpuid_edx(1);
1689 if (!(features & (1 << X86_FEATURE_APIC))) {
1690 pr_warning("Could not enable APIC!\n");
1691 return -1;
1692 }
1693 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1694 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1695
1696 /* The BIOS may have set up the APIC at some other address */
Bryan O'Donoghuecbf28292012-04-18 17:37:39 +01001697 if (boot_cpu_data.x86 >= 6) {
1698 rdmsr(MSR_IA32_APICBASE, l, h);
1699 if (l & MSR_IA32_APICBASE_ENABLE)
1700 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1701 }
Thomas Gleixner5a7ae782010-10-19 10:46:28 -07001702
1703 pr_info("Found and enabled local APIC!\n");
1704 return 0;
1705}
1706
Henrik Kretzschmar25874a22011-03-11 08:02:36 +01001707int __init apic_force_enable(unsigned long addr)
Thomas Gleixner5a7ae782010-10-19 10:46:28 -07001708{
1709 u32 h, l;
1710
1711 if (disable_apic)
1712 return -1;
1713
1714 /*
1715 * Some BIOSes disable the local APIC in the APIC_BASE
1716 * MSR. This can only be done in software for Intel P6 or later
1717 * and AMD K7 (Model > 1) or later.
1718 */
Bryan O'Donoghuecbf28292012-04-18 17:37:39 +01001719 if (boot_cpu_data.x86 >= 6) {
1720 rdmsr(MSR_IA32_APICBASE, l, h);
1721 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1722 pr_info("Local APIC disabled by BIOS -- reenabling.\n");
1723 l &= ~MSR_IA32_APICBASE_BASE;
1724 l |= MSR_IA32_APICBASE_ENABLE | addr;
1725 wrmsr(MSR_IA32_APICBASE, l, h);
1726 enabled_via_apicbase = 1;
1727 }
Thomas Gleixner5a7ae782010-10-19 10:46:28 -07001728 }
1729 return apic_verify();
1730}
1731
Yinghai Lube7a6562008-08-24 02:01:51 -07001732/*
1733 * Detect and initialize APIC
1734 */
1735static int __init detect_init_APIC(void)
1736{
Yinghai Lube7a6562008-08-24 02:01:51 -07001737 /* Disabled by kernel option? */
1738 if (disable_apic)
1739 return -1;
1740
1741 switch (boot_cpu_data.x86_vendor) {
1742 case X86_VENDOR_AMD:
1743 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
Borislav Petkov85877062009-02-03 16:24:22 +01001744 (boot_cpu_data.x86 >= 15))
Yinghai Lube7a6562008-08-24 02:01:51 -07001745 break;
1746 goto no_apic;
1747 case X86_VENDOR_INTEL:
1748 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1749 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1750 break;
1751 goto no_apic;
1752 default:
1753 goto no_apic;
1754 }
1755
1756 if (!cpu_has_apic) {
1757 /*
1758 * Over-ride BIOS and try to enable the local APIC only if
1759 * "lapic" specified.
1760 */
1761 if (!force_enable_local_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001762 pr_info("Local APIC disabled by BIOS -- "
1763 "you can enable it with \"lapic\"\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001764 return -1;
1765 }
Thomas Gleixnera906fda2011-02-25 16:09:31 +01001766 if (apic_force_enable(APIC_DEFAULT_PHYS_BASE))
Thomas Gleixner5a7ae782010-10-19 10:46:28 -07001767 return -1;
1768 } else {
1769 if (apic_verify())
1770 return -1;
Yinghai Lube7a6562008-08-24 02:01:51 -07001771 }
Yinghai Lube7a6562008-08-24 02:01:51 -07001772
1773 apic_pm_activate();
1774
1775 return 0;
1776
1777no_apic:
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001778 pr_info("No local APIC present or hardware disabled\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001779 return -1;
1780}
1781#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001782
1783/**
1784 * init_apic_mappings - initialize APIC mappings
1785 */
1786void __init init_apic_mappings(void)
1787{
Yinghai Lu4401da62009-05-02 10:40:57 -07001788 unsigned int new_apicid;
1789
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001790 if (x2apic_mode) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001791 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001792 return;
1793 }
1794
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001795 /* If no local APIC can be found return early */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001796 if (!smp_found_config && detect_init_APIC()) {
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001797 /* lets NOP'ify apic operations */
Cyrill Gorcunovcec6be62009-05-11 17:41:40 +04001798 pr_info("APIC: disable apic facility\n");
1799 apic_disable();
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001800 } else {
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001801 apic_phys = mp_lapic_addr;
1802
Yinghai Lu4797f6b2009-05-02 10:40:57 -07001803 /*
1804 * acpi lapic path already maps that address in
1805 * acpi_register_lapic_address()
1806 */
Eric W. Biederman5989cd62010-08-04 13:30:27 -07001807 if (!acpi_lapic && !smp_found_config)
Yinghai Lu326a2e62010-12-07 00:55:38 -08001808 register_lapic_address(apic_phys);
Cyrill Gorcunovcec6be62009-05-11 17:41:40 +04001809 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001810
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001811 /*
1812 * Fetch the APIC ID of the BSP in case we have a
1813 * default configuration (or the MP table is broken).
1814 */
Yinghai Lu4401da62009-05-02 10:40:57 -07001815 new_apicid = read_apic_id();
1816 if (boot_cpu_physical_apicid != new_apicid) {
1817 boot_cpu_physical_apicid = new_apicid;
Cyrill Gorcunov103428e2009-06-07 16:48:40 +04001818 /*
1819 * yeah -- we lie about apic_version
1820 * in case if apic was disabled via boot option
1821 * but it's not a problem for SMP compiled kernel
1822 * since smp_sanity_check is prepared for such a case
1823 * and disable smp mode
1824 */
Yinghai Lu4401da62009-05-02 10:40:57 -07001825 apic_version[new_apicid] =
1826 GET_APIC_VERSION(apic_read(APIC_LVR));
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +04001827 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001828}
1829
Yinghai Luc0104d32010-12-07 00:55:17 -08001830void __init register_lapic_address(unsigned long address)
1831{
1832 mp_lapic_addr = address;
1833
Yinghai Lu04501932010-12-07 00:55:56 -08001834 if (!x2apic_mode) {
1835 set_fixmap_nocache(FIX_APIC_BASE, address);
1836 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1837 APIC_BASE, mp_lapic_addr);
1838 }
Yinghai Luc0104d32010-12-07 00:55:17 -08001839 if (boot_cpu_physical_apicid == -1U) {
1840 boot_cpu_physical_apicid = read_apic_id();
1841 apic_version[boot_cpu_physical_apicid] =
1842 GET_APIC_VERSION(apic_read(APIC_LVR));
1843 }
1844}
1845
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001846/*
1847 * This initializes the IO-APIC and APIC hardware if this is
1848 * a UP kernel.
1849 */
Yinghai Lu56d91f12010-12-16 19:09:24 -08001850int apic_version[MAX_LOCAL_APIC];
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001851
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001852int __init APIC_init_uniprocessor(void)
1853{
1854 if (disable_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001855 pr_info("Apic disabled\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001856 return -1;
1857 }
Jan Beulichf1182632009-01-14 12:27:35 +00001858#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001859 if (!cpu_has_apic) {
1860 disable_apic = 1;
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001861 pr_info("Apic disabled by BIOS\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001862 return -1;
1863 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001864#else
1865 if (!smp_found_config && !cpu_has_apic)
1866 return -1;
1867
1868 /*
1869 * Complain if the BIOS pretends there is one.
1870 */
1871 if (!cpu_has_apic &&
1872 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001873 pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
1874 boot_cpu_physical_apicid);
Yinghai Lufa2bd352008-08-24 02:01:50 -07001875 return -1;
1876 }
1877#endif
1878
Ingo Molnar72ce0162009-01-28 06:50:47 +01001879 default_setup_apic_routing();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001880
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001881 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001882 connect_bsp_APIC();
1883
Yinghai Lufa2bd352008-08-24 02:01:50 -07001884#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001885 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001886#else
1887 /*
1888 * Hack: In case of kdump, after a crash, kernel might be booting
1889 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1890 * might be zero if read from MP tables. Get it from LAPIC.
1891 */
1892# ifdef CONFIG_CRASH_DUMP
1893 boot_cpu_physical_apicid = read_apic_id();
1894# endif
1895#endif
1896 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001897 setup_local_APIC();
1898
Yinghai Lu88d0f552009-02-14 23:57:28 -08001899#ifdef CONFIG_X86_IO_APIC
Andi Kleen739f33b2008-01-30 13:30:40 +01001900 /*
1901 * Now enable IO-APICs, actually call clear_IO_APIC
Yinghai Lu98c061b2009-02-16 00:00:50 -08001902 * We need clear_IO_APIC before enabling error vector
Andi Kleen739f33b2008-01-30 13:30:40 +01001903 */
1904 if (!skip_ioapic_setup && nr_ioapics)
1905 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001906#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001907
Jan Beulich2fb270f2011-02-09 08:21:02 +00001908 bsp_end_local_APIC_setup();
Andi Kleen739f33b2008-01-30 13:30:40 +01001909
Yinghai Lufa2bd352008-08-24 02:01:50 -07001910#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001911 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1912 setup_IO_APIC();
Yinghai Lu98c061b2009-02-16 00:00:50 -08001913 else {
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001914 nr_ioapics = 0;
Yinghai Lu98c061b2009-02-16 00:00:50 -08001915 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001916#endif
1917
Thomas Gleixner736deca2009-08-19 12:35:53 +02001918 x86_init.timers.setup_percpu_clockev();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001919 return 0;
1920}
1921
1922/*
1923 * Local APIC interrupts
1924 */
1925
1926/*
1927 * This interrupt should _never_ happen with our APIC/SMP architecture
1928 */
Seiji Aguchieddc0e92013-06-20 11:45:17 -04001929static inline void __smp_spurious_interrupt(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001930{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001931 u32 v;
1932
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001933 /*
1934 * Check if this really is a spurious interrupt and ACK it
1935 * if it is a vectored one. Just in case...
1936 * Spurious interrupts should not be ACKed.
1937 */
1938 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1939 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1940 ack_APIC_irq();
1941
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -08001942 inc_irq_stat(irq_spurious_count);
1943
Yinghai Ludc1528d2008-08-24 02:01:53 -07001944 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001945 pr_info("spurious APIC interrupt on CPU#%d, "
1946 "should never happen.\n", smp_processor_id());
Seiji Aguchieddc0e92013-06-20 11:45:17 -04001947}
1948
1949void smp_spurious_interrupt(struct pt_regs *regs)
1950{
1951 entering_irq();
1952 __smp_spurious_interrupt();
1953 exiting_irq();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001954}
1955
Seiji Aguchicf910e82013-06-20 11:46:53 -04001956void smp_trace_spurious_interrupt(struct pt_regs *regs)
1957{
1958 entering_irq();
1959 trace_spurious_apic_entry(SPURIOUS_APIC_VECTOR);
1960 __smp_spurious_interrupt();
1961 trace_spurious_apic_exit(SPURIOUS_APIC_VECTOR);
1962 exiting_irq();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001963}
1964
1965/*
1966 * This interrupt should never happen with our APIC/SMP architecture
1967 */
Seiji Aguchieddc0e92013-06-20 11:45:17 -04001968static inline void __smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001969{
Youquan Song2b398bd2011-04-14 14:36:08 +08001970 u32 v0, v1;
1971 u32 i = 0;
1972 static const char * const error_interrupt_reason[] = {
1973 "Send CS error", /* APIC Error Bit 0 */
1974 "Receive CS error", /* APIC Error Bit 1 */
1975 "Send accept error", /* APIC Error Bit 2 */
1976 "Receive accept error", /* APIC Error Bit 3 */
1977 "Redirectable IPI", /* APIC Error Bit 4 */
1978 "Send illegal vector", /* APIC Error Bit 5 */
1979 "Received illegal vector", /* APIC Error Bit 6 */
1980 "Illegal register address", /* APIC Error Bit 7 */
1981 };
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001982
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001983 /* First tickle the hardware, only then report what went on. -- REW */
Youquan Song2b398bd2011-04-14 14:36:08 +08001984 v0 = apic_read(APIC_ESR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001985 apic_write(APIC_ESR, 0);
1986 v1 = apic_read(APIC_ESR);
1987 ack_APIC_irq();
1988 atomic_inc(&irq_err_count);
1989
Youquan Song2b398bd2011-04-14 14:36:08 +08001990 apic_printk(APIC_DEBUG, KERN_DEBUG "APIC error on CPU%d: %02x(%02x)",
1991 smp_processor_id(), v0 , v1);
1992
1993 v1 = v1 & 0xff;
1994 while (v1) {
1995 if (v1 & 0x1)
1996 apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]);
1997 i++;
1998 v1 >>= 1;
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02001999 }
Youquan Song2b398bd2011-04-14 14:36:08 +08002000
2001 apic_printk(APIC_DEBUG, KERN_CONT "\n");
2002
Seiji Aguchieddc0e92013-06-20 11:45:17 -04002003}
2004
2005void smp_error_interrupt(struct pt_regs *regs)
2006{
2007 entering_irq();
2008 __smp_error_interrupt(regs);
2009 exiting_irq();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002010}
2011
Seiji Aguchicf910e82013-06-20 11:46:53 -04002012void smp_trace_error_interrupt(struct pt_regs *regs)
2013{
2014 entering_irq();
2015 trace_error_apic_entry(ERROR_APIC_VECTOR);
2016 __smp_error_interrupt(regs);
2017 trace_error_apic_exit(ERROR_APIC_VECTOR);
2018 exiting_irq();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002019}
2020
Glauber Costab5841762008-05-28 13:38:28 -03002021/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04002022 * connect_bsp_APIC - attach the APIC to the interrupt system
2023 */
Glauber Costab5841762008-05-28 13:38:28 -03002024void __init connect_bsp_APIC(void)
2025{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04002026#ifdef CONFIG_X86_32
2027 if (pic_mode) {
2028 /*
2029 * Do not trust the local APIC being empty at bootup.
2030 */
2031 clear_local_APIC();
2032 /*
2033 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
2034 * local APIC to INT and NMI lines.
2035 */
2036 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
2037 "enabling APIC mode.\n");
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +04002038 imcr_pic_to_apic();
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04002039 }
2040#endif
Ingo Molnar49040332009-01-28 12:43:18 +01002041 if (apic->enable_apic_mode)
2042 apic->enable_apic_mode();
Glauber Costab5841762008-05-28 13:38:28 -03002043}
2044
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002045/**
2046 * disconnect_bsp_APIC - detach the APIC from the interrupt system
2047 * @virt_wire_setup: indicates, whether virtual wire mode is selected
2048 *
2049 * Virtual wire mode is necessary to deliver legacy interrupts even when the
2050 * APIC is disabled.
2051 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002052void disconnect_bsp_APIC(int virt_wire_setup)
2053{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04002054 unsigned int value;
2055
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04002056#ifdef CONFIG_X86_32
2057 if (pic_mode) {
2058 /*
2059 * Put the board back into PIC mode (has an effect only on
2060 * certain older boards). Note that APIC interrupts, including
2061 * IPIs, won't work beyond this point! The only exception are
2062 * INIT IPIs.
2063 */
2064 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
2065 "entering PIC mode.\n");
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +04002066 imcr_apic_to_pic();
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04002067 return;
2068 }
2069#endif
2070
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002071 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002072
2073 /* For the spurious interrupt use vector F, and enable it */
2074 value = apic_read(APIC_SPIV);
2075 value &= ~APIC_VECTOR_MASK;
2076 value |= APIC_SPIV_APIC_ENABLED;
2077 value |= 0xf;
2078 apic_write(APIC_SPIV, value);
2079
2080 if (!virt_wire_setup) {
2081 /*
2082 * For LVT0 make it edge triggered, active high,
2083 * external and enabled
2084 */
2085 value = apic_read(APIC_LVT0);
2086 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2087 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2088 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2089 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2090 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
2091 apic_write(APIC_LVT0, value);
2092 } else {
2093 /* Disable LVT0 */
2094 apic_write(APIC_LVT0, APIC_LVT_MASKED);
2095 }
2096
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04002097 /*
2098 * For LVT1 make it edge triggered, active high,
2099 * nmi and enabled
2100 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002101 value = apic_read(APIC_LVT1);
2102 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2103 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2104 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2105 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2106 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
2107 apic_write(APIC_LVT1, value);
2108}
2109
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03002110void __cpuinit generic_processor_info(int apicid, int version)
2111{
Vivek Goyal14cb6dc2011-07-08 13:19:26 -04002112 int cpu, max = nr_cpu_ids;
2113 bool boot_cpu_detected = physid_isset(boot_cpu_physical_apicid,
2114 phys_cpu_present_map);
2115
2116 /*
2117 * If boot cpu has not been detected yet, then only allow upto
2118 * nr_cpu_ids - 1 processors and keep one slot free for boot cpu
2119 */
2120 if (!boot_cpu_detected && num_processors >= nr_cpu_ids - 1 &&
2121 apicid != boot_cpu_physical_apicid) {
2122 int thiscpu = max + disabled_cpus - 1;
2123
2124 pr_warning(
2125 "ACPI: NR_CPUS/possible_cpus limit of %i almost"
2126 " reached. Keeping one slot for boot cpu."
2127 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
2128
2129 disabled_cpus++;
2130 return;
2131 }
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03002132
Mike Travis3b11ce72008-12-17 15:21:39 -08002133 if (num_processors >= nr_cpu_ids) {
Mike Travis3b11ce72008-12-17 15:21:39 -08002134 int thiscpu = max + disabled_cpus;
2135
2136 pr_warning(
2137 "ACPI: NR_CPUS/possible_cpus limit of %i reached."
2138 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
2139
2140 disabled_cpus++;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03002141 return;
2142 }
2143
2144 num_processors++;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03002145 if (apicid == boot_cpu_physical_apicid) {
2146 /*
2147 * x86_bios_cpu_apicid is required to have processors listed
2148 * in same order as logical cpu numbers. Hence the first
2149 * entry is BSP, and so on.
Yinghai Lue5fea862011-02-08 23:22:17 -08002150 * boot_cpu_init() already hold bit 0 in cpu_present_mask
2151 * for BSP.
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03002152 */
2153 cpu = 0;
Yinghai Lue5fea862011-02-08 23:22:17 -08002154 } else
2155 cpu = cpumask_next_zero(-1, cpu_present_mask);
2156
2157 /*
2158 * Validate version
2159 */
2160 if (version == 0x0) {
2161 pr_warning("BIOS bug: APIC version is 0 for CPU %d/0x%x, fixing up to 0x10\n",
2162 cpu, apicid);
2163 version = 0x10;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03002164 }
Yinghai Lue5fea862011-02-08 23:22:17 -08002165 apic_version[apicid] = version;
2166
2167 if (version != apic_version[boot_cpu_physical_apicid]) {
2168 pr_warning("BIOS bug: APIC version mismatch, boot CPU: %x, CPU %d: version %x\n",
2169 apic_version[boot_cpu_physical_apicid], cpu, version);
2170 }
2171
2172 physid_set(apicid, phys_cpu_present_map);
Yinghai Lue0da3362008-06-08 18:29:22 -07002173 if (apicid > max_physical_apicid)
2174 max_physical_apicid = apicid;
2175
Ingo Molnar3e5095d2009-01-27 17:07:08 +01002176#if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
Tejun Heof10fcd42009-01-13 20:41:34 +09002177 early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
2178 early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04002179#endif
Tejun Heoacb8bc02011-01-23 14:37:33 +01002180#ifdef CONFIG_X86_32
2181 early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
2182 apic->x86_32_early_logical_apicid(cpu);
2183#endif
Mike Travis1de88cd2008-12-16 17:34:02 -08002184 set_cpu_possible(cpu, true);
2185 set_cpu_present(cpu, true);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03002186}
2187
Suresh Siddha0c81c742008-07-10 11:16:48 -07002188int hard_smp_processor_id(void)
2189{
2190 return read_apic_id();
2191}
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +01002192
2193void default_init_apic_ldr(void)
2194{
2195 unsigned long val;
2196
2197 apic_write(APIC_DFR, APIC_DFR_VALUE);
2198 val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
2199 val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
2200 apic_write(APIC_LDR, val);
2201}
2202
Alexander Gordeevff164322012-06-07 15:15:59 +02002203int default_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
2204 const struct cpumask *andmask,
2205 unsigned int *apicid)
Alexander Gordeev63982682012-06-05 13:23:44 +02002206{
Alexander Gordeevea3807e2012-06-14 09:49:55 +02002207 unsigned int cpu;
Alexander Gordeev63982682012-06-05 13:23:44 +02002208
2209 for_each_cpu_and(cpu, cpumask, andmask) {
2210 if (cpumask_test_cpu(cpu, cpu_online_mask))
2211 break;
2212 }
Alexander Gordeevff164322012-06-07 15:15:59 +02002213
Alexander Gordeevea3807e2012-06-14 09:49:55 +02002214 if (likely(cpu < nr_cpu_ids)) {
Alexander Gordeeva5a39152012-06-14 09:49:35 +02002215 *apicid = per_cpu(x86_cpu_to_apicid, cpu);
2216 return 0;
Alexander Gordeeva5a39152012-06-14 09:49:35 +02002217 }
Alexander Gordeevea3807e2012-06-14 09:49:55 +02002218
2219 return -EINVAL;
Alexander Gordeev63982682012-06-05 13:23:44 +02002220}
2221
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002222/*
Michael S. Tsirkin1551df62012-07-15 15:56:46 +03002223 * Override the generic EOI implementation with an optimized version.
2224 * Only called during early boot when only one CPU is active and with
2225 * interrupts disabled, so we know this does not race with actual APIC driver
2226 * use.
2227 */
2228void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v))
2229{
2230 struct apic **drv;
2231
2232 for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
2233 /* Should happen once for each apic */
2234 WARN_ON((*drv)->eoi_write == eoi_write);
2235 (*drv)->eoi_write = eoi_write;
2236 }
2237}
2238
2239/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002240 * Power management
2241 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242#ifdef CONFIG_PM
2243
2244static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002245 /*
2246 * 'active' is true if the local APIC was enabled by us and
2247 * not the BIOS; this signifies that we are also responsible
2248 * for disabling it before entering apm/acpi suspend
2249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 int active;
2251 /* r/w apic fields */
2252 unsigned int apic_id;
2253 unsigned int apic_taskpri;
2254 unsigned int apic_ldr;
2255 unsigned int apic_dfr;
2256 unsigned int apic_spiv;
2257 unsigned int apic_lvtt;
2258 unsigned int apic_lvtpc;
2259 unsigned int apic_lvt0;
2260 unsigned int apic_lvt1;
2261 unsigned int apic_lvterr;
2262 unsigned int apic_tmict;
2263 unsigned int apic_tdcr;
2264 unsigned int apic_thmr;
2265} apic_pm_state;
2266
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002267static int lapic_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
2269 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01002270 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 if (!apic_pm_state.active)
2273 return 0;
2274
Thomas Gleixner37e650c2008-01-30 13:30:14 +01002275 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01002276
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07002277 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
2279 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
2280 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
2281 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
2282 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01002283 if (maxlvt >= 4)
2284 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
2286 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
2287 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
2288 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
2289 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Andi Kleen4efc0672009-04-28 19:07:31 +02002290#ifdef CONFIG_X86_THERMAL_VECTOR
Karsten Wiesef990fff2006-12-07 02:14:11 +01002291 if (maxlvt >= 5)
2292 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
2293#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04002294
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02002295 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 disable_local_APIC();
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07002297
Joerg Roedel70733e02012-09-26 12:44:33 +02002298 irq_remapping_disable();
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07002299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 local_irq_restore(flags);
2301 return 0;
2302}
2303
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002304static void lapic_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305{
2306 unsigned int l, h;
2307 unsigned long flags;
Suresh Siddha31dce142011-05-18 16:31:33 -07002308 int maxlvt;
Fenghua Yub24696b2009-03-27 14:22:44 -07002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 if (!apic_pm_state.active)
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002311 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Fenghua Yub24696b2009-03-27 14:22:44 -07002313 local_irq_save(flags);
Joerg Roedel336224b2012-09-26 12:44:34 +02002314
2315 /*
2316 * IO-APIC and PIC have their own resume routines.
2317 * We just mask them here to make sure the interrupt
2318 * subsystem is completely quiet while we enable x2apic
2319 * and interrupt-remapping.
2320 */
2321 mask_ioapic_entries();
2322 legacy_pic->mask_all();
Karsten Wiesef990fff2006-12-07 02:14:11 +01002323
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07002324 if (x2apic_mode)
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002325 enable_x2apic();
Suresh Siddhacf6567f2009-03-16 17:05:00 -07002326 else {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002327 /*
2328 * Make sure the APICBASE points to the right address
2329 *
2330 * FIXME! This will be wrong if we ever support suspend on
2331 * SMP! We'll need to do this as part of the CPU restore!
2332 */
Bryan O'Donoghuecbf28292012-04-18 17:37:39 +01002333 if (boot_cpu_data.x86 >= 6) {
2334 rdmsr(MSR_IA32_APICBASE, l, h);
2335 l &= ~MSR_IA32_APICBASE_BASE;
2336 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2337 wrmsr(MSR_IA32_APICBASE, l, h);
2338 }
Yinghai Lud5e629a2008-08-17 21:12:27 -07002339 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002340
Fenghua Yub24696b2009-03-27 14:22:44 -07002341 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2343 apic_write(APIC_ID, apic_pm_state.apic_id);
2344 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2345 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2346 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2347 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2348 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2349 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Paul Bolle71c69f72013-05-29 20:57:30 +02002350#if defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002351 if (maxlvt >= 5)
2352 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2353#endif
2354 if (maxlvt >= 4)
2355 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2357 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2358 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2359 apic_write(APIC_ESR, 0);
2360 apic_read(APIC_ESR);
2361 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2362 apic_write(APIC_ESR, 0);
2363 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002364
Joerg Roedel70733e02012-09-26 12:44:33 +02002365 irq_remapping_reenable(x2apic_mode);
Suresh Siddha31dce142011-05-18 16:31:33 -07002366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368}
2369
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002370/*
2371 * This device has no shutdown method - fully functioning local APICs
2372 * are needed on every CPU up until machine_halt/restart/poweroff.
2373 */
2374
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002375static struct syscore_ops lapic_syscore_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 .resume = lapic_resume,
2377 .suspend = lapic_suspend,
2378};
2379
Ashok Raje6982c62005-06-25 14:54:58 -07002380static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
2382 apic_pm_state.active = 1;
2383}
2384
2385static int __init init_lapic_sysfs(void)
2386{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002388 if (cpu_has_apic)
2389 register_syscore_ops(&lapic_syscore_ops);
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002390
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392}
Fenghua Yub24696b2009-03-27 14:22:44 -07002393
2394/* local apic needs to resume before other devices access its registers. */
2395core_initcall(init_lapic_sysfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397#else /* CONFIG_PM */
2398
2399static void apic_pm_activate(void) { }
2400
2401#endif /* CONFIG_PM */
2402
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002403#ifdef CONFIG_X86_64
Yinghai Lue0e42142009-04-26 23:39:38 -07002404
2405static int __cpuinit apic_cluster_num(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
2407 int i, clusters, zeros;
2408 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08002409 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
2411
Mike Travis23ca4bb2008-05-12 21:21:12 +02002412 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07002413 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Mike Travis168ef542008-12-16 17:34:01 -08002415 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002416 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01002417 if (bios_cpu_apicid) {
2418 id = bios_cpu_apicid[i];
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302419 } else if (i < nr_cpu_ids) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002420 if (cpu_present(i))
2421 id = per_cpu(x86_bios_cpu_apicid, i);
2422 else
2423 continue;
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302424 } else
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002425 break;
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (id != BAD_APICID)
2428 __set_bit(APIC_CLUSTERID(id), clustermap);
2429 }
2430
2431 /* Problem: Partially populated chassis may not have CPUs in some of
2432 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01002433 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
2434 * Since clusters are allocated sequentially, count zeros only if
2435 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 */
2437 clusters = 0;
2438 zeros = 0;
2439 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
2440 if (test_bit(i, clustermap)) {
2441 clusters += 1 + zeros;
2442 zeros = 0;
2443 } else
2444 ++zeros;
2445 }
2446
Yinghai Lue0e42142009-04-26 23:39:38 -07002447 return clusters;
2448}
2449
2450static int __cpuinitdata multi_checked;
2451static int __cpuinitdata multi;
2452
2453static int __cpuinit set_multi(const struct dmi_system_id *d)
2454{
2455 if (multi)
2456 return 0;
Cyrill Gorcunov6f0aced2009-05-01 23:54:25 +04002457 pr_info("APIC: %s detected, Multi Chassis\n", d->ident);
Yinghai Lue0e42142009-04-26 23:39:38 -07002458 multi = 1;
2459 return 0;
2460}
2461
2462static const __cpuinitconst struct dmi_system_id multi_dmi_table[] = {
2463 {
2464 .callback = set_multi,
2465 .ident = "IBM System Summit2",
2466 .matches = {
2467 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
2468 DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"),
2469 },
2470 },
2471 {}
2472};
2473
2474static void __cpuinit dmi_check_multi(void)
2475{
2476 if (multi_checked)
2477 return;
2478
2479 dmi_check_system(multi_dmi_table);
2480 multi_checked = 1;
2481}
2482
2483/*
2484 * apic_is_clustered_box() -- Check if we can expect good TSC
2485 *
2486 * Thus far, the major user of this is IBM's Summit2 series:
2487 * Clustered boxes may have unsynced TSC problems if they are
2488 * multi-chassis.
2489 * Use DMI to check them
2490 */
2491__cpuinit int apic_is_clustered_box(void)
2492{
2493 dmi_check_multi();
2494 if (multi)
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002495 return 1;
2496
Yinghai Lue0e42142009-04-26 23:39:38 -07002497 if (!is_vsmp_box())
2498 return 0;
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 /*
Yinghai Lue0e42142009-04-26 23:39:38 -07002501 * ScaleMP vSMPowered boxes have one cluster per board and TSCs are
2502 * not guaranteed to be synced between boards
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 */
Yinghai Lue0e42142009-04-26 23:39:38 -07002504 if (apic_cluster_num() > 1)
2505 return 1;
2506
2507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002509#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002512 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002514static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002515{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002517 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002518 return 0;
2519}
2520early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002522/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002523static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002524{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002525 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002526}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002527early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002529static int __init parse_lapic_timer_c2_ok(char *arg)
2530{
2531 local_apic_timer_c2_ok = 1;
2532 return 0;
2533}
2534early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2535
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002536static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002537{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002539 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002540}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002541early_param("noapictimer", parse_disable_apic_timer);
2542
2543static int __init parse_nolapic_timer(char *arg)
2544{
2545 disable_apic_timer = 1;
2546 return 0;
2547}
2548early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002549
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002550static int __init apic_set_verbosity(char *arg)
2551{
2552 if (!arg) {
2553#ifdef CONFIG_X86_64
2554 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002555 return 0;
2556#endif
2557 return -EINVAL;
2558 }
2559
2560 if (strcmp("debug", arg) == 0)
2561 apic_verbosity = APIC_DEBUG;
2562 else if (strcmp("verbose", arg) == 0)
2563 apic_verbosity = APIC_VERBOSE;
2564 else {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01002565 pr_warning("APIC Verbosity level %s not recognised"
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002566 " use apic=verbose or apic=debug\n", arg);
2567 return -EINVAL;
2568 }
2569
2570 return 0;
2571}
2572early_param("apic", apic_set_verbosity);
2573
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002574static int __init lapic_insert_resource(void)
2575{
2576 if (!apic_phys)
2577 return -1;
2578
2579 /* Put local APIC into the resource map. */
2580 lapic_resource.start = apic_phys;
2581 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2582 insert_resource(&iomem_resource, &lapic_resource);
2583
2584 return 0;
2585}
2586
2587/*
2588 * need call insert after e820_reserve_resources()
2589 * that is using request_resource
2590 */
2591late_initcall(lapic_insert_resource);