Merge branch 'next' into for-linus
[deliverable/linux.git] / arch / x86 / kernel / apic_64.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
17#include <linux/init.h>
18
19#include <linux/mm.h>
1da177e4
LT
20#include <linux/delay.h>
21#include <linux/bootmem.h>
1da177e4
LT
22#include <linux/interrupt.h>
23#include <linux/mc146818rtc.h>
24#include <linux/kernel_stat.h>
25#include <linux/sysdev.h>
39928722 26#include <linux/ioport.h>
ba7eda4c 27#include <linux/clockchips.h>
70a20025 28#include <linux/acpi_pmtmr.h>
e83a5fdc 29#include <linux/module.h>
6e1cb38a 30#include <linux/dmar.h>
1da177e4
LT
31
32#include <asm/atomic.h>
33#include <asm/smp.h>
34#include <asm/mtrr.h>
35#include <asm/mpspec.h>
e83a5fdc 36#include <asm/hpet.h>
1da177e4 37#include <asm/pgalloc.h>
75152114 38#include <asm/nmi.h>
95833c83 39#include <asm/idle.h>
73dea47f
AK
40#include <asm/proto.h>
41#include <asm/timex.h>
2c8c0e6b 42#include <asm/apic.h>
6e1cb38a 43#include <asm/i8259.h>
1da177e4 44
5af5573e 45#include <mach_ipi.h>
dd46e3ca 46#include <mach_apic.h>
5af5573e 47
36fef094 48/* Disable local APIC timer from the kernel commandline or via dmi quirk */
aa276e1c 49static int disable_apic_timer __cpuinitdata;
bc1d99c1 50static int apic_calibrate_pmtmr __initdata;
0e078e2f 51int disable_apic;
6e1cb38a 52int disable_x2apic;
89027d35 53int x2apic;
1da177e4 54
6e1cb38a
SS
55/* x2apic enabled before OS handover */
56int x2apic_preenabled;
1da177e4 57
e83a5fdc 58/* Local APIC timer works in C2 */
2e7c2838
LT
59int local_apic_timer_c2_ok;
60EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
61
e83a5fdc
HS
62/*
63 * Debug level, exported for io_apic.c
64 */
baa13188 65unsigned int apic_verbosity;
e83a5fdc 66
bab4b27c
AS
67/* Have we found an MP table */
68int smp_found_config;
69
39928722
AD
70static struct resource lapic_resource = {
71 .name = "Local APIC",
72 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
73};
74
d03030e9
TG
75static unsigned int calibration_result;
76
ba7eda4c
TG
77static int lapic_next_event(unsigned long delta,
78 struct clock_event_device *evt);
79static void lapic_timer_setup(enum clock_event_mode mode,
80 struct clock_event_device *evt);
ba7eda4c 81static void lapic_timer_broadcast(cpumask_t mask);
0e078e2f 82static void apic_pm_activate(void);
ba7eda4c 83
274cfe59
CG
84/*
85 * The local apic timer can be used for any function which is CPU local.
86 */
ba7eda4c
TG
87static struct clock_event_device lapic_clockevent = {
88 .name = "lapic",
89 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
90 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
91 .shift = 32,
92 .set_mode = lapic_timer_setup,
93 .set_next_event = lapic_next_event,
94 .broadcast = lapic_timer_broadcast,
95 .rating = 100,
96 .irq = -1,
97};
98static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
99
d3432896
AK
100static unsigned long apic_phys;
101
3f530709
AS
102unsigned long mp_lapic_addr;
103
0e078e2f
TG
104/*
105 * Get the LAPIC version
106 */
107static inline int lapic_get_version(void)
ba7eda4c 108{
0e078e2f 109 return GET_APIC_VERSION(apic_read(APIC_LVR));
ba7eda4c
TG
110}
111
0e078e2f 112/*
9c803869 113 * Check, if the APIC is integrated or a separate chip
0e078e2f
TG
114 */
115static inline int lapic_is_integrated(void)
ba7eda4c 116{
9c803869 117#ifdef CONFIG_X86_64
0e078e2f 118 return 1;
9c803869
CG
119#else
120 return APIC_INTEGRATED(lapic_get_version());
121#endif
ba7eda4c
TG
122}
123
124/*
0e078e2f 125 * Check, whether this is a modern or a first generation APIC
ba7eda4c 126 */
0e078e2f 127static int modern_apic(void)
ba7eda4c 128{
0e078e2f
TG
129 /* AMD systems use old APIC versions, so check the CPU */
130 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
131 boot_cpu_data.x86 >= 0xf)
132 return 1;
133 return lapic_get_version() >= 0x14;
ba7eda4c
TG
134}
135
274cfe59
CG
136/*
137 * Paravirt kernels also might be using these below ops. So we still
138 * use generic apic_read()/apic_write(), which might be pointing to different
139 * ops in PARAVIRT case.
140 */
1b374e4d 141void xapic_wait_icr_idle(void)
8339e9fb
FLV
142{
143 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
144 cpu_relax();
145}
146
1b374e4d 147u32 safe_xapic_wait_icr_idle(void)
8339e9fb 148{
3c6bb07a 149 u32 send_status;
8339e9fb
FLV
150 int timeout;
151
152 timeout = 0;
153 do {
154 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
155 if (!send_status)
156 break;
157 udelay(100);
158 } while (timeout++ < 1000);
159
160 return send_status;
161}
162
1b374e4d
SS
163void xapic_icr_write(u32 low, u32 id)
164{
ed4e5ec1 165 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
1b374e4d
SS
166 apic_write(APIC_ICR, low);
167}
168
169u64 xapic_icr_read(void)
170{
171 u32 icr1, icr2;
172
173 icr2 = apic_read(APIC_ICR2);
174 icr1 = apic_read(APIC_ICR);
175
cf9768d7 176 return icr1 | ((u64)icr2 << 32);
1b374e4d
SS
177}
178
179static struct apic_ops xapic_ops = {
180 .read = native_apic_mem_read,
181 .write = native_apic_mem_write,
1b374e4d
SS
182 .icr_read = xapic_icr_read,
183 .icr_write = xapic_icr_write,
184 .wait_icr_idle = xapic_wait_icr_idle,
185 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
186};
187
188struct apic_ops __read_mostly *apic_ops = &xapic_ops;
1b374e4d
SS
189EXPORT_SYMBOL_GPL(apic_ops);
190
13c88fb5
SS
191static void x2apic_wait_icr_idle(void)
192{
193 /* no need to wait for icr idle in x2apic */
194 return;
195}
196
197static u32 safe_x2apic_wait_icr_idle(void)
198{
199 /* no need to wait for icr idle in x2apic */
200 return 0;
201}
202
203void x2apic_icr_write(u32 low, u32 id)
204{
205 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
206}
207
208u64 x2apic_icr_read(void)
209{
210 unsigned long val;
211
212 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
213 return val;
214}
215
216static struct apic_ops x2apic_ops = {
217 .read = native_apic_msr_read,
218 .write = native_apic_msr_write,
13c88fb5
SS
219 .icr_read = x2apic_icr_read,
220 .icr_write = x2apic_icr_write,
221 .wait_icr_idle = x2apic_wait_icr_idle,
222 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
223};
224
0e078e2f
TG
225/**
226 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
227 */
e9427101 228void __cpuinit enable_NMI_through_LVT0(void)
1da177e4 229{
11a8e778 230 unsigned int v;
6935d1f9
TG
231
232 /* unmask and set to NMI */
233 v = APIC_DM_NMI;
d4c63ec0
CG
234
235 /* Level triggered for 82489DX (32bit mode) */
236 if (!lapic_is_integrated())
237 v |= APIC_LVT_LEVEL_TRIGGER;
238
11a8e778 239 apic_write(APIC_LVT0, v);
1da177e4
LT
240}
241
0e078e2f
TG
242/**
243 * lapic_get_maxlvt - get the maximum number of local vector table entries
244 */
37e650c7 245int lapic_get_maxlvt(void)
1da177e4 246{
36a028de 247 unsigned int v;
1da177e4
LT
248
249 v = apic_read(APIC_LVR);
36a028de
CG
250 /*
251 * - we always have APIC integrated on 64bit mode
252 * - 82489DXs do not report # of LVT entries
253 */
254 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
1da177e4
LT
255}
256
274cfe59
CG
257/*
258 * Local APIC timer
259 */
260
c40aaec6
CG
261/* Clock divisor */
262#ifdef CONFG_X86_64
f07f4f90 263#define APIC_DIVISOR 1
c40aaec6
CG
264#else
265#define APIC_DIVISOR 16
266#endif
f07f4f90 267
0e078e2f
TG
268/*
269 * This function sets up the local APIC timer, with a timeout of
270 * 'clocks' APIC bus clock. During calibration we actually call
271 * this function twice on the boot CPU, once with a bogus timeout
272 * value, second time for real. The other (noncalibrating) CPUs
273 * call this function only once, with the real, calibrated value.
274 *
275 * We do reads before writes even if unnecessary, to get around the
276 * P5 APIC double write bug.
277 */
0e078e2f 278static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
1da177e4 279{
0e078e2f 280 unsigned int lvtt_value, tmp_value;
1da177e4 281
0e078e2f
TG
282 lvtt_value = LOCAL_TIMER_VECTOR;
283 if (!oneshot)
284 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
f07f4f90
CG
285 if (!lapic_is_integrated())
286 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
287
0e078e2f
TG
288 if (!irqen)
289 lvtt_value |= APIC_LVT_MASKED;
1da177e4 290
0e078e2f 291 apic_write(APIC_LVTT, lvtt_value);
1da177e4
LT
292
293 /*
0e078e2f 294 * Divide PICLK by 16
1da177e4 295 */
0e078e2f 296 tmp_value = apic_read(APIC_TDCR);
c40aaec6
CG
297 apic_write(APIC_TDCR,
298 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
299 APIC_TDR_DIV_16);
0e078e2f
TG
300
301 if (!oneshot)
f07f4f90 302 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
1da177e4
LT
303}
304
0e078e2f 305/*
7b83dae7
RR
306 * Setup extended LVT, AMD specific (K8, family 10h)
307 *
308 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
309 * MCE interrupts are supported. Thus MCE offset must be set to 0.
0e078e2f 310 */
7b83dae7
RR
311
312#define APIC_EILVT_LVTOFF_MCE 0
313#define APIC_EILVT_LVTOFF_IBS 1
314
315static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
1da177e4 316{
7b83dae7 317 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
0e078e2f 318 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
a8fcf1a2 319
0e078e2f 320 apic_write(reg, v);
1da177e4
LT
321}
322
7b83dae7
RR
323u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
324{
325 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
326 return APIC_EILVT_LVTOFF_MCE;
327}
328
329u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
330{
331 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
332 return APIC_EILVT_LVTOFF_IBS;
333}
334
0e078e2f
TG
335/*
336 * Program the next event, relative to now
337 */
338static int lapic_next_event(unsigned long delta,
339 struct clock_event_device *evt)
1da177e4 340{
0e078e2f
TG
341 apic_write(APIC_TMICT, delta);
342 return 0;
1da177e4
LT
343}
344
0e078e2f
TG
345/*
346 * Setup the lapic timer in periodic or oneshot mode
347 */
348static void lapic_timer_setup(enum clock_event_mode mode,
349 struct clock_event_device *evt)
9b7711f0
HS
350{
351 unsigned long flags;
0e078e2f 352 unsigned int v;
9b7711f0 353
0e078e2f
TG
354 /* Lapic used as dummy for broadcast ? */
355 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
9b7711f0
HS
356 return;
357
358 local_irq_save(flags);
359
0e078e2f
TG
360 switch (mode) {
361 case CLOCK_EVT_MODE_PERIODIC:
362 case CLOCK_EVT_MODE_ONESHOT:
363 __setup_APIC_LVTT(calibration_result,
364 mode != CLOCK_EVT_MODE_PERIODIC, 1);
365 break;
366 case CLOCK_EVT_MODE_UNUSED:
367 case CLOCK_EVT_MODE_SHUTDOWN:
368 v = apic_read(APIC_LVTT);
369 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
370 apic_write(APIC_LVTT, v);
371 break;
372 case CLOCK_EVT_MODE_RESUME:
373 /* Nothing to do here */
374 break;
375 }
9b7711f0
HS
376
377 local_irq_restore(flags);
378}
379
1da177e4 380/*
0e078e2f 381 * Local APIC timer broadcast function
1da177e4 382 */
0e078e2f 383static void lapic_timer_broadcast(cpumask_t mask)
1da177e4 384{
0e078e2f
TG
385#ifdef CONFIG_SMP
386 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
387#endif
388}
1da177e4 389
0e078e2f
TG
390/*
391 * Setup the local APIC timer for this CPU. Copy the initilized values
392 * of the boot CPU and register the clock event in the framework.
393 */
394static void setup_APIC_timer(void)
395{
396 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
1da177e4 397
0e078e2f
TG
398 memcpy(levt, &lapic_clockevent, sizeof(*levt));
399 levt->cpumask = cpumask_of_cpu(smp_processor_id());
1da177e4 400
0e078e2f
TG
401 clockevents_register_device(levt);
402}
1da177e4 403
0e078e2f
TG
404/*
405 * In this function we calibrate APIC bus clocks to the external
406 * timer. Unfortunately we cannot use jiffies and the timer irq
407 * to calibrate, since some later bootup code depends on getting
408 * the first irq? Ugh.
409 *
410 * We want to do the calibration only once since we
411 * want to have local timer irqs syncron. CPUs connected
412 * by the same APIC bus have the very same bus frequency.
413 * And we want to have irqs off anyways, no accidental
414 * APIC irq that way.
415 */
416
417#define TICK_COUNT 100000000
418
89b3b1f4 419static int __init calibrate_APIC_clock(void)
0e078e2f
TG
420{
421 unsigned apic, apic_start;
422 unsigned long tsc, tsc_start;
423 int result;
424
425 local_irq_disable();
426
427 /*
428 * Put whatever arbitrary (but long enough) timeout
429 * value into the APIC clock, we just want to get the
430 * counter running for calibration.
431 *
432 * No interrupt enable !
433 */
434 __setup_APIC_LVTT(250000000, 0, 0);
435
436 apic_start = apic_read(APIC_TMCCT);
437#ifdef CONFIG_X86_PM_TIMER
438 if (apic_calibrate_pmtmr && pmtmr_ioport) {
439 pmtimer_wait(5000); /* 5ms wait */
440 apic = apic_read(APIC_TMCCT);
441 result = (apic_start - apic) * 1000L / 5;
442 } else
443#endif
444 {
445 rdtscll(tsc_start);
446
447 do {
448 apic = apic_read(APIC_TMCCT);
449 rdtscll(tsc);
450 } while ((tsc - tsc_start) < TICK_COUNT &&
451 (apic_start - apic) < TICK_COUNT);
452
453 result = (apic_start - apic) * 1000L * tsc_khz /
454 (tsc - tsc_start);
455 }
456
457 local_irq_enable();
458
459 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
460
461 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
462 result / 1000 / 1000, result / 1000 % 1000);
463
464 /* Calculate the scaled math multiplication factor */
877084fb
AM
465 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
466 lapic_clockevent.shift);
0e078e2f
TG
467 lapic_clockevent.max_delta_ns =
468 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
469 lapic_clockevent.min_delta_ns =
470 clockevent_delta2ns(0xF, &lapic_clockevent);
471
f07f4f90 472 calibration_result = (result * APIC_DIVISOR) / HZ;
89b3b1f4
CG
473
474 /*
475 * Do a sanity check on the APIC calibration result
476 */
477 if (calibration_result < (1000000 / HZ)) {
478 printk(KERN_WARNING
479 "APIC frequency too slow, disabling apic timer\n");
480 return -1;
481 }
482
483 return 0;
0e078e2f
TG
484}
485
e83a5fdc
HS
486/*
487 * Setup the boot APIC
488 *
489 * Calibrate and verify the result.
490 */
0e078e2f
TG
491void __init setup_boot_APIC_clock(void)
492{
493 /*
274cfe59
CG
494 * The local apic timer can be disabled via the kernel
495 * commandline or from the CPU detection code. Register the lapic
496 * timer as a dummy clock event source on SMP systems, so the
497 * broadcast mechanism is used. On UP systems simply ignore it.
0e078e2f
TG
498 */
499 if (disable_apic_timer) {
500 printk(KERN_INFO "Disabling APIC timer\n");
501 /* No broadcast on UP ! */
9d09951d
TG
502 if (num_possible_cpus() > 1) {
503 lapic_clockevent.mult = 1;
0e078e2f 504 setup_APIC_timer();
9d09951d 505 }
0e078e2f
TG
506 return;
507 }
508
274cfe59
CG
509 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
510 "calibrating APIC timer ...\n");
511
89b3b1f4 512 if (calibrate_APIC_clock()) {
c2b84b30
TG
513 /* No broadcast on UP ! */
514 if (num_possible_cpus() > 1)
515 setup_APIC_timer();
516 return;
517 }
518
0e078e2f
TG
519 /*
520 * If nmi_watchdog is set to IO_APIC, we need the
521 * PIT/HPET going. Otherwise register lapic as a dummy
522 * device.
523 */
524 if (nmi_watchdog != NMI_IO_APIC)
525 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
526 else
527 printk(KERN_WARNING "APIC timer registered as dummy,"
116f570e 528 " due to nmi_watchdog=%d!\n", nmi_watchdog);
0e078e2f 529
274cfe59 530 /* Setup the lapic or request the broadcast */
0e078e2f
TG
531 setup_APIC_timer();
532}
533
0e078e2f
TG
534void __cpuinit setup_secondary_APIC_clock(void)
535{
0e078e2f
TG
536 setup_APIC_timer();
537}
538
539/*
540 * The guts of the apic timer interrupt
541 */
542static void local_apic_timer_interrupt(void)
543{
544 int cpu = smp_processor_id();
545 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
546
547 /*
548 * Normally we should not be here till LAPIC has been initialized but
549 * in some cases like kdump, its possible that there is a pending LAPIC
550 * timer interrupt from previous kernel's context and is delivered in
551 * new kernel the moment interrupts are enabled.
552 *
553 * Interrupts are enabled early and LAPIC is setup much later, hence
554 * its possible that when we get here evt->event_handler is NULL.
555 * Check for event_handler being NULL and discard the interrupt as
556 * spurious.
557 */
558 if (!evt->event_handler) {
559 printk(KERN_WARNING
560 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
561 /* Switch it off */
562 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
563 return;
564 }
565
566 /*
567 * the NMI deadlock-detector uses this.
568 */
0b23e8cf 569#ifdef CONFIG_X86_64
0e078e2f 570 add_pda(apic_timer_irqs, 1);
0b23e8cf
CG
571#else
572 per_cpu(irq_stat, cpu).apic_timer_irqs++;
573#endif
0e078e2f
TG
574
575 evt->event_handler(evt);
576}
577
578/*
579 * Local APIC timer interrupt. This is the most natural way for doing
580 * local interrupts, but local timer interrupts can be emulated by
581 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
582 *
583 * [ if a single-CPU system runs an SMP kernel then we call the local
584 * interrupt as well. Thus we cannot inline the local irq ... ]
585 */
586void smp_apic_timer_interrupt(struct pt_regs *regs)
587{
588 struct pt_regs *old_regs = set_irq_regs(regs);
589
590 /*
591 * NOTE! We'd better ACK the irq immediately,
592 * because timer handling can be slow.
593 */
594 ack_APIC_irq();
595 /*
596 * update_process_times() expects us to have done irq_enter().
597 * Besides, if we don't timer interrupts ignore the global
598 * interrupt lock, which is the WrongThing (tm) to do.
599 */
600 exit_idle();
601 irq_enter();
602 local_apic_timer_interrupt();
603 irq_exit();
274cfe59 604
0e078e2f
TG
605 set_irq_regs(old_regs);
606}
607
608int setup_profiling_timer(unsigned int multiplier)
609{
610 return -EINVAL;
611}
612
613
614/*
615 * Local APIC start and shutdown
616 */
617
618/**
619 * clear_local_APIC - shutdown the local APIC
620 *
621 * This is called, when a CPU is disabled and before rebooting, so the state of
622 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
623 * leftovers during boot.
624 */
625void clear_local_APIC(void)
626{
2584a82d 627 int maxlvt;
0e078e2f
TG
628 u32 v;
629
d3432896
AK
630 /* APIC hasn't been mapped yet */
631 if (!apic_phys)
632 return;
633
634 maxlvt = lapic_get_maxlvt();
0e078e2f
TG
635 /*
636 * Masking an LVT entry can trigger a local APIC error
637 * if the vector is zero. Mask LVTERR first to prevent this.
638 */
639 if (maxlvt >= 3) {
640 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
641 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
642 }
643 /*
644 * Careful: we have to set masks only first to deassert
645 * any level-triggered sources.
646 */
647 v = apic_read(APIC_LVTT);
648 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
649 v = apic_read(APIC_LVT0);
650 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
651 v = apic_read(APIC_LVT1);
652 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
653 if (maxlvt >= 4) {
654 v = apic_read(APIC_LVTPC);
655 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
656 }
657
6764014b
CG
658 /* lets not touch this if we didn't frob it */
659#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
660 if (maxlvt >= 5) {
661 v = apic_read(APIC_LVTTHMR);
662 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
663 }
664#endif
0e078e2f
TG
665 /*
666 * Clean APIC state for other OSs:
667 */
668 apic_write(APIC_LVTT, APIC_LVT_MASKED);
669 apic_write(APIC_LVT0, APIC_LVT_MASKED);
670 apic_write(APIC_LVT1, APIC_LVT_MASKED);
671 if (maxlvt >= 3)
672 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
673 if (maxlvt >= 4)
674 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
6764014b
CG
675
676 /* Integrated APIC (!82489DX) ? */
677 if (lapic_is_integrated()) {
678 if (maxlvt > 3)
679 /* Clear ESR due to Pentium errata 3AP and 11AP */
680 apic_write(APIC_ESR, 0);
681 apic_read(APIC_ESR);
682 }
0e078e2f
TG
683}
684
685/**
686 * disable_local_APIC - clear and disable the local APIC
687 */
688void disable_local_APIC(void)
689{
690 unsigned int value;
691
692 clear_local_APIC();
693
694 /*
695 * Disable APIC (implies clearing of registers
696 * for 82489DX!).
697 */
698 value = apic_read(APIC_SPIV);
699 value &= ~APIC_SPIV_APIC_ENABLED;
700 apic_write(APIC_SPIV, value);
990b183e
CG
701
702#ifdef CONFIG_X86_32
703 /*
704 * When LAPIC was disabled by the BIOS and enabled by the kernel,
705 * restore the disabled state.
706 */
707 if (enabled_via_apicbase) {
708 unsigned int l, h;
709
710 rdmsr(MSR_IA32_APICBASE, l, h);
711 l &= ~MSR_IA32_APICBASE_ENABLE;
712 wrmsr(MSR_IA32_APICBASE, l, h);
713 }
714#endif
0e078e2f
TG
715}
716
fe4024dc
CG
717/*
718 * If Linux enabled the LAPIC against the BIOS default disable it down before
719 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
720 * not power-off. Additionally clear all LVT entries before disable_local_APIC
721 * for the case where Linux didn't enable the LAPIC.
722 */
0e078e2f
TG
723void lapic_shutdown(void)
724{
725 unsigned long flags;
726
727 if (!cpu_has_apic)
728 return;
729
730 local_irq_save(flags);
731
fe4024dc
CG
732#ifdef CONFIG_X86_32
733 if (!enabled_via_apicbase)
734 clear_local_APIC();
735 else
736#endif
737 disable_local_APIC();
738
0e078e2f
TG
739
740 local_irq_restore(flags);
741}
742
743/*
744 * This is to verify that we're looking at a real local APIC.
745 * Check these against your board if the CPUs aren't getting
746 * started for no apparent reason.
747 */
748int __init verify_local_APIC(void)
749{
750 unsigned int reg0, reg1;
751
752 /*
753 * The version register is read-only in a real APIC.
754 */
755 reg0 = apic_read(APIC_LVR);
756 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
757 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
758 reg1 = apic_read(APIC_LVR);
759 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
760
761 /*
762 * The two version reads above should print the same
763 * numbers. If the second one is different, then we
764 * poke at a non-APIC.
765 */
766 if (reg1 != reg0)
767 return 0;
768
769 /*
770 * Check if the version looks reasonably.
771 */
772 reg1 = GET_APIC_VERSION(reg0);
773 if (reg1 == 0x00 || reg1 == 0xff)
774 return 0;
775 reg1 = lapic_get_maxlvt();
776 if (reg1 < 0x02 || reg1 == 0xff)
777 return 0;
778
779 /*
780 * The ID register is read/write in a real APIC.
781 */
2d7a66d0 782 reg0 = apic_read(APIC_ID);
0e078e2f
TG
783 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
784 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
2d7a66d0 785 reg1 = apic_read(APIC_ID);
0e078e2f
TG
786 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
787 apic_write(APIC_ID, reg0);
788 if (reg1 != (reg0 ^ APIC_ID_MASK))
789 return 0;
790
791 /*
1da177e4
LT
792 * The next two are just to see if we have sane values.
793 * They're only really relevant if we're in Virtual Wire
794 * compatibility mode, but most boxes are anymore.
795 */
796 reg0 = apic_read(APIC_LVT0);
0e078e2f 797 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
1da177e4
LT
798 reg1 = apic_read(APIC_LVT1);
799 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
800
801 return 1;
802}
803
0e078e2f
TG
804/**
805 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
806 */
1da177e4
LT
807void __init sync_Arb_IDs(void)
808{
296cb951
CG
809 /*
810 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
811 * needed on AMD.
812 */
813 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
1da177e4
LT
814 return;
815
816 /*
817 * Wait for idle.
818 */
819 apic_wait_icr_idle();
820
821 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
6f6da97f
CG
822 apic_write(APIC_ICR, APIC_DEST_ALLINC |
823 APIC_INT_LEVELTRIG | APIC_DM_INIT);
1da177e4
LT
824}
825
1da177e4
LT
826/*
827 * An initial setup of the virtual wire mode.
828 */
829void __init init_bsp_APIC(void)
830{
11a8e778 831 unsigned int value;
1da177e4
LT
832
833 /*
834 * Don't do the setup now if we have a SMP BIOS as the
835 * through-I/O-APIC virtual wire mode might be active.
836 */
837 if (smp_found_config || !cpu_has_apic)
838 return;
839
1da177e4
LT
840 /*
841 * Do not trust the local APIC being empty at bootup.
842 */
843 clear_local_APIC();
844
845 /*
846 * Enable APIC.
847 */
848 value = apic_read(APIC_SPIV);
849 value &= ~APIC_VECTOR_MASK;
850 value |= APIC_SPIV_APIC_ENABLED;
638c0411
CG
851
852#ifdef CONFIG_X86_32
853 /* This bit is reserved on P4/Xeon and should be cleared */
854 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
855 (boot_cpu_data.x86 == 15))
856 value &= ~APIC_SPIV_FOCUS_DISABLED;
857 else
858#endif
859 value |= APIC_SPIV_FOCUS_DISABLED;
1da177e4 860 value |= SPURIOUS_APIC_VECTOR;
11a8e778 861 apic_write(APIC_SPIV, value);
1da177e4
LT
862
863 /*
864 * Set up the virtual wire mode.
865 */
11a8e778 866 apic_write(APIC_LVT0, APIC_DM_EXTINT);
1da177e4 867 value = APIC_DM_NMI;
638c0411
CG
868 if (!lapic_is_integrated()) /* 82489DX */
869 value |= APIC_LVT_LEVEL_TRIGGER;
11a8e778 870 apic_write(APIC_LVT1, value);
1da177e4
LT
871}
872
c43da2f5
CG
873static void __cpuinit lapic_setup_esr(void)
874{
875 unsigned long oldvalue, value, maxlvt;
876 if (lapic_is_integrated() && !esr_disable) {
877 if (esr_disable) {
878 /*
879 * Something untraceable is creating bad interrupts on
880 * secondary quads ... for the moment, just leave the
881 * ESR disabled - we can't do anything useful with the
882 * errors anyway - mbligh
883 */
884 printk(KERN_INFO "Leaving ESR disabled.\n");
885 return;
886 }
887 /* !82489DX */
888 maxlvt = lapic_get_maxlvt();
889 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
890 apic_write(APIC_ESR, 0);
891 oldvalue = apic_read(APIC_ESR);
892
893 /* enables sending errors */
894 value = ERROR_APIC_VECTOR;
895 apic_write(APIC_LVTERR, value);
896 /*
897 * spec says clear errors after enabling vector.
898 */
899 if (maxlvt > 3)
900 apic_write(APIC_ESR, 0);
901 value = apic_read(APIC_ESR);
902 if (value != oldvalue)
903 apic_printk(APIC_VERBOSE, "ESR value before enabling "
904 "vector: 0x%08lx after: 0x%08lx\n",
905 oldvalue, value);
906 } else {
907 printk(KERN_INFO "No ESR for 82489DX.\n");
908 }
909}
910
911
0e078e2f
TG
912/**
913 * setup_local_APIC - setup the local APIC
914 */
915void __cpuinit setup_local_APIC(void)
1da177e4 916{
739f33b3 917 unsigned int value;
da7ed9f9 918 int i, j;
1da177e4 919
ac23d4ee 920 preempt_disable();
1da177e4 921 value = apic_read(APIC_LVR);
1da177e4 922
fe7414a2 923 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
1da177e4
LT
924
925 /*
926 * Double-check whether this APIC is really registered.
927 * This is meaningless in clustered apic mode, so we skip it.
928 */
929 if (!apic_id_registered())
930 BUG();
931
932 /*
933 * Intel recommends to set DFR, LDR and TPR before enabling
934 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
935 * document number 292116). So here it goes...
936 */
937 init_apic_ldr();
938
939 /*
940 * Set Task Priority to 'accept all'. We never change this
941 * later on.
942 */
943 value = apic_read(APIC_TASKPRI);
944 value &= ~APIC_TPRI_MASK;
11a8e778 945 apic_write(APIC_TASKPRI, value);
1da177e4 946
da7ed9f9
VG
947 /*
948 * After a crash, we no longer service the interrupts and a pending
949 * interrupt from previous kernel might still have ISR bit set.
950 *
951 * Most probably by now CPU has serviced that pending interrupt and
952 * it might not have done the ack_APIC_irq() because it thought,
953 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
954 * does not clear the ISR bit and cpu thinks it has already serivced
955 * the interrupt. Hence a vector might get locked. It was noticed
956 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
957 */
958 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
959 value = apic_read(APIC_ISR + i*0x10);
960 for (j = 31; j >= 0; j--) {
961 if (value & (1<<j))
962 ack_APIC_irq();
963 }
964 }
965
1da177e4
LT
966 /*
967 * Now that we are all set up, enable the APIC
968 */
969 value = apic_read(APIC_SPIV);
970 value &= ~APIC_VECTOR_MASK;
971 /*
972 * Enable APIC
973 */
974 value |= APIC_SPIV_APIC_ENABLED;
975
3f14c746
AK
976 /* We always use processor focus */
977
1da177e4
LT
978 /*
979 * Set spurious IRQ vector
980 */
981 value |= SPURIOUS_APIC_VECTOR;
11a8e778 982 apic_write(APIC_SPIV, value);
1da177e4
LT
983
984 /*
985 * Set up LVT0, LVT1:
986 *
987 * set up through-local-APIC on the BP's LINT0. This is not
988 * strictly necessary in pure symmetric-IO mode, but sometimes
989 * we delegate interrupts to the 8259A.
990 */
991 /*
992 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
993 */
994 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
a8fcf1a2 995 if (!smp_processor_id() && !value) {
1da177e4 996 value = APIC_DM_EXTINT;
bc1d99c1
CW
997 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
998 smp_processor_id());
1da177e4
LT
999 } else {
1000 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
bc1d99c1
CW
1001 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1002 smp_processor_id());
1da177e4 1003 }
11a8e778 1004 apic_write(APIC_LVT0, value);
1da177e4
LT
1005
1006 /*
1007 * only the BP should see the LINT1 NMI signal, obviously.
1008 */
1009 if (!smp_processor_id())
1010 value = APIC_DM_NMI;
1011 else
1012 value = APIC_DM_NMI | APIC_LVT_MASKED;
11a8e778 1013 apic_write(APIC_LVT1, value);
ac23d4ee 1014 preempt_enable();
739f33b3 1015}
1da177e4 1016
739f33b3
AK
1017void __cpuinit end_local_APIC_setup(void)
1018{
1019 lapic_setup_esr();
fa6b95fc
CG
1020
1021#ifdef CONFIG_X86_32
1b4ee4e4
CG
1022 {
1023 unsigned int value;
1024 /* Disable the local apic timer */
1025 value = apic_read(APIC_LVTT);
1026 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1027 apic_write(APIC_LVTT, value);
1028 }
fa6b95fc
CG
1029#endif
1030
f2802e7f 1031 setup_apic_nmi_watchdog(NULL);
0e078e2f 1032 apic_pm_activate();
1da177e4 1033}
1da177e4 1034
6e1cb38a
SS
1035void check_x2apic(void)
1036{
1037 int msr, msr2;
1038
1039 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1040
1041 if (msr & X2APIC_ENABLE) {
1042 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
1043 x2apic_preenabled = x2apic = 1;
1044 apic_ops = &x2apic_ops;
1045 }
1046}
1047
1048void enable_x2apic(void)
1049{
1050 int msr, msr2;
1051
1052 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1053 if (!(msr & X2APIC_ENABLE)) {
1054 printk("Enabling x2apic\n");
1055 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1056 }
1057}
1058
1059void enable_IR_x2apic(void)
1060{
1061#ifdef CONFIG_INTR_REMAP
1062 int ret;
1063 unsigned long flags;
1064
1065 if (!cpu_has_x2apic)
1066 return;
1067
1068 if (!x2apic_preenabled && disable_x2apic) {
1069 printk(KERN_INFO
1070 "Skipped enabling x2apic and Interrupt-remapping "
1071 "because of nox2apic\n");
1072 return;
1073 }
1074
1075 if (x2apic_preenabled && disable_x2apic)
1076 panic("Bios already enabled x2apic, can't enforce nox2apic");
1077
1078 if (!x2apic_preenabled && skip_ioapic_setup) {
1079 printk(KERN_INFO
1080 "Skipped enabling x2apic and Interrupt-remapping "
1081 "because of skipping io-apic setup\n");
1082 return;
1083 }
1084
1085 ret = dmar_table_init();
1086 if (ret) {
1087 printk(KERN_INFO
1088 "dmar_table_init() failed with %d:\n", ret);
1089
1090 if (x2apic_preenabled)
1091 panic("x2apic enabled by bios. But IR enabling failed");
1092 else
1093 printk(KERN_INFO
1094 "Not enabling x2apic,Intr-remapping\n");
1095 return;
1096 }
1097
1098 local_irq_save(flags);
1099 mask_8259A();
1100 save_mask_IO_APIC_setup();
1101
1102 ret = enable_intr_remapping(1);
1103
1104 if (ret && x2apic_preenabled) {
1105 local_irq_restore(flags);
1106 panic("x2apic enabled by bios. But IR enabling failed");
1107 }
1108
1109 if (ret)
1110 goto end;
1111
1112 if (!x2apic) {
1113 x2apic = 1;
1114 apic_ops = &x2apic_ops;
1115 enable_x2apic();
1116 }
1117end:
1118 if (ret)
1119 /*
1120 * IR enabling failed
1121 */
1122 restore_IO_APIC_setup();
1123 else
1124 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1125
1126 unmask_8259A();
1127 local_irq_restore(flags);
1128
1129 if (!ret) {
1130 if (!x2apic_preenabled)
1131 printk(KERN_INFO
1132 "Enabled x2apic and interrupt-remapping\n");
1133 else
1134 printk(KERN_INFO
1135 "Enabled Interrupt-remapping\n");
1136 } else
1137 printk(KERN_ERR
1138 "Failed to enable Interrupt-remapping and x2apic\n");
1139#else
1140 if (!cpu_has_x2apic)
1141 return;
1142
1143 if (x2apic_preenabled)
1144 panic("x2apic enabled prior OS handover,"
1145 " enable CONFIG_INTR_REMAP");
1146
1147 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1148 " and x2apic\n");
1149#endif
1150
1151 return;
1152}
1153
1da177e4
LT
1154/*
1155 * Detect and enable local APICs on non-SMP boards.
1156 * Original code written by Keir Fraser.
1157 * On AMD64 we trust the BIOS - if it says no APIC it is likely
6935d1f9 1158 * not correctly set up (usually the APIC timer won't work etc.)
1da177e4 1159 */
0e078e2f 1160static int __init detect_init_APIC(void)
1da177e4
LT
1161{
1162 if (!cpu_has_apic) {
1163 printk(KERN_INFO "No local APIC present\n");
1164 return -1;
1165 }
1166
1167 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
c70dcb74 1168 boot_cpu_physical_apicid = 0;
1da177e4
LT
1169 return 0;
1170}
1171
8643f9d0
YL
1172void __init early_init_lapic_mapping(void)
1173{
431ee79d 1174 unsigned long phys_addr;
8643f9d0
YL
1175
1176 /*
1177 * If no local APIC can be found then go out
1178 * : it means there is no mpatable and MADT
1179 */
1180 if (!smp_found_config)
1181 return;
1182
431ee79d 1183 phys_addr = mp_lapic_addr;
8643f9d0 1184
431ee79d 1185 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
8643f9d0 1186 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
431ee79d 1187 APIC_BASE, phys_addr);
8643f9d0
YL
1188
1189 /*
1190 * Fetch the APIC ID of the BSP in case we have a
1191 * default configuration (or the MP table is broken).
1192 */
4c9961d5 1193 boot_cpu_physical_apicid = read_apic_id();
8643f9d0
YL
1194}
1195
0e078e2f
TG
1196/**
1197 * init_apic_mappings - initialize APIC mappings
1198 */
1da177e4
LT
1199void __init init_apic_mappings(void)
1200{
6e1cb38a 1201 if (x2apic) {
4c9961d5 1202 boot_cpu_physical_apicid = read_apic_id();
6e1cb38a
SS
1203 return;
1204 }
1205
1da177e4
LT
1206 /*
1207 * If no local APIC can be found then set up a fake all
1208 * zeroes page to simulate the local APIC and another
1209 * one for the IO-APIC.
1210 */
1211 if (!smp_found_config && detect_init_APIC()) {
1212 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1213 apic_phys = __pa(apic_phys);
1214 } else
1215 apic_phys = mp_lapic_addr;
1216
1217 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
7ffeeb1e
YL
1218 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1219 APIC_BASE, apic_phys);
1da177e4
LT
1220
1221 /*
1222 * Fetch the APIC ID of the BSP in case we have a
1223 * default configuration (or the MP table is broken).
1224 */
4c9961d5 1225 boot_cpu_physical_apicid = read_apic_id();
1da177e4
LT
1226}
1227
1228/*
0e078e2f
TG
1229 * This initializes the IO-APIC and APIC hardware if this is
1230 * a UP kernel.
1da177e4 1231 */
1b313f4a
CG
1232int apic_version[MAX_APICS];
1233
0e078e2f 1234int __init APIC_init_uniprocessor(void)
1da177e4 1235{
0e078e2f
TG
1236 if (disable_apic) {
1237 printk(KERN_INFO "Apic disabled\n");
1238 return -1;
1239 }
1240 if (!cpu_has_apic) {
1241 disable_apic = 1;
1242 printk(KERN_INFO "Apic disabled by BIOS\n");
1243 return -1;
1244 }
1da177e4 1245
6e1cb38a
SS
1246 enable_IR_x2apic();
1247 setup_apic_routing();
1248
0e078e2f 1249 verify_local_APIC();
1da177e4 1250
b5841765
GC
1251 connect_bsp_APIC();
1252
b6df1b8b 1253 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
c70dcb74 1254 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
1da177e4 1255
0e078e2f 1256 setup_local_APIC();
1da177e4 1257
739f33b3
AK
1258 /*
1259 * Now enable IO-APICs, actually call clear_IO_APIC
1260 * We need clear_IO_APIC before enabling vector on BP
1261 */
1262 if (!skip_ioapic_setup && nr_ioapics)
1263 enable_IO_APIC();
1264
acae7d90
MR
1265 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1266 localise_nmi_watchdog();
739f33b3
AK
1267 end_local_APIC_setup();
1268
0e078e2f
TG
1269 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1270 setup_IO_APIC();
1271 else
1272 nr_ioapics = 0;
1273 setup_boot_APIC_clock();
1274 check_nmi_watchdog();
1275 return 0;
1da177e4
LT
1276}
1277
1278/*
0e078e2f 1279 * Local APIC interrupts
1da177e4
LT
1280 */
1281
0e078e2f
TG
1282/*
1283 * This interrupt should _never_ happen with our APIC/SMP architecture
1284 */
1285asmlinkage void smp_spurious_interrupt(void)
1da177e4 1286{
0e078e2f
TG
1287 unsigned int v;
1288 exit_idle();
1289 irq_enter();
1da177e4 1290 /*
0e078e2f
TG
1291 * Check if this really is a spurious interrupt and ACK it
1292 * if it is a vectored one. Just in case...
1293 * Spurious interrupts should not be ACKed.
1da177e4 1294 */
0e078e2f
TG
1295 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1296 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1297 ack_APIC_irq();
c4d58cbd 1298
0e078e2f
TG
1299 add_pda(irq_spurious_count, 1);
1300 irq_exit();
1301}
1da177e4 1302
0e078e2f
TG
1303/*
1304 * This interrupt should never happen with our APIC/SMP architecture
1305 */
1306asmlinkage void smp_error_interrupt(void)
1307{
1308 unsigned int v, v1;
1da177e4 1309
0e078e2f
TG
1310 exit_idle();
1311 irq_enter();
1312 /* First tickle the hardware, only then report what went on. -- REW */
1313 v = apic_read(APIC_ESR);
1314 apic_write(APIC_ESR, 0);
1315 v1 = apic_read(APIC_ESR);
1316 ack_APIC_irq();
1317 atomic_inc(&irq_err_count);
ba7eda4c 1318
0e078e2f
TG
1319 /* Here is what the APIC error bits mean:
1320 0: Send CS error
1321 1: Receive CS error
1322 2: Send accept error
1323 3: Receive accept error
1324 4: Reserved
1325 5: Send illegal vector
1326 6: Received illegal vector
1327 7: Illegal register address
1328 */
1329 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1330 smp_processor_id(), v , v1);
1331 irq_exit();
1da177e4
LT
1332}
1333
b5841765 1334/**
36c9d674
CG
1335 * connect_bsp_APIC - attach the APIC to the interrupt system
1336 */
b5841765
GC
1337void __init connect_bsp_APIC(void)
1338{
36c9d674
CG
1339#ifdef CONFIG_X86_32
1340 if (pic_mode) {
1341 /*
1342 * Do not trust the local APIC being empty at bootup.
1343 */
1344 clear_local_APIC();
1345 /*
1346 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1347 * local APIC to INT and NMI lines.
1348 */
1349 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1350 "enabling APIC mode.\n");
1351 outb(0x70, 0x22);
1352 outb(0x01, 0x23);
1353 }
1354#endif
b5841765
GC
1355 enable_apic_mode();
1356}
1357
274cfe59
CG
1358/**
1359 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1360 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1361 *
1362 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1363 * APIC is disabled.
1364 */
0e078e2f 1365void disconnect_bsp_APIC(int virt_wire_setup)
1da177e4 1366{
1b4ee4e4
CG
1367 unsigned int value;
1368
c177b0bc
CG
1369#ifdef CONFIG_X86_32
1370 if (pic_mode) {
1371 /*
1372 * Put the board back into PIC mode (has an effect only on
1373 * certain older boards). Note that APIC interrupts, including
1374 * IPIs, won't work beyond this point! The only exception are
1375 * INIT IPIs.
1376 */
1377 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1378 "entering PIC mode.\n");
1379 outb(0x70, 0x22);
1380 outb(0x00, 0x23);
1381 return;
1382 }
1383#endif
1384
0e078e2f 1385 /* Go back to Virtual Wire compatibility mode */
1da177e4 1386
0e078e2f
TG
1387 /* For the spurious interrupt use vector F, and enable it */
1388 value = apic_read(APIC_SPIV);
1389 value &= ~APIC_VECTOR_MASK;
1390 value |= APIC_SPIV_APIC_ENABLED;
1391 value |= 0xf;
1392 apic_write(APIC_SPIV, value);
b8ce3359 1393
0e078e2f
TG
1394 if (!virt_wire_setup) {
1395 /*
1396 * For LVT0 make it edge triggered, active high,
1397 * external and enabled
1398 */
1399 value = apic_read(APIC_LVT0);
1400 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1401 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1402 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1403 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1404 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1405 apic_write(APIC_LVT0, value);
1406 } else {
1407 /* Disable LVT0 */
1408 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1409 }
b8ce3359 1410
c177b0bc
CG
1411 /*
1412 * For LVT1 make it edge triggered, active high,
1413 * nmi and enabled
1414 */
0e078e2f
TG
1415 value = apic_read(APIC_LVT1);
1416 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1417 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1418 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1419 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1420 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1421 apic_write(APIC_LVT1, value);
1da177e4
LT
1422}
1423
be8a5685
AS
1424void __cpuinit generic_processor_info(int apicid, int version)
1425{
1426 int cpu;
1427 cpumask_t tmp_map;
1428
1b313f4a
CG
1429 /*
1430 * Validate version
1431 */
1432 if (version == 0x0) {
1433 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1434 "fixing up to 0x10. (tell your hw vendor)\n",
1435 version);
1436 version = 0x10;
1437 }
1438 apic_version[apicid] = version;
1439
be8a5685
AS
1440 if (num_processors >= NR_CPUS) {
1441 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1b313f4a 1442 " Processor ignored.\n", NR_CPUS);
be8a5685
AS
1443 return;
1444 }
1445
be8a5685
AS
1446 num_processors++;
1447 cpus_complement(tmp_map, cpu_present_map);
1448 cpu = first_cpu(tmp_map);
1449
1450 physid_set(apicid, phys_cpu_present_map);
1451 if (apicid == boot_cpu_physical_apicid) {
1452 /*
1453 * x86_bios_cpu_apicid is required to have processors listed
1454 * in same order as logical cpu numbers. Hence the first
1455 * entry is BSP, and so on.
1456 */
1457 cpu = 0;
1458 }
e0da3364
YL
1459 if (apicid > max_physical_apicid)
1460 max_physical_apicid = apicid;
1461
1b313f4a
CG
1462#ifdef CONFIG_X86_32
1463 /*
1464 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1465 * but we need to work other dependencies like SMP_SUSPEND etc
1466 * before this can be done without some confusion.
1467 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1468 * - Ashok Raj <ashok.raj@intel.com>
1469 */
1470 if (max_physical_apicid >= 8) {
1471 switch (boot_cpu_data.x86_vendor) {
1472 case X86_VENDOR_INTEL:
1473 if (!APIC_XAPIC(version)) {
1474 def_to_bigsmp = 0;
1475 break;
1476 }
1477 /* If P4 and above fall through */
1478 case X86_VENDOR_AMD:
1479 def_to_bigsmp = 1;
1480 }
1481 }
1482#endif
1483
1484#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
be8a5685 1485 /* are we being called early in kernel startup? */
23ca4bba
MT
1486 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1487 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1488 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
be8a5685
AS
1489
1490 cpu_to_apicid[cpu] = apicid;
1491 bios_cpu_apicid[cpu] = apicid;
1492 } else {
1493 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1494 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1495 }
1b313f4a 1496#endif
be8a5685
AS
1497
1498 cpu_set(cpu, cpu_possible_map);
1499 cpu_set(cpu, cpu_present_map);
1500}
1501
0c81c746
SS
1502int hard_smp_processor_id(void)
1503{
1504 return read_apic_id();
1505}
1506
89039b37 1507/*
0e078e2f 1508 * Power management
89039b37 1509 */
0e078e2f
TG
1510#ifdef CONFIG_PM
1511
1512static struct {
274cfe59
CG
1513 /*
1514 * 'active' is true if the local APIC was enabled by us and
1515 * not the BIOS; this signifies that we are also responsible
1516 * for disabling it before entering apm/acpi suspend
1517 */
0e078e2f
TG
1518 int active;
1519 /* r/w apic fields */
1520 unsigned int apic_id;
1521 unsigned int apic_taskpri;
1522 unsigned int apic_ldr;
1523 unsigned int apic_dfr;
1524 unsigned int apic_spiv;
1525 unsigned int apic_lvtt;
1526 unsigned int apic_lvtpc;
1527 unsigned int apic_lvt0;
1528 unsigned int apic_lvt1;
1529 unsigned int apic_lvterr;
1530 unsigned int apic_tmict;
1531 unsigned int apic_tdcr;
1532 unsigned int apic_thmr;
1533} apic_pm_state;
1534
1535static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1536{
1537 unsigned long flags;
1538 int maxlvt;
89039b37 1539
0e078e2f
TG
1540 if (!apic_pm_state.active)
1541 return 0;
89039b37 1542
0e078e2f 1543 maxlvt = lapic_get_maxlvt();
89039b37 1544
2d7a66d0 1545 apic_pm_state.apic_id = apic_read(APIC_ID);
0e078e2f
TG
1546 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1547 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1548 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1549 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1550 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1551 if (maxlvt >= 4)
1552 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1553 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1554 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1555 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1556 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1557 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
24968cfd 1558#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
0e078e2f
TG
1559 if (maxlvt >= 5)
1560 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1561#endif
24968cfd 1562
0e078e2f
TG
1563 local_irq_save(flags);
1564 disable_local_APIC();
1565 local_irq_restore(flags);
1566 return 0;
1da177e4
LT
1567}
1568
0e078e2f 1569static int lapic_resume(struct sys_device *dev)
1da177e4 1570{
0e078e2f
TG
1571 unsigned int l, h;
1572 unsigned long flags;
1573 int maxlvt;
1da177e4 1574
0e078e2f
TG
1575 if (!apic_pm_state.active)
1576 return 0;
89b831ef 1577
0e078e2f 1578 maxlvt = lapic_get_maxlvt();
1da177e4 1579
0e078e2f 1580 local_irq_save(flags);
92206c90
CG
1581
1582#ifdef CONFIG_X86_64
1583 if (x2apic)
1584 enable_x2apic();
1585 else
1586#endif
d5e629a6 1587 {
92206c90
CG
1588 /*
1589 * Make sure the APICBASE points to the right address
1590 *
1591 * FIXME! This will be wrong if we ever support suspend on
1592 * SMP! We'll need to do this as part of the CPU restore!
1593 */
6e1cb38a
SS
1594 rdmsr(MSR_IA32_APICBASE, l, h);
1595 l &= ~MSR_IA32_APICBASE_BASE;
1596 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1597 wrmsr(MSR_IA32_APICBASE, l, h);
d5e629a6 1598 }
6e1cb38a 1599
0e078e2f
TG
1600 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1601 apic_write(APIC_ID, apic_pm_state.apic_id);
1602 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1603 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1604 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1605 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1606 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1607 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
92206c90 1608#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
0e078e2f
TG
1609 if (maxlvt >= 5)
1610 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1611#endif
1612 if (maxlvt >= 4)
1613 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1614 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1615 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1616 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1617 apic_write(APIC_ESR, 0);
1618 apic_read(APIC_ESR);
1619 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1620 apic_write(APIC_ESR, 0);
1621 apic_read(APIC_ESR);
92206c90 1622
0e078e2f 1623 local_irq_restore(flags);
92206c90 1624
0e078e2f
TG
1625 return 0;
1626}
b8ce3359 1627
274cfe59
CG
1628/*
1629 * This device has no shutdown method - fully functioning local APICs
1630 * are needed on every CPU up until machine_halt/restart/poweroff.
1631 */
1632
0e078e2f
TG
1633static struct sysdev_class lapic_sysclass = {
1634 .name = "lapic",
1635 .resume = lapic_resume,
1636 .suspend = lapic_suspend,
1637};
b8ce3359 1638
0e078e2f 1639static struct sys_device device_lapic = {
e83a5fdc
HS
1640 .id = 0,
1641 .cls = &lapic_sysclass,
0e078e2f 1642};
b8ce3359 1643
0e078e2f
TG
1644static void __cpuinit apic_pm_activate(void)
1645{
1646 apic_pm_state.active = 1;
1da177e4
LT
1647}
1648
0e078e2f 1649static int __init init_lapic_sysfs(void)
1da177e4 1650{
0e078e2f 1651 int error;
e83a5fdc 1652
0e078e2f
TG
1653 if (!cpu_has_apic)
1654 return 0;
1655 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
e83a5fdc 1656
0e078e2f
TG
1657 error = sysdev_class_register(&lapic_sysclass);
1658 if (!error)
1659 error = sysdev_register(&device_lapic);
1660 return error;
1da177e4 1661}
0e078e2f
TG
1662device_initcall(init_lapic_sysfs);
1663
1664#else /* CONFIG_PM */
1665
1666static void apic_pm_activate(void) { }
1667
1668#endif /* CONFIG_PM */
1da177e4
LT
1669
1670/*
f8bf3c65 1671 * apic_is_clustered_box() -- Check if we can expect good TSC
1da177e4
LT
1672 *
1673 * Thus far, the major user of this is IBM's Summit2 series:
1674 *
637029c6 1675 * Clustered boxes may have unsynced TSC problems if they are
1da177e4
LT
1676 * multi-chassis. Use available data to take a good guess.
1677 * If in doubt, go HPET.
1678 */
f8bf3c65 1679__cpuinit int apic_is_clustered_box(void)
1da177e4
LT
1680{
1681 int i, clusters, zeros;
1682 unsigned id;
322850af 1683 u16 *bios_cpu_apicid;
1da177e4
LT
1684 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1685
322850af
YL
1686 /*
1687 * there is not this kind of box with AMD CPU yet.
1688 * Some AMD box with quadcore cpu and 8 sockets apicid
1689 * will be [4, 0x23] or [8, 0x27] could be thought to
f8fffa45 1690 * vsmp box still need checking...
322850af 1691 */
1cb68487 1692 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
322850af
YL
1693 return 0;
1694
23ca4bba 1695 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
376ec33f 1696 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
1da177e4
LT
1697
1698 for (i = 0; i < NR_CPUS; i++) {
e8c10ef9 1699 /* are we being called early in kernel startup? */
693e3c56
MT
1700 if (bios_cpu_apicid) {
1701 id = bios_cpu_apicid[i];
e8c10ef9 1702 }
1703 else if (i < nr_cpu_ids) {
1704 if (cpu_present(i))
1705 id = per_cpu(x86_bios_cpu_apicid, i);
1706 else
1707 continue;
1708 }
1709 else
1710 break;
1711
1da177e4
LT
1712 if (id != BAD_APICID)
1713 __set_bit(APIC_CLUSTERID(id), clustermap);
1714 }
1715
1716 /* Problem: Partially populated chassis may not have CPUs in some of
1717 * the APIC clusters they have been allocated. Only present CPUs have
602a54a8 1718 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1719 * Since clusters are allocated sequentially, count zeros only if
1720 * they are bounded by ones.
1da177e4
LT
1721 */
1722 clusters = 0;
1723 zeros = 0;
1724 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1725 if (test_bit(i, clustermap)) {
1726 clusters += 1 + zeros;
1727 zeros = 0;
1728 } else
1729 ++zeros;
1730 }
1731
1cb68487
RT
1732 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1733 * not guaranteed to be synced between boards
1734 */
1735 if (is_vsmp_box() && clusters > 1)
1736 return 1;
1737
1da177e4 1738 /*
f8bf3c65 1739 * If clusters > 2, then should be multi-chassis.
1da177e4
LT
1740 * May have to revisit this when multi-core + hyperthreaded CPUs come
1741 * out, but AFAIK this will work even for them.
1742 */
1743 return (clusters > 2);
1744}
1745
6e1cb38a 1746static __init int setup_nox2apic(char *str)
1da177e4 1747{
6e1cb38a
SS
1748 disable_x2apic = 1;
1749 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_X2APIC);
1da177e4
LT
1750 return 0;
1751}
6e1cb38a
SS
1752early_param("nox2apic", setup_nox2apic);
1753
1da177e4 1754
1da177e4 1755/*
0e078e2f 1756 * APIC command line parameters
1da177e4 1757 */
789fa735 1758static int __init setup_disableapic(char *arg)
6935d1f9 1759{
1da177e4 1760 disable_apic = 1;
9175fc06 1761 setup_clear_cpu_cap(X86_FEATURE_APIC);
2c8c0e6b
AK
1762 return 0;
1763}
1764early_param("disableapic", setup_disableapic);
1da177e4 1765
2c8c0e6b 1766/* same as disableapic, for compatibility */
789fa735 1767static int __init setup_nolapic(char *arg)
6935d1f9 1768{
789fa735 1769 return setup_disableapic(arg);
6935d1f9 1770}
2c8c0e6b 1771early_param("nolapic", setup_nolapic);
1da177e4 1772
2e7c2838
LT
1773static int __init parse_lapic_timer_c2_ok(char *arg)
1774{
1775 local_apic_timer_c2_ok = 1;
1776 return 0;
1777}
1778early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1779
36fef094 1780static int __init parse_disable_apic_timer(char *arg)
6935d1f9 1781{
1da177e4 1782 disable_apic_timer = 1;
36fef094 1783 return 0;
6935d1f9 1784}
36fef094
CG
1785early_param("noapictimer", parse_disable_apic_timer);
1786
1787static int __init parse_nolapic_timer(char *arg)
1788{
1789 disable_apic_timer = 1;
1790 return 0;
6935d1f9 1791}
36fef094 1792early_param("nolapic_timer", parse_nolapic_timer);
73dea47f 1793
0c3749c4
AK
1794static __init int setup_apicpmtimer(char *s)
1795{
1796 apic_calibrate_pmtmr = 1;
7fd67843 1797 notsc_setup(NULL);
b8ce3359 1798 return 0;
0c3749c4
AK
1799}
1800__setup("apicpmtimer", setup_apicpmtimer);
1801
79af9bec
CG
1802static int __init apic_set_verbosity(char *arg)
1803{
1804 if (!arg) {
1805#ifdef CONFIG_X86_64
1806 skip_ioapic_setup = 0;
1807 ioapic_force = 1;
1808 return 0;
1809#endif
1810 return -EINVAL;
1811 }
1812
1813 if (strcmp("debug", arg) == 0)
1814 apic_verbosity = APIC_DEBUG;
1815 else if (strcmp("verbose", arg) == 0)
1816 apic_verbosity = APIC_VERBOSE;
1817 else {
1818 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1819 " use apic=verbose or apic=debug\n", arg);
1820 return -EINVAL;
1821 }
1822
1823 return 0;
1824}
1825early_param("apic", apic_set_verbosity);
1826
1e934dda
YL
1827static int __init lapic_insert_resource(void)
1828{
1829 if (!apic_phys)
1830 return -1;
1831
1832 /* Put local APIC into the resource map. */
1833 lapic_resource.start = apic_phys;
1834 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1835 insert_resource(&iomem_resource, &lapic_resource);
1836
1837 return 0;
1838}
1839
1840/*
1841 * need call insert after e820_reserve_resources()
1842 * that is using request_resource
1843 */
1844late_initcall(lapic_insert_resource);
This page took 0.579477 seconds and 5 git commands to generate.