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/smp_lock.h>
23 #include <linux/interrupt.h>
24 #include <linux/mc146818rtc.h>
25 #include <linux/kernel_stat.h>
26 #include <linux/sysdev.h>
27 #include <linux/cpu.h>
28 #include <linux/module.h>
30 #include <asm/atomic.h>
33 #include <asm/mpspec.h>
35 #include <asm/arch_hooks.h>
37 #include <asm/i8253.h>
40 #include <mach_apic.h>
41 #include <mach_apicdef.h>
47 * cpu_mask that denotes the CPUs that needs timer interrupt coming in as
48 * IPIs in place of local APIC timers
50 static cpumask_t timer_bcast_ipi;
53 * Knob to control our willingness to enable the local APIC.
55 int enable_local_apic __initdata = 0; /* -1=force-disable, +1=force-enable */
63 static void apic_pm_activate(void);
65 static int modern_apic(void)
67 unsigned int lvr, version;
68 /* AMD systems use old APIC versions, so check the CPU */
69 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
70 boot_cpu_data.x86 >= 0xf)
72 lvr = apic_read(APIC_LVR);
73 version = GET_APIC_VERSION(lvr);
74 return version >= 0x14;
78 * 'what should we do if we get a hw irq event on an illegal vector'.
79 * each architecture has to answer this themselves.
81 void ack_bad_irq(unsigned int irq)
83 printk("unexpected IRQ trap at vector %02x\n", irq);
85 * Currently unexpected vectors happen only on SMP and APIC.
86 * We _must_ ack these because every local APIC has only N
87 * irq slots per priority level, and a 'hanging, unacked' IRQ
88 * holds up an irq slot - in excessive cases (when multiple
89 * unexpected vectors occur) that might lock up the APIC
91 * But only ack when the APIC is enabled -AK
97 void __init apic_intr_init(void)
102 /* self generated IPI for local APIC timer */
103 set_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
105 /* IPI vectors for APIC spurious and error interrupts */
106 set_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
107 set_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
109 /* thermal monitor LVT interrupt */
110 #ifdef CONFIG_X86_MCE_P4THERMAL
111 set_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
115 /* Using APIC to generate smp_local_timer_interrupt? */
116 int using_apic_timer __read_mostly = 0;
118 static int enabled_via_apicbase;
120 void enable_NMI_through_LVT0 (void * dummy)
124 ver = apic_read(APIC_LVR);
125 ver = GET_APIC_VERSION(ver);
126 v = APIC_DM_NMI; /* unmask and set to NMI */
127 if (!APIC_INTEGRATED(ver)) /* 82489DX */
128 v |= APIC_LVT_LEVEL_TRIGGER;
129 apic_write_around(APIC_LVT0, v);
132 int get_physical_broadcast(void)
142 unsigned int v, ver, maxlvt;
144 v = apic_read(APIC_LVR);
145 ver = GET_APIC_VERSION(v);
146 /* 82489DXs do not report # of LVT entries. */
147 maxlvt = APIC_INTEGRATED(ver) ? GET_APIC_MAXLVT(v) : 2;
151 void clear_local_APIC(void)
156 maxlvt = get_maxlvt();
159 * Masking an LVT entry can trigger a local APIC error
160 * if the vector is zero. Mask LVTERR first to prevent this.
163 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
164 apic_write_around(APIC_LVTERR, v | APIC_LVT_MASKED);
167 * Careful: we have to set masks only first to deassert
168 * any level-triggered sources.
170 v = apic_read(APIC_LVTT);
171 apic_write_around(APIC_LVTT, v | APIC_LVT_MASKED);
172 v = apic_read(APIC_LVT0);
173 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
174 v = apic_read(APIC_LVT1);
175 apic_write_around(APIC_LVT1, v | APIC_LVT_MASKED);
177 v = apic_read(APIC_LVTPC);
178 apic_write_around(APIC_LVTPC, v | APIC_LVT_MASKED);
181 /* lets not touch this if we didn't frob it */
182 #ifdef CONFIG_X86_MCE_P4THERMAL
184 v = apic_read(APIC_LVTTHMR);
185 apic_write_around(APIC_LVTTHMR, v | APIC_LVT_MASKED);
189 * Clean APIC state for other OSs:
191 apic_write_around(APIC_LVTT, APIC_LVT_MASKED);
192 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
193 apic_write_around(APIC_LVT1, APIC_LVT_MASKED);
195 apic_write_around(APIC_LVTERR, APIC_LVT_MASKED);
197 apic_write_around(APIC_LVTPC, APIC_LVT_MASKED);
199 #ifdef CONFIG_X86_MCE_P4THERMAL
201 apic_write_around(APIC_LVTTHMR, APIC_LVT_MASKED);
203 v = GET_APIC_VERSION(apic_read(APIC_LVR));
204 if (APIC_INTEGRATED(v)) { /* !82489DX */
205 if (maxlvt > 3) /* Due to Pentium errata 3AP and 11AP. */
206 apic_write(APIC_ESR, 0);
211 void __init connect_bsp_APIC(void)
215 * Do not trust the local APIC being empty at bootup.
219 * PIC mode, enable APIC mode in the IMCR, i.e.
220 * connect BSP's local APIC to INT and NMI lines.
222 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
223 "enabling APIC mode.\n");
230 void disconnect_bsp_APIC(int virt_wire_setup)
234 * Put the board back into PIC mode (has an effect
235 * only on certain older boards). Note that APIC
236 * interrupts, including IPIs, won't work beyond
237 * this point! The only exception are INIT IPIs.
239 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
240 "entering PIC mode.\n");
245 /* Go back to Virtual Wire compatibility mode */
248 /* For the spurious interrupt use vector F, and enable it */
249 value = apic_read(APIC_SPIV);
250 value &= ~APIC_VECTOR_MASK;
251 value |= APIC_SPIV_APIC_ENABLED;
253 apic_write_around(APIC_SPIV, value);
255 if (!virt_wire_setup) {
256 /* For LVT0 make it edge triggered, active high, external and enabled */
257 value = apic_read(APIC_LVT0);
258 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
259 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
260 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED );
261 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
262 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
263 apic_write_around(APIC_LVT0, value);
267 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
270 /* For LVT1 make it edge triggered, active high, nmi and enabled */
271 value = apic_read(APIC_LVT1);
273 APIC_MODE_MASK | APIC_SEND_PENDING |
274 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
275 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
276 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
277 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
278 apic_write_around(APIC_LVT1, value);
282 void disable_local_APIC(void)
289 * Disable APIC (implies clearing of registers
292 value = apic_read(APIC_SPIV);
293 value &= ~APIC_SPIV_APIC_ENABLED;
294 apic_write_around(APIC_SPIV, value);
296 if (enabled_via_apicbase) {
298 rdmsr(MSR_IA32_APICBASE, l, h);
299 l &= ~MSR_IA32_APICBASE_ENABLE;
300 wrmsr(MSR_IA32_APICBASE, l, h);
305 * This is to verify that we're looking at a real local APIC.
306 * Check these against your board if the CPUs aren't getting
307 * started for no apparent reason.
309 int __init verify_local_APIC(void)
311 unsigned int reg0, reg1;
314 * The version register is read-only in a real APIC.
316 reg0 = apic_read(APIC_LVR);
317 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
318 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
319 reg1 = apic_read(APIC_LVR);
320 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
323 * The two version reads above should print the same
324 * numbers. If the second one is different, then we
325 * poke at a non-APIC.
331 * Check if the version looks reasonably.
333 reg1 = GET_APIC_VERSION(reg0);
334 if (reg1 == 0x00 || reg1 == 0xff)
337 if (reg1 < 0x02 || reg1 == 0xff)
341 * The ID register is read/write in a real APIC.
343 reg0 = apic_read(APIC_ID);
344 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
347 * The next two are just to see if we have sane values.
348 * They're only really relevant if we're in Virtual Wire
349 * compatibility mode, but most boxes are anymore.
351 reg0 = apic_read(APIC_LVT0);
352 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
353 reg1 = apic_read(APIC_LVT1);
354 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
359 void __init sync_Arb_IDs(void)
361 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1
362 And not needed on AMD */
368 apic_wait_icr_idle();
370 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
371 apic_write_around(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
375 extern void __error_in_apic_c (void);
378 * An initial setup of the virtual wire mode.
380 void __init init_bsp_APIC(void)
382 unsigned long value, ver;
385 * Don't do the setup now if we have a SMP BIOS as the
386 * through-I/O-APIC virtual wire mode might be active.
388 if (smp_found_config || !cpu_has_apic)
391 value = apic_read(APIC_LVR);
392 ver = GET_APIC_VERSION(value);
395 * Do not trust the local APIC being empty at bootup.
402 value = apic_read(APIC_SPIV);
403 value &= ~APIC_VECTOR_MASK;
404 value |= APIC_SPIV_APIC_ENABLED;
406 /* This bit is reserved on P4/Xeon and should be cleared */
407 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && (boot_cpu_data.x86 == 15))
408 value &= ~APIC_SPIV_FOCUS_DISABLED;
410 value |= APIC_SPIV_FOCUS_DISABLED;
411 value |= SPURIOUS_APIC_VECTOR;
412 apic_write_around(APIC_SPIV, value);
415 * Set up the virtual wire mode.
417 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
419 if (!APIC_INTEGRATED(ver)) /* 82489DX */
420 value |= APIC_LVT_LEVEL_TRIGGER;
421 apic_write_around(APIC_LVT1, value);
424 void __devinit setup_local_APIC(void)
426 unsigned long oldvalue, value, ver, maxlvt;
429 /* Pound the ESR really hard over the head with a big hammer - mbligh */
431 apic_write(APIC_ESR, 0);
432 apic_write(APIC_ESR, 0);
433 apic_write(APIC_ESR, 0);
434 apic_write(APIC_ESR, 0);
437 value = apic_read(APIC_LVR);
438 ver = GET_APIC_VERSION(value);
440 if ((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f)
444 * Double-check whether this APIC is really registered.
446 if (!apic_id_registered())
450 * Intel recommends to set DFR, LDR and TPR before enabling
451 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
452 * document number 292116). So here it goes...
457 * Set Task Priority to 'accept all'. We never change this
460 value = apic_read(APIC_TASKPRI);
461 value &= ~APIC_TPRI_MASK;
462 apic_write_around(APIC_TASKPRI, value);
465 * After a crash, we no longer service the interrupts and a pending
466 * interrupt from previous kernel might still have ISR bit set.
468 * Most probably by now CPU has serviced that pending interrupt and
469 * it might not have done the ack_APIC_irq() because it thought,
470 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
471 * does not clear the ISR bit and cpu thinks it has already serivced
472 * the interrupt. Hence a vector might get locked. It was noticed
473 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
475 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
476 value = apic_read(APIC_ISR + i*0x10);
477 for (j = 31; j >= 0; j--) {
484 * Now that we are all set up, enable the APIC
486 value = apic_read(APIC_SPIV);
487 value &= ~APIC_VECTOR_MASK;
491 value |= APIC_SPIV_APIC_ENABLED;
494 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
495 * certain networking cards. If high frequency interrupts are
496 * happening on a particular IOAPIC pin, plus the IOAPIC routing
497 * entry is masked/unmasked at a high rate as well then sooner or
498 * later IOAPIC line gets 'stuck', no more interrupts are received
499 * from the device. If focus CPU is disabled then the hang goes
502 * [ This bug can be reproduced easily with a level-triggered
503 * PCI Ne2000 networking cards and PII/PIII processors, dual
507 * Actually disabling the focus CPU check just makes the hang less
508 * frequent as it makes the interrupt distributon model be more
509 * like LRU than MRU (the short-term load is more even across CPUs).
510 * See also the comment in end_level_ioapic_irq(). --macro
513 /* Enable focus processor (bit==0) */
514 value &= ~APIC_SPIV_FOCUS_DISABLED;
516 /* Disable focus processor (bit==1) */
517 value |= APIC_SPIV_FOCUS_DISABLED;
520 * Set spurious IRQ vector
522 value |= SPURIOUS_APIC_VECTOR;
523 apic_write_around(APIC_SPIV, value);
528 * set up through-local-APIC on the BP's LINT0. This is not
529 * strictly necessery in pure symmetric-IO mode, but sometimes
530 * we delegate interrupts to the 8259A.
533 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
535 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
536 if (!smp_processor_id() && (pic_mode || !value)) {
537 value = APIC_DM_EXTINT;
538 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
541 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
542 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
545 apic_write_around(APIC_LVT0, value);
548 * only the BP should see the LINT1 NMI signal, obviously.
550 if (!smp_processor_id())
553 value = APIC_DM_NMI | APIC_LVT_MASKED;
554 if (!APIC_INTEGRATED(ver)) /* 82489DX */
555 value |= APIC_LVT_LEVEL_TRIGGER;
556 apic_write_around(APIC_LVT1, value);
558 if (APIC_INTEGRATED(ver) && !esr_disable) { /* !82489DX */
559 maxlvt = get_maxlvt();
560 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
561 apic_write(APIC_ESR, 0);
562 oldvalue = apic_read(APIC_ESR);
564 value = ERROR_APIC_VECTOR; // enables sending errors
565 apic_write_around(APIC_LVTERR, value);
567 * spec says clear errors after enabling vector.
570 apic_write(APIC_ESR, 0);
571 value = apic_read(APIC_ESR);
572 if (value != oldvalue)
573 apic_printk(APIC_VERBOSE, "ESR value before enabling "
574 "vector: 0x%08lx after: 0x%08lx\n",
579 * Something untraceble is creating bad interrupts on
580 * secondary quads ... for the moment, just leave the
581 * ESR disabled - we can't do anything useful with the
582 * errors anyway - mbligh
584 printk("Leaving ESR disabled.\n");
586 printk("No ESR for 82489DX.\n");
589 if (nmi_watchdog == NMI_LOCAL_APIC)
590 setup_apic_nmi_watchdog();
595 * If Linux enabled the LAPIC against the BIOS default
596 * disable it down before re-entering the BIOS on shutdown.
597 * Otherwise the BIOS may get confused and not power-off.
598 * Additionally clear all LVT entries before disable_local_APIC
599 * for the case where Linux didn't enable the LAPIC.
601 void lapic_shutdown(void)
608 local_irq_save(flags);
611 if (enabled_via_apicbase)
612 disable_local_APIC();
614 local_irq_restore(flags);
621 /* r/w apic fields */
622 unsigned int apic_id;
623 unsigned int apic_taskpri;
624 unsigned int apic_ldr;
625 unsigned int apic_dfr;
626 unsigned int apic_spiv;
627 unsigned int apic_lvtt;
628 unsigned int apic_lvtpc;
629 unsigned int apic_lvt0;
630 unsigned int apic_lvt1;
631 unsigned int apic_lvterr;
632 unsigned int apic_tmict;
633 unsigned int apic_tdcr;
634 unsigned int apic_thmr;
637 static int lapic_suspend(struct sys_device *dev, pm_message_t state)
641 if (!apic_pm_state.active)
644 apic_pm_state.apic_id = apic_read(APIC_ID);
645 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
646 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
647 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
648 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
649 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
650 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
651 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
652 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
653 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
654 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
655 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
656 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
658 local_irq_save(flags);
659 disable_local_APIC();
660 local_irq_restore(flags);
664 static int lapic_resume(struct sys_device *dev)
669 if (!apic_pm_state.active)
672 local_irq_save(flags);
675 * Make sure the APICBASE points to the right address
677 * FIXME! This will be wrong if we ever support suspend on
678 * SMP! We'll need to do this as part of the CPU restore!
680 rdmsr(MSR_IA32_APICBASE, l, h);
681 l &= ~MSR_IA32_APICBASE_BASE;
682 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
683 wrmsr(MSR_IA32_APICBASE, l, h);
685 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
686 apic_write(APIC_ID, apic_pm_state.apic_id);
687 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
688 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
689 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
690 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
691 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
692 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
693 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
694 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
695 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
696 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
697 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
698 apic_write(APIC_ESR, 0);
700 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
701 apic_write(APIC_ESR, 0);
703 local_irq_restore(flags);
708 * This device has no shutdown method - fully functioning local APICs
709 * are needed on every CPU up until machine_halt/restart/poweroff.
712 static struct sysdev_class lapic_sysclass = {
713 set_kset_name("lapic"),
714 .resume = lapic_resume,
715 .suspend = lapic_suspend,
718 static struct sys_device device_lapic = {
720 .cls = &lapic_sysclass,
723 static void __devinit apic_pm_activate(void)
725 apic_pm_state.active = 1;
728 static int __init init_lapic_sysfs(void)
734 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
736 error = sysdev_class_register(&lapic_sysclass);
738 error = sysdev_register(&device_lapic);
741 device_initcall(init_lapic_sysfs);
743 #else /* CONFIG_PM */
745 static void apic_pm_activate(void) { }
747 #endif /* CONFIG_PM */
750 * Detect and enable local APICs on non-SMP boards.
751 * Original code written by Keir Fraser.
754 static int __init apic_set_verbosity(char *str)
756 if (strcmp("debug", str) == 0)
757 apic_verbosity = APIC_DEBUG;
758 else if (strcmp("verbose", str) == 0)
759 apic_verbosity = APIC_VERBOSE;
763 __setup("apic=", apic_set_verbosity);
765 static int __init detect_init_APIC (void)
769 /* Disabled by kernel option? */
770 if (enable_local_apic < 0)
773 switch (boot_cpu_data.x86_vendor) {
775 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
776 (boot_cpu_data.x86 == 15))
779 case X86_VENDOR_INTEL:
780 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
781 (boot_cpu_data.x86 == 5 && cpu_has_apic))
790 * Over-ride BIOS and try to enable the local
791 * APIC only if "lapic" specified.
793 if (enable_local_apic <= 0) {
794 printk("Local APIC disabled by BIOS -- "
795 "you can enable it with \"lapic\"\n");
799 * Some BIOSes disable the local APIC in the
800 * APIC_BASE MSR. This can only be done in
801 * software for Intel P6 or later and AMD K7
802 * (Model > 1) or later.
804 rdmsr(MSR_IA32_APICBASE, l, h);
805 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
806 printk("Local APIC disabled by BIOS -- reenabling.\n");
807 l &= ~MSR_IA32_APICBASE_BASE;
808 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
809 wrmsr(MSR_IA32_APICBASE, l, h);
810 enabled_via_apicbase = 1;
814 * The APIC feature bit should now be enabled
817 features = cpuid_edx(1);
818 if (!(features & (1 << X86_FEATURE_APIC))) {
819 printk("Could not enable APIC!\n");
822 set_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
823 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
825 /* The BIOS may have set up the APIC at some other address */
826 rdmsr(MSR_IA32_APICBASE, l, h);
827 if (l & MSR_IA32_APICBASE_ENABLE)
828 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
830 if (nmi_watchdog != NMI_NONE)
831 nmi_watchdog = NMI_LOCAL_APIC;
833 printk("Found and enabled local APIC!\n");
840 printk("No local APIC present or hardware disabled\n");
844 void __init init_apic_mappings(void)
846 unsigned long apic_phys;
849 * If no local APIC can be found then set up a fake all
850 * zeroes page to simulate the local APIC and another
851 * one for the IO-APIC.
853 if (!smp_found_config && detect_init_APIC()) {
854 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
855 apic_phys = __pa(apic_phys);
857 apic_phys = mp_lapic_addr;
859 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
860 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
864 * Fetch the APIC ID of the BSP in case we have a
865 * default configuration (or the MP table is broken).
867 if (boot_cpu_physical_apicid == -1U)
868 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
870 #ifdef CONFIG_X86_IO_APIC
872 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
875 for (i = 0; i < nr_ioapics; i++) {
876 if (smp_found_config) {
877 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
880 "WARNING: bogus zero IO-APIC "
881 "address found in MPTABLE, "
882 "disabling IO/APIC support!\n");
883 smp_found_config = 0;
884 skip_ioapic_setup = 1;
885 goto fake_ioapic_page;
889 ioapic_phys = (unsigned long)
890 alloc_bootmem_pages(PAGE_SIZE);
891 ioapic_phys = __pa(ioapic_phys);
893 set_fixmap_nocache(idx, ioapic_phys);
894 printk(KERN_DEBUG "mapped IOAPIC to %08lx (%08lx)\n",
895 __fix_to_virt(idx), ioapic_phys);
903 * This part sets up the APIC 32 bit clock in LVTT1, with HZ interrupts
904 * per second. We assume that the caller has already set up the local
907 * The APIC timer is not exactly sync with the external timer chip, it
908 * closely follows bus clocks.
912 * The timer chip is already set up at HZ interrupts per second here,
913 * but we do not accept timer interrupts yet. We only allow the BP
916 static unsigned int __devinit get_8254_timer_count(void)
922 spin_lock_irqsave(&i8253_lock, flags);
924 outb_p(0x00, PIT_MODE);
925 count = inb_p(PIT_CH0);
926 count |= inb_p(PIT_CH0) << 8;
928 spin_unlock_irqrestore(&i8253_lock, flags);
933 /* next tick in 8254 can be caught by catching timer wraparound */
934 static void __devinit wait_8254_wraparound(void)
936 unsigned int curr_count, prev_count;
938 curr_count = get_8254_timer_count();
940 prev_count = curr_count;
941 curr_count = get_8254_timer_count();
943 /* workaround for broken Mercury/Neptune */
944 if (prev_count >= curr_count + 0x100)
945 curr_count = get_8254_timer_count();
947 } while (prev_count >= curr_count);
951 * Default initialization for 8254 timers. If we use other timers like HPET,
952 * we override this later
954 void (*wait_timer_tick)(void) __devinitdata = wait_8254_wraparound;
957 * This function sets up the local APIC timer, with a timeout of
958 * 'clocks' APIC bus clock. During calibration we actually call
959 * this function twice on the boot CPU, once with a bogus timeout
960 * value, second time for real. The other (noncalibrating) CPUs
961 * call this function only once, with the real, calibrated value.
963 * We do reads before writes even if unnecessary, to get around the
964 * P5 APIC double write bug.
967 #define APIC_DIVISOR 16
969 static void __setup_APIC_LVTT(unsigned int clocks)
971 unsigned int lvtt_value, tmp_value, ver;
972 int cpu = smp_processor_id();
974 ver = GET_APIC_VERSION(apic_read(APIC_LVR));
975 lvtt_value = APIC_LVT_TIMER_PERIODIC | LOCAL_TIMER_VECTOR;
976 if (!APIC_INTEGRATED(ver))
977 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
979 if (cpu_isset(cpu, timer_bcast_ipi))
980 lvtt_value |= APIC_LVT_MASKED;
982 apic_write_around(APIC_LVTT, lvtt_value);
987 tmp_value = apic_read(APIC_TDCR);
988 apic_write_around(APIC_TDCR, (tmp_value
989 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
992 apic_write_around(APIC_TMICT, clocks/APIC_DIVISOR);
995 static void __devinit setup_APIC_timer(unsigned int clocks)
999 local_irq_save(flags);
1002 * Wait for IRQ0's slice:
1006 __setup_APIC_LVTT(clocks);
1008 local_irq_restore(flags);
1012 * In this function we calibrate APIC bus clocks to the external
1013 * timer. Unfortunately we cannot use jiffies and the timer irq
1014 * to calibrate, since some later bootup code depends on getting
1015 * the first irq? Ugh.
1017 * We want to do the calibration only once since we
1018 * want to have local timer irqs syncron. CPUs connected
1019 * by the same APIC bus have the very same bus frequency.
1020 * And we want to have irqs off anyways, no accidental
1021 * APIC irq that way.
1024 static int __init calibrate_APIC_clock(void)
1026 unsigned long long t1 = 0, t2 = 0;
1030 const int LOOPS = HZ/10;
1032 apic_printk(APIC_VERBOSE, "calibrating APIC timer ...\n");
1035 * Put whatever arbitrary (but long enough) timeout
1036 * value into the APIC clock, we just want to get the
1037 * counter running for calibration.
1039 __setup_APIC_LVTT(1000000000);
1042 * The timer chip counts down to zero. Let's wait
1043 * for a wraparound to start exact measurement:
1044 * (the current tick might have been already half done)
1050 * We wrapped around just now. Let's start:
1054 tt1 = apic_read(APIC_TMCCT);
1057 * Let's wait LOOPS wraprounds:
1059 for (i = 0; i < LOOPS; i++)
1062 tt2 = apic_read(APIC_TMCCT);
1067 * The APIC bus clock counter is 32 bits only, it
1068 * might have overflown, but note that we use signed
1069 * longs, thus no extra care needed.
1071 * underflown to be exact, as the timer counts down ;)
1074 result = (tt1-tt2)*APIC_DIVISOR/LOOPS;
1077 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
1079 ((long)(t2-t1)/LOOPS)/(1000000/HZ),
1080 ((long)(t2-t1)/LOOPS)%(1000000/HZ));
1082 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
1084 result/(1000000/HZ),
1085 result%(1000000/HZ));
1090 static unsigned int calibration_result;
1092 void __init setup_boot_APIC_clock(void)
1094 unsigned long flags;
1095 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n");
1096 using_apic_timer = 1;
1098 local_irq_save(flags);
1100 calibration_result = calibrate_APIC_clock();
1102 * Now set up the timer for real.
1104 setup_APIC_timer(calibration_result);
1106 local_irq_restore(flags);
1109 void __devinit setup_secondary_APIC_clock(void)
1111 setup_APIC_timer(calibration_result);
1114 void disable_APIC_timer(void)
1116 if (using_apic_timer) {
1119 v = apic_read(APIC_LVTT);
1121 * When an illegal vector value (0-15) is written to an LVT
1122 * entry and delivery mode is Fixed, the APIC may signal an
1123 * illegal vector error, with out regard to whether the mask
1124 * bit is set or whether an interrupt is actually seen on input.
1126 * Boot sequence might call this function when the LVTT has
1127 * '0' vector value. So make sure vector field is set to
1130 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1131 apic_write_around(APIC_LVTT, v);
1135 void enable_APIC_timer(void)
1137 int cpu = smp_processor_id();
1139 if (using_apic_timer &&
1140 !cpu_isset(cpu, timer_bcast_ipi)) {
1143 v = apic_read(APIC_LVTT);
1144 apic_write_around(APIC_LVTT, v & ~APIC_LVT_MASKED);
1148 void switch_APIC_timer_to_ipi(void *cpumask)
1150 cpumask_t mask = *(cpumask_t *)cpumask;
1151 int cpu = smp_processor_id();
1153 if (cpu_isset(cpu, mask) &&
1154 !cpu_isset(cpu, timer_bcast_ipi)) {
1155 disable_APIC_timer();
1156 cpu_set(cpu, timer_bcast_ipi);
1159 EXPORT_SYMBOL(switch_APIC_timer_to_ipi);
1161 void switch_ipi_to_APIC_timer(void *cpumask)
1163 cpumask_t mask = *(cpumask_t *)cpumask;
1164 int cpu = smp_processor_id();
1166 if (cpu_isset(cpu, mask) &&
1167 cpu_isset(cpu, timer_bcast_ipi)) {
1168 cpu_clear(cpu, timer_bcast_ipi);
1169 enable_APIC_timer();
1172 EXPORT_SYMBOL(switch_ipi_to_APIC_timer);
1177 * Local timer interrupt handler. It does both profiling and
1178 * process statistics/rescheduling.
1180 * We do profiling in every local tick, statistics/rescheduling
1181 * happen only every 'profiling multiplier' ticks. The default
1182 * multiplier is 1 and it can be changed by writing the new multiplier
1183 * value into /proc/profile.
1186 inline void smp_local_timer_interrupt(struct pt_regs * regs)
1188 profile_tick(CPU_PROFILING, regs);
1190 update_process_times(user_mode_vm(regs));
1194 * We take the 'long' return path, and there every subsystem
1195 * grabs the apropriate locks (kernel lock/ irq lock).
1197 * we might want to decouple profiling from the 'long path',
1198 * and do the profiling totally in assembly.
1200 * Currently this isn't too much of an issue (performance wise),
1201 * we can take more than 100K local irqs per second on a 100 MHz P5.
1206 * Local APIC timer interrupt. This is the most natural way for doing
1207 * local interrupts, but local timer interrupts can be emulated by
1208 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
1210 * [ if a single-CPU system runs an SMP kernel then we call the local
1211 * interrupt as well. Thus we cannot inline the local irq ... ]
1214 fastcall void smp_apic_timer_interrupt(struct pt_regs *regs)
1216 int cpu = smp_processor_id();
1219 * the NMI deadlock-detector uses this.
1221 per_cpu(irq_stat, cpu).apic_timer_irqs++;
1224 * NOTE! We'd better ACK the irq immediately,
1225 * because timer handling can be slow.
1229 * update_process_times() expects us to have done irq_enter().
1230 * Besides, if we don't timer interrupts ignore the global
1231 * interrupt lock, which is the WrongThing (tm) to do.
1234 smp_local_timer_interrupt(regs);
1239 static void up_apic_timer_interrupt_call(struct pt_regs *regs)
1241 int cpu = smp_processor_id();
1244 * the NMI deadlock-detector uses this.
1246 per_cpu(irq_stat, cpu).apic_timer_irqs++;
1248 smp_local_timer_interrupt(regs);
1252 void smp_send_timer_broadcast_ipi(struct pt_regs *regs)
1256 cpus_and(mask, cpu_online_map, timer_bcast_ipi);
1257 if (!cpus_empty(mask)) {
1259 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
1262 * We can directly call the apic timer interrupt handler
1263 * in UP case. Minus all irq related functions
1265 up_apic_timer_interrupt_call(regs);
1270 int setup_profiling_timer(unsigned int multiplier)
1276 * This interrupt should _never_ happen with our APIC/SMP architecture
1278 fastcall void smp_spurious_interrupt(struct pt_regs *regs)
1284 * Check if this really is a spurious interrupt and ACK it
1285 * if it is a vectored one. Just in case...
1286 * Spurious interrupts should not be ACKed.
1288 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1289 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1292 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1293 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, should never happen.\n",
1294 smp_processor_id());
1299 * This interrupt should never happen with our APIC/SMP architecture
1302 fastcall void smp_error_interrupt(struct pt_regs *regs)
1304 unsigned long v, v1;
1307 /* First tickle the hardware, only then report what went on. -- REW */
1308 v = apic_read(APIC_ESR);
1309 apic_write(APIC_ESR, 0);
1310 v1 = apic_read(APIC_ESR);
1312 atomic_inc(&irq_err_count);
1314 /* Here is what the APIC error bits mean:
1317 2: Send accept error
1318 3: Receive accept error
1320 5: Send illegal vector
1321 6: Received illegal vector
1322 7: Illegal register address
1324 printk (KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
1325 smp_processor_id(), v , v1);
1330 * This initializes the IO-APIC and APIC hardware if this is
1333 int __init APIC_init_uniprocessor (void)
1335 if (enable_local_apic < 0)
1336 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1338 if (!smp_found_config && !cpu_has_apic)
1342 * Complain if the BIOS pretends there is one.
1344 if (!cpu_has_apic && APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
1345 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1346 boot_cpu_physical_apicid);
1347 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1351 verify_local_APIC();
1356 * Hack: In case of kdump, after a crash, kernel might be booting
1357 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1358 * might be zero if read from MP tables. Get it from LAPIC.
1360 #ifdef CONFIG_CRASH_DUMP
1361 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
1363 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
1367 #ifdef CONFIG_X86_IO_APIC
1368 if (smp_found_config)
1369 if (!skip_ioapic_setup && nr_ioapics)
1372 setup_boot_APIC_clock();