blob: 0556f375e40be8f32ba4efa1e4f968558f62606b [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>
Aaron Durbin39928722006-12-07 02:14:01 +010026#include <linux/ioport.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070027#include <linux/cpu.h>
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020028#include <linux/clockchips.h>
Thomas Gleixner70a20022008-01-30 13:30:18 +010029#include <linux/acpi_pmtmr.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010030#include <linux/module.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070031#include <linux/dmi.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070032#include <linux/dmar.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/atomic.h>
35#include <asm/smp.h>
36#include <asm/mtrr.h>
37#include <asm/mpspec.h>
Yinghai Luefa25592008-08-19 20:50:36 -070038#include <asm/desc.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070039#include <asm/arch_hooks.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010040#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/pgalloc.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070042#include <asm/i8253.h>
Andi Kleen75152112005-05-16 21:53:34 -070043#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010044#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010045#include <asm/proto.h>
46#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020047#include <asm/apic.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070048#include <asm/i8259.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Glauber Costadd46e3c2008-03-25 18:10:46 -030050#include <mach_apic.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070051#include <mach_apicdef.h>
52#include <mach_ipi.h>
Glauber Costa5af55732008-03-25 13:28:56 -030053
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070054/*
55 * Sanity check
56 */
57#if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
58# error SPURIOUS_APIC_VECTOR definition error
59#endif
60
Yinghai Lub3c51172008-08-24 02:01:46 -070061#ifdef CONFIG_X86_32
62/*
63 * Knob to control our willingness to enable the local APIC.
64 *
65 * +1=force-enable
66 */
67static int force_enable_local_apic;
68/*
69 * APIC command line parameters
70 */
71static int __init parse_lapic(char *arg)
72{
73 force_enable_local_apic = 1;
74 return 0;
75}
76early_param("lapic", parse_lapic);
Yinghai Luf28c0ae2008-08-24 02:01:49 -070077/* Local APIC was disabled by the BIOS and enabled by the kernel */
78static int enabled_via_apicbase;
79
Yinghai Lub3c51172008-08-24 02:01:46 -070080#endif
81
82#ifdef CONFIG_X86_64
Chris Wrightbc1d99c2007-10-12 23:04:23 +020083static int apic_calibrate_pmtmr __initdata;
Yinghai Lub3c51172008-08-24 02:01:46 -070084static __init int setup_apicpmtimer(char *s)
85{
86 apic_calibrate_pmtmr = 1;
87 notsc_setup(NULL);
88 return 0;
89}
90__setup("apicpmtimer", setup_apicpmtimer);
91#endif
92
Yinghai Lu49899ea2008-08-24 02:01:47 -070093#ifdef CONFIG_X86_64
94#define HAVE_X2APIC
95#endif
96
97#ifdef HAVE_X2APIC
Suresh Siddha89027d32008-07-10 11:16:56 -070098int x2apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -070099/* x2apic enabled before OS handover */
100int x2apic_preenabled;
Yinghai Lu49899ea2008-08-24 02:01:47 -0700101int disable_x2apic;
102static __init int setup_nox2apic(char *str)
103{
104 disable_x2apic = 1;
105 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
106 return 0;
107}
108early_param("nox2apic", setup_nox2apic);
109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Yinghai Lub3c51172008-08-24 02:01:46 -0700111unsigned long mp_lapic_addr;
112int disable_apic;
113/* Disable local APIC timer from the kernel commandline or via dmi quirk */
114static int disable_apic_timer __cpuinitdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100115/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -0700116int local_apic_timer_c2_ok;
117EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
118
Yinghai Luefa25592008-08-19 20:50:36 -0700119int first_system_vector = 0xfe;
120
121char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
122
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100123/*
124 * Debug level, exported for io_apic.c
125 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100126unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100127
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700128int pic_mode;
129
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400130/* Have we found an MP table */
131int smp_found_config;
132
Aaron Durbin39928722006-12-07 02:14:01 +0100133static struct resource lapic_resource = {
134 .name = "Local APIC",
135 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
136};
137
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200138static unsigned int calibration_result;
139
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200140static int lapic_next_event(unsigned long delta,
141 struct clock_event_device *evt);
142static void lapic_timer_setup(enum clock_event_mode mode,
143 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200144static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100145static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200146
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400147/*
148 * The local apic timer can be used for any function which is CPU local.
149 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200150static struct clock_event_device lapic_clockevent = {
151 .name = "lapic",
152 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
153 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
154 .shift = 32,
155 .set_mode = lapic_timer_setup,
156 .set_next_event = lapic_next_event,
157 .broadcast = lapic_timer_broadcast,
158 .rating = 100,
159 .irq = -1,
160};
161static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
162
Andi Kleend3432892008-01-30 13:33:17 +0100163static unsigned long apic_phys;
164
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100165/*
166 * Get the LAPIC version
167 */
168static inline int lapic_get_version(void)
169{
170 return GET_APIC_VERSION(apic_read(APIC_LVR));
171}
172
173/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400174 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100175 */
176static inline int lapic_is_integrated(void)
177{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400178#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100179 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400180#else
181 return APIC_INTEGRATED(lapic_get_version());
182#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100183}
184
185/*
186 * Check, whether this is a modern or a first generation APIC
187 */
188static int modern_apic(void)
189{
190 /* AMD systems use old APIC versions, so check the CPU */
191 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
192 boot_cpu_data.x86 >= 0xf)
193 return 1;
194 return lapic_get_version() >= 0x14;
195}
196
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400197/*
198 * Paravirt kernels also might be using these below ops. So we still
199 * use generic apic_read()/apic_write(), which might be pointing to different
200 * ops in PARAVIRT case.
201 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700202void xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100203{
204 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
205 cpu_relax();
206}
207
Suresh Siddha1b374e42008-07-10 11:16:49 -0700208u32 safe_xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100209{
210 u32 send_status;
211 int timeout;
212
213 timeout = 0;
214 do {
215 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
216 if (!send_status)
217 break;
218 udelay(100);
219 } while (timeout++ < 1000);
220
221 return send_status;
222}
223
Suresh Siddha1b374e42008-07-10 11:16:49 -0700224void xapic_icr_write(u32 low, u32 id)
225{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200226 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700227 apic_write(APIC_ICR, low);
228}
229
230u64 xapic_icr_read(void)
231{
232 u32 icr1, icr2;
233
234 icr2 = apic_read(APIC_ICR2);
235 icr1 = apic_read(APIC_ICR);
236
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400237 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700238}
239
240static struct apic_ops xapic_ops = {
241 .read = native_apic_mem_read,
242 .write = native_apic_mem_write,
Suresh Siddha1b374e42008-07-10 11:16:49 -0700243 .icr_read = xapic_icr_read,
244 .icr_write = xapic_icr_write,
245 .wait_icr_idle = xapic_wait_icr_idle,
246 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
247};
248
249struct apic_ops __read_mostly *apic_ops = &xapic_ops;
Suresh Siddha1b374e42008-07-10 11:16:49 -0700250EXPORT_SYMBOL_GPL(apic_ops);
251
Yinghai Lu49899ea2008-08-24 02:01:47 -0700252#ifdef HAVE_X2APIC
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700253static void x2apic_wait_icr_idle(void)
254{
255 /* no need to wait for icr idle in x2apic */
256 return;
257}
258
259static u32 safe_x2apic_wait_icr_idle(void)
260{
261 /* no need to wait for icr idle in x2apic */
262 return 0;
263}
264
265void x2apic_icr_write(u32 low, u32 id)
266{
267 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
268}
269
270u64 x2apic_icr_read(void)
271{
272 unsigned long val;
273
274 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
275 return val;
276}
277
278static struct apic_ops x2apic_ops = {
279 .read = native_apic_msr_read,
280 .write = native_apic_msr_write,
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700281 .icr_read = x2apic_icr_read,
282 .icr_write = x2apic_icr_write,
283 .wait_icr_idle = x2apic_wait_icr_idle,
284 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
285};
Yinghai Lu49899ea2008-08-24 02:01:47 -0700286#endif
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700287
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100288/**
289 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
290 */
Jan Beuliche9427102008-01-30 13:31:24 +0100291void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100292{
293 unsigned int v;
294
295 /* unmask and set to NMI */
296 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200297
298 /* Level triggered for 82489DX (32bit mode) */
299 if (!lapic_is_integrated())
300 v |= APIC_LVT_LEVEL_TRIGGER;
301
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100302 apic_write(APIC_LVT0, v);
303}
304
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700305#ifdef CONFIG_X86_32
306/**
307 * get_physical_broadcast - Get number of physical broadcast IDs
308 */
309int get_physical_broadcast(void)
310{
311 return modern_apic() ? 0xff : 0xf;
312}
313#endif
314
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100315/**
316 * lapic_get_maxlvt - get the maximum number of local vector table entries
317 */
318int lapic_get_maxlvt(void)
319{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200320 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100321
322 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200323 /*
324 * - we always have APIC integrated on 64bit mode
325 * - 82489DXs do not report # of LVT entries
326 */
327 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100328}
329
330/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400331 * Local APIC timer
332 */
333
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400334/* Clock divisor */
335#ifdef CONFG_X86_64
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200336#define APIC_DIVISOR 1
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400337#else
338#define APIC_DIVISOR 16
339#endif
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200340
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100341/*
342 * This function sets up the local APIC timer, with a timeout of
343 * 'clocks' APIC bus clock. During calibration we actually call
344 * this function twice on the boot CPU, once with a bogus timeout
345 * value, second time for real. The other (noncalibrating) CPUs
346 * call this function only once, with the real, calibrated value.
347 *
348 * We do reads before writes even if unnecessary, to get around the
349 * P5 APIC double write bug.
350 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100351static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
352{
353 unsigned int lvtt_value, tmp_value;
354
355 lvtt_value = LOCAL_TIMER_VECTOR;
356 if (!oneshot)
357 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200358 if (!lapic_is_integrated())
359 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
360
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100361 if (!irqen)
362 lvtt_value |= APIC_LVT_MASKED;
363
364 apic_write(APIC_LVTT, lvtt_value);
365
366 /*
367 * Divide PICLK by 16
368 */
369 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400370 apic_write(APIC_TDCR,
371 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
372 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100373
374 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200375 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100376}
377
378/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100379 * Setup extended LVT, AMD specific (K8, family 10h)
380 *
381 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
382 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200383 *
384 * If mask=1, the LVT entry does not generate interrupts while mask=0
385 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100386 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100387
388#define APIC_EILVT_LVTOFF_MCE 0
389#define APIC_EILVT_LVTOFF_IBS 1
390
391static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100392{
Robert Richter7b83dae2008-01-30 13:30:40 +0100393 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100394 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
395
396 apic_write(reg, v);
397}
398
Robert Richter7b83dae2008-01-30 13:30:40 +0100399u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
400{
401 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
402 return APIC_EILVT_LVTOFF_MCE;
403}
404
405u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
406{
407 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
408 return APIC_EILVT_LVTOFF_IBS;
409}
Robert Richter6aa360e2008-07-23 15:28:14 +0200410EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100411
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100412/*
413 * Program the next event, relative to now
414 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200415static int lapic_next_event(unsigned long delta,
416 struct clock_event_device *evt)
417{
418 apic_write(APIC_TMICT, delta);
419 return 0;
420}
421
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100422/*
423 * Setup the lapic timer in periodic or oneshot mode
424 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200425static void lapic_timer_setup(enum clock_event_mode mode,
426 struct clock_event_device *evt)
427{
428 unsigned long flags;
429 unsigned int v;
430
431 /* Lapic used as dummy for broadcast ? */
432 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
433 return;
434
435 local_irq_save(flags);
436
437 switch (mode) {
438 case CLOCK_EVT_MODE_PERIODIC:
439 case CLOCK_EVT_MODE_ONESHOT:
440 __setup_APIC_LVTT(calibration_result,
441 mode != CLOCK_EVT_MODE_PERIODIC, 1);
442 break;
443 case CLOCK_EVT_MODE_UNUSED:
444 case CLOCK_EVT_MODE_SHUTDOWN:
445 v = apic_read(APIC_LVTT);
446 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
447 apic_write(APIC_LVTT, v);
448 break;
449 case CLOCK_EVT_MODE_RESUME:
450 /* Nothing to do here */
451 break;
452 }
453
454 local_irq_restore(flags);
455}
456
457/*
458 * Local APIC timer broadcast function
459 */
460static void lapic_timer_broadcast(cpumask_t mask)
461{
462#ifdef CONFIG_SMP
463 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
464#endif
465}
466
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100467/*
468 * Setup the local APIC timer for this CPU. Copy the initilized values
469 * of the boot CPU and register the clock event in the framework.
470 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700471static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200472{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100473 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
474
475 memcpy(levt, &lapic_clockevent, sizeof(*levt));
476 levt->cpumask = cpumask_of_cpu(smp_processor_id());
477
478 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200479}
480
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700481/*
482 * In this functions we calibrate APIC bus clocks to the external timer.
483 *
484 * We want to do the calibration only once since we want to have local timer
485 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
486 * frequency.
487 *
488 * This was previously done by reading the PIT/HPET and waiting for a wrap
489 * around to find out, that a tick has elapsed. I have a box, where the PIT
490 * readout is broken, so it never gets out of the wait loop again. This was
491 * also reported by others.
492 *
493 * Monitoring the jiffies value is inaccurate and the clockevents
494 * infrastructure allows us to do a simple substitution of the interrupt
495 * handler.
496 *
497 * The calibration routine also uses the pm_timer when possible, as the PIT
498 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
499 * back to normal later in the boot process).
500 */
501
502#define LAPIC_CAL_LOOPS (HZ/10)
503
504static __initdata int lapic_cal_loops = -1;
505static __initdata long lapic_cal_t1, lapic_cal_t2;
506static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
507static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
508static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
509
510/*
511 * Temporary interrupt handler.
512 */
513static void __init lapic_cal_handler(struct clock_event_device *dev)
514{
515 unsigned long long tsc = 0;
516 long tapic = apic_read(APIC_TMCCT);
517 unsigned long pm = acpi_pm_read_early();
518
519 if (cpu_has_tsc)
520 rdtscll(tsc);
521
522 switch (lapic_cal_loops++) {
523 case 0:
524 lapic_cal_t1 = tapic;
525 lapic_cal_tsc1 = tsc;
526 lapic_cal_pm1 = pm;
527 lapic_cal_j1 = jiffies;
528 break;
529
530 case LAPIC_CAL_LOOPS:
531 lapic_cal_t2 = tapic;
532 lapic_cal_tsc2 = tsc;
533 if (pm < lapic_cal_pm1)
534 pm += ACPI_PM_OVRRUN;
535 lapic_cal_pm2 = pm;
536 lapic_cal_j2 = jiffies;
537 break;
538 }
539}
540
541static int __init calibrate_APIC_clock(void)
542{
543 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
544 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
545 const long pm_thresh = pm_100ms/100;
546 void (*real_handler)(struct clock_event_device *dev);
547 unsigned long deltaj;
548 long delta, deltapm;
549 int pm_referenced = 0;
550
551 local_irq_disable();
552
553 /* Replace the global interrupt handler */
554 real_handler = global_clock_event->event_handler;
555 global_clock_event->event_handler = lapic_cal_handler;
556
557 /*
558 * Setup the APIC counter to 1e9. There is no way the lapic
559 * can underflow in the 100ms detection time frame
560 */
561 __setup_APIC_LVTT(1000000000, 0, 0);
562
563 /* Let the interrupts run */
564 local_irq_enable();
565
566 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
567 cpu_relax();
568
569 local_irq_disable();
570
571 /* Restore the real event handler */
572 global_clock_event->event_handler = real_handler;
573
574 /* Build delta t1-t2 as apic timer counts down */
575 delta = lapic_cal_t1 - lapic_cal_t2;
576 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
577
Yinghai Lue492c5a2008-08-24 22:41:26 -0700578#ifdef CONFIG_X86_PM_TIMER
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700579 /* Check, if the PM timer is available */
580 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
581 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
582
583 if (deltapm) {
584 unsigned long mult;
585 u64 res;
586
587 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
588
589 if (deltapm > (pm_100ms - pm_thresh) &&
590 deltapm < (pm_100ms + pm_thresh)) {
591 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
592 } else {
593 res = (((u64) deltapm) * mult) >> 22;
594 do_div(res, 1000000);
595 printk(KERN_WARNING "APIC calibration not consistent "
596 "with PM Timer: %ldms instead of 100ms\n",
597 (long)res);
598 /* Correct the lapic counter value */
599 res = (((u64) delta) * pm_100ms);
600 do_div(res, deltapm);
601 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
602 "%lu (%ld)\n", (unsigned long) res, delta);
603 delta = (long) res;
604 }
605 pm_referenced = 1;
606 }
Yinghai Lue492c5a2008-08-24 22:41:26 -0700607#endif
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700608
609 /* Calculate the scaled math multiplication factor */
610 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
611 lapic_clockevent.shift);
612 lapic_clockevent.max_delta_ns =
613 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
614 lapic_clockevent.min_delta_ns =
615 clockevent_delta2ns(0xF, &lapic_clockevent);
616
617 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
618
619 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
620 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
621 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
622 calibration_result);
623
624 if (cpu_has_tsc) {
625 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
626 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
627 "%ld.%04ld MHz.\n",
628 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
629 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
630 }
631
632 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
633 "%u.%04u MHz.\n",
634 calibration_result / (1000000 / HZ),
635 calibration_result % (1000000 / HZ));
636
637 /*
638 * Do a sanity check on the APIC calibration result
639 */
640 if (calibration_result < (1000000 / HZ)) {
641 local_irq_enable();
642 printk(KERN_WARNING
643 "APIC frequency too slow, disabling apic timer\n");
644 return -1;
645 }
646
647 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
648
649 /* We trust the pm timer based calibration */
650 if (!pm_referenced) {
651 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
652
653 /*
654 * Setup the apic timer manually
655 */
656 levt->event_handler = lapic_cal_handler;
657 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
658 lapic_cal_loops = -1;
659
660 /* Let the interrupts run */
661 local_irq_enable();
662
663 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
664 cpu_relax();
665
666 local_irq_disable();
667
668 /* Stop the lapic timer */
669 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
670
671 local_irq_enable();
672
673 /* Jiffies delta */
674 deltaj = lapic_cal_j2 - lapic_cal_j1;
675 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
676
677 /* Check, if the jiffies result is consistent */
678 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
679 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
680 else
681 levt->features |= CLOCK_EVT_FEAT_DUMMY;
682 } else
683 local_irq_enable();
684
685 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
686 printk(KERN_WARNING
687 "APIC timer disabled due to verification failure.\n");
688 return -1;
689 }
690
691 return 0;
692}
693
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100694/*
695 * Setup the boot APIC
696 *
697 * Calibrate and verify the result.
698 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100699void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100701 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400702 * The local apic timer can be disabled via the kernel
703 * commandline or from the CPU detection code. Register the lapic
704 * timer as a dummy clock event source on SMP systems, so the
705 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100706 */
707 if (disable_apic_timer) {
708 printk(KERN_INFO "Disabling APIC timer\n");
709 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100710 if (num_possible_cpus() > 1) {
711 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100712 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100713 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100714 return;
715 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200716
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400717 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
718 "calibrating APIC timer ...\n");
719
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400720 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100721 /* No broadcast on UP ! */
722 if (num_possible_cpus() > 1)
723 setup_APIC_timer();
724 return;
725 }
726
727 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100728 * If nmi_watchdog is set to IO_APIC, we need the
729 * PIT/HPET going. Otherwise register lapic as a dummy
730 * device.
731 */
732 if (nmi_watchdog != NMI_IO_APIC)
733 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
734 else
735 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200736 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100737
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400738 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100739 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100742void __cpuinit setup_secondary_APIC_clock(void)
743{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100744 setup_APIC_timer();
745}
746
747/*
748 * The guts of the apic timer interrupt
749 */
750static void local_apic_timer_interrupt(void)
751{
752 int cpu = smp_processor_id();
753 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
754
755 /*
756 * Normally we should not be here till LAPIC has been initialized but
757 * in some cases like kdump, its possible that there is a pending LAPIC
758 * timer interrupt from previous kernel's context and is delivered in
759 * new kernel the moment interrupts are enabled.
760 *
761 * Interrupts are enabled early and LAPIC is setup much later, hence
762 * its possible that when we get here evt->event_handler is NULL.
763 * Check for event_handler being NULL and discard the interrupt as
764 * spurious.
765 */
766 if (!evt->event_handler) {
767 printk(KERN_WARNING
768 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
769 /* Switch it off */
770 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
771 return;
772 }
773
774 /*
775 * the NMI deadlock-detector uses this.
776 */
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400777#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100778 add_pda(apic_timer_irqs, 1);
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400779#else
780 per_cpu(irq_stat, cpu).apic_timer_irqs++;
781#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100782
783 evt->event_handler(evt);
784}
785
786/*
787 * Local APIC timer interrupt. This is the most natural way for doing
788 * local interrupts, but local timer interrupts can be emulated by
789 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
790 *
791 * [ if a single-CPU system runs an SMP kernel then we call the local
792 * interrupt as well. Thus we cannot inline the local irq ... ]
793 */
794void smp_apic_timer_interrupt(struct pt_regs *regs)
795{
796 struct pt_regs *old_regs = set_irq_regs(regs);
797
798 /*
799 * NOTE! We'd better ACK the irq immediately,
800 * because timer handling can be slow.
801 */
802 ack_APIC_irq();
803 /*
804 * update_process_times() expects us to have done irq_enter().
805 * Besides, if we don't timer interrupts ignore the global
806 * interrupt lock, which is the WrongThing (tm) to do.
807 */
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700808#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100809 exit_idle();
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700810#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100811 irq_enter();
812 local_apic_timer_interrupt();
813 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400814
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100815 set_irq_regs(old_regs);
816}
817
818int setup_profiling_timer(unsigned int multiplier)
819{
820 return -EINVAL;
821}
822
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100823/*
824 * Local APIC start and shutdown
825 */
826
827/**
828 * clear_local_APIC - shutdown the local APIC
829 *
830 * This is called, when a CPU is disabled and before rebooting, so the state of
831 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
832 * leftovers during boot.
833 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834void clear_local_APIC(void)
835{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400836 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100837 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Andi Kleend3432892008-01-30 13:33:17 +0100839 /* APIC hasn't been mapped yet */
840 if (!apic_phys)
841 return;
842
843 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200845 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 * if the vector is zero. Mask LVTERR first to prevent this.
847 */
848 if (maxlvt >= 3) {
849 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100850 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 /*
853 * Careful: we have to set masks only first to deassert
854 * any level-triggered sources.
855 */
856 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100857 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100859 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100861 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (maxlvt >= 4) {
863 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100864 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400867 /* lets not touch this if we didn't frob it */
868#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
869 if (maxlvt >= 5) {
870 v = apic_read(APIC_LVTTHMR);
871 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
872 }
873#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /*
875 * Clean APIC state for other OSs:
876 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100877 apic_write(APIC_LVTT, APIC_LVT_MASKED);
878 apic_write(APIC_LVT0, APIC_LVT_MASKED);
879 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100881 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100883 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400884
885 /* Integrated APIC (!82489DX) ? */
886 if (lapic_is_integrated()) {
887 if (maxlvt > 3)
888 /* Clear ESR due to Pentium errata 3AP and 11AP */
889 apic_write(APIC_ESR, 0);
890 apic_read(APIC_ESR);
891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100894/**
895 * disable_local_APIC - clear and disable the local APIC
896 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897void disable_local_APIC(void)
898{
899 unsigned int value;
900
901 clear_local_APIC();
902
903 /*
904 * Disable APIC (implies clearing of registers
905 * for 82489DX!).
906 */
907 value = apic_read(APIC_SPIV);
908 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100909 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400910
911#ifdef CONFIG_X86_32
912 /*
913 * When LAPIC was disabled by the BIOS and enabled by the kernel,
914 * restore the disabled state.
915 */
916 if (enabled_via_apicbase) {
917 unsigned int l, h;
918
919 rdmsr(MSR_IA32_APICBASE, l, h);
920 l &= ~MSR_IA32_APICBASE_ENABLE;
921 wrmsr(MSR_IA32_APICBASE, l, h);
922 }
923#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400926/*
927 * If Linux enabled the LAPIC against the BIOS default disable it down before
928 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
929 * not power-off. Additionally clear all LVT entries before disable_local_APIC
930 * for the case where Linux didn't enable the LAPIC.
931 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700932void lapic_shutdown(void)
933{
934 unsigned long flags;
935
936 if (!cpu_has_apic)
937 return;
938
939 local_irq_save(flags);
940
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400941#ifdef CONFIG_X86_32
942 if (!enabled_via_apicbase)
943 clear_local_APIC();
944 else
945#endif
946 disable_local_APIC();
947
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700948
949 local_irq_restore(flags);
950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952/*
953 * This is to verify that we're looking at a real local APIC.
954 * Check these against your board if the CPUs aren't getting
955 * started for no apparent reason.
956 */
957int __init verify_local_APIC(void)
958{
959 unsigned int reg0, reg1;
960
961 /*
962 * The version register is read-only in a real APIC.
963 */
964 reg0 = apic_read(APIC_LVR);
965 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
966 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
967 reg1 = apic_read(APIC_LVR);
968 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
969
970 /*
971 * The two version reads above should print the same
972 * numbers. If the second one is different, then we
973 * poke at a non-APIC.
974 */
975 if (reg1 != reg0)
976 return 0;
977
978 /*
979 * Check if the version looks reasonably.
980 */
981 reg1 = GET_APIC_VERSION(reg0);
982 if (reg1 == 0x00 || reg1 == 0xff)
983 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100984 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (reg1 < 0x02 || reg1 == 0xff)
986 return 0;
987
988 /*
989 * The ID register is read/write in a real APIC.
990 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700991 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
993 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700994 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
996 apic_write(APIC_ID, reg0);
997 if (reg1 != (reg0 ^ APIC_ID_MASK))
998 return 0;
999
1000 /*
1001 * The next two are just to see if we have sane values.
1002 * They're only really relevant if we're in Virtual Wire
1003 * compatibility mode, but most boxes are anymore.
1004 */
1005 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001006 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 reg1 = apic_read(APIC_LVT1);
1008 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
1009
1010 return 1;
1011}
1012
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001013/**
1014 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1015 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016void __init sync_Arb_IDs(void)
1017{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +02001018 /*
1019 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1020 * needed on AMD.
1021 */
1022 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return;
1024
1025 /*
1026 * Wait for idle.
1027 */
1028 apic_wait_icr_idle();
1029
1030 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +04001031 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1032 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035/*
1036 * An initial setup of the virtual wire mode.
1037 */
1038void __init init_bsp_APIC(void)
1039{
Andi Kleen11a8e772006-01-11 22:46:51 +01001040 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 /*
1043 * Don't do the setup now if we have a SMP BIOS as the
1044 * through-I/O-APIC virtual wire mode might be active.
1045 */
1046 if (smp_found_config || !cpu_has_apic)
1047 return;
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /*
1050 * Do not trust the local APIC being empty at bootup.
1051 */
1052 clear_local_APIC();
1053
1054 /*
1055 * Enable APIC.
1056 */
1057 value = apic_read(APIC_SPIV);
1058 value &= ~APIC_VECTOR_MASK;
1059 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001060
1061#ifdef CONFIG_X86_32
1062 /* This bit is reserved on P4/Xeon and should be cleared */
1063 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1064 (boot_cpu_data.x86 == 15))
1065 value &= ~APIC_SPIV_FOCUS_DISABLED;
1066 else
1067#endif
1068 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001070 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 /*
1073 * Set up the virtual wire mode.
1074 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001075 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001077 if (!lapic_is_integrated()) /* 82489DX */
1078 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001079 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001082static void __cpuinit lapic_setup_esr(void)
1083{
1084 unsigned long oldvalue, value, maxlvt;
1085 if (lapic_is_integrated() && !esr_disable) {
1086 if (esr_disable) {
1087 /*
1088 * Something untraceable is creating bad interrupts on
1089 * secondary quads ... for the moment, just leave the
1090 * ESR disabled - we can't do anything useful with the
1091 * errors anyway - mbligh
1092 */
1093 printk(KERN_INFO "Leaving ESR disabled.\n");
1094 return;
1095 }
1096 /* !82489DX */
1097 maxlvt = lapic_get_maxlvt();
1098 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1099 apic_write(APIC_ESR, 0);
1100 oldvalue = apic_read(APIC_ESR);
1101
1102 /* enables sending errors */
1103 value = ERROR_APIC_VECTOR;
1104 apic_write(APIC_LVTERR, value);
1105 /*
1106 * spec says clear errors after enabling vector.
1107 */
1108 if (maxlvt > 3)
1109 apic_write(APIC_ESR, 0);
1110 value = apic_read(APIC_ESR);
1111 if (value != oldvalue)
1112 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1113 "vector: 0x%08lx after: 0x%08lx\n",
1114 oldvalue, value);
1115 } else {
1116 printk(KERN_INFO "No ESR for 82489DX.\n");
1117 }
1118}
1119
1120
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001121/**
1122 * setup_local_APIC - setup the local APIC
1123 */
1124void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Andi Kleen739f33b2008-01-30 13:30:40 +01001126 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001127 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001129#ifdef CONFIG_X86_32
1130 /* Pound the ESR really hard over the head with a big hammer - mbligh */
1131 if (esr_disable) {
1132 apic_write(APIC_ESR, 0);
1133 apic_write(APIC_ESR, 0);
1134 apic_write(APIC_ESR, 0);
1135 apic_write(APIC_ESR, 0);
1136 }
1137#endif
1138
Jack Steinerac23d4e2008-03-28 14:12:16 -05001139 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /*
1142 * Double-check whether this APIC is really registered.
1143 * This is meaningless in clustered apic mode, so we skip it.
1144 */
1145 if (!apic_id_registered())
1146 BUG();
1147
1148 /*
1149 * Intel recommends to set DFR, LDR and TPR before enabling
1150 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1151 * document number 292116). So here it goes...
1152 */
1153 init_apic_ldr();
1154
1155 /*
1156 * Set Task Priority to 'accept all'. We never change this
1157 * later on.
1158 */
1159 value = apic_read(APIC_TASKPRI);
1160 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001161 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001164 * After a crash, we no longer service the interrupts and a pending
1165 * interrupt from previous kernel might still have ISR bit set.
1166 *
1167 * Most probably by now CPU has serviced that pending interrupt and
1168 * it might not have done the ack_APIC_irq() because it thought,
1169 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1170 * does not clear the ISR bit and cpu thinks it has already serivced
1171 * the interrupt. Hence a vector might get locked. It was noticed
1172 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1173 */
1174 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1175 value = apic_read(APIC_ISR + i*0x10);
1176 for (j = 31; j >= 0; j--) {
1177 if (value & (1<<j))
1178 ack_APIC_irq();
1179 }
1180 }
1181
1182 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 * Now that we are all set up, enable the APIC
1184 */
1185 value = apic_read(APIC_SPIV);
1186 value &= ~APIC_VECTOR_MASK;
1187 /*
1188 * Enable APIC
1189 */
1190 value |= APIC_SPIV_APIC_ENABLED;
1191
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001192#ifdef CONFIG_X86_32
1193 /*
1194 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1195 * certain networking cards. If high frequency interrupts are
1196 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1197 * entry is masked/unmasked at a high rate as well then sooner or
1198 * later IOAPIC line gets 'stuck', no more interrupts are received
1199 * from the device. If focus CPU is disabled then the hang goes
1200 * away, oh well :-(
1201 *
1202 * [ This bug can be reproduced easily with a level-triggered
1203 * PCI Ne2000 networking cards and PII/PIII processors, dual
1204 * BX chipset. ]
1205 */
1206 /*
1207 * Actually disabling the focus CPU check just makes the hang less
1208 * frequent as it makes the interrupt distributon model be more
1209 * like LRU than MRU (the short-term load is more even across CPUs).
1210 * See also the comment in end_level_ioapic_irq(). --macro
1211 */
1212
1213 /*
1214 * - enable focus processor (bit==0)
1215 * - 64bit mode always use processor focus
1216 * so no need to set it
1217 */
1218 value &= ~APIC_SPIV_FOCUS_DISABLED;
1219#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /*
1222 * Set spurious IRQ vector
1223 */
1224 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001225 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 /*
1228 * Set up LVT0, LVT1:
1229 *
1230 * set up through-local-APIC on the BP's LINT0. This is not
1231 * strictly necessary in pure symmetric-IO mode, but sometimes
1232 * we delegate interrupts to the 8259A.
1233 */
1234 /*
1235 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1236 */
1237 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001238 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001240 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001241 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 } else {
1243 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001244 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001245 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001247 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 /*
1250 * only the BP should see the LINT1 NMI signal, obviously.
1251 */
1252 if (!smp_processor_id())
1253 value = APIC_DM_NMI;
1254 else
1255 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001256 if (!lapic_is_integrated()) /* 82489DX */
1257 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001258 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001259
Jack Steinerac23d4e2008-03-28 14:12:16 -05001260 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +01001261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Andi Kleen739f33b2008-01-30 13:30:40 +01001263void __cpuinit end_local_APIC_setup(void)
1264{
1265 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001266
1267#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001268 {
1269 unsigned int value;
1270 /* Disable the local apic timer */
1271 value = apic_read(APIC_LVTT);
1272 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1273 apic_write(APIC_LVTT, value);
1274 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001275#endif
1276
Don Zickusf2802e72006-09-26 10:52:26 +02001277 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 apic_pm_activate();
1279}
1280
Yinghai Lu49899ea2008-08-24 02:01:47 -07001281#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001282void check_x2apic(void)
1283{
1284 int msr, msr2;
1285
1286 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1287
1288 if (msr & X2APIC_ENABLE) {
1289 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
1290 x2apic_preenabled = x2apic = 1;
1291 apic_ops = &x2apic_ops;
1292 }
1293}
1294
1295void enable_x2apic(void)
1296{
1297 int msr, msr2;
1298
1299 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1300 if (!(msr & X2APIC_ENABLE)) {
1301 printk("Enabling x2apic\n");
1302 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1303 }
1304}
1305
1306void enable_IR_x2apic(void)
1307{
1308#ifdef CONFIG_INTR_REMAP
1309 int ret;
1310 unsigned long flags;
1311
1312 if (!cpu_has_x2apic)
1313 return;
1314
1315 if (!x2apic_preenabled && disable_x2apic) {
1316 printk(KERN_INFO
1317 "Skipped enabling x2apic and Interrupt-remapping "
1318 "because of nox2apic\n");
1319 return;
1320 }
1321
1322 if (x2apic_preenabled && disable_x2apic)
1323 panic("Bios already enabled x2apic, can't enforce nox2apic");
1324
1325 if (!x2apic_preenabled && skip_ioapic_setup) {
1326 printk(KERN_INFO
1327 "Skipped enabling x2apic and Interrupt-remapping "
1328 "because of skipping io-apic setup\n");
1329 return;
1330 }
1331
1332 ret = dmar_table_init();
1333 if (ret) {
1334 printk(KERN_INFO
1335 "dmar_table_init() failed with %d:\n", ret);
1336
1337 if (x2apic_preenabled)
1338 panic("x2apic enabled by bios. But IR enabling failed");
1339 else
1340 printk(KERN_INFO
1341 "Not enabling x2apic,Intr-remapping\n");
1342 return;
1343 }
1344
1345 local_irq_save(flags);
1346 mask_8259A();
1347 save_mask_IO_APIC_setup();
1348
1349 ret = enable_intr_remapping(1);
1350
1351 if (ret && x2apic_preenabled) {
1352 local_irq_restore(flags);
1353 panic("x2apic enabled by bios. But IR enabling failed");
1354 }
1355
1356 if (ret)
1357 goto end;
1358
1359 if (!x2apic) {
1360 x2apic = 1;
1361 apic_ops = &x2apic_ops;
1362 enable_x2apic();
1363 }
1364end:
1365 if (ret)
1366 /*
1367 * IR enabling failed
1368 */
1369 restore_IO_APIC_setup();
1370 else
1371 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1372
1373 unmask_8259A();
1374 local_irq_restore(flags);
1375
1376 if (!ret) {
1377 if (!x2apic_preenabled)
1378 printk(KERN_INFO
1379 "Enabled x2apic and interrupt-remapping\n");
1380 else
1381 printk(KERN_INFO
1382 "Enabled Interrupt-remapping\n");
1383 } else
1384 printk(KERN_ERR
1385 "Failed to enable Interrupt-remapping and x2apic\n");
1386#else
1387 if (!cpu_has_x2apic)
1388 return;
1389
1390 if (x2apic_preenabled)
1391 panic("x2apic enabled prior OS handover,"
1392 " enable CONFIG_INTR_REMAP");
1393
1394 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1395 " and x2apic\n");
1396#endif
1397
1398 return;
1399}
Yinghai Lu49899ea2008-08-24 02:01:47 -07001400#endif /* HAVE_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001401
Yinghai Lube7a6562008-08-24 02:01:51 -07001402#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001403/*
1404 * Detect and enable local APICs on non-SMP boards.
1405 * Original code written by Keir Fraser.
1406 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1407 * not correctly set up (usually the APIC timer won't work etc.)
1408 */
1409static int __init detect_init_APIC(void)
1410{
1411 if (!cpu_has_apic) {
1412 printk(KERN_INFO "No local APIC present\n");
1413 return -1;
1414 }
1415
1416 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001417 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001418 return 0;
1419}
Yinghai Lube7a6562008-08-24 02:01:51 -07001420#else
1421/*
1422 * Detect and initialize APIC
1423 */
1424static int __init detect_init_APIC(void)
1425{
1426 u32 h, l, features;
1427
1428 /* Disabled by kernel option? */
1429 if (disable_apic)
1430 return -1;
1431
1432 switch (boot_cpu_data.x86_vendor) {
1433 case X86_VENDOR_AMD:
1434 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1435 (boot_cpu_data.x86 == 15))
1436 break;
1437 goto no_apic;
1438 case X86_VENDOR_INTEL:
1439 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1440 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1441 break;
1442 goto no_apic;
1443 default:
1444 goto no_apic;
1445 }
1446
1447 if (!cpu_has_apic) {
1448 /*
1449 * Over-ride BIOS and try to enable the local APIC only if
1450 * "lapic" specified.
1451 */
1452 if (!force_enable_local_apic) {
1453 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1454 "you can enable it with \"lapic\"\n");
1455 return -1;
1456 }
1457 /*
1458 * Some BIOSes disable the local APIC in the APIC_BASE
1459 * MSR. This can only be done in software for Intel P6 or later
1460 * and AMD K7 (Model > 1) or later.
1461 */
1462 rdmsr(MSR_IA32_APICBASE, l, h);
1463 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1464 printk(KERN_INFO
1465 "Local APIC disabled by BIOS -- reenabling.\n");
1466 l &= ~MSR_IA32_APICBASE_BASE;
1467 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1468 wrmsr(MSR_IA32_APICBASE, l, h);
1469 enabled_via_apicbase = 1;
1470 }
1471 }
1472 /*
1473 * The APIC feature bit should now be enabled
1474 * in `cpuid'
1475 */
1476 features = cpuid_edx(1);
1477 if (!(features & (1 << X86_FEATURE_APIC))) {
1478 printk(KERN_WARNING "Could not enable APIC!\n");
1479 return -1;
1480 }
1481 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1482 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1483
1484 /* The BIOS may have set up the APIC at some other address */
1485 rdmsr(MSR_IA32_APICBASE, l, h);
1486 if (l & MSR_IA32_APICBASE_ENABLE)
1487 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1488
1489 printk(KERN_INFO "Found and enabled local APIC!\n");
1490
1491 apic_pm_activate();
1492
1493 return 0;
1494
1495no_apic:
1496 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1497 return -1;
1498}
1499#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001500
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001501#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001502void __init early_init_lapic_mapping(void)
1503{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001504 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001505
1506 /*
1507 * If no local APIC can be found then go out
1508 * : it means there is no mpatable and MADT
1509 */
1510 if (!smp_found_config)
1511 return;
1512
Thomas Gleixner431ee792008-05-12 15:43:35 +02001513 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001514
Thomas Gleixner431ee792008-05-12 15:43:35 +02001515 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001516 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001517 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001518
1519 /*
1520 * Fetch the APIC ID of the BSP in case we have a
1521 * default configuration (or the MP table is broken).
1522 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001523 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001524}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001525#endif
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001526
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001527/**
1528 * init_apic_mappings - initialize APIC mappings
1529 */
1530void __init init_apic_mappings(void)
1531{
Yinghai Lu49899ea2008-08-24 02:01:47 -07001532#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001533 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001534 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001535 return;
1536 }
Yinghai Lu49899ea2008-08-24 02:01:47 -07001537#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001538
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001539 /*
1540 * If no local APIC can be found then set up a fake all
1541 * zeroes page to simulate the local APIC and another
1542 * one for the IO-APIC.
1543 */
1544 if (!smp_found_config && detect_init_APIC()) {
1545 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1546 apic_phys = __pa(apic_phys);
1547 } else
1548 apic_phys = mp_lapic_addr;
1549
1550 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1551 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1552 APIC_BASE, apic_phys);
1553
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001554 /*
1555 * Fetch the APIC ID of the BSP in case we have a
1556 * default configuration (or the MP table is broken).
1557 */
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001558 if (boot_cpu_physical_apicid == -1U)
1559 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001560}
1561
1562/*
1563 * This initializes the IO-APIC and APIC hardware if this is
1564 * a UP kernel.
1565 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001566int apic_version[MAX_APICS];
1567
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001568int __init APIC_init_uniprocessor(void)
1569{
Yinghai Lufa2bd352008-08-24 02:01:50 -07001570#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001571 if (disable_apic) {
1572 printk(KERN_INFO "Apic disabled\n");
1573 return -1;
1574 }
1575 if (!cpu_has_apic) {
1576 disable_apic = 1;
1577 printk(KERN_INFO "Apic disabled by BIOS\n");
1578 return -1;
1579 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001580#else
1581 if (!smp_found_config && !cpu_has_apic)
1582 return -1;
1583
1584 /*
1585 * Complain if the BIOS pretends there is one.
1586 */
1587 if (!cpu_has_apic &&
1588 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
1589 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1590 boot_cpu_physical_apicid);
1591 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1592 return -1;
1593 }
1594#endif
1595
Yinghai Lu49899ea2008-08-24 02:01:47 -07001596#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001597 enable_IR_x2apic();
Yinghai Lu49899ea2008-08-24 02:01:47 -07001598#endif
Yinghai Lufa2bd352008-08-24 02:01:50 -07001599#ifdef CONFIG_X86_64
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001600 setup_apic_routing();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001601#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001602
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001603 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001604 connect_bsp_APIC();
1605
Yinghai Lufa2bd352008-08-24 02:01:50 -07001606#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001607 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001608#else
1609 /*
1610 * Hack: In case of kdump, after a crash, kernel might be booting
1611 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1612 * might be zero if read from MP tables. Get it from LAPIC.
1613 */
1614# ifdef CONFIG_CRASH_DUMP
1615 boot_cpu_physical_apicid = read_apic_id();
1616# endif
1617#endif
1618 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001619 setup_local_APIC();
1620
Yinghai Lufa2bd352008-08-24 02:01:50 -07001621#ifdef CONFIG_X86_64
Andi Kleen739f33b2008-01-30 13:30:40 +01001622 /*
1623 * Now enable IO-APICs, actually call clear_IO_APIC
1624 * We need clear_IO_APIC before enabling vector on BP
1625 */
1626 if (!skip_ioapic_setup && nr_ioapics)
1627 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001628#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001629
Yinghai Lufa2bd352008-08-24 02:01:50 -07001630#ifdef CONFIG_X86_IO_APIC
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001631 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
Yinghai Lufa2bd352008-08-24 02:01:50 -07001632#endif
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001633 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +01001634 end_local_APIC_setup();
1635
Yinghai Lufa2bd352008-08-24 02:01:50 -07001636#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001637 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1638 setup_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001639# ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001640 else
1641 nr_ioapics = 0;
Yinghai Lufa2bd352008-08-24 02:01:50 -07001642# endif
1643#endif
1644
1645#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001646 setup_boot_APIC_clock();
1647 check_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001648#else
1649 setup_boot_clock();
1650#endif
1651
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001652 return 0;
1653}
1654
1655/*
1656 * Local APIC interrupts
1657 */
1658
1659/*
1660 * This interrupt should _never_ happen with our APIC/SMP architecture
1661 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001662void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001663{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001664 u32 v;
1665
1666#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001667 exit_idle();
Yinghai Ludc1528d2008-08-24 02:01:53 -07001668#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001669 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
Yinghai Ludc1528d2008-08-24 02:01:53 -07001679#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001680 add_pda(irq_spurious_count, 1);
Yinghai Ludc1528d2008-08-24 02:01:53 -07001681#else
1682 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1683 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1684 "should never happen.\n", smp_processor_id());
1685 __get_cpu_var(irq_stat).irq_spurious_count++;
1686#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001687 irq_exit();
1688}
1689
1690/*
1691 * This interrupt should never happen with our APIC/SMP architecture
1692 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001693void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001694{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001695 u32 v, v1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001696
Yinghai Ludc1528d2008-08-24 02:01:53 -07001697#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001698 exit_idle();
Yinghai Ludc1528d2008-08-24 02:01:53 -07001699#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001700 irq_enter();
1701 /* First tickle the hardware, only then report what went on. -- REW */
1702 v = apic_read(APIC_ESR);
1703 apic_write(APIC_ESR, 0);
1704 v1 = apic_read(APIC_ESR);
1705 ack_APIC_irq();
1706 atomic_inc(&irq_err_count);
1707
1708 /* Here is what the APIC error bits mean:
1709 0: Send CS error
1710 1: Receive CS error
1711 2: Send accept error
1712 3: Receive accept error
1713 4: Reserved
1714 5: Send illegal vector
1715 6: Received illegal vector
1716 7: Illegal register address
1717 */
1718 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1719 smp_processor_id(), v , v1);
1720 irq_exit();
1721}
1722
Glauber Costab5841762008-05-28 13:38:28 -03001723/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001724 * connect_bsp_APIC - attach the APIC to the interrupt system
1725 */
Glauber Costab5841762008-05-28 13:38:28 -03001726void __init connect_bsp_APIC(void)
1727{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001728#ifdef CONFIG_X86_32
1729 if (pic_mode) {
1730 /*
1731 * Do not trust the local APIC being empty at bootup.
1732 */
1733 clear_local_APIC();
1734 /*
1735 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1736 * local APIC to INT and NMI lines.
1737 */
1738 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1739 "enabling APIC mode.\n");
1740 outb(0x70, 0x22);
1741 outb(0x01, 0x23);
1742 }
1743#endif
Glauber Costab5841762008-05-28 13:38:28 -03001744 enable_apic_mode();
1745}
1746
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001747/**
1748 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1749 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1750 *
1751 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1752 * APIC is disabled.
1753 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001754void disconnect_bsp_APIC(int virt_wire_setup)
1755{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001756 unsigned int value;
1757
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001758#ifdef CONFIG_X86_32
1759 if (pic_mode) {
1760 /*
1761 * Put the board back into PIC mode (has an effect only on
1762 * certain older boards). Note that APIC interrupts, including
1763 * IPIs, won't work beyond this point! The only exception are
1764 * INIT IPIs.
1765 */
1766 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1767 "entering PIC mode.\n");
1768 outb(0x70, 0x22);
1769 outb(0x00, 0x23);
1770 return;
1771 }
1772#endif
1773
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001774 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001775
1776 /* For the spurious interrupt use vector F, and enable it */
1777 value = apic_read(APIC_SPIV);
1778 value &= ~APIC_VECTOR_MASK;
1779 value |= APIC_SPIV_APIC_ENABLED;
1780 value |= 0xf;
1781 apic_write(APIC_SPIV, value);
1782
1783 if (!virt_wire_setup) {
1784 /*
1785 * For LVT0 make it edge triggered, active high,
1786 * external and enabled
1787 */
1788 value = apic_read(APIC_LVT0);
1789 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1790 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1791 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1792 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1793 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1794 apic_write(APIC_LVT0, value);
1795 } else {
1796 /* Disable LVT0 */
1797 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1798 }
1799
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001800 /*
1801 * For LVT1 make it edge triggered, active high,
1802 * nmi and enabled
1803 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001804 value = apic_read(APIC_LVT1);
1805 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1806 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1807 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1808 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1809 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1810 apic_write(APIC_LVT1, value);
1811}
1812
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001813void __cpuinit generic_processor_info(int apicid, int version)
1814{
1815 int cpu;
1816 cpumask_t tmp_map;
1817
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001818 /*
1819 * Validate version
1820 */
1821 if (version == 0x0) {
1822 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1823 "fixing up to 0x10. (tell your hw vendor)\n",
1824 version);
1825 version = 0x10;
1826 }
1827 apic_version[apicid] = version;
1828
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001829 if (num_processors >= NR_CPUS) {
1830 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001831 " Processor ignored.\n", NR_CPUS);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001832 return;
1833 }
1834
1835 num_processors++;
1836 cpus_complement(tmp_map, cpu_present_map);
1837 cpu = first_cpu(tmp_map);
1838
1839 physid_set(apicid, phys_cpu_present_map);
1840 if (apicid == boot_cpu_physical_apicid) {
1841 /*
1842 * x86_bios_cpu_apicid is required to have processors listed
1843 * in same order as logical cpu numbers. Hence the first
1844 * entry is BSP, and so on.
1845 */
1846 cpu = 0;
1847 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001848 if (apicid > max_physical_apicid)
1849 max_physical_apicid = apicid;
1850
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001851#ifdef CONFIG_X86_32
1852 /*
1853 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1854 * but we need to work other dependencies like SMP_SUSPEND etc
1855 * before this can be done without some confusion.
1856 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1857 * - Ashok Raj <ashok.raj@intel.com>
1858 */
1859 if (max_physical_apicid >= 8) {
1860 switch (boot_cpu_data.x86_vendor) {
1861 case X86_VENDOR_INTEL:
1862 if (!APIC_XAPIC(version)) {
1863 def_to_bigsmp = 0;
1864 break;
1865 }
1866 /* If P4 and above fall through */
1867 case X86_VENDOR_AMD:
1868 def_to_bigsmp = 1;
1869 }
1870 }
1871#endif
1872
1873#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001874 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001875 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1876 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1877 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001878
1879 cpu_to_apicid[cpu] = apicid;
1880 bios_cpu_apicid[cpu] = apicid;
1881 } else {
1882 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1883 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1884 }
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001885#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001886
1887 cpu_set(cpu, cpu_possible_map);
1888 cpu_set(cpu, cpu_present_map);
1889}
1890
Yinghai Lu34919982008-08-24 02:01:48 -07001891#ifdef CONFIG_X86_64
Suresh Siddha0c81c742008-07-10 11:16:48 -07001892int hard_smp_processor_id(void)
1893{
1894 return read_apic_id();
1895}
Yinghai Lu34919982008-08-24 02:01:48 -07001896#endif
Suresh Siddha0c81c742008-07-10 11:16:48 -07001897
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001898/*
1899 * Power management
1900 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901#ifdef CONFIG_PM
1902
1903static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001904 /*
1905 * 'active' is true if the local APIC was enabled by us and
1906 * not the BIOS; this signifies that we are also responsible
1907 * for disabling it before entering apm/acpi suspend
1908 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 int active;
1910 /* r/w apic fields */
1911 unsigned int apic_id;
1912 unsigned int apic_taskpri;
1913 unsigned int apic_ldr;
1914 unsigned int apic_dfr;
1915 unsigned int apic_spiv;
1916 unsigned int apic_lvtt;
1917 unsigned int apic_lvtpc;
1918 unsigned int apic_lvt0;
1919 unsigned int apic_lvt1;
1920 unsigned int apic_lvterr;
1921 unsigned int apic_tmict;
1922 unsigned int apic_tdcr;
1923 unsigned int apic_thmr;
1924} apic_pm_state;
1925
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001926static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001929 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 if (!apic_pm_state.active)
1932 return 0;
1933
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001934 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001935
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001936 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1938 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1939 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1940 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1941 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001942 if (maxlvt >= 4)
1943 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1945 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1946 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1947 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1948 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001949#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001950 if (maxlvt >= 5)
1951 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1952#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001953
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001954 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 disable_local_APIC();
1956 local_irq_restore(flags);
1957 return 0;
1958}
1959
1960static int lapic_resume(struct sys_device *dev)
1961{
1962 unsigned int l, h;
1963 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001964 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 if (!apic_pm_state.active)
1967 return 0;
1968
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001969 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001972
Yinghai Lu49899ea2008-08-24 02:01:47 -07001973#ifdef HAVE_X2APIC
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001974 if (x2apic)
1975 enable_x2apic();
1976 else
1977#endif
Yinghai Lud5e629a2008-08-17 21:12:27 -07001978 {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001979 /*
1980 * Make sure the APICBASE points to the right address
1981 *
1982 * FIXME! This will be wrong if we ever support suspend on
1983 * SMP! We'll need to do this as part of the CPU restore!
1984 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001985 rdmsr(MSR_IA32_APICBASE, l, h);
1986 l &= ~MSR_IA32_APICBASE_BASE;
1987 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1988 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07001989 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1992 apic_write(APIC_ID, apic_pm_state.apic_id);
1993 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1994 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1995 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1996 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1997 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1998 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001999#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002000 if (maxlvt >= 5)
2001 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2002#endif
2003 if (maxlvt >= 4)
2004 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2006 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2007 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2008 apic_write(APIC_ESR, 0);
2009 apic_read(APIC_ESR);
2010 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2011 apic_write(APIC_ESR, 0);
2012 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 return 0;
2017}
2018
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002019/*
2020 * This device has no shutdown method - fully functioning local APICs
2021 * are needed on every CPU up until machine_halt/restart/poweroff.
2022 */
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002025 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 .resume = lapic_resume,
2027 .suspend = lapic_suspend,
2028};
2029
2030static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002031 .id = 0,
2032 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033};
2034
Ashok Raje6982c62005-06-25 14:54:58 -07002035static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
2037 apic_pm_state.active = 1;
2038}
2039
2040static int __init init_lapic_sysfs(void)
2041{
2042 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if (!cpu_has_apic)
2045 return 0;
2046 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 error = sysdev_class_register(&lapic_sysclass);
2049 if (!error)
2050 error = sysdev_register(&device_lapic);
2051 return error;
2052}
2053device_initcall(init_lapic_sysfs);
2054
2055#else /* CONFIG_PM */
2056
2057static void apic_pm_activate(void) { }
2058
2059#endif /* CONFIG_PM */
2060
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002061#ifdef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002063 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 *
2065 * Thus far, the major user of this is IBM's Summit2 series:
2066 *
Linus Torvalds637029c2006-02-27 20:41:56 -08002067 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 * multi-chassis. Use available data to take a good guess.
2069 * If in doubt, go HPET.
2070 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002071__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 int i, clusters, zeros;
2074 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08002075 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
2077
Yinghai Lu322850a2008-02-23 21:48:42 -08002078 /*
2079 * there is not this kind of box with AMD CPU yet.
2080 * Some AMD box with quadcore cpu and 8 sockets apicid
2081 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08002082 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08002083 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002084 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08002085 return 0;
2086
Mike Travis23ca4bb2008-05-12 21:21:12 +02002087 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07002088 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002091 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01002092 if (bios_cpu_apicid) {
2093 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002094 }
2095 else if (i < nr_cpu_ids) {
2096 if (cpu_present(i))
2097 id = per_cpu(x86_bios_cpu_apicid, i);
2098 else
2099 continue;
2100 }
2101 else
2102 break;
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if (id != BAD_APICID)
2105 __set_bit(APIC_CLUSTERID(id), clustermap);
2106 }
2107
2108 /* Problem: Partially populated chassis may not have CPUs in some of
2109 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01002110 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
2111 * Since clusters are allocated sequentially, count zeros only if
2112 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 */
2114 clusters = 0;
2115 zeros = 0;
2116 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
2117 if (test_bit(i, clustermap)) {
2118 clusters += 1 + zeros;
2119 zeros = 0;
2120 } else
2121 ++zeros;
2122 }
2123
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002124 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
2125 * not guaranteed to be synced between boards
2126 */
2127 if (is_vsmp_box() && clusters > 1)
2128 return 1;
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002131 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 * May have to revisit this when multi-core + hyperthreaded CPUs come
2133 * out, but AFAIK this will work even for them.
2134 */
2135 return (clusters > 2);
2136}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002137#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002140 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002142static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002143{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002145 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002146 return 0;
2147}
2148early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002150/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002151static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002152{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002153 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002154}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002155early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002157static int __init parse_lapic_timer_c2_ok(char *arg)
2158{
2159 local_apic_timer_c2_ok = 1;
2160 return 0;
2161}
2162early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2163
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002164static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002165{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002167 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002168}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002169early_param("noapictimer", parse_disable_apic_timer);
2170
2171static int __init parse_nolapic_timer(char *arg)
2172{
2173 disable_apic_timer = 1;
2174 return 0;
2175}
2176early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002177
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002178static int __init apic_set_verbosity(char *arg)
2179{
2180 if (!arg) {
2181#ifdef CONFIG_X86_64
2182 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002183 return 0;
2184#endif
2185 return -EINVAL;
2186 }
2187
2188 if (strcmp("debug", arg) == 0)
2189 apic_verbosity = APIC_DEBUG;
2190 else if (strcmp("verbose", arg) == 0)
2191 apic_verbosity = APIC_VERBOSE;
2192 else {
2193 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
2194 " use apic=verbose or apic=debug\n", arg);
2195 return -EINVAL;
2196 }
2197
2198 return 0;
2199}
2200early_param("apic", apic_set_verbosity);
2201
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002202static int __init lapic_insert_resource(void)
2203{
2204 if (!apic_phys)
2205 return -1;
2206
2207 /* Put local APIC into the resource map. */
2208 lapic_resource.start = apic_phys;
2209 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2210 insert_resource(&iomem_resource, &lapic_resource);
2211
2212 return 0;
2213}
2214
2215/*
2216 * need call insert after e820_reserve_resources()
2217 * that is using request_resource
2218 */
2219late_initcall(lapic_insert_resource);