blob: f1882329b9cfa2507594e36eabc23696fe2e676b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Local APIC handling, local APIC timers
3 *
4 * (c) 1999, 2000 Ingo Molnar <mingo@redhat.com>
5 *
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/init.h>
18
19#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h>
21#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/interrupt.h>
23#include <linux/mc146818rtc.h>
24#include <linux/kernel_stat.h>
25#include <linux/sysdev.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070026#include <linux/cpu.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080027#include <linux/clockchips.h>
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -080028#include <linux/acpi_pmtmr.h>
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +010029#include <linux/module.h>
Thomas Gleixnerad62ca22007-03-22 00:11:21 -080030#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/atomic.h>
33#include <asm/smp.h>
34#include <asm/mtrr.h>
35#include <asm/mpspec.h>
36#include <asm/desc.h>
37#include <asm/arch_hooks.h>
38#include <asm/hpet.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070039#include <asm/i8253.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020040#include <asm/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <mach_apic.h>
Jesper Juhl382dbd02006-03-23 02:59:49 -080043#include <mach_apicdef.h>
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +010044#include <mach_ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -080047 * Sanity check
48 */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +010049#if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
Thomas Gleixnere05d7232007-02-16 01:27:58 -080050# error SPURIOUS_APIC_VECTOR definition error
51#endif
52
Alexey Starikovskiy8f6e2ca2008-03-27 23:54:38 +030053unsigned long mp_lapic_addr;
54
Thomas Gleixnere05d7232007-02-16 01:27:58 -080055/*
Eric W. Biederman9635b472005-06-25 14:57:41 -070056 * Knob to control our willingness to enable the local APIC.
Thomas Gleixnere05d7232007-02-16 01:27:58 -080057 *
Yinghai Lu914bebf2008-06-29 00:06:37 -070058 * +1=force-enable
Eric W. Biederman9635b472005-06-25 14:57:41 -070059 */
Yinghai Lu914bebf2008-06-29 00:06:37 -070060static int force_enable_local_apic;
61int disable_apic;
Eric W. Biederman9635b472005-06-25 14:57:41 -070062
Thomas Gleixneraa276e12008-06-09 19:15:00 +020063/* Disable local APIC timer from the kernel commandline or via dmi quirk */
Cyrill Gorcunov36fef092008-08-15 13:51:20 +020064static int disable_apic_timer __cpuinitdata;
Thomas Gleixnere585bef2007-03-23 16:08:01 +010065/* Local APIC timer works in C2 */
66int local_apic_timer_c2_ok;
67EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080068
Alan Mayerce178332008-04-16 15:17:20 -050069int first_system_vector = 0xfe;
70
71char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
72
Eric W. Biederman9635b472005-06-25 14:57:41 -070073/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -080074 * Debug level, exported for io_apic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010076unsigned int apic_verbosity;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Alexey Starikovskiyf3918352008-05-23 01:54:51 +040078int pic_mode;
79
Alexey Starikovskiybab4b272008-05-19 19:47:03 +040080/* Have we found an MP table */
81int smp_found_config;
82
Cyrill Gorcunov746f2eb2008-07-01 21:43:52 +040083static struct resource lapic_resource = {
84 .name = "Local APIC",
85 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
86};
87
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080088static unsigned int calibration_result;
89
90static int lapic_next_event(unsigned long delta,
91 struct clock_event_device *evt);
92static void lapic_timer_setup(enum clock_event_mode mode,
93 struct clock_event_device *evt);
94static void lapic_timer_broadcast(cpumask_t mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static void apic_pm_activate(void);
96
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080097/*
98 * The local apic timer can be used for any function which is CPU local.
99 */
100static struct clock_event_device lapic_clockevent = {
101 .name = "lapic",
102 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800103 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800104 .shift = 32,
105 .set_mode = lapic_timer_setup,
106 .set_next_event = lapic_next_event,
107 .broadcast = lapic_timer_broadcast,
108 .rating = 100,
109 .irq = -1,
110};
111static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800113/* Local APIC was disabled by the BIOS and enabled by the kernel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static int enabled_via_apicbase;
115
Andi Kleend3432892008-01-30 13:33:17 +0100116static unsigned long apic_phys;
Cyrill Gorcunovb6c80512008-08-18 20:45:49 +0400117unsigned int __cpuinitdata maxcpus = NR_CPUS;
118
Andi Kleend3432892008-01-30 13:33:17 +0100119
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800120/*
121 * Get the LAPIC version
122 */
123static inline int lapic_get_version(void)
124{
125 return GET_APIC_VERSION(apic_read(APIC_LVR));
126}
127
128/*
Joe Perchesab4a5742008-01-30 13:31:42 +0100129 * Check, if the APIC is integrated or a separate chip
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800130 */
131static inline int lapic_is_integrated(void)
132{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400133#ifdef CONFIG_X86_64
134 return 1;
135#else
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800136 return APIC_INTEGRATED(lapic_get_version());
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400137#endif
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800138}
139
140/*
141 * Check, whether this is a modern or a first generation APIC
142 */
143static int modern_apic(void)
144{
145 /* AMD systems use old APIC versions, so check the CPU */
146 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
147 boot_cpu_data.x86 >= 0xf)
148 return 1;
149 return lapic_get_version() >= 0x14;
150}
151
Suresh Siddha9a8f0e62008-07-18 09:59:40 -0700152/*
153 * Paravirt kernels also might be using these below ops. So we still
154 * use generic apic_read()/apic_write(), which might be pointing to different
155 * ops in PARAVIRT case.
156 */
Yinghai Luc535b6a2008-07-11 18:41:54 -0700157void xapic_wait_icr_idle(void)
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200158{
159 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
160 cpu_relax();
161}
162
Yinghai Luc535b6a2008-07-11 18:41:54 -0700163u32 safe_xapic_wait_icr_idle(void)
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200164{
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100165 u32 send_status;
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200166 int timeout;
167
168 timeout = 0;
169 do {
170 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
171 if (!send_status)
172 break;
173 udelay(100);
174 } while (timeout++ < 1000);
175
176 return send_status;
177}
178
Yinghai Luc535b6a2008-07-11 18:41:54 -0700179void xapic_icr_write(u32 low, u32 id)
180{
Suresh Siddhaf586bf72008-07-18 15:58:35 -0700181 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
182 apic_write(APIC_ICR, low);
Yinghai Luc535b6a2008-07-11 18:41:54 -0700183}
184
185u64 xapic_icr_read(void)
186{
187 u32 icr1, icr2;
188
189 icr2 = apic_read(APIC_ICR2);
190 icr1 = apic_read(APIC_ICR);
191
192 return icr1 | ((u64)icr2 << 32);
193}
194
195static struct apic_ops xapic_ops = {
196 .read = native_apic_mem_read,
197 .write = native_apic_mem_write,
Yinghai Luc535b6a2008-07-11 18:41:54 -0700198 .icr_read = xapic_icr_read,
199 .icr_write = xapic_icr_write,
200 .wait_icr_idle = xapic_wait_icr_idle,
201 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
202};
203
204struct apic_ops __read_mostly *apic_ops = &xapic_ops;
205EXPORT_SYMBOL_GPL(apic_ops);
206
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800207/**
208 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
209 */
Jan Beuliche9427102008-01-30 13:31:24 +0100210void __cpuinit enable_NMI_through_LVT0(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200212 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200214 /* unmask and set to NMI */
215 v = APIC_DM_NMI;
216
217 /* Level triggered for 82489DX (32bit mode) */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800218 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 v |= APIC_LVT_LEVEL_TRIGGER;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200220
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100221 apic_write(APIC_LVT0, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800224/**
225 * get_physical_broadcast - Get number of physical broadcast IDs
226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227int get_physical_broadcast(void)
228{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800229 return modern_apic() ? 0xff : 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800232/**
233 * lapic_get_maxlvt - get the maximum number of local vector table entries
234 */
235int lapic_get_maxlvt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200237 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200239 v = apic_read(APIC_LVR);
240 /*
241 * - we always have APIC integrated on 64bit mode
242 * - 82489DXs do not report # of LVT entries
243 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800244 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800248 * Local APIC timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400251/* Clock divisor */
252#ifdef CONFG_X86_64
253#define APIC_DIVISOR 1
254#else
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800255#define APIC_DIVISOR 16
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400256#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258/*
259 * This function sets up the local APIC timer, with a timeout of
260 * 'clocks' APIC bus clock. During calibration we actually call
261 * this function twice on the boot CPU, once with a bogus timeout
262 * value, second time for real. The other (noncalibrating) CPUs
263 * call this function only once, with the real, calibrated value.
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400264 *
265 * We do reads before writes even if unnecessary, to get around the
266 * P5 APIC double write bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800268static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800270 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800272 lvtt_value = LOCAL_TIMER_VECTOR;
273 if (!oneshot)
274 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800275 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100277
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800278 if (!irqen)
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100279 lvtt_value |= APIC_LVT_MASKED;
280
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100281 apic_write(APIC_LVTT, lvtt_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /*
284 * Divide PICLK by 16
285 */
286 tmp_value = apic_read(APIC_TDCR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100287 apic_write(APIC_TDCR,
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400288 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
289 APIC_TDR_DIV_16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800291 if (!oneshot)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100292 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800295/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400296 * Setup extended LVT, AMD specific (K8, family 10h)
297 *
298 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
299 * MCE interrupts are supported. Thus MCE offset must be set to 0.
300 */
301
302#define APIC_EILVT_LVTOFF_MCE 0
303#define APIC_EILVT_LVTOFF_IBS 1
304
305static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
306{
307 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
308 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
309
310 apic_write(reg, v);
311}
312
313u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
314{
315 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
316 return APIC_EILVT_LVTOFF_MCE;
317}
318
319u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
320{
321 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
322 return APIC_EILVT_LVTOFF_IBS;
323}
324
325/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800326 * Program the next event, relative to now
327 */
328static int lapic_next_event(unsigned long delta,
329 struct clock_event_device *evt)
330{
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100331 apic_write(APIC_TMICT, delta);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800332 return 0;
333}
334
335/*
336 * Setup the lapic timer in periodic or oneshot mode
337 */
338static void lapic_timer_setup(enum clock_event_mode mode,
339 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800342 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400344 /* Lapic used as dummy for broadcast ? */
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200345 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800346 return;
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 local_irq_save(flags);
349
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800350 switch (mode) {
351 case CLOCK_EVT_MODE_PERIODIC:
352 case CLOCK_EVT_MODE_ONESHOT:
353 __setup_APIC_LVTT(calibration_result,
354 mode != CLOCK_EVT_MODE_PERIODIC, 1);
355 break;
356 case CLOCK_EVT_MODE_UNUSED:
357 case CLOCK_EVT_MODE_SHUTDOWN:
358 v = apic_read(APIC_LVTT);
359 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100360 apic_write(APIC_LVTT, v);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800361 break;
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700362 case CLOCK_EVT_MODE_RESUME:
363 /* Nothing to do here */
364 break;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 local_irq_restore(flags);
368}
369
370/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800371 * Local APIC timer broadcast function
372 */
373static void lapic_timer_broadcast(cpumask_t mask)
374{
375#ifdef CONFIG_SMP
376 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
377#endif
378}
379
380/*
381 * Setup the local APIC timer for this CPU. Copy the initilized values
382 * of the boot CPU and register the clock event in the framework.
383 */
384static void __devinit setup_APIC_timer(void)
385{
386 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
387
388 memcpy(levt, &lapic_clockevent, sizeof(*levt));
389 levt->cpumask = cpumask_of_cpu(smp_processor_id());
390
391 clockevents_register_device(levt);
392}
393
394/*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800395 * In this functions we calibrate APIC bus clocks to the external timer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800397 * We want to do the calibration only once since we want to have local timer
398 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
399 * frequency.
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800400 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800401 * This was previously done by reading the PIT/HPET and waiting for a wrap
402 * around to find out, that a tick has elapsed. I have a box, where the PIT
403 * readout is broken, so it never gets out of the wait loop again. This was
404 * also reported by others.
405 *
406 * Monitoring the jiffies value is inaccurate and the clockevents
407 * infrastructure allows us to do a simple substitution of the interrupt
408 * handler.
409 *
410 * The calibration routine also uses the pm_timer when possible, as the PIT
411 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
412 * back to normal later in the boot process).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
414
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800415#define LAPIC_CAL_LOOPS (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200417static __initdata int lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800418static __initdata long lapic_cal_t1, lapic_cal_t2;
419static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
420static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
421static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
422
423/*
424 * Temporary interrupt handler.
425 */
426static void __init lapic_cal_handler(struct clock_event_device *dev)
427{
428 unsigned long long tsc = 0;
429 long tapic = apic_read(APIC_TMCCT);
430 unsigned long pm = acpi_pm_read_early();
431
432 if (cpu_has_tsc)
433 rdtscll(tsc);
434
435 switch (lapic_cal_loops++) {
436 case 0:
437 lapic_cal_t1 = tapic;
438 lapic_cal_tsc1 = tsc;
439 lapic_cal_pm1 = pm;
440 lapic_cal_j1 = jiffies;
441 break;
442
443 case LAPIC_CAL_LOOPS:
444 lapic_cal_t2 = tapic;
445 lapic_cal_tsc2 = tsc;
446 if (pm < lapic_cal_pm1)
447 pm += ACPI_PM_OVRRUN;
448 lapic_cal_pm2 = pm;
449 lapic_cal_j2 = jiffies;
450 break;
451 }
452}
453
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400454static int __init calibrate_APIC_clock(void)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800455{
456 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
457 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
458 const long pm_thresh = pm_100ms/100;
459 void (*real_handler)(struct clock_event_device *dev);
460 unsigned long deltaj;
461 long delta, deltapm;
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800462 int pm_referenced = 0;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800463
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800464 local_irq_disable();
465
466 /* Replace the global interrupt handler */
467 real_handler = global_clock_event->event_handler;
468 global_clock_event->event_handler = lapic_cal_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800471 * Setup the APIC counter to 1e9. There is no way the lapic
472 * can underflow in the 100ms detection time frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800474 __setup_APIC_LVTT(1000000000, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800476 /* Let the interrupts run */
477 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800479 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
480 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800482 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800484 /* Restore the real event handler */
485 global_clock_event->event_handler = real_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800487 /* Build delta t1-t2 as apic timer counts down */
488 delta = lapic_cal_t1 - lapic_cal_t2;
489 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800491 /* Check, if the PM timer is available */
492 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
493 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800495 if (deltapm) {
496 unsigned long mult;
497 u64 res;
498
499 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
500
501 if (deltapm > (pm_100ms - pm_thresh) &&
502 deltapm < (pm_100ms + pm_thresh)) {
503 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
504 } else {
505 res = (((u64) deltapm) * mult) >> 22;
506 do_div(res, 1000000);
507 printk(KERN_WARNING "APIC calibration not consistent "
508 "with PM Timer: %ldms instead of 100ms\n",
509 (long)res);
510 /* Correct the lapic counter value */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +0100511 res = (((u64) delta) * pm_100ms);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800512 do_div(res, deltapm);
513 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
514 "%lu (%ld)\n", (unsigned long) res, delta);
515 delta = (long) res;
516 }
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800517 pm_referenced = 1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800520 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900521 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
522 lapic_clockevent.shift);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800523 lapic_clockevent.max_delta_ns =
524 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
525 lapic_clockevent.min_delta_ns =
526 clockevent_delta2ns(0xF, &lapic_clockevent);
527
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800528 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800529
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800530 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
531 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
532 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
533 calibration_result);
534
535 if (cpu_has_tsc) {
536 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800538 "%ld.%04ld MHz.\n",
539 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
540 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800544 "%u.%04u MHz.\n",
545 calibration_result / (1000000 / HZ),
546 calibration_result % (1000000 / HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100548 /*
549 * Do a sanity check on the APIC calibration result
550 */
551 if (calibration_result < (1000000 / HZ)) {
552 local_irq_enable();
553 printk(KERN_WARNING
554 "APIC frequency too slow, disabling apic timer\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400555 return -1;
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100556 }
557
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200558 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400559
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800560 /* We trust the pm timer based calibration */
561 if (!pm_referenced) {
562 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800563
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800564 /*
565 * Setup the apic timer manually
566 */
567 levt->event_handler = lapic_cal_handler;
568 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
569 lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800570
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800571 /* Let the interrupts run */
572 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800573
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200574 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800575 cpu_relax();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800576
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800577 local_irq_disable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800578
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800579 /* Stop the lapic timer */
580 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800581
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800582 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800583
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800584 /* Jiffies delta */
585 deltaj = lapic_cal_j2 - lapic_cal_j1;
586 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800587
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800588 /* Check, if the jiffies result is consistent */
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800589 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800590 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800591 else
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200592 levt->features |= CLOCK_EVT_FEAT_DUMMY;
Ingo Molnar4edc5db2007-03-22 10:31:19 +0100593 } else
594 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800595
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200596 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800597 printk(KERN_WARNING
598 "APIC timer disabled due to verification failure.\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400599 return -1;
Thomas Gleixnera5f5e432007-03-05 00:30:45 -0800600 }
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800601
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400602 return 0;
603}
604
605/*
606 * Setup the boot APIC
607 *
608 * Calibrate and verify the result.
609 */
610void __init setup_boot_APIC_clock(void)
611{
612 /*
613 * The local apic timer can be disabled via the kernel
614 * commandline or from the CPU detection code. Register the lapic
615 * timer as a dummy clock event source on SMP systems, so the
616 * broadcast mechanism is used. On UP systems simply ignore it.
617 */
Cyrill Gorcunov36fef092008-08-15 13:51:20 +0200618 if (disable_apic_timer) {
Cyrill Gorcunovf1ee3782008-08-18 20:45:50 +0400619 printk(KERN_INFO "Disabling APIC timer\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400620 /* No broadcast on UP ! */
621 if (num_possible_cpus() > 1) {
622 lapic_clockevent.mult = 1;
623 setup_APIC_timer();
624 }
625 return;
626 }
627
628 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
629 "calibrating APIC timer ...\n");
630
631 if (calibrate_APIC_clock()) {
632 /* No broadcast on UP ! */
633 if (num_possible_cpus() > 1)
634 setup_APIC_timer();
635 return;
636 }
637
638 /*
639 * If nmi_watchdog is set to IO_APIC, we need the
640 * PIT/HPET going. Otherwise register lapic as a dummy
641 * device.
642 */
643 if (nmi_watchdog != NMI_IO_APIC)
644 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
645 else
646 printk(KERN_WARNING "APIC timer registered as dummy,"
647 " due to nmi_watchdog=%d!\n", nmi_watchdog);
648
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800649 /* Setup the lapic or request the broadcast */
650 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Li Shaohua0bb31842005-06-25 14:54:55 -0700653void __devinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800655 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800659 * The guts of the apic timer interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800661static void local_apic_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800663 int cpu = smp_processor_id();
664 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800667 * Normally we should not be here till LAPIC has been initialized but
668 * in some cases like kdump, its possible that there is a pending LAPIC
669 * timer interrupt from previous kernel's context and is delivered in
670 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800672 * Interrupts are enabled early and LAPIC is setup much later, hence
673 * its possible that when we get here evt->event_handler is NULL.
674 * Check for event_handler being NULL and discard the interrupt as
675 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800677 if (!evt->event_handler) {
678 printk(KERN_WARNING
679 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
680 /* Switch it off */
681 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
682 return;
683 }
684
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100685 /*
686 * the NMI deadlock-detector uses this.
687 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800688 per_cpu(irq_stat, cpu).apic_timer_irqs++;
689
690 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693/*
694 * Local APIC timer interrupt. This is the most natural way for doing
695 * local interrupts, but local timer interrupts can be emulated by
696 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
697 *
698 * [ if a single-CPU system runs an SMP kernel then we call the local
699 * interrupt as well. Thus we cannot inline the local irq ... ]
700 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100701void smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
David Howells7d12e782006-10-05 14:55:46 +0100703 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /*
706 * NOTE! We'd better ACK the irq immediately,
707 * because timer handling can be slow.
708 */
709 ack_APIC_irq();
710 /*
711 * update_process_times() expects us to have done irq_enter().
712 * Besides, if we don't timer interrupts ignore the global
713 * interrupt lock, which is the WrongThing (tm) to do.
714 */
715 irq_enter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800716 local_apic_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 irq_exit();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800718
David Howells7d12e782006-10-05 14:55:46 +0100719 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +0100722int setup_profiling_timer(unsigned int multiplier)
723{
724 return -EINVAL;
725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800728 * Local APIC start and shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800730
731/**
732 * clear_local_APIC - shutdown the local APIC
733 *
734 * This is called, when a CPU is disabled and before rebooting, so the state of
735 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
736 * leftovers during boot.
737 */
738void clear_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Andi Kleend3432892008-01-30 13:33:17 +0100740 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100741 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Andi Kleend3432892008-01-30 13:33:17 +0100743 /* APIC hasn't been mapped yet */
744 if (!apic_phys)
745 return;
746
747 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800749 * Masking an LVT entry can trigger a local APIC error
750 * if the vector is zero. Mask LVTERR first to prevent this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800752 if (maxlvt >= 3) {
753 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100754 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800755 }
756 /*
757 * Careful: we have to set masks only first to deassert
758 * any level-triggered sources.
759 */
760 v = apic_read(APIC_LVTT);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100761 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800762 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100763 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800764 v = apic_read(APIC_LVT1);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100765 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800766 if (maxlvt >= 4) {
767 v = apic_read(APIC_LVTPC);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100768 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800771 /* lets not touch this if we didn't frob it */
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400772#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800773 if (maxlvt >= 5) {
774 v = apic_read(APIC_LVTTHMR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100775 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800776 }
777#endif
778 /*
779 * Clean APIC state for other OSs:
780 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100781 apic_write(APIC_LVTT, APIC_LVT_MASKED);
782 apic_write(APIC_LVT0, APIC_LVT_MASKED);
783 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800784 if (maxlvt >= 3)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100785 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800786 if (maxlvt >= 4)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100787 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800788
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800789 /* Integrated APIC (!82489DX) ? */
790 if (lapic_is_integrated()) {
791 if (maxlvt > 3)
792 /* Clear ESR due to Pentium errata 3AP and 11AP */
793 apic_write(APIC_ESR, 0);
794 apic_read(APIC_ESR);
795 }
796}
797
798/**
799 * disable_local_APIC - clear and disable the local APIC
800 */
801void disable_local_APIC(void)
802{
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400803 unsigned int value;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800804
805 clear_local_APIC();
806
807 /*
808 * Disable APIC (implies clearing of registers
809 * for 82489DX!).
810 */
811 value = apic_read(APIC_SPIV);
812 value &= ~APIC_SPIV_APIC_ENABLED;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100813 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800814
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400815#ifdef CONFIG_X86_32
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800816 /*
817 * When LAPIC was disabled by the BIOS and enabled by the kernel,
818 * restore the disabled state.
819 */
820 if (enabled_via_apicbase) {
821 unsigned int l, h;
822
823 rdmsr(MSR_IA32_APICBASE, l, h);
824 l &= ~MSR_IA32_APICBASE_ENABLE;
825 wrmsr(MSR_IA32_APICBASE, l, h);
826 }
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400827#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800831 * If Linux enabled the LAPIC against the BIOS default disable it down before
832 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
833 * not power-off. Additionally clear all LVT entries before disable_local_APIC
834 * for the case where Linux didn't enable the LAPIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800836void lapic_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800838 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800840 if (!cpu_has_apic)
841 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800843 local_irq_save(flags);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800844
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400845#ifdef CONFIG_X86_32
846 if (!enabled_via_apicbase)
Cyrill Gorcunov9ce122c2008-08-15 13:51:21 +0200847 clear_local_APIC();
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400848 else
849#endif
850 disable_local_APIC();
851
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800852
853 local_irq_restore(flags);
854}
855
856/*
857 * This is to verify that we're looking at a real local APIC.
858 * Check these against your board if the CPUs aren't getting
859 * started for no apparent reason.
860 */
861int __init verify_local_APIC(void)
862{
863 unsigned int reg0, reg1;
864
865 /*
866 * The version register is read-only in a real APIC.
867 */
868 reg0 = apic_read(APIC_LVR);
869 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
870 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
871 reg1 = apic_read(APIC_LVR);
872 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
873
874 /*
875 * The two version reads above should print the same
876 * numbers. If the second one is different, then we
877 * poke at a non-APIC.
878 */
879 if (reg1 != reg0)
880 return 0;
881
882 /*
883 * Check if the version looks reasonably.
884 */
885 reg1 = GET_APIC_VERSION(reg0);
886 if (reg1 == 0x00 || reg1 == 0xff)
887 return 0;
888 reg1 = lapic_get_maxlvt();
889 if (reg1 < 0x02 || reg1 == 0xff)
890 return 0;
891
892 /*
893 * The ID register is read/write in a real APIC.
894 */
895 reg0 = apic_read(APIC_ID);
896 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
Cyrill Gorcunovc93baa12008-08-15 13:51:22 +0200897 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
898 reg1 = apic_read(APIC_ID);
899 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
900 apic_write(APIC_ID, reg0);
901 if (reg1 != (reg0 ^ APIC_ID_MASK))
902 return 0;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800903
904 /*
905 * The next two are just to see if we have sane values.
906 * They're only really relevant if we're in Virtual Wire
907 * compatibility mode, but most boxes are anymore.
908 */
909 reg0 = apic_read(APIC_LVT0);
910 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
911 reg1 = apic_read(APIC_LVT1);
912 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
913
914 return 1;
915}
916
917/**
918 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
919 */
920void __init sync_Arb_IDs(void)
921{
922 /*
923 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
924 * needed on AMD.
925 */
Ingo Molnarf44d9ef2007-11-26 20:42:20 +0100926 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800927 return;
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +0400928
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800929 /*
930 * Wait for idle.
931 */
932 apic_wait_icr_idle();
933
934 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +0400935 apic_write(APIC_ICR, APIC_DEST_ALLINC |
936 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800937}
938
939/*
940 * An initial setup of the virtual wire mode.
941 */
942void __init init_bsp_APIC(void)
943{
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400944 unsigned int value;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800945
946 /*
947 * Don't do the setup now if we have a SMP BIOS as the
948 * through-I/O-APIC virtual wire mode might be active.
949 */
950 if (smp_found_config || !cpu_has_apic)
951 return;
952
953 /*
954 * Do not trust the local APIC being empty at bootup.
955 */
956 clear_local_APIC();
957
958 /*
959 * Enable APIC.
960 */
961 value = apic_read(APIC_SPIV);
962 value &= ~APIC_VECTOR_MASK;
963 value |= APIC_SPIV_APIC_ENABLED;
964
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400965#ifdef CONFIG_X86_32
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800966 /* This bit is reserved on P4/Xeon and should be cleared */
967 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
968 (boot_cpu_data.x86 == 15))
969 value &= ~APIC_SPIV_FOCUS_DISABLED;
970 else
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400971#endif
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800972 value |= APIC_SPIV_FOCUS_DISABLED;
973 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100974 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800975
976 /*
977 * Set up the virtual wire mode.
978 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100979 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800980 value = APIC_DM_NMI;
981 if (!lapic_is_integrated()) /* 82489DX */
982 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100983 apic_write(APIC_LVT1, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800984}
985
Ingo Molnara4928cf2008-04-23 13:20:56 +0200986static void __cpuinit lapic_setup_esr(void)
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300987{
988 unsigned long oldvalue, value, maxlvt;
989 if (lapic_is_integrated() && !esr_disable) {
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +0400990 if (esr_disable) {
991 /*
992 * Something untraceable is creating bad interrupts on
993 * secondary quads ... for the moment, just leave the
994 * ESR disabled - we can't do anything useful with the
995 * errors anyway - mbligh
996 */
997 printk(KERN_INFO "Leaving ESR disabled.\n");
998 return;
999 }
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001000 /* !82489DX */
1001 maxlvt = lapic_get_maxlvt();
1002 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1003 apic_write(APIC_ESR, 0);
1004 oldvalue = apic_read(APIC_ESR);
1005
1006 /* enables sending errors */
1007 value = ERROR_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001008 apic_write(APIC_LVTERR, value);
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001009 /*
1010 * spec says clear errors after enabling vector.
1011 */
1012 if (maxlvt > 3)
1013 apic_write(APIC_ESR, 0);
1014 value = apic_read(APIC_ESR);
1015 if (value != oldvalue)
1016 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1017 "vector: 0x%08lx after: 0x%08lx\n",
1018 oldvalue, value);
1019 } else {
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001020 printk(KERN_INFO "No ESR for 82489DX.\n");
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001021 }
1022}
1023
1024
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001025/**
1026 * setup_local_APIC - setup the local APIC
1027 */
Adrian Bunkd5337982007-12-19 23:20:18 +01001028void __cpuinit setup_local_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001029{
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001030 unsigned long value, integrated;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001031 int i, j;
1032
1033 /* Pound the ESR really hard over the head with a big hammer - mbligh */
1034 if (esr_disable) {
1035 apic_write(APIC_ESR, 0);
1036 apic_write(APIC_ESR, 0);
1037 apic_write(APIC_ESR, 0);
1038 apic_write(APIC_ESR, 0);
1039 }
1040
1041 integrated = lapic_is_integrated();
1042
1043 /*
1044 * Double-check whether this APIC is really registered.
1045 */
1046 if (!apic_id_registered())
Ingo Molnar22d5c672008-07-10 16:29:28 +02001047 WARN_ON_ONCE(1);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001048
1049 /*
1050 * Intel recommends to set DFR, LDR and TPR before enabling
1051 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1052 * document number 292116). So here it goes...
1053 */
1054 init_apic_ldr();
1055
1056 /*
1057 * Set Task Priority to 'accept all'. We never change this
1058 * later on.
1059 */
1060 value = apic_read(APIC_TASKPRI);
1061 value &= ~APIC_TPRI_MASK;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001062 apic_write(APIC_TASKPRI, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001063
1064 /*
1065 * After a crash, we no longer service the interrupts and a pending
1066 * interrupt from previous kernel might still have ISR bit set.
1067 *
1068 * Most probably by now CPU has serviced that pending interrupt and
1069 * it might not have done the ack_APIC_irq() because it thought,
1070 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1071 * does not clear the ISR bit and cpu thinks it has already serivced
1072 * the interrupt. Hence a vector might get locked. It was noticed
1073 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1074 */
1075 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1076 value = apic_read(APIC_ISR + i*0x10);
1077 for (j = 31; j >= 0; j--) {
1078 if (value & (1<<j))
1079 ack_APIC_irq();
1080 }
1081 }
1082
1083 /*
1084 * Now that we are all set up, enable the APIC
1085 */
1086 value = apic_read(APIC_SPIV);
1087 value &= ~APIC_VECTOR_MASK;
1088 /*
1089 * Enable APIC
1090 */
1091 value |= APIC_SPIV_APIC_ENABLED;
1092
1093 /*
1094 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1095 * certain networking cards. If high frequency interrupts are
1096 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1097 * entry is masked/unmasked at a high rate as well then sooner or
1098 * later IOAPIC line gets 'stuck', no more interrupts are received
1099 * from the device. If focus CPU is disabled then the hang goes
1100 * away, oh well :-(
1101 *
1102 * [ This bug can be reproduced easily with a level-triggered
1103 * PCI Ne2000 networking cards and PII/PIII processors, dual
1104 * BX chipset. ]
1105 */
1106 /*
1107 * Actually disabling the focus CPU check just makes the hang less
1108 * frequent as it makes the interrupt distributon model be more
1109 * like LRU than MRU (the short-term load is more even across CPUs).
1110 * See also the comment in end_level_ioapic_irq(). --macro
1111 */
1112
1113 /* Enable focus processor (bit==0) */
1114 value &= ~APIC_SPIV_FOCUS_DISABLED;
1115
1116 /*
1117 * Set spurious IRQ vector
1118 */
1119 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001120 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001121
1122 /*
1123 * Set up LVT0, LVT1:
1124 *
1125 * set up through-local-APIC on the BP's LINT0. This is not
Simon Arlott27b46d72007-10-20 01:13:56 +02001126 * strictly necessary in pure symmetric-IO mode, but sometimes
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001127 * we delegate interrupts to the 8259A.
1128 */
1129 /*
1130 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1131 */
1132 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1133 if (!smp_processor_id() && (pic_mode || !value)) {
1134 value = APIC_DM_EXTINT;
1135 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
1136 smp_processor_id());
1137 } else {
1138 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1139 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1140 smp_processor_id());
1141 }
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001142 apic_write(APIC_LVT0, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001143
1144 /*
1145 * only the BP should see the LINT1 NMI signal, obviously.
1146 */
1147 if (!smp_processor_id())
1148 value = APIC_DM_NMI;
1149 else
1150 value = APIC_DM_NMI | APIC_LVT_MASKED;
1151 if (!integrated) /* 82489DX */
1152 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001153 apic_write(APIC_LVT1, value);
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001154}
1155
1156void __cpuinit end_local_APIC_setup(void)
1157{
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001158 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001159
1160#ifdef CONFIG_X86_32
1161 unsigned int value;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001162 /* Disable the local apic timer */
1163 value = apic_read(APIC_LVTT);
1164 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001165 apic_write(APIC_LVTT, value);
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001166#endif
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001167
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001168 setup_apic_nmi_watchdog(NULL);
1169 apic_pm_activate();
1170}
1171
1172/*
1173 * Detect and initialize APIC
1174 */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001175static int __init detect_init_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001176{
1177 u32 h, l, features;
1178
1179 /* Disabled by kernel option? */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001180 if (disable_apic)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001181 return -1;
1182
1183 switch (boot_cpu_data.x86_vendor) {
1184 case X86_VENDOR_AMD:
1185 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1186 (boot_cpu_data.x86 == 15))
1187 break;
1188 goto no_apic;
1189 case X86_VENDOR_INTEL:
1190 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1191 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1192 break;
1193 goto no_apic;
1194 default:
1195 goto no_apic;
1196 }
1197
1198 if (!cpu_has_apic) {
1199 /*
1200 * Over-ride BIOS and try to enable the local APIC only if
1201 * "lapic" specified.
1202 */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001203 if (!force_enable_local_apic) {
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001204 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1205 "you can enable it with \"lapic\"\n");
1206 return -1;
1207 }
1208 /*
1209 * Some BIOSes disable the local APIC in the APIC_BASE
1210 * MSR. This can only be done in software for Intel P6 or later
1211 * and AMD K7 (Model > 1) or later.
1212 */
1213 rdmsr(MSR_IA32_APICBASE, l, h);
1214 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1215 printk(KERN_INFO
1216 "Local APIC disabled by BIOS -- reenabling.\n");
1217 l &= ~MSR_IA32_APICBASE_BASE;
1218 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1219 wrmsr(MSR_IA32_APICBASE, l, h);
1220 enabled_via_apicbase = 1;
1221 }
1222 }
1223 /*
1224 * The APIC feature bit should now be enabled
1225 * in `cpuid'
1226 */
1227 features = cpuid_edx(1);
1228 if (!(features & (1 << X86_FEATURE_APIC))) {
1229 printk(KERN_WARNING "Could not enable APIC!\n");
1230 return -1;
1231 }
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001232 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001233 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1234
1235 /* The BIOS may have set up the APIC at some other address */
1236 rdmsr(MSR_IA32_APICBASE, l, h);
1237 if (l & MSR_IA32_APICBASE_ENABLE)
1238 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1239
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001240 printk(KERN_INFO "Found and enabled local APIC!\n");
1241
1242 apic_pm_activate();
1243
1244 return 0;
1245
1246no_apic:
1247 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1248 return -1;
1249}
1250
1251/**
1252 * init_apic_mappings - initialize APIC mappings
1253 */
1254void __init init_apic_mappings(void)
1255{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001256 /*
1257 * If no local APIC can be found then set up a fake all
1258 * zeroes page to simulate the local APIC and another
1259 * one for the IO-APIC.
1260 */
1261 if (!smp_found_config && detect_init_APIC()) {
1262 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1263 apic_phys = __pa(apic_phys);
1264 } else
1265 apic_phys = mp_lapic_addr;
1266
1267 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1268 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1269 apic_phys);
1270
1271 /*
1272 * Fetch the APIC ID of the BSP in case we have a
1273 * default configuration (or the MP table is broken).
1274 */
1275 if (boot_cpu_physical_apicid == -1U)
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001276 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
1280/*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001281 * This initializes the IO-APIC and APIC hardware if this is
1282 * a UP kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 */
Alexey Starikovskiye81b2c62008-03-27 23:54:31 +03001284
1285int apic_version[MAX_APICS];
1286
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001287int __init APIC_init_uniprocessor(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001289 if (!smp_found_config && !cpu_has_apic)
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001290 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001293 * Complain if the BIOS pretends there is one.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001295 if (!cpu_has_apic &&
1296 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001298 boot_cpu_physical_apicid);
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001299 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return -1;
1301 }
1302
1303 verify_local_APIC();
1304
1305 connect_bsp_APIC();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001306
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001307 /*
1308 * Hack: In case of kdump, after a crash, kernel might be booting
1309 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1310 * might be zero if read from MP tables. Get it from LAPIC.
1311 */
1312#ifdef CONFIG_CRASH_DUMP
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001313 boot_cpu_physical_apicid = read_apic_id();
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001314#endif
Jack Steinerb6df1b82008-06-19 21:51:05 -05001315 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 setup_local_APIC();
1318
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001319#ifdef CONFIG_X86_IO_APIC
1320 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1321#endif
1322 localise_nmi_watchdog();
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001323 end_local_APIC_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001325 if (smp_found_config)
1326 if (!skip_ioapic_setup && nr_ioapics)
1327 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328#endif
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001329 setup_boot_clock();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001330
1331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001333
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001334/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001335 * Local APIC interrupts
1336 */
1337
1338/*
1339 * This interrupt should _never_ happen with our APIC/SMP architecture
1340 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001341void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001342{
1343 unsigned long v;
1344
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001345 irq_enter();
1346 /*
1347 * Check if this really is a spurious interrupt and ACK it
1348 * if it is a vectored one. Just in case...
1349 * Spurious interrupts should not be ACKed.
1350 */
1351 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1352 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1353 ack_APIC_irq();
1354
1355 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1356 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1357 "should never happen.\n", smp_processor_id());
Joe Korty38e760a2007-10-17 18:04:40 +02001358 __get_cpu_var(irq_stat).irq_spurious_count++;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001359 irq_exit();
1360}
1361
1362/*
1363 * This interrupt should never happen with our APIC/SMP architecture
1364 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001365void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001366{
1367 unsigned long v, v1;
1368
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001369 irq_enter();
1370 /* First tickle the hardware, only then report what went on. -- REW */
1371 v = apic_read(APIC_ESR);
1372 apic_write(APIC_ESR, 0);
1373 v1 = apic_read(APIC_ESR);
1374 ack_APIC_irq();
1375 atomic_inc(&irq_err_count);
1376
1377 /* Here is what the APIC error bits mean:
1378 0: Send CS error
1379 1: Receive CS error
1380 2: Send accept error
1381 3: Receive accept error
1382 4: Reserved
1383 5: Send illegal vector
1384 6: Received illegal vector
1385 7: Illegal register address
1386 */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +01001387 printk(KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001388 smp_processor_id(), v , v1);
1389 irq_exit();
1390}
1391
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001392/**
1393 * connect_bsp_APIC - attach the APIC to the interrupt system
1394 */
1395void __init connect_bsp_APIC(void)
1396{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001397#ifdef CONFIG_X86_32
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001398 if (pic_mode) {
1399 /*
1400 * Do not trust the local APIC being empty at bootup.
1401 */
1402 clear_local_APIC();
1403 /*
1404 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1405 * local APIC to INT and NMI lines.
1406 */
1407 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1408 "enabling APIC mode.\n");
1409 outb(0x70, 0x22);
1410 outb(0x01, 0x23);
1411 }
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001412#endif
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001413 enable_apic_mode();
1414}
1415
1416/**
1417 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1418 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1419 *
1420 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1421 * APIC is disabled.
1422 */
1423void disconnect_bsp_APIC(int virt_wire_setup)
1424{
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001425#ifdef CONFIG_X86_32
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001426 if (pic_mode) {
1427 /*
1428 * Put the board back into PIC mode (has an effect only on
1429 * certain older boards). Note that APIC interrupts, including
1430 * IPIs, won't work beyond this point! The only exception are
1431 * INIT IPIs.
1432 */
1433 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1434 "entering PIC mode.\n");
1435 outb(0x70, 0x22);
1436 outb(0x00, 0x23);
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001437 return;
1438 }
1439#endif
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001440
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001441 /* Go back to Virtual Wire compatibility mode */
1442 unsigned int value;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001443
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001444 /* For the spurious interrupt use vector F, and enable it */
1445 value = apic_read(APIC_SPIV);
1446 value &= ~APIC_VECTOR_MASK;
1447 value |= APIC_SPIV_APIC_ENABLED;
1448 value |= 0xf;
1449 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001450
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001451 if (!virt_wire_setup) {
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001452 /*
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001453 * For LVT0 make it edge triggered, active high,
1454 * external and enabled
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001455 */
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001456 value = apic_read(APIC_LVT0);
1457 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001458 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1459 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1460 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001461 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1462 apic_write(APIC_LVT0, value);
1463 } else {
1464 /* Disable LVT0 */
1465 apic_write(APIC_LVT0, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001466 }
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001467
1468 /*
1469 * For LVT1 make it edge triggered, active high,
1470 * nmi and enabled
1471 */
1472 value = apic_read(APIC_LVT1);
1473 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1474 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1475 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1476 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1477 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1478 apic_write(APIC_LVT1, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001479}
1480
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001481void __cpuinit generic_processor_info(int apicid, int version)
1482{
1483 int cpu;
1484 cpumask_t tmp_map;
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001485
1486 /*
1487 * Validate version
1488 */
1489 if (version == 0x0) {
1490 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1491 "fixing up to 0x10. (tell your hw vendor)\n",
1492 version);
1493 version = 0x10;
1494 }
1495 apic_version[apicid] = version;
1496
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001497 if (num_processors >= NR_CPUS) {
1498 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1499 " Processor ignored.\n", NR_CPUS);
1500 return;
1501 }
1502
1503 if (num_processors >= maxcpus) {
1504 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1505 " Processor ignored.\n", maxcpus);
1506 return;
1507 }
1508
1509 num_processors++;
1510 cpus_complement(tmp_map, cpu_present_map);
1511 cpu = first_cpu(tmp_map);
1512
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001513 physid_set(apicid, phys_cpu_present_map);
1514 if (apicid == boot_cpu_physical_apicid) {
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001515 /*
1516 * x86_bios_cpu_apicid is required to have processors listed
1517 * in same order as logical cpu numbers. Hence the first
1518 * entry is BSP, and so on.
1519 */
1520 cpu = 0;
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001521 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001522 if (apicid > max_physical_apicid)
1523 max_physical_apicid = apicid;
1524
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001525#ifdef CONFIG_X86_32
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001526 /*
1527 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1528 * but we need to work other dependencies like SMP_SUSPEND etc
1529 * before this can be done without some confusion.
1530 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1531 * - Ashok Raj <ashok.raj@intel.com>
1532 */
Yinghai Lue0da3362008-06-08 18:29:22 -07001533 if (max_physical_apicid >= 8) {
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001534 switch (boot_cpu_data.x86_vendor) {
1535 case X86_VENDOR_INTEL:
1536 if (!APIC_XAPIC(version)) {
1537 def_to_bigsmp = 0;
1538 break;
1539 }
1540 /* If P4 and above fall through */
1541 case X86_VENDOR_AMD:
1542 def_to_bigsmp = 1;
1543 }
1544 }
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001545#endif
1546
1547#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001548 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001549 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1550 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1551 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001552
1553 cpu_to_apicid[cpu] = apicid;
1554 bios_cpu_apicid[cpu] = apicid;
1555 } else {
1556 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1557 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1558 }
1559#endif
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001560
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001561 cpu_set(cpu, cpu_possible_map);
1562 cpu_set(cpu, cpu_present_map);
1563}
1564
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001565/*
1566 * Power management
1567 */
1568#ifdef CONFIG_PM
1569
1570static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001571 /*
1572 * 'active' is true if the local APIC was enabled by us and
1573 * not the BIOS; this signifies that we are also responsible
1574 * for disabling it before entering apm/acpi suspend
1575 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001576 int active;
1577 /* r/w apic fields */
1578 unsigned int apic_id;
1579 unsigned int apic_taskpri;
1580 unsigned int apic_ldr;
1581 unsigned int apic_dfr;
1582 unsigned int apic_spiv;
1583 unsigned int apic_lvtt;
1584 unsigned int apic_lvtpc;
1585 unsigned int apic_lvt0;
1586 unsigned int apic_lvt1;
1587 unsigned int apic_lvterr;
1588 unsigned int apic_tmict;
1589 unsigned int apic_tdcr;
1590 unsigned int apic_thmr;
1591} apic_pm_state;
1592
1593static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1594{
1595 unsigned long flags;
1596 int maxlvt;
1597
1598 if (!apic_pm_state.active)
1599 return 0;
1600
1601 maxlvt = lapic_get_maxlvt();
1602
1603 apic_pm_state.apic_id = apic_read(APIC_ID);
1604 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1605 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1606 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1607 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1608 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1609 if (maxlvt >= 4)
1610 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1611 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1612 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1613 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1614 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1615 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001616#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001617 if (maxlvt >= 5)
1618 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1619#endif
1620
1621 local_irq_save(flags);
1622 disable_local_APIC();
1623 local_irq_restore(flags);
1624 return 0;
1625}
1626
1627static int lapic_resume(struct sys_device *dev)
1628{
1629 unsigned int l, h;
1630 unsigned long flags;
1631 int maxlvt;
1632
1633 if (!apic_pm_state.active)
1634 return 0;
1635
1636 maxlvt = lapic_get_maxlvt();
1637
1638 local_irq_save(flags);
1639
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001640#ifdef CONFIG_X86_64
1641 if (x2apic)
1642 enable_x2apic();
1643 else
1644#endif
1645 /*
1646 * Make sure the APICBASE points to the right address
1647 *
1648 * FIXME! This will be wrong if we ever support suspend on
1649 * SMP! We'll need to do this as part of the CPU restore!
1650 */
1651 rdmsr(MSR_IA32_APICBASE, l, h);
1652 l &= ~MSR_IA32_APICBASE_BASE;
1653 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1654 wrmsr(MSR_IA32_APICBASE, l, h);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001655
1656 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1657 apic_write(APIC_ID, apic_pm_state.apic_id);
1658 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1659 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1660 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1661 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1662 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1663 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001664#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001665 if (maxlvt >= 5)
1666 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1667#endif
1668 if (maxlvt >= 4)
1669 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1670 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1671 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1672 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1673 apic_write(APIC_ESR, 0);
1674 apic_read(APIC_ESR);
1675 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1676 apic_write(APIC_ESR, 0);
1677 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001678
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001679 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001680
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001681 return 0;
1682}
1683
1684/*
1685 * This device has no shutdown method - fully functioning local APICs
1686 * are needed on every CPU up until machine_halt/restart/poweroff.
1687 */
1688
1689static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001690 .name = "lapic",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001691 .resume = lapic_resume,
1692 .suspend = lapic_suspend,
1693};
1694
1695static struct sys_device device_lapic = {
1696 .id = 0,
1697 .cls = &lapic_sysclass,
1698};
1699
1700static void __devinit apic_pm_activate(void)
1701{
1702 apic_pm_state.active = 1;
1703}
1704
1705static int __init init_lapic_sysfs(void)
1706{
1707 int error;
1708
1709 if (!cpu_has_apic)
1710 return 0;
1711 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1712
1713 error = sysdev_class_register(&lapic_sysclass);
1714 if (!error)
1715 error = sysdev_register(&device_lapic);
1716 return error;
1717}
1718device_initcall(init_lapic_sysfs);
1719
1720#else /* CONFIG_PM */
1721
1722static void apic_pm_activate(void) { }
1723
1724#endif /* CONFIG_PM */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001725
1726/*
1727 * APIC command line parameters
1728 */
1729static int __init parse_lapic(char *arg)
1730{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001731 force_enable_local_apic = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001732 return 0;
1733}
1734early_param("lapic", parse_lapic);
1735
1736static int __init parse_nolapic(char *arg)
1737{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001738 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001739 setup_clear_cpu_cap(X86_FEATURE_APIC);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001740 return 0;
1741}
1742early_param("nolapic", parse_nolapic);
1743
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001744static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001745{
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001746 disable_apic_timer = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001747 return 0;
1748}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001749early_param("noapictimer", parse_disable_apic_timer);
1750
1751static int __init parse_nolapic_timer(char *arg)
1752{
1753 disable_apic_timer = 1;
1754 return 0;
1755}
1756early_param("nolapic_timer", parse_nolapic_timer);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001757
1758static int __init parse_lapic_timer_c2_ok(char *arg)
1759{
1760 local_apic_timer_c2_ok = 1;
1761 return 0;
1762}
1763early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1764
Rene Herman48d97cb2008-08-11 19:20:17 +02001765static int __init apic_set_verbosity(char *arg)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001766{
Rene Herman48d97cb2008-08-11 19:20:17 +02001767 if (!arg)
1768 return -EINVAL;
1769
1770 if (strcmp(arg, "debug") == 0)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001771 apic_verbosity = APIC_DEBUG;
Rene Herman48d97cb2008-08-11 19:20:17 +02001772 else if (strcmp(arg, "verbose") == 0)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001773 apic_verbosity = APIC_VERBOSE;
Rene Herman48d97cb2008-08-11 19:20:17 +02001774
Rene Hermanfb6bef82008-08-11 17:45:53 +02001775 return 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001776}
Rene Hermanfb6bef82008-08-11 17:45:53 +02001777early_param("apic", apic_set_verbosity);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001778
Cyrill Gorcunov746f2eb2008-07-01 21:43:52 +04001779static int __init lapic_insert_resource(void)
1780{
1781 if (!apic_phys)
1782 return -1;
1783
1784 /* Put local APIC into the resource map. */
1785 lapic_resource.start = apic_phys;
1786 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1787 insert_resource(&iomem_resource, &lapic_resource);
1788
1789 return 0;
1790}
1791
1792/*
1793 * need call insert after e820_reserve_resources()
1794 * that is using request_resource
1795 */
1796late_initcall(lapic_insert_resource);