blob: 83e47febcc893e29ec387377cc2db66c4ac4865b [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel_stat.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010018#include <linux/mc146818rtc.h>
Thomas Gleixner70a20022008-01-30 13:30:18 +010019#include <linux/acpi_pmtmr.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010020#include <linux/clockchips.h>
21#include <linux/interrupt.h>
22#include <linux/bootmem.h>
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +010023#include <linux/ftrace.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010024#include <linux/ioport.h>
25#include <linux/module.h>
26#include <linux/sysdev.h>
27#include <linux/delay.h>
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +053028#include <linux/timex.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010029#include <linux/dmar.h>
30#include <linux/init.h>
31#include <linux/cpu.h>
32#include <linux/dmi.h>
33#include <linux/nmi.h>
34#include <linux/smp.h>
35#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/pgalloc.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010038#include <asm/atomic.h>
39#include <asm/mpspec.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070040#include <asm/i8253.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010041#include <asm/i8259.h>
Andi Kleen73dea472006-02-03 21:50:50 +010042#include <asm/proto.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020043#include <asm/apic.h>
Ingo Molnard1de36f2009-01-31 01:59:14 +010044#include <asm/desc.h>
45#include <asm/hpet.h>
46#include <asm/idle.h>
47#include <asm/mtrr.h>
Jaswinder Singh Rajput2bc13792009-01-11 20:34:47 +053048#include <asm/smp.h>
Andi Kleenbe71b852009-02-12 13:49:38 +010049#include <asm/mce.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Brian Gerstec70de82009-01-27 12:56:47 +090051unsigned int num_processors;
Ingo Molnarfdbecd92009-01-31 03:57:12 +010052
Brian Gerstec70de82009-01-27 12:56:47 +090053unsigned disabled_cpus __cpuinitdata;
Ingo Molnarfdbecd92009-01-31 03:57:12 +010054
Brian Gerstec70de82009-01-27 12:56:47 +090055/* Processor that is doing the boot up */
56unsigned int boot_cpu_physical_apicid = -1U;
Glauber Costa5af55732008-03-25 13:28:56 -030057
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070058/*
Ingo Molnarfdbecd92009-01-31 03:57:12 +010059 * The highest APIC ID seen during enumeration.
60 *
61 * This determines the messaging protocol we can use: if all APIC IDs
62 * are in the 0 ... 7 range, then we can use logical addressing which
63 * has some performance advantages (better broadcasting).
64 *
65 * If there's an APIC ID above 8, we use physical addressing.
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070066 */
Brian Gerstec70de82009-01-27 12:56:47 +090067unsigned int max_physical_apicid;
68
Ingo Molnarfdbecd92009-01-31 03:57:12 +010069/*
70 * Bitmask of physically existing CPUs:
71 */
Brian Gerstec70de82009-01-27 12:56:47 +090072physid_mask_t phys_cpu_present_map;
73
74/*
75 * Map cpu index to physical APIC ID
76 */
77DEFINE_EARLY_PER_CPU(u16, x86_cpu_to_apicid, BAD_APICID);
78DEFINE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid, BAD_APICID);
79EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
80EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070081
Yinghai Lub3c51172008-08-24 02:01:46 -070082#ifdef CONFIG_X86_32
83/*
84 * Knob to control our willingness to enable the local APIC.
85 *
86 * +1=force-enable
87 */
88static int force_enable_local_apic;
89/*
90 * APIC command line parameters
91 */
92static int __init parse_lapic(char *arg)
93{
94 force_enable_local_apic = 1;
95 return 0;
96}
97early_param("lapic", parse_lapic);
Yinghai Luf28c0ae2008-08-24 02:01:49 -070098/* Local APIC was disabled by the BIOS and enabled by the kernel */
99static int enabled_via_apicbase;
100
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +0400101/*
102 * Handle interrupt mode configuration register (IMCR).
103 * This register controls whether the interrupt signals
104 * that reach the BSP come from the master PIC or from the
105 * local APIC. Before entering Symmetric I/O Mode, either
106 * the BIOS or the operating system must switch out of
107 * PIC Mode by changing the IMCR.
108 */
Alexander van Heukelum5cda3952009-04-13 17:39:24 +0200109static inline void imcr_pic_to_apic(void)
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +0400110{
111 /* select IMCR register */
112 outb(0x70, 0x22);
113 /* NMI and 8259 INTR go through APIC */
114 outb(0x01, 0x23);
115}
116
Alexander van Heukelum5cda3952009-04-13 17:39:24 +0200117static inline void imcr_apic_to_pic(void)
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +0400118{
119 /* select IMCR register */
120 outb(0x70, 0x22);
121 /* NMI and 8259 INTR go directly to BSP */
122 outb(0x00, 0x23);
123}
Yinghai Lub3c51172008-08-24 02:01:46 -0700124#endif
125
126#ifdef CONFIG_X86_64
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200127static int apic_calibrate_pmtmr __initdata;
Yinghai Lub3c51172008-08-24 02:01:46 -0700128static __init int setup_apicpmtimer(char *s)
129{
130 apic_calibrate_pmtmr = 1;
131 notsc_setup(NULL);
132 return 0;
133}
134__setup("apicpmtimer", setup_apicpmtimer);
135#endif
136
Yinghai Lu06cd9a72009-02-16 17:29:58 -0800137#ifdef CONFIG_X86_X2APIC
Suresh Siddha89027d32008-07-10 11:16:56 -0700138int x2apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700139/* x2apic enabled before OS handover */
Jaswinder Singhb6b301a2008-12-23 21:52:33 +0530140static int x2apic_preenabled;
141static int disable_x2apic;
Yinghai Lu49899ea2008-08-24 02:01:47 -0700142static __init int setup_nox2apic(char *str)
143{
144 disable_x2apic = 1;
145 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
146 return 0;
147}
148early_param("nox2apic", setup_nox2apic);
149#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Yinghai Lub3c51172008-08-24 02:01:46 -0700151unsigned long mp_lapic_addr;
152int disable_apic;
153/* Disable local APIC timer from the kernel commandline or via dmi quirk */
154static int disable_apic_timer __cpuinitdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100155/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -0700156int local_apic_timer_c2_ok;
157EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
158
Yinghai Luefa25592008-08-19 20:50:36 -0700159int first_system_vector = 0xfe;
160
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100161/*
162 * Debug level, exported for io_apic.c
163 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100164unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100165
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700166int pic_mode;
167
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400168/* Have we found an MP table */
169int smp_found_config;
170
Aaron Durbin39928722006-12-07 02:14:01 +0100171static struct resource lapic_resource = {
172 .name = "Local APIC",
173 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
174};
175
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200176static unsigned int calibration_result;
177
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200178static int lapic_next_event(unsigned long delta,
179 struct clock_event_device *evt);
180static void lapic_timer_setup(enum clock_event_mode mode,
181 struct clock_event_device *evt);
Mike Travis96289372008-12-31 18:08:46 -0800182static void lapic_timer_broadcast(const struct cpumask *mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100183static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200184
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400185/*
186 * The local apic timer can be used for any function which is CPU local.
187 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200188static struct clock_event_device lapic_clockevent = {
189 .name = "lapic",
190 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
191 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
192 .shift = 32,
193 .set_mode = lapic_timer_setup,
194 .set_next_event = lapic_next_event,
195 .broadcast = lapic_timer_broadcast,
196 .rating = 100,
197 .irq = -1,
198};
199static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
200
Andi Kleend3432892008-01-30 13:33:17 +0100201static unsigned long apic_phys;
202
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100203/*
204 * Get the LAPIC version
205 */
206static inline int lapic_get_version(void)
207{
208 return GET_APIC_VERSION(apic_read(APIC_LVR));
209}
210
211/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400212 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100213 */
214static inline int lapic_is_integrated(void)
215{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400216#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100217 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400218#else
219 return APIC_INTEGRATED(lapic_get_version());
220#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100221}
222
223/*
224 * Check, whether this is a modern or a first generation APIC
225 */
226static int modern_apic(void)
227{
228 /* AMD systems use old APIC versions, so check the CPU */
229 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
230 boot_cpu_data.x86 >= 0xf)
231 return 1;
232 return lapic_get_version() >= 0x14;
233}
234
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400235/*
236 * bare function to substitute write operation
237 * and it's _that_ fast :)
238 */
239void native_apic_write_dummy(u32 reg, u32 v)
240{
241 WARN_ON_ONCE((cpu_has_apic || !disable_apic));
242}
243
244/*
245 * right after this call apic->write doesn't do anything
246 * note that there is no restore operation it works one way
247 */
248void apic_disable(void)
249{
250 apic->write = native_apic_write_dummy;
251}
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;
269 udelay(100);
270 } while (timeout++ < 1000);
271
272 return send_status;
273}
274
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800275void native_apic_icr_write(u32 low, u32 id)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700276{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200277 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700278 apic_write(APIC_ICR, low);
279}
280
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800281u64 native_apic_icr_read(void)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700282{
283 u32 icr1, icr2;
284
285 icr2 = apic_read(APIC_ICR2);
286 icr1 = apic_read(APIC_ICR);
287
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400288 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700289}
290
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100291/**
292 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
293 */
Jan Beuliche9427102008-01-30 13:31:24 +0100294void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100295{
296 unsigned int v;
297
298 /* unmask and set to NMI */
299 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200300
301 /* Level triggered for 82489DX (32bit mode) */
302 if (!lapic_is_integrated())
303 v |= APIC_LVT_LEVEL_TRIGGER;
304
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100305 apic_write(APIC_LVT0, v);
306}
307
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700308#ifdef CONFIG_X86_32
309/**
310 * get_physical_broadcast - Get number of physical broadcast IDs
311 */
312int get_physical_broadcast(void)
313{
314 return modern_apic() ? 0xff : 0xf;
315}
316#endif
317
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100318/**
319 * lapic_get_maxlvt - get the maximum number of local vector table entries
320 */
321int lapic_get_maxlvt(void)
322{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200323 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100324
325 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200326 /*
327 * - we always have APIC integrated on 64bit mode
328 * - 82489DXs do not report # of LVT entries
329 */
330 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100331}
332
333/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400334 * Local APIC timer
335 */
336
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400337/* Clock divisor */
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400338#define APIC_DIVISOR 16
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200339
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100340/*
341 * This function sets up the local APIC timer, with a timeout of
342 * 'clocks' APIC bus clock. During calibration we actually call
343 * this function twice on the boot CPU, once with a bogus timeout
344 * value, second time for real. The other (noncalibrating) CPUs
345 * call this function only once, with the real, calibrated value.
346 *
347 * We do reads before writes even if unnecessary, to get around the
348 * P5 APIC double write bug.
349 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100350static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
351{
352 unsigned int lvtt_value, tmp_value;
353
354 lvtt_value = LOCAL_TIMER_VECTOR;
355 if (!oneshot)
356 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200357 if (!lapic_is_integrated())
358 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
359
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100360 if (!irqen)
361 lvtt_value |= APIC_LVT_MASKED;
362
363 apic_write(APIC_LVTT, lvtt_value);
364
365 /*
366 * Divide PICLK by 16
367 */
368 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400369 apic_write(APIC_TDCR,
370 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
371 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100372
373 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200374 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100375}
376
377/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100378 * Setup extended LVT, AMD specific (K8, family 10h)
379 *
380 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
381 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200382 *
383 * If mask=1, the LVT entry does not generate interrupts while mask=0
384 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100385 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100386
387#define APIC_EILVT_LVTOFF_MCE 0
388#define APIC_EILVT_LVTOFF_IBS 1
389
390static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100391{
Robert Richter7b83dae2008-01-30 13:30:40 +0100392 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100393 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
394
395 apic_write(reg, v);
396}
397
Robert Richter7b83dae2008-01-30 13:30:40 +0100398u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
399{
400 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
401 return APIC_EILVT_LVTOFF_MCE;
402}
403
404u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
405{
406 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
407 return APIC_EILVT_LVTOFF_IBS;
408}
Robert Richter6aa360e2008-07-23 15:28:14 +0200409EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100410
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100411/*
412 * Program the next event, relative to now
413 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200414static int lapic_next_event(unsigned long delta,
415 struct clock_event_device *evt)
416{
417 apic_write(APIC_TMICT, delta);
418 return 0;
419}
420
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100421/*
422 * Setup the lapic timer in periodic or oneshot mode
423 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200424static void lapic_timer_setup(enum clock_event_mode mode,
425 struct clock_event_device *evt)
426{
427 unsigned long flags;
428 unsigned int v;
429
430 /* Lapic used as dummy for broadcast ? */
431 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
432 return;
433
434 local_irq_save(flags);
435
436 switch (mode) {
437 case CLOCK_EVT_MODE_PERIODIC:
438 case CLOCK_EVT_MODE_ONESHOT:
439 __setup_APIC_LVTT(calibration_result,
440 mode != CLOCK_EVT_MODE_PERIODIC, 1);
441 break;
442 case CLOCK_EVT_MODE_UNUSED:
443 case CLOCK_EVT_MODE_SHUTDOWN:
444 v = apic_read(APIC_LVTT);
445 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
446 apic_write(APIC_LVTT, v);
Thomas Gleixnera98f8fd2008-11-06 01:13:39 +0100447 apic_write(APIC_TMICT, 0xffffffff);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200448 break;
449 case CLOCK_EVT_MODE_RESUME:
450 /* Nothing to do here */
451 break;
452 }
453
454 local_irq_restore(flags);
455}
456
457/*
458 * Local APIC timer broadcast function
459 */
Mike Travis96289372008-12-31 18:08:46 -0800460static void lapic_timer_broadcast(const struct cpumask *mask)
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200461{
462#ifdef CONFIG_SMP
Ingo Molnardac5f412009-01-28 15:42:24 +0100463 apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200464#endif
465}
466
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100467/*
468 * Setup the local APIC timer for this CPU. Copy the initilized values
469 * of the boot CPU and register the clock event in the framework.
470 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700471static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200472{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100473 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
474
Venkatesh Pallipadidb954b52009-04-06 18:51:29 -0700475 if (cpu_has(&current_cpu_data, X86_FEATURE_ARAT)) {
476 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
477 /* Make LAPIC timer preferrable over percpu HPET */
478 lapic_clockevent.rating = 150;
479 }
480
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100481 memcpy(levt, &lapic_clockevent, sizeof(*levt));
Rusty Russell320ab2b2008-12-13 21:20:26 +1030482 levt->cpumask = cpumask_of(smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100483
484 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200485}
486
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700487/*
488 * In this functions we calibrate APIC bus clocks to the external timer.
489 *
490 * We want to do the calibration only once since we want to have local timer
491 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
492 * frequency.
493 *
494 * This was previously done by reading the PIT/HPET and waiting for a wrap
495 * around to find out, that a tick has elapsed. I have a box, where the PIT
496 * readout is broken, so it never gets out of the wait loop again. This was
497 * also reported by others.
498 *
499 * Monitoring the jiffies value is inaccurate and the clockevents
500 * infrastructure allows us to do a simple substitution of the interrupt
501 * handler.
502 *
503 * The calibration routine also uses the pm_timer when possible, as the PIT
504 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
505 * back to normal later in the boot process).
506 */
507
508#define LAPIC_CAL_LOOPS (HZ/10)
509
510static __initdata int lapic_cal_loops = -1;
511static __initdata long lapic_cal_t1, lapic_cal_t2;
512static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
513static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
514static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
515
516/*
517 * Temporary interrupt handler.
518 */
519static void __init lapic_cal_handler(struct clock_event_device *dev)
520{
521 unsigned long long tsc = 0;
522 long tapic = apic_read(APIC_TMCCT);
523 unsigned long pm = acpi_pm_read_early();
524
525 if (cpu_has_tsc)
526 rdtscll(tsc);
527
528 switch (lapic_cal_loops++) {
529 case 0:
530 lapic_cal_t1 = tapic;
531 lapic_cal_tsc1 = tsc;
532 lapic_cal_pm1 = pm;
533 lapic_cal_j1 = jiffies;
534 break;
535
536 case LAPIC_CAL_LOOPS:
537 lapic_cal_t2 = tapic;
538 lapic_cal_tsc2 = tsc;
539 if (pm < lapic_cal_pm1)
540 pm += ACPI_PM_OVRRUN;
541 lapic_cal_pm2 = pm;
542 lapic_cal_j2 = jiffies;
543 break;
544 }
545}
546
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900547static int __init
548calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400549{
550 const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
551 const long pm_thresh = pm_100ms / 100;
552 unsigned long mult;
553 u64 res;
554
555#ifndef CONFIG_X86_PM_TIMER
556 return -1;
557#endif
558
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900559 apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400560
561 /* Check, if the PM timer is available */
562 if (!deltapm)
563 return -1;
564
565 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
566
567 if (deltapm > (pm_100ms - pm_thresh) &&
568 deltapm < (pm_100ms + pm_thresh)) {
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900569 apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900570 return 0;
571 }
572
573 res = (((u64)deltapm) * mult) >> 22;
574 do_div(res, 1000000);
575 pr_warning("APIC calibration not consistent "
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900576 "with PM-Timer: %ldms instead of 100ms\n",(long)res);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900577
578 /* Correct the lapic counter value */
579 res = (((u64)(*delta)) * pm_100ms);
580 do_div(res, deltapm);
581 pr_info("APIC delta adjusted to PM-Timer: "
582 "%lu (%ld)\n", (unsigned long)res, *delta);
583 *delta = (long)res;
584
585 /* Correct the tsc counter value */
586 if (cpu_has_tsc) {
587 res = (((u64)(*deltatsc)) * pm_100ms);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400588 do_div(res, deltapm);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900589 apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
590 "PM-Timer: %lu (%ld) \n",
591 (unsigned long)res, *deltatsc);
592 *deltatsc = (long)res;
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400593 }
594
595 return 0;
596}
597
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700598static int __init calibrate_APIC_clock(void)
599{
600 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700601 void (*real_handler)(struct clock_event_device *dev);
602 unsigned long deltaj;
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900603 long delta, deltatsc;
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700604 int pm_referenced = 0;
605
606 local_irq_disable();
607
608 /* Replace the global interrupt handler */
609 real_handler = global_clock_event->event_handler;
610 global_clock_event->event_handler = lapic_cal_handler;
611
612 /*
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400613 * Setup the APIC counter to maximum. There is no way the lapic
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700614 * can underflow in the 100ms detection time frame
615 */
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400616 __setup_APIC_LVTT(0xffffffff, 0, 0);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700617
618 /* Let the interrupts run */
619 local_irq_enable();
620
621 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
622 cpu_relax();
623
624 local_irq_disable();
625
626 /* Restore the real event handler */
627 global_clock_event->event_handler = real_handler;
628
629 /* Build delta t1-t2 as apic timer counts down */
630 delta = lapic_cal_t1 - lapic_cal_t2;
631 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
632
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900633 deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
634
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400635 /* we trust the PM based calibration if possible */
636 pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900637 &delta, &deltatsc);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700638
639 /* Calculate the scaled math multiplication factor */
640 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
641 lapic_clockevent.shift);
642 lapic_clockevent.max_delta_ns =
643 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
644 lapic_clockevent.min_delta_ns =
645 clockevent_delta2ns(0xF, &lapic_clockevent);
646
647 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
648
649 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
650 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
651 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
652 calibration_result);
653
654 if (cpu_has_tsc) {
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700655 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
656 "%ld.%04ld MHz.\n",
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900657 (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
658 (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700659 }
660
661 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
662 "%u.%04u MHz.\n",
663 calibration_result / (1000000 / HZ),
664 calibration_result % (1000000 / HZ));
665
666 /*
667 * Do a sanity check on the APIC calibration result
668 */
669 if (calibration_result < (1000000 / HZ)) {
670 local_irq_enable();
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100671 pr_warning("APIC frequency too slow, disabling apic timer\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700672 return -1;
673 }
674
675 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
676
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400677 /*
678 * PM timer calibration failed or not turned on
679 * so lets try APIC timer based calibration
680 */
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700681 if (!pm_referenced) {
682 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
683
684 /*
685 * Setup the apic timer manually
686 */
687 levt->event_handler = lapic_cal_handler;
688 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
689 lapic_cal_loops = -1;
690
691 /* Let the interrupts run */
692 local_irq_enable();
693
694 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
695 cpu_relax();
696
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700697 /* Stop the lapic timer */
698 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
699
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700700 /* Jiffies delta */
701 deltaj = lapic_cal_j2 - lapic_cal_j1;
702 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
703
704 /* Check, if the jiffies result is consistent */
705 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
706 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
707 else
708 levt->features |= CLOCK_EVT_FEAT_DUMMY;
709 } else
710 local_irq_enable();
711
712 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +0530713 pr_warning("APIC timer disabled due to verification failure\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700714 return -1;
715 }
716
717 return 0;
718}
719
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100720/*
721 * Setup the boot APIC
722 *
723 * Calibrate and verify the result.
724 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100725void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100727 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400728 * The local apic timer can be disabled via the kernel
729 * commandline or from the CPU detection code. Register the lapic
730 * timer as a dummy clock event source on SMP systems, so the
731 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100732 */
733 if (disable_apic_timer) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100734 pr_info("Disabling APIC timer\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100735 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100736 if (num_possible_cpus() > 1) {
737 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100738 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100739 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100740 return;
741 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200742
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400743 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
744 "calibrating APIC timer ...\n");
745
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400746 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100747 /* No broadcast on UP ! */
748 if (num_possible_cpus() > 1)
749 setup_APIC_timer();
750 return;
751 }
752
753 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100754 * If nmi_watchdog is set to IO_APIC, we need the
755 * PIT/HPET going. Otherwise register lapic as a dummy
756 * device.
757 */
758 if (nmi_watchdog != NMI_IO_APIC)
759 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
760 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100761 pr_warning("APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200762 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100763
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400764 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100765 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100768void __cpuinit setup_secondary_APIC_clock(void)
769{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100770 setup_APIC_timer();
771}
772
773/*
774 * The guts of the apic timer interrupt
775 */
776static void local_apic_timer_interrupt(void)
777{
778 int cpu = smp_processor_id();
779 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
780
781 /*
782 * Normally we should not be here till LAPIC has been initialized but
783 * in some cases like kdump, its possible that there is a pending LAPIC
784 * timer interrupt from previous kernel's context and is delivered in
785 * new kernel the moment interrupts are enabled.
786 *
787 * Interrupts are enabled early and LAPIC is setup much later, hence
788 * its possible that when we get here evt->event_handler is NULL.
789 * Check for event_handler being NULL and discard the interrupt as
790 * spurious.
791 */
792 if (!evt->event_handler) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100793 pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100794 /* Switch it off */
795 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
796 return;
797 }
798
799 /*
800 * the NMI deadlock-detector uses this.
801 */
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -0800802 inc_irq_stat(apic_timer_irqs);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100803
804 evt->event_handler(evt);
805}
806
807/*
808 * Local APIC timer interrupt. This is the most natural way for doing
809 * local interrupts, but local timer interrupts can be emulated by
810 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
811 *
812 * [ if a single-CPU system runs an SMP kernel then we call the local
813 * interrupt as well. Thus we cannot inline the local irq ... ]
814 */
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100815void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100816{
817 struct pt_regs *old_regs = set_irq_regs(regs);
818
819 /*
820 * NOTE! We'd better ACK the irq immediately,
821 * because timer handling can be slow.
822 */
823 ack_APIC_irq();
824 /*
825 * update_process_times() expects us to have done irq_enter().
826 * Besides, if we don't timer interrupts ignore the global
827 * interrupt lock, which is the WrongThing (tm) to do.
828 */
829 exit_idle();
830 irq_enter();
831 local_apic_timer_interrupt();
832 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400833
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100834 set_irq_regs(old_regs);
835}
836
837int setup_profiling_timer(unsigned int multiplier)
838{
839 return -EINVAL;
840}
841
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100842/*
843 * Local APIC start and shutdown
844 */
845
846/**
847 * clear_local_APIC - shutdown the local APIC
848 *
849 * This is called, when a CPU is disabled and before rebooting, so the state of
850 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
851 * leftovers during boot.
852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853void clear_local_APIC(void)
854{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400855 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100856 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Andi Kleend3432892008-01-30 13:33:17 +0100858 /* APIC hasn't been mapped yet */
Suresh Siddhacf6567f2009-03-16 17:05:00 -0700859 if (!x2apic && !apic_phys)
Andi Kleend3432892008-01-30 13:33:17 +0100860 return;
861
862 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200864 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * if the vector is zero. Mask LVTERR first to prevent this.
866 */
867 if (maxlvt >= 3) {
868 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100869 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871 /*
872 * Careful: we have to set masks only first to deassert
873 * any level-triggered sources.
874 */
875 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100876 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100878 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100880 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (maxlvt >= 4) {
882 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100883 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
885
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400886 /* lets not touch this if we didn't frob it */
Andi Kleen07db1c12009-02-12 13:39:35 +0100887#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400888 if (maxlvt >= 5) {
889 v = apic_read(APIC_LVTTHMR);
890 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
891 }
892#endif
Andi Kleen5ca86812009-02-12 13:49:37 +0100893#ifdef CONFIG_X86_MCE_INTEL
894 if (maxlvt >= 6) {
895 v = apic_read(APIC_LVTCMCI);
896 if (!(v & APIC_LVT_MASKED))
897 apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
898 }
899#endif
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 /*
902 * Clean APIC state for other OSs:
903 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100904 apic_write(APIC_LVTT, APIC_LVT_MASKED);
905 apic_write(APIC_LVT0, APIC_LVT_MASKED);
906 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100908 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100910 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400911
912 /* Integrated APIC (!82489DX) ? */
913 if (lapic_is_integrated()) {
914 if (maxlvt > 3)
915 /* Clear ESR due to Pentium errata 3AP and 11AP */
916 apic_write(APIC_ESR, 0);
917 apic_read(APIC_ESR);
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100921/**
922 * disable_local_APIC - clear and disable the local APIC
923 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924void disable_local_APIC(void)
925{
926 unsigned int value;
927
Jan Beulich4a13ad02009-01-14 12:28:51 +0000928 /* APIC hasn't been mapped yet */
929 if (!apic_phys)
930 return;
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 clear_local_APIC();
933
934 /*
935 * Disable APIC (implies clearing of registers
936 * for 82489DX!).
937 */
938 value = apic_read(APIC_SPIV);
939 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100940 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400941
942#ifdef CONFIG_X86_32
943 /*
944 * When LAPIC was disabled by the BIOS and enabled by the kernel,
945 * restore the disabled state.
946 */
947 if (enabled_via_apicbase) {
948 unsigned int l, h;
949
950 rdmsr(MSR_IA32_APICBASE, l, h);
951 l &= ~MSR_IA32_APICBASE_ENABLE;
952 wrmsr(MSR_IA32_APICBASE, l, h);
953 }
954#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400957/*
958 * If Linux enabled the LAPIC against the BIOS default disable it down before
959 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
960 * not power-off. Additionally clear all LVT entries before disable_local_APIC
961 * for the case where Linux didn't enable the LAPIC.
962 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700963void lapic_shutdown(void)
964{
965 unsigned long flags;
966
967 if (!cpu_has_apic)
968 return;
969
970 local_irq_save(flags);
971
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400972#ifdef CONFIG_X86_32
973 if (!enabled_via_apicbase)
974 clear_local_APIC();
975 else
976#endif
977 disable_local_APIC();
978
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700979
980 local_irq_restore(flags);
981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/*
984 * This is to verify that we're looking at a real local APIC.
985 * Check these against your board if the CPUs aren't getting
986 * started for no apparent reason.
987 */
988int __init verify_local_APIC(void)
989{
990 unsigned int reg0, reg1;
991
992 /*
993 * The version register is read-only in a real APIC.
994 */
995 reg0 = apic_read(APIC_LVR);
996 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
997 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
998 reg1 = apic_read(APIC_LVR);
999 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
1000
1001 /*
1002 * The two version reads above should print the same
1003 * numbers. If the second one is different, then we
1004 * poke at a non-APIC.
1005 */
1006 if (reg1 != reg0)
1007 return 0;
1008
1009 /*
1010 * Check if the version looks reasonably.
1011 */
1012 reg1 = GET_APIC_VERSION(reg0);
1013 if (reg1 == 0x00 || reg1 == 0xff)
1014 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001015 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (reg1 < 0x02 || reg1 == 0xff)
1017 return 0;
1018
1019 /*
1020 * The ID register is read/write in a real APIC.
1021 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001022 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +01001024 apic_write(APIC_ID, reg0 ^ apic->apic_id_mask);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001025 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
1027 apic_write(APIC_ID, reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +01001028 if (reg1 != (reg0 ^ apic->apic_id_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return 0;
1030
1031 /*
1032 * The next two are just to see if we have sane values.
1033 * They're only really relevant if we're in Virtual Wire
1034 * compatibility mode, but most boxes are anymore.
1035 */
1036 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001037 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 reg1 = apic_read(APIC_LVT1);
1039 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
1040
1041 return 1;
1042}
1043
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001044/**
1045 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1046 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047void __init sync_Arb_IDs(void)
1048{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +02001049 /*
1050 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1051 * needed on AMD.
1052 */
1053 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return;
1055
1056 /*
1057 * Wait for idle.
1058 */
1059 apic_wait_icr_idle();
1060
1061 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +04001062 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1063 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066/*
1067 * An initial setup of the virtual wire mode.
1068 */
1069void __init init_bsp_APIC(void)
1070{
Andi Kleen11a8e772006-01-11 22:46:51 +01001071 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 /*
1074 * Don't do the setup now if we have a SMP BIOS as the
1075 * through-I/O-APIC virtual wire mode might be active.
1076 */
1077 if (smp_found_config || !cpu_has_apic)
1078 return;
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /*
1081 * Do not trust the local APIC being empty at bootup.
1082 */
1083 clear_local_APIC();
1084
1085 /*
1086 * Enable APIC.
1087 */
1088 value = apic_read(APIC_SPIV);
1089 value &= ~APIC_VECTOR_MASK;
1090 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001091
1092#ifdef CONFIG_X86_32
1093 /* This bit is reserved on P4/Xeon and should be cleared */
1094 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1095 (boot_cpu_data.x86 == 15))
1096 value &= ~APIC_SPIV_FOCUS_DISABLED;
1097 else
1098#endif
1099 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001101 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 /*
1104 * Set up the virtual wire mode.
1105 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001106 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001108 if (!lapic_is_integrated()) /* 82489DX */
1109 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001110 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001113static void __cpuinit lapic_setup_esr(void)
1114{
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001115 unsigned int oldvalue, value, maxlvt;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001116
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001117 if (!lapic_is_integrated()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001118 pr_info("No ESR for 82489DX.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001119 return;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001120 }
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001121
Ingo Molnar08125d32009-01-28 05:08:44 +01001122 if (apic->disable_esr) {
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001123 /*
1124 * Something untraceable is creating bad interrupts on
1125 * secondary quads ... for the moment, just leave the
1126 * ESR disabled - we can't do anything useful with the
1127 * errors anyway - mbligh
1128 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001129 pr_info("Leaving ESR disabled.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001130 return;
1131 }
1132
1133 maxlvt = lapic_get_maxlvt();
1134 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1135 apic_write(APIC_ESR, 0);
1136 oldvalue = apic_read(APIC_ESR);
1137
1138 /* enables sending errors */
1139 value = ERROR_APIC_VECTOR;
1140 apic_write(APIC_LVTERR, value);
1141
1142 /*
1143 * spec says clear errors after enabling vector.
1144 */
1145 if (maxlvt > 3)
1146 apic_write(APIC_ESR, 0);
1147 value = apic_read(APIC_ESR);
1148 if (value != oldvalue)
1149 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1150 "vector: 0x%08x after: 0x%08x\n",
1151 oldvalue, value);
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001152}
1153
1154
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001155/**
1156 * setup_local_APIC - setup the local APIC
1157 */
1158void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Andi Kleen739f33b2008-01-30 13:30:40 +01001160 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001161 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Jan Beulichf1182632009-01-14 12:27:35 +00001163 if (disable_apic) {
Ingo Molnar65a4e572009-01-31 03:36:17 +01001164 arch_disable_smp_support();
Jan Beulichf1182632009-01-14 12:27:35 +00001165 return;
1166 }
1167
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001168#ifdef CONFIG_X86_32
1169 /* Pound the ESR really hard over the head with a big hammer - mbligh */
Ingo Molnar08125d32009-01-28 05:08:44 +01001170 if (lapic_is_integrated() && apic->disable_esr) {
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001171 apic_write(APIC_ESR, 0);
1172 apic_write(APIC_ESR, 0);
1173 apic_write(APIC_ESR, 0);
1174 apic_write(APIC_ESR, 0);
1175 }
1176#endif
1177
Jack Steinerac23d4e2008-03-28 14:12:16 -05001178 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /*
1181 * Double-check whether this APIC is really registered.
1182 * This is meaningless in clustered apic mode, so we skip it.
1183 */
Ingo Molnar7ed248d2009-01-28 03:43:47 +01001184 if (!apic->apic_id_registered())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 BUG();
1186
1187 /*
1188 * Intel recommends to set DFR, LDR and TPR before enabling
1189 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1190 * document number 292116). So here it goes...
1191 */
Ingo Molnara5c43292009-01-28 06:50:47 +01001192 apic->init_apic_ldr();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /*
1195 * Set Task Priority to 'accept all'. We never change this
1196 * later on.
1197 */
1198 value = apic_read(APIC_TASKPRI);
1199 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001200 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001203 * After a crash, we no longer service the interrupts and a pending
1204 * interrupt from previous kernel might still have ISR bit set.
1205 *
1206 * Most probably by now CPU has serviced that pending interrupt and
1207 * it might not have done the ack_APIC_irq() because it thought,
1208 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1209 * does not clear the ISR bit and cpu thinks it has already serivced
1210 * the interrupt. Hence a vector might get locked. It was noticed
1211 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1212 */
1213 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1214 value = apic_read(APIC_ISR + i*0x10);
1215 for (j = 31; j >= 0; j--) {
1216 if (value & (1<<j))
1217 ack_APIC_irq();
1218 }
1219 }
1220
1221 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * Now that we are all set up, enable the APIC
1223 */
1224 value = apic_read(APIC_SPIV);
1225 value &= ~APIC_VECTOR_MASK;
1226 /*
1227 * Enable APIC
1228 */
1229 value |= APIC_SPIV_APIC_ENABLED;
1230
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001231#ifdef CONFIG_X86_32
1232 /*
1233 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1234 * certain networking cards. If high frequency interrupts are
1235 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1236 * entry is masked/unmasked at a high rate as well then sooner or
1237 * later IOAPIC line gets 'stuck', no more interrupts are received
1238 * from the device. If focus CPU is disabled then the hang goes
1239 * away, oh well :-(
1240 *
1241 * [ This bug can be reproduced easily with a level-triggered
1242 * PCI Ne2000 networking cards and PII/PIII processors, dual
1243 * BX chipset. ]
1244 */
1245 /*
1246 * Actually disabling the focus CPU check just makes the hang less
1247 * frequent as it makes the interrupt distributon model be more
1248 * like LRU than MRU (the short-term load is more even across CPUs).
1249 * See also the comment in end_level_ioapic_irq(). --macro
1250 */
1251
1252 /*
1253 * - enable focus processor (bit==0)
1254 * - 64bit mode always use processor focus
1255 * so no need to set it
1256 */
1257 value &= ~APIC_SPIV_FOCUS_DISABLED;
1258#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 /*
1261 * Set spurious IRQ vector
1262 */
1263 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001264 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 /*
1267 * Set up LVT0, LVT1:
1268 *
1269 * set up through-local-APIC on the BP's LINT0. This is not
1270 * strictly necessary in pure symmetric-IO mode, but sometimes
1271 * we delegate interrupts to the 8259A.
1272 */
1273 /*
1274 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1275 */
1276 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001277 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001279 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001280 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 } else {
1282 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001283 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001284 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001286 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 /*
1289 * only the BP should see the LINT1 NMI signal, obviously.
1290 */
1291 if (!smp_processor_id())
1292 value = APIC_DM_NMI;
1293 else
1294 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001295 if (!lapic_is_integrated()) /* 82489DX */
1296 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001297 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001298
Jack Steinerac23d4e2008-03-28 14:12:16 -05001299 preempt_enable();
Andi Kleenbe71b852009-02-12 13:49:38 +01001300
1301#ifdef CONFIG_X86_MCE_INTEL
1302 /* Recheck CMCI information after local APIC is up on CPU #0 */
1303 if (smp_processor_id() == 0)
1304 cmci_recheck();
1305#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001306}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Andi Kleen739f33b2008-01-30 13:30:40 +01001308void __cpuinit end_local_APIC_setup(void)
1309{
1310 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001311
1312#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001313 {
1314 unsigned int value;
1315 /* Disable the local apic timer */
1316 value = apic_read(APIC_LVTT);
1317 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1318 apic_write(APIC_LVTT, value);
1319 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001320#endif
1321
Don Zickusf2802e72006-09-26 10:52:26 +02001322 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 apic_pm_activate();
1324}
1325
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001326#ifdef CONFIG_X86_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001327void check_x2apic(void)
1328{
Suresh Siddhaef1f87a2009-02-21 14:23:21 -08001329 if (x2apic_enabled()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001330 pr_info("x2apic enabled by BIOS, switching to x2apic ops\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001331 x2apic_preenabled = x2apic = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001332 }
1333}
1334
1335void enable_x2apic(void)
1336{
1337 int msr, msr2;
1338
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001339 if (!x2apic)
1340 return;
1341
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001342 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1343 if (!(msr & X2APIC_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001344 pr_info("Enabling x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001345 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1346 }
1347}
1348
Al Viro2236d252008-11-22 17:37:34 +00001349void __init enable_IR_x2apic(void)
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001350{
1351#ifdef CONFIG_INTR_REMAP
1352 int ret;
1353 unsigned long flags;
Fenghua Yub24696b2009-03-27 14:22:44 -07001354 struct IO_APIC_route_entry **ioapic_entries = NULL;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001355
1356 if (!cpu_has_x2apic)
1357 return;
1358
1359 if (!x2apic_preenabled && disable_x2apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001360 pr_info("Skipped enabling x2apic and Interrupt-remapping "
1361 "because of nox2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001362 return;
1363 }
1364
1365 if (x2apic_preenabled && disable_x2apic)
1366 panic("Bios already enabled x2apic, can't enforce nox2apic");
1367
1368 if (!x2apic_preenabled && skip_ioapic_setup) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001369 pr_info("Skipped enabling x2apic and Interrupt-remapping "
1370 "because of skipping io-apic setup\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001371 return;
1372 }
1373
1374 ret = dmar_table_init();
1375 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001376 pr_info("dmar_table_init() failed with %d:\n", ret);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001377
1378 if (x2apic_preenabled)
1379 panic("x2apic enabled by bios. But IR enabling failed");
1380 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001381 pr_info("Not enabling x2apic,Intr-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001382 return;
1383 }
1384
Fenghua Yub24696b2009-03-27 14:22:44 -07001385 ioapic_entries = alloc_ioapic_entries();
1386 if (!ioapic_entries) {
1387 pr_info("Allocate ioapic_entries failed: %d\n", ret);
1388 goto end;
1389 }
1390
1391 ret = save_IO_APIC_setup(ioapic_entries);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001392 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001393 pr_info("Saving IO-APIC state failed: %d\n", ret);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001394 goto end;
1395 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001396
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001397 local_irq_save(flags);
Fenghua Yub24696b2009-03-27 14:22:44 -07001398 mask_IO_APIC_setup(ioapic_entries);
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001399 mask_8259A();
1400
Fenghua Yub24696b2009-03-27 14:22:44 -07001401 ret = enable_intr_remapping(EIM_32BIT_APIC_ID);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001402
1403 if (ret && x2apic_preenabled) {
1404 local_irq_restore(flags);
1405 panic("x2apic enabled by bios. But IR enabling failed");
1406 }
1407
1408 if (ret)
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001409 goto end_restore;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001410
1411 if (!x2apic) {
1412 x2apic = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001413 enable_x2apic();
1414 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001415
1416end_restore:
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001417 if (ret)
1418 /*
1419 * IR enabling failed
1420 */
Fenghua Yub24696b2009-03-27 14:22:44 -07001421 restore_IO_APIC_setup(ioapic_entries);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001422 else
Fenghua Yub24696b2009-03-27 14:22:44 -07001423 reinit_intr_remapped_IO_APIC(x2apic_preenabled, ioapic_entries);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001424
1425 unmask_8259A();
1426 local_irq_restore(flags);
1427
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001428end:
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001429 if (!ret) {
1430 if (!x2apic_preenabled)
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001431 pr_info("Enabled x2apic and interrupt-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001432 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001433 pr_info("Enabled Interrupt-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001434 } else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001435 pr_err("Failed to enable Interrupt-remapping and x2apic\n");
Fenghua Yub24696b2009-03-27 14:22:44 -07001436 if (ioapic_entries)
1437 free_ioapic_entries(ioapic_entries);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001438#else
1439 if (!cpu_has_x2apic)
1440 return;
1441
1442 if (x2apic_preenabled)
1443 panic("x2apic enabled prior OS handover,"
1444 " enable CONFIG_INTR_REMAP");
1445
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001446 pr_info("Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1447 " and x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001448#endif
1449
1450 return;
1451}
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001452#endif /* CONFIG_X86_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001453
Yinghai Lube7a6562008-08-24 02:01:51 -07001454#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001455/*
1456 * Detect and enable local APICs on non-SMP boards.
1457 * Original code written by Keir Fraser.
1458 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1459 * not correctly set up (usually the APIC timer won't work etc.)
1460 */
1461static int __init detect_init_APIC(void)
1462{
1463 if (!cpu_has_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001464 pr_info("No local APIC present\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001465 return -1;
1466 }
1467
1468 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001469 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001470 return 0;
1471}
Yinghai Lube7a6562008-08-24 02:01:51 -07001472#else
1473/*
1474 * Detect and initialize APIC
1475 */
1476static int __init detect_init_APIC(void)
1477{
1478 u32 h, l, features;
1479
1480 /* Disabled by kernel option? */
1481 if (disable_apic)
1482 return -1;
1483
1484 switch (boot_cpu_data.x86_vendor) {
1485 case X86_VENDOR_AMD:
1486 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
Borislav Petkov85877062009-02-03 16:24:22 +01001487 (boot_cpu_data.x86 >= 15))
Yinghai Lube7a6562008-08-24 02:01:51 -07001488 break;
1489 goto no_apic;
1490 case X86_VENDOR_INTEL:
1491 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1492 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1493 break;
1494 goto no_apic;
1495 default:
1496 goto no_apic;
1497 }
1498
1499 if (!cpu_has_apic) {
1500 /*
1501 * Over-ride BIOS and try to enable the local APIC only if
1502 * "lapic" specified.
1503 */
1504 if (!force_enable_local_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001505 pr_info("Local APIC disabled by BIOS -- "
1506 "you can enable it with \"lapic\"\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001507 return -1;
1508 }
1509 /*
1510 * Some BIOSes disable the local APIC in the APIC_BASE
1511 * MSR. This can only be done in software for Intel P6 or later
1512 * and AMD K7 (Model > 1) or later.
1513 */
1514 rdmsr(MSR_IA32_APICBASE, l, h);
1515 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001516 pr_info("Local APIC disabled by BIOS -- reenabling.\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001517 l &= ~MSR_IA32_APICBASE_BASE;
1518 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1519 wrmsr(MSR_IA32_APICBASE, l, h);
1520 enabled_via_apicbase = 1;
1521 }
1522 }
1523 /*
1524 * The APIC feature bit should now be enabled
1525 * in `cpuid'
1526 */
1527 features = cpuid_edx(1);
1528 if (!(features & (1 << X86_FEATURE_APIC))) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001529 pr_warning("Could not enable APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001530 return -1;
1531 }
1532 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1533 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1534
1535 /* The BIOS may have set up the APIC at some other address */
1536 rdmsr(MSR_IA32_APICBASE, l, h);
1537 if (l & MSR_IA32_APICBASE_ENABLE)
1538 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1539
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001540 pr_info("Found and enabled local APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001541
1542 apic_pm_activate();
1543
1544 return 0;
1545
1546no_apic:
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001547 pr_info("No local APIC present or hardware disabled\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001548 return -1;
1549}
1550#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001551
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001552#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001553void __init early_init_lapic_mapping(void)
1554{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001555 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001556
1557 /*
1558 * If no local APIC can be found then go out
1559 * : it means there is no mpatable and MADT
1560 */
1561 if (!smp_found_config)
1562 return;
1563
Thomas Gleixner431ee792008-05-12 15:43:35 +02001564 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001565
Thomas Gleixner431ee792008-05-12 15:43:35 +02001566 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001567 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001568 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001569
1570 /*
1571 * Fetch the APIC ID of the BSP in case we have a
1572 * default configuration (or the MP table is broken).
1573 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001574 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001575}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001576#endif
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001577
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001578/**
1579 * init_apic_mappings - initialize APIC mappings
1580 */
1581void __init init_apic_mappings(void)
1582{
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001583 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001584 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001585 return;
1586 }
1587
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001588 /*
1589 * If no local APIC can be found then set up a fake all
1590 * zeroes page to simulate the local APIC and another
1591 * one for the IO-APIC.
1592 */
1593 if (!smp_found_config && detect_init_APIC()) {
1594 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1595 apic_phys = __pa(apic_phys);
1596 } else
1597 apic_phys = mp_lapic_addr;
1598
1599 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
Yinghai Lu79c09692008-09-07 17:58:57 -07001600 apic_printk(APIC_VERBOSE, "mapped APIC to %08lx (%08lx)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001601 APIC_BASE, apic_phys);
1602
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001603 /*
1604 * Fetch the APIC ID of the BSP in case we have a
1605 * default configuration (or the MP table is broken).
1606 */
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001607 if (boot_cpu_physical_apicid == -1U)
1608 boot_cpu_physical_apicid = read_apic_id();
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +04001609
1610 /* lets check if we may to NOP'ify apic operations */
1611 if (!cpu_has_apic) {
1612 pr_info("APIC: disable apic facility\n");
1613 apic_disable();
1614 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001615}
1616
1617/*
1618 * This initializes the IO-APIC and APIC hardware if this is
1619 * a UP kernel.
1620 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001621int apic_version[MAX_APICS];
1622
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001623int __init APIC_init_uniprocessor(void)
1624{
1625 if (disable_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001626 pr_info("Apic disabled\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001627 return -1;
1628 }
Jan Beulichf1182632009-01-14 12:27:35 +00001629#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001630 if (!cpu_has_apic) {
1631 disable_apic = 1;
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001632 pr_info("Apic disabled by BIOS\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001633 return -1;
1634 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001635#else
1636 if (!smp_found_config && !cpu_has_apic)
1637 return -1;
1638
1639 /*
1640 * Complain if the BIOS pretends there is one.
1641 */
1642 if (!cpu_has_apic &&
1643 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001644 pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
1645 boot_cpu_physical_apicid);
Yinghai Lufa2bd352008-08-24 02:01:50 -07001646 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1647 return -1;
1648 }
1649#endif
1650
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001651 enable_IR_x2apic();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001652#ifdef CONFIG_X86_64
Ingo Molnar72ce0162009-01-28 06:50:47 +01001653 default_setup_apic_routing();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001654#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001655
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001656 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001657 connect_bsp_APIC();
1658
Yinghai Lufa2bd352008-08-24 02:01:50 -07001659#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001660 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001661#else
1662 /*
1663 * Hack: In case of kdump, after a crash, kernel might be booting
1664 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1665 * might be zero if read from MP tables. Get it from LAPIC.
1666 */
1667# ifdef CONFIG_CRASH_DUMP
1668 boot_cpu_physical_apicid = read_apic_id();
1669# endif
1670#endif
1671 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001672 setup_local_APIC();
1673
Yinghai Lu88d0f552009-02-14 23:57:28 -08001674#ifdef CONFIG_X86_IO_APIC
Andi Kleen739f33b2008-01-30 13:30:40 +01001675 /*
1676 * Now enable IO-APICs, actually call clear_IO_APIC
Yinghai Lu98c061b2009-02-16 00:00:50 -08001677 * We need clear_IO_APIC before enabling error vector
Andi Kleen739f33b2008-01-30 13:30:40 +01001678 */
1679 if (!skip_ioapic_setup && nr_ioapics)
1680 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001681#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001682
1683 end_local_APIC_setup();
1684
Yinghai Lufa2bd352008-08-24 02:01:50 -07001685#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001686 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1687 setup_IO_APIC();
Yinghai Lu98c061b2009-02-16 00:00:50 -08001688 else {
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001689 nr_ioapics = 0;
Yinghai Lu98c061b2009-02-16 00:00:50 -08001690 localise_nmi_watchdog();
1691 }
1692#else
1693 localise_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001694#endif
1695
Yinghai Lufa2bd352008-08-24 02:01:50 -07001696 setup_boot_clock();
Yinghai Lu98c061b2009-02-16 00:00:50 -08001697#ifdef CONFIG_X86_64
1698 check_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001699#endif
1700
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001701 return 0;
1702}
1703
1704/*
1705 * Local APIC interrupts
1706 */
1707
1708/*
1709 * This interrupt should _never_ happen with our APIC/SMP architecture
1710 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001711void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001712{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001713 u32 v;
1714
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001715 exit_idle();
1716 irq_enter();
1717 /*
1718 * Check if this really is a spurious interrupt and ACK it
1719 * if it is a vectored one. Just in case...
1720 * Spurious interrupts should not be ACKed.
1721 */
1722 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1723 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1724 ack_APIC_irq();
1725
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -08001726 inc_irq_stat(irq_spurious_count);
1727
Yinghai Ludc1528d2008-08-24 02:01:53 -07001728 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001729 pr_info("spurious APIC interrupt on CPU#%d, "
1730 "should never happen.\n", smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001731 irq_exit();
1732}
1733
1734/*
1735 * This interrupt should never happen with our APIC/SMP architecture
1736 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001737void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001738{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001739 u32 v, v1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001740
1741 exit_idle();
1742 irq_enter();
1743 /* First tickle the hardware, only then report what went on. -- REW */
1744 v = apic_read(APIC_ESR);
1745 apic_write(APIC_ESR, 0);
1746 v1 = apic_read(APIC_ESR);
1747 ack_APIC_irq();
1748 atomic_inc(&irq_err_count);
1749
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001750 /*
1751 * Here is what the APIC error bits mean:
1752 * 0: Send CS error
1753 * 1: Receive CS error
1754 * 2: Send accept error
1755 * 3: Receive accept error
1756 * 4: Reserved
1757 * 5: Send illegal vector
1758 * 6: Received illegal vector
1759 * 7: Illegal register address
1760 */
1761 pr_debug("APIC error on CPU%d: %02x(%02x)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001762 smp_processor_id(), v , v1);
1763 irq_exit();
1764}
1765
Glauber Costab5841762008-05-28 13:38:28 -03001766/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001767 * connect_bsp_APIC - attach the APIC to the interrupt system
1768 */
Glauber Costab5841762008-05-28 13:38:28 -03001769void __init connect_bsp_APIC(void)
1770{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001771#ifdef CONFIG_X86_32
1772 if (pic_mode) {
1773 /*
1774 * Do not trust the local APIC being empty at bootup.
1775 */
1776 clear_local_APIC();
1777 /*
1778 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1779 * local APIC to INT and NMI lines.
1780 */
1781 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1782 "enabling APIC mode.\n");
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +04001783 imcr_pic_to_apic();
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001784 }
1785#endif
Ingo Molnar49040332009-01-28 12:43:18 +01001786 if (apic->enable_apic_mode)
1787 apic->enable_apic_mode();
Glauber Costab5841762008-05-28 13:38:28 -03001788}
1789
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001790/**
1791 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1792 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1793 *
1794 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1795 * APIC is disabled.
1796 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001797void disconnect_bsp_APIC(int virt_wire_setup)
1798{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001799 unsigned int value;
1800
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001801#ifdef CONFIG_X86_32
1802 if (pic_mode) {
1803 /*
1804 * Put the board back into PIC mode (has an effect only on
1805 * certain older boards). Note that APIC interrupts, including
1806 * IPIs, won't work beyond this point! The only exception are
1807 * INIT IPIs.
1808 */
1809 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1810 "entering PIC mode.\n");
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +04001811 imcr_apic_to_pic();
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001812 return;
1813 }
1814#endif
1815
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001816 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001817
1818 /* For the spurious interrupt use vector F, and enable it */
1819 value = apic_read(APIC_SPIV);
1820 value &= ~APIC_VECTOR_MASK;
1821 value |= APIC_SPIV_APIC_ENABLED;
1822 value |= 0xf;
1823 apic_write(APIC_SPIV, value);
1824
1825 if (!virt_wire_setup) {
1826 /*
1827 * For LVT0 make it edge triggered, active high,
1828 * external and enabled
1829 */
1830 value = apic_read(APIC_LVT0);
1831 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1832 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1833 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1834 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1835 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1836 apic_write(APIC_LVT0, value);
1837 } else {
1838 /* Disable LVT0 */
1839 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1840 }
1841
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001842 /*
1843 * For LVT1 make it edge triggered, active high,
1844 * nmi and enabled
1845 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001846 value = apic_read(APIC_LVT1);
1847 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1848 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1849 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1850 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1851 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1852 apic_write(APIC_LVT1, value);
1853}
1854
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001855void __cpuinit generic_processor_info(int apicid, int version)
1856{
1857 int cpu;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001858
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001859 /*
1860 * Validate version
1861 */
1862 if (version == 0x0) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001863 pr_warning("BIOS bug, APIC version is 0 for CPU#%d! "
Mike Travis3b11ce72008-12-17 15:21:39 -08001864 "fixing up to 0x10. (tell your hw vendor)\n",
1865 version);
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001866 version = 0x10;
1867 }
1868 apic_version[apicid] = version;
1869
Mike Travis3b11ce72008-12-17 15:21:39 -08001870 if (num_processors >= nr_cpu_ids) {
1871 int max = nr_cpu_ids;
1872 int thiscpu = max + disabled_cpus;
1873
1874 pr_warning(
1875 "ACPI: NR_CPUS/possible_cpus limit of %i reached."
1876 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
1877
1878 disabled_cpus++;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001879 return;
1880 }
1881
1882 num_processors++;
Mike Travis3b11ce72008-12-17 15:21:39 -08001883 cpu = cpumask_next_zero(-1, cpu_present_mask);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001884
Mike Travisb2b815d2009-01-16 15:22:16 -08001885 if (version != apic_version[boot_cpu_physical_apicid])
1886 WARN_ONCE(1,
1887 "ACPI: apic version mismatch, bootcpu: %x cpu %d: %x\n",
1888 apic_version[boot_cpu_physical_apicid], cpu, version);
1889
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001890 physid_set(apicid, phys_cpu_present_map);
1891 if (apicid == boot_cpu_physical_apicid) {
1892 /*
1893 * x86_bios_cpu_apicid is required to have processors listed
1894 * in same order as logical cpu numbers. Hence the first
1895 * entry is BSP, and so on.
1896 */
1897 cpu = 0;
1898 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001899 if (apicid > max_physical_apicid)
1900 max_physical_apicid = apicid;
1901
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001902#ifdef CONFIG_X86_32
1903 /*
1904 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1905 * but we need to work other dependencies like SMP_SUSPEND etc
1906 * before this can be done without some confusion.
1907 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1908 * - Ashok Raj <ashok.raj@intel.com>
1909 */
1910 if (max_physical_apicid >= 8) {
1911 switch (boot_cpu_data.x86_vendor) {
1912 case X86_VENDOR_INTEL:
1913 if (!APIC_XAPIC(version)) {
1914 def_to_bigsmp = 0;
1915 break;
1916 }
1917 /* If P4 and above fall through */
1918 case X86_VENDOR_AMD:
1919 def_to_bigsmp = 1;
1920 }
1921 }
1922#endif
1923
Ingo Molnar3e5095d2009-01-27 17:07:08 +01001924#if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
Tejun Heof10fcd42009-01-13 20:41:34 +09001925 early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1926 early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001927#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001928
Mike Travis1de88cd2008-12-16 17:34:02 -08001929 set_cpu_possible(cpu, true);
1930 set_cpu_present(cpu, true);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001931}
1932
Suresh Siddha0c81c742008-07-10 11:16:48 -07001933int hard_smp_processor_id(void)
1934{
1935 return read_apic_id();
1936}
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +01001937
1938void default_init_apic_ldr(void)
1939{
1940 unsigned long val;
1941
1942 apic_write(APIC_DFR, APIC_DFR_VALUE);
1943 val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
1944 val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
1945 apic_write(APIC_LDR, val);
1946}
1947
1948#ifdef CONFIG_X86_32
1949int default_apicid_to_node(int logical_apicid)
1950{
1951#ifdef CONFIG_SMP
1952 return apicid_2_node[hard_smp_processor_id()];
1953#else
1954 return 0;
1955#endif
1956}
Yinghai Lu34919982008-08-24 02:01:48 -07001957#endif
Suresh Siddha0c81c742008-07-10 11:16:48 -07001958
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001959/*
1960 * Power management
1961 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962#ifdef CONFIG_PM
1963
1964static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001965 /*
1966 * 'active' is true if the local APIC was enabled by us and
1967 * not the BIOS; this signifies that we are also responsible
1968 * for disabling it before entering apm/acpi suspend
1969 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 int active;
1971 /* r/w apic fields */
1972 unsigned int apic_id;
1973 unsigned int apic_taskpri;
1974 unsigned int apic_ldr;
1975 unsigned int apic_dfr;
1976 unsigned int apic_spiv;
1977 unsigned int apic_lvtt;
1978 unsigned int apic_lvtpc;
1979 unsigned int apic_lvt0;
1980 unsigned int apic_lvt1;
1981 unsigned int apic_lvterr;
1982 unsigned int apic_tmict;
1983 unsigned int apic_tdcr;
1984 unsigned int apic_thmr;
1985} apic_pm_state;
1986
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001987static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
1989 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001990 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 if (!apic_pm_state.active)
1993 return 0;
1994
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001995 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001996
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001997 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1999 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
2000 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
2001 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
2002 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01002003 if (maxlvt >= 4)
2004 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
2006 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
2007 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
2008 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
2009 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04002010#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002011 if (maxlvt >= 5)
2012 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
2013#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04002014
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02002015 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 disable_local_APIC();
Fenghua Yub24696b2009-03-27 14:22:44 -07002017#ifdef CONFIG_INTR_REMAP
2018 if (intr_remapping_enabled)
2019 disable_intr_remapping();
2020#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 local_irq_restore(flags);
2022 return 0;
2023}
2024
2025static int lapic_resume(struct sys_device *dev)
2026{
2027 unsigned int l, h;
2028 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01002029 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Fenghua Yub24696b2009-03-27 14:22:44 -07002031#ifdef CONFIG_INTR_REMAP
2032 int ret;
2033 struct IO_APIC_route_entry **ioapic_entries = NULL;
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 if (!apic_pm_state.active)
2036 return 0;
2037
Fenghua Yub24696b2009-03-27 14:22:44 -07002038 local_irq_save(flags);
2039 if (x2apic) {
2040 ioapic_entries = alloc_ioapic_entries();
2041 if (!ioapic_entries) {
2042 WARN(1, "Alloc ioapic_entries in lapic resume failed.");
2043 return -ENOMEM;
2044 }
2045
2046 ret = save_IO_APIC_setup(ioapic_entries);
2047 if (ret) {
2048 WARN(1, "Saving IO-APIC state failed: %d\n", ret);
2049 free_ioapic_entries(ioapic_entries);
2050 return ret;
2051 }
2052
2053 mask_IO_APIC_setup(ioapic_entries);
2054 mask_8259A();
2055 enable_x2apic();
2056 }
2057#else
2058 if (!apic_pm_state.active)
2059 return 0;
Karsten Wiesef990fff2006-12-07 02:14:11 +01002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002062 if (x2apic)
2063 enable_x2apic();
Fenghua Yub24696b2009-03-27 14:22:44 -07002064#endif
2065
Suresh Siddhacf6567f2009-03-16 17:05:00 -07002066 else {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002067 /*
2068 * Make sure the APICBASE points to the right address
2069 *
2070 * FIXME! This will be wrong if we ever support suspend on
2071 * SMP! We'll need to do this as part of the CPU restore!
2072 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002073 rdmsr(MSR_IA32_APICBASE, l, h);
2074 l &= ~MSR_IA32_APICBASE_BASE;
2075 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2076 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07002077 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002078
Fenghua Yub24696b2009-03-27 14:22:44 -07002079 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2081 apic_write(APIC_ID, apic_pm_state.apic_id);
2082 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2083 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2084 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2085 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2086 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2087 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002088#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002089 if (maxlvt >= 5)
2090 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2091#endif
2092 if (maxlvt >= 4)
2093 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2095 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2096 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2097 apic_write(APIC_ESR, 0);
2098 apic_read(APIC_ESR);
2099 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2100 apic_write(APIC_ESR, 0);
2101 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002102
Fenghua Yub24696b2009-03-27 14:22:44 -07002103#ifdef CONFIG_INTR_REMAP
2104 if (intr_remapping_enabled)
2105 reenable_intr_remapping(EIM_32BIT_APIC_ID);
2106
2107 if (x2apic) {
2108 unmask_8259A();
2109 restore_IO_APIC_setup(ioapic_entries);
2110 free_ioapic_entries(ioapic_entries);
2111 }
2112#endif
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002115
Fenghua Yub24696b2009-03-27 14:22:44 -07002116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 return 0;
2118}
2119
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002120/*
2121 * This device has no shutdown method - fully functioning local APICs
2122 * are needed on every CPU up until machine_halt/restart/poweroff.
2123 */
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002126 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 .resume = lapic_resume,
2128 .suspend = lapic_suspend,
2129};
2130
2131static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002132 .id = 0,
2133 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134};
2135
Ashok Raje6982c62005-06-25 14:54:58 -07002136static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 apic_pm_state.active = 1;
2139}
2140
2141static int __init init_lapic_sysfs(void)
2142{
2143 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 if (!cpu_has_apic)
2146 return 0;
2147 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 error = sysdev_class_register(&lapic_sysclass);
2150 if (!error)
2151 error = sysdev_register(&device_lapic);
2152 return error;
2153}
Fenghua Yub24696b2009-03-27 14:22:44 -07002154
2155/* local apic needs to resume before other devices access its registers. */
2156core_initcall(init_lapic_sysfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158#else /* CONFIG_PM */
2159
2160static void apic_pm_activate(void) { }
2161
2162#endif /* CONFIG_PM */
2163
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002164#ifdef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002166 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 *
2168 * Thus far, the major user of this is IBM's Summit2 series:
2169 *
Linus Torvalds637029c2006-02-27 20:41:56 -08002170 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 * multi-chassis. Use available data to take a good guess.
2172 * If in doubt, go HPET.
2173 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002174__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
2176 int i, clusters, zeros;
2177 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08002178 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
2180
Yinghai Lu322850a2008-02-23 21:48:42 -08002181 /*
2182 * there is not this kind of box with AMD CPU yet.
2183 * Some AMD box with quadcore cpu and 8 sockets apicid
2184 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08002185 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08002186 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002187 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08002188 return 0;
2189
Mike Travis23ca4bb2008-05-12 21:21:12 +02002190 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07002191 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Mike Travis168ef542008-12-16 17:34:01 -08002193 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002194 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01002195 if (bios_cpu_apicid) {
2196 id = bios_cpu_apicid[i];
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302197 } else if (i < nr_cpu_ids) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002198 if (cpu_present(i))
2199 id = per_cpu(x86_bios_cpu_apicid, i);
2200 else
2201 continue;
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302202 } else
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002203 break;
2204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (id != BAD_APICID)
2206 __set_bit(APIC_CLUSTERID(id), clustermap);
2207 }
2208
2209 /* Problem: Partially populated chassis may not have CPUs in some of
2210 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01002211 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
2212 * Since clusters are allocated sequentially, count zeros only if
2213 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 */
2215 clusters = 0;
2216 zeros = 0;
2217 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
2218 if (test_bit(i, clustermap)) {
2219 clusters += 1 + zeros;
2220 zeros = 0;
2221 } else
2222 ++zeros;
2223 }
2224
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002225 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
2226 * not guaranteed to be synced between boards
2227 */
2228 if (is_vsmp_box() && clusters > 1)
2229 return 1;
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002232 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 * May have to revisit this when multi-core + hyperthreaded CPUs come
2234 * out, but AFAIK this will work even for them.
2235 */
2236 return (clusters > 2);
2237}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002238#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002241 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002243static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002246 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002247 return 0;
2248}
2249early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002251/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002252static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002253{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002254 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002255}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002256early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002258static int __init parse_lapic_timer_c2_ok(char *arg)
2259{
2260 local_apic_timer_c2_ok = 1;
2261 return 0;
2262}
2263early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2264
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002265static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002266{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002268 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002269}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002270early_param("noapictimer", parse_disable_apic_timer);
2271
2272static int __init parse_nolapic_timer(char *arg)
2273{
2274 disable_apic_timer = 1;
2275 return 0;
2276}
2277early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002278
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002279static int __init apic_set_verbosity(char *arg)
2280{
2281 if (!arg) {
2282#ifdef CONFIG_X86_64
2283 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002284 return 0;
2285#endif
2286 return -EINVAL;
2287 }
2288
2289 if (strcmp("debug", arg) == 0)
2290 apic_verbosity = APIC_DEBUG;
2291 else if (strcmp("verbose", arg) == 0)
2292 apic_verbosity = APIC_VERBOSE;
2293 else {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01002294 pr_warning("APIC Verbosity level %s not recognised"
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002295 " use apic=verbose or apic=debug\n", arg);
2296 return -EINVAL;
2297 }
2298
2299 return 0;
2300}
2301early_param("apic", apic_set_verbosity);
2302
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002303static int __init lapic_insert_resource(void)
2304{
2305 if (!apic_phys)
2306 return -1;
2307
2308 /* Put local APIC into the resource map. */
2309 lapic_resource.start = apic_phys;
2310 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2311 insert_resource(&iomem_resource, &lapic_resource);
2312
2313 return 0;
2314}
2315
2316/*
2317 * need call insert after e820_reserve_resources()
2318 * that is using request_resource
2319 */
2320late_initcall(lapic_insert_resource);