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/config.h>
18 #include <linux/init.h>
21 #include <linux/irq.h>
22 #include <linux/delay.h>
23 #include <linux/bootmem.h>
24 #include <linux/smp_lock.h>
25 #include <linux/interrupt.h>
26 #include <linux/mc146818rtc.h>
27 #include <linux/kernel_stat.h>
28 #include <linux/sysdev.h>
30 #include <asm/atomic.h>
33 #include <asm/mpspec.h>
34 #include <asm/pgalloc.h>
35 #include <asm/mach_apic.h>
39 int disable_apic_timer __initdata
;
41 /* Using APIC to generate smp_local_timer_interrupt? */
42 int using_apic_timer
= 0;
44 static DEFINE_PER_CPU(int, prof_multiplier
) = 1;
45 static DEFINE_PER_CPU(int, prof_old_multiplier
) = 1;
46 static DEFINE_PER_CPU(int, prof_counter
) = 1;
48 static void apic_pm_activate(void);
50 void enable_NMI_through_LVT0 (void * dummy
)
54 ver
= apic_read(APIC_LVR
);
55 ver
= GET_APIC_VERSION(ver
);
56 v
= APIC_DM_NMI
; /* unmask and set to NMI */
57 apic_write_around(APIC_LVT0
, v
);
62 unsigned int v
, ver
, maxlvt
;
64 v
= apic_read(APIC_LVR
);
65 ver
= GET_APIC_VERSION(v
);
66 maxlvt
= GET_APIC_MAXLVT(v
);
70 void clear_local_APIC(void)
75 maxlvt
= get_maxlvt();
78 * Masking an LVT entry on a P6 can trigger a local APIC error
79 * if the vector is zero. Mask LVTERR first to prevent this.
82 v
= ERROR_APIC_VECTOR
; /* any non-zero vector will do */
83 apic_write_around(APIC_LVTERR
, v
| APIC_LVT_MASKED
);
86 * Careful: we have to set masks only first to deassert
87 * any level-triggered sources.
89 v
= apic_read(APIC_LVTT
);
90 apic_write_around(APIC_LVTT
, v
| APIC_LVT_MASKED
);
91 v
= apic_read(APIC_LVT0
);
92 apic_write_around(APIC_LVT0
, v
| APIC_LVT_MASKED
);
93 v
= apic_read(APIC_LVT1
);
94 apic_write_around(APIC_LVT1
, v
| APIC_LVT_MASKED
);
96 v
= apic_read(APIC_LVTPC
);
97 apic_write_around(APIC_LVTPC
, v
| APIC_LVT_MASKED
);
101 * Clean APIC state for other OSs:
103 apic_write_around(APIC_LVTT
, APIC_LVT_MASKED
);
104 apic_write_around(APIC_LVT0
, APIC_LVT_MASKED
);
105 apic_write_around(APIC_LVT1
, APIC_LVT_MASKED
);
107 apic_write_around(APIC_LVTERR
, APIC_LVT_MASKED
);
109 apic_write_around(APIC_LVTPC
, APIC_LVT_MASKED
);
110 v
= GET_APIC_VERSION(apic_read(APIC_LVR
));
111 if (APIC_INTEGRATED(v
)) { /* !82489DX */
112 if (maxlvt
> 3) /* Due to Pentium errata 3AP and 11AP. */
113 apic_write(APIC_ESR
, 0);
118 void __init
connect_bsp_APIC(void)
122 * Do not trust the local APIC being empty at bootup.
126 * PIC mode, enable APIC mode in the IMCR, i.e.
127 * connect BSP's local APIC to INT and NMI lines.
129 apic_printk(APIC_VERBOSE
, "leaving PIC mode, enabling APIC mode.\n");
135 void disconnect_bsp_APIC(void)
139 * Put the board back into PIC mode (has an effect
140 * only on certain older boards). Note that APIC
141 * interrupts, including IPIs, won't work beyond
142 * this point! The only exception are INIT IPIs.
144 apic_printk(APIC_QUIET
, "disabling APIC mode, entering PIC mode.\n");
150 void disable_local_APIC(void)
157 * Disable APIC (implies clearing of registers
160 value
= apic_read(APIC_SPIV
);
161 value
&= ~APIC_SPIV_APIC_ENABLED
;
162 apic_write_around(APIC_SPIV
, value
);
166 * This is to verify that we're looking at a real local APIC.
167 * Check these against your board if the CPUs aren't getting
168 * started for no apparent reason.
170 int __init
verify_local_APIC(void)
172 unsigned int reg0
, reg1
;
175 * The version register is read-only in a real APIC.
177 reg0
= apic_read(APIC_LVR
);
178 apic_printk(APIC_DEBUG
, "Getting VERSION: %x\n", reg0
);
179 apic_write(APIC_LVR
, reg0
^ APIC_LVR_MASK
);
180 reg1
= apic_read(APIC_LVR
);
181 apic_printk(APIC_DEBUG
, "Getting VERSION: %x\n", reg1
);
184 * The two version reads above should print the same
185 * numbers. If the second one is different, then we
186 * poke at a non-APIC.
192 * Check if the version looks reasonably.
194 reg1
= GET_APIC_VERSION(reg0
);
195 if (reg1
== 0x00 || reg1
== 0xff)
198 if (reg1
< 0x02 || reg1
== 0xff)
202 * The ID register is read/write in a real APIC.
204 reg0
= apic_read(APIC_ID
);
205 apic_printk(APIC_DEBUG
, "Getting ID: %x\n", reg0
);
206 apic_write(APIC_ID
, reg0
^ APIC_ID_MASK
);
207 reg1
= apic_read(APIC_ID
);
208 apic_printk(APIC_DEBUG
, "Getting ID: %x\n", reg1
);
209 apic_write(APIC_ID
, reg0
);
210 if (reg1
!= (reg0
^ APIC_ID_MASK
))
214 * The next two are just to see if we have sane values.
215 * They're only really relevant if we're in Virtual Wire
216 * compatibility mode, but most boxes are anymore.
218 reg0
= apic_read(APIC_LVT0
);
219 apic_printk(APIC_DEBUG
,"Getting LVT0: %x\n", reg0
);
220 reg1
= apic_read(APIC_LVT1
);
221 apic_printk(APIC_DEBUG
, "Getting LVT1: %x\n", reg1
);
226 void __init
sync_Arb_IDs(void)
228 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
229 unsigned int ver
= GET_APIC_VERSION(apic_read(APIC_LVR
));
230 if (ver
>= 0x14) /* P4 or higher */
236 apic_wait_icr_idle();
238 apic_printk(APIC_DEBUG
, "Synchronizing Arb IDs.\n");
239 apic_write_around(APIC_ICR
, APIC_DEST_ALLINC
| APIC_INT_LEVELTRIG
243 extern void __error_in_apic_c (void);
246 * An initial setup of the virtual wire mode.
248 void __init
init_bsp_APIC(void)
250 unsigned int value
, ver
;
253 * Don't do the setup now if we have a SMP BIOS as the
254 * through-I/O-APIC virtual wire mode might be active.
256 if (smp_found_config
|| !cpu_has_apic
)
259 value
= apic_read(APIC_LVR
);
260 ver
= GET_APIC_VERSION(value
);
263 * Do not trust the local APIC being empty at bootup.
270 value
= apic_read(APIC_SPIV
);
271 value
&= ~APIC_VECTOR_MASK
;
272 value
|= APIC_SPIV_APIC_ENABLED
;
273 value
|= APIC_SPIV_FOCUS_DISABLED
;
274 value
|= SPURIOUS_APIC_VECTOR
;
275 apic_write_around(APIC_SPIV
, value
);
278 * Set up the virtual wire mode.
280 apic_write_around(APIC_LVT0
, APIC_DM_EXTINT
);
282 if (!APIC_INTEGRATED(ver
)) /* 82489DX */
283 value
|= APIC_LVT_LEVEL_TRIGGER
;
284 apic_write_around(APIC_LVT1
, value
);
287 void __init
setup_local_APIC (void)
289 unsigned int value
, ver
, maxlvt
;
291 /* Pound the ESR really hard over the head with a big hammer - mbligh */
293 apic_write(APIC_ESR
, 0);
294 apic_write(APIC_ESR
, 0);
295 apic_write(APIC_ESR
, 0);
296 apic_write(APIC_ESR
, 0);
299 value
= apic_read(APIC_LVR
);
300 ver
= GET_APIC_VERSION(value
);
302 if ((SPURIOUS_APIC_VECTOR
& 0x0f) != 0x0f)
306 * Double-check whether this APIC is really registered.
307 * This is meaningless in clustered apic mode, so we skip it.
309 if (!apic_id_registered())
313 * Intel recommends to set DFR, LDR and TPR before enabling
314 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
315 * document number 292116). So here it goes...
320 * Set Task Priority to 'accept all'. We never change this
323 value
= apic_read(APIC_TASKPRI
);
324 value
&= ~APIC_TPRI_MASK
;
325 apic_write_around(APIC_TASKPRI
, value
);
328 * Now that we are all set up, enable the APIC
330 value
= apic_read(APIC_SPIV
);
331 value
&= ~APIC_VECTOR_MASK
;
335 value
|= APIC_SPIV_APIC_ENABLED
;
338 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
339 * certain networking cards. If high frequency interrupts are
340 * happening on a particular IOAPIC pin, plus the IOAPIC routing
341 * entry is masked/unmasked at a high rate as well then sooner or
342 * later IOAPIC line gets 'stuck', no more interrupts are received
343 * from the device. If focus CPU is disabled then the hang goes
346 * [ This bug can be reproduced easily with a level-triggered
347 * PCI Ne2000 networking cards and PII/PIII processors, dual
351 * Actually disabling the focus CPU check just makes the hang less
352 * frequent as it makes the interrupt distributon model be more
353 * like LRU than MRU (the short-term load is more even across CPUs).
354 * See also the comment in end_level_ioapic_irq(). --macro
357 /* Enable focus processor (bit==0) */
358 value
&= ~APIC_SPIV_FOCUS_DISABLED
;
360 /* Disable focus processor (bit==1) */
361 value
|= APIC_SPIV_FOCUS_DISABLED
;
364 * Set spurious IRQ vector
366 value
|= SPURIOUS_APIC_VECTOR
;
367 apic_write_around(APIC_SPIV
, value
);
372 * set up through-local-APIC on the BP's LINT0. This is not
373 * strictly necessary in pure symmetric-IO mode, but sometimes
374 * we delegate interrupts to the 8259A.
377 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
379 value
= apic_read(APIC_LVT0
) & APIC_LVT_MASKED
;
380 if (!smp_processor_id() && (pic_mode
|| !value
)) {
381 value
= APIC_DM_EXTINT
;
382 apic_printk(APIC_VERBOSE
, "enabled ExtINT on CPU#%d\n", smp_processor_id());
384 value
= APIC_DM_EXTINT
| APIC_LVT_MASKED
;
385 apic_printk(APIC_VERBOSE
, "masked ExtINT on CPU#%d\n", smp_processor_id());
387 apic_write_around(APIC_LVT0
, value
);
390 * only the BP should see the LINT1 NMI signal, obviously.
392 if (!smp_processor_id())
395 value
= APIC_DM_NMI
| APIC_LVT_MASKED
;
396 if (!APIC_INTEGRATED(ver
)) /* 82489DX */
397 value
|= APIC_LVT_LEVEL_TRIGGER
;
398 apic_write_around(APIC_LVT1
, value
);
400 if (APIC_INTEGRATED(ver
) && !esr_disable
) { /* !82489DX */
402 maxlvt
= get_maxlvt();
403 if (maxlvt
> 3) /* Due to the Pentium erratum 3AP. */
404 apic_write(APIC_ESR
, 0);
405 oldvalue
= apic_read(APIC_ESR
);
406 value
= ERROR_APIC_VECTOR
; // enables sending errors
407 apic_write_around(APIC_LVTERR
, value
);
409 * spec says clear errors after enabling vector.
412 apic_write(APIC_ESR
, 0);
413 value
= apic_read(APIC_ESR
);
414 if (value
!= oldvalue
)
415 apic_printk(APIC_VERBOSE
,
416 "ESR value after enabling vector: %08x, after %08x\n",
421 * Something untraceble is creating bad interrupts on
422 * secondary quads ... for the moment, just leave the
423 * ESR disabled - we can't do anything useful with the
424 * errors anyway - mbligh
426 apic_printk(APIC_DEBUG
, "Leaving ESR disabled.\n");
428 apic_printk(APIC_DEBUG
, "No ESR for 82489DX.\n");
431 nmi_watchdog_default();
432 if (nmi_watchdog
== NMI_LOCAL_APIC
)
433 setup_apic_nmi_watchdog();
440 /* 'active' is true if the local APIC was enabled by us and
441 not the BIOS; this signifies that we are also responsible
442 for disabling it before entering apm/acpi suspend */
444 /* r/w apic fields */
445 unsigned int apic_id
;
446 unsigned int apic_taskpri
;
447 unsigned int apic_ldr
;
448 unsigned int apic_dfr
;
449 unsigned int apic_spiv
;
450 unsigned int apic_lvtt
;
451 unsigned int apic_lvtpc
;
452 unsigned int apic_lvt0
;
453 unsigned int apic_lvt1
;
454 unsigned int apic_lvterr
;
455 unsigned int apic_tmict
;
456 unsigned int apic_tdcr
;
457 unsigned int apic_thmr
;
460 static int lapic_suspend(struct sys_device
*dev
, pm_message_t state
)
464 if (!apic_pm_state
.active
)
467 apic_pm_state
.apic_id
= apic_read(APIC_ID
);
468 apic_pm_state
.apic_taskpri
= apic_read(APIC_TASKPRI
);
469 apic_pm_state
.apic_ldr
= apic_read(APIC_LDR
);
470 apic_pm_state
.apic_dfr
= apic_read(APIC_DFR
);
471 apic_pm_state
.apic_spiv
= apic_read(APIC_SPIV
);
472 apic_pm_state
.apic_lvtt
= apic_read(APIC_LVTT
);
473 apic_pm_state
.apic_lvtpc
= apic_read(APIC_LVTPC
);
474 apic_pm_state
.apic_lvt0
= apic_read(APIC_LVT0
);
475 apic_pm_state
.apic_lvt1
= apic_read(APIC_LVT1
);
476 apic_pm_state
.apic_lvterr
= apic_read(APIC_LVTERR
);
477 apic_pm_state
.apic_tmict
= apic_read(APIC_TMICT
);
478 apic_pm_state
.apic_tdcr
= apic_read(APIC_TDCR
);
479 apic_pm_state
.apic_thmr
= apic_read(APIC_LVTTHMR
);
480 local_save_flags(flags
);
482 disable_local_APIC();
483 local_irq_restore(flags
);
487 static int lapic_resume(struct sys_device
*dev
)
492 if (!apic_pm_state
.active
)
495 /* XXX: Pavel needs this for S3 resume, but can't explain why */
496 set_fixmap_nocache(FIX_APIC_BASE
, APIC_DEFAULT_PHYS_BASE
);
498 local_irq_save(flags
);
499 rdmsr(MSR_IA32_APICBASE
, l
, h
);
500 l
&= ~MSR_IA32_APICBASE_BASE
;
501 l
|= MSR_IA32_APICBASE_ENABLE
| APIC_DEFAULT_PHYS_BASE
;
502 wrmsr(MSR_IA32_APICBASE
, l
, h
);
503 apic_write(APIC_LVTERR
, ERROR_APIC_VECTOR
| APIC_LVT_MASKED
);
504 apic_write(APIC_ID
, apic_pm_state
.apic_id
);
505 apic_write(APIC_DFR
, apic_pm_state
.apic_dfr
);
506 apic_write(APIC_LDR
, apic_pm_state
.apic_ldr
);
507 apic_write(APIC_TASKPRI
, apic_pm_state
.apic_taskpri
);
508 apic_write(APIC_SPIV
, apic_pm_state
.apic_spiv
);
509 apic_write(APIC_LVT0
, apic_pm_state
.apic_lvt0
);
510 apic_write(APIC_LVT1
, apic_pm_state
.apic_lvt1
);
511 apic_write(APIC_LVTTHMR
, apic_pm_state
.apic_thmr
);
512 apic_write(APIC_LVTPC
, apic_pm_state
.apic_lvtpc
);
513 apic_write(APIC_LVTT
, apic_pm_state
.apic_lvtt
);
514 apic_write(APIC_TDCR
, apic_pm_state
.apic_tdcr
);
515 apic_write(APIC_TMICT
, apic_pm_state
.apic_tmict
);
516 apic_write(APIC_ESR
, 0);
518 apic_write(APIC_LVTERR
, apic_pm_state
.apic_lvterr
);
519 apic_write(APIC_ESR
, 0);
521 local_irq_restore(flags
);
525 static struct sysdev_class lapic_sysclass
= {
526 set_kset_name("lapic"),
527 .resume
= lapic_resume
,
528 .suspend
= lapic_suspend
,
531 static struct sys_device device_lapic
= {
533 .cls
= &lapic_sysclass
,
536 static void __init
apic_pm_activate(void)
538 apic_pm_state
.active
= 1;
541 static int __init
init_lapic_sysfs(void)
546 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
547 error
= sysdev_class_register(&lapic_sysclass
);
549 error
= sysdev_register(&device_lapic
);
552 device_initcall(init_lapic_sysfs
);
554 #else /* CONFIG_PM */
556 static void apic_pm_activate(void) { }
558 #endif /* CONFIG_PM */
560 static int __init
apic_set_verbosity(char *str
)
562 if (strcmp("debug", str
) == 0)
563 apic_verbosity
= APIC_DEBUG
;
564 else if (strcmp("verbose", str
) == 0)
565 apic_verbosity
= APIC_VERBOSE
;
567 printk(KERN_WARNING
"APIC Verbosity level %s not recognised"
568 " use apic=verbose or apic=debug", str
);
573 __setup("apic=", apic_set_verbosity
);
576 * Detect and enable local APICs on non-SMP boards.
577 * Original code written by Keir Fraser.
578 * On AMD64 we trust the BIOS - if it says no APIC it is likely
579 * not correctly set up (usually the APIC timer won't work etc.)
582 static int __init
detect_init_APIC (void)
585 printk(KERN_INFO
"No local APIC present\n");
589 mp_lapic_addr
= APIC_DEFAULT_PHYS_BASE
;
594 void __init
init_apic_mappings(void)
596 unsigned long apic_phys
;
599 * If no local APIC can be found then set up a fake all
600 * zeroes page to simulate the local APIC and another
601 * one for the IO-APIC.
603 if (!smp_found_config
&& detect_init_APIC()) {
604 apic_phys
= (unsigned long) alloc_bootmem_pages(PAGE_SIZE
);
605 apic_phys
= __pa(apic_phys
);
607 apic_phys
= mp_lapic_addr
;
609 set_fixmap_nocache(FIX_APIC_BASE
, apic_phys
);
610 apic_printk(APIC_VERBOSE
,"mapped APIC to %16lx (%16lx)\n", APIC_BASE
, apic_phys
);
613 * Fetch the APIC ID of the BSP in case we have a
614 * default configuration (or the MP table is broken).
616 if (boot_cpu_id
== -1U)
617 boot_cpu_id
= GET_APIC_ID(apic_read(APIC_ID
));
619 #ifdef CONFIG_X86_IO_APIC
621 unsigned long ioapic_phys
, idx
= FIX_IO_APIC_BASE_0
;
624 for (i
= 0; i
< nr_ioapics
; i
++) {
625 if (smp_found_config
) {
626 ioapic_phys
= mp_ioapics
[i
].mpc_apicaddr
;
628 ioapic_phys
= (unsigned long) alloc_bootmem_pages(PAGE_SIZE
);
629 ioapic_phys
= __pa(ioapic_phys
);
631 set_fixmap_nocache(idx
, ioapic_phys
);
632 apic_printk(APIC_VERBOSE
,"mapped IOAPIC to %016lx (%016lx)\n",
633 __fix_to_virt(idx
), ioapic_phys
);
641 * This function sets up the local APIC timer, with a timeout of
642 * 'clocks' APIC bus clock. During calibration we actually call
643 * this function twice on the boot CPU, once with a bogus timeout
644 * value, second time for real. The other (noncalibrating) CPUs
645 * call this function only once, with the real, calibrated value.
647 * We do reads before writes even if unnecessary, to get around the
648 * P5 APIC double write bug.
651 #define APIC_DIVISOR 16
653 static void __setup_APIC_LVTT(unsigned int clocks
)
655 unsigned int lvtt_value
, tmp_value
, ver
;
657 ver
= GET_APIC_VERSION(apic_read(APIC_LVR
));
658 lvtt_value
= APIC_LVT_TIMER_PERIODIC
| LOCAL_TIMER_VECTOR
;
659 if (!APIC_INTEGRATED(ver
))
660 lvtt_value
|= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV
);
661 apic_write_around(APIC_LVTT
, lvtt_value
);
666 tmp_value
= apic_read(APIC_TDCR
);
667 apic_write_around(APIC_TDCR
, (tmp_value
668 & ~(APIC_TDR_DIV_1
| APIC_TDR_DIV_TMBASE
))
671 apic_write_around(APIC_TMICT
, clocks
/APIC_DIVISOR
);
674 static void setup_APIC_timer(unsigned int clocks
)
678 local_irq_save(flags
);
680 /* For some reasons this doesn't work on Simics, so fake it for now */
681 if (!strstr(boot_cpu_data
.x86_model_id
, "Screwdriver")) {
682 __setup_APIC_LVTT(clocks
);
686 /* wait for irq slice */
687 if (vxtime
.hpet_address
) {
688 int trigger
= hpet_readl(HPET_T0_CMP
);
689 while (hpet_readl(HPET_COUNTER
) >= trigger
)
691 while (hpet_readl(HPET_COUNTER
) < trigger
)
697 c2
|= inb_p(0x40) << 8;
702 c2
|= inb_p(0x40) << 8;
703 } while (c2
- c1
< 300);
706 __setup_APIC_LVTT(clocks
);
708 local_irq_restore(flags
);
712 * In this function we calibrate APIC bus clocks to the external
713 * timer. Unfortunately we cannot use jiffies and the timer irq
714 * to calibrate, since some later bootup code depends on getting
715 * the first irq? Ugh.
717 * We want to do the calibration only once since we
718 * want to have local timer irqs syncron. CPUs connected
719 * by the same APIC bus have the very same bus frequency.
720 * And we want to have irqs off anyways, no accidental
724 #define TICK_COUNT 100000000
726 static int __init
calibrate_APIC_clock(void)
728 int apic
, apic_start
, tsc
, tsc_start
;
731 * Put whatever arbitrary (but long enough) timeout
732 * value into the APIC clock, we just want to get the
733 * counter running for calibration.
735 __setup_APIC_LVTT(1000000000);
737 apic_start
= apic_read(APIC_TMCCT
);
741 apic
= apic_read(APIC_TMCCT
);
743 } while ((tsc
- tsc_start
) < TICK_COUNT
&& (apic
- apic_start
) < TICK_COUNT
);
745 result
= (apic_start
- apic
) * 1000L * cpu_khz
/ (tsc
- tsc_start
);
747 printk(KERN_INFO
"Detected %d.%03d MHz APIC timer.\n",
748 result
/ 1000 / 1000, result
/ 1000 % 1000);
750 return result
* APIC_DIVISOR
/ HZ
;
753 static unsigned int calibration_result
;
755 void __init
setup_boot_APIC_clock (void)
757 if (disable_apic_timer
) {
758 printk(KERN_INFO
"Disabling APIC timer\n");
762 printk(KERN_INFO
"Using local APIC timer interrupts.\n");
763 using_apic_timer
= 1;
767 calibration_result
= calibrate_APIC_clock();
769 * Now set up the timer for real.
771 setup_APIC_timer(calibration_result
);
776 void __init
setup_secondary_APIC_clock(void)
778 local_irq_disable(); /* FIXME: Do we need this? --RR */
779 setup_APIC_timer(calibration_result
);
783 void __init
disable_APIC_timer(void)
785 if (using_apic_timer
) {
788 v
= apic_read(APIC_LVTT
);
789 apic_write_around(APIC_LVTT
, v
| APIC_LVT_MASKED
);
793 void enable_APIC_timer(void)
795 if (using_apic_timer
) {
798 v
= apic_read(APIC_LVTT
);
799 apic_write_around(APIC_LVTT
, v
& ~APIC_LVT_MASKED
);
804 * the frequency of the profiling timer can be changed
805 * by writing a multiplier value into /proc/profile.
807 int setup_profiling_timer(unsigned int multiplier
)
812 * Sanity check. [at least 500 APIC cycles should be
813 * between APIC interrupts as a rule of thumb, to avoid
816 if ( (!multiplier
) || (calibration_result
/multiplier
< 500))
820 * Set the new multiplier for each CPU. CPUs don't start using the
821 * new values until the next timer interrupt in which they do process
822 * accounting. At that time they also adjust their APIC timers
825 for (i
= 0; i
< NR_CPUS
; ++i
)
826 per_cpu(prof_multiplier
, i
) = multiplier
;
834 * Local timer interrupt handler. It does both profiling and
835 * process statistics/rescheduling.
837 * We do profiling in every local tick, statistics/rescheduling
838 * happen only every 'profiling multiplier' ticks. The default
839 * multiplier is 1 and it can be changed by writing the new multiplier
840 * value into /proc/profile.
843 void smp_local_timer_interrupt(struct pt_regs
*regs
)
845 int cpu
= smp_processor_id();
847 profile_tick(CPU_PROFILING
, regs
);
848 if (--per_cpu(prof_counter
, cpu
) <= 0) {
850 * The multiplier may have changed since the last time we got
851 * to this point as a result of the user writing to
852 * /proc/profile. In this case we need to adjust the APIC
855 * Interrupts are already masked off at this point.
857 per_cpu(prof_counter
, cpu
) = per_cpu(prof_multiplier
, cpu
);
858 if (per_cpu(prof_counter
, cpu
) !=
859 per_cpu(prof_old_multiplier
, cpu
)) {
860 __setup_APIC_LVTT(calibration_result
/
861 per_cpu(prof_counter
, cpu
));
862 per_cpu(prof_old_multiplier
, cpu
) =
863 per_cpu(prof_counter
, cpu
);
867 update_process_times(user_mode(regs
));
872 * We take the 'long' return path, and there every subsystem
873 * grabs the appropriate locks (kernel lock/ irq lock).
875 * we might want to decouple profiling from the 'long path',
876 * and do the profiling totally in assembly.
878 * Currently this isn't too much of an issue (performance wise),
879 * we can take more than 100K local irqs per second on a 100 MHz P5.
884 * Local APIC timer interrupt. This is the most natural way for doing
885 * local interrupts, but local timer interrupts can be emulated by
886 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
888 * [ if a single-CPU system runs an SMP kernel then we call the local
889 * interrupt as well. Thus we cannot inline the local irq ... ]
891 void smp_apic_timer_interrupt(struct pt_regs
*regs
)
894 * the NMI deadlock-detector uses this.
896 add_pda(apic_timer_irqs
, 1);
899 * NOTE! We'd better ACK the irq immediately,
900 * because timer handling can be slow.
904 * update_process_times() expects us to have done irq_enter().
905 * Besides, if we don't timer interrupts ignore the global
906 * interrupt lock, which is the WrongThing (tm) to do.
909 smp_local_timer_interrupt(regs
);
914 * oem_force_hpet_timer -- force HPET mode for some boxes.
916 * Thus far, the major user of this is IBM's Summit2 series:
918 * Clustered boxes may have unsynced TSC problems if they are
919 * multi-chassis. Use available data to take a good guess.
920 * If in doubt, go HPET.
922 __init
int oem_force_hpet_timer(void)
924 int i
, clusters
, zeros
;
926 DECLARE_BITMAP(clustermap
, NUM_APIC_CLUSTERS
);
928 bitmap_empty(clustermap
, NUM_APIC_CLUSTERS
);
930 for (i
= 0; i
< NR_CPUS
; i
++) {
931 id
= bios_cpu_apicid
[i
];
932 if (id
!= BAD_APICID
)
933 __set_bit(APIC_CLUSTERID(id
), clustermap
);
936 /* Problem: Partially populated chassis may not have CPUs in some of
937 * the APIC clusters they have been allocated. Only present CPUs have
938 * bios_cpu_apicid entries, thus causing zeroes in the bitmap. Since
939 * clusters are allocated sequentially, count zeros only if they are
944 for (i
= 0; i
< NUM_APIC_CLUSTERS
; i
++) {
945 if (test_bit(i
, clustermap
)) {
946 clusters
+= 1 + zeros
;
953 * If clusters > 2, then should be multi-chassis. Return 1 for HPET.
954 * Else return 0 to use TSC.
955 * May have to revisit this when multi-core + hyperthreaded CPUs come
956 * out, but AFAIK this will work even for them.
958 return (clusters
> 2);
962 * This interrupt should _never_ happen with our APIC/SMP architecture
964 asmlinkage
void smp_spurious_interrupt(void)
969 * Check if this really is a spurious interrupt and ACK it
970 * if it is a vectored one. Just in case...
971 * Spurious interrupts should not be ACKed.
973 v
= apic_read(APIC_ISR
+ ((SPURIOUS_APIC_VECTOR
& ~0x1f) >> 1));
974 if (v
& (1 << (SPURIOUS_APIC_VECTOR
& 0x1f)))
978 static unsigned long last_warning
;
979 static unsigned long skipped
;
981 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
982 if (time_before(last_warning
+30*HZ
,jiffies
)) {
983 printk(KERN_INFO
"spurious APIC interrupt on CPU#%d, %ld skipped.\n",
984 smp_processor_id(), skipped
);
985 last_warning
= jiffies
;
995 * This interrupt should never happen with our APIC/SMP architecture
998 asmlinkage
void smp_error_interrupt(void)
1003 /* First tickle the hardware, only then report what went on. -- REW */
1004 v
= apic_read(APIC_ESR
);
1005 apic_write(APIC_ESR
, 0);
1006 v1
= apic_read(APIC_ESR
);
1008 atomic_inc(&irq_err_count
);
1010 /* Here is what the APIC error bits mean:
1013 2: Send accept error
1014 3: Receive accept error
1016 5: Send illegal vector
1017 6: Received illegal vector
1018 7: Illegal register address
1020 printk (KERN_DEBUG
"APIC error on CPU%d: %02x(%02x)\n",
1021 smp_processor_id(), v
, v1
);
1028 * This initializes the IO-APIC and APIC hardware if this is
1031 int __init
APIC_init_uniprocessor (void)
1034 printk(KERN_INFO
"Apic disabled\n");
1037 if (!cpu_has_apic
) {
1039 printk(KERN_INFO
"Apic disabled by BIOS\n");
1043 verify_local_APIC();
1047 phys_cpu_present_map
= physid_mask_of_physid(0);
1048 apic_write_around(APIC_ID
, boot_cpu_id
);
1052 #ifdef CONFIG_X86_IO_APIC
1053 if (smp_found_config
&& !skip_ioapic_setup
&& nr_ioapics
)
1058 setup_boot_APIC_clock();
1063 static __init
int setup_disableapic(char *str
)
1069 static __init
int setup_nolapic(char *str
)
1075 static __init
int setup_noapictimer(char *str
)
1077 disable_apic_timer
= 1;
1081 /* dummy parsing: see setup.c */
1083 __setup("disableapic", setup_disableapic
);
1084 __setup("nolapic", setup_nolapic
); /* same as disableapic, for compatibility */
1086 __setup("noapictimer", setup_noapictimer
);
1088 /* no "lapic" flag - we only use the lapic when the BIOS tells us so. */