[PATCH] lockdep: debug_show_all_locks & debug_show_held_locks vs. debug_locks
[linux-2.6-block.git] / arch / i386 / kernel / apic.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>
22#include <linux/smp_lock.h>
23#include <linux/interrupt.h>
24#include <linux/mc146818rtc.h>
25#include <linux/kernel_stat.h>
26#include <linux/sysdev.h>
f3705136 27#include <linux/cpu.h>
e9e2cdb4 28#include <linux/clockchips.h>
d36b49b9 29#include <linux/acpi_pmtmr.h>
6eb0a0fd 30#include <linux/module.h>
ad62ca2b 31#include <linux/dmi.h>
1da177e4
LT
32
33#include <asm/atomic.h>
34#include <asm/smp.h>
35#include <asm/mtrr.h>
36#include <asm/mpspec.h>
37#include <asm/desc.h>
38#include <asm/arch_hooks.h>
39#include <asm/hpet.h>
306e440d 40#include <asm/i8253.h>
3e4ff115 41#include <asm/nmi.h>
1da177e4
LT
42
43#include <mach_apic.h>
382dbd07 44#include <mach_apicdef.h>
6eb0a0fd 45#include <mach_ipi.h>
1da177e4
LT
46
47#include "io_ports.h"
48
e05d723f
TG
49/*
50 * Sanity check
51 */
52#if (SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F
53# error SPURIOUS_APIC_VECTOR definition error
54#endif
55
9635b47d
EB
56/*
57 * Knob to control our willingness to enable the local APIC.
e05d723f
TG
58 *
59 * -1=force-disable, +1=force-enable
9635b47d 60 */
e05d723f 61static int enable_local_apic __initdata = 0;
9635b47d 62
d36b49b9
TG
63/* Local APIC timer verification ok */
64static int local_apic_timer_verify_ok;
ad62ca2b
TG
65/* Disable local APIC timer from the kernel commandline or via dmi quirk */
66static int local_apic_timer_disabled;
e9e2cdb4 67
1da177e4 68/*
e05d723f 69 * Debug level, exported for io_apic.c
1da177e4
LT
70 */
71int apic_verbosity;
72
e9e2cdb4 73static unsigned int calibration_result;
1da177e4 74
e9e2cdb4
TG
75static int lapic_next_event(unsigned long delta,
76 struct clock_event_device *evt);
77static void lapic_timer_setup(enum clock_event_mode mode,
78 struct clock_event_device *evt);
79static void lapic_timer_broadcast(cpumask_t mask);
80static void apic_pm_activate(void);
e05d723f 81
e9e2cdb4
TG
82/*
83 * The local apic timer can be used for any function which is CPU local.
84 */
85static struct clock_event_device lapic_clockevent = {
86 .name = "lapic",
87 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
d36b49b9 88 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
e9e2cdb4
TG
89 .shift = 32,
90 .set_mode = lapic_timer_setup,
91 .set_next_event = lapic_next_event,
92 .broadcast = lapic_timer_broadcast,
93 .rating = 100,
94 .irq = -1,
95};
96static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
e05d723f
TG
97
98/* Local APIC was disabled by the BIOS and enabled by the kernel */
99static int enabled_via_apicbase;
100
101/*
102 * Get the LAPIC version
103 */
104static inline int lapic_get_version(void)
95d769aa 105{
e05d723f 106 return GET_APIC_VERSION(apic_read(APIC_LVR));
95d769aa
AK
107}
108
1da177e4 109/*
e05d723f 110 * Check, if the APIC is integrated or a seperate chip
1da177e4 111 */
e05d723f 112static inline int lapic_is_integrated(void)
1da177e4 113{
e05d723f 114 return APIC_INTEGRATED(lapic_get_version());
1da177e4
LT
115}
116
e05d723f
TG
117/*
118 * Check, whether this is a modern or a first generation APIC
119 */
120static int modern_apic(void)
1da177e4 121{
e05d723f
TG
122 /* AMD systems use old APIC versions, so check the CPU */
123 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
124 boot_cpu_data.x86 >= 0xf)
125 return 1;
126 return lapic_get_version() >= 0x14;
1da177e4
LT
127}
128
e05d723f
TG
129/**
130 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
131 */
1da177e4
LT
132void enable_NMI_through_LVT0 (void * dummy)
133{
e05d723f 134 unsigned int v = APIC_DM_NMI;
1da177e4 135
e05d723f
TG
136 /* Level triggered for 82489DX */
137 if (!lapic_is_integrated())
1da177e4
LT
138 v |= APIC_LVT_LEVEL_TRIGGER;
139 apic_write_around(APIC_LVT0, v);
140}
141
e05d723f
TG
142/**
143 * get_physical_broadcast - Get number of physical broadcast IDs
144 */
1da177e4
LT
145int get_physical_broadcast(void)
146{
e05d723f 147 return modern_apic() ? 0xff : 0xf;
1da177e4
LT
148}
149
e05d723f
TG
150/**
151 * lapic_get_maxlvt - get the maximum number of local vector table entries
152 */
153int lapic_get_maxlvt(void)
1da177e4 154{
e05d723f 155 unsigned int v = apic_read(APIC_LVR);
1da177e4 156
1da177e4 157 /* 82489DXs do not report # of LVT entries. */
e05d723f 158 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
1da177e4
LT
159}
160
e05d723f
TG
161/*
162 * Local APIC timer
163 */
164
d36b49b9
TG
165/* Clock divisor is set to 16 */
166#define APIC_DIVISOR 16
e05d723f
TG
167
168/*
169 * This function sets up the local APIC timer, with a timeout of
170 * 'clocks' APIC bus clock. During calibration we actually call
171 * this function twice on the boot CPU, once with a bogus timeout
172 * value, second time for real. The other (noncalibrating) CPUs
173 * call this function only once, with the real, calibrated value.
174 *
175 * We do reads before writes even if unnecessary, to get around the
176 * P5 APIC double write bug.
177 */
e9e2cdb4 178static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
1da177e4 179{
e05d723f 180 unsigned int lvtt_value, tmp_value;
1da177e4 181
e9e2cdb4
TG
182 lvtt_value = LOCAL_TIMER_VECTOR;
183 if (!oneshot)
184 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
e05d723f
TG
185 if (!lapic_is_integrated())
186 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
187
e9e2cdb4 188 if (!irqen)
e05d723f
TG
189 lvtt_value |= APIC_LVT_MASKED;
190
191 apic_write_around(APIC_LVTT, lvtt_value);
1da177e4
LT
192
193 /*
e05d723f 194 * Divide PICLK by 16
1da177e4 195 */
e05d723f
TG
196 tmp_value = apic_read(APIC_TDCR);
197 apic_write_around(APIC_TDCR, (tmp_value
198 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
199 | APIC_TDR_DIV_16);
1da177e4 200
e9e2cdb4
TG
201 if (!oneshot)
202 apic_write_around(APIC_TMICT, clocks/APIC_DIVISOR);
203}
204
205/*
206 * Program the next event, relative to now
207 */
208static int lapic_next_event(unsigned long delta,
209 struct clock_event_device *evt)
210{
211 apic_write_around(APIC_TMICT, delta);
212 return 0;
1da177e4
LT
213}
214
e9e2cdb4
TG
215/*
216 * Setup the lapic timer in periodic or oneshot mode
217 */
218static void lapic_timer_setup(enum clock_event_mode mode,
219 struct clock_event_device *evt)
1da177e4 220{
e05d723f 221 unsigned long flags;
e9e2cdb4 222 unsigned int v;
e05d723f 223
d36b49b9
TG
224 /* Lapic used for broadcast ? */
225 if (!local_apic_timer_verify_ok)
226 return;
227
e05d723f 228 local_irq_save(flags);
1da177e4 229
e9e2cdb4
TG
230 switch (mode) {
231 case CLOCK_EVT_MODE_PERIODIC:
232 case CLOCK_EVT_MODE_ONESHOT:
233 __setup_APIC_LVTT(calibration_result,
234 mode != CLOCK_EVT_MODE_PERIODIC, 1);
235 break;
236 case CLOCK_EVT_MODE_UNUSED:
237 case CLOCK_EVT_MODE_SHUTDOWN:
238 v = apic_read(APIC_LVTT);
239 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
240 apic_write_around(APIC_LVTT, v);
241 break;
242 }
e05d723f
TG
243
244 local_irq_restore(flags);
245}
246
e9e2cdb4
TG
247/*
248 * Local APIC timer broadcast function
249 */
250static void lapic_timer_broadcast(cpumask_t mask)
251{
252#ifdef CONFIG_SMP
253 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
254#endif
255}
256
257/*
258 * Setup the local APIC timer for this CPU. Copy the initilized values
259 * of the boot CPU and register the clock event in the framework.
260 */
261static void __devinit setup_APIC_timer(void)
262{
263 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
264
265 memcpy(levt, &lapic_clockevent, sizeof(*levt));
266 levt->cpumask = cpumask_of_cpu(smp_processor_id());
267
268 clockevents_register_device(levt);
269}
270
ad62ca2b
TG
271/*
272 * Detect systems with known broken BIOS implementations
273 */
274static int __init lapic_check_broken_bios(struct dmi_system_id *d)
275{
276 printk(KERN_NOTICE "%s detected: disabling lapic timer.\n",
277 d->ident);
278 local_apic_timer_disabled = 1;
279 return 0;
280}
281
282static struct dmi_system_id __initdata broken_bios_dmi_table[] = {
283 {
284 /*
285 * BIOS exports only C1 state, but uses deeper power
286 * modes behind the kernels back.
287 */
288 .callback = lapic_check_broken_bios,
289 .ident = "HP nx6325",
290 .matches = {
291 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
292 },
293 },
294 {}
295};
296
e05d723f 297/*
d36b49b9
TG
298 * In this functions we calibrate APIC bus clocks to the external timer.
299 *
300 * We want to do the calibration only once since we want to have local timer
301 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
302 * frequency.
303 *
304 * This was previously done by reading the PIT/HPET and waiting for a wrap
305 * around to find out, that a tick has elapsed. I have a box, where the PIT
306 * readout is broken, so it never gets out of the wait loop again. This was
307 * also reported by others.
e05d723f 308 *
d36b49b9
TG
309 * Monitoring the jiffies value is inaccurate and the clockevents
310 * infrastructure allows us to do a simple substitution of the interrupt
311 * handler.
e9e2cdb4 312 *
d36b49b9
TG
313 * The calibration routine also uses the pm_timer when possible, as the PIT
314 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
315 * back to normal later in the boot process).
e05d723f
TG
316 */
317
d36b49b9 318#define LAPIC_CAL_LOOPS (HZ/10)
e05d723f 319
d36b49b9
TG
320static __initdata volatile int lapic_cal_loops = -1;
321static __initdata long lapic_cal_t1, lapic_cal_t2;
322static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
323static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
324static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
1da177e4 325
d36b49b9
TG
326/*
327 * Temporary interrupt handler.
328 */
329static void __init lapic_cal_handler(struct clock_event_device *dev)
330{
331 unsigned long long tsc = 0;
332 long tapic = apic_read(APIC_TMCCT);
333 unsigned long pm = acpi_pm_read_early();
1da177e4 334
d36b49b9
TG
335 if (cpu_has_tsc)
336 rdtscll(tsc);
337
338 switch (lapic_cal_loops++) {
339 case 0:
340 lapic_cal_t1 = tapic;
341 lapic_cal_tsc1 = tsc;
342 lapic_cal_pm1 = pm;
343 lapic_cal_j1 = jiffies;
344 break;
e05d723f 345
d36b49b9
TG
346 case LAPIC_CAL_LOOPS:
347 lapic_cal_t2 = tapic;
348 lapic_cal_tsc2 = tsc;
349 if (pm < lapic_cal_pm1)
350 pm += ACPI_PM_OVRRUN;
351 lapic_cal_pm2 = pm;
352 lapic_cal_j2 = jiffies;
353 break;
354 }
355}
1da177e4 356
d36b49b9
TG
357/*
358 * Setup the boot APIC
359 *
360 * Calibrate and verify the result.
361 */
362void __init setup_boot_APIC_clock(void)
363{
364 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
365 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
366 const long pm_thresh = pm_100ms/100;
367 void (*real_handler)(struct clock_event_device *dev);
368 unsigned long deltaj;
369 long delta, deltapm;
ca1b940c 370 int pm_referenced = 0;
1da177e4 371
ad62ca2b
TG
372 /* Detect know broken systems */
373 dmi_check_system(broken_bios_dmi_table);
374
375 /*
376 * The local apic timer can be disabled via the kernel
377 * commandline or from the dmi quirk above. Register the lapic
378 * timer as a dummy clock event source on SMP systems, so the
379 * broadcast mechanism is used. On UP systems simply ignore it.
380 */
381 if (local_apic_timer_disabled) {
382 /* No broadcast on UP ! */
383 if (num_possible_cpus() > 1)
384 setup_APIC_timer();
385 return;
386 }
387
d36b49b9
TG
388 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
389 "calibrating APIC timer ...\n");
1da177e4 390
d36b49b9
TG
391 local_irq_disable();
392
393 /* Replace the global interrupt handler */
394 real_handler = global_clock_event->event_handler;
395 global_clock_event->event_handler = lapic_cal_handler;
1da177e4 396
1da177e4 397 /*
d36b49b9
TG
398 * Setup the APIC counter to 1e9. There is no way the lapic
399 * can underflow in the 100ms detection time frame
1da177e4 400 */
d36b49b9 401 __setup_APIC_LVTT(1000000000, 0, 0);
1da177e4 402
d36b49b9
TG
403 /* Let the interrupts run */
404 local_irq_enable();
405
ca1b940c
TG
406 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
407 cpu_relax();
d36b49b9
TG
408
409 local_irq_disable();
410
411 /* Restore the real event handler */
412 global_clock_event->event_handler = real_handler;
413
414 /* Build delta t1-t2 as apic timer counts down */
415 delta = lapic_cal_t1 - lapic_cal_t2;
416 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
417
418 /* Check, if the PM timer is available */
419 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
420 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
421
422 if (deltapm) {
423 unsigned long mult;
424 u64 res;
425
426 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
427
428 if (deltapm > (pm_100ms - pm_thresh) &&
429 deltapm < (pm_100ms + pm_thresh)) {
430 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
431 } else {
432 res = (((u64) deltapm) * mult) >> 22;
433 do_div(res, 1000000);
434 printk(KERN_WARNING "APIC calibration not consistent "
435 "with PM Timer: %ldms instead of 100ms\n",
436 (long)res);
437 /* Correct the lapic counter value */
438 res = (((u64) delta ) * pm_100ms);
439 do_div(res, deltapm);
440 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
441 "%lu (%ld)\n", (unsigned long) res, delta);
442 delta = (long) res;
443 }
ca1b940c 444 pm_referenced = 1;
d36b49b9 445 }
e05d723f 446
e9e2cdb4 447 /* Calculate the scaled math multiplication factor */
d36b49b9 448 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS, 32);
e9e2cdb4
TG
449 lapic_clockevent.max_delta_ns =
450 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
451 lapic_clockevent.min_delta_ns =
452 clockevent_delta2ns(0xF, &lapic_clockevent);
453
d36b49b9
TG
454 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
455
456 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
e9e2cdb4 457 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
d36b49b9
TG
458 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
459 calibration_result);
e9e2cdb4 460
d36b49b9
TG
461 if (cpu_has_tsc) {
462 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
e05d723f 463 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
d36b49b9
TG
464 "%ld.%04ld MHz.\n",
465 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
466 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
467 }
e05d723f
TG
468
469 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
d36b49b9
TG
470 "%u.%04u MHz.\n",
471 calibration_result / (1000000 / HZ),
472 calibration_result % (1000000 / HZ));
e05d723f 473
d36b49b9 474 local_apic_timer_verify_ok = 1;
d36b49b9 475
ca1b940c
TG
476 /* We trust the pm timer based calibration */
477 if (!pm_referenced) {
478 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
d36b49b9 479
ca1b940c
TG
480 /*
481 * Setup the apic timer manually
482 */
483 levt->event_handler = lapic_cal_handler;
484 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
485 lapic_cal_loops = -1;
d36b49b9 486
ca1b940c
TG
487 /* Let the interrupts run */
488 local_irq_enable();
d36b49b9 489
ca1b940c
TG
490 while(lapic_cal_loops <= LAPIC_CAL_LOOPS)
491 cpu_relax();
d36b49b9 492
ca1b940c 493 local_irq_disable();
d36b49b9 494
ca1b940c
TG
495 /* Stop the lapic timer */
496 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
d36b49b9 497
ca1b940c 498 local_irq_enable();
d36b49b9 499
ca1b940c
TG
500 /* Jiffies delta */
501 deltaj = lapic_cal_j2 - lapic_cal_j1;
502 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
d36b49b9 503
d36b49b9 504 /* Check, if the jiffies result is consistent */
ca1b940c 505 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
d36b49b9 506 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
ca1b940c
TG
507 else
508 local_apic_timer_verify_ok = 0;
d36b49b9 509 }
e05d723f 510
d36b49b9
TG
511 if (!local_apic_timer_verify_ok) {
512 printk(KERN_WARNING
513 "APIC timer disabled due to verification failure.\n");
514 /* No broadcast on UP ! */
515 if (num_possible_cpus() == 1)
516 return;
a5f5e43e
TG
517 } else {
518 /*
519 * If nmi_watchdog is set to IO_APIC, we need the
520 * PIT/HPET going. Otherwise register lapic as a dummy
521 * device.
522 */
523 if (nmi_watchdog != NMI_IO_APIC)
524 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
525 }
d36b49b9
TG
526
527 /* Setup the lapic or request the broadcast */
528 setup_APIC_timer();
e05d723f 529}
1da177e4 530
e05d723f
TG
531void __devinit setup_secondary_APIC_clock(void)
532{
e9e2cdb4 533 setup_APIC_timer();
e05d723f 534}
1da177e4 535
e05d723f 536/*
e9e2cdb4 537 * The guts of the apic timer interrupt
e05d723f 538 */
e9e2cdb4 539static void local_apic_timer_interrupt(void)
e05d723f 540{
e9e2cdb4
TG
541 int cpu = smp_processor_id();
542 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
1da177e4
LT
543
544 /*
d36b49b9
TG
545 * Normally we should not be here till LAPIC has been initialized but
546 * in some cases like kdump, its possible that there is a pending LAPIC
547 * timer interrupt from previous kernel's context and is delivered in
548 * new kernel the moment interrupts are enabled.
e05d723f 549 *
d36b49b9
TG
550 * Interrupts are enabled early and LAPIC is setup much later, hence
551 * its possible that when we get here evt->event_handler is NULL.
552 * Check for event_handler being NULL and discard the interrupt as
553 * spurious.
1da177e4 554 */
e9e2cdb4
TG
555 if (!evt->event_handler) {
556 printk(KERN_WARNING
557 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
558 /* Switch it off */
559 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
560 return;
561 }
562
563 per_cpu(irq_stat, cpu).apic_timer_irqs++;
564
565 evt->event_handler(evt);
e05d723f
TG
566}
567
568/*
569 * Local APIC timer interrupt. This is the most natural way for doing
570 * local interrupts, but local timer interrupts can be emulated by
571 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
572 *
573 * [ if a single-CPU system runs an SMP kernel then we call the local
574 * interrupt as well. Thus we cannot inline the local irq ... ]
575 */
576
e9e2cdb4 577void fastcall smp_apic_timer_interrupt(struct pt_regs *regs)
e05d723f
TG
578{
579 struct pt_regs *old_regs = set_irq_regs(regs);
1da177e4
LT
580
581 /*
e05d723f
TG
582 * NOTE! We'd better ACK the irq immediately,
583 * because timer handling can be slow.
1da177e4 584 */
e05d723f 585 ack_APIC_irq();
1a75a3f0 586 /*
e05d723f
TG
587 * update_process_times() expects us to have done irq_enter().
588 * Besides, if we don't timer interrupts ignore the global
589 * interrupt lock, which is the WrongThing (tm) to do.
1a75a3f0 590 */
e05d723f 591 irq_enter();
e9e2cdb4 592 local_apic_timer_interrupt();
e05d723f 593 irq_exit();
1a75a3f0 594
e9e2cdb4 595 set_irq_regs(old_regs);
e05d723f
TG
596}
597
598int setup_profiling_timer(unsigned int multiplier)
599{
600 return -EINVAL;
601}
602
603/*
604 * Local APIC start and shutdown
605 */
606
607/**
608 * clear_local_APIC - shutdown the local APIC
609 *
610 * This is called, when a CPU is disabled and before rebooting, so the state of
611 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
612 * leftovers during boot.
613 */
614void clear_local_APIC(void)
615{
616 int maxlvt = lapic_get_maxlvt();
617 unsigned long v;
1da177e4
LT
618
619 /*
e05d723f
TG
620 * Masking an LVT entry can trigger a local APIC error
621 * if the vector is zero. Mask LVTERR first to prevent this.
1da177e4 622 */
e05d723f
TG
623 if (maxlvt >= 3) {
624 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
625 apic_write_around(APIC_LVTERR, v | APIC_LVT_MASKED);
626 }
1da177e4 627 /*
e05d723f
TG
628 * Careful: we have to set masks only first to deassert
629 * any level-triggered sources.
1da177e4 630 */
e05d723f
TG
631 v = apic_read(APIC_LVTT);
632 apic_write_around(APIC_LVTT, v | APIC_LVT_MASKED);
633 v = apic_read(APIC_LVT0);
634 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
635 v = apic_read(APIC_LVT1);
636 apic_write_around(APIC_LVT1, v | APIC_LVT_MASKED);
637 if (maxlvt >= 4) {
638 v = apic_read(APIC_LVTPC);
639 apic_write_around(APIC_LVTPC, v | APIC_LVT_MASKED);
1da177e4 640 }
1da177e4 641
e05d723f
TG
642 /* lets not touch this if we didn't frob it */
643#ifdef CONFIG_X86_MCE_P4THERMAL
644 if (maxlvt >= 5) {
645 v = apic_read(APIC_LVTTHMR);
646 apic_write_around(APIC_LVTTHMR, v | APIC_LVT_MASKED);
647 }
648#endif
1da177e4 649 /*
e05d723f 650 * Clean APIC state for other OSs:
1da177e4 651 */
e05d723f
TG
652 apic_write_around(APIC_LVTT, APIC_LVT_MASKED);
653 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
654 apic_write_around(APIC_LVT1, APIC_LVT_MASKED);
655 if (maxlvt >= 3)
656 apic_write_around(APIC_LVTERR, APIC_LVT_MASKED);
657 if (maxlvt >= 4)
658 apic_write_around(APIC_LVTPC, APIC_LVT_MASKED);
1da177e4 659
e05d723f
TG
660#ifdef CONFIG_X86_MCE_P4THERMAL
661 if (maxlvt >= 5)
662 apic_write_around(APIC_LVTTHMR, APIC_LVT_MASKED);
663#endif
664 /* Integrated APIC (!82489DX) ? */
665 if (lapic_is_integrated()) {
1da177e4 666 if (maxlvt > 3)
e05d723f 667 /* Clear ESR due to Pentium errata 3AP and 11AP */
1da177e4 668 apic_write(APIC_ESR, 0);
e05d723f 669 apic_read(APIC_ESR);
1da177e4 670 }
e05d723f 671}
1da177e4 672
e05d723f
TG
673/**
674 * disable_local_APIC - clear and disable the local APIC
675 */
676void disable_local_APIC(void)
677{
678 unsigned long value;
679
680 clear_local_APIC();
681
682 /*
683 * Disable APIC (implies clearing of registers
684 * for 82489DX!).
685 */
686 value = apic_read(APIC_SPIV);
687 value &= ~APIC_SPIV_APIC_ENABLED;
688 apic_write_around(APIC_SPIV, value);
689
690 /*
691 * When LAPIC was disabled by the BIOS and enabled by the kernel,
692 * restore the disabled state.
693 */
694 if (enabled_via_apicbase) {
695 unsigned int l, h;
696
697 rdmsr(MSR_IA32_APICBASE, l, h);
698 l &= ~MSR_IA32_APICBASE_ENABLE;
699 wrmsr(MSR_IA32_APICBASE, l, h);
700 }
1da177e4
LT
701}
702
703/*
e05d723f
TG
704 * If Linux enabled the LAPIC against the BIOS default disable it down before
705 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
706 * not power-off. Additionally clear all LVT entries before disable_local_APIC
77f72b19 707 * for the case where Linux didn't enable the LAPIC.
1da177e4
LT
708 */
709void lapic_shutdown(void)
710{
67963132
MS
711 unsigned long flags;
712
77f72b19 713 if (!cpu_has_apic)
1da177e4
LT
714 return;
715
67963132 716 local_irq_save(flags);
77f72b19
ZM
717 clear_local_APIC();
718
719 if (enabled_via_apicbase)
720 disable_local_APIC();
721
67963132 722 local_irq_restore(flags);
1da177e4
LT
723}
724
e05d723f
TG
725/*
726 * This is to verify that we're looking at a real local APIC.
727 * Check these against your board if the CPUs aren't getting
728 * started for no apparent reason.
729 */
730int __init verify_local_APIC(void)
1da177e4 731{
e05d723f 732 unsigned int reg0, reg1;
1da177e4 733
e05d723f
TG
734 /*
735 * The version register is read-only in a real APIC.
736 */
737 reg0 = apic_read(APIC_LVR);
738 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
739 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
740 reg1 = apic_read(APIC_LVR);
741 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
742
743 /*
744 * The two version reads above should print the same
745 * numbers. If the second one is different, then we
746 * poke at a non-APIC.
747 */
748 if (reg1 != reg0)
1da177e4
LT
749 return 0;
750
e05d723f
TG
751 /*
752 * Check if the version looks reasonably.
753 */
754 reg1 = GET_APIC_VERSION(reg0);
755 if (reg1 == 0x00 || reg1 == 0xff)
756 return 0;
757 reg1 = lapic_get_maxlvt();
758 if (reg1 < 0x02 || reg1 == 0xff)
759 return 0;
f990fff4 760
e05d723f
TG
761 /*
762 * The ID register is read/write in a real APIC.
763 */
764 reg0 = apic_read(APIC_ID);
765 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
766
767 /*
768 * The next two are just to see if we have sane values.
769 * They're only really relevant if we're in Virtual Wire
770 * compatibility mode, but most boxes are anymore.
771 */
772 reg0 = apic_read(APIC_LVT0);
773 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
774 reg1 = apic_read(APIC_LVT1);
775 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
776
777 return 1;
1da177e4
LT
778}
779
e05d723f
TG
780/**
781 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
782 */
783void __init sync_Arb_IDs(void)
1da177e4 784{
e05d723f
TG
785 /*
786 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
787 * needed on AMD.
788 */
789 if (modern_apic())
790 return;
791 /*
792 * Wait for idle.
793 */
794 apic_wait_icr_idle();
1da177e4 795
e05d723f
TG
796 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
797 apic_write_around(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
798 | APIC_DM_INIT);
799}
1da177e4 800
e05d723f
TG
801/*
802 * An initial setup of the virtual wire mode.
803 */
804void __init init_bsp_APIC(void)
805{
806 unsigned long value;
f990fff4 807
e05d723f
TG
808 /*
809 * Don't do the setup now if we have a SMP BIOS as the
810 * through-I/O-APIC virtual wire mode might be active.
811 */
812 if (smp_found_config || !cpu_has_apic)
813 return;
1da177e4
LT
814
815 /*
e05d723f 816 * Do not trust the local APIC being empty at bootup.
1da177e4 817 */
e05d723f 818 clear_local_APIC();
1da177e4 819
e05d723f
TG
820 /*
821 * Enable APIC.
822 */
823 value = apic_read(APIC_SPIV);
824 value &= ~APIC_VECTOR_MASK;
825 value |= APIC_SPIV_APIC_ENABLED;
826
827 /* This bit is reserved on P4/Xeon and should be cleared */
828 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
829 (boot_cpu_data.x86 == 15))
830 value &= ~APIC_SPIV_FOCUS_DISABLED;
831 else
832 value |= APIC_SPIV_FOCUS_DISABLED;
833 value |= SPURIOUS_APIC_VECTOR;
834 apic_write_around(APIC_SPIV, value);
835
836 /*
837 * Set up the virtual wire mode.
838 */
839 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
840 value = APIC_DM_NMI;
841 if (!lapic_is_integrated()) /* 82489DX */
842 value |= APIC_LVT_LEVEL_TRIGGER;
843 apic_write_around(APIC_LVT1, value);
1da177e4
LT
844}
845
e05d723f
TG
846/**
847 * setup_local_APIC - setup the local APIC
1da177e4 848 */
e05d723f
TG
849void __devinit setup_local_APIC(void)
850{
851 unsigned long oldvalue, value, maxlvt, integrated;
852 int i, j;
1da177e4 853
e05d723f
TG
854 /* Pound the ESR really hard over the head with a big hammer - mbligh */
855 if (esr_disable) {
856 apic_write(APIC_ESR, 0);
857 apic_write(APIC_ESR, 0);
858 apic_write(APIC_ESR, 0);
859 apic_write(APIC_ESR, 0);
860 }
1da177e4 861
e05d723f 862 integrated = lapic_is_integrated();
1da177e4 863
e05d723f
TG
864 /*
865 * Double-check whether this APIC is really registered.
866 */
867 if (!apic_id_registered())
868 BUG();
1da177e4 869
e05d723f
TG
870 /*
871 * Intel recommends to set DFR, LDR and TPR before enabling
872 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
873 * document number 292116). So here it goes...
874 */
875 init_apic_ldr();
1da177e4 876
e05d723f
TG
877 /*
878 * Set Task Priority to 'accept all'. We never change this
879 * later on.
880 */
881 value = apic_read(APIC_TASKPRI);
882 value &= ~APIC_TPRI_MASK;
883 apic_write_around(APIC_TASKPRI, value);
1da177e4 884
e05d723f
TG
885 /*
886 * After a crash, we no longer service the interrupts and a pending
887 * interrupt from previous kernel might still have ISR bit set.
888 *
889 * Most probably by now CPU has serviced that pending interrupt and
890 * it might not have done the ack_APIC_irq() because it thought,
891 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
892 * does not clear the ISR bit and cpu thinks it has already serivced
893 * the interrupt. Hence a vector might get locked. It was noticed
894 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
895 */
896 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
897 value = apic_read(APIC_ISR + i*0x10);
898 for (j = 31; j >= 0; j--) {
899 if (value & (1<<j))
900 ack_APIC_irq();
901 }
902 }
1da177e4 903
e05d723f
TG
904 /*
905 * Now that we are all set up, enable the APIC
906 */
907 value = apic_read(APIC_SPIV);
908 value &= ~APIC_VECTOR_MASK;
909 /*
910 * Enable APIC
911 */
912 value |= APIC_SPIV_APIC_ENABLED;
1da177e4 913
e05d723f
TG
914 /*
915 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
916 * certain networking cards. If high frequency interrupts are
917 * happening on a particular IOAPIC pin, plus the IOAPIC routing
918 * entry is masked/unmasked at a high rate as well then sooner or
919 * later IOAPIC line gets 'stuck', no more interrupts are received
920 * from the device. If focus CPU is disabled then the hang goes
921 * away, oh well :-(
922 *
923 * [ This bug can be reproduced easily with a level-triggered
924 * PCI Ne2000 networking cards and PII/PIII processors, dual
925 * BX chipset. ]
926 */
927 /*
928 * Actually disabling the focus CPU check just makes the hang less
929 * frequent as it makes the interrupt distributon model be more
930 * like LRU than MRU (the short-term load is more even across CPUs).
931 * See also the comment in end_level_ioapic_irq(). --macro
932 */
1da177e4 933
e05d723f
TG
934 /* Enable focus processor (bit==0) */
935 value &= ~APIC_SPIV_FOCUS_DISABLED;
1da177e4 936
e05d723f
TG
937 /*
938 * Set spurious IRQ vector
939 */
940 value |= SPURIOUS_APIC_VECTOR;
941 apic_write_around(APIC_SPIV, value);
942
943 /*
944 * Set up LVT0, LVT1:
945 *
946 * set up through-local-APIC on the BP's LINT0. This is not
947 * strictly necessery in pure symmetric-IO mode, but sometimes
948 * we delegate interrupts to the 8259A.
949 */
950 /*
951 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
952 */
953 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
954 if (!smp_processor_id() && (pic_mode || !value)) {
955 value = APIC_DM_EXTINT;
956 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
957 smp_processor_id());
958 } else {
959 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
960 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
961 smp_processor_id());
962 }
963 apic_write_around(APIC_LVT0, value);
964
965 /*
966 * only the BP should see the LINT1 NMI signal, obviously.
967 */
968 if (!smp_processor_id())
969 value = APIC_DM_NMI;
970 else
971 value = APIC_DM_NMI | APIC_LVT_MASKED;
972 if (!integrated) /* 82489DX */
973 value |= APIC_LVT_LEVEL_TRIGGER;
974 apic_write_around(APIC_LVT1, value);
975
976 if (integrated && !esr_disable) { /* !82489DX */
977 maxlvt = lapic_get_maxlvt();
978 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
979 apic_write(APIC_ESR, 0);
980 oldvalue = apic_read(APIC_ESR);
981
982 /* enables sending errors */
983 value = ERROR_APIC_VECTOR;
984 apic_write_around(APIC_LVTERR, value);
985 /*
986 * spec says clear errors after enabling vector.
987 */
988 if (maxlvt > 3)
989 apic_write(APIC_ESR, 0);
990 value = apic_read(APIC_ESR);
991 if (value != oldvalue)
992 apic_printk(APIC_VERBOSE, "ESR value before enabling "
993 "vector: 0x%08lx after: 0x%08lx\n",
994 oldvalue, value);
995 } else {
996 if (esr_disable)
997 /*
998 * Something untraceble is creating bad interrupts on
999 * secondary quads ... for the moment, just leave the
1000 * ESR disabled - we can't do anything useful with the
1001 * errors anyway - mbligh
1002 */
1003 printk(KERN_INFO "Leaving ESR disabled.\n");
1004 else
1005 printk(KERN_INFO "No ESR for 82489DX.\n");
1006 }
1da177e4 1007
e9e2cdb4
TG
1008 /* Disable the local apic timer */
1009 value = apic_read(APIC_LVTT);
1010 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1011 apic_write_around(APIC_LVTT, value);
1012
e05d723f
TG
1013 setup_apic_nmi_watchdog(NULL);
1014 apic_pm_activate();
1da177e4
LT
1015}
1016
e05d723f
TG
1017/*
1018 * Detect and initialize APIC
1019 */
1da177e4
LT
1020static int __init detect_init_APIC (void)
1021{
1022 u32 h, l, features;
1da177e4
LT
1023
1024 /* Disabled by kernel option? */
1025 if (enable_local_apic < 0)
1026 return -1;
1027
1da177e4
LT
1028 switch (boot_cpu_data.x86_vendor) {
1029 case X86_VENDOR_AMD:
1030 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
e05d723f 1031 (boot_cpu_data.x86 == 15))
1da177e4
LT
1032 break;
1033 goto no_apic;
1034 case X86_VENDOR_INTEL:
1035 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1036 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1037 break;
1038 goto no_apic;
1039 default:
1040 goto no_apic;
1041 }
1042
1043 if (!cpu_has_apic) {
1044 /*
e05d723f
TG
1045 * Over-ride BIOS and try to enable the local APIC only if
1046 * "lapic" specified.
1da177e4
LT
1047 */
1048 if (enable_local_apic <= 0) {
e05d723f 1049 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1da177e4
LT
1050 "you can enable it with \"lapic\"\n");
1051 return -1;
1052 }
1053 /*
e05d723f
TG
1054 * Some BIOSes disable the local APIC in the APIC_BASE
1055 * MSR. This can only be done in software for Intel P6 or later
1056 * and AMD K7 (Model > 1) or later.
1da177e4
LT
1057 */
1058 rdmsr(MSR_IA32_APICBASE, l, h);
1059 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
e05d723f
TG
1060 printk(KERN_INFO
1061 "Local APIC disabled by BIOS -- reenabling.\n");
1da177e4
LT
1062 l &= ~MSR_IA32_APICBASE_BASE;
1063 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1064 wrmsr(MSR_IA32_APICBASE, l, h);
1065 enabled_via_apicbase = 1;
1066 }
1067 }
1068 /*
1069 * The APIC feature bit should now be enabled
1070 * in `cpuid'
1071 */
1072 features = cpuid_edx(1);
1073 if (!(features & (1 << X86_FEATURE_APIC))) {
e05d723f 1074 printk(KERN_WARNING "Could not enable APIC!\n");
1da177e4
LT
1075 return -1;
1076 }
1077 set_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1078 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1079
1080 /* The BIOS may have set up the APIC at some other address */
1081 rdmsr(MSR_IA32_APICBASE, l, h);
e05d723f
TG
1082 if (l & MSR_IA32_APICBASE_ENABLE)
1083 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1da177e4 1084
e05d723f
TG
1085 if (nmi_watchdog != NMI_NONE)
1086 nmi_watchdog = NMI_LOCAL_APIC;
1da177e4 1087
e05d723f 1088 printk(KERN_INFO "Found and enabled local APIC!\n");
1da177e4 1089
e05d723f 1090 apic_pm_activate();
1da177e4 1091
e05d723f 1092 return 0;
1da177e4 1093
e05d723f
TG
1094no_apic:
1095 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1096 return -1;
1097}
1da177e4 1098
e05d723f
TG
1099/**
1100 * init_apic_mappings - initialize APIC mappings
1101 */
1102void __init init_apic_mappings(void)
1da177e4 1103{
e05d723f 1104 unsigned long apic_phys;
1da177e4 1105
1da177e4 1106 /*
e05d723f
TG
1107 * If no local APIC can be found then set up a fake all
1108 * zeroes page to simulate the local APIC and another
1109 * one for the IO-APIC.
1da177e4 1110 */
e05d723f
TG
1111 if (!smp_found_config && detect_init_APIC()) {
1112 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1113 apic_phys = __pa(apic_phys);
1114 } else
1115 apic_phys = mp_lapic_addr;
1da177e4 1116
e05d723f
TG
1117 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1118 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1119 apic_phys);
1da177e4 1120
e05d723f
TG
1121 /*
1122 * Fetch the APIC ID of the BSP in case we have a
1123 * default configuration (or the MP table is broken).
1124 */
1125 if (boot_cpu_physical_apicid == -1U)
1126 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
1da177e4 1127
e05d723f
TG
1128#ifdef CONFIG_X86_IO_APIC
1129 {
1130 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
1131 int i;
1da177e4 1132
e05d723f
TG
1133 for (i = 0; i < nr_ioapics; i++) {
1134 if (smp_found_config) {
1135 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
1136 if (!ioapic_phys) {
1137 printk(KERN_ERR
1138 "WARNING: bogus zero IO-APIC "
1139 "address found in MPTABLE, "
1140 "disabling IO/APIC support!\n");
1141 smp_found_config = 0;
1142 skip_ioapic_setup = 1;
1143 goto fake_ioapic_page;
1144 }
1145 } else {
1146fake_ioapic_page:
1147 ioapic_phys = (unsigned long)
1148 alloc_bootmem_pages(PAGE_SIZE);
1149 ioapic_phys = __pa(ioapic_phys);
1150 }
1151 set_fixmap_nocache(idx, ioapic_phys);
1152 printk(KERN_DEBUG "mapped IOAPIC to %08lx (%08lx)\n",
1153 __fix_to_virt(idx), ioapic_phys);
1154 idx++;
1155 }
1da177e4 1156 }
e05d723f 1157#endif
1da177e4
LT
1158}
1159
e05d723f
TG
1160/*
1161 * This initializes the IO-APIC and APIC hardware if this is
1162 * a UP kernel.
1163 */
1164int __init APIC_init_uniprocessor (void)
1da177e4 1165{
e05d723f
TG
1166 if (enable_local_apic < 0)
1167 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1da177e4 1168
e05d723f
TG
1169 if (!smp_found_config && !cpu_has_apic)
1170 return -1;
6eb0a0fd 1171
e05d723f
TG
1172 /*
1173 * Complain if the BIOS pretends there is one.
1174 */
1175 if (!cpu_has_apic &&
1176 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
1177 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1178 boot_cpu_physical_apicid);
1179 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1180 return -1;
6eb0a0fd 1181 }
6eb0a0fd 1182
e05d723f 1183 verify_local_APIC();
6eb0a0fd 1184
e05d723f 1185 connect_bsp_APIC();
6eb0a0fd 1186
e05d723f
TG
1187 /*
1188 * Hack: In case of kdump, after a crash, kernel might be booting
1189 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1190 * might be zero if read from MP tables. Get it from LAPIC.
1191 */
1192#ifdef CONFIG_CRASH_DUMP
1193 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
1194#endif
1195 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
1da177e4 1196
e05d723f 1197 setup_local_APIC();
1da177e4 1198
e05d723f
TG
1199#ifdef CONFIG_X86_IO_APIC
1200 if (smp_found_config)
1201 if (!skip_ioapic_setup && nr_ioapics)
1202 setup_IO_APIC();
1da177e4 1203#endif
e05d723f 1204 setup_boot_clock();
1da177e4 1205
e05d723f 1206 return 0;
1da177e4
LT
1207}
1208
1209/*
e05d723f 1210 * APIC command line parameters
1da177e4 1211 */
e05d723f 1212static int __init parse_lapic(char *arg)
6eb0a0fd 1213{
e05d723f
TG
1214 enable_local_apic = 1;
1215 return 0;
6eb0a0fd 1216}
e05d723f 1217early_param("lapic", parse_lapic);
6eb0a0fd 1218
e05d723f 1219static int __init parse_nolapic(char *arg)
6eb0a0fd 1220{
e05d723f
TG
1221 enable_local_apic = -1;
1222 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1223 return 0;
6eb0a0fd 1224}
e05d723f 1225early_param("nolapic", parse_nolapic);
6eb0a0fd 1226
ad62ca2b
TG
1227static int __init parse_disable_lapic_timer(char *arg)
1228{
1229 local_apic_timer_disabled = 1;
1230 return 0;
1231}
1232early_param("nolapic_timer", parse_disable_lapic_timer);
1233
e05d723f 1234static int __init apic_set_verbosity(char *str)
5a07a30c 1235{
e05d723f
TG
1236 if (strcmp("debug", str) == 0)
1237 apic_verbosity = APIC_DEBUG;
1238 else if (strcmp("verbose", str) == 0)
1239 apic_verbosity = APIC_VERBOSE;
1240 return 1;
5a07a30c
VP
1241}
1242
e05d723f
TG
1243__setup("apic=", apic_set_verbosity);
1244
1245
1246/*
1247 * Local APIC interrupts
1248 */
1249
1da177e4
LT
1250/*
1251 * This interrupt should _never_ happen with our APIC/SMP architecture
1252 */
e9e2cdb4 1253void smp_spurious_interrupt(struct pt_regs *regs)
1da177e4
LT
1254{
1255 unsigned long v;
1256
1257 irq_enter();
1258 /*
1259 * Check if this really is a spurious interrupt and ACK it
1260 * if it is a vectored one. Just in case...
1261 * Spurious interrupts should not be ACKed.
1262 */
1263 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1264 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1265 ack_APIC_irq();
1266
1267 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
e05d723f
TG
1268 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1269 "should never happen.\n", smp_processor_id());
1da177e4
LT
1270 irq_exit();
1271}
1272
1273/*
1274 * This interrupt should never happen with our APIC/SMP architecture
1275 */
e9e2cdb4 1276void smp_error_interrupt(struct pt_regs *regs)
1da177e4
LT
1277{
1278 unsigned long v, v1;
1279
1280 irq_enter();
1281 /* First tickle the hardware, only then report what went on. -- REW */
1282 v = apic_read(APIC_ESR);
1283 apic_write(APIC_ESR, 0);
1284 v1 = apic_read(APIC_ESR);
1285 ack_APIC_irq();
1286 atomic_inc(&irq_err_count);
1287
1288 /* Here is what the APIC error bits mean:
1289 0: Send CS error
1290 1: Receive CS error
1291 2: Send accept error
1292 3: Receive accept error
1293 4: Reserved
1294 5: Send illegal vector
1295 6: Received illegal vector
1296 7: Illegal register address
1297 */
1298 printk (KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
e05d723f 1299 smp_processor_id(), v , v1);
1da177e4
LT
1300 irq_exit();
1301}
1302
1303/*
e05d723f 1304 * Initialize APIC interrupts
1da177e4 1305 */
e05d723f 1306void __init apic_intr_init(void)
1da177e4 1307{
e05d723f
TG
1308#ifdef CONFIG_SMP
1309 smp_intr_init();
1310#endif
1311 /* self generated IPI for local APIC timer */
1312 set_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
1da177e4 1313
e05d723f
TG
1314 /* IPI vectors for APIC spurious and error interrupts */
1315 set_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
1316 set_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
1da177e4 1317
e05d723f
TG
1318 /* thermal monitor LVT interrupt */
1319#ifdef CONFIG_X86_MCE_P4THERMAL
1320 set_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
1321#endif
1322}
1323
1324/**
1325 * connect_bsp_APIC - attach the APIC to the interrupt system
1326 */
1327void __init connect_bsp_APIC(void)
1328{
1329 if (pic_mode) {
1330 /*
1331 * Do not trust the local APIC being empty at bootup.
1332 */
1333 clear_local_APIC();
1334 /*
1335 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1336 * local APIC to INT and NMI lines.
1337 */
1338 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1339 "enabling APIC mode.\n");
1340 outb(0x70, 0x22);
1341 outb(0x01, 0x23);
1da177e4 1342 }
e05d723f
TG
1343 enable_apic_mode();
1344}
1da177e4 1345
e05d723f
TG
1346/**
1347 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1348 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1349 *
1350 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1351 * APIC is disabled.
1352 */
1353void disconnect_bsp_APIC(int virt_wire_setup)
1354{
1355 if (pic_mode) {
1356 /*
1357 * Put the board back into PIC mode (has an effect only on
1358 * certain older boards). Note that APIC interrupts, including
1359 * IPIs, won't work beyond this point! The only exception are
1360 * INIT IPIs.
1361 */
1362 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1363 "entering PIC mode.\n");
1364 outb(0x70, 0x22);
1365 outb(0x00, 0x23);
1366 } else {
1367 /* Go back to Virtual Wire compatibility mode */
1368 unsigned long value;
1da177e4 1369
e05d723f
TG
1370 /* For the spurious interrupt use vector F, and enable it */
1371 value = apic_read(APIC_SPIV);
1372 value &= ~APIC_VECTOR_MASK;
1373 value |= APIC_SPIV_APIC_ENABLED;
1374 value |= 0xf;
1375 apic_write_around(APIC_SPIV, value);
1da177e4 1376
e05d723f
TG
1377 if (!virt_wire_setup) {
1378 /*
1379 * For LVT0 make it edge triggered, active high,
1380 * external and enabled
1381 */
1382 value = apic_read(APIC_LVT0);
1383 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1384 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1385 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED );
1386 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1387 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1388 apic_write_around(APIC_LVT0, value);
1389 } else {
1390 /* Disable LVT0 */
1391 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
1392 }
1da177e4 1393
e05d723f
TG
1394 /*
1395 * For LVT1 make it edge triggered, active high, nmi and
1396 * enabled
1397 */
1398 value = apic_read(APIC_LVT1);
1399 value &= ~(
1400 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_NMI);
1405 apic_write_around(APIC_LVT1, value);
1406 }
1407}
1da177e4 1408
e05d723f
TG
1409/*
1410 * Power management
1411 */
1412#ifdef CONFIG_PM
1413
1414static struct {
1415 int active;
1416 /* r/w apic fields */
1417 unsigned int apic_id;
1418 unsigned int apic_taskpri;
1419 unsigned int apic_ldr;
1420 unsigned int apic_dfr;
1421 unsigned int apic_spiv;
1422 unsigned int apic_lvtt;
1423 unsigned int apic_lvtpc;
1424 unsigned int apic_lvt0;
1425 unsigned int apic_lvt1;
1426 unsigned int apic_lvterr;
1427 unsigned int apic_tmict;
1428 unsigned int apic_tdcr;
1429 unsigned int apic_thmr;
1430} apic_pm_state;
1431
1432static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1433{
1434 unsigned long flags;
1435 int maxlvt;
1436
1437 if (!apic_pm_state.active)
1438 return 0;
1439
1440 maxlvt = lapic_get_maxlvt();
1441
1442 apic_pm_state.apic_id = apic_read(APIC_ID);
1443 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1444 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1445 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1446 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1447 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1448 if (maxlvt >= 4)
1449 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1450 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1451 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1452 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1453 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1454 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1455#ifdef CONFIG_X86_MCE_P4THERMAL
1456 if (maxlvt >= 5)
1457 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1da177e4 1458#endif
1e4c85f9 1459
e05d723f
TG
1460 local_irq_save(flags);
1461 disable_local_APIC();
1462 local_irq_restore(flags);
1e4c85f9 1463 return 0;
1da177e4 1464}
1a3f239d 1465
e05d723f 1466static int lapic_resume(struct sys_device *dev)
1a3f239d 1467{
e05d723f
TG
1468 unsigned int l, h;
1469 unsigned long flags;
1470 int maxlvt;
1471
1472 if (!apic_pm_state.active)
1473 return 0;
1474
1475 maxlvt = lapic_get_maxlvt();
1476
1477 local_irq_save(flags);
1478
1479 /*
1480 * Make sure the APICBASE points to the right address
1481 *
1482 * FIXME! This will be wrong if we ever support suspend on
1483 * SMP! We'll need to do this as part of the CPU restore!
1484 */
1485 rdmsr(MSR_IA32_APICBASE, l, h);
1486 l &= ~MSR_IA32_APICBASE_BASE;
1487 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1488 wrmsr(MSR_IA32_APICBASE, l, h);
1489
1490 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1491 apic_write(APIC_ID, apic_pm_state.apic_id);
1492 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1493 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1494 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1495 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1496 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1497 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1498#ifdef CONFIG_X86_MCE_P4THERMAL
1499 if (maxlvt >= 5)
1500 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1501#endif
1502 if (maxlvt >= 4)
1503 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1504 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1505 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1506 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1507 apic_write(APIC_ESR, 0);
1508 apic_read(APIC_ESR);
1509 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1510 apic_write(APIC_ESR, 0);
1511 apic_read(APIC_ESR);
1512 local_irq_restore(flags);
1a3f239d
RR
1513 return 0;
1514}
1a3f239d 1515
e05d723f
TG
1516/*
1517 * This device has no shutdown method - fully functioning local APICs
1518 * are needed on every CPU up until machine_halt/restart/poweroff.
1519 */
1520
1521static struct sysdev_class lapic_sysclass = {
1522 set_kset_name("lapic"),
1523 .resume = lapic_resume,
1524 .suspend = lapic_suspend,
1525};
1526
1527static struct sys_device device_lapic = {
1528 .id = 0,
1529 .cls = &lapic_sysclass,
1530};
1531
1532static void __devinit apic_pm_activate(void)
1a3f239d 1533{
e05d723f 1534 apic_pm_state.active = 1;
1a3f239d 1535}
1a3f239d 1536
e05d723f
TG
1537static int __init init_lapic_sysfs(void)
1538{
1539 int error;
1540
1541 if (!cpu_has_apic)
1542 return 0;
1543 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1544
1545 error = sysdev_class_register(&lapic_sysclass);
1546 if (!error)
1547 error = sysdev_register(&device_lapic);
1548 return error;
1549}
1550device_initcall(init_lapic_sysfs);
1551
1552#else /* CONFIG_PM */
1553
1554static void apic_pm_activate(void) { }
1555
1556#endif /* CONFIG_PM */