2 * Local APIC handling, local APIC timers
4 * (c) 1999, 2000, 2009 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/perf_event.h>
18 #include <linux/kernel_stat.h>
19 #include <linux/mc146818rtc.h>
20 #include <linux/acpi_pmtmr.h>
21 #include <linux/clockchips.h>
22 #include <linux/interrupt.h>
23 #include <linux/bootmem.h>
24 #include <linux/ftrace.h>
25 #include <linux/ioport.h>
26 #include <linux/export.h>
27 #include <linux/syscore_ops.h>
28 #include <linux/delay.h>
29 #include <linux/timex.h>
30 #include <linux/i8253.h>
31 #include <linux/dmar.h>
32 #include <linux/init.h>
33 #include <linux/cpu.h>
34 #include <linux/dmi.h>
35 #include <linux/smp.h>
38 #include <asm/trace/irq_vectors.h>
39 #include <asm/irq_remapping.h>
40 #include <asm/perf_event.h>
41 #include <asm/x86_init.h>
42 #include <asm/pgalloc.h>
43 #include <linux/atomic.h>
44 #include <asm/mpspec.h>
45 #include <asm/i8259.h>
46 #include <asm/proto.h>
48 #include <asm/io_apic.h>
57 #include <asm/hypervisor.h>
59 unsigned int num_processors;
61 unsigned disabled_cpus;
63 /* Processor that is doing the boot up */
64 unsigned int boot_cpu_physical_apicid = -1U;
65 EXPORT_SYMBOL_GPL(boot_cpu_physical_apicid);
67 u8 boot_cpu_apic_version;
70 * The highest APIC ID seen during enumeration.
72 static unsigned int max_physical_apicid;
75 * Bitmask of physically existing CPUs:
77 physid_mask_t phys_cpu_present_map;
80 * Processor to be disabled specified by kernel parameter
81 * disable_cpu_apicid=<int>, mostly used for the kdump 2nd kernel to
82 * avoid undefined behaviour caused by sending INIT from AP to BSP.
84 static unsigned int disabled_cpu_apicid __read_mostly = BAD_APICID;
87 * This variable controls which CPUs receive external NMIs. By default,
88 * external NMIs are delivered only to the BSP.
90 static int apic_extnmi = APIC_EXTNMI_BSP;
93 * Map cpu index to physical APIC ID
95 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_cpu_to_apicid, BAD_APICID);
96 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_bios_cpu_apicid, BAD_APICID);
97 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u32, x86_cpu_to_acpiid, U32_MAX);
98 EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
99 EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
100 EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_acpiid);
105 * On x86_32, the mapping between cpu and logical apicid may vary
106 * depending on apic in use. The following early percpu variable is
107 * used for the mapping. This is where the behaviors of x86_64 and 32
108 * actually diverge. Let's keep it ugly for now.
110 DEFINE_EARLY_PER_CPU_READ_MOSTLY(int, x86_cpu_to_logical_apicid, BAD_APICID);
112 /* Local APIC was disabled by the BIOS and enabled by the kernel */
113 static int enabled_via_apicbase;
116 * Handle interrupt mode configuration register (IMCR).
117 * This register controls whether the interrupt signals
118 * that reach the BSP come from the master PIC or from the
119 * local APIC. Before entering Symmetric I/O Mode, either
120 * the BIOS or the operating system must switch out of
121 * PIC Mode by changing the IMCR.
123 static inline void imcr_pic_to_apic(void)
125 /* select IMCR register */
127 /* NMI and 8259 INTR go through APIC */
131 static inline void imcr_apic_to_pic(void)
133 /* select IMCR register */
135 /* NMI and 8259 INTR go directly to BSP */
141 * Knob to control our willingness to enable the local APIC.
145 static int force_enable_local_apic __initdata;
148 * APIC command line parameters
150 static int __init parse_lapic(char *arg)
152 if (IS_ENABLED(CONFIG_X86_32) && !arg)
153 force_enable_local_apic = 1;
154 else if (arg && !strncmp(arg, "notscdeadline", 13))
155 setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER);
158 early_param("lapic", parse_lapic);
161 static int apic_calibrate_pmtmr __initdata;
162 static __init int setup_apicpmtimer(char *s)
164 apic_calibrate_pmtmr = 1;
168 __setup("apicpmtimer", setup_apicpmtimer);
171 unsigned long mp_lapic_addr;
173 /* Disable local APIC timer from the kernel commandline or via dmi quirk */
174 static int disable_apic_timer __initdata;
175 /* Local APIC timer works in C2 */
176 int local_apic_timer_c2_ok;
177 EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
179 int first_system_vector = FIRST_SYSTEM_VECTOR;
182 * Debug level, exported for io_apic.c
184 unsigned int apic_verbosity;
188 /* Have we found an MP table */
189 int smp_found_config;
191 static struct resource lapic_resource = {
192 .name = "Local APIC",
193 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
196 unsigned int lapic_timer_frequency = 0;
198 static void apic_pm_activate(void);
200 static unsigned long apic_phys;
203 * Get the LAPIC version
205 static inline int lapic_get_version(void)
207 return GET_APIC_VERSION(apic_read(APIC_LVR));
211 * Check, if the APIC is integrated or a separate chip
213 static inline int lapic_is_integrated(void)
218 return APIC_INTEGRATED(lapic_get_version());
223 * Check, whether this is a modern or a first generation APIC
225 static int modern_apic(void)
227 /* AMD systems use old APIC versions, so check the CPU */
228 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
229 boot_cpu_data.x86 >= 0xf)
231 return lapic_get_version() >= 0x14;
235 * right after this call apic become NOOP driven
236 * so apic->write/read doesn't do anything
238 static void __init apic_disable(void)
240 pr_info("APIC: switched to apic NOOP\n");
244 void native_apic_wait_icr_idle(void)
246 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
250 u32 native_safe_apic_wait_icr_idle(void)
257 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
260 inc_irq_stat(icr_read_retry_count);
262 } while (timeout++ < 1000);
267 void native_apic_icr_write(u32 low, u32 id)
271 local_irq_save(flags);
272 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
273 apic_write(APIC_ICR, low);
274 local_irq_restore(flags);
277 u64 native_apic_icr_read(void)
281 icr2 = apic_read(APIC_ICR2);
282 icr1 = apic_read(APIC_ICR);
284 return icr1 | ((u64)icr2 << 32);
289 * get_physical_broadcast - Get number of physical broadcast IDs
291 int get_physical_broadcast(void)
293 return modern_apic() ? 0xff : 0xf;
298 * lapic_get_maxlvt - get the maximum number of local vector table entries
300 int lapic_get_maxlvt(void)
304 v = apic_read(APIC_LVR);
306 * - we always have APIC integrated on 64bit mode
307 * - 82489DXs do not report # of LVT entries
309 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
317 #define APIC_DIVISOR 16
318 #define TSC_DIVISOR 8
321 * This function sets up the local APIC timer, with a timeout of
322 * 'clocks' APIC bus clock. During calibration we actually call
323 * this function twice on the boot CPU, once with a bogus timeout
324 * value, second time for real. The other (noncalibrating) CPUs
325 * call this function only once, with the real, calibrated value.
327 * We do reads before writes even if unnecessary, to get around the
328 * P5 APIC double write bug.
330 static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
332 unsigned int lvtt_value, tmp_value;
334 lvtt_value = LOCAL_TIMER_VECTOR;
336 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
337 else if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
338 lvtt_value |= APIC_LVT_TIMER_TSCDEADLINE;
340 if (!lapic_is_integrated())
341 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
344 lvtt_value |= APIC_LVT_MASKED;
346 apic_write(APIC_LVTT, lvtt_value);
348 if (lvtt_value & APIC_LVT_TIMER_TSCDEADLINE) {
350 * See Intel SDM: TSC-Deadline Mode chapter. In xAPIC mode,
351 * writing to the APIC LVTT and TSC_DEADLINE MSR isn't serialized.
352 * According to Intel, MFENCE can do the serialization here.
354 asm volatile("mfence" : : : "memory");
356 printk_once(KERN_DEBUG "TSC deadline timer enabled\n");
363 tmp_value = apic_read(APIC_TDCR);
364 apic_write(APIC_TDCR,
365 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
369 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
373 * Setup extended LVT, AMD specific
375 * Software should use the LVT offsets the BIOS provides. The offsets
376 * are determined by the subsystems using it like those for MCE
377 * threshold or IBS. On K8 only offset 0 (APIC500) and MCE interrupts
378 * are supported. Beginning with family 10h at least 4 offsets are
381 * Since the offsets must be consistent for all cores, we keep track
382 * of the LVT offsets in software and reserve the offset for the same
383 * vector also to be used on other cores. An offset is freed by
384 * setting the entry to APIC_EILVT_MASKED.
386 * If the BIOS is right, there should be no conflicts. Otherwise a
387 * "[Firmware Bug]: ..." error message is generated. However, if
388 * software does not properly determines the offsets, it is not
389 * necessarily a BIOS bug.
392 static atomic_t eilvt_offsets[APIC_EILVT_NR_MAX];
394 static inline int eilvt_entry_is_changeable(unsigned int old, unsigned int new)
396 return (old & APIC_EILVT_MASKED)
397 || (new == APIC_EILVT_MASKED)
398 || ((new & ~APIC_EILVT_MASKED) == old);
401 static unsigned int reserve_eilvt_offset(int offset, unsigned int new)
403 unsigned int rsvd, vector;
405 if (offset >= APIC_EILVT_NR_MAX)
408 rsvd = atomic_read(&eilvt_offsets[offset]);
410 vector = rsvd & ~APIC_EILVT_MASKED; /* 0: unassigned */
411 if (vector && !eilvt_entry_is_changeable(vector, new))
412 /* may not change if vectors are different */
414 rsvd = atomic_cmpxchg(&eilvt_offsets[offset], rsvd, new);
415 } while (rsvd != new);
417 rsvd &= ~APIC_EILVT_MASKED;
418 if (rsvd && rsvd != vector)
419 pr_info("LVT offset %d assigned for vector 0x%02x\n",
426 * If mask=1, the LVT entry does not generate interrupts while mask=0
427 * enables the vector. See also the BKDGs. Must be called with
428 * preemption disabled.
431 int setup_APIC_eilvt(u8 offset, u8 vector, u8 msg_type, u8 mask)
433 unsigned long reg = APIC_EILVTn(offset);
434 unsigned int new, old, reserved;
436 new = (mask << 16) | (msg_type << 8) | vector;
437 old = apic_read(reg);
438 reserved = reserve_eilvt_offset(offset, new);
440 if (reserved != new) {
441 pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
442 "vector 0x%x, but the register is already in use for "
443 "vector 0x%x on another cpu\n",
444 smp_processor_id(), reg, offset, new, reserved);
448 if (!eilvt_entry_is_changeable(old, new)) {
449 pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
450 "vector 0x%x, but the register is already in use for "
451 "vector 0x%x on this cpu\n",
452 smp_processor_id(), reg, offset, new, old);
456 apic_write(reg, new);
460 EXPORT_SYMBOL_GPL(setup_APIC_eilvt);
463 * Program the next event, relative to now
465 static int lapic_next_event(unsigned long delta,
466 struct clock_event_device *evt)
468 apic_write(APIC_TMICT, delta);
472 static int lapic_next_deadline(unsigned long delta,
473 struct clock_event_device *evt)
478 wrmsrl(MSR_IA32_TSC_DEADLINE, tsc + (((u64) delta) * TSC_DIVISOR));
482 static int lapic_timer_shutdown(struct clock_event_device *evt)
486 /* Lapic used as dummy for broadcast ? */
487 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
490 v = apic_read(APIC_LVTT);
491 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
492 apic_write(APIC_LVTT, v);
493 apic_write(APIC_TMICT, 0);
498 lapic_timer_set_periodic_oneshot(struct clock_event_device *evt, bool oneshot)
500 /* Lapic used as dummy for broadcast ? */
501 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
504 __setup_APIC_LVTT(lapic_timer_frequency, oneshot, 1);
508 static int lapic_timer_set_periodic(struct clock_event_device *evt)
510 return lapic_timer_set_periodic_oneshot(evt, false);
513 static int lapic_timer_set_oneshot(struct clock_event_device *evt)
515 return lapic_timer_set_periodic_oneshot(evt, true);
519 * Local APIC timer broadcast function
521 static void lapic_timer_broadcast(const struct cpumask *mask)
524 apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
530 * The local apic timer can be used for any function which is CPU local.
532 static struct clock_event_device lapic_clockevent = {
534 .features = CLOCK_EVT_FEAT_PERIODIC |
535 CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_C3STOP
536 | CLOCK_EVT_FEAT_DUMMY,
538 .set_state_shutdown = lapic_timer_shutdown,
539 .set_state_periodic = lapic_timer_set_periodic,
540 .set_state_oneshot = lapic_timer_set_oneshot,
541 .set_next_event = lapic_next_event,
542 .broadcast = lapic_timer_broadcast,
546 static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
549 * Setup the local APIC timer for this CPU. Copy the initialized values
550 * of the boot CPU and register the clock event in the framework.
552 static void setup_APIC_timer(void)
554 struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
556 if (this_cpu_has(X86_FEATURE_ARAT)) {
557 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
558 /* Make LAPIC timer preferrable over percpu HPET */
559 lapic_clockevent.rating = 150;
562 memcpy(levt, &lapic_clockevent, sizeof(*levt));
563 levt->cpumask = cpumask_of(smp_processor_id());
565 if (this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
566 levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC |
567 CLOCK_EVT_FEAT_DUMMY);
568 levt->set_next_event = lapic_next_deadline;
569 clockevents_config_and_register(levt,
570 tsc_khz * (1000 / TSC_DIVISOR),
573 clockevents_register_device(levt);
577 * Install the updated TSC frequency from recalibration at the TSC
578 * deadline clockevent devices.
580 static void __lapic_update_tsc_freq(void *info)
582 struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
584 if (!this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
587 clockevents_update_freq(levt, tsc_khz * (1000 / TSC_DIVISOR));
590 void lapic_update_tsc_freq(void)
593 * The clockevent device's ->mult and ->shift can both be
594 * changed. In order to avoid races, schedule the frequency
595 * update code on each CPU.
597 on_each_cpu(__lapic_update_tsc_freq, NULL, 0);
601 * In this functions we calibrate APIC bus clocks to the external timer.
603 * We want to do the calibration only once since we want to have local timer
604 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
607 * This was previously done by reading the PIT/HPET and waiting for a wrap
608 * around to find out, that a tick has elapsed. I have a box, where the PIT
609 * readout is broken, so it never gets out of the wait loop again. This was
610 * also reported by others.
612 * Monitoring the jiffies value is inaccurate and the clockevents
613 * infrastructure allows us to do a simple substitution of the interrupt
616 * The calibration routine also uses the pm_timer when possible, as the PIT
617 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
618 * back to normal later in the boot process).
621 #define LAPIC_CAL_LOOPS (HZ/10)
623 static __initdata int lapic_cal_loops = -1;
624 static __initdata long lapic_cal_t1, lapic_cal_t2;
625 static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
626 static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
627 static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
630 * Temporary interrupt handler.
632 static void __init lapic_cal_handler(struct clock_event_device *dev)
634 unsigned long long tsc = 0;
635 long tapic = apic_read(APIC_TMCCT);
636 unsigned long pm = acpi_pm_read_early();
638 if (boot_cpu_has(X86_FEATURE_TSC))
641 switch (lapic_cal_loops++) {
643 lapic_cal_t1 = tapic;
644 lapic_cal_tsc1 = tsc;
646 lapic_cal_j1 = jiffies;
649 case LAPIC_CAL_LOOPS:
650 lapic_cal_t2 = tapic;
651 lapic_cal_tsc2 = tsc;
652 if (pm < lapic_cal_pm1)
653 pm += ACPI_PM_OVRRUN;
655 lapic_cal_j2 = jiffies;
661 calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
663 const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
664 const long pm_thresh = pm_100ms / 100;
668 #ifndef CONFIG_X86_PM_TIMER
672 apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
674 /* Check, if the PM timer is available */
678 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
680 if (deltapm > (pm_100ms - pm_thresh) &&
681 deltapm < (pm_100ms + pm_thresh)) {
682 apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
686 res = (((u64)deltapm) * mult) >> 22;
687 do_div(res, 1000000);
688 pr_warning("APIC calibration not consistent "
689 "with PM-Timer: %ldms instead of 100ms\n",(long)res);
691 /* Correct the lapic counter value */
692 res = (((u64)(*delta)) * pm_100ms);
693 do_div(res, deltapm);
694 pr_info("APIC delta adjusted to PM-Timer: "
695 "%lu (%ld)\n", (unsigned long)res, *delta);
698 /* Correct the tsc counter value */
699 if (boot_cpu_has(X86_FEATURE_TSC)) {
700 res = (((u64)(*deltatsc)) * pm_100ms);
701 do_div(res, deltapm);
702 apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
703 "PM-Timer: %lu (%ld)\n",
704 (unsigned long)res, *deltatsc);
705 *deltatsc = (long)res;
711 static int __init calibrate_APIC_clock(void)
713 struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
714 void (*real_handler)(struct clock_event_device *dev);
715 unsigned long deltaj;
716 long delta, deltatsc;
717 int pm_referenced = 0;
720 * check if lapic timer has already been calibrated by platform
721 * specific routine, such as tsc calibration code. if so, we just fill
722 * in the clockevent structure and return.
725 if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
727 } else if (lapic_timer_frequency) {
728 apic_printk(APIC_VERBOSE, "lapic timer already calibrated %d\n",
729 lapic_timer_frequency);
730 lapic_clockevent.mult = div_sc(lapic_timer_frequency/APIC_DIVISOR,
731 TICK_NSEC, lapic_clockevent.shift);
732 lapic_clockevent.max_delta_ns =
733 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
734 lapic_clockevent.min_delta_ns =
735 clockevent_delta2ns(0xF, &lapic_clockevent);
736 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
740 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
741 "calibrating APIC timer ...\n");
745 /* Replace the global interrupt handler */
746 real_handler = global_clock_event->event_handler;
747 global_clock_event->event_handler = lapic_cal_handler;
750 * Setup the APIC counter to maximum. There is no way the lapic
751 * can underflow in the 100ms detection time frame
753 __setup_APIC_LVTT(0xffffffff, 0, 0);
755 /* Let the interrupts run */
758 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
763 /* Restore the real event handler */
764 global_clock_event->event_handler = real_handler;
766 /* Build delta t1-t2 as apic timer counts down */
767 delta = lapic_cal_t1 - lapic_cal_t2;
768 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
770 deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
772 /* we trust the PM based calibration if possible */
773 pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
776 /* Calculate the scaled math multiplication factor */
777 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
778 lapic_clockevent.shift);
779 lapic_clockevent.max_delta_ns =
780 clockevent_delta2ns(0x7FFFFFFF, &lapic_clockevent);
781 lapic_clockevent.min_delta_ns =
782 clockevent_delta2ns(0xF, &lapic_clockevent);
784 lapic_timer_frequency = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
786 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
787 apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult);
788 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
789 lapic_timer_frequency);
791 if (boot_cpu_has(X86_FEATURE_TSC)) {
792 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
794 (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
795 (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
798 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
800 lapic_timer_frequency / (1000000 / HZ),
801 lapic_timer_frequency % (1000000 / HZ));
804 * Do a sanity check on the APIC calibration result
806 if (lapic_timer_frequency < (1000000 / HZ)) {
808 pr_warning("APIC frequency too slow, disabling apic timer\n");
812 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
815 * PM timer calibration failed or not turned on
816 * so lets try APIC timer based calibration
818 if (!pm_referenced) {
819 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
822 * Setup the apic timer manually
824 levt->event_handler = lapic_cal_handler;
825 lapic_timer_set_periodic(levt);
826 lapic_cal_loops = -1;
828 /* Let the interrupts run */
831 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
834 /* Stop the lapic timer */
836 lapic_timer_shutdown(levt);
839 deltaj = lapic_cal_j2 - lapic_cal_j1;
840 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
842 /* Check, if the jiffies result is consistent */
843 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
844 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
846 levt->features |= CLOCK_EVT_FEAT_DUMMY;
850 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
851 pr_warning("APIC timer disabled due to verification failure\n");
859 * Setup the boot APIC
861 * Calibrate and verify the result.
863 void __init setup_boot_APIC_clock(void)
866 * The local apic timer can be disabled via the kernel
867 * commandline or from the CPU detection code. Register the lapic
868 * timer as a dummy clock event source on SMP systems, so the
869 * broadcast mechanism is used. On UP systems simply ignore it.
871 if (disable_apic_timer) {
872 pr_info("Disabling APIC timer\n");
873 /* No broadcast on UP ! */
874 if (num_possible_cpus() > 1) {
875 lapic_clockevent.mult = 1;
881 if (calibrate_APIC_clock()) {
882 /* No broadcast on UP ! */
883 if (num_possible_cpus() > 1)
889 * If nmi_watchdog is set to IO_APIC, we need the
890 * PIT/HPET going. Otherwise register lapic as a dummy
893 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
895 /* Setup the lapic or request the broadcast */
899 void setup_secondary_APIC_clock(void)
905 * The guts of the apic timer interrupt
907 static void local_apic_timer_interrupt(void)
909 int cpu = smp_processor_id();
910 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
913 * Normally we should not be here till LAPIC has been initialized but
914 * in some cases like kdump, its possible that there is a pending LAPIC
915 * timer interrupt from previous kernel's context and is delivered in
916 * new kernel the moment interrupts are enabled.
918 * Interrupts are enabled early and LAPIC is setup much later, hence
919 * its possible that when we get here evt->event_handler is NULL.
920 * Check for event_handler being NULL and discard the interrupt as
923 if (!evt->event_handler) {
924 pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu);
926 lapic_timer_shutdown(evt);
931 * the NMI deadlock-detector uses this.
933 inc_irq_stat(apic_timer_irqs);
935 evt->event_handler(evt);
939 * Local APIC timer interrupt. This is the most natural way for doing
940 * local interrupts, but local timer interrupts can be emulated by
941 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
943 * [ if a single-CPU system runs an SMP kernel then we call the local
944 * interrupt as well. Thus we cannot inline the local irq ... ]
946 __visible void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
948 struct pt_regs *old_regs = set_irq_regs(regs);
951 * NOTE! We'd better ACK the irq immediately,
952 * because timer handling can be slow.
954 * update_process_times() expects us to have done irq_enter().
955 * Besides, if we don't timer interrupts ignore the global
956 * interrupt lock, which is the WrongThing (tm) to do.
959 local_apic_timer_interrupt();
962 set_irq_regs(old_regs);
965 __visible void __irq_entry smp_trace_apic_timer_interrupt(struct pt_regs *regs)
967 struct pt_regs *old_regs = set_irq_regs(regs);
970 * NOTE! We'd better ACK the irq immediately,
971 * because timer handling can be slow.
973 * update_process_times() expects us to have done irq_enter().
974 * Besides, if we don't timer interrupts ignore the global
975 * interrupt lock, which is the WrongThing (tm) to do.
978 trace_local_timer_entry(LOCAL_TIMER_VECTOR);
979 local_apic_timer_interrupt();
980 trace_local_timer_exit(LOCAL_TIMER_VECTOR);
983 set_irq_regs(old_regs);
986 int setup_profiling_timer(unsigned int multiplier)
992 * Local APIC start and shutdown
996 * clear_local_APIC - shutdown the local APIC
998 * This is called, when a CPU is disabled and before rebooting, so the state of
999 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
1000 * leftovers during boot.
1002 void clear_local_APIC(void)
1007 /* APIC hasn't been mapped yet */
1008 if (!x2apic_mode && !apic_phys)
1011 maxlvt = lapic_get_maxlvt();
1013 * Masking an LVT entry can trigger a local APIC error
1014 * if the vector is zero. Mask LVTERR first to prevent this.
1017 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
1018 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
1021 * Careful: we have to set masks only first to deassert
1022 * any level-triggered sources.
1024 v = apic_read(APIC_LVTT);
1025 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
1026 v = apic_read(APIC_LVT0);
1027 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1028 v = apic_read(APIC_LVT1);
1029 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
1031 v = apic_read(APIC_LVTPC);
1032 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
1035 /* lets not touch this if we didn't frob it */
1036 #ifdef CONFIG_X86_THERMAL_VECTOR
1038 v = apic_read(APIC_LVTTHMR);
1039 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
1042 #ifdef CONFIG_X86_MCE_INTEL
1044 v = apic_read(APIC_LVTCMCI);
1045 if (!(v & APIC_LVT_MASKED))
1046 apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
1051 * Clean APIC state for other OSs:
1053 apic_write(APIC_LVTT, APIC_LVT_MASKED);
1054 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1055 apic_write(APIC_LVT1, APIC_LVT_MASKED);
1057 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
1059 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
1061 /* Integrated APIC (!82489DX) ? */
1062 if (lapic_is_integrated()) {
1064 /* Clear ESR due to Pentium errata 3AP and 11AP */
1065 apic_write(APIC_ESR, 0);
1066 apic_read(APIC_ESR);
1071 * disable_local_APIC - clear and disable the local APIC
1073 void disable_local_APIC(void)
1077 /* APIC hasn't been mapped yet */
1078 if (!x2apic_mode && !apic_phys)
1084 * Disable APIC (implies clearing of registers
1087 value = apic_read(APIC_SPIV);
1088 value &= ~APIC_SPIV_APIC_ENABLED;
1089 apic_write(APIC_SPIV, value);
1091 #ifdef CONFIG_X86_32
1093 * When LAPIC was disabled by the BIOS and enabled by the kernel,
1094 * restore the disabled state.
1096 if (enabled_via_apicbase) {
1099 rdmsr(MSR_IA32_APICBASE, l, h);
1100 l &= ~MSR_IA32_APICBASE_ENABLE;
1101 wrmsr(MSR_IA32_APICBASE, l, h);
1107 * If Linux enabled the LAPIC against the BIOS default disable it down before
1108 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
1109 * not power-off. Additionally clear all LVT entries before disable_local_APIC
1110 * for the case where Linux didn't enable the LAPIC.
1112 void lapic_shutdown(void)
1114 unsigned long flags;
1116 if (!boot_cpu_has(X86_FEATURE_APIC) && !apic_from_smp_config())
1119 local_irq_save(flags);
1121 #ifdef CONFIG_X86_32
1122 if (!enabled_via_apicbase)
1126 disable_local_APIC();
1129 local_irq_restore(flags);
1133 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1135 void __init sync_Arb_IDs(void)
1138 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1141 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
1147 apic_wait_icr_idle();
1149 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
1150 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1151 APIC_INT_LEVELTRIG | APIC_DM_INIT);
1155 * An initial setup of the virtual wire mode.
1157 void __init init_bsp_APIC(void)
1162 * Don't do the setup now if we have a SMP BIOS as the
1163 * through-I/O-APIC virtual wire mode might be active.
1165 if (smp_found_config || !boot_cpu_has(X86_FEATURE_APIC))
1169 * Do not trust the local APIC being empty at bootup.
1176 value = apic_read(APIC_SPIV);
1177 value &= ~APIC_VECTOR_MASK;
1178 value |= APIC_SPIV_APIC_ENABLED;
1180 #ifdef CONFIG_X86_32
1181 /* This bit is reserved on P4/Xeon and should be cleared */
1182 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1183 (boot_cpu_data.x86 == 15))
1184 value &= ~APIC_SPIV_FOCUS_DISABLED;
1187 value |= APIC_SPIV_FOCUS_DISABLED;
1188 value |= SPURIOUS_APIC_VECTOR;
1189 apic_write(APIC_SPIV, value);
1192 * Set up the virtual wire mode.
1194 apic_write(APIC_LVT0, APIC_DM_EXTINT);
1195 value = APIC_DM_NMI;
1196 if (!lapic_is_integrated()) /* 82489DX */
1197 value |= APIC_LVT_LEVEL_TRIGGER;
1198 if (apic_extnmi == APIC_EXTNMI_NONE)
1199 value |= APIC_LVT_MASKED;
1200 apic_write(APIC_LVT1, value);
1203 static void lapic_setup_esr(void)
1205 unsigned int oldvalue, value, maxlvt;
1207 if (!lapic_is_integrated()) {
1208 pr_info("No ESR for 82489DX.\n");
1212 if (apic->disable_esr) {
1214 * Something untraceable is creating bad interrupts on
1215 * secondary quads ... for the moment, just leave the
1216 * ESR disabled - we can't do anything useful with the
1217 * errors anyway - mbligh
1219 pr_info("Leaving ESR disabled.\n");
1223 maxlvt = lapic_get_maxlvt();
1224 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1225 apic_write(APIC_ESR, 0);
1226 oldvalue = apic_read(APIC_ESR);
1228 /* enables sending errors */
1229 value = ERROR_APIC_VECTOR;
1230 apic_write(APIC_LVTERR, value);
1233 * spec says clear errors after enabling vector.
1236 apic_write(APIC_ESR, 0);
1237 value = apic_read(APIC_ESR);
1238 if (value != oldvalue)
1239 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1240 "vector: 0x%08x after: 0x%08x\n",
1245 * setup_local_APIC - setup the local APIC
1247 * Used to setup local APIC while initializing BSP or bringin up APs.
1248 * Always called with preemption disabled.
1250 void setup_local_APIC(void)
1252 int cpu = smp_processor_id();
1253 unsigned int value, queued;
1254 int i, j, acked = 0;
1255 unsigned long long tsc = 0, ntsc;
1256 long long max_loops = cpu_khz ? cpu_khz : 1000000;
1258 if (boot_cpu_has(X86_FEATURE_TSC))
1262 disable_ioapic_support();
1266 #ifdef CONFIG_X86_32
1267 /* Pound the ESR really hard over the head with a big hammer - mbligh */
1268 if (lapic_is_integrated() && apic->disable_esr) {
1269 apic_write(APIC_ESR, 0);
1270 apic_write(APIC_ESR, 0);
1271 apic_write(APIC_ESR, 0);
1272 apic_write(APIC_ESR, 0);
1275 perf_events_lapic_init();
1278 * Double-check whether this APIC is really registered.
1279 * This is meaningless in clustered apic mode, so we skip it.
1281 BUG_ON(!apic->apic_id_registered());
1284 * Intel recommends to set DFR, LDR and TPR before enabling
1285 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1286 * document number 292116). So here it goes...
1288 apic->init_apic_ldr();
1290 #ifdef CONFIG_X86_32
1292 * APIC LDR is initialized. If logical_apicid mapping was
1293 * initialized during get_smp_config(), make sure it matches the
1296 i = early_per_cpu(x86_cpu_to_logical_apicid, cpu);
1297 WARN_ON(i != BAD_APICID && i != logical_smp_processor_id());
1298 /* always use the value from LDR */
1299 early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
1300 logical_smp_processor_id();
1304 * Set Task Priority to 'accept all'. We never change this
1307 value = apic_read(APIC_TASKPRI);
1308 value &= ~APIC_TPRI_MASK;
1309 apic_write(APIC_TASKPRI, value);
1312 * After a crash, we no longer service the interrupts and a pending
1313 * interrupt from previous kernel might still have ISR bit set.
1315 * Most probably by now CPU has serviced that pending interrupt and
1316 * it might not have done the ack_APIC_irq() because it thought,
1317 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1318 * does not clear the ISR bit and cpu thinks it has already serivced
1319 * the interrupt. Hence a vector might get locked. It was noticed
1320 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1324 for (i = APIC_ISR_NR - 1; i >= 0; i--)
1325 queued |= apic_read(APIC_IRR + i*0x10);
1327 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1328 value = apic_read(APIC_ISR + i*0x10);
1329 for (j = 31; j >= 0; j--) {
1330 if (value & (1<<j)) {
1337 printk(KERN_ERR "LAPIC pending interrupts after %d EOI\n",
1342 if (boot_cpu_has(X86_FEATURE_TSC) && cpu_khz) {
1344 max_loops = (cpu_khz << 10) - (ntsc - tsc);
1348 } while (queued && max_loops > 0);
1349 WARN_ON(max_loops <= 0);
1352 * Now that we are all set up, enable the APIC
1354 value = apic_read(APIC_SPIV);
1355 value &= ~APIC_VECTOR_MASK;
1359 value |= APIC_SPIV_APIC_ENABLED;
1361 #ifdef CONFIG_X86_32
1363 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1364 * certain networking cards. If high frequency interrupts are
1365 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1366 * entry is masked/unmasked at a high rate as well then sooner or
1367 * later IOAPIC line gets 'stuck', no more interrupts are received
1368 * from the device. If focus CPU is disabled then the hang goes
1371 * [ This bug can be reproduced easily with a level-triggered
1372 * PCI Ne2000 networking cards and PII/PIII processors, dual
1376 * Actually disabling the focus CPU check just makes the hang less
1377 * frequent as it makes the interrupt distributon model be more
1378 * like LRU than MRU (the short-term load is more even across CPUs).
1382 * - enable focus processor (bit==0)
1383 * - 64bit mode always use processor focus
1384 * so no need to set it
1386 value &= ~APIC_SPIV_FOCUS_DISABLED;
1390 * Set spurious IRQ vector
1392 value |= SPURIOUS_APIC_VECTOR;
1393 apic_write(APIC_SPIV, value);
1396 * Set up LVT0, LVT1:
1398 * set up through-local-APIC on the BP's LINT0. This is not
1399 * strictly necessary in pure symmetric-IO mode, but sometimes
1400 * we delegate interrupts to the 8259A.
1403 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1405 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1406 if (!cpu && (pic_mode || !value)) {
1407 value = APIC_DM_EXTINT;
1408 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", cpu);
1410 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1411 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", cpu);
1413 apic_write(APIC_LVT0, value);
1416 * Only the BSP sees the LINT1 NMI signal by default. This can be
1417 * modified by apic_extnmi= boot option.
1419 if ((!cpu && apic_extnmi != APIC_EXTNMI_NONE) ||
1420 apic_extnmi == APIC_EXTNMI_ALL)
1421 value = APIC_DM_NMI;
1423 value = APIC_DM_NMI | APIC_LVT_MASKED;
1424 if (!lapic_is_integrated()) /* 82489DX */
1425 value |= APIC_LVT_LEVEL_TRIGGER;
1426 apic_write(APIC_LVT1, value);
1428 #ifdef CONFIG_X86_MCE_INTEL
1429 /* Recheck CMCI information after local APIC is up on CPU #0 */
1435 static void end_local_APIC_setup(void)
1439 #ifdef CONFIG_X86_32
1442 /* Disable the local apic timer */
1443 value = apic_read(APIC_LVTT);
1444 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1445 apic_write(APIC_LVTT, value);
1453 * APIC setup function for application processors. Called from smpboot.c
1455 void apic_ap_setup(void)
1458 end_local_APIC_setup();
1461 #ifdef CONFIG_X86_X2APIC
1469 static int x2apic_state;
1471 static void __x2apic_disable(void)
1475 if (!boot_cpu_has(X86_FEATURE_APIC))
1478 rdmsrl(MSR_IA32_APICBASE, msr);
1479 if (!(msr & X2APIC_ENABLE))
1481 /* Disable xapic and x2apic first and then reenable xapic mode */
1482 wrmsrl(MSR_IA32_APICBASE, msr & ~(X2APIC_ENABLE | XAPIC_ENABLE));
1483 wrmsrl(MSR_IA32_APICBASE, msr & ~X2APIC_ENABLE);
1484 printk_once(KERN_INFO "x2apic disabled\n");
1487 static void __x2apic_enable(void)
1491 rdmsrl(MSR_IA32_APICBASE, msr);
1492 if (msr & X2APIC_ENABLE)
1494 wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE);
1495 printk_once(KERN_INFO "x2apic enabled\n");
1498 static int __init setup_nox2apic(char *str)
1500 if (x2apic_enabled()) {
1501 int apicid = native_apic_msr_read(APIC_ID);
1503 if (apicid >= 255) {
1504 pr_warning("Apicid: %08x, cannot enforce nox2apic\n",
1508 pr_warning("x2apic already enabled.\n");
1511 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
1512 x2apic_state = X2APIC_DISABLED;
1516 early_param("nox2apic", setup_nox2apic);
1518 /* Called from cpu_init() to enable x2apic on (secondary) cpus */
1519 void x2apic_setup(void)
1522 * If x2apic is not in ON state, disable it if already enabled
1525 if (x2apic_state != X2APIC_ON) {
1532 static __init void x2apic_disable(void)
1534 u32 x2apic_id, state = x2apic_state;
1537 x2apic_state = X2APIC_DISABLED;
1539 if (state != X2APIC_ON)
1542 x2apic_id = read_apic_id();
1543 if (x2apic_id >= 255)
1544 panic("Cannot disable x2apic, id: %08x\n", x2apic_id);
1547 register_lapic_address(mp_lapic_addr);
1550 static __init void x2apic_enable(void)
1552 if (x2apic_state != X2APIC_OFF)
1556 x2apic_state = X2APIC_ON;
1560 static __init void try_to_enable_x2apic(int remap_mode)
1562 if (x2apic_state == X2APIC_DISABLED)
1565 if (remap_mode != IRQ_REMAP_X2APIC_MODE) {
1566 /* IR is required if there is APIC ID > 255 even when running
1569 if (max_physical_apicid > 255 ||
1570 !hypervisor_x2apic_available()) {
1571 pr_info("x2apic: IRQ remapping doesn't support X2APIC mode\n");
1577 * without IR all CPUs can be addressed by IOAPIC/MSI
1578 * only in physical mode
1585 void __init check_x2apic(void)
1587 if (x2apic_enabled()) {
1588 pr_info("x2apic: enabled by BIOS, switching to x2apic ops\n");
1590 x2apic_state = X2APIC_ON;
1591 } else if (!boot_cpu_has(X86_FEATURE_X2APIC)) {
1592 x2apic_state = X2APIC_DISABLED;
1595 #else /* CONFIG_X86_X2APIC */
1596 static int __init validate_x2apic(void)
1598 if (!apic_is_x2apic_enabled())
1601 * Checkme: Can we simply turn off x2apic here instead of panic?
1603 panic("BIOS has enabled x2apic but kernel doesn't support x2apic, please disable x2apic in BIOS.\n");
1605 early_initcall(validate_x2apic);
1607 static inline void try_to_enable_x2apic(int remap_mode) { }
1608 static inline void __x2apic_enable(void) { }
1609 #endif /* !CONFIG_X86_X2APIC */
1611 static int __init try_to_enable_IR(void)
1613 #ifdef CONFIG_X86_IO_APIC
1614 if (!x2apic_enabled() && skip_ioapic_setup) {
1615 pr_info("Not enabling interrupt remapping due to skipped IO-APIC setup\n");
1619 return irq_remapping_enable();
1622 void __init enable_IR_x2apic(void)
1624 unsigned long flags;
1627 if (skip_ioapic_setup)
1630 ir_stat = irq_remapping_prepare();
1631 if (ir_stat < 0 && !x2apic_supported())
1634 ret = save_ioapic_entries();
1636 pr_info("Saving IO-APIC state failed: %d\n", ret);
1640 local_irq_save(flags);
1641 legacy_pic->mask_all();
1642 mask_ioapic_entries();
1644 /* If irq_remapping_prepare() succeeded, try to enable it */
1646 ir_stat = try_to_enable_IR();
1647 /* ir_stat contains the remap mode or an error code */
1648 try_to_enable_x2apic(ir_stat);
1651 restore_ioapic_entries();
1652 legacy_pic->restore_mask();
1653 local_irq_restore(flags);
1656 #ifdef CONFIG_X86_64
1658 * Detect and enable local APICs on non-SMP boards.
1659 * Original code written by Keir Fraser.
1660 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1661 * not correctly set up (usually the APIC timer won't work etc.)
1663 static int __init detect_init_APIC(void)
1665 if (!boot_cpu_has(X86_FEATURE_APIC)) {
1666 pr_info("No local APIC present\n");
1670 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1675 static int __init apic_verify(void)
1680 * The APIC feature bit should now be enabled
1683 features = cpuid_edx(1);
1684 if (!(features & (1 << X86_FEATURE_APIC))) {
1685 pr_warning("Could not enable APIC!\n");
1688 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1689 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1691 /* The BIOS may have set up the APIC at some other address */
1692 if (boot_cpu_data.x86 >= 6) {
1693 rdmsr(MSR_IA32_APICBASE, l, h);
1694 if (l & MSR_IA32_APICBASE_ENABLE)
1695 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1698 pr_info("Found and enabled local APIC!\n");
1702 int __init apic_force_enable(unsigned long addr)
1710 * Some BIOSes disable the local APIC in the APIC_BASE
1711 * MSR. This can only be done in software for Intel P6 or later
1712 * and AMD K7 (Model > 1) or later.
1714 if (boot_cpu_data.x86 >= 6) {
1715 rdmsr(MSR_IA32_APICBASE, l, h);
1716 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1717 pr_info("Local APIC disabled by BIOS -- reenabling.\n");
1718 l &= ~MSR_IA32_APICBASE_BASE;
1719 l |= MSR_IA32_APICBASE_ENABLE | addr;
1720 wrmsr(MSR_IA32_APICBASE, l, h);
1721 enabled_via_apicbase = 1;
1724 return apic_verify();
1728 * Detect and initialize APIC
1730 static int __init detect_init_APIC(void)
1732 /* Disabled by kernel option? */
1736 switch (boot_cpu_data.x86_vendor) {
1737 case X86_VENDOR_AMD:
1738 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1739 (boot_cpu_data.x86 >= 15))
1742 case X86_VENDOR_INTEL:
1743 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1744 (boot_cpu_data.x86 == 5 && boot_cpu_has(X86_FEATURE_APIC)))
1751 if (!boot_cpu_has(X86_FEATURE_APIC)) {
1753 * Over-ride BIOS and try to enable the local APIC only if
1754 * "lapic" specified.
1756 if (!force_enable_local_apic) {
1757 pr_info("Local APIC disabled by BIOS -- "
1758 "you can enable it with \"lapic\"\n");
1761 if (apic_force_enable(APIC_DEFAULT_PHYS_BASE))
1773 pr_info("No local APIC present or hardware disabled\n");
1779 * init_apic_mappings - initialize APIC mappings
1781 void __init init_apic_mappings(void)
1783 unsigned int new_apicid;
1786 boot_cpu_physical_apicid = read_apic_id();
1790 /* If no local APIC can be found return early */
1791 if (!smp_found_config && detect_init_APIC()) {
1792 /* lets NOP'ify apic operations */
1793 pr_info("APIC: disable apic facility\n");
1796 apic_phys = mp_lapic_addr;
1799 * acpi lapic path already maps that address in
1800 * acpi_register_lapic_address()
1802 if (!acpi_lapic && !smp_found_config)
1803 register_lapic_address(apic_phys);
1807 * Fetch the APIC ID of the BSP in case we have a
1808 * default configuration (or the MP table is broken).
1810 new_apicid = read_apic_id();
1811 if (boot_cpu_physical_apicid != new_apicid) {
1812 boot_cpu_physical_apicid = new_apicid;
1814 * yeah -- we lie about apic_version
1815 * in case if apic was disabled via boot option
1816 * but it's not a problem for SMP compiled kernel
1817 * since smp_sanity_check is prepared for such a case
1818 * and disable smp mode
1820 boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR));
1824 void __init register_lapic_address(unsigned long address)
1826 mp_lapic_addr = address;
1829 set_fixmap_nocache(FIX_APIC_BASE, address);
1830 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1831 APIC_BASE, address);
1833 if (boot_cpu_physical_apicid == -1U) {
1834 boot_cpu_physical_apicid = read_apic_id();
1835 boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR));
1840 * Local APIC interrupts
1844 * This interrupt should _never_ happen with our APIC/SMP architecture
1846 static void __smp_spurious_interrupt(u8 vector)
1851 * Check if this really is a spurious interrupt and ACK it
1852 * if it is a vectored one. Just in case...
1853 * Spurious interrupts should not be ACKed.
1855 v = apic_read(APIC_ISR + ((vector & ~0x1f) >> 1));
1856 if (v & (1 << (vector & 0x1f)))
1859 inc_irq_stat(irq_spurious_count);
1861 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1862 pr_info("spurious APIC interrupt through vector %02x on CPU#%d, "
1863 "should never happen.\n", vector, smp_processor_id());
1866 __visible void smp_spurious_interrupt(struct pt_regs *regs)
1869 __smp_spurious_interrupt(~regs->orig_ax);
1873 __visible void smp_trace_spurious_interrupt(struct pt_regs *regs)
1875 u8 vector = ~regs->orig_ax;
1878 trace_spurious_apic_entry(vector);
1879 __smp_spurious_interrupt(vector);
1880 trace_spurious_apic_exit(vector);
1885 * This interrupt should never happen with our APIC/SMP architecture
1887 static void __smp_error_interrupt(struct pt_regs *regs)
1891 static const char * const error_interrupt_reason[] = {
1892 "Send CS error", /* APIC Error Bit 0 */
1893 "Receive CS error", /* APIC Error Bit 1 */
1894 "Send accept error", /* APIC Error Bit 2 */
1895 "Receive accept error", /* APIC Error Bit 3 */
1896 "Redirectable IPI", /* APIC Error Bit 4 */
1897 "Send illegal vector", /* APIC Error Bit 5 */
1898 "Received illegal vector", /* APIC Error Bit 6 */
1899 "Illegal register address", /* APIC Error Bit 7 */
1902 /* First tickle the hardware, only then report what went on. -- REW */
1903 if (lapic_get_maxlvt() > 3) /* Due to the Pentium erratum 3AP. */
1904 apic_write(APIC_ESR, 0);
1905 v = apic_read(APIC_ESR);
1907 atomic_inc(&irq_err_count);
1909 apic_printk(APIC_DEBUG, KERN_DEBUG "APIC error on CPU%d: %02x",
1910 smp_processor_id(), v);
1915 apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]);
1920 apic_printk(APIC_DEBUG, KERN_CONT "\n");
1924 __visible void smp_error_interrupt(struct pt_regs *regs)
1927 __smp_error_interrupt(regs);
1931 __visible void smp_trace_error_interrupt(struct pt_regs *regs)
1934 trace_error_apic_entry(ERROR_APIC_VECTOR);
1935 __smp_error_interrupt(regs);
1936 trace_error_apic_exit(ERROR_APIC_VECTOR);
1941 * connect_bsp_APIC - attach the APIC to the interrupt system
1943 static void __init connect_bsp_APIC(void)
1945 #ifdef CONFIG_X86_32
1948 * Do not trust the local APIC being empty at bootup.
1952 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1953 * local APIC to INT and NMI lines.
1955 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1956 "enabling APIC mode.\n");
1963 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1964 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1966 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1969 void disconnect_bsp_APIC(int virt_wire_setup)
1973 #ifdef CONFIG_X86_32
1976 * Put the board back into PIC mode (has an effect only on
1977 * certain older boards). Note that APIC interrupts, including
1978 * IPIs, won't work beyond this point! The only exception are
1981 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1982 "entering PIC mode.\n");
1988 /* Go back to Virtual Wire compatibility mode */
1990 /* For the spurious interrupt use vector F, and enable it */
1991 value = apic_read(APIC_SPIV);
1992 value &= ~APIC_VECTOR_MASK;
1993 value |= APIC_SPIV_APIC_ENABLED;
1995 apic_write(APIC_SPIV, value);
1997 if (!virt_wire_setup) {
1999 * For LVT0 make it edge triggered, active high,
2000 * external and enabled
2002 value = apic_read(APIC_LVT0);
2003 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2004 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2005 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2006 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2007 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
2008 apic_write(APIC_LVT0, value);
2011 apic_write(APIC_LVT0, APIC_LVT_MASKED);
2015 * For LVT1 make it edge triggered, active high,
2018 value = apic_read(APIC_LVT1);
2019 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2020 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2021 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2022 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2023 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
2024 apic_write(APIC_LVT1, value);
2028 * The number of allocated logical CPU IDs. Since logical CPU IDs are allocated
2029 * contiguously, it equals to current allocated max logical CPU ID plus 1.
2030 * All allocated CPU ID should be in [0, nr_logical_cpuidi), so the maximum of
2031 * nr_logical_cpuids is nr_cpu_ids.
2033 * NOTE: Reserve 0 for BSP.
2035 static int nr_logical_cpuids = 1;
2038 * Used to store mapping between logical CPU IDs and APIC IDs.
2040 static int cpuid_to_apicid[] = {
2041 [0 ... NR_CPUS - 1] = -1,
2045 * Should use this API to allocate logical CPU IDs to keep nr_logical_cpuids
2046 * and cpuid_to_apicid[] synchronized.
2048 static int allocate_logical_cpuid(int apicid)
2053 * cpuid <-> apicid mapping is persistent, so when a cpu is up,
2054 * check if the kernel has allocated a cpuid for it.
2056 for (i = 0; i < nr_logical_cpuids; i++) {
2057 if (cpuid_to_apicid[i] == apicid)
2061 /* Allocate a new cpuid. */
2062 if (nr_logical_cpuids >= nr_cpu_ids) {
2063 WARN_ONCE(1, "Only %d processors supported."
2064 "Processor %d/0x%x and the rest are ignored.\n",
2065 nr_cpu_ids - 1, nr_logical_cpuids, apicid);
2069 cpuid_to_apicid[nr_logical_cpuids] = apicid;
2070 return nr_logical_cpuids++;
2073 int __generic_processor_info(int apicid, int version, bool enabled)
2075 int cpu, max = nr_cpu_ids;
2076 bool boot_cpu_detected = physid_isset(boot_cpu_physical_apicid,
2077 phys_cpu_present_map);
2080 * boot_cpu_physical_apicid is designed to have the apicid
2081 * returned by read_apic_id(), i.e, the apicid of the
2082 * currently booting-up processor. However, on some platforms,
2083 * it is temporarily modified by the apicid reported as BSP
2084 * through MP table. Concretely:
2086 * - arch/x86/kernel/mpparse.c: MP_processor_info()
2087 * - arch/x86/mm/amdtopology.c: amd_numa_init()
2089 * This function is executed with the modified
2090 * boot_cpu_physical_apicid. So, disabled_cpu_apicid kernel
2091 * parameter doesn't work to disable APs on kdump 2nd kernel.
2093 * Since fixing handling of boot_cpu_physical_apicid requires
2094 * another discussion and tests on each platform, we leave it
2095 * for now and here we use read_apic_id() directly in this
2096 * function, generic_processor_info().
2098 if (disabled_cpu_apicid != BAD_APICID &&
2099 disabled_cpu_apicid != read_apic_id() &&
2100 disabled_cpu_apicid == apicid) {
2101 int thiscpu = num_processors + disabled_cpus;
2103 pr_warning("APIC: Disabling requested cpu."
2104 " Processor %d/0x%x ignored.\n",
2112 * If boot cpu has not been detected yet, then only allow upto
2113 * nr_cpu_ids - 1 processors and keep one slot free for boot cpu
2115 if (!boot_cpu_detected && num_processors >= nr_cpu_ids - 1 &&
2116 apicid != boot_cpu_physical_apicid) {
2117 int thiscpu = max + disabled_cpus - 1;
2120 "APIC: NR_CPUS/possible_cpus limit of %i almost"
2121 " reached. Keeping one slot for boot cpu."
2122 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
2128 if (num_processors >= nr_cpu_ids) {
2129 int thiscpu = max + disabled_cpus;
2132 "APIC: NR_CPUS/possible_cpus limit of %i reached."
2133 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
2139 if (apicid == boot_cpu_physical_apicid) {
2141 * x86_bios_cpu_apicid is required to have processors listed
2142 * in same order as logical cpu numbers. Hence the first
2143 * entry is BSP, and so on.
2144 * boot_cpu_init() already hold bit 0 in cpu_present_mask
2149 /* Logical cpuid 0 is reserved for BSP. */
2150 cpuid_to_apicid[0] = apicid;
2152 cpu = allocate_logical_cpuid(apicid);
2160 * This can happen on physical hotplug. The sanity check at boot time
2161 * is done from native_smp_prepare_cpus() after num_possible_cpus() is
2164 if (topology_update_package_map(apicid, cpu) < 0) {
2165 int thiscpu = max + disabled_cpus;
2167 pr_warning("APIC: Package limit reached. Processor %d/0x%x ignored.\n",
2177 if (version == 0x0) {
2178 pr_warning("BIOS bug: APIC version is 0 for CPU %d/0x%x, fixing up to 0x10\n",
2183 if (version != boot_cpu_apic_version) {
2184 pr_warning("BIOS bug: APIC version mismatch, boot CPU: %x, CPU %d: version %x\n",
2185 boot_cpu_apic_version, cpu, version);
2188 if (apicid > max_physical_apicid)
2189 max_physical_apicid = apicid;
2191 #if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
2192 early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
2193 early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
2195 #ifdef CONFIG_X86_32
2196 early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
2197 apic->x86_32_early_logical_apicid(cpu);
2199 set_cpu_possible(cpu, true);
2203 physid_set(apicid, phys_cpu_present_map);
2204 set_cpu_present(cpu, true);
2212 int generic_processor_info(int apicid, int version)
2214 return __generic_processor_info(apicid, version, true);
2217 int hard_smp_processor_id(void)
2219 return read_apic_id();
2222 void default_init_apic_ldr(void)
2226 apic_write(APIC_DFR, APIC_DFR_VALUE);
2227 val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
2228 val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
2229 apic_write(APIC_LDR, val);
2232 int default_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
2233 const struct cpumask *andmask,
2234 unsigned int *apicid)
2238 for_each_cpu_and(cpu, cpumask, andmask) {
2239 if (cpumask_test_cpu(cpu, cpu_online_mask))
2243 if (likely(cpu < nr_cpu_ids)) {
2244 *apicid = per_cpu(x86_cpu_to_apicid, cpu);
2252 * Override the generic EOI implementation with an optimized version.
2253 * Only called during early boot when only one CPU is active and with
2254 * interrupts disabled, so we know this does not race with actual APIC driver
2257 void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v))
2261 for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
2262 /* Should happen once for each apic */
2263 WARN_ON((*drv)->eoi_write == eoi_write);
2264 (*drv)->eoi_write = eoi_write;
2268 static void __init apic_bsp_up_setup(void)
2270 #ifdef CONFIG_X86_64
2271 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
2274 * Hack: In case of kdump, after a crash, kernel might be booting
2275 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
2276 * might be zero if read from MP tables. Get it from LAPIC.
2278 # ifdef CONFIG_CRASH_DUMP
2279 boot_cpu_physical_apicid = read_apic_id();
2282 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
2286 * apic_bsp_setup - Setup function for local apic and io-apic
2287 * @upmode: Force UP mode (for APIC_init_uniprocessor)
2290 * apic_id of BSP APIC
2292 int __init apic_bsp_setup(bool upmode)
2298 apic_bsp_up_setup();
2302 id = apic_read(APIC_LDR);
2304 id = GET_APIC_LOGICAL_ID(apic_read(APIC_LDR));
2307 end_local_APIC_setup();
2308 irq_remap_enable_fault_handling();
2310 /* Setup local timer */
2311 x86_init.timers.setup_percpu_clockev();
2316 * This initializes the IO-APIC and APIC hardware if this is
2319 int __init APIC_init_uniprocessor(void)
2322 pr_info("Apic disabled\n");
2325 #ifdef CONFIG_X86_64
2326 if (!boot_cpu_has(X86_FEATURE_APIC)) {
2328 pr_info("Apic disabled by BIOS\n");
2332 if (!smp_found_config && !boot_cpu_has(X86_FEATURE_APIC))
2336 * Complain if the BIOS pretends there is one.
2338 if (!boot_cpu_has(X86_FEATURE_APIC) &&
2339 APIC_INTEGRATED(boot_cpu_apic_version)) {
2340 pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
2341 boot_cpu_physical_apicid);
2346 if (!smp_found_config)
2347 disable_ioapic_support();
2349 default_setup_apic_routing();
2350 apic_bsp_setup(true);
2354 #ifdef CONFIG_UP_LATE_INIT
2355 void __init up_late_init(void)
2357 APIC_init_uniprocessor();
2368 * 'active' is true if the local APIC was enabled by us and
2369 * not the BIOS; this signifies that we are also responsible
2370 * for disabling it before entering apm/acpi suspend
2373 /* r/w apic fields */
2374 unsigned int apic_id;
2375 unsigned int apic_taskpri;
2376 unsigned int apic_ldr;
2377 unsigned int apic_dfr;
2378 unsigned int apic_spiv;
2379 unsigned int apic_lvtt;
2380 unsigned int apic_lvtpc;
2381 unsigned int apic_lvt0;
2382 unsigned int apic_lvt1;
2383 unsigned int apic_lvterr;
2384 unsigned int apic_tmict;
2385 unsigned int apic_tdcr;
2386 unsigned int apic_thmr;
2387 unsigned int apic_cmci;
2390 static int lapic_suspend(void)
2392 unsigned long flags;
2395 if (!apic_pm_state.active)
2398 maxlvt = lapic_get_maxlvt();
2400 apic_pm_state.apic_id = apic_read(APIC_ID);
2401 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
2402 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
2403 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
2404 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
2405 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
2407 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
2408 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
2409 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
2410 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
2411 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
2412 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
2413 #ifdef CONFIG_X86_THERMAL_VECTOR
2415 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
2417 #ifdef CONFIG_X86_MCE_INTEL
2419 apic_pm_state.apic_cmci = apic_read(APIC_LVTCMCI);
2422 local_irq_save(flags);
2423 disable_local_APIC();
2425 irq_remapping_disable();
2427 local_irq_restore(flags);
2431 static void lapic_resume(void)
2434 unsigned long flags;
2437 if (!apic_pm_state.active)
2440 local_irq_save(flags);
2443 * IO-APIC and PIC have their own resume routines.
2444 * We just mask them here to make sure the interrupt
2445 * subsystem is completely quiet while we enable x2apic
2446 * and interrupt-remapping.
2448 mask_ioapic_entries();
2449 legacy_pic->mask_all();
2455 * Make sure the APICBASE points to the right address
2457 * FIXME! This will be wrong if we ever support suspend on
2458 * SMP! We'll need to do this as part of the CPU restore!
2460 if (boot_cpu_data.x86 >= 6) {
2461 rdmsr(MSR_IA32_APICBASE, l, h);
2462 l &= ~MSR_IA32_APICBASE_BASE;
2463 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2464 wrmsr(MSR_IA32_APICBASE, l, h);
2468 maxlvt = lapic_get_maxlvt();
2469 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2470 apic_write(APIC_ID, apic_pm_state.apic_id);
2471 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2472 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2473 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2474 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2475 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2476 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
2477 #ifdef CONFIG_X86_THERMAL_VECTOR
2479 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2481 #ifdef CONFIG_X86_MCE_INTEL
2483 apic_write(APIC_LVTCMCI, apic_pm_state.apic_cmci);
2486 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
2487 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2488 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2489 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2490 apic_write(APIC_ESR, 0);
2491 apic_read(APIC_ESR);
2492 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2493 apic_write(APIC_ESR, 0);
2494 apic_read(APIC_ESR);
2496 irq_remapping_reenable(x2apic_mode);
2498 local_irq_restore(flags);
2502 * This device has no shutdown method - fully functioning local APICs
2503 * are needed on every CPU up until machine_halt/restart/poweroff.
2506 static struct syscore_ops lapic_syscore_ops = {
2507 .resume = lapic_resume,
2508 .suspend = lapic_suspend,
2511 static void apic_pm_activate(void)
2513 apic_pm_state.active = 1;
2516 static int __init init_lapic_sysfs(void)
2518 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
2519 if (boot_cpu_has(X86_FEATURE_APIC))
2520 register_syscore_ops(&lapic_syscore_ops);
2525 /* local apic needs to resume before other devices access its registers. */
2526 core_initcall(init_lapic_sysfs);
2528 #else /* CONFIG_PM */
2530 static void apic_pm_activate(void) { }
2532 #endif /* CONFIG_PM */
2534 #ifdef CONFIG_X86_64
2536 static int multi_checked;
2539 static int set_multi(const struct dmi_system_id *d)
2543 pr_info("APIC: %s detected, Multi Chassis\n", d->ident);
2548 static const struct dmi_system_id multi_dmi_table[] = {
2550 .callback = set_multi,
2551 .ident = "IBM System Summit2",
2553 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
2554 DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"),
2560 static void dmi_check_multi(void)
2565 dmi_check_system(multi_dmi_table);
2570 * apic_is_clustered_box() -- Check if we can expect good TSC
2572 * Thus far, the major user of this is IBM's Summit2 series:
2573 * Clustered boxes may have unsynced TSC problems if they are
2575 * Use DMI to check them
2577 int apic_is_clustered_box(void)
2585 * APIC command line parameters
2587 static int __init setup_disableapic(char *arg)
2590 setup_clear_cpu_cap(X86_FEATURE_APIC);
2593 early_param("disableapic", setup_disableapic);
2595 /* same as disableapic, for compatibility */
2596 static int __init setup_nolapic(char *arg)
2598 return setup_disableapic(arg);
2600 early_param("nolapic", setup_nolapic);
2602 static int __init parse_lapic_timer_c2_ok(char *arg)
2604 local_apic_timer_c2_ok = 1;
2607 early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2609 static int __init parse_disable_apic_timer(char *arg)
2611 disable_apic_timer = 1;
2614 early_param("noapictimer", parse_disable_apic_timer);
2616 static int __init parse_nolapic_timer(char *arg)
2618 disable_apic_timer = 1;
2621 early_param("nolapic_timer", parse_nolapic_timer);
2623 static int __init apic_set_verbosity(char *arg)
2626 #ifdef CONFIG_X86_64
2627 skip_ioapic_setup = 0;
2633 if (strcmp("debug", arg) == 0)
2634 apic_verbosity = APIC_DEBUG;
2635 else if (strcmp("verbose", arg) == 0)
2636 apic_verbosity = APIC_VERBOSE;
2638 pr_warning("APIC Verbosity level %s not recognised"
2639 " use apic=verbose or apic=debug\n", arg);
2645 early_param("apic", apic_set_verbosity);
2647 static int __init lapic_insert_resource(void)
2652 /* Put local APIC into the resource map. */
2653 lapic_resource.start = apic_phys;
2654 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2655 insert_resource(&iomem_resource, &lapic_resource);
2661 * need call insert after e820_reserve_resources()
2662 * that is using request_resource
2664 late_initcall(lapic_insert_resource);
2666 static int __init apic_set_disabled_cpu_apicid(char *arg)
2668 if (!arg || !get_option(&arg, &disabled_cpu_apicid))
2673 early_param("disable_cpu_apicid", apic_set_disabled_cpu_apicid);
2675 static int __init apic_set_extnmi(char *arg)
2680 if (!strncmp("all", arg, 3))
2681 apic_extnmi = APIC_EXTNMI_ALL;
2682 else if (!strncmp("none", arg, 4))
2683 apic_extnmi = APIC_EXTNMI_NONE;
2684 else if (!strncmp("bsp", arg, 3))
2685 apic_extnmi = APIC_EXTNMI_BSP;
2687 pr_warn("Unknown external NMI delivery mode `%s' ignored\n", arg);
2693 early_param("apic_extnmi", apic_set_extnmi);