2 * Local APIC handling, local APIC timers
4 * (c) 1999, 2000 Ingo Molnar <mingo@redhat.com>
7 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
8 * thanks to Eric Gilmore
10 * for testing these extensively.
11 * Maciej W. Rozycki : Various updates and fixes.
12 * Mikael Pettersson : Power Management for UP-APIC.
14 * Mikael Pettersson : PM converted to driver model.
17 #include <linux/init.h>
20 #include <linux/delay.h>
21 #include <linux/bootmem.h>
22 #include <linux/interrupt.h>
23 #include <linux/mc146818rtc.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/sysdev.h>
26 #include <linux/cpu.h>
27 #include <linux/clockchips.h>
28 #include <linux/acpi_pmtmr.h>
29 #include <linux/module.h>
30 #include <linux/dmi.h>
32 #include <asm/atomic.h>
35 #include <asm/mpspec.h>
37 #include <asm/arch_hooks.h>
39 #include <asm/i8253.h>
42 #include <mach_apic.h>
43 #include <mach_apicdef.h>
49 #if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
50 # error SPURIOUS_APIC_VECTOR definition error
53 unsigned long mp_lapic_addr
;
56 * Knob to control our willingness to enable the local APIC.
58 * -1=force-disable, +1=force-enable
60 int enable_local_apic
;
62 /* Local APIC timer verification ok */
63 static int local_apic_timer_verify_ok
;
64 /* Disable local APIC timer from the kernel commandline or via dmi quirk */
65 static int local_apic_timer_disabled
;
66 /* Local APIC timer works in C2 */
67 int local_apic_timer_c2_ok
;
68 EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok
);
70 int first_system_vector
= 0xfe;
72 char system_vectors
[NR_VECTORS
] = { [0 ... NR_VECTORS
-1] = SYS_VECTOR_FREE
};
75 * Debug level, exported for io_apic.c
81 /* Have we found an MP table */
84 static unsigned int calibration_result
;
86 static int lapic_next_event(unsigned long delta
,
87 struct clock_event_device
*evt
);
88 static void lapic_timer_setup(enum clock_event_mode mode
,
89 struct clock_event_device
*evt
);
90 static void lapic_timer_broadcast(cpumask_t mask
);
91 static void apic_pm_activate(void);
94 * The local apic timer can be used for any function which is CPU local.
96 static struct clock_event_device lapic_clockevent
= {
98 .features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
99 | CLOCK_EVT_FEAT_C3STOP
| CLOCK_EVT_FEAT_DUMMY
,
101 .set_mode
= lapic_timer_setup
,
102 .set_next_event
= lapic_next_event
,
103 .broadcast
= lapic_timer_broadcast
,
107 static DEFINE_PER_CPU(struct clock_event_device
, lapic_events
);
109 /* Local APIC was disabled by the BIOS and enabled by the kernel */
110 static int enabled_via_apicbase
;
112 static unsigned long apic_phys
;
115 * Get the LAPIC version
117 static inline int lapic_get_version(void)
119 return GET_APIC_VERSION(apic_read(APIC_LVR
));
123 * Check, if the APIC is integrated or a separate chip
125 static inline int lapic_is_integrated(void)
127 return APIC_INTEGRATED(lapic_get_version());
131 * Check, whether this is a modern or a first generation APIC
133 static int modern_apic(void)
135 /* AMD systems use old APIC versions, so check the CPU */
136 if (boot_cpu_data
.x86_vendor
== X86_VENDOR_AMD
&&
137 boot_cpu_data
.x86
>= 0xf)
139 return lapic_get_version() >= 0x14;
142 void apic_wait_icr_idle(void)
144 while (apic_read(APIC_ICR
) & APIC_ICR_BUSY
)
148 u32
safe_apic_wait_icr_idle(void)
155 send_status
= apic_read(APIC_ICR
) & APIC_ICR_BUSY
;
159 } while (timeout
++ < 1000);
165 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
167 void __cpuinit
enable_NMI_through_LVT0(void)
169 unsigned int v
= APIC_DM_NMI
;
171 /* Level triggered for 82489DX */
172 if (!lapic_is_integrated())
173 v
|= APIC_LVT_LEVEL_TRIGGER
;
174 apic_write_around(APIC_LVT0
, v
);
178 * get_physical_broadcast - Get number of physical broadcast IDs
180 int get_physical_broadcast(void)
182 return modern_apic() ? 0xff : 0xf;
186 * lapic_get_maxlvt - get the maximum number of local vector table entries
188 int lapic_get_maxlvt(void)
190 unsigned int v
= apic_read(APIC_LVR
);
192 /* 82489DXs do not report # of LVT entries. */
193 return APIC_INTEGRATED(GET_APIC_VERSION(v
)) ? GET_APIC_MAXLVT(v
) : 2;
200 /* Clock divisor is set to 16 */
201 #define APIC_DIVISOR 16
204 * This function sets up the local APIC timer, with a timeout of
205 * 'clocks' APIC bus clock. During calibration we actually call
206 * this function twice on the boot CPU, once with a bogus timeout
207 * value, second time for real. The other (noncalibrating) CPUs
208 * call this function only once, with the real, calibrated value.
210 * We do reads before writes even if unnecessary, to get around the
211 * P5 APIC double write bug.
213 static void __setup_APIC_LVTT(unsigned int clocks
, int oneshot
, int irqen
)
215 unsigned int lvtt_value
, tmp_value
;
217 lvtt_value
= LOCAL_TIMER_VECTOR
;
219 lvtt_value
|= APIC_LVT_TIMER_PERIODIC
;
220 if (!lapic_is_integrated())
221 lvtt_value
|= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV
);
224 lvtt_value
|= APIC_LVT_MASKED
;
226 apic_write_around(APIC_LVTT
, lvtt_value
);
231 tmp_value
= apic_read(APIC_TDCR
);
232 apic_write_around(APIC_TDCR
, (tmp_value
233 & ~(APIC_TDR_DIV_1
| APIC_TDR_DIV_TMBASE
))
237 apic_write_around(APIC_TMICT
, clocks
/APIC_DIVISOR
);
241 * Program the next event, relative to now
243 static int lapic_next_event(unsigned long delta
,
244 struct clock_event_device
*evt
)
246 apic_write_around(APIC_TMICT
, delta
);
251 * Setup the lapic timer in periodic or oneshot mode
253 static void lapic_timer_setup(enum clock_event_mode mode
,
254 struct clock_event_device
*evt
)
259 /* Lapic used for broadcast ? */
260 if (!local_apic_timer_verify_ok
)
263 local_irq_save(flags
);
266 case CLOCK_EVT_MODE_PERIODIC
:
267 case CLOCK_EVT_MODE_ONESHOT
:
268 __setup_APIC_LVTT(calibration_result
,
269 mode
!= CLOCK_EVT_MODE_PERIODIC
, 1);
271 case CLOCK_EVT_MODE_UNUSED
:
272 case CLOCK_EVT_MODE_SHUTDOWN
:
273 v
= apic_read(APIC_LVTT
);
274 v
|= (APIC_LVT_MASKED
| LOCAL_TIMER_VECTOR
);
275 apic_write_around(APIC_LVTT
, v
);
277 case CLOCK_EVT_MODE_RESUME
:
278 /* Nothing to do here */
282 local_irq_restore(flags
);
286 * Local APIC timer broadcast function
288 static void lapic_timer_broadcast(cpumask_t mask
)
291 send_IPI_mask(mask
, LOCAL_TIMER_VECTOR
);
296 * Setup the local APIC timer for this CPU. Copy the initilized values
297 * of the boot CPU and register the clock event in the framework.
299 static void __devinit
setup_APIC_timer(void)
301 struct clock_event_device
*levt
= &__get_cpu_var(lapic_events
);
303 memcpy(levt
, &lapic_clockevent
, sizeof(*levt
));
304 levt
->cpumask
= cpumask_of_cpu(smp_processor_id());
306 clockevents_register_device(levt
);
310 * In this functions we calibrate APIC bus clocks to the external timer.
312 * We want to do the calibration only once since we want to have local timer
313 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
316 * This was previously done by reading the PIT/HPET and waiting for a wrap
317 * around to find out, that a tick has elapsed. I have a box, where the PIT
318 * readout is broken, so it never gets out of the wait loop again. This was
319 * also reported by others.
321 * Monitoring the jiffies value is inaccurate and the clockevents
322 * infrastructure allows us to do a simple substitution of the interrupt
325 * The calibration routine also uses the pm_timer when possible, as the PIT
326 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
327 * back to normal later in the boot process).
330 #define LAPIC_CAL_LOOPS (HZ/10)
332 static __initdata
int lapic_cal_loops
= -1;
333 static __initdata
long lapic_cal_t1
, lapic_cal_t2
;
334 static __initdata
unsigned long long lapic_cal_tsc1
, lapic_cal_tsc2
;
335 static __initdata
unsigned long lapic_cal_pm1
, lapic_cal_pm2
;
336 static __initdata
unsigned long lapic_cal_j1
, lapic_cal_j2
;
339 * Temporary interrupt handler.
341 static void __init
lapic_cal_handler(struct clock_event_device
*dev
)
343 unsigned long long tsc
= 0;
344 long tapic
= apic_read(APIC_TMCCT
);
345 unsigned long pm
= acpi_pm_read_early();
350 switch (lapic_cal_loops
++) {
352 lapic_cal_t1
= tapic
;
353 lapic_cal_tsc1
= tsc
;
355 lapic_cal_j1
= jiffies
;
358 case LAPIC_CAL_LOOPS
:
359 lapic_cal_t2
= tapic
;
360 lapic_cal_tsc2
= tsc
;
361 if (pm
< lapic_cal_pm1
)
362 pm
+= ACPI_PM_OVRRUN
;
364 lapic_cal_j2
= jiffies
;
370 * Setup the boot APIC
372 * Calibrate and verify the result.
374 void __init
setup_boot_APIC_clock(void)
376 struct clock_event_device
*levt
= &__get_cpu_var(lapic_events
);
377 const long pm_100ms
= PMTMR_TICKS_PER_SEC
/10;
378 const long pm_thresh
= pm_100ms
/100;
379 void (*real_handler
)(struct clock_event_device
*dev
);
380 unsigned long deltaj
;
382 int pm_referenced
= 0;
385 * The local apic timer can be disabled via the kernel
386 * commandline or from the CPU detection code. Register the lapic
387 * timer as a dummy clock event source on SMP systems, so the
388 * broadcast mechanism is used. On UP systems simply ignore it.
390 if (local_apic_timer_disabled
) {
391 /* No broadcast on UP ! */
392 if (num_possible_cpus() > 1) {
393 lapic_clockevent
.mult
= 1;
399 apic_printk(APIC_VERBOSE
, "Using local APIC timer interrupts.\n"
400 "calibrating APIC timer ...\n");
404 /* Replace the global interrupt handler */
405 real_handler
= global_clock_event
->event_handler
;
406 global_clock_event
->event_handler
= lapic_cal_handler
;
409 * Setup the APIC counter to 1e9. There is no way the lapic
410 * can underflow in the 100ms detection time frame
412 __setup_APIC_LVTT(1000000000, 0, 0);
414 /* Let the interrupts run */
417 while (lapic_cal_loops
<= LAPIC_CAL_LOOPS
)
422 /* Restore the real event handler */
423 global_clock_event
->event_handler
= real_handler
;
425 /* Build delta t1-t2 as apic timer counts down */
426 delta
= lapic_cal_t1
- lapic_cal_t2
;
427 apic_printk(APIC_VERBOSE
, "... lapic delta = %ld\n", delta
);
429 /* Check, if the PM timer is available */
430 deltapm
= lapic_cal_pm2
- lapic_cal_pm1
;
431 apic_printk(APIC_VERBOSE
, "... PM timer delta = %ld\n", deltapm
);
437 mult
= clocksource_hz2mult(PMTMR_TICKS_PER_SEC
, 22);
439 if (deltapm
> (pm_100ms
- pm_thresh
) &&
440 deltapm
< (pm_100ms
+ pm_thresh
)) {
441 apic_printk(APIC_VERBOSE
, "... PM timer result ok\n");
443 res
= (((u64
) deltapm
) * mult
) >> 22;
444 do_div(res
, 1000000);
445 printk(KERN_WARNING
"APIC calibration not consistent "
446 "with PM Timer: %ldms instead of 100ms\n",
448 /* Correct the lapic counter value */
449 res
= (((u64
) delta
) * pm_100ms
);
450 do_div(res
, deltapm
);
451 printk(KERN_INFO
"APIC delta adjusted to PM-Timer: "
452 "%lu (%ld)\n", (unsigned long) res
, delta
);
458 /* Calculate the scaled math multiplication factor */
459 lapic_clockevent
.mult
= div_sc(delta
, TICK_NSEC
* LAPIC_CAL_LOOPS
,
460 lapic_clockevent
.shift
);
461 lapic_clockevent
.max_delta_ns
=
462 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent
);
463 lapic_clockevent
.min_delta_ns
=
464 clockevent_delta2ns(0xF, &lapic_clockevent
);
466 calibration_result
= (delta
* APIC_DIVISOR
) / LAPIC_CAL_LOOPS
;
468 apic_printk(APIC_VERBOSE
, "..... delta %ld\n", delta
);
469 apic_printk(APIC_VERBOSE
, "..... mult: %ld\n", lapic_clockevent
.mult
);
470 apic_printk(APIC_VERBOSE
, "..... calibration result: %u\n",
474 delta
= (long)(lapic_cal_tsc2
- lapic_cal_tsc1
);
475 apic_printk(APIC_VERBOSE
, "..... CPU clock speed is "
477 (delta
/ LAPIC_CAL_LOOPS
) / (1000000 / HZ
),
478 (delta
/ LAPIC_CAL_LOOPS
) % (1000000 / HZ
));
481 apic_printk(APIC_VERBOSE
, "..... host bus clock speed is "
483 calibration_result
/ (1000000 / HZ
),
484 calibration_result
% (1000000 / HZ
));
486 local_apic_timer_verify_ok
= 1;
489 * Do a sanity check on the APIC calibration result
491 if (calibration_result
< (1000000 / HZ
)) {
494 "APIC frequency too slow, disabling apic timer\n");
495 /* No broadcast on UP ! */
496 if (num_possible_cpus() > 1)
501 /* We trust the pm timer based calibration */
502 if (!pm_referenced
) {
503 apic_printk(APIC_VERBOSE
, "... verify APIC timer\n");
506 * Setup the apic timer manually
508 levt
->event_handler
= lapic_cal_handler
;
509 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC
, levt
);
510 lapic_cal_loops
= -1;
512 /* Let the interrupts run */
515 while (lapic_cal_loops
<= LAPIC_CAL_LOOPS
)
520 /* Stop the lapic timer */
521 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN
, levt
);
526 deltaj
= lapic_cal_j2
- lapic_cal_j1
;
527 apic_printk(APIC_VERBOSE
, "... jiffies delta = %lu\n", deltaj
);
529 /* Check, if the jiffies result is consistent */
530 if (deltaj
>= LAPIC_CAL_LOOPS
-2 && deltaj
<= LAPIC_CAL_LOOPS
+2)
531 apic_printk(APIC_VERBOSE
, "... jiffies result ok\n");
533 local_apic_timer_verify_ok
= 0;
537 if (!local_apic_timer_verify_ok
) {
539 "APIC timer disabled due to verification failure.\n");
540 /* No broadcast on UP ! */
541 if (num_possible_cpus() == 1)
545 * If nmi_watchdog is set to IO_APIC, we need the
546 * PIT/HPET going. Otherwise register lapic as a dummy
549 if (nmi_watchdog
!= NMI_IO_APIC
)
550 lapic_clockevent
.features
&= ~CLOCK_EVT_FEAT_DUMMY
;
552 printk(KERN_WARNING
"APIC timer registered as dummy,"
553 " due to nmi_watchdog=%d!\n", nmi_watchdog
);
556 /* Setup the lapic or request the broadcast */
560 void __devinit
setup_secondary_APIC_clock(void)
566 * The guts of the apic timer interrupt
568 static void local_apic_timer_interrupt(void)
570 int cpu
= smp_processor_id();
571 struct clock_event_device
*evt
= &per_cpu(lapic_events
, cpu
);
574 * Normally we should not be here till LAPIC has been initialized but
575 * in some cases like kdump, its possible that there is a pending LAPIC
576 * timer interrupt from previous kernel's context and is delivered in
577 * new kernel the moment interrupts are enabled.
579 * Interrupts are enabled early and LAPIC is setup much later, hence
580 * its possible that when we get here evt->event_handler is NULL.
581 * Check for event_handler being NULL and discard the interrupt as
584 if (!evt
->event_handler
) {
586 "Spurious LAPIC timer interrupt on cpu %d\n", cpu
);
588 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN
, evt
);
593 * the NMI deadlock-detector uses this.
595 per_cpu(irq_stat
, cpu
).apic_timer_irqs
++;
597 evt
->event_handler(evt
);
601 * Local APIC timer interrupt. This is the most natural way for doing
602 * local interrupts, but local timer interrupts can be emulated by
603 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
605 * [ if a single-CPU system runs an SMP kernel then we call the local
606 * interrupt as well. Thus we cannot inline the local irq ... ]
608 void smp_apic_timer_interrupt(struct pt_regs
*regs
)
610 struct pt_regs
*old_regs
= set_irq_regs(regs
);
613 * NOTE! We'd better ACK the irq immediately,
614 * because timer handling can be slow.
618 * update_process_times() expects us to have done irq_enter().
619 * Besides, if we don't timer interrupts ignore the global
620 * interrupt lock, which is the WrongThing (tm) to do.
623 local_apic_timer_interrupt();
626 set_irq_regs(old_regs
);
629 int setup_profiling_timer(unsigned int multiplier
)
635 * Setup extended LVT, AMD specific (K8, family 10h)
637 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
638 * MCE interrupts are supported. Thus MCE offset must be set to 0.
641 #define APIC_EILVT_LVTOFF_MCE 0
642 #define APIC_EILVT_LVTOFF_IBS 1
644 static void setup_APIC_eilvt(u8 lvt_off
, u8 vector
, u8 msg_type
, u8 mask
)
646 unsigned long reg
= (lvt_off
<< 4) + APIC_EILVT0
;
647 unsigned int v
= (mask
<< 16) | (msg_type
<< 8) | vector
;
651 u8
setup_APIC_eilvt_mce(u8 vector
, u8 msg_type
, u8 mask
)
653 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE
, vector
, msg_type
, mask
);
654 return APIC_EILVT_LVTOFF_MCE
;
657 u8
setup_APIC_eilvt_ibs(u8 vector
, u8 msg_type
, u8 mask
)
659 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS
, vector
, msg_type
, mask
);
660 return APIC_EILVT_LVTOFF_IBS
;
664 * Local APIC start and shutdown
668 * clear_local_APIC - shutdown the local APIC
670 * This is called, when a CPU is disabled and before rebooting, so the state of
671 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
672 * leftovers during boot.
674 void clear_local_APIC(void)
679 /* APIC hasn't been mapped yet */
683 maxlvt
= lapic_get_maxlvt();
685 * Masking an LVT entry can trigger a local APIC error
686 * if the vector is zero. Mask LVTERR first to prevent this.
689 v
= ERROR_APIC_VECTOR
; /* any non-zero vector will do */
690 apic_write_around(APIC_LVTERR
, v
| APIC_LVT_MASKED
);
693 * Careful: we have to set masks only first to deassert
694 * any level-triggered sources.
696 v
= apic_read(APIC_LVTT
);
697 apic_write_around(APIC_LVTT
, v
| APIC_LVT_MASKED
);
698 v
= apic_read(APIC_LVT0
);
699 apic_write_around(APIC_LVT0
, v
| APIC_LVT_MASKED
);
700 v
= apic_read(APIC_LVT1
);
701 apic_write_around(APIC_LVT1
, v
| APIC_LVT_MASKED
);
703 v
= apic_read(APIC_LVTPC
);
704 apic_write_around(APIC_LVTPC
, v
| APIC_LVT_MASKED
);
707 /* lets not touch this if we didn't frob it */
708 #ifdef CONFIG_X86_MCE_P4THERMAL
710 v
= apic_read(APIC_LVTTHMR
);
711 apic_write_around(APIC_LVTTHMR
, v
| APIC_LVT_MASKED
);
715 * Clean APIC state for other OSs:
717 apic_write_around(APIC_LVTT
, APIC_LVT_MASKED
);
718 apic_write_around(APIC_LVT0
, APIC_LVT_MASKED
);
719 apic_write_around(APIC_LVT1
, APIC_LVT_MASKED
);
721 apic_write_around(APIC_LVTERR
, APIC_LVT_MASKED
);
723 apic_write_around(APIC_LVTPC
, APIC_LVT_MASKED
);
725 #ifdef CONFIG_X86_MCE_P4THERMAL
727 apic_write_around(APIC_LVTTHMR
, APIC_LVT_MASKED
);
729 /* Integrated APIC (!82489DX) ? */
730 if (lapic_is_integrated()) {
732 /* Clear ESR due to Pentium errata 3AP and 11AP */
733 apic_write(APIC_ESR
, 0);
739 * disable_local_APIC - clear and disable the local APIC
741 void disable_local_APIC(void)
748 * Disable APIC (implies clearing of registers
751 value
= apic_read(APIC_SPIV
);
752 value
&= ~APIC_SPIV_APIC_ENABLED
;
753 apic_write_around(APIC_SPIV
, value
);
756 * When LAPIC was disabled by the BIOS and enabled by the kernel,
757 * restore the disabled state.
759 if (enabled_via_apicbase
) {
762 rdmsr(MSR_IA32_APICBASE
, l
, h
);
763 l
&= ~MSR_IA32_APICBASE_ENABLE
;
764 wrmsr(MSR_IA32_APICBASE
, l
, h
);
769 * If Linux enabled the LAPIC against the BIOS default disable it down before
770 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
771 * not power-off. Additionally clear all LVT entries before disable_local_APIC
772 * for the case where Linux didn't enable the LAPIC.
774 void lapic_shutdown(void)
781 local_irq_save(flags
);
784 if (enabled_via_apicbase
)
785 disable_local_APIC();
787 local_irq_restore(flags
);
791 * This is to verify that we're looking at a real local APIC.
792 * Check these against your board if the CPUs aren't getting
793 * started for no apparent reason.
795 int __init
verify_local_APIC(void)
797 unsigned int reg0
, reg1
;
800 * The version register is read-only in a real APIC.
802 reg0
= apic_read(APIC_LVR
);
803 apic_printk(APIC_DEBUG
, "Getting VERSION: %x\n", reg0
);
804 apic_write(APIC_LVR
, reg0
^ APIC_LVR_MASK
);
805 reg1
= apic_read(APIC_LVR
);
806 apic_printk(APIC_DEBUG
, "Getting VERSION: %x\n", reg1
);
809 * The two version reads above should print the same
810 * numbers. If the second one is different, then we
811 * poke at a non-APIC.
817 * Check if the version looks reasonably.
819 reg1
= GET_APIC_VERSION(reg0
);
820 if (reg1
== 0x00 || reg1
== 0xff)
822 reg1
= lapic_get_maxlvt();
823 if (reg1
< 0x02 || reg1
== 0xff)
827 * The ID register is read/write in a real APIC.
829 reg0
= apic_read(APIC_ID
);
830 apic_printk(APIC_DEBUG
, "Getting ID: %x\n", reg0
);
833 * The next two are just to see if we have sane values.
834 * They're only really relevant if we're in Virtual Wire
835 * compatibility mode, but most boxes are anymore.
837 reg0
= apic_read(APIC_LVT0
);
838 apic_printk(APIC_DEBUG
, "Getting LVT0: %x\n", reg0
);
839 reg1
= apic_read(APIC_LVT1
);
840 apic_printk(APIC_DEBUG
, "Getting LVT1: %x\n", reg1
);
846 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
848 void __init
sync_Arb_IDs(void)
851 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
854 if (modern_apic() || boot_cpu_data
.x86_vendor
== X86_VENDOR_AMD
)
859 apic_wait_icr_idle();
861 apic_printk(APIC_DEBUG
, "Synchronizing Arb IDs.\n");
862 apic_write_around(APIC_ICR
, APIC_DEST_ALLINC
| APIC_INT_LEVELTRIG
867 * An initial setup of the virtual wire mode.
869 void __init
init_bsp_APIC(void)
874 * Don't do the setup now if we have a SMP BIOS as the
875 * through-I/O-APIC virtual wire mode might be active.
877 if (smp_found_config
|| !cpu_has_apic
)
881 * Do not trust the local APIC being empty at bootup.
888 value
= apic_read(APIC_SPIV
);
889 value
&= ~APIC_VECTOR_MASK
;
890 value
|= APIC_SPIV_APIC_ENABLED
;
892 /* This bit is reserved on P4/Xeon and should be cleared */
893 if ((boot_cpu_data
.x86_vendor
== X86_VENDOR_INTEL
) &&
894 (boot_cpu_data
.x86
== 15))
895 value
&= ~APIC_SPIV_FOCUS_DISABLED
;
897 value
|= APIC_SPIV_FOCUS_DISABLED
;
898 value
|= SPURIOUS_APIC_VECTOR
;
899 apic_write_around(APIC_SPIV
, value
);
902 * Set up the virtual wire mode.
904 apic_write_around(APIC_LVT0
, APIC_DM_EXTINT
);
906 if (!lapic_is_integrated()) /* 82489DX */
907 value
|= APIC_LVT_LEVEL_TRIGGER
;
908 apic_write_around(APIC_LVT1
, value
);
911 static void __cpuinit
lapic_setup_esr(void)
913 unsigned long oldvalue
, value
, maxlvt
;
914 if (lapic_is_integrated() && !esr_disable
) {
916 maxlvt
= lapic_get_maxlvt();
917 if (maxlvt
> 3) /* Due to the Pentium erratum 3AP. */
918 apic_write(APIC_ESR
, 0);
919 oldvalue
= apic_read(APIC_ESR
);
921 /* enables sending errors */
922 value
= ERROR_APIC_VECTOR
;
923 apic_write_around(APIC_LVTERR
, value
);
925 * spec says clear errors after enabling vector.
928 apic_write(APIC_ESR
, 0);
929 value
= apic_read(APIC_ESR
);
930 if (value
!= oldvalue
)
931 apic_printk(APIC_VERBOSE
, "ESR value before enabling "
932 "vector: 0x%08lx after: 0x%08lx\n",
937 * Something untraceable is creating bad interrupts on
938 * secondary quads ... for the moment, just leave the
939 * ESR disabled - we can't do anything useful with the
940 * errors anyway - mbligh
942 printk(KERN_INFO
"Leaving ESR disabled.\n");
944 printk(KERN_INFO
"No ESR for 82489DX.\n");
950 * setup_local_APIC - setup the local APIC
952 void __cpuinit
setup_local_APIC(void)
954 unsigned long value
, integrated
;
957 /* Pound the ESR really hard over the head with a big hammer - mbligh */
959 apic_write(APIC_ESR
, 0);
960 apic_write(APIC_ESR
, 0);
961 apic_write(APIC_ESR
, 0);
962 apic_write(APIC_ESR
, 0);
965 integrated
= lapic_is_integrated();
968 * Double-check whether this APIC is really registered.
970 if (!apic_id_registered())
974 * Intel recommends to set DFR, LDR and TPR before enabling
975 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
976 * document number 292116). So here it goes...
981 * Set Task Priority to 'accept all'. We never change this
984 value
= apic_read(APIC_TASKPRI
);
985 value
&= ~APIC_TPRI_MASK
;
986 apic_write_around(APIC_TASKPRI
, value
);
989 * After a crash, we no longer service the interrupts and a pending
990 * interrupt from previous kernel might still have ISR bit set.
992 * Most probably by now CPU has serviced that pending interrupt and
993 * it might not have done the ack_APIC_irq() because it thought,
994 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
995 * does not clear the ISR bit and cpu thinks it has already serivced
996 * the interrupt. Hence a vector might get locked. It was noticed
997 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
999 for (i
= APIC_ISR_NR
- 1; i
>= 0; i
--) {
1000 value
= apic_read(APIC_ISR
+ i
*0x10);
1001 for (j
= 31; j
>= 0; j
--) {
1008 * Now that we are all set up, enable the APIC
1010 value
= apic_read(APIC_SPIV
);
1011 value
&= ~APIC_VECTOR_MASK
;
1015 value
|= APIC_SPIV_APIC_ENABLED
;
1018 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1019 * certain networking cards. If high frequency interrupts are
1020 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1021 * entry is masked/unmasked at a high rate as well then sooner or
1022 * later IOAPIC line gets 'stuck', no more interrupts are received
1023 * from the device. If focus CPU is disabled then the hang goes
1026 * [ This bug can be reproduced easily with a level-triggered
1027 * PCI Ne2000 networking cards and PII/PIII processors, dual
1031 * Actually disabling the focus CPU check just makes the hang less
1032 * frequent as it makes the interrupt distributon model be more
1033 * like LRU than MRU (the short-term load is more even across CPUs).
1034 * See also the comment in end_level_ioapic_irq(). --macro
1037 /* Enable focus processor (bit==0) */
1038 value
&= ~APIC_SPIV_FOCUS_DISABLED
;
1041 * Set spurious IRQ vector
1043 value
|= SPURIOUS_APIC_VECTOR
;
1044 apic_write_around(APIC_SPIV
, value
);
1047 * Set up LVT0, LVT1:
1049 * set up through-local-APIC on the BP's LINT0. This is not
1050 * strictly necessary in pure symmetric-IO mode, but sometimes
1051 * we delegate interrupts to the 8259A.
1054 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1056 value
= apic_read(APIC_LVT0
) & APIC_LVT_MASKED
;
1057 if (!smp_processor_id() && (pic_mode
|| !value
)) {
1058 value
= APIC_DM_EXTINT
;
1059 apic_printk(APIC_VERBOSE
, "enabled ExtINT on CPU#%d\n",
1060 smp_processor_id());
1062 value
= APIC_DM_EXTINT
| APIC_LVT_MASKED
;
1063 apic_printk(APIC_VERBOSE
, "masked ExtINT on CPU#%d\n",
1064 smp_processor_id());
1066 apic_write_around(APIC_LVT0
, value
);
1069 * only the BP should see the LINT1 NMI signal, obviously.
1071 if (!smp_processor_id())
1072 value
= APIC_DM_NMI
;
1074 value
= APIC_DM_NMI
| APIC_LVT_MASKED
;
1075 if (!integrated
) /* 82489DX */
1076 value
|= APIC_LVT_LEVEL_TRIGGER
;
1077 apic_write_around(APIC_LVT1
, value
);
1080 void __cpuinit
end_local_APIC_setup(void)
1082 unsigned long value
;
1085 /* Disable the local apic timer */
1086 value
= apic_read(APIC_LVTT
);
1087 value
|= (APIC_LVT_MASKED
| LOCAL_TIMER_VECTOR
);
1088 apic_write_around(APIC_LVTT
, value
);
1090 setup_apic_nmi_watchdog(NULL
);
1095 * Detect and initialize APIC
1097 static int __init
detect_init_APIC(void)
1101 /* Disabled by kernel option? */
1102 if (enable_local_apic
< 0)
1105 switch (boot_cpu_data
.x86_vendor
) {
1106 case X86_VENDOR_AMD
:
1107 if ((boot_cpu_data
.x86
== 6 && boot_cpu_data
.x86_model
> 1) ||
1108 (boot_cpu_data
.x86
== 15))
1111 case X86_VENDOR_INTEL
:
1112 if (boot_cpu_data
.x86
== 6 || boot_cpu_data
.x86
== 15 ||
1113 (boot_cpu_data
.x86
== 5 && cpu_has_apic
))
1120 if (!cpu_has_apic
) {
1122 * Over-ride BIOS and try to enable the local APIC only if
1123 * "lapic" specified.
1125 if (enable_local_apic
<= 0) {
1126 printk(KERN_INFO
"Local APIC disabled by BIOS -- "
1127 "you can enable it with \"lapic\"\n");
1131 * Some BIOSes disable the local APIC in the APIC_BASE
1132 * MSR. This can only be done in software for Intel P6 or later
1133 * and AMD K7 (Model > 1) or later.
1135 rdmsr(MSR_IA32_APICBASE
, l
, h
);
1136 if (!(l
& MSR_IA32_APICBASE_ENABLE
)) {
1138 "Local APIC disabled by BIOS -- reenabling.\n");
1139 l
&= ~MSR_IA32_APICBASE_BASE
;
1140 l
|= MSR_IA32_APICBASE_ENABLE
| APIC_DEFAULT_PHYS_BASE
;
1141 wrmsr(MSR_IA32_APICBASE
, l
, h
);
1142 enabled_via_apicbase
= 1;
1146 * The APIC feature bit should now be enabled
1149 features
= cpuid_edx(1);
1150 if (!(features
& (1 << X86_FEATURE_APIC
))) {
1151 printk(KERN_WARNING
"Could not enable APIC!\n");
1154 set_cpu_cap(&boot_cpu_data
, X86_FEATURE_APIC
);
1155 mp_lapic_addr
= APIC_DEFAULT_PHYS_BASE
;
1157 /* The BIOS may have set up the APIC at some other address */
1158 rdmsr(MSR_IA32_APICBASE
, l
, h
);
1159 if (l
& MSR_IA32_APICBASE_ENABLE
)
1160 mp_lapic_addr
= l
& MSR_IA32_APICBASE_BASE
;
1162 printk(KERN_INFO
"Found and enabled local APIC!\n");
1169 printk(KERN_INFO
"No local APIC present or hardware disabled\n");
1174 * init_apic_mappings - initialize APIC mappings
1176 void __init
init_apic_mappings(void)
1179 * If no local APIC can be found then set up a fake all
1180 * zeroes page to simulate the local APIC and another
1181 * one for the IO-APIC.
1183 if (!smp_found_config
&& detect_init_APIC()) {
1184 apic_phys
= (unsigned long) alloc_bootmem_pages(PAGE_SIZE
);
1185 apic_phys
= __pa(apic_phys
);
1187 apic_phys
= mp_lapic_addr
;
1189 set_fixmap_nocache(FIX_APIC_BASE
, apic_phys
);
1190 printk(KERN_DEBUG
"mapped APIC to %08lx (%08lx)\n", APIC_BASE
,
1194 * Fetch the APIC ID of the BSP in case we have a
1195 * default configuration (or the MP table is broken).
1197 if (boot_cpu_physical_apicid
== -1U)
1198 boot_cpu_physical_apicid
= GET_APIC_ID(read_apic_id());
1200 #ifdef CONFIG_X86_IO_APIC
1202 unsigned long ioapic_phys
, idx
= FIX_IO_APIC_BASE_0
;
1205 for (i
= 0; i
< nr_ioapics
; i
++) {
1206 if (smp_found_config
) {
1207 ioapic_phys
= mp_ioapics
[i
].mp_apicaddr
;
1210 "WARNING: bogus zero IO-APIC "
1211 "address found in MPTABLE, "
1212 "disabling IO/APIC support!\n");
1213 smp_found_config
= 0;
1214 skip_ioapic_setup
= 1;
1215 goto fake_ioapic_page
;
1219 ioapic_phys
= (unsigned long)
1220 alloc_bootmem_pages(PAGE_SIZE
);
1221 ioapic_phys
= __pa(ioapic_phys
);
1223 set_fixmap_nocache(idx
, ioapic_phys
);
1224 printk(KERN_DEBUG
"mapped IOAPIC to %08lx (%08lx)\n",
1225 __fix_to_virt(idx
), ioapic_phys
);
1233 * This initializes the IO-APIC and APIC hardware if this is
1237 int apic_version
[MAX_APICS
];
1239 int __init
APIC_init_uniprocessor(void)
1241 if (enable_local_apic
< 0)
1242 clear_cpu_cap(&boot_cpu_data
, X86_FEATURE_APIC
);
1244 if (!smp_found_config
&& !cpu_has_apic
)
1248 * Complain if the BIOS pretends there is one.
1250 if (!cpu_has_apic
&&
1251 APIC_INTEGRATED(apic_version
[boot_cpu_physical_apicid
])) {
1252 printk(KERN_ERR
"BIOS bug, local APIC #%d not detected!...\n",
1253 boot_cpu_physical_apicid
);
1254 clear_cpu_cap(&boot_cpu_data
, X86_FEATURE_APIC
);
1258 verify_local_APIC();
1263 * Hack: In case of kdump, after a crash, kernel might be booting
1264 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1265 * might be zero if read from MP tables. Get it from LAPIC.
1267 #ifdef CONFIG_CRASH_DUMP
1268 boot_cpu_physical_apicid
= GET_APIC_ID(read_apic_id());
1270 physid_set_mask_of_physid(boot_cpu_physical_apicid
, &phys_cpu_present_map
);
1274 #ifdef CONFIG_X86_IO_APIC
1275 if (!smp_found_config
|| skip_ioapic_setup
|| !nr_ioapics
)
1277 localise_nmi_watchdog();
1278 end_local_APIC_setup();
1279 #ifdef CONFIG_X86_IO_APIC
1280 if (smp_found_config
)
1281 if (!skip_ioapic_setup
&& nr_ioapics
)
1290 * Local APIC interrupts
1294 * This interrupt should _never_ happen with our APIC/SMP architecture
1296 void smp_spurious_interrupt(struct pt_regs
*regs
)
1302 * Check if this really is a spurious interrupt and ACK it
1303 * if it is a vectored one. Just in case...
1304 * Spurious interrupts should not be ACKed.
1306 v
= apic_read(APIC_ISR
+ ((SPURIOUS_APIC_VECTOR
& ~0x1f) >> 1));
1307 if (v
& (1 << (SPURIOUS_APIC_VECTOR
& 0x1f)))
1310 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1311 printk(KERN_INFO
"spurious APIC interrupt on CPU#%d, "
1312 "should never happen.\n", smp_processor_id());
1313 __get_cpu_var(irq_stat
).irq_spurious_count
++;
1318 * This interrupt should never happen with our APIC/SMP architecture
1320 void smp_error_interrupt(struct pt_regs
*regs
)
1322 unsigned long v
, v1
;
1325 /* First tickle the hardware, only then report what went on. -- REW */
1326 v
= apic_read(APIC_ESR
);
1327 apic_write(APIC_ESR
, 0);
1328 v1
= apic_read(APIC_ESR
);
1330 atomic_inc(&irq_err_count
);
1332 /* Here is what the APIC error bits mean:
1335 2: Send accept error
1336 3: Receive accept error
1338 5: Send illegal vector
1339 6: Received illegal vector
1340 7: Illegal register address
1342 printk(KERN_DEBUG
"APIC error on CPU%d: %02lx(%02lx)\n",
1343 smp_processor_id(), v
, v1
);
1348 void __init
smp_intr_init(void)
1351 * IRQ0 must be given a fixed assignment and initialized,
1352 * because it's used before the IO-APIC is set up.
1354 set_intr_gate(FIRST_DEVICE_VECTOR
, interrupt
[0]);
1357 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
1358 * IPI, driven by wakeup.
1360 alloc_intr_gate(RESCHEDULE_VECTOR
, reschedule_interrupt
);
1362 /* IPI for invalidation */
1363 alloc_intr_gate(INVALIDATE_TLB_VECTOR
, invalidate_interrupt
);
1365 /* IPI for generic function call */
1366 alloc_intr_gate(CALL_FUNCTION_VECTOR
, call_function_interrupt
);
1371 * Initialize APIC interrupts
1373 void __init
apic_intr_init(void)
1378 /* self generated IPI for local APIC timer */
1379 alloc_intr_gate(LOCAL_TIMER_VECTOR
, apic_timer_interrupt
);
1381 /* IPI vectors for APIC spurious and error interrupts */
1382 alloc_intr_gate(SPURIOUS_APIC_VECTOR
, spurious_interrupt
);
1383 alloc_intr_gate(ERROR_APIC_VECTOR
, error_interrupt
);
1385 /* thermal monitor LVT interrupt */
1386 #ifdef CONFIG_X86_MCE_P4THERMAL
1387 alloc_intr_gate(THERMAL_APIC_VECTOR
, thermal_interrupt
);
1392 * connect_bsp_APIC - attach the APIC to the interrupt system
1394 void __init
connect_bsp_APIC(void)
1398 * Do not trust the local APIC being empty at bootup.
1402 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1403 * local APIC to INT and NMI lines.
1405 apic_printk(APIC_VERBOSE
, "leaving PIC mode, "
1406 "enabling APIC mode.\n");
1414 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1415 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1417 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1420 void disconnect_bsp_APIC(int virt_wire_setup
)
1424 * Put the board back into PIC mode (has an effect only on
1425 * certain older boards). Note that APIC interrupts, including
1426 * IPIs, won't work beyond this point! The only exception are
1429 apic_printk(APIC_VERBOSE
, "disabling APIC mode, "
1430 "entering PIC mode.\n");
1434 /* Go back to Virtual Wire compatibility mode */
1435 unsigned long value
;
1437 /* For the spurious interrupt use vector F, and enable it */
1438 value
= apic_read(APIC_SPIV
);
1439 value
&= ~APIC_VECTOR_MASK
;
1440 value
|= APIC_SPIV_APIC_ENABLED
;
1442 apic_write_around(APIC_SPIV
, value
);
1444 if (!virt_wire_setup
) {
1446 * For LVT0 make it edge triggered, active high,
1447 * external and enabled
1449 value
= apic_read(APIC_LVT0
);
1450 value
&= ~(APIC_MODE_MASK
| APIC_SEND_PENDING
|
1451 APIC_INPUT_POLARITY
| APIC_LVT_REMOTE_IRR
|
1452 APIC_LVT_LEVEL_TRIGGER
| APIC_LVT_MASKED
);
1453 value
|= APIC_LVT_REMOTE_IRR
| APIC_SEND_PENDING
;
1454 value
= SET_APIC_DELIVERY_MODE(value
, APIC_MODE_EXTINT
);
1455 apic_write_around(APIC_LVT0
, value
);
1458 apic_write_around(APIC_LVT0
, APIC_LVT_MASKED
);
1462 * For LVT1 make it edge triggered, active high, nmi and
1465 value
= apic_read(APIC_LVT1
);
1467 APIC_MODE_MASK
| APIC_SEND_PENDING
|
1468 APIC_INPUT_POLARITY
| APIC_LVT_REMOTE_IRR
|
1469 APIC_LVT_LEVEL_TRIGGER
| APIC_LVT_MASKED
);
1470 value
|= APIC_LVT_REMOTE_IRR
| APIC_SEND_PENDING
;
1471 value
= SET_APIC_DELIVERY_MODE(value
, APIC_MODE_NMI
);
1472 apic_write_around(APIC_LVT1
, value
);
1476 unsigned int __cpuinitdata maxcpus
= NR_CPUS
;
1478 void __cpuinit
generic_processor_info(int apicid
, int version
)
1482 physid_mask_t phys_cpu
;
1487 if (version
== 0x0) {
1488 printk(KERN_WARNING
"BIOS bug, APIC version is 0 for CPU#%d! "
1489 "fixing up to 0x10. (tell your hw vendor)\n",
1493 apic_version
[apicid
] = version
;
1495 phys_cpu
= apicid_to_cpu_present(apicid
);
1496 physids_or(phys_cpu_present_map
, phys_cpu_present_map
, phys_cpu
);
1498 if (num_processors
>= NR_CPUS
) {
1499 printk(KERN_WARNING
"WARNING: NR_CPUS limit of %i reached."
1500 " Processor ignored.\n", NR_CPUS
);
1504 if (num_processors
>= maxcpus
) {
1505 printk(KERN_WARNING
"WARNING: maxcpus limit of %i reached."
1506 " Processor ignored.\n", maxcpus
);
1511 cpus_complement(tmp_map
, cpu_present_map
);
1512 cpu
= first_cpu(tmp_map
);
1514 if (apicid
== boot_cpu_physical_apicid
)
1516 * x86_bios_cpu_apicid is required to have processors listed
1517 * in same order as logical cpu numbers. Hence the first
1518 * entry is BSP, and so on.
1522 if (apicid
> max_physical_apicid
)
1523 max_physical_apicid
= apicid
;
1526 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1527 * but we need to work other dependencies like SMP_SUSPEND etc
1528 * before this can be done without some confusion.
1529 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1530 * - Ashok Raj <ashok.raj@intel.com>
1532 if (max_physical_apicid
>= 8) {
1533 switch (boot_cpu_data
.x86_vendor
) {
1534 case X86_VENDOR_INTEL
:
1535 if (!APIC_XAPIC(version
)) {
1539 /* If P4 and above fall through */
1540 case X86_VENDOR_AMD
:
1545 /* are we being called early in kernel startup? */
1546 if (early_per_cpu_ptr(x86_cpu_to_apicid
)) {
1547 u16
*cpu_to_apicid
= early_per_cpu_ptr(x86_cpu_to_apicid
);
1548 u16
*bios_cpu_apicid
= early_per_cpu_ptr(x86_bios_cpu_apicid
);
1550 cpu_to_apicid
[cpu
] = apicid
;
1551 bios_cpu_apicid
[cpu
] = apicid
;
1553 per_cpu(x86_cpu_to_apicid
, cpu
) = apicid
;
1554 per_cpu(x86_bios_cpu_apicid
, cpu
) = apicid
;
1557 cpu_set(cpu
, cpu_possible_map
);
1558 cpu_set(cpu
, cpu_present_map
);
1568 /* r/w apic fields */
1569 unsigned int apic_id
;
1570 unsigned int apic_taskpri
;
1571 unsigned int apic_ldr
;
1572 unsigned int apic_dfr
;
1573 unsigned int apic_spiv
;
1574 unsigned int apic_lvtt
;
1575 unsigned int apic_lvtpc
;
1576 unsigned int apic_lvt0
;
1577 unsigned int apic_lvt1
;
1578 unsigned int apic_lvterr
;
1579 unsigned int apic_tmict
;
1580 unsigned int apic_tdcr
;
1581 unsigned int apic_thmr
;
1584 static int lapic_suspend(struct sys_device
*dev
, pm_message_t state
)
1586 unsigned long flags
;
1589 if (!apic_pm_state
.active
)
1592 maxlvt
= lapic_get_maxlvt();
1594 apic_pm_state
.apic_id
= apic_read(APIC_ID
);
1595 apic_pm_state
.apic_taskpri
= apic_read(APIC_TASKPRI
);
1596 apic_pm_state
.apic_ldr
= apic_read(APIC_LDR
);
1597 apic_pm_state
.apic_dfr
= apic_read(APIC_DFR
);
1598 apic_pm_state
.apic_spiv
= apic_read(APIC_SPIV
);
1599 apic_pm_state
.apic_lvtt
= apic_read(APIC_LVTT
);
1601 apic_pm_state
.apic_lvtpc
= apic_read(APIC_LVTPC
);
1602 apic_pm_state
.apic_lvt0
= apic_read(APIC_LVT0
);
1603 apic_pm_state
.apic_lvt1
= apic_read(APIC_LVT1
);
1604 apic_pm_state
.apic_lvterr
= apic_read(APIC_LVTERR
);
1605 apic_pm_state
.apic_tmict
= apic_read(APIC_TMICT
);
1606 apic_pm_state
.apic_tdcr
= apic_read(APIC_TDCR
);
1607 #ifdef CONFIG_X86_MCE_P4THERMAL
1609 apic_pm_state
.apic_thmr
= apic_read(APIC_LVTTHMR
);
1612 local_irq_save(flags
);
1613 disable_local_APIC();
1614 local_irq_restore(flags
);
1618 static int lapic_resume(struct sys_device
*dev
)
1621 unsigned long flags
;
1624 if (!apic_pm_state
.active
)
1627 maxlvt
= lapic_get_maxlvt();
1629 local_irq_save(flags
);
1632 * Make sure the APICBASE points to the right address
1634 * FIXME! This will be wrong if we ever support suspend on
1635 * SMP! We'll need to do this as part of the CPU restore!
1637 rdmsr(MSR_IA32_APICBASE
, l
, h
);
1638 l
&= ~MSR_IA32_APICBASE_BASE
;
1639 l
|= MSR_IA32_APICBASE_ENABLE
| mp_lapic_addr
;
1640 wrmsr(MSR_IA32_APICBASE
, l
, h
);
1642 apic_write(APIC_LVTERR
, ERROR_APIC_VECTOR
| APIC_LVT_MASKED
);
1643 apic_write(APIC_ID
, apic_pm_state
.apic_id
);
1644 apic_write(APIC_DFR
, apic_pm_state
.apic_dfr
);
1645 apic_write(APIC_LDR
, apic_pm_state
.apic_ldr
);
1646 apic_write(APIC_TASKPRI
, apic_pm_state
.apic_taskpri
);
1647 apic_write(APIC_SPIV
, apic_pm_state
.apic_spiv
);
1648 apic_write(APIC_LVT0
, apic_pm_state
.apic_lvt0
);
1649 apic_write(APIC_LVT1
, apic_pm_state
.apic_lvt1
);
1650 #ifdef CONFIG_X86_MCE_P4THERMAL
1652 apic_write(APIC_LVTTHMR
, apic_pm_state
.apic_thmr
);
1655 apic_write(APIC_LVTPC
, apic_pm_state
.apic_lvtpc
);
1656 apic_write(APIC_LVTT
, apic_pm_state
.apic_lvtt
);
1657 apic_write(APIC_TDCR
, apic_pm_state
.apic_tdcr
);
1658 apic_write(APIC_TMICT
, apic_pm_state
.apic_tmict
);
1659 apic_write(APIC_ESR
, 0);
1660 apic_read(APIC_ESR
);
1661 apic_write(APIC_LVTERR
, apic_pm_state
.apic_lvterr
);
1662 apic_write(APIC_ESR
, 0);
1663 apic_read(APIC_ESR
);
1664 local_irq_restore(flags
);
1669 * This device has no shutdown method - fully functioning local APICs
1670 * are needed on every CPU up until machine_halt/restart/poweroff.
1673 static struct sysdev_class lapic_sysclass
= {
1675 .resume
= lapic_resume
,
1676 .suspend
= lapic_suspend
,
1679 static struct sys_device device_lapic
= {
1681 .cls
= &lapic_sysclass
,
1684 static void __devinit
apic_pm_activate(void)
1686 apic_pm_state
.active
= 1;
1689 static int __init
init_lapic_sysfs(void)
1695 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1697 error
= sysdev_class_register(&lapic_sysclass
);
1699 error
= sysdev_register(&device_lapic
);
1702 device_initcall(init_lapic_sysfs
);
1704 #else /* CONFIG_PM */
1706 static void apic_pm_activate(void) { }
1708 #endif /* CONFIG_PM */
1711 * APIC command line parameters
1713 static int __init
parse_lapic(char *arg
)
1715 enable_local_apic
= 1;
1718 early_param("lapic", parse_lapic
);
1720 static int __init
parse_nolapic(char *arg
)
1722 enable_local_apic
= -1;
1723 clear_cpu_cap(&boot_cpu_data
, X86_FEATURE_APIC
);
1726 early_param("nolapic", parse_nolapic
);
1728 static int __init
parse_disable_lapic_timer(char *arg
)
1730 local_apic_timer_disabled
= 1;
1733 early_param("nolapic_timer", parse_disable_lapic_timer
);
1735 static int __init
parse_lapic_timer_c2_ok(char *arg
)
1737 local_apic_timer_c2_ok
= 1;
1740 early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok
);
1742 static int __init
apic_set_verbosity(char *str
)
1744 if (strcmp("debug", str
) == 0)
1745 apic_verbosity
= APIC_DEBUG
;
1746 else if (strcmp("verbose", str
) == 0)
1747 apic_verbosity
= APIC_VERBOSE
;
1750 __setup("apic=", apic_set_verbosity
);