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/module.h>
28 #include <linux/ioport.h>
30 #include <asm/atomic.h>
33 #include <asm/mpspec.h>
34 #include <asm/pgalloc.h>
35 #include <asm/mach_apic.h>
38 #include <asm/proto.h>
39 #include <asm/timex.h>
45 int apic_runs_main_timer;
46 int apic_calibrate_pmtmr __initdata;
48 int disable_apic_timer __initdata;
50 static struct resource *ioapic_resources;
51 static struct resource lapic_resource = {
53 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
57 * cpu_mask that denotes the CPUs that needs timer interrupt coming in as
58 * IPIs in place of local APIC timers
60 static cpumask_t timer_interrupt_broadcast_ipi_mask;
62 /* Using APIC to generate smp_local_timer_interrupt? */
63 int using_apic_timer __read_mostly = 0;
65 static void apic_pm_activate(void);
67 void enable_NMI_through_LVT0 (void * dummy)
71 v = APIC_DM_NMI; /* unmask and set to NMI */
72 apic_write(APIC_LVT0, v);
77 unsigned int v, maxlvt;
79 v = apic_read(APIC_LVR);
80 maxlvt = GET_APIC_MAXLVT(v);
85 * 'what should we do if we get a hw irq event on an illegal vector'.
86 * each architecture has to answer this themselves.
88 void ack_bad_irq(unsigned int irq)
90 printk("unexpected IRQ trap at vector %02x\n", irq);
92 * Currently unexpected vectors happen only on SMP and APIC.
93 * We _must_ ack these because every local APIC has only N
94 * irq slots per priority level, and a 'hanging, unacked' IRQ
95 * holds up an irq slot - in excessive cases (when multiple
96 * unexpected vectors occur) that might lock up the APIC
98 * But don't ack when the APIC is disabled. -AK
104 void clear_local_APIC(void)
109 maxlvt = get_maxlvt();
112 * Masking an LVT entry can trigger a local APIC error
113 * if the vector is zero. Mask LVTERR first to prevent this.
116 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
117 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
120 * Careful: we have to set masks only first to deassert
121 * any level-triggered sources.
123 v = apic_read(APIC_LVTT);
124 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
125 v = apic_read(APIC_LVT0);
126 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
127 v = apic_read(APIC_LVT1);
128 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
130 v = apic_read(APIC_LVTPC);
131 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
135 * Clean APIC state for other OSs:
137 apic_write(APIC_LVTT, APIC_LVT_MASKED);
138 apic_write(APIC_LVT0, APIC_LVT_MASKED);
139 apic_write(APIC_LVT1, APIC_LVT_MASKED);
141 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
143 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
144 apic_write(APIC_ESR, 0);
148 void disconnect_bsp_APIC(int virt_wire_setup)
150 /* Go back to Virtual Wire compatibility mode */
153 /* For the spurious interrupt use vector F, and enable it */
154 value = apic_read(APIC_SPIV);
155 value &= ~APIC_VECTOR_MASK;
156 value |= APIC_SPIV_APIC_ENABLED;
158 apic_write(APIC_SPIV, value);
160 if (!virt_wire_setup) {
161 /* For LVT0 make it edge triggered, active high, external and enabled */
162 value = apic_read(APIC_LVT0);
163 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
164 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
165 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED );
166 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
167 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
168 apic_write(APIC_LVT0, value);
171 apic_write(APIC_LVT0, APIC_LVT_MASKED);
174 /* For LVT1 make it edge triggered, active high, nmi and enabled */
175 value = apic_read(APIC_LVT1);
176 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
177 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
178 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
179 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
180 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
181 apic_write(APIC_LVT1, value);
184 void disable_local_APIC(void)
191 * Disable APIC (implies clearing of registers
194 value = apic_read(APIC_SPIV);
195 value &= ~APIC_SPIV_APIC_ENABLED;
196 apic_write(APIC_SPIV, value);
200 * This is to verify that we're looking at a real local APIC.
201 * Check these against your board if the CPUs aren't getting
202 * started for no apparent reason.
204 int __init verify_local_APIC(void)
206 unsigned int reg0, reg1;
209 * The version register is read-only in a real APIC.
211 reg0 = apic_read(APIC_LVR);
212 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
213 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
214 reg1 = apic_read(APIC_LVR);
215 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
218 * The two version reads above should print the same
219 * numbers. If the second one is different, then we
220 * poke at a non-APIC.
226 * Check if the version looks reasonably.
228 reg1 = GET_APIC_VERSION(reg0);
229 if (reg1 == 0x00 || reg1 == 0xff)
232 if (reg1 < 0x02 || reg1 == 0xff)
236 * The ID register is read/write in a real APIC.
238 reg0 = apic_read(APIC_ID);
239 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
240 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
241 reg1 = apic_read(APIC_ID);
242 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
243 apic_write(APIC_ID, reg0);
244 if (reg1 != (reg0 ^ APIC_ID_MASK))
248 * The next two are just to see if we have sane values.
249 * They're only really relevant if we're in Virtual Wire
250 * compatibility mode, but most boxes are anymore.
252 reg0 = apic_read(APIC_LVT0);
253 apic_printk(APIC_DEBUG,"Getting LVT0: %x\n", reg0);
254 reg1 = apic_read(APIC_LVT1);
255 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
260 void __init sync_Arb_IDs(void)
262 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
263 unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));
264 if (ver >= 0x14) /* P4 or higher */
270 apic_wait_icr_idle();
272 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
273 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
278 * An initial setup of the virtual wire mode.
280 void __init init_bsp_APIC(void)
285 * Don't do the setup now if we have a SMP BIOS as the
286 * through-I/O-APIC virtual wire mode might be active.
288 if (smp_found_config || !cpu_has_apic)
291 value = apic_read(APIC_LVR);
294 * Do not trust the local APIC being empty at bootup.
301 value = apic_read(APIC_SPIV);
302 value &= ~APIC_VECTOR_MASK;
303 value |= APIC_SPIV_APIC_ENABLED;
304 value |= APIC_SPIV_FOCUS_DISABLED;
305 value |= SPURIOUS_APIC_VECTOR;
306 apic_write(APIC_SPIV, value);
309 * Set up the virtual wire mode.
311 apic_write(APIC_LVT0, APIC_DM_EXTINT);
313 apic_write(APIC_LVT1, value);
316 void __cpuinit setup_local_APIC (void)
318 unsigned int value, maxlvt;
321 value = apic_read(APIC_LVR);
323 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
326 * Double-check whether this APIC is really registered.
327 * This is meaningless in clustered apic mode, so we skip it.
329 if (!apic_id_registered())
333 * Intel recommends to set DFR, LDR and TPR before enabling
334 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
335 * document number 292116). So here it goes...
340 * Set Task Priority to 'accept all'. We never change this
343 value = apic_read(APIC_TASKPRI);
344 value &= ~APIC_TPRI_MASK;
345 apic_write(APIC_TASKPRI, value);
348 * After a crash, we no longer service the interrupts and a pending
349 * interrupt from previous kernel might still have ISR bit set.
351 * Most probably by now CPU has serviced that pending interrupt and
352 * it might not have done the ack_APIC_irq() because it thought,
353 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
354 * does not clear the ISR bit and cpu thinks it has already serivced
355 * the interrupt. Hence a vector might get locked. It was noticed
356 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
358 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
359 value = apic_read(APIC_ISR + i*0x10);
360 for (j = 31; j >= 0; j--) {
367 * Now that we are all set up, enable the APIC
369 value = apic_read(APIC_SPIV);
370 value &= ~APIC_VECTOR_MASK;
374 value |= APIC_SPIV_APIC_ENABLED;
376 /* We always use processor focus */
379 * Set spurious IRQ vector
381 value |= SPURIOUS_APIC_VECTOR;
382 apic_write(APIC_SPIV, value);
387 * set up through-local-APIC on the BP's LINT0. This is not
388 * strictly necessary in pure symmetric-IO mode, but sometimes
389 * we delegate interrupts to the 8259A.
392 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
394 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
395 if (!smp_processor_id() && !value) {
396 value = APIC_DM_EXTINT;
397 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", smp_processor_id());
399 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
400 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", smp_processor_id());
402 apic_write(APIC_LVT0, value);
405 * only the BP should see the LINT1 NMI signal, obviously.
407 if (!smp_processor_id())
410 value = APIC_DM_NMI | APIC_LVT_MASKED;
411 apic_write(APIC_LVT1, value);
415 maxlvt = get_maxlvt();
416 oldvalue = apic_read(APIC_ESR);
417 value = ERROR_APIC_VECTOR; // enables sending errors
418 apic_write(APIC_LVTERR, value);
420 * spec says clear errors after enabling vector.
423 apic_write(APIC_ESR, 0);
424 value = apic_read(APIC_ESR);
425 if (value != oldvalue)
426 apic_printk(APIC_VERBOSE,
427 "ESR value after enabling vector: %08x, after %08x\n",
431 nmi_watchdog_default();
432 setup_apic_nmi_watchdog(NULL);
439 /* 'active' is true if the local APIC was enabled by us and
440 not the BIOS; this signifies that we are also responsible
441 for disabling it before entering apm/acpi suspend */
443 /* r/w apic fields */
444 unsigned int apic_id;
445 unsigned int apic_taskpri;
446 unsigned int apic_ldr;
447 unsigned int apic_dfr;
448 unsigned int apic_spiv;
449 unsigned int apic_lvtt;
450 unsigned int apic_lvtpc;
451 unsigned int apic_lvt0;
452 unsigned int apic_lvt1;
453 unsigned int apic_lvterr;
454 unsigned int apic_tmict;
455 unsigned int apic_tdcr;
456 unsigned int apic_thmr;
459 static int lapic_suspend(struct sys_device *dev, pm_message_t state)
464 if (!apic_pm_state.active)
467 maxlvt = get_maxlvt();
469 apic_pm_state.apic_id = apic_read(APIC_ID);
470 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
471 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
472 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
473 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
474 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
476 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
477 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
478 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
479 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
480 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
481 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
482 #ifdef CONFIG_X86_MCE_INTEL
484 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
486 local_irq_save(flags);
487 disable_local_APIC();
488 local_irq_restore(flags);
492 static int lapic_resume(struct sys_device *dev)
498 if (!apic_pm_state.active)
501 maxlvt = get_maxlvt();
503 local_irq_save(flags);
504 rdmsr(MSR_IA32_APICBASE, l, h);
505 l &= ~MSR_IA32_APICBASE_BASE;
506 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
507 wrmsr(MSR_IA32_APICBASE, l, h);
508 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
509 apic_write(APIC_ID, apic_pm_state.apic_id);
510 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
511 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
512 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
513 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
514 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
515 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
516 #ifdef CONFIG_X86_MCE_INTEL
518 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
521 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
522 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
523 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
524 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
525 apic_write(APIC_ESR, 0);
527 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
528 apic_write(APIC_ESR, 0);
530 local_irq_restore(flags);
534 static struct sysdev_class lapic_sysclass = {
535 set_kset_name("lapic"),
536 .resume = lapic_resume,
537 .suspend = lapic_suspend,
540 static struct sys_device device_lapic = {
542 .cls = &lapic_sysclass,
545 static void __cpuinit apic_pm_activate(void)
547 apic_pm_state.active = 1;
550 static int __init init_lapic_sysfs(void)
555 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
556 error = sysdev_class_register(&lapic_sysclass);
558 error = sysdev_register(&device_lapic);
561 device_initcall(init_lapic_sysfs);
563 #else /* CONFIG_PM */
565 static void apic_pm_activate(void) { }
567 #endif /* CONFIG_PM */
569 static int __init apic_set_verbosity(char *str)
572 skip_ioapic_setup = 0;
576 if (strcmp("debug", str) == 0)
577 apic_verbosity = APIC_DEBUG;
578 else if (strcmp("verbose", str) == 0)
579 apic_verbosity = APIC_VERBOSE;
581 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
582 " use apic=verbose or apic=debug\n", str);
588 early_param("apic", apic_set_verbosity);
591 * Detect and enable local APICs on non-SMP boards.
592 * Original code written by Keir Fraser.
593 * On AMD64 we trust the BIOS - if it says no APIC it is likely
594 * not correctly set up (usually the APIC timer won't work etc.)
597 static int __init detect_init_APIC (void)
600 printk(KERN_INFO "No local APIC present\n");
604 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
609 #ifdef CONFIG_X86_IO_APIC
610 static struct resource * __init ioapic_setup_resources(void)
612 #define IOAPIC_RESOURCE_NAME_SIZE 11
614 struct resource *res;
621 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
624 mem = alloc_bootmem(n);
629 mem += sizeof(struct resource) * nr_ioapics;
631 for (i = 0; i < nr_ioapics; i++) {
633 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
634 sprintf(mem, "IOAPIC %u", i);
635 mem += IOAPIC_RESOURCE_NAME_SIZE;
639 ioapic_resources = res;
644 static int __init ioapic_insert_resources(void)
647 struct resource *r = ioapic_resources;
650 printk("IO APIC resources could be not be allocated.\n");
654 for (i = 0; i < nr_ioapics; i++) {
655 insert_resource(&iomem_resource, r);
662 /* Insert the IO APIC resources after PCI initialization has occured to handle
663 * IO APICS that are mapped in on a BAR in PCI space. */
664 late_initcall(ioapic_insert_resources);
667 void __init init_apic_mappings(void)
669 unsigned long apic_phys;
672 * If no local APIC can be found then set up a fake all
673 * zeroes page to simulate the local APIC and another
674 * one for the IO-APIC.
676 if (!smp_found_config && detect_init_APIC()) {
677 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
678 apic_phys = __pa(apic_phys);
680 apic_phys = mp_lapic_addr;
682 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
684 apic_printk(APIC_VERBOSE,"mapped APIC to %16lx (%16lx)\n", APIC_BASE, apic_phys);
686 /* Put local APIC into the resource map. */
687 lapic_resource.start = apic_phys;
688 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
689 insert_resource(&iomem_resource, &lapic_resource);
692 * Fetch the APIC ID of the BSP in case we have a
693 * default configuration (or the MP table is broken).
695 boot_cpu_id = GET_APIC_ID(apic_read(APIC_ID));
698 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
700 struct resource *ioapic_res;
702 ioapic_res = ioapic_setup_resources();
703 for (i = 0; i < nr_ioapics; i++) {
704 if (smp_found_config) {
705 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
707 ioapic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
708 ioapic_phys = __pa(ioapic_phys);
710 set_fixmap_nocache(idx, ioapic_phys);
711 apic_printk(APIC_VERBOSE,"mapped IOAPIC to %016lx (%016lx)\n",
712 __fix_to_virt(idx), ioapic_phys);
715 if (ioapic_res != NULL) {
716 ioapic_res->start = ioapic_phys;
717 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
725 * This function sets up the local APIC timer, with a timeout of
726 * 'clocks' APIC bus clock. During calibration we actually call
727 * this function twice on the boot CPU, once with a bogus timeout
728 * value, second time for real. The other (noncalibrating) CPUs
729 * call this function only once, with the real, calibrated value.
731 * We do reads before writes even if unnecessary, to get around the
732 * P5 APIC double write bug.
735 #define APIC_DIVISOR 16
737 static void __setup_APIC_LVTT(unsigned int clocks)
739 unsigned int lvtt_value, tmp_value;
740 int cpu = smp_processor_id();
742 lvtt_value = APIC_LVT_TIMER_PERIODIC | LOCAL_TIMER_VECTOR;
744 if (cpu_isset(cpu, timer_interrupt_broadcast_ipi_mask))
745 lvtt_value |= APIC_LVT_MASKED;
747 apic_write(APIC_LVTT, lvtt_value);
752 tmp_value = apic_read(APIC_TDCR);
753 apic_write(APIC_TDCR, (tmp_value
754 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
757 apic_write(APIC_TMICT, clocks/APIC_DIVISOR);
760 static void setup_APIC_timer(unsigned int clocks)
764 local_irq_save(flags);
766 /* wait for irq slice */
767 if (hpet_address && hpet_use_timer) {
768 int trigger = hpet_readl(HPET_T0_CMP);
769 while (hpet_readl(HPET_COUNTER) >= trigger)
771 while (hpet_readl(HPET_COUNTER) < trigger)
777 c2 |= inb_p(0x40) << 8;
782 c2 |= inb_p(0x40) << 8;
783 } while (c2 - c1 < 300);
785 __setup_APIC_LVTT(clocks);
786 /* Turn off PIT interrupt if we use APIC timer as main timer.
787 Only works with the PM timer right now
788 TBD fix it for HPET too. */
789 if ((pmtmr_ioport != 0) &&
790 smp_processor_id() == boot_cpu_id &&
791 apic_runs_main_timer == 1 &&
792 !cpu_isset(boot_cpu_id, timer_interrupt_broadcast_ipi_mask)) {
793 stop_timer_interrupt();
794 apic_runs_main_timer++;
796 local_irq_restore(flags);
800 * In this function we calibrate APIC bus clocks to the external
801 * timer. Unfortunately we cannot use jiffies and the timer irq
802 * to calibrate, since some later bootup code depends on getting
803 * the first irq? Ugh.
805 * We want to do the calibration only once since we
806 * want to have local timer irqs syncron. CPUs connected
807 * by the same APIC bus have the very same bus frequency.
808 * And we want to have irqs off anyways, no accidental
812 #define TICK_COUNT 100000000
814 static int __init calibrate_APIC_clock(void)
816 int apic, apic_start, tsc, tsc_start;
819 * Put whatever arbitrary (but long enough) timeout
820 * value into the APIC clock, we just want to get the
821 * counter running for calibration.
823 __setup_APIC_LVTT(1000000000);
825 apic_start = apic_read(APIC_TMCCT);
826 #ifdef CONFIG_X86_PM_TIMER
827 if (apic_calibrate_pmtmr && pmtmr_ioport) {
828 pmtimer_wait(5000); /* 5ms wait */
829 apic = apic_read(APIC_TMCCT);
830 result = (apic_start - apic) * 1000L / 5;
837 apic = apic_read(APIC_TMCCT);
839 } while ((tsc - tsc_start) < TICK_COUNT &&
840 (apic - apic_start) < TICK_COUNT);
842 result = (apic_start - apic) * 1000L * cpu_khz /
845 printk("result %d\n", result);
848 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
849 result / 1000 / 1000, result / 1000 % 1000);
851 return result * APIC_DIVISOR / HZ;
854 static unsigned int calibration_result;
856 void __init setup_boot_APIC_clock (void)
858 if (disable_apic_timer) {
859 printk(KERN_INFO "Disabling APIC timer\n");
863 printk(KERN_INFO "Using local APIC timer interrupts.\n");
864 using_apic_timer = 1;
868 calibration_result = calibrate_APIC_clock();
870 * Now set up the timer for real.
872 setup_APIC_timer(calibration_result);
877 void __cpuinit setup_secondary_APIC_clock(void)
879 local_irq_disable(); /* FIXME: Do we need this? --RR */
880 setup_APIC_timer(calibration_result);
884 void disable_APIC_timer(void)
886 if (using_apic_timer) {
889 v = apic_read(APIC_LVTT);
891 * When an illegal vector value (0-15) is written to an LVT
892 * entry and delivery mode is Fixed, the APIC may signal an
893 * illegal vector error, with out regard to whether the mask
894 * bit is set or whether an interrupt is actually seen on input.
896 * Boot sequence might call this function when the LVTT has
897 * '0' vector value. So make sure vector field is set to
900 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
901 apic_write(APIC_LVTT, v);
905 void enable_APIC_timer(void)
907 int cpu = smp_processor_id();
909 if (using_apic_timer &&
910 !cpu_isset(cpu, timer_interrupt_broadcast_ipi_mask)) {
913 v = apic_read(APIC_LVTT);
914 apic_write(APIC_LVTT, v & ~APIC_LVT_MASKED);
918 void switch_APIC_timer_to_ipi(void *cpumask)
920 cpumask_t mask = *(cpumask_t *)cpumask;
921 int cpu = smp_processor_id();
923 if (cpu_isset(cpu, mask) &&
924 !cpu_isset(cpu, timer_interrupt_broadcast_ipi_mask)) {
925 disable_APIC_timer();
926 cpu_set(cpu, timer_interrupt_broadcast_ipi_mask);
929 EXPORT_SYMBOL(switch_APIC_timer_to_ipi);
931 void smp_send_timer_broadcast_ipi(void)
935 cpus_and(mask, cpu_online_map, timer_interrupt_broadcast_ipi_mask);
936 if (!cpus_empty(mask)) {
937 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
941 void switch_ipi_to_APIC_timer(void *cpumask)
943 cpumask_t mask = *(cpumask_t *)cpumask;
944 int cpu = smp_processor_id();
946 if (cpu_isset(cpu, mask) &&
947 cpu_isset(cpu, timer_interrupt_broadcast_ipi_mask)) {
948 cpu_clear(cpu, timer_interrupt_broadcast_ipi_mask);
952 EXPORT_SYMBOL(switch_ipi_to_APIC_timer);
954 int setup_profiling_timer(unsigned int multiplier)
959 void setup_APIC_extened_lvt(unsigned char lvt_off, unsigned char vector,
960 unsigned char msg_type, unsigned char mask)
962 unsigned long reg = (lvt_off << 4) + K8_APIC_EXT_LVT_BASE;
963 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
970 * Local timer interrupt handler. It does both profiling and
971 * process statistics/rescheduling.
973 * We do profiling in every local tick, statistics/rescheduling
974 * happen only every 'profiling multiplier' ticks. The default
975 * multiplier is 1 and it can be changed by writing the new multiplier
976 * value into /proc/profile.
979 void smp_local_timer_interrupt(void)
981 profile_tick(CPU_PROFILING);
983 update_process_times(user_mode(get_irq_regs()));
985 if (apic_runs_main_timer > 1 && smp_processor_id() == boot_cpu_id)
986 main_timer_handler();
988 * We take the 'long' return path, and there every subsystem
989 * grabs the appropriate locks (kernel lock/ irq lock).
991 * We might want to decouple profiling from the 'long path',
992 * and do the profiling totally in assembly.
994 * Currently this isn't too much of an issue (performance wise),
995 * we can take more than 100K local irqs per second on a 100 MHz P5.
1000 * Local APIC timer interrupt. This is the most natural way for doing
1001 * local interrupts, but local timer interrupts can be emulated by
1002 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
1004 * [ if a single-CPU system runs an SMP kernel then we call the local
1005 * interrupt as well. Thus we cannot inline the local irq ... ]
1007 void smp_apic_timer_interrupt(struct pt_regs *regs)
1009 struct pt_regs *old_regs = set_irq_regs(regs);
1012 * the NMI deadlock-detector uses this.
1014 add_pda(apic_timer_irqs, 1);
1017 * NOTE! We'd better ACK the irq immediately,
1018 * because timer handling can be slow.
1022 * update_process_times() expects us to have done irq_enter().
1023 * Besides, if we don't timer interrupts ignore the global
1024 * interrupt lock, which is the WrongThing (tm) to do.
1028 smp_local_timer_interrupt();
1030 set_irq_regs(old_regs);
1034 * apic_is_clustered_box() -- Check if we can expect good TSC
1036 * Thus far, the major user of this is IBM's Summit2 series:
1038 * Clustered boxes may have unsynced TSC problems if they are
1039 * multi-chassis. Use available data to take a good guess.
1040 * If in doubt, go HPET.
1042 __cpuinit int apic_is_clustered_box(void)
1044 int i, clusters, zeros;
1046 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1048 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
1050 for (i = 0; i < NR_CPUS; i++) {
1051 id = bios_cpu_apicid[i];
1052 if (id != BAD_APICID)
1053 __set_bit(APIC_CLUSTERID(id), clustermap);
1056 /* Problem: Partially populated chassis may not have CPUs in some of
1057 * the APIC clusters they have been allocated. Only present CPUs have
1058 * bios_cpu_apicid entries, thus causing zeroes in the bitmap. Since
1059 * clusters are allocated sequentially, count zeros only if they are
1064 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1065 if (test_bit(i, clustermap)) {
1066 clusters += 1 + zeros;
1073 * If clusters > 2, then should be multi-chassis.
1074 * May have to revisit this when multi-core + hyperthreaded CPUs come
1075 * out, but AFAIK this will work even for them.
1077 return (clusters > 2);
1081 * This interrupt should _never_ happen with our APIC/SMP architecture
1083 asmlinkage void smp_spurious_interrupt(void)
1089 * Check if this really is a spurious interrupt and ACK it
1090 * if it is a vectored one. Just in case...
1091 * Spurious interrupts should not be ACKed.
1093 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1094 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1098 static unsigned long last_warning;
1099 static unsigned long skipped;
1101 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1102 if (time_before(last_warning+30*HZ,jiffies)) {
1103 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, %ld skipped.\n",
1104 smp_processor_id(), skipped);
1105 last_warning = jiffies;
1115 * This interrupt should never happen with our APIC/SMP architecture
1118 asmlinkage void smp_error_interrupt(void)
1124 /* First tickle the hardware, only then report what went on. -- REW */
1125 v = apic_read(APIC_ESR);
1126 apic_write(APIC_ESR, 0);
1127 v1 = apic_read(APIC_ESR);
1129 atomic_inc(&irq_err_count);
1131 /* Here is what the APIC error bits mean:
1134 2: Send accept error
1135 3: Receive accept error
1137 5: Send illegal vector
1138 6: Received illegal vector
1139 7: Illegal register address
1141 printk (KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1142 smp_processor_id(), v , v1);
1149 * This initializes the IO-APIC and APIC hardware if this is
1152 int __init APIC_init_uniprocessor (void)
1155 printk(KERN_INFO "Apic disabled\n");
1158 if (!cpu_has_apic) {
1160 printk(KERN_INFO "Apic disabled by BIOS\n");
1164 verify_local_APIC();
1166 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_id);
1167 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_id));
1171 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1175 setup_boot_APIC_clock();
1176 check_nmi_watchdog();
1180 static __init int setup_disableapic(char *str)
1183 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1186 early_param("disableapic", setup_disableapic);
1188 /* same as disableapic, for compatibility */
1189 static __init int setup_nolapic(char *str)
1191 return setup_disableapic(str);
1193 early_param("nolapic", setup_nolapic);
1195 static __init int setup_noapictimer(char *str)
1197 if (str[0] != ' ' && str[0] != 0)
1199 disable_apic_timer = 1;
1203 static __init int setup_apicmaintimer(char *str)
1205 apic_runs_main_timer = 1;
1209 __setup("apicmaintimer", setup_apicmaintimer);
1211 static __init int setup_noapicmaintimer(char *str)
1213 apic_runs_main_timer = -1;
1216 __setup("noapicmaintimer", setup_noapicmaintimer);
1218 static __init int setup_apicpmtimer(char *s)
1220 apic_calibrate_pmtmr = 1;
1222 return setup_apicmaintimer(NULL);
1224 __setup("apicpmtimer", setup_apicpmtimer);
1226 __setup("noapictimer", setup_noapictimer);