blob: 07cffc1214cbdae77b09de504d218f1645936572 [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
Suresh Siddhafc1edaf2009-04-20 13:02:27 -0700137int x2apic_mode;
Yinghai Lu06cd9a72009-02-16 17:29:58 -0800138#ifdef CONFIG_X86_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{
Suresh Siddha39d83a52009-04-20 13:02:29 -0700144 if (x2apic_enabled()) {
145 pr_warning("Bios already enabled x2apic, "
146 "can't enforce nox2apic");
147 return 0;
148 }
149
Yinghai Lu49899ea2008-08-24 02:01:47 -0700150 disable_x2apic = 1;
151 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
152 return 0;
153}
154early_param("nox2apic", setup_nox2apic);
155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Yinghai Lub3c51172008-08-24 02:01:46 -0700157unsigned long mp_lapic_addr;
158int disable_apic;
159/* Disable local APIC timer from the kernel commandline or via dmi quirk */
160static int disable_apic_timer __cpuinitdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100161/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -0700162int local_apic_timer_c2_ok;
163EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
164
Yinghai Luefa25592008-08-19 20:50:36 -0700165int first_system_vector = 0xfe;
166
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100167/*
168 * Debug level, exported for io_apic.c
169 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100170unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100171
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700172int pic_mode;
173
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400174/* Have we found an MP table */
175int smp_found_config;
176
Aaron Durbin39928722006-12-07 02:14:01 +0100177static struct resource lapic_resource = {
178 .name = "Local APIC",
179 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
180};
181
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200182static unsigned int calibration_result;
183
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200184static int lapic_next_event(unsigned long delta,
185 struct clock_event_device *evt);
186static void lapic_timer_setup(enum clock_event_mode mode,
187 struct clock_event_device *evt);
Mike Travis96289372008-12-31 18:08:46 -0800188static void lapic_timer_broadcast(const struct cpumask *mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100189static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200190
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400191/*
192 * The local apic timer can be used for any function which is CPU local.
193 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200194static struct clock_event_device lapic_clockevent = {
195 .name = "lapic",
196 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
197 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
198 .shift = 32,
199 .set_mode = lapic_timer_setup,
200 .set_next_event = lapic_next_event,
201 .broadcast = lapic_timer_broadcast,
202 .rating = 100,
203 .irq = -1,
204};
205static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
206
Andi Kleend3432892008-01-30 13:33:17 +0100207static unsigned long apic_phys;
208
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100209/*
210 * Get the LAPIC version
211 */
212static inline int lapic_get_version(void)
213{
214 return GET_APIC_VERSION(apic_read(APIC_LVR));
215}
216
217/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400218 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100219 */
220static inline int lapic_is_integrated(void)
221{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400222#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100223 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400224#else
225 return APIC_INTEGRATED(lapic_get_version());
226#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100227}
228
229/*
230 * Check, whether this is a modern or a first generation APIC
231 */
232static int modern_apic(void)
233{
234 /* AMD systems use old APIC versions, so check the CPU */
235 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
236 boot_cpu_data.x86 >= 0xf)
237 return 1;
238 return lapic_get_version() >= 0x14;
239}
240
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400241/*
242 * bare function to substitute write operation
243 * and it's _that_ fast :)
244 */
245void native_apic_write_dummy(u32 reg, u32 v)
246{
247 WARN_ON_ONCE((cpu_has_apic || !disable_apic));
248}
249
250/*
251 * right after this call apic->write doesn't do anything
252 * note that there is no restore operation it works one way
253 */
254void apic_disable(void)
255{
256 apic->write = native_apic_write_dummy;
257}
258
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800259void native_apic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100260{
261 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
262 cpu_relax();
263}
264
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800265u32 native_safe_apic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100266{
267 u32 send_status;
268 int timeout;
269
270 timeout = 0;
271 do {
272 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
273 if (!send_status)
274 break;
275 udelay(100);
276 } while (timeout++ < 1000);
277
278 return send_status;
279}
280
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800281void native_apic_icr_write(u32 low, u32 id)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700282{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200283 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700284 apic_write(APIC_ICR, low);
285}
286
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800287u64 native_apic_icr_read(void)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700288{
289 u32 icr1, icr2;
290
291 icr2 = apic_read(APIC_ICR2);
292 icr1 = apic_read(APIC_ICR);
293
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400294 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700295}
296
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100297/**
298 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
299 */
Jan Beuliche9427102008-01-30 13:31:24 +0100300void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100301{
302 unsigned int v;
303
304 /* unmask and set to NMI */
305 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200306
307 /* Level triggered for 82489DX (32bit mode) */
308 if (!lapic_is_integrated())
309 v |= APIC_LVT_LEVEL_TRIGGER;
310
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100311 apic_write(APIC_LVT0, v);
312}
313
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700314#ifdef CONFIG_X86_32
315/**
316 * get_physical_broadcast - Get number of physical broadcast IDs
317 */
318int get_physical_broadcast(void)
319{
320 return modern_apic() ? 0xff : 0xf;
321}
322#endif
323
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100324/**
325 * lapic_get_maxlvt - get the maximum number of local vector table entries
326 */
327int lapic_get_maxlvt(void)
328{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200329 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100330
331 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200332 /*
333 * - we always have APIC integrated on 64bit mode
334 * - 82489DXs do not report # of LVT entries
335 */
336 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100337}
338
339/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400340 * Local APIC timer
341 */
342
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400343/* Clock divisor */
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400344#define APIC_DIVISOR 16
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200345
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100346/*
347 * This function sets up the local APIC timer, with a timeout of
348 * 'clocks' APIC bus clock. During calibration we actually call
349 * this function twice on the boot CPU, once with a bogus timeout
350 * value, second time for real. The other (noncalibrating) CPUs
351 * call this function only once, with the real, calibrated value.
352 *
353 * We do reads before writes even if unnecessary, to get around the
354 * P5 APIC double write bug.
355 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100356static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
357{
358 unsigned int lvtt_value, tmp_value;
359
360 lvtt_value = LOCAL_TIMER_VECTOR;
361 if (!oneshot)
362 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200363 if (!lapic_is_integrated())
364 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
365
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100366 if (!irqen)
367 lvtt_value |= APIC_LVT_MASKED;
368
369 apic_write(APIC_LVTT, lvtt_value);
370
371 /*
372 * Divide PICLK by 16
373 */
374 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400375 apic_write(APIC_TDCR,
376 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
377 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100378
379 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200380 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100381}
382
383/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100384 * Setup extended LVT, AMD specific (K8, family 10h)
385 *
386 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
387 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200388 *
389 * If mask=1, the LVT entry does not generate interrupts while mask=0
390 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100391 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100392
393#define APIC_EILVT_LVTOFF_MCE 0
394#define APIC_EILVT_LVTOFF_IBS 1
395
396static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100397{
Andreas Herrmann97a52712009-05-08 18:23:50 +0200398 unsigned long reg = (lvt_off << 4) + APIC_EILVTn(0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100399 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
400
401 apic_write(reg, v);
402}
403
Robert Richter7b83dae2008-01-30 13:30:40 +0100404u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
405{
406 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
407 return APIC_EILVT_LVTOFF_MCE;
408}
409
410u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
411{
412 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
413 return APIC_EILVT_LVTOFF_IBS;
414}
Robert Richter6aa360e2008-07-23 15:28:14 +0200415EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100416
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100417/*
418 * Program the next event, relative to now
419 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200420static int lapic_next_event(unsigned long delta,
421 struct clock_event_device *evt)
422{
423 apic_write(APIC_TMICT, delta);
424 return 0;
425}
426
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100427/*
428 * Setup the lapic timer in periodic or oneshot mode
429 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200430static void lapic_timer_setup(enum clock_event_mode mode,
431 struct clock_event_device *evt)
432{
433 unsigned long flags;
434 unsigned int v;
435
436 /* Lapic used as dummy for broadcast ? */
437 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
438 return;
439
440 local_irq_save(flags);
441
442 switch (mode) {
443 case CLOCK_EVT_MODE_PERIODIC:
444 case CLOCK_EVT_MODE_ONESHOT:
445 __setup_APIC_LVTT(calibration_result,
446 mode != CLOCK_EVT_MODE_PERIODIC, 1);
447 break;
448 case CLOCK_EVT_MODE_UNUSED:
449 case CLOCK_EVT_MODE_SHUTDOWN:
450 v = apic_read(APIC_LVTT);
451 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
452 apic_write(APIC_LVTT, v);
Thomas Gleixnera98f8fd2008-11-06 01:13:39 +0100453 apic_write(APIC_TMICT, 0xffffffff);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200454 break;
455 case CLOCK_EVT_MODE_RESUME:
456 /* Nothing to do here */
457 break;
458 }
459
460 local_irq_restore(flags);
461}
462
463/*
464 * Local APIC timer broadcast function
465 */
Mike Travis96289372008-12-31 18:08:46 -0800466static void lapic_timer_broadcast(const struct cpumask *mask)
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200467{
468#ifdef CONFIG_SMP
Ingo Molnardac5f412009-01-28 15:42:24 +0100469 apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200470#endif
471}
472
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100473/*
474 * Setup the local APIC timer for this CPU. Copy the initilized values
475 * of the boot CPU and register the clock event in the framework.
476 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700477static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200478{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100479 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
480
Venkatesh Pallipadidb954b52009-04-06 18:51:29 -0700481 if (cpu_has(&current_cpu_data, X86_FEATURE_ARAT)) {
482 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
483 /* Make LAPIC timer preferrable over percpu HPET */
484 lapic_clockevent.rating = 150;
485 }
486
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100487 memcpy(levt, &lapic_clockevent, sizeof(*levt));
Rusty Russell320ab2b2008-12-13 21:20:26 +1030488 levt->cpumask = cpumask_of(smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100489
490 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200491}
492
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700493/*
494 * In this functions we calibrate APIC bus clocks to the external timer.
495 *
496 * We want to do the calibration only once since we want to have local timer
497 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
498 * frequency.
499 *
500 * This was previously done by reading the PIT/HPET and waiting for a wrap
501 * around to find out, that a tick has elapsed. I have a box, where the PIT
502 * readout is broken, so it never gets out of the wait loop again. This was
503 * also reported by others.
504 *
505 * Monitoring the jiffies value is inaccurate and the clockevents
506 * infrastructure allows us to do a simple substitution of the interrupt
507 * handler.
508 *
509 * The calibration routine also uses the pm_timer when possible, as the PIT
510 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
511 * back to normal later in the boot process).
512 */
513
514#define LAPIC_CAL_LOOPS (HZ/10)
515
516static __initdata int lapic_cal_loops = -1;
517static __initdata long lapic_cal_t1, lapic_cal_t2;
518static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
519static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
520static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
521
522/*
523 * Temporary interrupt handler.
524 */
525static void __init lapic_cal_handler(struct clock_event_device *dev)
526{
527 unsigned long long tsc = 0;
528 long tapic = apic_read(APIC_TMCCT);
529 unsigned long pm = acpi_pm_read_early();
530
531 if (cpu_has_tsc)
532 rdtscll(tsc);
533
534 switch (lapic_cal_loops++) {
535 case 0:
536 lapic_cal_t1 = tapic;
537 lapic_cal_tsc1 = tsc;
538 lapic_cal_pm1 = pm;
539 lapic_cal_j1 = jiffies;
540 break;
541
542 case LAPIC_CAL_LOOPS:
543 lapic_cal_t2 = tapic;
544 lapic_cal_tsc2 = tsc;
545 if (pm < lapic_cal_pm1)
546 pm += ACPI_PM_OVRRUN;
547 lapic_cal_pm2 = pm;
548 lapic_cal_j2 = jiffies;
549 break;
550 }
551}
552
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900553static int __init
554calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400555{
556 const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
557 const long pm_thresh = pm_100ms / 100;
558 unsigned long mult;
559 u64 res;
560
561#ifndef CONFIG_X86_PM_TIMER
562 return -1;
563#endif
564
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900565 apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400566
567 /* Check, if the PM timer is available */
568 if (!deltapm)
569 return -1;
570
571 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
572
573 if (deltapm > (pm_100ms - pm_thresh) &&
574 deltapm < (pm_100ms + pm_thresh)) {
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900575 apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900576 return 0;
577 }
578
579 res = (((u64)deltapm) * mult) >> 22;
580 do_div(res, 1000000);
581 pr_warning("APIC calibration not consistent "
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900582 "with PM-Timer: %ldms instead of 100ms\n",(long)res);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900583
584 /* Correct the lapic counter value */
585 res = (((u64)(*delta)) * pm_100ms);
586 do_div(res, deltapm);
587 pr_info("APIC delta adjusted to PM-Timer: "
588 "%lu (%ld)\n", (unsigned long)res, *delta);
589 *delta = (long)res;
590
591 /* Correct the tsc counter value */
592 if (cpu_has_tsc) {
593 res = (((u64)(*deltatsc)) * pm_100ms);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400594 do_div(res, deltapm);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900595 apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
596 "PM-Timer: %lu (%ld) \n",
597 (unsigned long)res, *deltatsc);
598 *deltatsc = (long)res;
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400599 }
600
601 return 0;
602}
603
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700604static int __init calibrate_APIC_clock(void)
605{
606 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700607 void (*real_handler)(struct clock_event_device *dev);
608 unsigned long deltaj;
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900609 long delta, deltatsc;
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700610 int pm_referenced = 0;
611
612 local_irq_disable();
613
614 /* Replace the global interrupt handler */
615 real_handler = global_clock_event->event_handler;
616 global_clock_event->event_handler = lapic_cal_handler;
617
618 /*
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400619 * Setup the APIC counter to maximum. There is no way the lapic
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700620 * can underflow in the 100ms detection time frame
621 */
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400622 __setup_APIC_LVTT(0xffffffff, 0, 0);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700623
624 /* Let the interrupts run */
625 local_irq_enable();
626
627 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
628 cpu_relax();
629
630 local_irq_disable();
631
632 /* Restore the real event handler */
633 global_clock_event->event_handler = real_handler;
634
635 /* Build delta t1-t2 as apic timer counts down */
636 delta = lapic_cal_t1 - lapic_cal_t2;
637 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
638
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900639 deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
640
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400641 /* we trust the PM based calibration if possible */
642 pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900643 &delta, &deltatsc);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700644
645 /* Calculate the scaled math multiplication factor */
646 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
647 lapic_clockevent.shift);
648 lapic_clockevent.max_delta_ns =
649 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
650 lapic_clockevent.min_delta_ns =
651 clockevent_delta2ns(0xF, &lapic_clockevent);
652
653 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
654
655 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
656 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
657 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
658 calibration_result);
659
660 if (cpu_has_tsc) {
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700661 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
662 "%ld.%04ld MHz.\n",
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900663 (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
664 (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700665 }
666
667 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
668 "%u.%04u MHz.\n",
669 calibration_result / (1000000 / HZ),
670 calibration_result % (1000000 / HZ));
671
672 /*
673 * Do a sanity check on the APIC calibration result
674 */
675 if (calibration_result < (1000000 / HZ)) {
676 local_irq_enable();
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100677 pr_warning("APIC frequency too slow, disabling apic timer\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700678 return -1;
679 }
680
681 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
682
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400683 /*
684 * PM timer calibration failed or not turned on
685 * so lets try APIC timer based calibration
686 */
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700687 if (!pm_referenced) {
688 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
689
690 /*
691 * Setup the apic timer manually
692 */
693 levt->event_handler = lapic_cal_handler;
694 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
695 lapic_cal_loops = -1;
696
697 /* Let the interrupts run */
698 local_irq_enable();
699
700 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
701 cpu_relax();
702
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700703 /* Stop the lapic timer */
704 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
705
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700706 /* Jiffies delta */
707 deltaj = lapic_cal_j2 - lapic_cal_j1;
708 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
709
710 /* Check, if the jiffies result is consistent */
711 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
712 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
713 else
714 levt->features |= CLOCK_EVT_FEAT_DUMMY;
715 } else
716 local_irq_enable();
717
718 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +0530719 pr_warning("APIC timer disabled due to verification failure\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700720 return -1;
721 }
722
723 return 0;
724}
725
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100726/*
727 * Setup the boot APIC
728 *
729 * Calibrate and verify the result.
730 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100731void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100733 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400734 * The local apic timer can be disabled via the kernel
735 * commandline or from the CPU detection code. Register the lapic
736 * timer as a dummy clock event source on SMP systems, so the
737 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100738 */
739 if (disable_apic_timer) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100740 pr_info("Disabling APIC timer\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100741 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100742 if (num_possible_cpus() > 1) {
743 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100744 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100745 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100746 return;
747 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200748
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400749 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
750 "calibrating APIC timer ...\n");
751
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400752 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100753 /* No broadcast on UP ! */
754 if (num_possible_cpus() > 1)
755 setup_APIC_timer();
756 return;
757 }
758
759 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100760 * If nmi_watchdog is set to IO_APIC, we need the
761 * PIT/HPET going. Otherwise register lapic as a dummy
762 * device.
763 */
764 if (nmi_watchdog != NMI_IO_APIC)
765 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
766 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100767 pr_warning("APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200768 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100769
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400770 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100771 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100774void __cpuinit setup_secondary_APIC_clock(void)
775{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100776 setup_APIC_timer();
777}
778
779/*
780 * The guts of the apic timer interrupt
781 */
782static void local_apic_timer_interrupt(void)
783{
784 int cpu = smp_processor_id();
785 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
786
787 /*
788 * Normally we should not be here till LAPIC has been initialized but
789 * in some cases like kdump, its possible that there is a pending LAPIC
790 * timer interrupt from previous kernel's context and is delivered in
791 * new kernel the moment interrupts are enabled.
792 *
793 * Interrupts are enabled early and LAPIC is setup much later, hence
794 * its possible that when we get here evt->event_handler is NULL.
795 * Check for event_handler being NULL and discard the interrupt as
796 * spurious.
797 */
798 if (!evt->event_handler) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100799 pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100800 /* Switch it off */
801 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
802 return;
803 }
804
805 /*
806 * the NMI deadlock-detector uses this.
807 */
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -0800808 inc_irq_stat(apic_timer_irqs);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100809
810 evt->event_handler(evt);
811}
812
813/*
814 * Local APIC timer interrupt. This is the most natural way for doing
815 * local interrupts, but local timer interrupts can be emulated by
816 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
817 *
818 * [ if a single-CPU system runs an SMP kernel then we call the local
819 * interrupt as well. Thus we cannot inline the local irq ... ]
820 */
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100821void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100822{
823 struct pt_regs *old_regs = set_irq_regs(regs);
824
825 /*
826 * NOTE! We'd better ACK the irq immediately,
827 * because timer handling can be slow.
828 */
829 ack_APIC_irq();
830 /*
831 * update_process_times() expects us to have done irq_enter().
832 * Besides, if we don't timer interrupts ignore the global
833 * interrupt lock, which is the WrongThing (tm) to do.
834 */
835 exit_idle();
836 irq_enter();
837 local_apic_timer_interrupt();
838 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400839
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100840 set_irq_regs(old_regs);
841}
842
843int setup_profiling_timer(unsigned int multiplier)
844{
845 return -EINVAL;
846}
847
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100848/*
849 * Local APIC start and shutdown
850 */
851
852/**
853 * clear_local_APIC - shutdown the local APIC
854 *
855 * This is called, when a CPU is disabled and before rebooting, so the state of
856 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
857 * leftovers during boot.
858 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859void clear_local_APIC(void)
860{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400861 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100862 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Andi Kleend3432892008-01-30 13:33:17 +0100864 /* APIC hasn't been mapped yet */
Suresh Siddhafc1edaf2009-04-20 13:02:27 -0700865 if (!x2apic_mode && !apic_phys)
Andi Kleend3432892008-01-30 13:33:17 +0100866 return;
867
868 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200870 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 * if the vector is zero. Mask LVTERR first to prevent this.
872 */
873 if (maxlvt >= 3) {
874 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100875 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 /*
878 * Careful: we have to set masks only first to deassert
879 * any level-triggered sources.
880 */
881 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100882 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100884 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100886 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (maxlvt >= 4) {
888 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100889 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400892 /* lets not touch this if we didn't frob it */
Andi Kleen07db1c12009-02-12 13:39:35 +0100893#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400894 if (maxlvt >= 5) {
895 v = apic_read(APIC_LVTTHMR);
896 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
897 }
898#endif
Andi Kleen5ca86812009-02-12 13:49:37 +0100899#ifdef CONFIG_X86_MCE_INTEL
900 if (maxlvt >= 6) {
901 v = apic_read(APIC_LVTCMCI);
902 if (!(v & APIC_LVT_MASKED))
903 apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
904 }
905#endif
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 /*
908 * Clean APIC state for other OSs:
909 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100910 apic_write(APIC_LVTT, APIC_LVT_MASKED);
911 apic_write(APIC_LVT0, APIC_LVT_MASKED);
912 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100914 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100916 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400917
918 /* Integrated APIC (!82489DX) ? */
919 if (lapic_is_integrated()) {
920 if (maxlvt > 3)
921 /* Clear ESR due to Pentium errata 3AP and 11AP */
922 apic_write(APIC_ESR, 0);
923 apic_read(APIC_ESR);
924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100927/**
928 * disable_local_APIC - clear and disable the local APIC
929 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930void disable_local_APIC(void)
931{
932 unsigned int value;
933
Jan Beulich4a13ad02009-01-14 12:28:51 +0000934 /* APIC hasn't been mapped yet */
935 if (!apic_phys)
936 return;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 clear_local_APIC();
939
940 /*
941 * Disable APIC (implies clearing of registers
942 * for 82489DX!).
943 */
944 value = apic_read(APIC_SPIV);
945 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100946 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400947
948#ifdef CONFIG_X86_32
949 /*
950 * When LAPIC was disabled by the BIOS and enabled by the kernel,
951 * restore the disabled state.
952 */
953 if (enabled_via_apicbase) {
954 unsigned int l, h;
955
956 rdmsr(MSR_IA32_APICBASE, l, h);
957 l &= ~MSR_IA32_APICBASE_ENABLE;
958 wrmsr(MSR_IA32_APICBASE, l, h);
959 }
960#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400963/*
964 * If Linux enabled the LAPIC against the BIOS default disable it down before
965 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
966 * not power-off. Additionally clear all LVT entries before disable_local_APIC
967 * for the case where Linux didn't enable the LAPIC.
968 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700969void lapic_shutdown(void)
970{
971 unsigned long flags;
972
973 if (!cpu_has_apic)
974 return;
975
976 local_irq_save(flags);
977
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400978#ifdef CONFIG_X86_32
979 if (!enabled_via_apicbase)
980 clear_local_APIC();
981 else
982#endif
983 disable_local_APIC();
984
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700985
986 local_irq_restore(flags);
987}
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989/*
990 * This is to verify that we're looking at a real local APIC.
991 * Check these against your board if the CPUs aren't getting
992 * started for no apparent reason.
993 */
994int __init verify_local_APIC(void)
995{
996 unsigned int reg0, reg1;
997
998 /*
999 * The version register is read-only in a real APIC.
1000 */
1001 reg0 = apic_read(APIC_LVR);
1002 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
1003 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
1004 reg1 = apic_read(APIC_LVR);
1005 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
1006
1007 /*
1008 * The two version reads above should print the same
1009 * numbers. If the second one is different, then we
1010 * poke at a non-APIC.
1011 */
1012 if (reg1 != reg0)
1013 return 0;
1014
1015 /*
1016 * Check if the version looks reasonably.
1017 */
1018 reg1 = GET_APIC_VERSION(reg0);
1019 if (reg1 == 0x00 || reg1 == 0xff)
1020 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001021 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (reg1 < 0x02 || reg1 == 0xff)
1023 return 0;
1024
1025 /*
1026 * The ID register is read/write in a real APIC.
1027 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001028 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +01001030 apic_write(APIC_ID, reg0 ^ apic->apic_id_mask);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001031 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
1033 apic_write(APIC_ID, reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +01001034 if (reg1 != (reg0 ^ apic->apic_id_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return 0;
1036
1037 /*
1038 * The next two are just to see if we have sane values.
1039 * They're only really relevant if we're in Virtual Wire
1040 * compatibility mode, but most boxes are anymore.
1041 */
1042 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001043 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 reg1 = apic_read(APIC_LVT1);
1045 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
1046
1047 return 1;
1048}
1049
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001050/**
1051 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1052 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053void __init sync_Arb_IDs(void)
1054{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +02001055 /*
1056 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1057 * needed on AMD.
1058 */
1059 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return;
1061
1062 /*
1063 * Wait for idle.
1064 */
1065 apic_wait_icr_idle();
1066
1067 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +04001068 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1069 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072/*
1073 * An initial setup of the virtual wire mode.
1074 */
1075void __init init_bsp_APIC(void)
1076{
Andi Kleen11a8e772006-01-11 22:46:51 +01001077 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 /*
1080 * Don't do the setup now if we have a SMP BIOS as the
1081 * through-I/O-APIC virtual wire mode might be active.
1082 */
1083 if (smp_found_config || !cpu_has_apic)
1084 return;
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 /*
1087 * Do not trust the local APIC being empty at bootup.
1088 */
1089 clear_local_APIC();
1090
1091 /*
1092 * Enable APIC.
1093 */
1094 value = apic_read(APIC_SPIV);
1095 value &= ~APIC_VECTOR_MASK;
1096 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001097
1098#ifdef CONFIG_X86_32
1099 /* This bit is reserved on P4/Xeon and should be cleared */
1100 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1101 (boot_cpu_data.x86 == 15))
1102 value &= ~APIC_SPIV_FOCUS_DISABLED;
1103 else
1104#endif
1105 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001107 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * Set up the virtual wire mode.
1111 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001112 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001114 if (!lapic_is_integrated()) /* 82489DX */
1115 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001116 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001119static void __cpuinit lapic_setup_esr(void)
1120{
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001121 unsigned int oldvalue, value, maxlvt;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001122
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001123 if (!lapic_is_integrated()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001124 pr_info("No ESR for 82489DX.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001125 return;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001126 }
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001127
Ingo Molnar08125d32009-01-28 05:08:44 +01001128 if (apic->disable_esr) {
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001129 /*
1130 * Something untraceable is creating bad interrupts on
1131 * secondary quads ... for the moment, just leave the
1132 * ESR disabled - we can't do anything useful with the
1133 * errors anyway - mbligh
1134 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001135 pr_info("Leaving ESR disabled.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001136 return;
1137 }
1138
1139 maxlvt = lapic_get_maxlvt();
1140 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1141 apic_write(APIC_ESR, 0);
1142 oldvalue = apic_read(APIC_ESR);
1143
1144 /* enables sending errors */
1145 value = ERROR_APIC_VECTOR;
1146 apic_write(APIC_LVTERR, value);
1147
1148 /*
1149 * spec says clear errors after enabling vector.
1150 */
1151 if (maxlvt > 3)
1152 apic_write(APIC_ESR, 0);
1153 value = apic_read(APIC_ESR);
1154 if (value != oldvalue)
1155 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1156 "vector: 0x%08x after: 0x%08x\n",
1157 oldvalue, value);
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001158}
1159
1160
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001161/**
1162 * setup_local_APIC - setup the local APIC
1163 */
1164void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Andi Kleen739f33b2008-01-30 13:30:40 +01001166 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001167 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Jan Beulichf1182632009-01-14 12:27:35 +00001169 if (disable_apic) {
Ingo Molnar65a4e572009-01-31 03:36:17 +01001170 arch_disable_smp_support();
Jan Beulichf1182632009-01-14 12:27:35 +00001171 return;
1172 }
1173
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001174#ifdef CONFIG_X86_32
1175 /* Pound the ESR really hard over the head with a big hammer - mbligh */
Ingo Molnar08125d32009-01-28 05:08:44 +01001176 if (lapic_is_integrated() && apic->disable_esr) {
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001177 apic_write(APIC_ESR, 0);
1178 apic_write(APIC_ESR, 0);
1179 apic_write(APIC_ESR, 0);
1180 apic_write(APIC_ESR, 0);
1181 }
1182#endif
1183
Jack Steinerac23d4e2008-03-28 14:12:16 -05001184 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /*
1187 * Double-check whether this APIC is really registered.
1188 * This is meaningless in clustered apic mode, so we skip it.
1189 */
Ingo Molnar7ed248d2009-01-28 03:43:47 +01001190 if (!apic->apic_id_registered())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 BUG();
1192
1193 /*
1194 * Intel recommends to set DFR, LDR and TPR before enabling
1195 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1196 * document number 292116). So here it goes...
1197 */
Ingo Molnara5c43292009-01-28 06:50:47 +01001198 apic->init_apic_ldr();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 /*
1201 * Set Task Priority to 'accept all'. We never change this
1202 * later on.
1203 */
1204 value = apic_read(APIC_TASKPRI);
1205 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001206 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001209 * After a crash, we no longer service the interrupts and a pending
1210 * interrupt from previous kernel might still have ISR bit set.
1211 *
1212 * Most probably by now CPU has serviced that pending interrupt and
1213 * it might not have done the ack_APIC_irq() because it thought,
1214 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1215 * does not clear the ISR bit and cpu thinks it has already serivced
1216 * the interrupt. Hence a vector might get locked. It was noticed
1217 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1218 */
1219 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1220 value = apic_read(APIC_ISR + i*0x10);
1221 for (j = 31; j >= 0; j--) {
1222 if (value & (1<<j))
1223 ack_APIC_irq();
1224 }
1225 }
1226
1227 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * Now that we are all set up, enable the APIC
1229 */
1230 value = apic_read(APIC_SPIV);
1231 value &= ~APIC_VECTOR_MASK;
1232 /*
1233 * Enable APIC
1234 */
1235 value |= APIC_SPIV_APIC_ENABLED;
1236
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001237#ifdef CONFIG_X86_32
1238 /*
1239 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1240 * certain networking cards. If high frequency interrupts are
1241 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1242 * entry is masked/unmasked at a high rate as well then sooner or
1243 * later IOAPIC line gets 'stuck', no more interrupts are received
1244 * from the device. If focus CPU is disabled then the hang goes
1245 * away, oh well :-(
1246 *
1247 * [ This bug can be reproduced easily with a level-triggered
1248 * PCI Ne2000 networking cards and PII/PIII processors, dual
1249 * BX chipset. ]
1250 */
1251 /*
1252 * Actually disabling the focus CPU check just makes the hang less
1253 * frequent as it makes the interrupt distributon model be more
1254 * like LRU than MRU (the short-term load is more even across CPUs).
1255 * See also the comment in end_level_ioapic_irq(). --macro
1256 */
1257
1258 /*
1259 * - enable focus processor (bit==0)
1260 * - 64bit mode always use processor focus
1261 * so no need to set it
1262 */
1263 value &= ~APIC_SPIV_FOCUS_DISABLED;
1264#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /*
1267 * Set spurious IRQ vector
1268 */
1269 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001270 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 /*
1273 * Set up LVT0, LVT1:
1274 *
1275 * set up through-local-APIC on the BP's LINT0. This is not
1276 * strictly necessary in pure symmetric-IO mode, but sometimes
1277 * we delegate interrupts to the 8259A.
1278 */
1279 /*
1280 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1281 */
1282 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001283 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001285 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001286 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 } else {
1288 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001289 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001290 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001292 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 /*
1295 * only the BP should see the LINT1 NMI signal, obviously.
1296 */
1297 if (!smp_processor_id())
1298 value = APIC_DM_NMI;
1299 else
1300 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001301 if (!lapic_is_integrated()) /* 82489DX */
1302 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001303 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001304
Jack Steinerac23d4e2008-03-28 14:12:16 -05001305 preempt_enable();
Andi Kleenbe71b852009-02-12 13:49:38 +01001306
1307#ifdef CONFIG_X86_MCE_INTEL
1308 /* Recheck CMCI information after local APIC is up on CPU #0 */
1309 if (smp_processor_id() == 0)
1310 cmci_recheck();
1311#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001312}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Andi Kleen739f33b2008-01-30 13:30:40 +01001314void __cpuinit end_local_APIC_setup(void)
1315{
1316 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001317
1318#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001319 {
1320 unsigned int value;
1321 /* Disable the local apic timer */
1322 value = apic_read(APIC_LVTT);
1323 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1324 apic_write(APIC_LVTT, value);
1325 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001326#endif
1327
Don Zickusf2802e72006-09-26 10:52:26 +02001328 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 apic_pm_activate();
1330}
1331
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001332#ifdef CONFIG_X86_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001333void check_x2apic(void)
1334{
Suresh Siddhaef1f87a2009-02-21 14:23:21 -08001335 if (x2apic_enabled()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001336 pr_info("x2apic enabled by BIOS, switching to x2apic ops\n");
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001337 x2apic_preenabled = x2apic_mode = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001338 }
1339}
1340
1341void enable_x2apic(void)
1342{
1343 int msr, msr2;
1344
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001345 if (!x2apic_mode)
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001346 return;
1347
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001348 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1349 if (!(msr & X2APIC_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001350 pr_info("Enabling x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001351 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1352 }
1353}
Weidong Han93758232009-04-17 16:42:14 +08001354#endif /* CONFIG_X86_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001355
Al Viro2236d252008-11-22 17:37:34 +00001356void __init enable_IR_x2apic(void)
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001357{
1358#ifdef CONFIG_INTR_REMAP
1359 int ret;
1360 unsigned long flags;
Fenghua Yub24696b2009-03-27 14:22:44 -07001361 struct IO_APIC_route_entry **ioapic_entries = NULL;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001362
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001363 ret = dmar_table_init();
1364 if (ret) {
Weidong Han93758232009-04-17 16:42:14 +08001365 pr_debug("dmar_table_init() failed with %d:\n", ret);
1366 goto ir_failed;
1367 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001368
Weidong Han93758232009-04-17 16:42:14 +08001369 if (!intr_remapping_supported()) {
1370 pr_debug("intr-remapping not supported\n");
1371 goto ir_failed;
1372 }
1373
1374
1375 if (!x2apic_preenabled && skip_ioapic_setup) {
1376 pr_info("Skipped enabling intr-remap because of skipping "
1377 "io-apic setup\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001378 return;
1379 }
1380
Fenghua Yub24696b2009-03-27 14:22:44 -07001381 ioapic_entries = alloc_ioapic_entries();
1382 if (!ioapic_entries) {
1383 pr_info("Allocate ioapic_entries failed: %d\n", ret);
1384 goto end;
1385 }
1386
1387 ret = save_IO_APIC_setup(ioapic_entries);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001388 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001389 pr_info("Saving IO-APIC state failed: %d\n", ret);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001390 goto end;
1391 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001392
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001393 local_irq_save(flags);
Fenghua Yub24696b2009-03-27 14:22:44 -07001394 mask_IO_APIC_setup(ioapic_entries);
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001395 mask_8259A();
1396
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001397 ret = enable_intr_remapping(x2apic_supported());
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001398 if (ret)
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001399 goto end_restore;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001400
Weidong Han93758232009-04-17 16:42:14 +08001401 pr_info("Enabled Interrupt-remapping\n");
1402
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001403 if (x2apic_supported() && !x2apic_mode) {
1404 x2apic_mode = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001405 enable_x2apic();
Weidong Han93758232009-04-17 16:42:14 +08001406 pr_info("Enabled x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001407 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001408
1409end_restore:
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001410 if (ret)
1411 /*
1412 * IR enabling failed
1413 */
Fenghua Yub24696b2009-03-27 14:22:44 -07001414 restore_IO_APIC_setup(ioapic_entries);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001415
1416 unmask_8259A();
1417 local_irq_restore(flags);
1418
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001419end:
Fenghua Yub24696b2009-03-27 14:22:44 -07001420 if (ioapic_entries)
1421 free_ioapic_entries(ioapic_entries);
Weidong Han93758232009-04-17 16:42:14 +08001422
1423 if (!ret)
1424 return;
1425
1426ir_failed:
1427 if (x2apic_preenabled)
1428 panic("x2apic enabled by bios. But IR enabling failed");
1429 else if (cpu_has_x2apic)
1430 pr_info("Not enabling x2apic,Intr-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001431#else
1432 if (!cpu_has_x2apic)
1433 return;
1434
1435 if (x2apic_preenabled)
1436 panic("x2apic enabled prior OS handover,"
Weidong Han93758232009-04-17 16:42:14 +08001437 " enable CONFIG_X86_X2APIC, CONFIG_INTR_REMAP");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001438#endif
1439
1440 return;
1441}
Weidong Han93758232009-04-17 16:42:14 +08001442
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001443
Yinghai Lube7a6562008-08-24 02:01:51 -07001444#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001445/*
1446 * Detect and enable local APICs on non-SMP boards.
1447 * Original code written by Keir Fraser.
1448 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1449 * not correctly set up (usually the APIC timer won't work etc.)
1450 */
1451static int __init detect_init_APIC(void)
1452{
1453 if (!cpu_has_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001454 pr_info("No local APIC present\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001455 return -1;
1456 }
1457
1458 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001459 return 0;
1460}
Yinghai Lube7a6562008-08-24 02:01:51 -07001461#else
1462/*
1463 * Detect and initialize APIC
1464 */
1465static int __init detect_init_APIC(void)
1466{
1467 u32 h, l, features;
1468
1469 /* Disabled by kernel option? */
1470 if (disable_apic)
1471 return -1;
1472
1473 switch (boot_cpu_data.x86_vendor) {
1474 case X86_VENDOR_AMD:
1475 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
Borislav Petkov85877062009-02-03 16:24:22 +01001476 (boot_cpu_data.x86 >= 15))
Yinghai Lube7a6562008-08-24 02:01:51 -07001477 break;
1478 goto no_apic;
1479 case X86_VENDOR_INTEL:
1480 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1481 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1482 break;
1483 goto no_apic;
1484 default:
1485 goto no_apic;
1486 }
1487
1488 if (!cpu_has_apic) {
1489 /*
1490 * Over-ride BIOS and try to enable the local APIC only if
1491 * "lapic" specified.
1492 */
1493 if (!force_enable_local_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001494 pr_info("Local APIC disabled by BIOS -- "
1495 "you can enable it with \"lapic\"\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001496 return -1;
1497 }
1498 /*
1499 * Some BIOSes disable the local APIC in the APIC_BASE
1500 * MSR. This can only be done in software for Intel P6 or later
1501 * and AMD K7 (Model > 1) or later.
1502 */
1503 rdmsr(MSR_IA32_APICBASE, l, h);
1504 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001505 pr_info("Local APIC disabled by BIOS -- reenabling.\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001506 l &= ~MSR_IA32_APICBASE_BASE;
1507 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1508 wrmsr(MSR_IA32_APICBASE, l, h);
1509 enabled_via_apicbase = 1;
1510 }
1511 }
1512 /*
1513 * The APIC feature bit should now be enabled
1514 * in `cpuid'
1515 */
1516 features = cpuid_edx(1);
1517 if (!(features & (1 << X86_FEATURE_APIC))) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001518 pr_warning("Could not enable APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001519 return -1;
1520 }
1521 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1522 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1523
1524 /* The BIOS may have set up the APIC at some other address */
1525 rdmsr(MSR_IA32_APICBASE, l, h);
1526 if (l & MSR_IA32_APICBASE_ENABLE)
1527 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1528
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001529 pr_info("Found and enabled local APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001530
1531 apic_pm_activate();
1532
1533 return 0;
1534
1535no_apic:
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001536 pr_info("No local APIC present or hardware disabled\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001537 return -1;
1538}
1539#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001540
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001541#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001542void __init early_init_lapic_mapping(void)
1543{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001544 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001545
1546 /*
1547 * If no local APIC can be found then go out
1548 * : it means there is no mpatable and MADT
1549 */
1550 if (!smp_found_config)
1551 return;
1552
Thomas Gleixner431ee792008-05-12 15:43:35 +02001553 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001554
Thomas Gleixner431ee792008-05-12 15:43:35 +02001555 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001556 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001557 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001558
1559 /*
1560 * Fetch the APIC ID of the BSP in case we have a
1561 * default configuration (or the MP table is broken).
1562 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001563 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001564}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001565#endif
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001566
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001567/**
1568 * init_apic_mappings - initialize APIC mappings
1569 */
1570void __init init_apic_mappings(void)
1571{
Yinghai Lu4401da62009-05-02 10:40:57 -07001572 unsigned int new_apicid;
1573
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07001574 if (x2apic_mode) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001575 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001576 return;
1577 }
1578
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001579 /*
1580 * If no local APIC can be found then set up a fake all
1581 * zeroes page to simulate the local APIC and another
1582 * one for the IO-APIC.
1583 */
1584 if (!smp_found_config && detect_init_APIC()) {
1585 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1586 apic_phys = __pa(apic_phys);
1587 } else
1588 apic_phys = mp_lapic_addr;
1589
Yinghai Lu4401da62009-05-02 10:40:57 -07001590 /*
1591 * acpi lapic path already maps that address in
1592 * acpi_register_lapic_address()
1593 */
1594 if (!acpi_lapic)
1595 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1596
Yinghai Lu79c09692008-09-07 17:58:57 -07001597 apic_printk(APIC_VERBOSE, "mapped APIC to %08lx (%08lx)\n",
Cyrill Gorcunovcec6be62009-05-11 17:41:40 +04001598 APIC_BASE, apic_phys);
1599
1600 /* lets check if we may NOP'ify apic operations */
1601 if (!cpu_has_apic) {
1602 pr_info("APIC: disable apic facility\n");
1603 apic_disable();
1604 return;
1605 }
1606
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001607 /*
1608 * Fetch the APIC ID of the BSP in case we have a
1609 * default configuration (or the MP table is broken).
1610 */
Yinghai Lu4401da62009-05-02 10:40:57 -07001611 new_apicid = read_apic_id();
1612 if (boot_cpu_physical_apicid != new_apicid) {
1613 boot_cpu_physical_apicid = new_apicid;
1614 apic_version[new_apicid] =
1615 GET_APIC_VERSION(apic_read(APIC_LVR));
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +04001616 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001617}
1618
1619/*
1620 * This initializes the IO-APIC and APIC hardware if this is
1621 * a UP kernel.
1622 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001623int apic_version[MAX_APICS];
1624
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001625int __init APIC_init_uniprocessor(void)
1626{
1627 if (disable_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001628 pr_info("Apic disabled\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001629 return -1;
1630 }
Jan Beulichf1182632009-01-14 12:27:35 +00001631#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001632 if (!cpu_has_apic) {
1633 disable_apic = 1;
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001634 pr_info("Apic disabled by BIOS\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001635 return -1;
1636 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001637#else
1638 if (!smp_found_config && !cpu_has_apic)
1639 return -1;
1640
1641 /*
1642 * Complain if the BIOS pretends there is one.
1643 */
1644 if (!cpu_has_apic &&
1645 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001646 pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
1647 boot_cpu_physical_apicid);
Yinghai Lufa2bd352008-08-24 02:01:50 -07001648 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1649 return -1;
1650 }
1651#endif
1652
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001653 enable_IR_x2apic();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001654#ifdef CONFIG_X86_64
Ingo Molnar72ce0162009-01-28 06:50:47 +01001655 default_setup_apic_routing();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001656#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001657
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001658 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001659 connect_bsp_APIC();
1660
Yinghai Lufa2bd352008-08-24 02:01:50 -07001661#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001662 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001663#else
1664 /*
1665 * Hack: In case of kdump, after a crash, kernel might be booting
1666 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1667 * might be zero if read from MP tables. Get it from LAPIC.
1668 */
1669# ifdef CONFIG_CRASH_DUMP
1670 boot_cpu_physical_apicid = read_apic_id();
1671# endif
1672#endif
1673 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001674 setup_local_APIC();
1675
Yinghai Lu88d0f552009-02-14 23:57:28 -08001676#ifdef CONFIG_X86_IO_APIC
Andi Kleen739f33b2008-01-30 13:30:40 +01001677 /*
1678 * Now enable IO-APICs, actually call clear_IO_APIC
Yinghai Lu98c061b2009-02-16 00:00:50 -08001679 * We need clear_IO_APIC before enabling error vector
Andi Kleen739f33b2008-01-30 13:30:40 +01001680 */
1681 if (!skip_ioapic_setup && nr_ioapics)
1682 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001683#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001684
1685 end_local_APIC_setup();
1686
Yinghai Lufa2bd352008-08-24 02:01:50 -07001687#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001688 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1689 setup_IO_APIC();
Yinghai Lu98c061b2009-02-16 00:00:50 -08001690 else {
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001691 nr_ioapics = 0;
Yinghai Lu98c061b2009-02-16 00:00:50 -08001692 localise_nmi_watchdog();
1693 }
1694#else
1695 localise_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001696#endif
1697
Yinghai Lufa2bd352008-08-24 02:01:50 -07001698 setup_boot_clock();
Yinghai Lu98c061b2009-02-16 00:00:50 -08001699#ifdef CONFIG_X86_64
1700 check_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001701#endif
1702
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001703 return 0;
1704}
1705
1706/*
1707 * Local APIC interrupts
1708 */
1709
1710/*
1711 * This interrupt should _never_ happen with our APIC/SMP architecture
1712 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001713void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001714{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001715 u32 v;
1716
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001717 exit_idle();
1718 irq_enter();
1719 /*
1720 * Check if this really is a spurious interrupt and ACK it
1721 * if it is a vectored one. Just in case...
1722 * Spurious interrupts should not be ACKed.
1723 */
1724 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1725 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1726 ack_APIC_irq();
1727
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -08001728 inc_irq_stat(irq_spurious_count);
1729
Yinghai Ludc1528d2008-08-24 02:01:53 -07001730 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001731 pr_info("spurious APIC interrupt on CPU#%d, "
1732 "should never happen.\n", smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001733 irq_exit();
1734}
1735
1736/*
1737 * This interrupt should never happen with our APIC/SMP architecture
1738 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001739void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001740{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001741 u32 v, v1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001742
1743 exit_idle();
1744 irq_enter();
1745 /* First tickle the hardware, only then report what went on. -- REW */
1746 v = apic_read(APIC_ESR);
1747 apic_write(APIC_ESR, 0);
1748 v1 = apic_read(APIC_ESR);
1749 ack_APIC_irq();
1750 atomic_inc(&irq_err_count);
1751
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001752 /*
1753 * Here is what the APIC error bits mean:
1754 * 0: Send CS error
1755 * 1: Receive CS error
1756 * 2: Send accept error
1757 * 3: Receive accept error
1758 * 4: Reserved
1759 * 5: Send illegal vector
1760 * 6: Received illegal vector
1761 * 7: Illegal register address
1762 */
1763 pr_debug("APIC error on CPU%d: %02x(%02x)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001764 smp_processor_id(), v , v1);
1765 irq_exit();
1766}
1767
Glauber Costab5841762008-05-28 13:38:28 -03001768/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001769 * connect_bsp_APIC - attach the APIC to the interrupt system
1770 */
Glauber Costab5841762008-05-28 13:38:28 -03001771void __init connect_bsp_APIC(void)
1772{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001773#ifdef CONFIG_X86_32
1774 if (pic_mode) {
1775 /*
1776 * Do not trust the local APIC being empty at bootup.
1777 */
1778 clear_local_APIC();
1779 /*
1780 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1781 * local APIC to INT and NMI lines.
1782 */
1783 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1784 "enabling APIC mode.\n");
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +04001785 imcr_pic_to_apic();
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001786 }
1787#endif
Ingo Molnar49040332009-01-28 12:43:18 +01001788 if (apic->enable_apic_mode)
1789 apic->enable_apic_mode();
Glauber Costab5841762008-05-28 13:38:28 -03001790}
1791
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001792/**
1793 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1794 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1795 *
1796 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1797 * APIC is disabled.
1798 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001799void disconnect_bsp_APIC(int virt_wire_setup)
1800{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001801 unsigned int value;
1802
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001803#ifdef CONFIG_X86_32
1804 if (pic_mode) {
1805 /*
1806 * Put the board back into PIC mode (has an effect only on
1807 * certain older boards). Note that APIC interrupts, including
1808 * IPIs, won't work beyond this point! The only exception are
1809 * INIT IPIs.
1810 */
1811 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1812 "entering PIC mode.\n");
Cyrill Gorcunovc0eaa452009-04-12 20:47:40 +04001813 imcr_apic_to_pic();
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001814 return;
1815 }
1816#endif
1817
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001818 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001819
1820 /* For the spurious interrupt use vector F, and enable it */
1821 value = apic_read(APIC_SPIV);
1822 value &= ~APIC_VECTOR_MASK;
1823 value |= APIC_SPIV_APIC_ENABLED;
1824 value |= 0xf;
1825 apic_write(APIC_SPIV, value);
1826
1827 if (!virt_wire_setup) {
1828 /*
1829 * For LVT0 make it edge triggered, active high,
1830 * external and enabled
1831 */
1832 value = apic_read(APIC_LVT0);
1833 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1834 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1835 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1836 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1837 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1838 apic_write(APIC_LVT0, value);
1839 } else {
1840 /* Disable LVT0 */
1841 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1842 }
1843
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001844 /*
1845 * For LVT1 make it edge triggered, active high,
1846 * nmi and enabled
1847 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001848 value = apic_read(APIC_LVT1);
1849 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1850 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1851 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1852 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1853 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1854 apic_write(APIC_LVT1, value);
1855}
1856
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001857void __cpuinit generic_processor_info(int apicid, int version)
1858{
1859 int cpu;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001860
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001861 /*
1862 * Validate version
1863 */
1864 if (version == 0x0) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001865 pr_warning("BIOS bug, APIC version is 0 for CPU#%d! "
Mike Travis3b11ce72008-12-17 15:21:39 -08001866 "fixing up to 0x10. (tell your hw vendor)\n",
1867 version);
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001868 version = 0x10;
1869 }
1870 apic_version[apicid] = version;
1871
Mike Travis3b11ce72008-12-17 15:21:39 -08001872 if (num_processors >= nr_cpu_ids) {
1873 int max = nr_cpu_ids;
1874 int thiscpu = max + disabled_cpus;
1875
1876 pr_warning(
1877 "ACPI: NR_CPUS/possible_cpus limit of %i reached."
1878 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
1879
1880 disabled_cpus++;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001881 return;
1882 }
1883
1884 num_processors++;
Mike Travis3b11ce72008-12-17 15:21:39 -08001885 cpu = cpumask_next_zero(-1, cpu_present_mask);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001886
Mike Travisb2b815d2009-01-16 15:22:16 -08001887 if (version != apic_version[boot_cpu_physical_apicid])
1888 WARN_ONCE(1,
1889 "ACPI: apic version mismatch, bootcpu: %x cpu %d: %x\n",
1890 apic_version[boot_cpu_physical_apicid], cpu, version);
1891
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001892 physid_set(apicid, phys_cpu_present_map);
1893 if (apicid == boot_cpu_physical_apicid) {
1894 /*
1895 * x86_bios_cpu_apicid is required to have processors listed
1896 * in same order as logical cpu numbers. Hence the first
1897 * entry is BSP, and so on.
1898 */
1899 cpu = 0;
1900 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001901 if (apicid > max_physical_apicid)
1902 max_physical_apicid = apicid;
1903
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001904#ifdef CONFIG_X86_32
1905 /*
1906 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1907 * but we need to work other dependencies like SMP_SUSPEND etc
1908 * before this can be done without some confusion.
1909 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1910 * - Ashok Raj <ashok.raj@intel.com>
1911 */
1912 if (max_physical_apicid >= 8) {
1913 switch (boot_cpu_data.x86_vendor) {
1914 case X86_VENDOR_INTEL:
1915 if (!APIC_XAPIC(version)) {
1916 def_to_bigsmp = 0;
1917 break;
1918 }
1919 /* If P4 and above fall through */
1920 case X86_VENDOR_AMD:
1921 def_to_bigsmp = 1;
1922 }
1923 }
1924#endif
1925
Ingo Molnar3e5095d2009-01-27 17:07:08 +01001926#if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
Tejun Heof10fcd42009-01-13 20:41:34 +09001927 early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1928 early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001929#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001930
Mike Travis1de88cd2008-12-16 17:34:02 -08001931 set_cpu_possible(cpu, true);
1932 set_cpu_present(cpu, true);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001933}
1934
Suresh Siddha0c81c742008-07-10 11:16:48 -07001935int hard_smp_processor_id(void)
1936{
1937 return read_apic_id();
1938}
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +01001939
1940void default_init_apic_ldr(void)
1941{
1942 unsigned long val;
1943
1944 apic_write(APIC_DFR, APIC_DFR_VALUE);
1945 val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
1946 val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
1947 apic_write(APIC_LDR, val);
1948}
1949
1950#ifdef CONFIG_X86_32
1951int default_apicid_to_node(int logical_apicid)
1952{
1953#ifdef CONFIG_SMP
1954 return apicid_2_node[hard_smp_processor_id()];
1955#else
1956 return 0;
1957#endif
1958}
Yinghai Lu34919982008-08-24 02:01:48 -07001959#endif
Suresh Siddha0c81c742008-07-10 11:16:48 -07001960
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001961/*
1962 * Power management
1963 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964#ifdef CONFIG_PM
1965
1966static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001967 /*
1968 * 'active' is true if the local APIC was enabled by us and
1969 * not the BIOS; this signifies that we are also responsible
1970 * for disabling it before entering apm/acpi suspend
1971 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 int active;
1973 /* r/w apic fields */
1974 unsigned int apic_id;
1975 unsigned int apic_taskpri;
1976 unsigned int apic_ldr;
1977 unsigned int apic_dfr;
1978 unsigned int apic_spiv;
1979 unsigned int apic_lvtt;
1980 unsigned int apic_lvtpc;
1981 unsigned int apic_lvt0;
1982 unsigned int apic_lvt1;
1983 unsigned int apic_lvterr;
1984 unsigned int apic_tmict;
1985 unsigned int apic_tdcr;
1986 unsigned int apic_thmr;
1987} apic_pm_state;
1988
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001989static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001992 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 if (!apic_pm_state.active)
1995 return 0;
1996
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001997 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001998
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001999 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
2001 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
2002 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
2003 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
2004 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01002005 if (maxlvt >= 4)
2006 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
2008 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
2009 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
2010 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
2011 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04002012#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002013 if (maxlvt >= 5)
2014 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
2015#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04002016
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02002017 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 disable_local_APIC();
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07002019
Fenghua Yub24696b2009-03-27 14:22:44 -07002020 if (intr_remapping_enabled)
2021 disable_intr_remapping();
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 local_irq_restore(flags);
2024 return 0;
2025}
2026
2027static int lapic_resume(struct sys_device *dev)
2028{
2029 unsigned int l, h;
2030 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01002031 int maxlvt;
Fenghua Yub24696b2009-03-27 14:22:44 -07002032 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);
Weidong Han9a2755c2009-04-17 16:42:16 +08002039 if (intr_remapping_enabled) {
Fenghua Yub24696b2009-03-27 14:22:44 -07002040 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();
Fenghua Yub24696b2009-03-27 14:22:44 -07002055 }
Weidong Han9a2755c2009-04-17 16:42:16 +08002056
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07002057 if (x2apic_mode)
Weidong Han9a2755c2009-04-17 16:42:16 +08002058 enable_x2apic();
Suresh Siddhacf6567f2009-03-16 17:05:00 -07002059 else {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002060 /*
2061 * Make sure the APICBASE points to the right address
2062 *
2063 * FIXME! This will be wrong if we ever support suspend on
2064 * SMP! We'll need to do this as part of the CPU restore!
2065 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002066 rdmsr(MSR_IA32_APICBASE, l, h);
2067 l &= ~MSR_IA32_APICBASE_BASE;
2068 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2069 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07002070 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002071
Fenghua Yub24696b2009-03-27 14:22:44 -07002072 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2074 apic_write(APIC_ID, apic_pm_state.apic_id);
2075 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2076 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2077 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2078 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2079 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2080 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002081#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002082 if (maxlvt >= 5)
2083 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2084#endif
2085 if (maxlvt >= 4)
2086 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2088 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2089 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2090 apic_write(APIC_ESR, 0);
2091 apic_read(APIC_ESR);
2092 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2093 apic_write(APIC_ESR, 0);
2094 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002095
Weidong Han9a2755c2009-04-17 16:42:16 +08002096 if (intr_remapping_enabled) {
Suresh Siddhafc1edaf2009-04-20 13:02:27 -07002097 reenable_intr_remapping(x2apic_mode);
Fenghua Yub24696b2009-03-27 14:22:44 -07002098 unmask_8259A();
2099 restore_IO_APIC_setup(ioapic_entries);
2100 free_ioapic_entries(ioapic_entries);
2101 }
Fenghua Yub24696b2009-03-27 14:22:44 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return 0;
2106}
2107
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002108/*
2109 * This device has no shutdown method - fully functioning local APICs
2110 * are needed on every CPU up until machine_halt/restart/poweroff.
2111 */
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002114 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 .resume = lapic_resume,
2116 .suspend = lapic_suspend,
2117};
2118
2119static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002120 .id = 0,
2121 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122};
2123
Ashok Raje6982c62005-06-25 14:54:58 -07002124static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
2126 apic_pm_state.active = 1;
2127}
2128
2129static int __init init_lapic_sysfs(void)
2130{
2131 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (!cpu_has_apic)
2134 return 0;
2135 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 error = sysdev_class_register(&lapic_sysclass);
2138 if (!error)
2139 error = sysdev_register(&device_lapic);
2140 return error;
2141}
Fenghua Yub24696b2009-03-27 14:22:44 -07002142
2143/* local apic needs to resume before other devices access its registers. */
2144core_initcall(init_lapic_sysfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146#else /* CONFIG_PM */
2147
2148static void apic_pm_activate(void) { }
2149
2150#endif /* CONFIG_PM */
2151
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002152#ifdef CONFIG_X86_64
Yinghai Lue0e42142009-04-26 23:39:38 -07002153
2154static int __cpuinit apic_cluster_num(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
2156 int i, clusters, zeros;
2157 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08002158 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
2160
Mike Travis23ca4bb2008-05-12 21:21:12 +02002161 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07002162 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Mike Travis168ef542008-12-16 17:34:01 -08002164 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002165 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01002166 if (bios_cpu_apicid) {
2167 id = bios_cpu_apicid[i];
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302168 } else if (i < nr_cpu_ids) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002169 if (cpu_present(i))
2170 id = per_cpu(x86_bios_cpu_apicid, i);
2171 else
2172 continue;
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302173 } else
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002174 break;
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (id != BAD_APICID)
2177 __set_bit(APIC_CLUSTERID(id), clustermap);
2178 }
2179
2180 /* Problem: Partially populated chassis may not have CPUs in some of
2181 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01002182 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
2183 * Since clusters are allocated sequentially, count zeros only if
2184 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 */
2186 clusters = 0;
2187 zeros = 0;
2188 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
2189 if (test_bit(i, clustermap)) {
2190 clusters += 1 + zeros;
2191 zeros = 0;
2192 } else
2193 ++zeros;
2194 }
2195
Yinghai Lue0e42142009-04-26 23:39:38 -07002196 return clusters;
2197}
2198
2199static int __cpuinitdata multi_checked;
2200static int __cpuinitdata multi;
2201
2202static int __cpuinit set_multi(const struct dmi_system_id *d)
2203{
2204 if (multi)
2205 return 0;
Cyrill Gorcunov6f0aced2009-05-01 23:54:25 +04002206 pr_info("APIC: %s detected, Multi Chassis\n", d->ident);
Yinghai Lue0e42142009-04-26 23:39:38 -07002207 multi = 1;
2208 return 0;
2209}
2210
2211static const __cpuinitconst struct dmi_system_id multi_dmi_table[] = {
2212 {
2213 .callback = set_multi,
2214 .ident = "IBM System Summit2",
2215 .matches = {
2216 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
2217 DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"),
2218 },
2219 },
2220 {}
2221};
2222
2223static void __cpuinit dmi_check_multi(void)
2224{
2225 if (multi_checked)
2226 return;
2227
2228 dmi_check_system(multi_dmi_table);
2229 multi_checked = 1;
2230}
2231
2232/*
2233 * apic_is_clustered_box() -- Check if we can expect good TSC
2234 *
2235 * Thus far, the major user of this is IBM's Summit2 series:
2236 * Clustered boxes may have unsynced TSC problems if they are
2237 * multi-chassis.
2238 * Use DMI to check them
2239 */
2240__cpuinit int apic_is_clustered_box(void)
2241{
2242 dmi_check_multi();
2243 if (multi)
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002244 return 1;
2245
Yinghai Lue0e42142009-04-26 23:39:38 -07002246 if (!is_vsmp_box())
2247 return 0;
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 /*
Yinghai Lue0e42142009-04-26 23:39:38 -07002250 * ScaleMP vSMPowered boxes have one cluster per board and TSCs are
2251 * not guaranteed to be synced between boards
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 */
Yinghai Lue0e42142009-04-26 23:39:38 -07002253 if (apic_cluster_num() > 1)
2254 return 1;
2255
2256 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002258#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002261 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002263static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002264{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002266 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002267 return 0;
2268}
2269early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002271/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002272static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002273{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002274 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002275}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002276early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002278static int __init parse_lapic_timer_c2_ok(char *arg)
2279{
2280 local_apic_timer_c2_ok = 1;
2281 return 0;
2282}
2283early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2284
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002285static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002286{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002288 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002289}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002290early_param("noapictimer", parse_disable_apic_timer);
2291
2292static int __init parse_nolapic_timer(char *arg)
2293{
2294 disable_apic_timer = 1;
2295 return 0;
2296}
2297early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002298
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002299static int __init apic_set_verbosity(char *arg)
2300{
2301 if (!arg) {
2302#ifdef CONFIG_X86_64
2303 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002304 return 0;
2305#endif
2306 return -EINVAL;
2307 }
2308
2309 if (strcmp("debug", arg) == 0)
2310 apic_verbosity = APIC_DEBUG;
2311 else if (strcmp("verbose", arg) == 0)
2312 apic_verbosity = APIC_VERBOSE;
2313 else {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01002314 pr_warning("APIC Verbosity level %s not recognised"
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002315 " use apic=verbose or apic=debug\n", arg);
2316 return -EINVAL;
2317 }
2318
2319 return 0;
2320}
2321early_param("apic", apic_set_verbosity);
2322
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002323static int __init lapic_insert_resource(void)
2324{
2325 if (!apic_phys)
2326 return -1;
2327
2328 /* Put local APIC into the resource map. */
2329 lapic_resource.start = apic_phys;
2330 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2331 insert_resource(&iomem_resource, &lapic_resource);
2332
2333 return 0;
2334}
2335
2336/*
2337 * need call insert after e820_reserve_resources()
2338 * that is using request_resource
2339 */
2340late_initcall(lapic_insert_resource);