blob: 784116933c708e73e2091cc1091184846e3ba400 [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 Siddha13c88fb2008-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 Siddha13c88fb2008-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 Siddha13c88fb2008-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
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400541static int __init calibrate_by_pmtimer(long deltapm, long *delta)
542{
543 const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
544 const long pm_thresh = pm_100ms / 100;
545 unsigned long mult;
546 u64 res;
547
548#ifndef CONFIG_X86_PM_TIMER
549 return -1;
550#endif
551
552 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
553
554 /* Check, if the PM timer is available */
555 if (!deltapm)
556 return -1;
557
558 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
559
560 if (deltapm > (pm_100ms - pm_thresh) &&
561 deltapm < (pm_100ms + pm_thresh)) {
562 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
563 } else {
564 res = (((u64)deltapm) * mult) >> 22;
565 do_div(res, 1000000);
566 printk(KERN_WARNING "APIC calibration not consistent "
567 "with PM Timer: %ldms instead of 100ms\n",
568 (long)res);
569 /* Correct the lapic counter value */
570 res = (((u64)(*delta)) * pm_100ms);
571 do_div(res, deltapm);
572 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
573 "%lu (%ld)\n", (unsigned long)res, *delta);
574 *delta = (long)res;
575 }
576
577 return 0;
578}
579
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700580static int __init calibrate_APIC_clock(void)
581{
582 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700583 void (*real_handler)(struct clock_event_device *dev);
584 unsigned long deltaj;
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400585 long delta;
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700586 int pm_referenced = 0;
587
588 local_irq_disable();
589
590 /* Replace the global interrupt handler */
591 real_handler = global_clock_event->event_handler;
592 global_clock_event->event_handler = lapic_cal_handler;
593
594 /*
595 * Setup the APIC counter to 1e9. There is no way the lapic
596 * can underflow in the 100ms detection time frame
597 */
598 __setup_APIC_LVTT(1000000000, 0, 0);
599
600 /* Let the interrupts run */
601 local_irq_enable();
602
603 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
604 cpu_relax();
605
606 local_irq_disable();
607
608 /* Restore the real event handler */
609 global_clock_event->event_handler = real_handler;
610
611 /* Build delta t1-t2 as apic timer counts down */
612 delta = lapic_cal_t1 - lapic_cal_t2;
613 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
614
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400615 /* we trust the PM based calibration if possible */
616 pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
617 &delta);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700618
619 /* Calculate the scaled math multiplication factor */
620 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
621 lapic_clockevent.shift);
622 lapic_clockevent.max_delta_ns =
623 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
624 lapic_clockevent.min_delta_ns =
625 clockevent_delta2ns(0xF, &lapic_clockevent);
626
627 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
628
629 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
630 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
631 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
632 calibration_result);
633
634 if (cpu_has_tsc) {
635 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
636 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
637 "%ld.%04ld MHz.\n",
638 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
639 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
640 }
641
642 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
643 "%u.%04u MHz.\n",
644 calibration_result / (1000000 / HZ),
645 calibration_result % (1000000 / HZ));
646
647 /*
648 * Do a sanity check on the APIC calibration result
649 */
650 if (calibration_result < (1000000 / HZ)) {
651 local_irq_enable();
652 printk(KERN_WARNING
653 "APIC frequency too slow, disabling apic timer\n");
654 return -1;
655 }
656
657 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
658
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400659 /*
660 * PM timer calibration failed or not turned on
661 * so lets try APIC timer based calibration
662 */
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700663 if (!pm_referenced) {
664 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
665
666 /*
667 * Setup the apic timer manually
668 */
669 levt->event_handler = lapic_cal_handler;
670 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
671 lapic_cal_loops = -1;
672
673 /* Let the interrupts run */
674 local_irq_enable();
675
676 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
677 cpu_relax();
678
679 local_irq_disable();
680
681 /* Stop the lapic timer */
682 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
683
684 local_irq_enable();
685
686 /* Jiffies delta */
687 deltaj = lapic_cal_j2 - lapic_cal_j1;
688 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
689
690 /* Check, if the jiffies result is consistent */
691 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
692 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
693 else
694 levt->features |= CLOCK_EVT_FEAT_DUMMY;
695 } else
696 local_irq_enable();
697
698 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
699 printk(KERN_WARNING
700 "APIC timer disabled due to verification failure.\n");
701 return -1;
702 }
703
704 return 0;
705}
706
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100707/*
708 * Setup the boot APIC
709 *
710 * Calibrate and verify the result.
711 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100712void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100714 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400715 * The local apic timer can be disabled via the kernel
716 * commandline or from the CPU detection code. Register the lapic
717 * timer as a dummy clock event source on SMP systems, so the
718 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100719 */
720 if (disable_apic_timer) {
721 printk(KERN_INFO "Disabling APIC timer\n");
722 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100723 if (num_possible_cpus() > 1) {
724 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100725 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100726 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100727 return;
728 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200729
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400730 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
731 "calibrating APIC timer ...\n");
732
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400733 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100734 /* No broadcast on UP ! */
735 if (num_possible_cpus() > 1)
736 setup_APIC_timer();
737 return;
738 }
739
740 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100741 * If nmi_watchdog is set to IO_APIC, we need the
742 * PIT/HPET going. Otherwise register lapic as a dummy
743 * device.
744 */
745 if (nmi_watchdog != NMI_IO_APIC)
746 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
747 else
748 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200749 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100750
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400751 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100752 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100755void __cpuinit setup_secondary_APIC_clock(void)
756{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100757 setup_APIC_timer();
758}
759
760/*
761 * The guts of the apic timer interrupt
762 */
763static void local_apic_timer_interrupt(void)
764{
765 int cpu = smp_processor_id();
766 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
767
768 /*
769 * Normally we should not be here till LAPIC has been initialized but
770 * in some cases like kdump, its possible that there is a pending LAPIC
771 * timer interrupt from previous kernel's context and is delivered in
772 * new kernel the moment interrupts are enabled.
773 *
774 * Interrupts are enabled early and LAPIC is setup much later, hence
775 * its possible that when we get here evt->event_handler is NULL.
776 * Check for event_handler being NULL and discard the interrupt as
777 * spurious.
778 */
779 if (!evt->event_handler) {
780 printk(KERN_WARNING
781 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
782 /* Switch it off */
783 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
784 return;
785 }
786
787 /*
788 * the NMI deadlock-detector uses this.
789 */
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400790#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100791 add_pda(apic_timer_irqs, 1);
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400792#else
793 per_cpu(irq_stat, cpu).apic_timer_irqs++;
794#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100795
796 evt->event_handler(evt);
797}
798
799/*
800 * Local APIC timer interrupt. This is the most natural way for doing
801 * local interrupts, but local timer interrupts can be emulated by
802 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
803 *
804 * [ if a single-CPU system runs an SMP kernel then we call the local
805 * interrupt as well. Thus we cannot inline the local irq ... ]
806 */
807void smp_apic_timer_interrupt(struct pt_regs *regs)
808{
809 struct pt_regs *old_regs = set_irq_regs(regs);
810
811 /*
812 * NOTE! We'd better ACK the irq immediately,
813 * because timer handling can be slow.
814 */
815 ack_APIC_irq();
816 /*
817 * update_process_times() expects us to have done irq_enter().
818 * Besides, if we don't timer interrupts ignore the global
819 * interrupt lock, which is the WrongThing (tm) to do.
820 */
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700821#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100822 exit_idle();
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700823#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100824 irq_enter();
825 local_apic_timer_interrupt();
826 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400827
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100828 set_irq_regs(old_regs);
829}
830
831int setup_profiling_timer(unsigned int multiplier)
832{
833 return -EINVAL;
834}
835
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100836/*
837 * Local APIC start and shutdown
838 */
839
840/**
841 * clear_local_APIC - shutdown the local APIC
842 *
843 * This is called, when a CPU is disabled and before rebooting, so the state of
844 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
845 * leftovers during boot.
846 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847void clear_local_APIC(void)
848{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400849 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100850 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Andi Kleend3432892008-01-30 13:33:17 +0100852 /* APIC hasn't been mapped yet */
853 if (!apic_phys)
854 return;
855
856 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200858 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 * if the vector is zero. Mask LVTERR first to prevent this.
860 */
861 if (maxlvt >= 3) {
862 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100863 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
865 /*
866 * Careful: we have to set masks only first to deassert
867 * any level-triggered sources.
868 */
869 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100870 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100872 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100874 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (maxlvt >= 4) {
876 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100877 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400880 /* lets not touch this if we didn't frob it */
881#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
882 if (maxlvt >= 5) {
883 v = apic_read(APIC_LVTTHMR);
884 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
885 }
886#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /*
888 * Clean APIC state for other OSs:
889 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100890 apic_write(APIC_LVTT, APIC_LVT_MASKED);
891 apic_write(APIC_LVT0, APIC_LVT_MASKED);
892 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100894 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100896 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400897
898 /* Integrated APIC (!82489DX) ? */
899 if (lapic_is_integrated()) {
900 if (maxlvt > 3)
901 /* Clear ESR due to Pentium errata 3AP and 11AP */
902 apic_write(APIC_ESR, 0);
903 apic_read(APIC_ESR);
904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100907/**
908 * disable_local_APIC - clear and disable the local APIC
909 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910void disable_local_APIC(void)
911{
912 unsigned int value;
913
914 clear_local_APIC();
915
916 /*
917 * Disable APIC (implies clearing of registers
918 * for 82489DX!).
919 */
920 value = apic_read(APIC_SPIV);
921 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100922 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400923
924#ifdef CONFIG_X86_32
925 /*
926 * When LAPIC was disabled by the BIOS and enabled by the kernel,
927 * restore the disabled state.
928 */
929 if (enabled_via_apicbase) {
930 unsigned int l, h;
931
932 rdmsr(MSR_IA32_APICBASE, l, h);
933 l &= ~MSR_IA32_APICBASE_ENABLE;
934 wrmsr(MSR_IA32_APICBASE, l, h);
935 }
936#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400939/*
940 * If Linux enabled the LAPIC against the BIOS default disable it down before
941 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
942 * not power-off. Additionally clear all LVT entries before disable_local_APIC
943 * for the case where Linux didn't enable the LAPIC.
944 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700945void lapic_shutdown(void)
946{
947 unsigned long flags;
948
949 if (!cpu_has_apic)
950 return;
951
952 local_irq_save(flags);
953
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400954#ifdef CONFIG_X86_32
955 if (!enabled_via_apicbase)
956 clear_local_APIC();
957 else
958#endif
959 disable_local_APIC();
960
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700961
962 local_irq_restore(flags);
963}
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965/*
966 * This is to verify that we're looking at a real local APIC.
967 * Check these against your board if the CPUs aren't getting
968 * started for no apparent reason.
969 */
970int __init verify_local_APIC(void)
971{
972 unsigned int reg0, reg1;
973
974 /*
975 * The version register is read-only in a real APIC.
976 */
977 reg0 = apic_read(APIC_LVR);
978 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
979 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
980 reg1 = apic_read(APIC_LVR);
981 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
982
983 /*
984 * The two version reads above should print the same
985 * numbers. If the second one is different, then we
986 * poke at a non-APIC.
987 */
988 if (reg1 != reg0)
989 return 0;
990
991 /*
992 * Check if the version looks reasonably.
993 */
994 reg1 = GET_APIC_VERSION(reg0);
995 if (reg1 == 0x00 || reg1 == 0xff)
996 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100997 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (reg1 < 0x02 || reg1 == 0xff)
999 return 0;
1000
1001 /*
1002 * The ID register is read/write in a real APIC.
1003 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001004 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
1006 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001007 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
1009 apic_write(APIC_ID, reg0);
1010 if (reg1 != (reg0 ^ APIC_ID_MASK))
1011 return 0;
1012
1013 /*
1014 * The next two are just to see if we have sane values.
1015 * They're only really relevant if we're in Virtual Wire
1016 * compatibility mode, but most boxes are anymore.
1017 */
1018 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001019 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 reg1 = apic_read(APIC_LVT1);
1021 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
1022
1023 return 1;
1024}
1025
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001026/**
1027 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029void __init sync_Arb_IDs(void)
1030{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +02001031 /*
1032 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1033 * needed on AMD.
1034 */
1035 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return;
1037
1038 /*
1039 * Wait for idle.
1040 */
1041 apic_wait_icr_idle();
1042
1043 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +04001044 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1045 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048/*
1049 * An initial setup of the virtual wire mode.
1050 */
1051void __init init_bsp_APIC(void)
1052{
Andi Kleen11a8e772006-01-11 22:46:51 +01001053 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 /*
1056 * Don't do the setup now if we have a SMP BIOS as the
1057 * through-I/O-APIC virtual wire mode might be active.
1058 */
1059 if (smp_found_config || !cpu_has_apic)
1060 return;
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 /*
1063 * Do not trust the local APIC being empty at bootup.
1064 */
1065 clear_local_APIC();
1066
1067 /*
1068 * Enable APIC.
1069 */
1070 value = apic_read(APIC_SPIV);
1071 value &= ~APIC_VECTOR_MASK;
1072 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001073
1074#ifdef CONFIG_X86_32
1075 /* This bit is reserved on P4/Xeon and should be cleared */
1076 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1077 (boot_cpu_data.x86 == 15))
1078 value &= ~APIC_SPIV_FOCUS_DISABLED;
1079 else
1080#endif
1081 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001083 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 /*
1086 * Set up the virtual wire mode.
1087 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001088 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001090 if (!lapic_is_integrated()) /* 82489DX */
1091 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001092 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001095static void __cpuinit lapic_setup_esr(void)
1096{
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001097 unsigned int oldvalue, value, maxlvt;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001098
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001099 if (!lapic_is_integrated()) {
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001100 printk(KERN_INFO "No ESR for 82489DX.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001101 return;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001102 }
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001103
1104 if (esr_disable) {
1105 /*
1106 * Something untraceable is creating bad interrupts on
1107 * secondary quads ... for the moment, just leave the
1108 * ESR disabled - we can't do anything useful with the
1109 * errors anyway - mbligh
1110 */
1111 printk(KERN_INFO "Leaving ESR disabled.\n");
1112 return;
1113 }
1114
1115 maxlvt = lapic_get_maxlvt();
1116 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1117 apic_write(APIC_ESR, 0);
1118 oldvalue = apic_read(APIC_ESR);
1119
1120 /* enables sending errors */
1121 value = ERROR_APIC_VECTOR;
1122 apic_write(APIC_LVTERR, value);
1123
1124 /*
1125 * spec says clear errors after enabling vector.
1126 */
1127 if (maxlvt > 3)
1128 apic_write(APIC_ESR, 0);
1129 value = apic_read(APIC_ESR);
1130 if (value != oldvalue)
1131 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1132 "vector: 0x%08x after: 0x%08x\n",
1133 oldvalue, value);
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001134}
1135
1136
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001137/**
1138 * setup_local_APIC - setup the local APIC
1139 */
1140void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
Andi Kleen739f33b2008-01-30 13:30:40 +01001142 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001143 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001145#ifdef CONFIG_X86_32
1146 /* Pound the ESR really hard over the head with a big hammer - mbligh */
Cyrill Gorcunov08ad7762008-09-14 11:55:38 +04001147 if (lapic_is_integrated() && esr_disable) {
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001148 apic_write(APIC_ESR, 0);
1149 apic_write(APIC_ESR, 0);
1150 apic_write(APIC_ESR, 0);
1151 apic_write(APIC_ESR, 0);
1152 }
1153#endif
1154
Jack Steinerac23d4e2008-03-28 14:12:16 -05001155 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /*
1158 * Double-check whether this APIC is really registered.
1159 * This is meaningless in clustered apic mode, so we skip it.
1160 */
1161 if (!apic_id_registered())
1162 BUG();
1163
1164 /*
1165 * Intel recommends to set DFR, LDR and TPR before enabling
1166 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1167 * document number 292116). So here it goes...
1168 */
1169 init_apic_ldr();
1170
1171 /*
1172 * Set Task Priority to 'accept all'. We never change this
1173 * later on.
1174 */
1175 value = apic_read(APIC_TASKPRI);
1176 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001177 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001180 * After a crash, we no longer service the interrupts and a pending
1181 * interrupt from previous kernel might still have ISR bit set.
1182 *
1183 * Most probably by now CPU has serviced that pending interrupt and
1184 * it might not have done the ack_APIC_irq() because it thought,
1185 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1186 * does not clear the ISR bit and cpu thinks it has already serivced
1187 * the interrupt. Hence a vector might get locked. It was noticed
1188 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1189 */
1190 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1191 value = apic_read(APIC_ISR + i*0x10);
1192 for (j = 31; j >= 0; j--) {
1193 if (value & (1<<j))
1194 ack_APIC_irq();
1195 }
1196 }
1197
1198 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 * Now that we are all set up, enable the APIC
1200 */
1201 value = apic_read(APIC_SPIV);
1202 value &= ~APIC_VECTOR_MASK;
1203 /*
1204 * Enable APIC
1205 */
1206 value |= APIC_SPIV_APIC_ENABLED;
1207
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001208#ifdef CONFIG_X86_32
1209 /*
1210 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1211 * certain networking cards. If high frequency interrupts are
1212 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1213 * entry is masked/unmasked at a high rate as well then sooner or
1214 * later IOAPIC line gets 'stuck', no more interrupts are received
1215 * from the device. If focus CPU is disabled then the hang goes
1216 * away, oh well :-(
1217 *
1218 * [ This bug can be reproduced easily with a level-triggered
1219 * PCI Ne2000 networking cards and PII/PIII processors, dual
1220 * BX chipset. ]
1221 */
1222 /*
1223 * Actually disabling the focus CPU check just makes the hang less
1224 * frequent as it makes the interrupt distributon model be more
1225 * like LRU than MRU (the short-term load is more even across CPUs).
1226 * See also the comment in end_level_ioapic_irq(). --macro
1227 */
1228
1229 /*
1230 * - enable focus processor (bit==0)
1231 * - 64bit mode always use processor focus
1232 * so no need to set it
1233 */
1234 value &= ~APIC_SPIV_FOCUS_DISABLED;
1235#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /*
1238 * Set spurious IRQ vector
1239 */
1240 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001241 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 /*
1244 * Set up LVT0, LVT1:
1245 *
1246 * set up through-local-APIC on the BP's LINT0. This is not
1247 * strictly necessary in pure symmetric-IO mode, but sometimes
1248 * we delegate interrupts to the 8259A.
1249 */
1250 /*
1251 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1252 */
1253 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001254 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001256 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001257 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 } else {
1259 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001260 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001261 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001263 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 /*
1266 * only the BP should see the LINT1 NMI signal, obviously.
1267 */
1268 if (!smp_processor_id())
1269 value = APIC_DM_NMI;
1270 else
1271 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001272 if (!lapic_is_integrated()) /* 82489DX */
1273 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001274 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001275
Jack Steinerac23d4e2008-03-28 14:12:16 -05001276 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +01001277}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Andi Kleen739f33b2008-01-30 13:30:40 +01001279void __cpuinit end_local_APIC_setup(void)
1280{
1281 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001282
1283#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001284 {
1285 unsigned int value;
1286 /* Disable the local apic timer */
1287 value = apic_read(APIC_LVTT);
1288 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1289 apic_write(APIC_LVTT, value);
1290 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001291#endif
1292
Don Zickusf2802e72006-09-26 10:52:26 +02001293 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 apic_pm_activate();
1295}
1296
Yinghai Lu49899ea2008-08-24 02:01:47 -07001297#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001298void check_x2apic(void)
1299{
1300 int msr, msr2;
1301
1302 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1303
1304 if (msr & X2APIC_ENABLE) {
1305 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
1306 x2apic_preenabled = x2apic = 1;
1307 apic_ops = &x2apic_ops;
1308 }
1309}
1310
1311void enable_x2apic(void)
1312{
1313 int msr, msr2;
1314
1315 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1316 if (!(msr & X2APIC_ENABLE)) {
1317 printk("Enabling x2apic\n");
1318 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1319 }
1320}
1321
1322void enable_IR_x2apic(void)
1323{
1324#ifdef CONFIG_INTR_REMAP
1325 int ret;
1326 unsigned long flags;
1327
1328 if (!cpu_has_x2apic)
1329 return;
1330
1331 if (!x2apic_preenabled && disable_x2apic) {
1332 printk(KERN_INFO
1333 "Skipped enabling x2apic and Interrupt-remapping "
1334 "because of nox2apic\n");
1335 return;
1336 }
1337
1338 if (x2apic_preenabled && disable_x2apic)
1339 panic("Bios already enabled x2apic, can't enforce nox2apic");
1340
1341 if (!x2apic_preenabled && skip_ioapic_setup) {
1342 printk(KERN_INFO
1343 "Skipped enabling x2apic and Interrupt-remapping "
1344 "because of skipping io-apic setup\n");
1345 return;
1346 }
1347
1348 ret = dmar_table_init();
1349 if (ret) {
1350 printk(KERN_INFO
1351 "dmar_table_init() failed with %d:\n", ret);
1352
1353 if (x2apic_preenabled)
1354 panic("x2apic enabled by bios. But IR enabling failed");
1355 else
1356 printk(KERN_INFO
1357 "Not enabling x2apic,Intr-remapping\n");
1358 return;
1359 }
1360
1361 local_irq_save(flags);
1362 mask_8259A();
1363 save_mask_IO_APIC_setup();
1364
1365 ret = enable_intr_remapping(1);
1366
1367 if (ret && x2apic_preenabled) {
1368 local_irq_restore(flags);
1369 panic("x2apic enabled by bios. But IR enabling failed");
1370 }
1371
1372 if (ret)
1373 goto end;
1374
1375 if (!x2apic) {
1376 x2apic = 1;
1377 apic_ops = &x2apic_ops;
1378 enable_x2apic();
1379 }
1380end:
1381 if (ret)
1382 /*
1383 * IR enabling failed
1384 */
1385 restore_IO_APIC_setup();
1386 else
1387 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1388
1389 unmask_8259A();
1390 local_irq_restore(flags);
1391
1392 if (!ret) {
1393 if (!x2apic_preenabled)
1394 printk(KERN_INFO
1395 "Enabled x2apic and interrupt-remapping\n");
1396 else
1397 printk(KERN_INFO
1398 "Enabled Interrupt-remapping\n");
1399 } else
1400 printk(KERN_ERR
1401 "Failed to enable Interrupt-remapping and x2apic\n");
1402#else
1403 if (!cpu_has_x2apic)
1404 return;
1405
1406 if (x2apic_preenabled)
1407 panic("x2apic enabled prior OS handover,"
1408 " enable CONFIG_INTR_REMAP");
1409
1410 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1411 " and x2apic\n");
1412#endif
1413
1414 return;
1415}
Yinghai Lu49899ea2008-08-24 02:01:47 -07001416#endif /* HAVE_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001417
Yinghai Lube7a6562008-08-24 02:01:51 -07001418#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001419/*
1420 * Detect and enable local APICs on non-SMP boards.
1421 * Original code written by Keir Fraser.
1422 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1423 * not correctly set up (usually the APIC timer won't work etc.)
1424 */
1425static int __init detect_init_APIC(void)
1426{
1427 if (!cpu_has_apic) {
1428 printk(KERN_INFO "No local APIC present\n");
1429 return -1;
1430 }
1431
1432 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001433 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001434 return 0;
1435}
Yinghai Lube7a6562008-08-24 02:01:51 -07001436#else
1437/*
1438 * Detect and initialize APIC
1439 */
1440static int __init detect_init_APIC(void)
1441{
1442 u32 h, l, features;
1443
1444 /* Disabled by kernel option? */
1445 if (disable_apic)
1446 return -1;
1447
1448 switch (boot_cpu_data.x86_vendor) {
1449 case X86_VENDOR_AMD:
1450 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1451 (boot_cpu_data.x86 == 15))
1452 break;
1453 goto no_apic;
1454 case X86_VENDOR_INTEL:
1455 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1456 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1457 break;
1458 goto no_apic;
1459 default:
1460 goto no_apic;
1461 }
1462
1463 if (!cpu_has_apic) {
1464 /*
1465 * Over-ride BIOS and try to enable the local APIC only if
1466 * "lapic" specified.
1467 */
1468 if (!force_enable_local_apic) {
1469 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1470 "you can enable it with \"lapic\"\n");
1471 return -1;
1472 }
1473 /*
1474 * Some BIOSes disable the local APIC in the APIC_BASE
1475 * MSR. This can only be done in software for Intel P6 or later
1476 * and AMD K7 (Model > 1) or later.
1477 */
1478 rdmsr(MSR_IA32_APICBASE, l, h);
1479 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1480 printk(KERN_INFO
1481 "Local APIC disabled by BIOS -- reenabling.\n");
1482 l &= ~MSR_IA32_APICBASE_BASE;
1483 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1484 wrmsr(MSR_IA32_APICBASE, l, h);
1485 enabled_via_apicbase = 1;
1486 }
1487 }
1488 /*
1489 * The APIC feature bit should now be enabled
1490 * in `cpuid'
1491 */
1492 features = cpuid_edx(1);
1493 if (!(features & (1 << X86_FEATURE_APIC))) {
1494 printk(KERN_WARNING "Could not enable APIC!\n");
1495 return -1;
1496 }
1497 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1498 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1499
1500 /* The BIOS may have set up the APIC at some other address */
1501 rdmsr(MSR_IA32_APICBASE, l, h);
1502 if (l & MSR_IA32_APICBASE_ENABLE)
1503 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1504
1505 printk(KERN_INFO "Found and enabled local APIC!\n");
1506
1507 apic_pm_activate();
1508
1509 return 0;
1510
1511no_apic:
1512 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1513 return -1;
1514}
1515#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001516
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001517#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001518void __init early_init_lapic_mapping(void)
1519{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001520 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001521
1522 /*
1523 * If no local APIC can be found then go out
1524 * : it means there is no mpatable and MADT
1525 */
1526 if (!smp_found_config)
1527 return;
1528
Thomas Gleixner431ee792008-05-12 15:43:35 +02001529 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001530
Thomas Gleixner431ee792008-05-12 15:43:35 +02001531 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001532 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001533 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001534
1535 /*
1536 * Fetch the APIC ID of the BSP in case we have a
1537 * default configuration (or the MP table is broken).
1538 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001539 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001540}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001541#endif
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001542
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001543/**
1544 * init_apic_mappings - initialize APIC mappings
1545 */
1546void __init init_apic_mappings(void)
1547{
Yinghai Lu49899ea2008-08-24 02:01:47 -07001548#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001549 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001550 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001551 return;
1552 }
Yinghai Lu49899ea2008-08-24 02:01:47 -07001553#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001554
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001555 /*
1556 * If no local APIC can be found then set up a fake all
1557 * zeroes page to simulate the local APIC and another
1558 * one for the IO-APIC.
1559 */
1560 if (!smp_found_config && detect_init_APIC()) {
1561 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1562 apic_phys = __pa(apic_phys);
1563 } else
1564 apic_phys = mp_lapic_addr;
1565
1566 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
Yinghai Lu79c09692008-09-07 17:58:57 -07001567 apic_printk(APIC_VERBOSE, "mapped APIC to %08lx (%08lx)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001568 APIC_BASE, apic_phys);
1569
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001570 /*
1571 * Fetch the APIC ID of the BSP in case we have a
1572 * default configuration (or the MP table is broken).
1573 */
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001574 if (boot_cpu_physical_apicid == -1U)
1575 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001576}
1577
1578/*
1579 * This initializes the IO-APIC and APIC hardware if this is
1580 * a UP kernel.
1581 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001582int apic_version[MAX_APICS];
1583
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001584int __init APIC_init_uniprocessor(void)
1585{
Yinghai Lufa2bd352008-08-24 02:01:50 -07001586#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001587 if (disable_apic) {
1588 printk(KERN_INFO "Apic disabled\n");
1589 return -1;
1590 }
1591 if (!cpu_has_apic) {
1592 disable_apic = 1;
1593 printk(KERN_INFO "Apic disabled by BIOS\n");
1594 return -1;
1595 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001596#else
1597 if (!smp_found_config && !cpu_has_apic)
1598 return -1;
1599
1600 /*
1601 * Complain if the BIOS pretends there is one.
1602 */
1603 if (!cpu_has_apic &&
1604 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Yinghai Lu823b2592008-09-10 21:56:46 -07001605 printk(KERN_ERR "BIOS bug, local APIC 0x%x not detected!...\n",
Yinghai Lufa2bd352008-08-24 02:01:50 -07001606 boot_cpu_physical_apicid);
1607 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1608 return -1;
1609 }
1610#endif
1611
Yinghai Lu49899ea2008-08-24 02:01:47 -07001612#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001613 enable_IR_x2apic();
Yinghai Lu49899ea2008-08-24 02:01:47 -07001614#endif
Yinghai Lufa2bd352008-08-24 02:01:50 -07001615#ifdef CONFIG_X86_64
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001616 setup_apic_routing();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001617#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001618
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001619 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001620 connect_bsp_APIC();
1621
Yinghai Lufa2bd352008-08-24 02:01:50 -07001622#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001623 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001624#else
1625 /*
1626 * Hack: In case of kdump, after a crash, kernel might be booting
1627 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1628 * might be zero if read from MP tables. Get it from LAPIC.
1629 */
1630# ifdef CONFIG_CRASH_DUMP
1631 boot_cpu_physical_apicid = read_apic_id();
1632# endif
1633#endif
1634 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001635 setup_local_APIC();
1636
Yinghai Lufa2bd352008-08-24 02:01:50 -07001637#ifdef CONFIG_X86_64
Andi Kleen739f33b2008-01-30 13:30:40 +01001638 /*
1639 * Now enable IO-APICs, actually call clear_IO_APIC
1640 * We need clear_IO_APIC before enabling vector on BP
1641 */
1642 if (!skip_ioapic_setup && nr_ioapics)
1643 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001644#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001645
Yinghai Lufa2bd352008-08-24 02:01:50 -07001646#ifdef CONFIG_X86_IO_APIC
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001647 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
Yinghai Lufa2bd352008-08-24 02:01:50 -07001648#endif
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001649 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +01001650 end_local_APIC_setup();
1651
Yinghai Lufa2bd352008-08-24 02:01:50 -07001652#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001653 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1654 setup_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001655# ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001656 else
1657 nr_ioapics = 0;
Yinghai Lufa2bd352008-08-24 02:01:50 -07001658# endif
1659#endif
1660
1661#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001662 setup_boot_APIC_clock();
1663 check_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001664#else
1665 setup_boot_clock();
1666#endif
1667
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001668 return 0;
1669}
1670
1671/*
1672 * Local APIC interrupts
1673 */
1674
1675/*
1676 * This interrupt should _never_ happen with our APIC/SMP architecture
1677 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001678void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001679{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001680 u32 v;
1681
1682#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001683 exit_idle();
Yinghai Ludc1528d2008-08-24 02:01:53 -07001684#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001685 irq_enter();
1686 /*
1687 * Check if this really is a spurious interrupt and ACK it
1688 * if it is a vectored one. Just in case...
1689 * Spurious interrupts should not be ACKed.
1690 */
1691 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1692 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1693 ack_APIC_irq();
1694
Yinghai Ludc1528d2008-08-24 02:01:53 -07001695#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001696 add_pda(irq_spurious_count, 1);
Yinghai Ludc1528d2008-08-24 02:01:53 -07001697#else
1698 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1699 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1700 "should never happen.\n", smp_processor_id());
1701 __get_cpu_var(irq_stat).irq_spurious_count++;
1702#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001703 irq_exit();
1704}
1705
1706/*
1707 * This interrupt should never happen with our APIC/SMP architecture
1708 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001709void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001710{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001711 u32 v, v1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001712
Yinghai Ludc1528d2008-08-24 02:01:53 -07001713#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001714 exit_idle();
Yinghai Ludc1528d2008-08-24 02:01:53 -07001715#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001716 irq_enter();
1717 /* First tickle the hardware, only then report what went on. -- REW */
1718 v = apic_read(APIC_ESR);
1719 apic_write(APIC_ESR, 0);
1720 v1 = apic_read(APIC_ESR);
1721 ack_APIC_irq();
1722 atomic_inc(&irq_err_count);
1723
1724 /* Here is what the APIC error bits mean:
1725 0: Send CS error
1726 1: Receive CS error
1727 2: Send accept error
1728 3: Receive accept error
1729 4: Reserved
1730 5: Send illegal vector
1731 6: Received illegal vector
1732 7: Illegal register address
1733 */
1734 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1735 smp_processor_id(), v , v1);
1736 irq_exit();
1737}
1738
Glauber Costab5841762008-05-28 13:38:28 -03001739/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001740 * connect_bsp_APIC - attach the APIC to the interrupt system
1741 */
Glauber Costab5841762008-05-28 13:38:28 -03001742void __init connect_bsp_APIC(void)
1743{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001744#ifdef CONFIG_X86_32
1745 if (pic_mode) {
1746 /*
1747 * Do not trust the local APIC being empty at bootup.
1748 */
1749 clear_local_APIC();
1750 /*
1751 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1752 * local APIC to INT and NMI lines.
1753 */
1754 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1755 "enabling APIC mode.\n");
1756 outb(0x70, 0x22);
1757 outb(0x01, 0x23);
1758 }
1759#endif
Glauber Costab5841762008-05-28 13:38:28 -03001760 enable_apic_mode();
1761}
1762
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001763/**
1764 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1765 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1766 *
1767 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1768 * APIC is disabled.
1769 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001770void disconnect_bsp_APIC(int virt_wire_setup)
1771{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001772 unsigned int value;
1773
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001774#ifdef CONFIG_X86_32
1775 if (pic_mode) {
1776 /*
1777 * Put the board back into PIC mode (has an effect only on
1778 * certain older boards). Note that APIC interrupts, including
1779 * IPIs, won't work beyond this point! The only exception are
1780 * INIT IPIs.
1781 */
1782 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1783 "entering PIC mode.\n");
1784 outb(0x70, 0x22);
1785 outb(0x00, 0x23);
1786 return;
1787 }
1788#endif
1789
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001790 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001791
1792 /* For the spurious interrupt use vector F, and enable it */
1793 value = apic_read(APIC_SPIV);
1794 value &= ~APIC_VECTOR_MASK;
1795 value |= APIC_SPIV_APIC_ENABLED;
1796 value |= 0xf;
1797 apic_write(APIC_SPIV, value);
1798
1799 if (!virt_wire_setup) {
1800 /*
1801 * For LVT0 make it edge triggered, active high,
1802 * external and enabled
1803 */
1804 value = apic_read(APIC_LVT0);
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_EXTINT);
1810 apic_write(APIC_LVT0, value);
1811 } else {
1812 /* Disable LVT0 */
1813 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1814 }
1815
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001816 /*
1817 * For LVT1 make it edge triggered, active high,
1818 * nmi and enabled
1819 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001820 value = apic_read(APIC_LVT1);
1821 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1822 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1823 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1824 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1825 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1826 apic_write(APIC_LVT1, value);
1827}
1828
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001829void __cpuinit generic_processor_info(int apicid, int version)
1830{
1831 int cpu;
1832 cpumask_t tmp_map;
1833
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001834 /*
1835 * Validate version
1836 */
1837 if (version == 0x0) {
1838 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1839 "fixing up to 0x10. (tell your hw vendor)\n",
1840 version);
1841 version = 0x10;
1842 }
1843 apic_version[apicid] = version;
1844
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001845 if (num_processors >= NR_CPUS) {
1846 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001847 " Processor ignored.\n", NR_CPUS);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001848 return;
1849 }
1850
1851 num_processors++;
1852 cpus_complement(tmp_map, cpu_present_map);
1853 cpu = first_cpu(tmp_map);
1854
1855 physid_set(apicid, phys_cpu_present_map);
1856 if (apicid == boot_cpu_physical_apicid) {
1857 /*
1858 * x86_bios_cpu_apicid is required to have processors listed
1859 * in same order as logical cpu numbers. Hence the first
1860 * entry is BSP, and so on.
1861 */
1862 cpu = 0;
1863 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001864 if (apicid > max_physical_apicid)
1865 max_physical_apicid = apicid;
1866
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001867#ifdef CONFIG_X86_32
1868 /*
1869 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1870 * but we need to work other dependencies like SMP_SUSPEND etc
1871 * before this can be done without some confusion.
1872 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1873 * - Ashok Raj <ashok.raj@intel.com>
1874 */
1875 if (max_physical_apicid >= 8) {
1876 switch (boot_cpu_data.x86_vendor) {
1877 case X86_VENDOR_INTEL:
1878 if (!APIC_XAPIC(version)) {
1879 def_to_bigsmp = 0;
1880 break;
1881 }
1882 /* If P4 and above fall through */
1883 case X86_VENDOR_AMD:
1884 def_to_bigsmp = 1;
1885 }
1886 }
1887#endif
1888
1889#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001890 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001891 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1892 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1893 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001894
1895 cpu_to_apicid[cpu] = apicid;
1896 bios_cpu_apicid[cpu] = apicid;
1897 } else {
1898 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1899 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1900 }
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001901#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001902
1903 cpu_set(cpu, cpu_possible_map);
1904 cpu_set(cpu, cpu_present_map);
1905}
1906
Yinghai Lu34919982008-08-24 02:01:48 -07001907#ifdef CONFIG_X86_64
Suresh Siddha0c81c742008-07-10 11:16:48 -07001908int hard_smp_processor_id(void)
1909{
1910 return read_apic_id();
1911}
Yinghai Lu34919982008-08-24 02:01:48 -07001912#endif
Suresh Siddha0c81c742008-07-10 11:16:48 -07001913
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001914/*
1915 * Power management
1916 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917#ifdef CONFIG_PM
1918
1919static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001920 /*
1921 * 'active' is true if the local APIC was enabled by us and
1922 * not the BIOS; this signifies that we are also responsible
1923 * for disabling it before entering apm/acpi suspend
1924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 int active;
1926 /* r/w apic fields */
1927 unsigned int apic_id;
1928 unsigned int apic_taskpri;
1929 unsigned int apic_ldr;
1930 unsigned int apic_dfr;
1931 unsigned int apic_spiv;
1932 unsigned int apic_lvtt;
1933 unsigned int apic_lvtpc;
1934 unsigned int apic_lvt0;
1935 unsigned int apic_lvt1;
1936 unsigned int apic_lvterr;
1937 unsigned int apic_tmict;
1938 unsigned int apic_tdcr;
1939 unsigned int apic_thmr;
1940} apic_pm_state;
1941
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001942static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
1944 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001945 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 if (!apic_pm_state.active)
1948 return 0;
1949
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001950 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001951
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001952 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1954 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1955 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1956 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1957 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001958 if (maxlvt >= 4)
1959 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1961 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1962 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1963 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1964 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001965#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001966 if (maxlvt >= 5)
1967 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1968#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001969
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001970 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 disable_local_APIC();
1972 local_irq_restore(flags);
1973 return 0;
1974}
1975
1976static int lapic_resume(struct sys_device *dev)
1977{
1978 unsigned int l, h;
1979 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001980 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 if (!apic_pm_state.active)
1983 return 0;
1984
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001985 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001988
Yinghai Lu49899ea2008-08-24 02:01:47 -07001989#ifdef HAVE_X2APIC
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001990 if (x2apic)
1991 enable_x2apic();
1992 else
1993#endif
Yinghai Lud5e629a2008-08-17 21:12:27 -07001994 {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001995 /*
1996 * Make sure the APICBASE points to the right address
1997 *
1998 * FIXME! This will be wrong if we ever support suspend on
1999 * SMP! We'll need to do this as part of the CPU restore!
2000 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002001 rdmsr(MSR_IA32_APICBASE, l, h);
2002 l &= ~MSR_IA32_APICBASE_BASE;
2003 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2004 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07002005 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2008 apic_write(APIC_ID, apic_pm_state.apic_id);
2009 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2010 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2011 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2012 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2013 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2014 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002015#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01002016 if (maxlvt >= 5)
2017 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2018#endif
2019 if (maxlvt >= 4)
2020 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2022 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2023 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2024 apic_write(APIC_ESR, 0);
2025 apic_read(APIC_ESR);
2026 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2027 apic_write(APIC_ESR, 0);
2028 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return 0;
2033}
2034
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002035/*
2036 * This device has no shutdown method - fully functioning local APICs
2037 * are needed on every CPU up until machine_halt/restart/poweroff.
2038 */
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002041 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 .resume = lapic_resume,
2043 .suspend = lapic_suspend,
2044};
2045
2046static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002047 .id = 0,
2048 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049};
2050
Ashok Raje6982c62005-06-25 14:54:58 -07002051static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
2053 apic_pm_state.active = 1;
2054}
2055
2056static int __init init_lapic_sysfs(void)
2057{
2058 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (!cpu_has_apic)
2061 return 0;
2062 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 error = sysdev_class_register(&lapic_sysclass);
2065 if (!error)
2066 error = sysdev_register(&device_lapic);
2067 return error;
2068}
2069device_initcall(init_lapic_sysfs);
2070
2071#else /* CONFIG_PM */
2072
2073static void apic_pm_activate(void) { }
2074
2075#endif /* CONFIG_PM */
2076
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002077#ifdef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002079 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 *
2081 * Thus far, the major user of this is IBM's Summit2 series:
2082 *
Linus Torvalds637029c2006-02-27 20:41:56 -08002083 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * multi-chassis. Use available data to take a good guess.
2085 * If in doubt, go HPET.
2086 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002087__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
2089 int i, clusters, zeros;
2090 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08002091 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
2093
Yinghai Lu322850a2008-02-23 21:48:42 -08002094 /*
2095 * there is not this kind of box with AMD CPU yet.
2096 * Some AMD box with quadcore cpu and 8 sockets apicid
2097 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08002098 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08002099 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002100 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08002101 return 0;
2102
Mike Travis23ca4bb2008-05-12 21:21:12 +02002103 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07002104 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002107 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01002108 if (bios_cpu_apicid) {
2109 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002110 }
2111 else if (i < nr_cpu_ids) {
2112 if (cpu_present(i))
2113 id = per_cpu(x86_bios_cpu_apicid, i);
2114 else
2115 continue;
2116 }
2117 else
2118 break;
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (id != BAD_APICID)
2121 __set_bit(APIC_CLUSTERID(id), clustermap);
2122 }
2123
2124 /* Problem: Partially populated chassis may not have CPUs in some of
2125 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01002126 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
2127 * Since clusters are allocated sequentially, count zeros only if
2128 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 */
2130 clusters = 0;
2131 zeros = 0;
2132 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
2133 if (test_bit(i, clustermap)) {
2134 clusters += 1 + zeros;
2135 zeros = 0;
2136 } else
2137 ++zeros;
2138 }
2139
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002140 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
2141 * not guaranteed to be synced between boards
2142 */
2143 if (is_vsmp_box() && clusters > 1)
2144 return 1;
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002147 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 * May have to revisit this when multi-core + hyperthreaded CPUs come
2149 * out, but AFAIK this will work even for them.
2150 */
2151 return (clusters > 2);
2152}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002156 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002158static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002159{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002161 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002162 return 0;
2163}
2164early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002166/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002167static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002168{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002169 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002170}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002171early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002173static int __init parse_lapic_timer_c2_ok(char *arg)
2174{
2175 local_apic_timer_c2_ok = 1;
2176 return 0;
2177}
2178early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2179
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002180static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002181{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002183 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002184}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002185early_param("noapictimer", parse_disable_apic_timer);
2186
2187static int __init parse_nolapic_timer(char *arg)
2188{
2189 disable_apic_timer = 1;
2190 return 0;
2191}
2192early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002193
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002194static int __init apic_set_verbosity(char *arg)
2195{
2196 if (!arg) {
2197#ifdef CONFIG_X86_64
2198 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002199 return 0;
2200#endif
2201 return -EINVAL;
2202 }
2203
2204 if (strcmp("debug", arg) == 0)
2205 apic_verbosity = APIC_DEBUG;
2206 else if (strcmp("verbose", arg) == 0)
2207 apic_verbosity = APIC_VERBOSE;
2208 else {
2209 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
2210 " use apic=verbose or apic=debug\n", arg);
2211 return -EINVAL;
2212 }
2213
2214 return 0;
2215}
2216early_param("apic", apic_set_verbosity);
2217
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002218static int __init lapic_insert_resource(void)
2219{
2220 if (!apic_phys)
2221 return -1;
2222
2223 /* Put local APIC into the resource map. */
2224 lapic_resource.start = apic_phys;
2225 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2226 insert_resource(&iomem_resource, &lapic_resource);
2227
2228 return 0;
2229}
2230
2231/*
2232 * need call insert after e820_reserve_resources()
2233 * that is using request_resource
2234 */
2235late_initcall(lapic_insert_resource);