blob: f2870920f246a9f1d7e2075c37b65b05de27dbf1 [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
Yinghai Lub3c51172008-08-24 02:01:46 -0700101#endif
102
103#ifdef CONFIG_X86_64
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200104static int apic_calibrate_pmtmr __initdata;
Yinghai Lub3c51172008-08-24 02:01:46 -0700105static __init int setup_apicpmtimer(char *s)
106{
107 apic_calibrate_pmtmr = 1;
108 notsc_setup(NULL);
109 return 0;
110}
111__setup("apicpmtimer", setup_apicpmtimer);
112#endif
113
Yinghai Lu06cd9a72009-02-16 17:29:58 -0800114#ifdef CONFIG_X86_X2APIC
Suresh Siddha89027d32008-07-10 11:16:56 -0700115int x2apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700116/* x2apic enabled before OS handover */
Jaswinder Singhb6b301a2008-12-23 21:52:33 +0530117static int x2apic_preenabled;
118static int disable_x2apic;
Yinghai Lu49899ea2008-08-24 02:01:47 -0700119static __init int setup_nox2apic(char *str)
120{
121 disable_x2apic = 1;
122 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
123 return 0;
124}
125early_param("nox2apic", setup_nox2apic);
126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Yinghai Lub3c51172008-08-24 02:01:46 -0700128unsigned long mp_lapic_addr;
129int disable_apic;
130/* Disable local APIC timer from the kernel commandline or via dmi quirk */
131static int disable_apic_timer __cpuinitdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100132/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -0700133int local_apic_timer_c2_ok;
134EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
135
Yinghai Luefa25592008-08-19 20:50:36 -0700136int first_system_vector = 0xfe;
137
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100138/*
139 * Debug level, exported for io_apic.c
140 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100141unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100142
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700143int pic_mode;
144
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400145/* Have we found an MP table */
146int smp_found_config;
147
Aaron Durbin39928722006-12-07 02:14:01 +0100148static struct resource lapic_resource = {
149 .name = "Local APIC",
150 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
151};
152
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200153static unsigned int calibration_result;
154
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200155static int lapic_next_event(unsigned long delta,
156 struct clock_event_device *evt);
157static void lapic_timer_setup(enum clock_event_mode mode,
158 struct clock_event_device *evt);
Mike Travis96289372008-12-31 18:08:46 -0800159static void lapic_timer_broadcast(const struct cpumask *mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100160static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200161
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400162/*
163 * The local apic timer can be used for any function which is CPU local.
164 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200165static struct clock_event_device lapic_clockevent = {
166 .name = "lapic",
167 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
168 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
169 .shift = 32,
170 .set_mode = lapic_timer_setup,
171 .set_next_event = lapic_next_event,
172 .broadcast = lapic_timer_broadcast,
173 .rating = 100,
174 .irq = -1,
175};
176static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
177
Andi Kleend3432892008-01-30 13:33:17 +0100178static unsigned long apic_phys;
179
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100180/*
181 * Get the LAPIC version
182 */
183static inline int lapic_get_version(void)
184{
185 return GET_APIC_VERSION(apic_read(APIC_LVR));
186}
187
188/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400189 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100190 */
191static inline int lapic_is_integrated(void)
192{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400193#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100194 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400195#else
196 return APIC_INTEGRATED(lapic_get_version());
197#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100198}
199
200/*
201 * Check, whether this is a modern or a first generation APIC
202 */
203static int modern_apic(void)
204{
205 /* AMD systems use old APIC versions, so check the CPU */
206 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
207 boot_cpu_data.x86 >= 0xf)
208 return 1;
209 return lapic_get_version() >= 0x14;
210}
211
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800212void native_apic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100213{
214 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
215 cpu_relax();
216}
217
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800218u32 native_safe_apic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100219{
220 u32 send_status;
221 int timeout;
222
223 timeout = 0;
224 do {
225 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
226 if (!send_status)
227 break;
228 udelay(100);
229 } while (timeout++ < 1000);
230
231 return send_status;
232}
233
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800234void native_apic_icr_write(u32 low, u32 id)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700235{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200236 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700237 apic_write(APIC_ICR, low);
238}
239
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800240u64 native_apic_icr_read(void)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700241{
242 u32 icr1, icr2;
243
244 icr2 = apic_read(APIC_ICR2);
245 icr1 = apic_read(APIC_ICR);
246
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400247 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700248}
249
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100250/**
251 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
252 */
Jan Beuliche9427102008-01-30 13:31:24 +0100253void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100254{
255 unsigned int v;
256
257 /* unmask and set to NMI */
258 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200259
260 /* Level triggered for 82489DX (32bit mode) */
261 if (!lapic_is_integrated())
262 v |= APIC_LVT_LEVEL_TRIGGER;
263
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100264 apic_write(APIC_LVT0, v);
265}
266
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700267#ifdef CONFIG_X86_32
268/**
269 * get_physical_broadcast - Get number of physical broadcast IDs
270 */
271int get_physical_broadcast(void)
272{
273 return modern_apic() ? 0xff : 0xf;
274}
275#endif
276
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100277/**
278 * lapic_get_maxlvt - get the maximum number of local vector table entries
279 */
280int lapic_get_maxlvt(void)
281{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200282 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100283
284 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200285 /*
286 * - we always have APIC integrated on 64bit mode
287 * - 82489DXs do not report # of LVT entries
288 */
289 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100290}
291
292/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400293 * Local APIC timer
294 */
295
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400296/* Clock divisor */
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400297#define APIC_DIVISOR 16
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200298
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100299/*
300 * This function sets up the local APIC timer, with a timeout of
301 * 'clocks' APIC bus clock. During calibration we actually call
302 * this function twice on the boot CPU, once with a bogus timeout
303 * value, second time for real. The other (noncalibrating) CPUs
304 * call this function only once, with the real, calibrated value.
305 *
306 * We do reads before writes even if unnecessary, to get around the
307 * P5 APIC double write bug.
308 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100309static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
310{
311 unsigned int lvtt_value, tmp_value;
312
313 lvtt_value = LOCAL_TIMER_VECTOR;
314 if (!oneshot)
315 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200316 if (!lapic_is_integrated())
317 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
318
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100319 if (!irqen)
320 lvtt_value |= APIC_LVT_MASKED;
321
322 apic_write(APIC_LVTT, lvtt_value);
323
324 /*
325 * Divide PICLK by 16
326 */
327 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400328 apic_write(APIC_TDCR,
329 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
330 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100331
332 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200333 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100334}
335
336/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100337 * Setup extended LVT, AMD specific (K8, family 10h)
338 *
339 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
340 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200341 *
342 * If mask=1, the LVT entry does not generate interrupts while mask=0
343 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100344 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100345
346#define APIC_EILVT_LVTOFF_MCE 0
347#define APIC_EILVT_LVTOFF_IBS 1
348
349static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100350{
Robert Richter7b83dae2008-01-30 13:30:40 +0100351 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100352 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
353
354 apic_write(reg, v);
355}
356
Robert Richter7b83dae2008-01-30 13:30:40 +0100357u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
358{
359 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
360 return APIC_EILVT_LVTOFF_MCE;
361}
362
363u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
364{
365 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
366 return APIC_EILVT_LVTOFF_IBS;
367}
Robert Richter6aa360e2008-07-23 15:28:14 +0200368EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100369
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100370/*
371 * Program the next event, relative to now
372 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200373static int lapic_next_event(unsigned long delta,
374 struct clock_event_device *evt)
375{
376 apic_write(APIC_TMICT, delta);
377 return 0;
378}
379
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100380/*
381 * Setup the lapic timer in periodic or oneshot mode
382 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200383static void lapic_timer_setup(enum clock_event_mode mode,
384 struct clock_event_device *evt)
385{
386 unsigned long flags;
387 unsigned int v;
388
389 /* Lapic used as dummy for broadcast ? */
390 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
391 return;
392
393 local_irq_save(flags);
394
395 switch (mode) {
396 case CLOCK_EVT_MODE_PERIODIC:
397 case CLOCK_EVT_MODE_ONESHOT:
398 __setup_APIC_LVTT(calibration_result,
399 mode != CLOCK_EVT_MODE_PERIODIC, 1);
400 break;
401 case CLOCK_EVT_MODE_UNUSED:
402 case CLOCK_EVT_MODE_SHUTDOWN:
403 v = apic_read(APIC_LVTT);
404 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
405 apic_write(APIC_LVTT, v);
Thomas Gleixnera98f8fd2008-11-06 01:13:39 +0100406 apic_write(APIC_TMICT, 0xffffffff);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200407 break;
408 case CLOCK_EVT_MODE_RESUME:
409 /* Nothing to do here */
410 break;
411 }
412
413 local_irq_restore(flags);
414}
415
416/*
417 * Local APIC timer broadcast function
418 */
Mike Travis96289372008-12-31 18:08:46 -0800419static void lapic_timer_broadcast(const struct cpumask *mask)
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200420{
421#ifdef CONFIG_SMP
Ingo Molnardac5f412009-01-28 15:42:24 +0100422 apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200423#endif
424}
425
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100426/*
427 * Setup the local APIC timer for this CPU. Copy the initilized values
428 * of the boot CPU and register the clock event in the framework.
429 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700430static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200431{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100432 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
433
Venkatesh Pallipadidb954b52009-04-06 18:51:29 -0700434 if (cpu_has(&current_cpu_data, X86_FEATURE_ARAT)) {
435 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
436 /* Make LAPIC timer preferrable over percpu HPET */
437 lapic_clockevent.rating = 150;
438 }
439
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100440 memcpy(levt, &lapic_clockevent, sizeof(*levt));
Rusty Russell320ab2b2008-12-13 21:20:26 +1030441 levt->cpumask = cpumask_of(smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100442
443 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200444}
445
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700446/*
447 * In this functions we calibrate APIC bus clocks to the external timer.
448 *
449 * We want to do the calibration only once since we want to have local timer
450 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
451 * frequency.
452 *
453 * This was previously done by reading the PIT/HPET and waiting for a wrap
454 * around to find out, that a tick has elapsed. I have a box, where the PIT
455 * readout is broken, so it never gets out of the wait loop again. This was
456 * also reported by others.
457 *
458 * Monitoring the jiffies value is inaccurate and the clockevents
459 * infrastructure allows us to do a simple substitution of the interrupt
460 * handler.
461 *
462 * The calibration routine also uses the pm_timer when possible, as the PIT
463 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
464 * back to normal later in the boot process).
465 */
466
467#define LAPIC_CAL_LOOPS (HZ/10)
468
469static __initdata int lapic_cal_loops = -1;
470static __initdata long lapic_cal_t1, lapic_cal_t2;
471static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
472static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
473static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
474
475/*
476 * Temporary interrupt handler.
477 */
478static void __init lapic_cal_handler(struct clock_event_device *dev)
479{
480 unsigned long long tsc = 0;
481 long tapic = apic_read(APIC_TMCCT);
482 unsigned long pm = acpi_pm_read_early();
483
484 if (cpu_has_tsc)
485 rdtscll(tsc);
486
487 switch (lapic_cal_loops++) {
488 case 0:
489 lapic_cal_t1 = tapic;
490 lapic_cal_tsc1 = tsc;
491 lapic_cal_pm1 = pm;
492 lapic_cal_j1 = jiffies;
493 break;
494
495 case LAPIC_CAL_LOOPS:
496 lapic_cal_t2 = tapic;
497 lapic_cal_tsc2 = tsc;
498 if (pm < lapic_cal_pm1)
499 pm += ACPI_PM_OVRRUN;
500 lapic_cal_pm2 = pm;
501 lapic_cal_j2 = jiffies;
502 break;
503 }
504}
505
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900506static int __init
507calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400508{
509 const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
510 const long pm_thresh = pm_100ms / 100;
511 unsigned long mult;
512 u64 res;
513
514#ifndef CONFIG_X86_PM_TIMER
515 return -1;
516#endif
517
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900518 apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400519
520 /* Check, if the PM timer is available */
521 if (!deltapm)
522 return -1;
523
524 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
525
526 if (deltapm > (pm_100ms - pm_thresh) &&
527 deltapm < (pm_100ms + pm_thresh)) {
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900528 apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900529 return 0;
530 }
531
532 res = (((u64)deltapm) * mult) >> 22;
533 do_div(res, 1000000);
534 pr_warning("APIC calibration not consistent "
Yasuaki Ishimatsu39ba5d42009-01-28 12:52:24 +0900535 "with PM-Timer: %ldms instead of 100ms\n",(long)res);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900536
537 /* Correct the lapic counter value */
538 res = (((u64)(*delta)) * pm_100ms);
539 do_div(res, deltapm);
540 pr_info("APIC delta adjusted to PM-Timer: "
541 "%lu (%ld)\n", (unsigned long)res, *delta);
542 *delta = (long)res;
543
544 /* Correct the tsc counter value */
545 if (cpu_has_tsc) {
546 res = (((u64)(*deltatsc)) * pm_100ms);
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400547 do_div(res, deltapm);
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900548 apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
549 "PM-Timer: %lu (%ld) \n",
550 (unsigned long)res, *deltatsc);
551 *deltatsc = (long)res;
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400552 }
553
554 return 0;
555}
556
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700557static int __init calibrate_APIC_clock(void)
558{
559 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700560 void (*real_handler)(struct clock_event_device *dev);
561 unsigned long deltaj;
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900562 long delta, deltatsc;
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700563 int pm_referenced = 0;
564
565 local_irq_disable();
566
567 /* Replace the global interrupt handler */
568 real_handler = global_clock_event->event_handler;
569 global_clock_event->event_handler = lapic_cal_handler;
570
571 /*
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400572 * Setup the APIC counter to maximum. There is no way the lapic
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700573 * can underflow in the 100ms detection time frame
574 */
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400575 __setup_APIC_LVTT(0xffffffff, 0, 0);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700576
577 /* Let the interrupts run */
578 local_irq_enable();
579
580 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
581 cpu_relax();
582
583 local_irq_disable();
584
585 /* Restore the real event handler */
586 global_clock_event->event_handler = real_handler;
587
588 /* Build delta t1-t2 as apic timer counts down */
589 delta = lapic_cal_t1 - lapic_cal_t2;
590 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
591
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900592 deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
593
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400594 /* we trust the PM based calibration if possible */
595 pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900596 &delta, &deltatsc);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700597
598 /* Calculate the scaled math multiplication factor */
599 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
600 lapic_clockevent.shift);
601 lapic_clockevent.max_delta_ns =
602 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
603 lapic_clockevent.min_delta_ns =
604 clockevent_delta2ns(0xF, &lapic_clockevent);
605
606 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
607
608 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
609 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
610 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
611 calibration_result);
612
613 if (cpu_has_tsc) {
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700614 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
615 "%ld.%04ld MHz.\n",
Yasuaki Ishimatsu754ef0c2009-01-28 12:51:09 +0900616 (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
617 (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700618 }
619
620 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
621 "%u.%04u MHz.\n",
622 calibration_result / (1000000 / HZ),
623 calibration_result % (1000000 / HZ));
624
625 /*
626 * Do a sanity check on the APIC calibration result
627 */
628 if (calibration_result < (1000000 / HZ)) {
629 local_irq_enable();
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100630 pr_warning("APIC frequency too slow, disabling apic timer\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700631 return -1;
632 }
633
634 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
635
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400636 /*
637 * PM timer calibration failed or not turned on
638 * so lets try APIC timer based calibration
639 */
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700640 if (!pm_referenced) {
641 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
642
643 /*
644 * Setup the apic timer manually
645 */
646 levt->event_handler = lapic_cal_handler;
647 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
648 lapic_cal_loops = -1;
649
650 /* Let the interrupts run */
651 local_irq_enable();
652
653 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
654 cpu_relax();
655
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700656 /* Stop the lapic timer */
657 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
658
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700659 /* Jiffies delta */
660 deltaj = lapic_cal_j2 - lapic_cal_j1;
661 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
662
663 /* Check, if the jiffies result is consistent */
664 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
665 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
666 else
667 levt->features |= CLOCK_EVT_FEAT_DUMMY;
668 } else
669 local_irq_enable();
670
671 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +0530672 pr_warning("APIC timer disabled due to verification failure\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700673 return -1;
674 }
675
676 return 0;
677}
678
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100679/*
680 * Setup the boot APIC
681 *
682 * Calibrate and verify the result.
683 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100684void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100686 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400687 * The local apic timer can be disabled via the kernel
688 * commandline or from the CPU detection code. Register the lapic
689 * timer as a dummy clock event source on SMP systems, so the
690 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100691 */
692 if (disable_apic_timer) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100693 pr_info("Disabling APIC timer\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100694 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100695 if (num_possible_cpus() > 1) {
696 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100697 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100698 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100699 return;
700 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200701
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400702 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
703 "calibrating APIC timer ...\n");
704
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400705 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100706 /* No broadcast on UP ! */
707 if (num_possible_cpus() > 1)
708 setup_APIC_timer();
709 return;
710 }
711
712 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100713 * If nmi_watchdog is set to IO_APIC, we need the
714 * PIT/HPET going. Otherwise register lapic as a dummy
715 * device.
716 */
717 if (nmi_watchdog != NMI_IO_APIC)
718 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
719 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100720 pr_warning("APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200721 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100722
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400723 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100724 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100727void __cpuinit setup_secondary_APIC_clock(void)
728{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100729 setup_APIC_timer();
730}
731
732/*
733 * The guts of the apic timer interrupt
734 */
735static void local_apic_timer_interrupt(void)
736{
737 int cpu = smp_processor_id();
738 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
739
740 /*
741 * Normally we should not be here till LAPIC has been initialized but
742 * in some cases like kdump, its possible that there is a pending LAPIC
743 * timer interrupt from previous kernel's context and is delivered in
744 * new kernel the moment interrupts are enabled.
745 *
746 * Interrupts are enabled early and LAPIC is setup much later, hence
747 * its possible that when we get here evt->event_handler is NULL.
748 * Check for event_handler being NULL and discard the interrupt as
749 * spurious.
750 */
751 if (!evt->event_handler) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100752 pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100753 /* Switch it off */
754 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
755 return;
756 }
757
758 /*
759 * the NMI deadlock-detector uses this.
760 */
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -0800761 inc_irq_stat(apic_timer_irqs);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100762
763 evt->event_handler(evt);
764}
765
766/*
767 * Local APIC timer interrupt. This is the most natural way for doing
768 * local interrupts, but local timer interrupts can be emulated by
769 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
770 *
771 * [ if a single-CPU system runs an SMP kernel then we call the local
772 * interrupt as well. Thus we cannot inline the local irq ... ]
773 */
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100774void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100775{
776 struct pt_regs *old_regs = set_irq_regs(regs);
777
778 /*
779 * NOTE! We'd better ACK the irq immediately,
780 * because timer handling can be slow.
781 */
782 ack_APIC_irq();
783 /*
784 * update_process_times() expects us to have done irq_enter().
785 * Besides, if we don't timer interrupts ignore the global
786 * interrupt lock, which is the WrongThing (tm) to do.
787 */
788 exit_idle();
789 irq_enter();
790 local_apic_timer_interrupt();
791 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400792
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100793 set_irq_regs(old_regs);
794}
795
796int setup_profiling_timer(unsigned int multiplier)
797{
798 return -EINVAL;
799}
800
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100801/*
802 * Local APIC start and shutdown
803 */
804
805/**
806 * clear_local_APIC - shutdown the local APIC
807 *
808 * This is called, when a CPU is disabled and before rebooting, so the state of
809 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
810 * leftovers during boot.
811 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812void clear_local_APIC(void)
813{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400814 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100815 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Andi Kleend3432892008-01-30 13:33:17 +0100817 /* APIC hasn't been mapped yet */
Suresh Siddhacf6567f2009-03-16 17:05:00 -0700818 if (!x2apic && !apic_phys)
Andi Kleend3432892008-01-30 13:33:17 +0100819 return;
820
821 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200823 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 * if the vector is zero. Mask LVTERR first to prevent this.
825 */
826 if (maxlvt >= 3) {
827 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100828 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830 /*
831 * Careful: we have to set masks only first to deassert
832 * any level-triggered sources.
833 */
834 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100835 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100837 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100839 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (maxlvt >= 4) {
841 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100842 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400845 /* lets not touch this if we didn't frob it */
Andi Kleen07db1c12009-02-12 13:39:35 +0100846#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400847 if (maxlvt >= 5) {
848 v = apic_read(APIC_LVTTHMR);
849 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
850 }
851#endif
Andi Kleen5ca86812009-02-12 13:49:37 +0100852#ifdef CONFIG_X86_MCE_INTEL
853 if (maxlvt >= 6) {
854 v = apic_read(APIC_LVTCMCI);
855 if (!(v & APIC_LVT_MASKED))
856 apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
857 }
858#endif
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /*
861 * Clean APIC state for other OSs:
862 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100863 apic_write(APIC_LVTT, APIC_LVT_MASKED);
864 apic_write(APIC_LVT0, APIC_LVT_MASKED);
865 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100867 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100869 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400870
871 /* Integrated APIC (!82489DX) ? */
872 if (lapic_is_integrated()) {
873 if (maxlvt > 3)
874 /* Clear ESR due to Pentium errata 3AP and 11AP */
875 apic_write(APIC_ESR, 0);
876 apic_read(APIC_ESR);
877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100880/**
881 * disable_local_APIC - clear and disable the local APIC
882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883void disable_local_APIC(void)
884{
885 unsigned int value;
886
Jan Beulich4a13ad02009-01-14 12:28:51 +0000887 /* APIC hasn't been mapped yet */
888 if (!apic_phys)
889 return;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 clear_local_APIC();
892
893 /*
894 * Disable APIC (implies clearing of registers
895 * for 82489DX!).
896 */
897 value = apic_read(APIC_SPIV);
898 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100899 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400900
901#ifdef CONFIG_X86_32
902 /*
903 * When LAPIC was disabled by the BIOS and enabled by the kernel,
904 * restore the disabled state.
905 */
906 if (enabled_via_apicbase) {
907 unsigned int l, h;
908
909 rdmsr(MSR_IA32_APICBASE, l, h);
910 l &= ~MSR_IA32_APICBASE_ENABLE;
911 wrmsr(MSR_IA32_APICBASE, l, h);
912 }
913#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400916/*
917 * If Linux enabled the LAPIC against the BIOS default disable it down before
918 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
919 * not power-off. Additionally clear all LVT entries before disable_local_APIC
920 * for the case where Linux didn't enable the LAPIC.
921 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700922void lapic_shutdown(void)
923{
924 unsigned long flags;
925
926 if (!cpu_has_apic)
927 return;
928
929 local_irq_save(flags);
930
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400931#ifdef CONFIG_X86_32
932 if (!enabled_via_apicbase)
933 clear_local_APIC();
934 else
935#endif
936 disable_local_APIC();
937
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700938
939 local_irq_restore(flags);
940}
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942/*
943 * This is to verify that we're looking at a real local APIC.
944 * Check these against your board if the CPUs aren't getting
945 * started for no apparent reason.
946 */
947int __init verify_local_APIC(void)
948{
949 unsigned int reg0, reg1;
950
951 /*
952 * The version register is read-only in a real APIC.
953 */
954 reg0 = apic_read(APIC_LVR);
955 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
956 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
957 reg1 = apic_read(APIC_LVR);
958 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
959
960 /*
961 * The two version reads above should print the same
962 * numbers. If the second one is different, then we
963 * poke at a non-APIC.
964 */
965 if (reg1 != reg0)
966 return 0;
967
968 /*
969 * Check if the version looks reasonably.
970 */
971 reg1 = GET_APIC_VERSION(reg0);
972 if (reg1 == 0x00 || reg1 == 0xff)
973 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100974 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (reg1 < 0x02 || reg1 == 0xff)
976 return 0;
977
978 /*
979 * The ID register is read/write in a real APIC.
980 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700981 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +0100983 apic_write(APIC_ID, reg0 ^ apic->apic_id_mask);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700984 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
986 apic_write(APIC_ID, reg0);
Ingo Molnar5b812722009-01-28 14:59:17 +0100987 if (reg1 != (reg0 ^ apic->apic_id_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return 0;
989
990 /*
991 * The next two are just to see if we have sane values.
992 * They're only really relevant if we're in Virtual Wire
993 * compatibility mode, but most boxes are anymore.
994 */
995 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100996 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 reg1 = apic_read(APIC_LVT1);
998 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
999
1000 return 1;
1001}
1002
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001003/**
1004 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006void __init sync_Arb_IDs(void)
1007{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +02001008 /*
1009 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1010 * needed on AMD.
1011 */
1012 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return;
1014
1015 /*
1016 * Wait for idle.
1017 */
1018 apic_wait_icr_idle();
1019
1020 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +04001021 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1022 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025/*
1026 * An initial setup of the virtual wire mode.
1027 */
1028void __init init_bsp_APIC(void)
1029{
Andi Kleen11a8e772006-01-11 22:46:51 +01001030 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /*
1033 * Don't do the setup now if we have a SMP BIOS as the
1034 * through-I/O-APIC virtual wire mode might be active.
1035 */
1036 if (smp_found_config || !cpu_has_apic)
1037 return;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /*
1040 * Do not trust the local APIC being empty at bootup.
1041 */
1042 clear_local_APIC();
1043
1044 /*
1045 * Enable APIC.
1046 */
1047 value = apic_read(APIC_SPIV);
1048 value &= ~APIC_VECTOR_MASK;
1049 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001050
1051#ifdef CONFIG_X86_32
1052 /* This bit is reserved on P4/Xeon and should be cleared */
1053 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1054 (boot_cpu_data.x86 == 15))
1055 value &= ~APIC_SPIV_FOCUS_DISABLED;
1056 else
1057#endif
1058 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001060 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 /*
1063 * Set up the virtual wire mode.
1064 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001065 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001067 if (!lapic_is_integrated()) /* 82489DX */
1068 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001069 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001072static void __cpuinit lapic_setup_esr(void)
1073{
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001074 unsigned int oldvalue, value, maxlvt;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001075
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001076 if (!lapic_is_integrated()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001077 pr_info("No ESR for 82489DX.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001078 return;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001079 }
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001080
Ingo Molnar08125d32009-01-28 05:08:44 +01001081 if (apic->disable_esr) {
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001082 /*
1083 * Something untraceable is creating bad interrupts on
1084 * secondary quads ... for the moment, just leave the
1085 * ESR disabled - we can't do anything useful with the
1086 * errors anyway - mbligh
1087 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001088 pr_info("Leaving ESR disabled.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001089 return;
1090 }
1091
1092 maxlvt = lapic_get_maxlvt();
1093 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1094 apic_write(APIC_ESR, 0);
1095 oldvalue = apic_read(APIC_ESR);
1096
1097 /* enables sending errors */
1098 value = ERROR_APIC_VECTOR;
1099 apic_write(APIC_LVTERR, value);
1100
1101 /*
1102 * spec says clear errors after enabling vector.
1103 */
1104 if (maxlvt > 3)
1105 apic_write(APIC_ESR, 0);
1106 value = apic_read(APIC_ESR);
1107 if (value != oldvalue)
1108 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1109 "vector: 0x%08x after: 0x%08x\n",
1110 oldvalue, value);
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001111}
1112
1113
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001114/**
1115 * setup_local_APIC - setup the local APIC
1116 */
1117void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Andi Kleen739f33b2008-01-30 13:30:40 +01001119 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001120 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Jan Beulichf1182632009-01-14 12:27:35 +00001122 if (disable_apic) {
Ingo Molnar65a4e572009-01-31 03:36:17 +01001123 arch_disable_smp_support();
Jan Beulichf1182632009-01-14 12:27:35 +00001124 return;
1125 }
1126
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001127#ifdef CONFIG_X86_32
1128 /* Pound the ESR really hard over the head with a big hammer - mbligh */
Ingo Molnar08125d32009-01-28 05:08:44 +01001129 if (lapic_is_integrated() && apic->disable_esr) {
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001130 apic_write(APIC_ESR, 0);
1131 apic_write(APIC_ESR, 0);
1132 apic_write(APIC_ESR, 0);
1133 apic_write(APIC_ESR, 0);
1134 }
1135#endif
1136
Jack Steinerac23d4e2008-03-28 14:12:16 -05001137 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 /*
1140 * Double-check whether this APIC is really registered.
1141 * This is meaningless in clustered apic mode, so we skip it.
1142 */
Ingo Molnar7ed248d2009-01-28 03:43:47 +01001143 if (!apic->apic_id_registered())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 BUG();
1145
1146 /*
1147 * Intel recommends to set DFR, LDR and TPR before enabling
1148 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1149 * document number 292116). So here it goes...
1150 */
Ingo Molnara5c43292009-01-28 06:50:47 +01001151 apic->init_apic_ldr();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 /*
1154 * Set Task Priority to 'accept all'. We never change this
1155 * later on.
1156 */
1157 value = apic_read(APIC_TASKPRI);
1158 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001159 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001162 * After a crash, we no longer service the interrupts and a pending
1163 * interrupt from previous kernel might still have ISR bit set.
1164 *
1165 * Most probably by now CPU has serviced that pending interrupt and
1166 * it might not have done the ack_APIC_irq() because it thought,
1167 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1168 * does not clear the ISR bit and cpu thinks it has already serivced
1169 * the interrupt. Hence a vector might get locked. It was noticed
1170 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1171 */
1172 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1173 value = apic_read(APIC_ISR + i*0x10);
1174 for (j = 31; j >= 0; j--) {
1175 if (value & (1<<j))
1176 ack_APIC_irq();
1177 }
1178 }
1179
1180 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 * Now that we are all set up, enable the APIC
1182 */
1183 value = apic_read(APIC_SPIV);
1184 value &= ~APIC_VECTOR_MASK;
1185 /*
1186 * Enable APIC
1187 */
1188 value |= APIC_SPIV_APIC_ENABLED;
1189
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001190#ifdef CONFIG_X86_32
1191 /*
1192 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1193 * certain networking cards. If high frequency interrupts are
1194 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1195 * entry is masked/unmasked at a high rate as well then sooner or
1196 * later IOAPIC line gets 'stuck', no more interrupts are received
1197 * from the device. If focus CPU is disabled then the hang goes
1198 * away, oh well :-(
1199 *
1200 * [ This bug can be reproduced easily with a level-triggered
1201 * PCI Ne2000 networking cards and PII/PIII processors, dual
1202 * BX chipset. ]
1203 */
1204 /*
1205 * Actually disabling the focus CPU check just makes the hang less
1206 * frequent as it makes the interrupt distributon model be more
1207 * like LRU than MRU (the short-term load is more even across CPUs).
1208 * See also the comment in end_level_ioapic_irq(). --macro
1209 */
1210
1211 /*
1212 * - enable focus processor (bit==0)
1213 * - 64bit mode always use processor focus
1214 * so no need to set it
1215 */
1216 value &= ~APIC_SPIV_FOCUS_DISABLED;
1217#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /*
1220 * Set spurious IRQ vector
1221 */
1222 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001223 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 /*
1226 * Set up LVT0, LVT1:
1227 *
1228 * set up through-local-APIC on the BP's LINT0. This is not
1229 * strictly necessary in pure symmetric-IO mode, but sometimes
1230 * we delegate interrupts to the 8259A.
1231 */
1232 /*
1233 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1234 */
1235 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001236 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001238 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001239 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 } else {
1241 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001242 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001243 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001245 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 /*
1248 * only the BP should see the LINT1 NMI signal, obviously.
1249 */
1250 if (!smp_processor_id())
1251 value = APIC_DM_NMI;
1252 else
1253 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001254 if (!lapic_is_integrated()) /* 82489DX */
1255 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001256 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001257
Jack Steinerac23d4e2008-03-28 14:12:16 -05001258 preempt_enable();
Andi Kleenbe71b852009-02-12 13:49:38 +01001259
1260#ifdef CONFIG_X86_MCE_INTEL
1261 /* Recheck CMCI information after local APIC is up on CPU #0 */
1262 if (smp_processor_id() == 0)
1263 cmci_recheck();
1264#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Andi Kleen739f33b2008-01-30 13:30:40 +01001267void __cpuinit end_local_APIC_setup(void)
1268{
1269 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001270
1271#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001272 {
1273 unsigned int value;
1274 /* Disable the local apic timer */
1275 value = apic_read(APIC_LVTT);
1276 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1277 apic_write(APIC_LVTT, value);
1278 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001279#endif
1280
Don Zickusf2802e72006-09-26 10:52:26 +02001281 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 apic_pm_activate();
1283}
1284
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001285#ifdef CONFIG_X86_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001286void check_x2apic(void)
1287{
Suresh Siddhaef1f87a2009-02-21 14:23:21 -08001288 if (x2apic_enabled()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001289 pr_info("x2apic enabled by BIOS, switching to x2apic ops\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001290 x2apic_preenabled = x2apic = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001291 }
1292}
1293
1294void enable_x2apic(void)
1295{
1296 int msr, msr2;
1297
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001298 if (!x2apic)
1299 return;
1300
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001301 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1302 if (!(msr & X2APIC_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001303 pr_info("Enabling x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001304 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1305 }
1306}
1307
Al Viro2236d252008-11-22 17:37:34 +00001308void __init enable_IR_x2apic(void)
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001309{
1310#ifdef CONFIG_INTR_REMAP
1311 int ret;
1312 unsigned long flags;
Fenghua Yub24696b2009-03-27 14:22:44 -07001313 struct IO_APIC_route_entry **ioapic_entries = NULL;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001314
1315 if (!cpu_has_x2apic)
1316 return;
1317
1318 if (!x2apic_preenabled && disable_x2apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001319 pr_info("Skipped enabling x2apic and Interrupt-remapping "
1320 "because of nox2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001321 return;
1322 }
1323
1324 if (x2apic_preenabled && disable_x2apic)
1325 panic("Bios already enabled x2apic, can't enforce nox2apic");
1326
1327 if (!x2apic_preenabled && skip_ioapic_setup) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001328 pr_info("Skipped enabling x2apic and Interrupt-remapping "
1329 "because of skipping io-apic setup\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001330 return;
1331 }
1332
1333 ret = dmar_table_init();
1334 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001335 pr_info("dmar_table_init() failed with %d:\n", ret);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001336
1337 if (x2apic_preenabled)
1338 panic("x2apic enabled by bios. But IR enabling failed");
1339 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001340 pr_info("Not enabling x2apic,Intr-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001341 return;
1342 }
1343
Fenghua Yub24696b2009-03-27 14:22:44 -07001344 ioapic_entries = alloc_ioapic_entries();
1345 if (!ioapic_entries) {
1346 pr_info("Allocate ioapic_entries failed: %d\n", ret);
1347 goto end;
1348 }
1349
1350 ret = save_IO_APIC_setup(ioapic_entries);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001351 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001352 pr_info("Saving IO-APIC state failed: %d\n", ret);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001353 goto end;
1354 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001355
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001356 local_irq_save(flags);
Fenghua Yub24696b2009-03-27 14:22:44 -07001357 mask_IO_APIC_setup(ioapic_entries);
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001358 mask_8259A();
1359
Fenghua Yub24696b2009-03-27 14:22:44 -07001360 ret = enable_intr_remapping(EIM_32BIT_APIC_ID);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001361
1362 if (ret && x2apic_preenabled) {
1363 local_irq_restore(flags);
1364 panic("x2apic enabled by bios. But IR enabling failed");
1365 }
1366
1367 if (ret)
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001368 goto end_restore;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001369
1370 if (!x2apic) {
1371 x2apic = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001372 enable_x2apic();
1373 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001374
1375end_restore:
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001376 if (ret)
1377 /*
1378 * IR enabling failed
1379 */
Fenghua Yub24696b2009-03-27 14:22:44 -07001380 restore_IO_APIC_setup(ioapic_entries);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001381 else
Fenghua Yub24696b2009-03-27 14:22:44 -07001382 reinit_intr_remapped_IO_APIC(x2apic_preenabled, ioapic_entries);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001383
1384 unmask_8259A();
1385 local_irq_restore(flags);
1386
Suresh Siddha05c3dc22009-03-16 17:05:03 -07001387end:
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001388 if (!ret) {
1389 if (!x2apic_preenabled)
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001390 pr_info("Enabled x2apic and interrupt-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001391 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001392 pr_info("Enabled Interrupt-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001393 } else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001394 pr_err("Failed to enable Interrupt-remapping and x2apic\n");
Fenghua Yub24696b2009-03-27 14:22:44 -07001395 if (ioapic_entries)
1396 free_ioapic_entries(ioapic_entries);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001397#else
1398 if (!cpu_has_x2apic)
1399 return;
1400
1401 if (x2apic_preenabled)
1402 panic("x2apic enabled prior OS handover,"
1403 " enable CONFIG_INTR_REMAP");
1404
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001405 pr_info("Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1406 " and x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001407#endif
1408
1409 return;
1410}
Yinghai Lu06cd9a72009-02-16 17:29:58 -08001411#endif /* CONFIG_X86_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001412
Yinghai Lube7a6562008-08-24 02:01:51 -07001413#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001414/*
1415 * Detect and enable local APICs on non-SMP boards.
1416 * Original code written by Keir Fraser.
1417 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1418 * not correctly set up (usually the APIC timer won't work etc.)
1419 */
1420static int __init detect_init_APIC(void)
1421{
1422 if (!cpu_has_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001423 pr_info("No local APIC present\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001424 return -1;
1425 }
1426
1427 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001428 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001429 return 0;
1430}
Yinghai Lube7a6562008-08-24 02:01:51 -07001431#else
1432/*
1433 * Detect and initialize APIC
1434 */
1435static int __init detect_init_APIC(void)
1436{
1437 u32 h, l, features;
1438
1439 /* Disabled by kernel option? */
1440 if (disable_apic)
1441 return -1;
1442
1443 switch (boot_cpu_data.x86_vendor) {
1444 case X86_VENDOR_AMD:
1445 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
Borislav Petkov85877062009-02-03 16:24:22 +01001446 (boot_cpu_data.x86 >= 15))
Yinghai Lube7a6562008-08-24 02:01:51 -07001447 break;
1448 goto no_apic;
1449 case X86_VENDOR_INTEL:
1450 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1451 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1452 break;
1453 goto no_apic;
1454 default:
1455 goto no_apic;
1456 }
1457
1458 if (!cpu_has_apic) {
1459 /*
1460 * Over-ride BIOS and try to enable the local APIC only if
1461 * "lapic" specified.
1462 */
1463 if (!force_enable_local_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001464 pr_info("Local APIC disabled by BIOS -- "
1465 "you can enable it with \"lapic\"\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001466 return -1;
1467 }
1468 /*
1469 * Some BIOSes disable the local APIC in the APIC_BASE
1470 * MSR. This can only be done in software for Intel P6 or later
1471 * and AMD K7 (Model > 1) or later.
1472 */
1473 rdmsr(MSR_IA32_APICBASE, l, h);
1474 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001475 pr_info("Local APIC disabled by BIOS -- reenabling.\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001476 l &= ~MSR_IA32_APICBASE_BASE;
1477 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1478 wrmsr(MSR_IA32_APICBASE, l, h);
1479 enabled_via_apicbase = 1;
1480 }
1481 }
1482 /*
1483 * The APIC feature bit should now be enabled
1484 * in `cpuid'
1485 */
1486 features = cpuid_edx(1);
1487 if (!(features & (1 << X86_FEATURE_APIC))) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001488 pr_warning("Could not enable APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001489 return -1;
1490 }
1491 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1492 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1493
1494 /* The BIOS may have set up the APIC at some other address */
1495 rdmsr(MSR_IA32_APICBASE, l, h);
1496 if (l & MSR_IA32_APICBASE_ENABLE)
1497 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1498
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001499 pr_info("Found and enabled local APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001500
1501 apic_pm_activate();
1502
1503 return 0;
1504
1505no_apic:
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001506 pr_info("No local APIC present or hardware disabled\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001507 return -1;
1508}
1509#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001510
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001511#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001512void __init early_init_lapic_mapping(void)
1513{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001514 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001515
1516 /*
1517 * If no local APIC can be found then go out
1518 * : it means there is no mpatable and MADT
1519 */
1520 if (!smp_found_config)
1521 return;
1522
Thomas Gleixner431ee792008-05-12 15:43:35 +02001523 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001524
Thomas Gleixner431ee792008-05-12 15:43:35 +02001525 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001526 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001527 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001528
1529 /*
1530 * Fetch the APIC ID of the BSP in case we have a
1531 * default configuration (or the MP table is broken).
1532 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001533 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001534}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001535#endif
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001536
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001537/**
1538 * init_apic_mappings - initialize APIC mappings
1539 */
1540void __init init_apic_mappings(void)
1541{
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001542 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001543 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001544 return;
1545 }
1546
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001547 /*
1548 * If no local APIC can be found then set up a fake all
1549 * zeroes page to simulate the local APIC and another
1550 * one for the IO-APIC.
1551 */
1552 if (!smp_found_config && detect_init_APIC()) {
1553 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1554 apic_phys = __pa(apic_phys);
1555 } else
1556 apic_phys = mp_lapic_addr;
1557
1558 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
Yinghai Lu79c09692008-09-07 17:58:57 -07001559 apic_printk(APIC_VERBOSE, "mapped APIC to %08lx (%08lx)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001560 APIC_BASE, apic_phys);
1561
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001562 /*
1563 * Fetch the APIC ID of the BSP in case we have a
1564 * default configuration (or the MP table is broken).
1565 */
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001566 if (boot_cpu_physical_apicid == -1U)
1567 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001568}
1569
1570/*
1571 * This initializes the IO-APIC and APIC hardware if this is
1572 * a UP kernel.
1573 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001574int apic_version[MAX_APICS];
1575
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001576int __init APIC_init_uniprocessor(void)
1577{
1578 if (disable_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001579 pr_info("Apic disabled\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001580 return -1;
1581 }
Jan Beulichf1182632009-01-14 12:27:35 +00001582#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001583 if (!cpu_has_apic) {
1584 disable_apic = 1;
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001585 pr_info("Apic disabled by BIOS\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001586 return -1;
1587 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001588#else
1589 if (!smp_found_config && !cpu_has_apic)
1590 return -1;
1591
1592 /*
1593 * Complain if the BIOS pretends there is one.
1594 */
1595 if (!cpu_has_apic &&
1596 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001597 pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
1598 boot_cpu_physical_apicid);
Yinghai Lufa2bd352008-08-24 02:01:50 -07001599 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1600 return -1;
1601 }
1602#endif
1603
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001604 enable_IR_x2apic();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001605#ifdef CONFIG_X86_64
Ingo Molnar72ce0162009-01-28 06:50:47 +01001606 default_setup_apic_routing();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001607#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001608
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001609 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001610 connect_bsp_APIC();
1611
Yinghai Lufa2bd352008-08-24 02:01:50 -07001612#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001613 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001614#else
1615 /*
1616 * Hack: In case of kdump, after a crash, kernel might be booting
1617 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1618 * might be zero if read from MP tables. Get it from LAPIC.
1619 */
1620# ifdef CONFIG_CRASH_DUMP
1621 boot_cpu_physical_apicid = read_apic_id();
1622# endif
1623#endif
1624 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001625 setup_local_APIC();
1626
Yinghai Lu88d0f552009-02-14 23:57:28 -08001627#ifdef CONFIG_X86_IO_APIC
Andi Kleen739f33b2008-01-30 13:30:40 +01001628 /*
1629 * Now enable IO-APICs, actually call clear_IO_APIC
Yinghai Lu98c061b2009-02-16 00:00:50 -08001630 * We need clear_IO_APIC before enabling error vector
Andi Kleen739f33b2008-01-30 13:30:40 +01001631 */
1632 if (!skip_ioapic_setup && nr_ioapics)
1633 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001634#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001635
1636 end_local_APIC_setup();
1637
Yinghai Lufa2bd352008-08-24 02:01:50 -07001638#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001639 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1640 setup_IO_APIC();
Yinghai Lu98c061b2009-02-16 00:00:50 -08001641 else {
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001642 nr_ioapics = 0;
Yinghai Lu98c061b2009-02-16 00:00:50 -08001643 localise_nmi_watchdog();
1644 }
1645#else
1646 localise_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001647#endif
1648
Yinghai Lufa2bd352008-08-24 02:01:50 -07001649 setup_boot_clock();
Yinghai Lu98c061b2009-02-16 00:00:50 -08001650#ifdef CONFIG_X86_64
1651 check_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001652#endif
1653
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001654 return 0;
1655}
1656
1657/*
1658 * Local APIC interrupts
1659 */
1660
1661/*
1662 * This interrupt should _never_ happen with our APIC/SMP architecture
1663 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001664void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001665{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001666 u32 v;
1667
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001668 exit_idle();
1669 irq_enter();
1670 /*
1671 * Check if this really is a spurious interrupt and ACK it
1672 * if it is a vectored one. Just in case...
1673 * Spurious interrupts should not be ACKed.
1674 */
1675 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1676 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1677 ack_APIC_irq();
1678
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -08001679 inc_irq_stat(irq_spurious_count);
1680
Yinghai Ludc1528d2008-08-24 02:01:53 -07001681 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001682 pr_info("spurious APIC interrupt on CPU#%d, "
1683 "should never happen.\n", smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001684 irq_exit();
1685}
1686
1687/*
1688 * This interrupt should never happen with our APIC/SMP architecture
1689 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001690void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001691{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001692 u32 v, v1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001693
1694 exit_idle();
1695 irq_enter();
1696 /* First tickle the hardware, only then report what went on. -- REW */
1697 v = apic_read(APIC_ESR);
1698 apic_write(APIC_ESR, 0);
1699 v1 = apic_read(APIC_ESR);
1700 ack_APIC_irq();
1701 atomic_inc(&irq_err_count);
1702
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001703 /*
1704 * Here is what the APIC error bits mean:
1705 * 0: Send CS error
1706 * 1: Receive CS error
1707 * 2: Send accept error
1708 * 3: Receive accept error
1709 * 4: Reserved
1710 * 5: Send illegal vector
1711 * 6: Received illegal vector
1712 * 7: Illegal register address
1713 */
1714 pr_debug("APIC error on CPU%d: %02x(%02x)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001715 smp_processor_id(), v , v1);
1716 irq_exit();
1717}
1718
Glauber Costab5841762008-05-28 13:38:28 -03001719/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001720 * connect_bsp_APIC - attach the APIC to the interrupt system
1721 */
Glauber Costab5841762008-05-28 13:38:28 -03001722void __init connect_bsp_APIC(void)
1723{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001724#ifdef CONFIG_X86_32
1725 if (pic_mode) {
1726 /*
1727 * Do not trust the local APIC being empty at bootup.
1728 */
1729 clear_local_APIC();
1730 /*
1731 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1732 * local APIC to INT and NMI lines.
1733 */
1734 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1735 "enabling APIC mode.\n");
1736 outb(0x70, 0x22);
1737 outb(0x01, 0x23);
1738 }
1739#endif
Ingo Molnar49040332009-01-28 12:43:18 +01001740 if (apic->enable_apic_mode)
1741 apic->enable_apic_mode();
Glauber Costab5841762008-05-28 13:38:28 -03001742}
1743
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001744/**
1745 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1746 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1747 *
1748 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1749 * APIC is disabled.
1750 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001751void disconnect_bsp_APIC(int virt_wire_setup)
1752{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001753 unsigned int value;
1754
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001755#ifdef CONFIG_X86_32
1756 if (pic_mode) {
1757 /*
1758 * Put the board back into PIC mode (has an effect only on
1759 * certain older boards). Note that APIC interrupts, including
1760 * IPIs, won't work beyond this point! The only exception are
1761 * INIT IPIs.
1762 */
1763 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1764 "entering PIC mode.\n");
1765 outb(0x70, 0x22);
1766 outb(0x00, 0x23);
1767 return;
1768 }
1769#endif
1770
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001771 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001772
1773 /* For the spurious interrupt use vector F, and enable it */
1774 value = apic_read(APIC_SPIV);
1775 value &= ~APIC_VECTOR_MASK;
1776 value |= APIC_SPIV_APIC_ENABLED;
1777 value |= 0xf;
1778 apic_write(APIC_SPIV, value);
1779
1780 if (!virt_wire_setup) {
1781 /*
1782 * For LVT0 make it edge triggered, active high,
1783 * external and enabled
1784 */
1785 value = apic_read(APIC_LVT0);
1786 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1787 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1788 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1789 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1790 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1791 apic_write(APIC_LVT0, value);
1792 } else {
1793 /* Disable LVT0 */
1794 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1795 }
1796
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001797 /*
1798 * For LVT1 make it edge triggered, active high,
1799 * nmi and enabled
1800 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001801 value = apic_read(APIC_LVT1);
1802 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1803 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1804 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1805 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1806 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1807 apic_write(APIC_LVT1, value);
1808}
1809
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001810void __cpuinit generic_processor_info(int apicid, int version)
1811{
1812 int cpu;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001813
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001814 /*
1815 * Validate version
1816 */
1817 if (version == 0x0) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001818 pr_warning("BIOS bug, APIC version is 0 for CPU#%d! "
Mike Travis3b11ce72008-12-17 15:21:39 -08001819 "fixing up to 0x10. (tell your hw vendor)\n",
1820 version);
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001821 version = 0x10;
1822 }
1823 apic_version[apicid] = version;
1824
Mike Travis3b11ce72008-12-17 15:21:39 -08001825 if (num_processors >= nr_cpu_ids) {
1826 int max = nr_cpu_ids;
1827 int thiscpu = max + disabled_cpus;
1828
1829 pr_warning(
1830 "ACPI: NR_CPUS/possible_cpus limit of %i reached."
1831 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
1832
1833 disabled_cpus++;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001834 return;
1835 }
1836
1837 num_processors++;
Mike Travis3b11ce72008-12-17 15:21:39 -08001838 cpu = cpumask_next_zero(-1, cpu_present_mask);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001839
Mike Travisb2b815d2009-01-16 15:22:16 -08001840 if (version != apic_version[boot_cpu_physical_apicid])
1841 WARN_ONCE(1,
1842 "ACPI: apic version mismatch, bootcpu: %x cpu %d: %x\n",
1843 apic_version[boot_cpu_physical_apicid], cpu, version);
1844
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001845 physid_set(apicid, phys_cpu_present_map);
1846 if (apicid == boot_cpu_physical_apicid) {
1847 /*
1848 * x86_bios_cpu_apicid is required to have processors listed
1849 * in same order as logical cpu numbers. Hence the first
1850 * entry is BSP, and so on.
1851 */
1852 cpu = 0;
1853 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001854 if (apicid > max_physical_apicid)
1855 max_physical_apicid = apicid;
1856
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001857#ifdef CONFIG_X86_32
1858 /*
1859 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1860 * but we need to work other dependencies like SMP_SUSPEND etc
1861 * before this can be done without some confusion.
1862 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1863 * - Ashok Raj <ashok.raj@intel.com>
1864 */
1865 if (max_physical_apicid >= 8) {
1866 switch (boot_cpu_data.x86_vendor) {
1867 case X86_VENDOR_INTEL:
1868 if (!APIC_XAPIC(version)) {
1869 def_to_bigsmp = 0;
1870 break;
1871 }
1872 /* If P4 and above fall through */
1873 case X86_VENDOR_AMD:
1874 def_to_bigsmp = 1;
1875 }
1876 }
1877#endif
1878
Ingo Molnar3e5095d2009-01-27 17:07:08 +01001879#if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
Tejun Heof10fcd42009-01-13 20:41:34 +09001880 early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1881 early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001882#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001883
Mike Travis1de88cd2008-12-16 17:34:02 -08001884 set_cpu_possible(cpu, true);
1885 set_cpu_present(cpu, true);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001886}
1887
Suresh Siddha0c81c742008-07-10 11:16:48 -07001888int hard_smp_processor_id(void)
1889{
1890 return read_apic_id();
1891}
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +01001892
1893void default_init_apic_ldr(void)
1894{
1895 unsigned long val;
1896
1897 apic_write(APIC_DFR, APIC_DFR_VALUE);
1898 val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
1899 val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
1900 apic_write(APIC_LDR, val);
1901}
1902
1903#ifdef CONFIG_X86_32
1904int default_apicid_to_node(int logical_apicid)
1905{
1906#ifdef CONFIG_SMP
1907 return apicid_2_node[hard_smp_processor_id()];
1908#else
1909 return 0;
1910#endif
1911}
Yinghai Lu34919982008-08-24 02:01:48 -07001912#endif
Suresh Siddha0c81c742008-07-10 11:16:48 -07001913
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001914/*
1915 * Power management
1916 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917#ifdef CONFIG_PM
1918
1919static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001920 /*
1921 * 'active' is true if the local APIC was enabled by us and
1922 * not the BIOS; this signifies that we are also responsible
1923 * for disabling it before entering apm/acpi suspend
1924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 int active;
1926 /* r/w apic fields */
1927 unsigned int apic_id;
1928 unsigned int apic_taskpri;
1929 unsigned int apic_ldr;
1930 unsigned int apic_dfr;
1931 unsigned int apic_spiv;
1932 unsigned int apic_lvtt;
1933 unsigned int apic_lvtpc;
1934 unsigned int apic_lvt0;
1935 unsigned int apic_lvt1;
1936 unsigned int apic_lvterr;
1937 unsigned int apic_tmict;
1938 unsigned int apic_tdcr;
1939 unsigned int apic_thmr;
1940} apic_pm_state;
1941
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001942static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
1944 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001945 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 if (!apic_pm_state.active)
1948 return 0;
1949
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001950 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001951
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001952 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1954 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1955 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1956 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1957 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001958 if (maxlvt >= 4)
1959 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1961 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1962 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1963 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1964 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001965#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001966 if (maxlvt >= 5)
1967 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1968#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001969
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001970 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 disable_local_APIC();
Fenghua Yub24696b2009-03-27 14:22:44 -07001972#ifdef CONFIG_INTR_REMAP
1973 if (intr_remapping_enabled)
1974 disable_intr_remapping();
1975#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 local_irq_restore(flags);
1977 return 0;
1978}
1979
1980static int lapic_resume(struct sys_device *dev)
1981{
1982 unsigned int l, h;
1983 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001984 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Fenghua Yub24696b2009-03-27 14:22:44 -07001986#ifdef CONFIG_INTR_REMAP
1987 int ret;
1988 struct IO_APIC_route_entry **ioapic_entries = NULL;
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 if (!apic_pm_state.active)
1991 return 0;
1992
Fenghua Yub24696b2009-03-27 14:22:44 -07001993 local_irq_save(flags);
1994 if (x2apic) {
1995 ioapic_entries = alloc_ioapic_entries();
1996 if (!ioapic_entries) {
1997 WARN(1, "Alloc ioapic_entries in lapic resume failed.");
1998 return -ENOMEM;
1999 }
2000
2001 ret = save_IO_APIC_setup(ioapic_entries);
2002 if (ret) {
2003 WARN(1, "Saving IO-APIC state failed: %d\n", ret);
2004 free_ioapic_entries(ioapic_entries);
2005 return ret;
2006 }
2007
2008 mask_IO_APIC_setup(ioapic_entries);
2009 mask_8259A();
2010 enable_x2apic();
2011 }
2012#else
2013 if (!apic_pm_state.active)
2014 return 0;
Karsten Wiesef990fff2006-12-07 02:14:11 +01002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002017 if (x2apic)
2018 enable_x2apic();
Fenghua Yub24696b2009-03-27 14:22:44 -07002019#endif
2020
Suresh Siddhacf6567f2009-03-16 17:05:00 -07002021 else {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002022 /*
2023 * Make sure the APICBASE points to the right address
2024 *
2025 * FIXME! This will be wrong if we ever support suspend on
2026 * SMP! We'll need to do this as part of the CPU restore!
2027 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002028 rdmsr(MSR_IA32_APICBASE, l, h);
2029 l &= ~MSR_IA32_APICBASE_BASE;
2030 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2031 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07002032 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002033
Fenghua Yub24696b2009-03-27 14:22:44 -07002034 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2036 apic_write(APIC_ID, apic_pm_state.apic_id);
2037 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2038 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2039 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2040 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2041 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2042 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002043#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002044 if (maxlvt >= 5)
2045 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2046#endif
2047 if (maxlvt >= 4)
2048 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2050 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2051 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2052 apic_write(APIC_ESR, 0);
2053 apic_read(APIC_ESR);
2054 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2055 apic_write(APIC_ESR, 0);
2056 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002057
Fenghua Yub24696b2009-03-27 14:22:44 -07002058#ifdef CONFIG_INTR_REMAP
2059 if (intr_remapping_enabled)
2060 reenable_intr_remapping(EIM_32BIT_APIC_ID);
2061
2062 if (x2apic) {
2063 unmask_8259A();
2064 restore_IO_APIC_setup(ioapic_entries);
2065 free_ioapic_entries(ioapic_entries);
2066 }
2067#endif
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002070
Fenghua Yub24696b2009-03-27 14:22:44 -07002071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 return 0;
2073}
2074
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002075/*
2076 * This device has no shutdown method - fully functioning local APICs
2077 * are needed on every CPU up until machine_halt/restart/poweroff.
2078 */
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002081 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 .resume = lapic_resume,
2083 .suspend = lapic_suspend,
2084};
2085
2086static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002087 .id = 0,
2088 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089};
2090
Ashok Raje6982c62005-06-25 14:54:58 -07002091static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
2093 apic_pm_state.active = 1;
2094}
2095
2096static int __init init_lapic_sysfs(void)
2097{
2098 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (!cpu_has_apic)
2101 return 0;
2102 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 error = sysdev_class_register(&lapic_sysclass);
2105 if (!error)
2106 error = sysdev_register(&device_lapic);
2107 return error;
2108}
Fenghua Yub24696b2009-03-27 14:22:44 -07002109
2110/* local apic needs to resume before other devices access its registers. */
2111core_initcall(init_lapic_sysfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113#else /* CONFIG_PM */
2114
2115static void apic_pm_activate(void) { }
2116
2117#endif /* CONFIG_PM */
2118
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002119#ifdef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002121 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 *
2123 * Thus far, the major user of this is IBM's Summit2 series:
2124 *
Linus Torvalds637029c2006-02-27 20:41:56 -08002125 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 * multi-chassis. Use available data to take a good guess.
2127 * If in doubt, go HPET.
2128 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002129__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 int i, clusters, zeros;
2132 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08002133 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
2135
Yinghai Lu322850a2008-02-23 21:48:42 -08002136 /*
2137 * there is not this kind of box with AMD CPU yet.
2138 * Some AMD box with quadcore cpu and 8 sockets apicid
2139 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08002140 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08002141 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002142 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08002143 return 0;
2144
Mike Travis23ca4bb2008-05-12 21:21:12 +02002145 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07002146 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Mike Travis168ef542008-12-16 17:34:01 -08002148 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002149 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01002150 if (bios_cpu_apicid) {
2151 id = bios_cpu_apicid[i];
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302152 } else if (i < nr_cpu_ids) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002153 if (cpu_present(i))
2154 id = per_cpu(x86_bios_cpu_apicid, i);
2155 else
2156 continue;
Jaswinder Singh Rajpute423e332009-01-04 16:16:25 +05302157 } else
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002158 break;
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 if (id != BAD_APICID)
2161 __set_bit(APIC_CLUSTERID(id), clustermap);
2162 }
2163
2164 /* Problem: Partially populated chassis may not have CPUs in some of
2165 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01002166 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
2167 * Since clusters are allocated sequentially, count zeros only if
2168 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 */
2170 clusters = 0;
2171 zeros = 0;
2172 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
2173 if (test_bit(i, clustermap)) {
2174 clusters += 1 + zeros;
2175 zeros = 0;
2176 } else
2177 ++zeros;
2178 }
2179
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002180 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
2181 * not guaranteed to be synced between boards
2182 */
2183 if (is_vsmp_box() && clusters > 1)
2184 return 1;
2185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002187 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 * May have to revisit this when multi-core + hyperthreaded CPUs come
2189 * out, but AFAIK this will work even for them.
2190 */
2191 return (clusters > 2);
2192}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002193#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002196 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002198static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002199{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002201 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002202 return 0;
2203}
2204early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002206/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002207static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002208{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002209 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002210}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002211early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002213static int __init parse_lapic_timer_c2_ok(char *arg)
2214{
2215 local_apic_timer_c2_ok = 1;
2216 return 0;
2217}
2218early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2219
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002220static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002221{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002223 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002224}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002225early_param("noapictimer", parse_disable_apic_timer);
2226
2227static int __init parse_nolapic_timer(char *arg)
2228{
2229 disable_apic_timer = 1;
2230 return 0;
2231}
2232early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002233
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002234static int __init apic_set_verbosity(char *arg)
2235{
2236 if (!arg) {
2237#ifdef CONFIG_X86_64
2238 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002239 return 0;
2240#endif
2241 return -EINVAL;
2242 }
2243
2244 if (strcmp("debug", arg) == 0)
2245 apic_verbosity = APIC_DEBUG;
2246 else if (strcmp("verbose", arg) == 0)
2247 apic_verbosity = APIC_VERBOSE;
2248 else {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01002249 pr_warning("APIC Verbosity level %s not recognised"
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002250 " use apic=verbose or apic=debug\n", arg);
2251 return -EINVAL;
2252 }
2253
2254 return 0;
2255}
2256early_param("apic", apic_set_verbosity);
2257
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002258static int __init lapic_insert_resource(void)
2259{
2260 if (!apic_phys)
2261 return -1;
2262
2263 /* Put local APIC into the resource map. */
2264 lapic_resource.start = apic_phys;
2265 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2266 insert_resource(&iomem_resource, &lapic_resource);
2267
2268 return 0;
2269}
2270
2271/*
2272 * need call insert after e820_reserve_resources()
2273 * that is using request_resource
2274 */
2275late_initcall(lapic_insert_resource);