GNU Linux-libre 4.14.332-gnu1
[releases.git] / arch / x86 / kernel / apic / apic.c
1 /*
2  *      Local APIC handling, local APIC timers
3  *
4  *      (c) 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
5  *
6  *      Fixes
7  *      Maciej W. Rozycki       :       Bits for genuine 82489DX APICs;
8  *                                      thanks to Eric Gilmore
9  *                                      and Rolf G. Tews
10  *                                      for testing these extensively.
11  *      Maciej W. Rozycki       :       Various updates and fixes.
12  *      Mikael Pettersson       :       Power Management for UP-APIC.
13  *      Pavel Machek and
14  *      Mikael Pettersson       :       PM converted to driver model.
15  */
16
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>
36 #include <linux/mm.h>
37 #include <linux/irq.h>
38
39 #include <asm/trace/irq_vectors.h>
40 #include <asm/irq_remapping.h>
41 #include <asm/perf_event.h>
42 #include <asm/x86_init.h>
43 #include <asm/pgalloc.h>
44 #include <linux/atomic.h>
45 #include <asm/barrier.h>
46 #include <asm/mpspec.h>
47 #include <asm/i8259.h>
48 #include <asm/proto.h>
49 #include <asm/apic.h>
50 #include <asm/io_apic.h>
51 #include <asm/desc.h>
52 #include <asm/hpet.h>
53 #include <asm/mtrr.h>
54 #include <asm/time.h>
55 #include <asm/smp.h>
56 #include <asm/mce.h>
57 #include <asm/tsc.h>
58 #include <asm/hypervisor.h>
59 #include <asm/cpu_device_id.h>
60 #include <asm/intel-family.h>
61 #include <asm/irq_regs.h>
62
63 unsigned int num_processors;
64
65 unsigned disabled_cpus;
66
67 /* Processor that is doing the boot up */
68 unsigned int boot_cpu_physical_apicid = -1U;
69 EXPORT_SYMBOL_GPL(boot_cpu_physical_apicid);
70
71 u8 boot_cpu_apic_version;
72
73 /*
74  * The highest APIC ID seen during enumeration.
75  */
76 static unsigned int max_physical_apicid;
77
78 /*
79  * Bitmask of physically existing CPUs:
80  */
81 physid_mask_t phys_cpu_present_map;
82
83 /*
84  * Processor to be disabled specified by kernel parameter
85  * disable_cpu_apicid=<int>, mostly used for the kdump 2nd kernel to
86  * avoid undefined behaviour caused by sending INIT from AP to BSP.
87  */
88 static unsigned int disabled_cpu_apicid __read_mostly = BAD_APICID;
89
90 /*
91  * This variable controls which CPUs receive external NMIs.  By default,
92  * external NMIs are delivered only to the BSP.
93  */
94 static int apic_extnmi = APIC_EXTNMI_BSP;
95
96 /*
97  * Map cpu index to physical APIC ID
98  */
99 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_cpu_to_apicid, BAD_APICID);
100 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_bios_cpu_apicid, BAD_APICID);
101 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u32, x86_cpu_to_acpiid, U32_MAX);
102 EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
103 EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
104 EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_acpiid);
105
106 #ifdef CONFIG_X86_32
107
108 /*
109  * On x86_32, the mapping between cpu and logical apicid may vary
110  * depending on apic in use.  The following early percpu variable is
111  * used for the mapping.  This is where the behaviors of x86_64 and 32
112  * actually diverge.  Let's keep it ugly for now.
113  */
114 DEFINE_EARLY_PER_CPU_READ_MOSTLY(int, x86_cpu_to_logical_apicid, BAD_APICID);
115
116 /* Local APIC was disabled by the BIOS and enabled by the kernel */
117 static int enabled_via_apicbase;
118
119 /*
120  * Handle interrupt mode configuration register (IMCR).
121  * This register controls whether the interrupt signals
122  * that reach the BSP come from the master PIC or from the
123  * local APIC. Before entering Symmetric I/O Mode, either
124  * the BIOS or the operating system must switch out of
125  * PIC Mode by changing the IMCR.
126  */
127 static inline void imcr_pic_to_apic(void)
128 {
129         /* select IMCR register */
130         outb(0x70, 0x22);
131         /* NMI and 8259 INTR go through APIC */
132         outb(0x01, 0x23);
133 }
134
135 static inline void imcr_apic_to_pic(void)
136 {
137         /* select IMCR register */
138         outb(0x70, 0x22);
139         /* NMI and 8259 INTR go directly to BSP */
140         outb(0x00, 0x23);
141 }
142 #endif
143
144 /*
145  * Knob to control our willingness to enable the local APIC.
146  *
147  * +1=force-enable
148  */
149 static int force_enable_local_apic __initdata;
150
151 /*
152  * APIC command line parameters
153  */
154 static int __init parse_lapic(char *arg)
155 {
156         if (IS_ENABLED(CONFIG_X86_32) && !arg)
157                 force_enable_local_apic = 1;
158         else if (arg && !strncmp(arg, "notscdeadline", 13))
159                 setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER);
160         return 0;
161 }
162 early_param("lapic", parse_lapic);
163
164 #ifdef CONFIG_X86_64
165 static int apic_calibrate_pmtmr __initdata;
166 static __init int setup_apicpmtimer(char *s)
167 {
168         apic_calibrate_pmtmr = 1;
169         notsc_setup(NULL);
170         return 1;
171 }
172 __setup("apicpmtimer", setup_apicpmtimer);
173 #endif
174
175 unsigned long mp_lapic_addr;
176 int disable_apic;
177 /* Disable local APIC timer from the kernel commandline or via dmi quirk */
178 static int disable_apic_timer __initdata;
179 /* Local APIC timer works in C2 */
180 int local_apic_timer_c2_ok;
181 EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
182
183 /*
184  * Debug level, exported for io_apic.c
185  */
186 int apic_verbosity;
187
188 int pic_mode;
189
190 /* Have we found an MP table */
191 int smp_found_config;
192
193 static struct resource lapic_resource = {
194         .name = "Local APIC",
195         .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
196 };
197
198 unsigned int lapic_timer_frequency = 0;
199
200 static void apic_pm_activate(void);
201
202 static unsigned long apic_phys;
203
204 /*
205  * Get the LAPIC version
206  */
207 static inline int lapic_get_version(void)
208 {
209         return GET_APIC_VERSION(apic_read(APIC_LVR));
210 }
211
212 /*
213  * Check, if the APIC is integrated or a separate chip
214  */
215 static inline int lapic_is_integrated(void)
216 {
217 #ifdef CONFIG_X86_64
218         return 1;
219 #else
220         return APIC_INTEGRATED(lapic_get_version());
221 #endif
222 }
223
224 /*
225  * Check, whether this is a modern or a first generation APIC
226  */
227 static int modern_apic(void)
228 {
229         /* AMD systems use old APIC versions, so check the CPU */
230         if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
231             boot_cpu_data.x86 >= 0xf)
232                 return 1;
233         return lapic_get_version() >= 0x14;
234 }
235
236 /*
237  * right after this call apic become NOOP driven
238  * so apic->write/read doesn't do anything
239  */
240 static void __init apic_disable(void)
241 {
242         pr_info("APIC: switched to apic NOOP\n");
243         apic = &apic_noop;
244 }
245
246 void native_apic_wait_icr_idle(void)
247 {
248         while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
249                 cpu_relax();
250 }
251
252 u32 native_safe_apic_wait_icr_idle(void)
253 {
254         u32 send_status;
255         int timeout;
256
257         timeout = 0;
258         do {
259                 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
260                 if (!send_status)
261                         break;
262                 inc_irq_stat(icr_read_retry_count);
263                 udelay(100);
264         } while (timeout++ < 1000);
265
266         return send_status;
267 }
268
269 void native_apic_icr_write(u32 low, u32 id)
270 {
271         unsigned long flags;
272
273         local_irq_save(flags);
274         apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
275         apic_write(APIC_ICR, low);
276         local_irq_restore(flags);
277 }
278
279 u64 native_apic_icr_read(void)
280 {
281         u32 icr1, icr2;
282
283         icr2 = apic_read(APIC_ICR2);
284         icr1 = apic_read(APIC_ICR);
285
286         return icr1 | ((u64)icr2 << 32);
287 }
288
289 #ifdef CONFIG_X86_32
290 /**
291  * get_physical_broadcast - Get number of physical broadcast IDs
292  */
293 int get_physical_broadcast(void)
294 {
295         return modern_apic() ? 0xff : 0xf;
296 }
297 #endif
298
299 /**
300  * lapic_get_maxlvt - get the maximum number of local vector table entries
301  */
302 int lapic_get_maxlvt(void)
303 {
304         unsigned int v;
305
306         v = apic_read(APIC_LVR);
307         /*
308          * - we always have APIC integrated on 64bit mode
309          * - 82489DXs do not report # of LVT entries
310          */
311         return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
312 }
313
314 /*
315  * Local APIC timer
316  */
317
318 /* Clock divisor */
319 #define APIC_DIVISOR 16
320 #define TSC_DIVISOR  8
321
322 /*
323  * This function sets up the local APIC timer, with a timeout of
324  * 'clocks' APIC bus clock. During calibration we actually call
325  * this function twice on the boot CPU, once with a bogus timeout
326  * value, second time for real. The other (noncalibrating) CPUs
327  * call this function only once, with the real, calibrated value.
328  *
329  * We do reads before writes even if unnecessary, to get around the
330  * P5 APIC double write bug.
331  */
332 static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
333 {
334         unsigned int lvtt_value, tmp_value;
335
336         lvtt_value = LOCAL_TIMER_VECTOR;
337         if (!oneshot)
338                 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
339         else if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
340                 lvtt_value |= APIC_LVT_TIMER_TSCDEADLINE;
341
342         if (!lapic_is_integrated())
343                 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
344
345         if (!irqen)
346                 lvtt_value |= APIC_LVT_MASKED;
347
348         apic_write(APIC_LVTT, lvtt_value);
349
350         if (lvtt_value & APIC_LVT_TIMER_TSCDEADLINE) {
351                 /*
352                  * See Intel SDM: TSC-Deadline Mode chapter. In xAPIC mode,
353                  * writing to the APIC LVTT and TSC_DEADLINE MSR isn't serialized.
354                  * According to Intel, MFENCE can do the serialization here.
355                  */
356                 asm volatile("mfence" : : : "memory");
357                 return;
358         }
359
360         /*
361          * Divide PICLK by 16
362          */
363         tmp_value = apic_read(APIC_TDCR);
364         apic_write(APIC_TDCR,
365                 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
366                 APIC_TDR_DIV_16);
367
368         if (!oneshot)
369                 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
370 }
371
372 /*
373  * Setup extended LVT, AMD specific
374  *
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
379  * available.
380  *
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.
385  *
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.
390  */
391
392 static atomic_t eilvt_offsets[APIC_EILVT_NR_MAX];
393
394 static inline int eilvt_entry_is_changeable(unsigned int old, unsigned int new)
395 {
396         return (old & APIC_EILVT_MASKED)
397                 || (new == APIC_EILVT_MASKED)
398                 || ((new & ~APIC_EILVT_MASKED) == old);
399 }
400
401 static unsigned int reserve_eilvt_offset(int offset, unsigned int new)
402 {
403         unsigned int rsvd, vector;
404
405         if (offset >= APIC_EILVT_NR_MAX)
406                 return ~0;
407
408         rsvd = atomic_read(&eilvt_offsets[offset]);
409         do {
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 */
413                         return rsvd;
414         } while (!atomic_try_cmpxchg(&eilvt_offsets[offset], &rsvd, new));
415
416         rsvd = new & ~APIC_EILVT_MASKED;
417         if (rsvd && rsvd != vector)
418                 pr_info("LVT offset %d assigned for vector 0x%02x\n",
419                         offset, rsvd);
420
421         return new;
422 }
423
424 /*
425  * If mask=1, the LVT entry does not generate interrupts while mask=0
426  * enables the vector. See also the BKDGs. Must be called with
427  * preemption disabled.
428  */
429
430 int setup_APIC_eilvt(u8 offset, u8 vector, u8 msg_type, u8 mask)
431 {
432         unsigned long reg = APIC_EILVTn(offset);
433         unsigned int new, old, reserved;
434
435         new = (mask << 16) | (msg_type << 8) | vector;
436         old = apic_read(reg);
437         reserved = reserve_eilvt_offset(offset, new);
438
439         if (reserved != new) {
440                 pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
441                        "vector 0x%x, but the register is already in use for "
442                        "vector 0x%x on another cpu\n",
443                        smp_processor_id(), reg, offset, new, reserved);
444                 return -EINVAL;
445         }
446
447         if (!eilvt_entry_is_changeable(old, new)) {
448                 pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
449                        "vector 0x%x, but the register is already in use for "
450                        "vector 0x%x on this cpu\n",
451                        smp_processor_id(), reg, offset, new, old);
452                 return -EBUSY;
453         }
454
455         apic_write(reg, new);
456
457         return 0;
458 }
459 EXPORT_SYMBOL_GPL(setup_APIC_eilvt);
460
461 /*
462  * Program the next event, relative to now
463  */
464 static int lapic_next_event(unsigned long delta,
465                             struct clock_event_device *evt)
466 {
467         apic_write(APIC_TMICT, delta);
468         return 0;
469 }
470
471 static int lapic_next_deadline(unsigned long delta,
472                                struct clock_event_device *evt)
473 {
474         u64 tsc;
475
476         /* This MSR is special and need a special fence: */
477         weak_wrmsr_fence();
478
479         tsc = rdtsc();
480         wrmsrl(MSR_IA32_TSC_DEADLINE, tsc + (((u64) delta) * TSC_DIVISOR));
481         return 0;
482 }
483
484 static int lapic_timer_shutdown(struct clock_event_device *evt)
485 {
486         unsigned int v;
487
488         /* Lapic used as dummy for broadcast ? */
489         if (evt->features & CLOCK_EVT_FEAT_DUMMY)
490                 return 0;
491
492         v = apic_read(APIC_LVTT);
493         v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
494         apic_write(APIC_LVTT, v);
495         apic_write(APIC_TMICT, 0);
496         return 0;
497 }
498
499 static inline int
500 lapic_timer_set_periodic_oneshot(struct clock_event_device *evt, bool oneshot)
501 {
502         /* Lapic used as dummy for broadcast ? */
503         if (evt->features & CLOCK_EVT_FEAT_DUMMY)
504                 return 0;
505
506         __setup_APIC_LVTT(lapic_timer_frequency, oneshot, 1);
507         return 0;
508 }
509
510 static int lapic_timer_set_periodic(struct clock_event_device *evt)
511 {
512         return lapic_timer_set_periodic_oneshot(evt, false);
513 }
514
515 static int lapic_timer_set_oneshot(struct clock_event_device *evt)
516 {
517         return lapic_timer_set_periodic_oneshot(evt, true);
518 }
519
520 /*
521  * Local APIC timer broadcast function
522  */
523 static void lapic_timer_broadcast(const struct cpumask *mask)
524 {
525 #ifdef CONFIG_SMP
526         apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
527 #endif
528 }
529
530
531 /*
532  * The local apic timer can be used for any function which is CPU local.
533  */
534 static struct clock_event_device lapic_clockevent = {
535         .name                           = "lapic",
536         .features                       = CLOCK_EVT_FEAT_PERIODIC |
537                                           CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_C3STOP
538                                           | CLOCK_EVT_FEAT_DUMMY,
539         .shift                          = 32,
540         .set_state_shutdown             = lapic_timer_shutdown,
541         .set_state_periodic             = lapic_timer_set_periodic,
542         .set_state_oneshot              = lapic_timer_set_oneshot,
543         .set_state_oneshot_stopped      = lapic_timer_shutdown,
544         .set_next_event                 = lapic_next_event,
545         .broadcast                      = lapic_timer_broadcast,
546         .rating                         = 100,
547         .irq                            = -1,
548 };
549 static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
550
551 #define DEADLINE_MODEL_MATCH_FUNC(model, func)  \
552         { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&func }
553
554 #define DEADLINE_MODEL_MATCH_REV(model, rev)    \
555         { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)rev }
556
557 static __init u32 hsx_deadline_rev(void)
558 {
559         switch (boot_cpu_data.x86_stepping) {
560         case 0x02: return 0x3a; /* EP */
561         case 0x04: return 0x0f; /* EX */
562         }
563
564         return ~0U;
565 }
566
567 static __init u32 bdx_deadline_rev(void)
568 {
569         switch (boot_cpu_data.x86_stepping) {
570         case 0x02: return 0x00000011;
571         case 0x03: return 0x0700000e;
572         case 0x04: return 0x0f00000c;
573         case 0x05: return 0x0e000003;
574         }
575
576         return ~0U;
577 }
578
579 static __init u32 skx_deadline_rev(void)
580 {
581         switch (boot_cpu_data.x86_stepping) {
582         case 0x03: return 0x01000136;
583         case 0x04: return 0x02000014;
584         }
585
586         if (boot_cpu_data.x86_stepping > 4)
587                 return 0;
588
589         return ~0U;
590 }
591
592 static const struct x86_cpu_id deadline_match[] __initconst = {
593         DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_HASWELL_X,        hsx_deadline_rev),
594         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL_X,      0x0b000020),
595         DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_BROADWELL_XEON_D, bdx_deadline_rev),
596         DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_SKYLAKE_X,        skx_deadline_rev),
597
598         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL_CORE,     0x22),
599         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL_ULT,      0x20),
600         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL_GT3E,     0x17),
601
602         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL_CORE,   0x25),
603         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL_GT3E,   0x17),
604
605         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_SKYLAKE_MOBILE,   0xb2),
606         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_SKYLAKE_DESKTOP,  0xb2),
607
608         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_KABYLAKE_MOBILE,  0x52),
609         DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_KABYLAKE_DESKTOP, 0x52),
610
611         {},
612 };
613
614 static __init bool apic_validate_deadline_timer(void)
615 {
616         const struct x86_cpu_id *m;
617         u32 rev;
618
619         if (!boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
620                 return false;
621         if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
622                 return true;
623
624         m = x86_match_cpu(deadline_match);
625         if (!m)
626                 return true;
627
628         /*
629          * Function pointers will have the MSB set due to address layout,
630          * immediate revisions will not.
631          */
632         if ((long)m->driver_data < 0)
633                 rev = ((u32 (*)(void))(m->driver_data))();
634         else
635                 rev = (u32)m->driver_data;
636
637         if (boot_cpu_data.microcode >= rev)
638                 return true;
639
640         setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER);
641         pr_err(FW_BUG "TSC_DEADLINE disabled due to Errata; "
642                "/*(DEBLOBBED)*/\n", rev);
643         return false;
644 }
645
646 /*
647  * Setup the local APIC timer for this CPU. Copy the initialized values
648  * of the boot CPU and register the clock event in the framework.
649  */
650 static void setup_APIC_timer(void)
651 {
652         struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
653
654         if (this_cpu_has(X86_FEATURE_ARAT)) {
655                 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
656                 /* Make LAPIC timer preferrable over percpu HPET */
657                 lapic_clockevent.rating = 150;
658         }
659
660         memcpy(levt, &lapic_clockevent, sizeof(*levt));
661         levt->cpumask = cpumask_of(smp_processor_id());
662
663         if (this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
664                 levt->name = "lapic-deadline";
665                 levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC |
666                                     CLOCK_EVT_FEAT_DUMMY);
667                 levt->set_next_event = lapic_next_deadline;
668                 clockevents_config_and_register(levt,
669                                                 tsc_khz * (1000 / TSC_DIVISOR),
670                                                 0xF, ~0UL);
671         } else
672                 clockevents_register_device(levt);
673 }
674
675 /*
676  * Install the updated TSC frequency from recalibration at the TSC
677  * deadline clockevent devices.
678  */
679 static void __lapic_update_tsc_freq(void *info)
680 {
681         struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
682
683         if (!this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
684                 return;
685
686         clockevents_update_freq(levt, tsc_khz * (1000 / TSC_DIVISOR));
687 }
688
689 void lapic_update_tsc_freq(void)
690 {
691         /*
692          * The clockevent device's ->mult and ->shift can both be
693          * changed. In order to avoid races, schedule the frequency
694          * update code on each CPU.
695          */
696         on_each_cpu(__lapic_update_tsc_freq, NULL, 0);
697 }
698
699 /*
700  * In this functions we calibrate APIC bus clocks to the external timer.
701  *
702  * We want to do the calibration only once since we want to have local timer
703  * irqs syncron. CPUs connected by the same APIC bus have the very same bus
704  * frequency.
705  *
706  * This was previously done by reading the PIT/HPET and waiting for a wrap
707  * around to find out, that a tick has elapsed. I have a box, where the PIT
708  * readout is broken, so it never gets out of the wait loop again. This was
709  * also reported by others.
710  *
711  * Monitoring the jiffies value is inaccurate and the clockevents
712  * infrastructure allows us to do a simple substitution of the interrupt
713  * handler.
714  *
715  * The calibration routine also uses the pm_timer when possible, as the PIT
716  * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
717  * back to normal later in the boot process).
718  */
719
720 #define LAPIC_CAL_LOOPS         (HZ/10)
721
722 static __initdata int lapic_cal_loops = -1;
723 static __initdata long lapic_cal_t1, lapic_cal_t2;
724 static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
725 static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
726 static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
727
728 /*
729  * Temporary interrupt handler and polled calibration function.
730  */
731 static void __init lapic_cal_handler(struct clock_event_device *dev)
732 {
733         unsigned long long tsc = 0;
734         long tapic = apic_read(APIC_TMCCT);
735         unsigned long pm = acpi_pm_read_early();
736
737         if (boot_cpu_has(X86_FEATURE_TSC))
738                 tsc = rdtsc();
739
740         switch (lapic_cal_loops++) {
741         case 0:
742                 lapic_cal_t1 = tapic;
743                 lapic_cal_tsc1 = tsc;
744                 lapic_cal_pm1 = pm;
745                 lapic_cal_j1 = jiffies;
746                 break;
747
748         case LAPIC_CAL_LOOPS:
749                 lapic_cal_t2 = tapic;
750                 lapic_cal_tsc2 = tsc;
751                 if (pm < lapic_cal_pm1)
752                         pm += ACPI_PM_OVRRUN;
753                 lapic_cal_pm2 = pm;
754                 lapic_cal_j2 = jiffies;
755                 break;
756         }
757 }
758
759 static int __init
760 calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
761 {
762         const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
763         const long pm_thresh = pm_100ms / 100;
764         unsigned long mult;
765         u64 res;
766
767 #ifndef CONFIG_X86_PM_TIMER
768         return -1;
769 #endif
770
771         apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
772
773         /* Check, if the PM timer is available */
774         if (!deltapm)
775                 return -1;
776
777         mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
778
779         if (deltapm > (pm_100ms - pm_thresh) &&
780             deltapm < (pm_100ms + pm_thresh)) {
781                 apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
782                 return 0;
783         }
784
785         res = (((u64)deltapm) *  mult) >> 22;
786         do_div(res, 1000000);
787         pr_warning("APIC calibration not consistent "
788                    "with PM-Timer: %ldms instead of 100ms\n",(long)res);
789
790         /* Correct the lapic counter value */
791         res = (((u64)(*delta)) * pm_100ms);
792         do_div(res, deltapm);
793         pr_info("APIC delta adjusted to PM-Timer: "
794                 "%lu (%ld)\n", (unsigned long)res, *delta);
795         *delta = (long)res;
796
797         /* Correct the tsc counter value */
798         if (boot_cpu_has(X86_FEATURE_TSC)) {
799                 res = (((u64)(*deltatsc)) * pm_100ms);
800                 do_div(res, deltapm);
801                 apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
802                                           "PM-Timer: %lu (%ld)\n",
803                                         (unsigned long)res, *deltatsc);
804                 *deltatsc = (long)res;
805         }
806
807         return 0;
808 }
809
810 static int __init calibrate_APIC_clock(void)
811 {
812         struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
813         u64 tsc_perj = 0, tsc_start = 0;
814         unsigned long jif_start;
815         unsigned long deltaj;
816         long delta, deltatsc;
817         int pm_referenced = 0;
818
819         /**
820          * check if lapic timer has already been calibrated by platform
821          * specific routine, such as tsc calibration code. if so, we just fill
822          * in the clockevent structure and return.
823          */
824
825         if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
826                 return 0;
827         } else if (lapic_timer_frequency) {
828                 apic_printk(APIC_VERBOSE, "lapic timer already calibrated %d\n",
829                                 lapic_timer_frequency);
830                 lapic_clockevent.mult = div_sc(lapic_timer_frequency/APIC_DIVISOR,
831                                         TICK_NSEC, lapic_clockevent.shift);
832                 lapic_clockevent.max_delta_ns =
833                         clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
834                 lapic_clockevent.max_delta_ticks = 0x7FFFFF;
835                 lapic_clockevent.min_delta_ns =
836                         clockevent_delta2ns(0xF, &lapic_clockevent);
837                 lapic_clockevent.min_delta_ticks = 0xF;
838                 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
839                 return 0;
840         }
841
842         apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
843                     "calibrating APIC timer ...\n");
844
845         /*
846          * There are platforms w/o global clockevent devices. Instead of
847          * making the calibration conditional on that, use a polling based
848          * approach everywhere.
849          */
850         local_irq_disable();
851
852         /*
853          * Setup the APIC counter to maximum. There is no way the lapic
854          * can underflow in the 100ms detection time frame
855          */
856         __setup_APIC_LVTT(0xffffffff, 0, 0);
857
858         /*
859          * Methods to terminate the calibration loop:
860          *  1) Global clockevent if available (jiffies)
861          *  2) TSC if available and frequency is known
862          */
863         jif_start = READ_ONCE(jiffies);
864
865         if (tsc_khz) {
866                 tsc_start = rdtsc();
867                 tsc_perj = div_u64((u64)tsc_khz * 1000, HZ);
868         }
869
870         /*
871          * Enable interrupts so the tick can fire, if a global
872          * clockevent device is available
873          */
874         local_irq_enable();
875
876         while (lapic_cal_loops <= LAPIC_CAL_LOOPS) {
877                 /* Wait for a tick to elapse */
878                 while (1) {
879                         if (tsc_khz) {
880                                 u64 tsc_now = rdtsc();
881                                 if ((tsc_now - tsc_start) >= tsc_perj) {
882                                         tsc_start += tsc_perj;
883                                         break;
884                                 }
885                         } else {
886                                 unsigned long jif_now = READ_ONCE(jiffies);
887
888                                 if (time_after(jif_now, jif_start)) {
889                                         jif_start = jif_now;
890                                         break;
891                                 }
892                         }
893                         cpu_relax();
894                 }
895
896                 /* Invoke the calibration routine */
897                 local_irq_disable();
898                 lapic_cal_handler(NULL);
899                 local_irq_enable();
900         }
901
902         local_irq_disable();
903
904         /* Build delta t1-t2 as apic timer counts down */
905         delta = lapic_cal_t1 - lapic_cal_t2;
906         apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
907
908         deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
909
910         /* we trust the PM based calibration if possible */
911         pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
912                                         &delta, &deltatsc);
913
914         /* Calculate the scaled math multiplication factor */
915         lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
916                                        lapic_clockevent.shift);
917         lapic_clockevent.max_delta_ns =
918                 clockevent_delta2ns(0x7FFFFFFF, &lapic_clockevent);
919         lapic_clockevent.max_delta_ticks = 0x7FFFFFFF;
920         lapic_clockevent.min_delta_ns =
921                 clockevent_delta2ns(0xF, &lapic_clockevent);
922         lapic_clockevent.min_delta_ticks = 0xF;
923
924         lapic_timer_frequency = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
925
926         apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
927         apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult);
928         apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
929                     lapic_timer_frequency);
930
931         if (boot_cpu_has(X86_FEATURE_TSC)) {
932                 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
933                             "%ld.%04ld MHz.\n",
934                             (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
935                             (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
936         }
937
938         apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
939                     "%u.%04u MHz.\n",
940                     lapic_timer_frequency / (1000000 / HZ),
941                     lapic_timer_frequency % (1000000 / HZ));
942
943         /*
944          * Do a sanity check on the APIC calibration result
945          */
946         if (lapic_timer_frequency < (1000000 / HZ)) {
947                 local_irq_enable();
948                 pr_warning("APIC frequency too slow, disabling apic timer\n");
949                 return -1;
950         }
951
952         levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
953
954         /*
955          * PM timer calibration failed or not turned on so lets try APIC
956          * timer based calibration, if a global clockevent device is
957          * available.
958          */
959         if (!pm_referenced && global_clock_event) {
960                 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
961
962                 /*
963                  * Setup the apic timer manually
964                  */
965                 levt->event_handler = lapic_cal_handler;
966                 lapic_timer_set_periodic(levt);
967                 lapic_cal_loops = -1;
968
969                 /* Let the interrupts run */
970                 local_irq_enable();
971
972                 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
973                         cpu_relax();
974
975                 /* Stop the lapic timer */
976                 local_irq_disable();
977                 lapic_timer_shutdown(levt);
978
979                 /* Jiffies delta */
980                 deltaj = lapic_cal_j2 - lapic_cal_j1;
981                 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
982
983                 /* Check, if the jiffies result is consistent */
984                 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
985                         apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
986                 else
987                         levt->features |= CLOCK_EVT_FEAT_DUMMY;
988         }
989         local_irq_enable();
990
991         if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
992                 pr_warning("APIC timer disabled due to verification failure\n");
993                         return -1;
994         }
995
996         return 0;
997 }
998
999 /*
1000  * Setup the boot APIC
1001  *
1002  * Calibrate and verify the result.
1003  */
1004 void __init setup_boot_APIC_clock(void)
1005 {
1006         /*
1007          * The local apic timer can be disabled via the kernel
1008          * commandline or from the CPU detection code. Register the lapic
1009          * timer as a dummy clock event source on SMP systems, so the
1010          * broadcast mechanism is used. On UP systems simply ignore it.
1011          */
1012         if (disable_apic_timer) {
1013                 pr_info("Disabling APIC timer\n");
1014                 /* No broadcast on UP ! */
1015                 if (num_possible_cpus() > 1) {
1016                         lapic_clockevent.mult = 1;
1017                         setup_APIC_timer();
1018                 }
1019                 return;
1020         }
1021
1022         if (calibrate_APIC_clock()) {
1023                 /* No broadcast on UP ! */
1024                 if (num_possible_cpus() > 1)
1025                         setup_APIC_timer();
1026                 return;
1027         }
1028
1029         /*
1030          * If nmi_watchdog is set to IO_APIC, we need the
1031          * PIT/HPET going.  Otherwise register lapic as a dummy
1032          * device.
1033          */
1034         lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
1035
1036         /* Setup the lapic or request the broadcast */
1037         setup_APIC_timer();
1038         amd_e400_c1e_apic_setup();
1039 }
1040
1041 void setup_secondary_APIC_clock(void)
1042 {
1043         setup_APIC_timer();
1044         amd_e400_c1e_apic_setup();
1045 }
1046
1047 /*
1048  * The guts of the apic timer interrupt
1049  */
1050 static void local_apic_timer_interrupt(void)
1051 {
1052         struct clock_event_device *evt = this_cpu_ptr(&lapic_events);
1053
1054         /*
1055          * Normally we should not be here till LAPIC has been initialized but
1056          * in some cases like kdump, its possible that there is a pending LAPIC
1057          * timer interrupt from previous kernel's context and is delivered in
1058          * new kernel the moment interrupts are enabled.
1059          *
1060          * Interrupts are enabled early and LAPIC is setup much later, hence
1061          * its possible that when we get here evt->event_handler is NULL.
1062          * Check for event_handler being NULL and discard the interrupt as
1063          * spurious.
1064          */
1065         if (!evt->event_handler) {
1066                 pr_warning("Spurious LAPIC timer interrupt on cpu %d\n",
1067                            smp_processor_id());
1068                 /* Switch it off */
1069                 lapic_timer_shutdown(evt);
1070                 return;
1071         }
1072
1073         /*
1074          * the NMI deadlock-detector uses this.
1075          */
1076         inc_irq_stat(apic_timer_irqs);
1077
1078         evt->event_handler(evt);
1079 }
1080
1081 /*
1082  * Local APIC timer interrupt. This is the most natural way for doing
1083  * local interrupts, but local timer interrupts can be emulated by
1084  * broadcast interrupts too. [in case the hw doesn't support APIC timers]
1085  *
1086  * [ if a single-CPU system runs an SMP kernel then we call the local
1087  *   interrupt as well. Thus we cannot inline the local irq ... ]
1088  */
1089 __visible void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
1090 {
1091         struct pt_regs *old_regs = set_irq_regs(regs);
1092
1093         /*
1094          * NOTE! We'd better ACK the irq immediately,
1095          * because timer handling can be slow.
1096          *
1097          * update_process_times() expects us to have done irq_enter().
1098          * Besides, if we don't timer interrupts ignore the global
1099          * interrupt lock, which is the WrongThing (tm) to do.
1100          */
1101         entering_ack_irq();
1102         trace_local_timer_entry(LOCAL_TIMER_VECTOR);
1103         local_apic_timer_interrupt();
1104         trace_local_timer_exit(LOCAL_TIMER_VECTOR);
1105         exiting_irq();
1106
1107         set_irq_regs(old_regs);
1108 }
1109
1110 int setup_profiling_timer(unsigned int multiplier)
1111 {
1112         return -EINVAL;
1113 }
1114
1115 /*
1116  * Local APIC start and shutdown
1117  */
1118
1119 /**
1120  * clear_local_APIC - shutdown the local APIC
1121  *
1122  * This is called, when a CPU is disabled and before rebooting, so the state of
1123  * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
1124  * leftovers during boot.
1125  */
1126 void clear_local_APIC(void)
1127 {
1128         int maxlvt;
1129         u32 v;
1130
1131         /* APIC hasn't been mapped yet */
1132         if (!x2apic_mode && !apic_phys)
1133                 return;
1134
1135         maxlvt = lapic_get_maxlvt();
1136         /*
1137          * Masking an LVT entry can trigger a local APIC error
1138          * if the vector is zero. Mask LVTERR first to prevent this.
1139          */
1140         if (maxlvt >= 3) {
1141                 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
1142                 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
1143         }
1144         /*
1145          * Careful: we have to set masks only first to deassert
1146          * any level-triggered sources.
1147          */
1148         v = apic_read(APIC_LVTT);
1149         apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
1150         v = apic_read(APIC_LVT0);
1151         apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1152         v = apic_read(APIC_LVT1);
1153         apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
1154         if (maxlvt >= 4) {
1155                 v = apic_read(APIC_LVTPC);
1156                 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
1157         }
1158
1159         /* lets not touch this if we didn't frob it */
1160 #ifdef CONFIG_X86_THERMAL_VECTOR
1161         if (maxlvt >= 5) {
1162                 v = apic_read(APIC_LVTTHMR);
1163                 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
1164         }
1165 #endif
1166 #ifdef CONFIG_X86_MCE_INTEL
1167         if (maxlvt >= 6) {
1168                 v = apic_read(APIC_LVTCMCI);
1169                 if (!(v & APIC_LVT_MASKED))
1170                         apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
1171         }
1172 #endif
1173
1174         /*
1175          * Clean APIC state for other OSs:
1176          */
1177         apic_write(APIC_LVTT, APIC_LVT_MASKED);
1178         apic_write(APIC_LVT0, APIC_LVT_MASKED);
1179         apic_write(APIC_LVT1, APIC_LVT_MASKED);
1180         if (maxlvt >= 3)
1181                 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
1182         if (maxlvt >= 4)
1183                 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
1184
1185         /* Integrated APIC (!82489DX) ? */
1186         if (lapic_is_integrated()) {
1187                 if (maxlvt > 3)
1188                         /* Clear ESR due to Pentium errata 3AP and 11AP */
1189                         apic_write(APIC_ESR, 0);
1190                 apic_read(APIC_ESR);
1191         }
1192 }
1193
1194 /**
1195  * disable_local_APIC - clear and disable the local APIC
1196  */
1197 void disable_local_APIC(void)
1198 {
1199         unsigned int value;
1200
1201         /* APIC hasn't been mapped yet */
1202         if (!x2apic_mode && !apic_phys)
1203                 return;
1204
1205         clear_local_APIC();
1206
1207         /*
1208          * Disable APIC (implies clearing of registers
1209          * for 82489DX!).
1210          */
1211         value = apic_read(APIC_SPIV);
1212         value &= ~APIC_SPIV_APIC_ENABLED;
1213         apic_write(APIC_SPIV, value);
1214
1215 #ifdef CONFIG_X86_32
1216         /*
1217          * When LAPIC was disabled by the BIOS and enabled by the kernel,
1218          * restore the disabled state.
1219          */
1220         if (enabled_via_apicbase) {
1221                 unsigned int l, h;
1222
1223                 rdmsr(MSR_IA32_APICBASE, l, h);
1224                 l &= ~MSR_IA32_APICBASE_ENABLE;
1225                 wrmsr(MSR_IA32_APICBASE, l, h);
1226         }
1227 #endif
1228 }
1229
1230 /*
1231  * If Linux enabled the LAPIC against the BIOS default disable it down before
1232  * re-entering the BIOS on shutdown.  Otherwise the BIOS may get confused and
1233  * not power-off.  Additionally clear all LVT entries before disable_local_APIC
1234  * for the case where Linux didn't enable the LAPIC.
1235  */
1236 void lapic_shutdown(void)
1237 {
1238         unsigned long flags;
1239
1240         if (!boot_cpu_has(X86_FEATURE_APIC) && !apic_from_smp_config())
1241                 return;
1242
1243         local_irq_save(flags);
1244
1245 #ifdef CONFIG_X86_32
1246         if (!enabled_via_apicbase)
1247                 clear_local_APIC();
1248         else
1249 #endif
1250                 disable_local_APIC();
1251
1252
1253         local_irq_restore(flags);
1254 }
1255
1256 /**
1257  * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1258  */
1259 void __init sync_Arb_IDs(void)
1260 {
1261         /*
1262          * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1263          * needed on AMD.
1264          */
1265         if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
1266                 return;
1267
1268         /*
1269          * Wait for idle.
1270          */
1271         apic_wait_icr_idle();
1272
1273         apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
1274         apic_write(APIC_ICR, APIC_DEST_ALLINC |
1275                         APIC_INT_LEVELTRIG | APIC_DM_INIT);
1276 }
1277
1278 /*
1279  * An initial setup of the virtual wire mode.
1280  */
1281 void __init init_bsp_APIC(void)
1282 {
1283         unsigned int value;
1284
1285         /*
1286          * Don't do the setup now if we have a SMP BIOS as the
1287          * through-I/O-APIC virtual wire mode might be active.
1288          */
1289         if (smp_found_config || !boot_cpu_has(X86_FEATURE_APIC))
1290                 return;
1291
1292         /*
1293          * Do not trust the local APIC being empty at bootup.
1294          */
1295         clear_local_APIC();
1296
1297         /*
1298          * Enable APIC.
1299          */
1300         value = apic_read(APIC_SPIV);
1301         value &= ~APIC_VECTOR_MASK;
1302         value |= APIC_SPIV_APIC_ENABLED;
1303
1304 #ifdef CONFIG_X86_32
1305         /* This bit is reserved on P4/Xeon and should be cleared */
1306         if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1307             (boot_cpu_data.x86 == 15))
1308                 value &= ~APIC_SPIV_FOCUS_DISABLED;
1309         else
1310 #endif
1311                 value |= APIC_SPIV_FOCUS_DISABLED;
1312         value |= SPURIOUS_APIC_VECTOR;
1313         apic_write(APIC_SPIV, value);
1314
1315         /*
1316          * Set up the virtual wire mode.
1317          */
1318         apic_write(APIC_LVT0, APIC_DM_EXTINT);
1319         value = APIC_DM_NMI;
1320         if (!lapic_is_integrated())             /* 82489DX */
1321                 value |= APIC_LVT_LEVEL_TRIGGER;
1322         if (apic_extnmi == APIC_EXTNMI_NONE)
1323                 value |= APIC_LVT_MASKED;
1324         apic_write(APIC_LVT1, value);
1325 }
1326
1327 static void lapic_setup_esr(void)
1328 {
1329         unsigned int oldvalue, value, maxlvt;
1330
1331         if (!lapic_is_integrated()) {
1332                 pr_info("No ESR for 82489DX.\n");
1333                 return;
1334         }
1335
1336         if (apic->disable_esr) {
1337                 /*
1338                  * Something untraceable is creating bad interrupts on
1339                  * secondary quads ... for the moment, just leave the
1340                  * ESR disabled - we can't do anything useful with the
1341                  * errors anyway - mbligh
1342                  */
1343                 pr_info("Leaving ESR disabled.\n");
1344                 return;
1345         }
1346
1347         maxlvt = lapic_get_maxlvt();
1348         if (maxlvt > 3)         /* Due to the Pentium erratum 3AP. */
1349                 apic_write(APIC_ESR, 0);
1350         oldvalue = apic_read(APIC_ESR);
1351
1352         /* enables sending errors */
1353         value = ERROR_APIC_VECTOR;
1354         apic_write(APIC_LVTERR, value);
1355
1356         /*
1357          * spec says clear errors after enabling vector.
1358          */
1359         if (maxlvt > 3)
1360                 apic_write(APIC_ESR, 0);
1361         value = apic_read(APIC_ESR);
1362         if (value != oldvalue)
1363                 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1364                         "vector: 0x%08x  after: 0x%08x\n",
1365                         oldvalue, value);
1366 }
1367
1368 static void apic_pending_intr_clear(void)
1369 {
1370         long long max_loops = cpu_khz ? cpu_khz : 1000000;
1371         unsigned long long tsc = 0, ntsc;
1372         unsigned int value, queued;
1373         int i, j, acked = 0;
1374
1375         if (boot_cpu_has(X86_FEATURE_TSC))
1376                 tsc = rdtsc();
1377         /*
1378          * After a crash, we no longer service the interrupts and a pending
1379          * interrupt from previous kernel might still have ISR bit set.
1380          *
1381          * Most probably by now CPU has serviced that pending interrupt and
1382          * it might not have done the ack_APIC_irq() because it thought,
1383          * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1384          * does not clear the ISR bit and cpu thinks it has already serivced
1385          * the interrupt. Hence a vector might get locked. It was noticed
1386          * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1387          */
1388         do {
1389                 queued = 0;
1390                 for (i = APIC_ISR_NR - 1; i >= 0; i--)
1391                         queued |= apic_read(APIC_IRR + i*0x10);
1392
1393                 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1394                         value = apic_read(APIC_ISR + i*0x10);
1395                         for (j = 31; j >= 0; j--) {
1396                                 if (value & (1<<j)) {
1397                                         ack_APIC_irq();
1398                                         acked++;
1399                                 }
1400                         }
1401                 }
1402                 if (acked > 256) {
1403                         printk(KERN_ERR "LAPIC pending interrupts after %d EOI\n",
1404                                acked);
1405                         break;
1406                 }
1407                 if (queued) {
1408                         if (boot_cpu_has(X86_FEATURE_TSC) && cpu_khz) {
1409                                 ntsc = rdtsc();
1410                                 max_loops = (cpu_khz << 10) - (ntsc - tsc);
1411                         } else
1412                                 max_loops--;
1413                 }
1414         } while (queued && max_loops > 0);
1415         WARN_ON(max_loops <= 0);
1416 }
1417
1418 /**
1419  * setup_local_APIC - setup the local APIC
1420  *
1421  * Used to setup local APIC while initializing BSP or bringing up APs.
1422  * Always called with preemption disabled.
1423  */
1424 void setup_local_APIC(void)
1425 {
1426         int cpu = smp_processor_id();
1427         unsigned int value;
1428
1429
1430         if (disable_apic) {
1431                 disable_ioapic_support();
1432                 return;
1433         }
1434
1435         /*
1436          * If this comes from kexec/kcrash the APIC might be enabled in
1437          * SPIV. Soft disable it before doing further initialization.
1438          */
1439         value = apic_read(APIC_SPIV);
1440         value &= ~APIC_SPIV_APIC_ENABLED;
1441         apic_write(APIC_SPIV, value);
1442
1443 #ifdef CONFIG_X86_32
1444         /* Pound the ESR really hard over the head with a big hammer - mbligh */
1445         if (lapic_is_integrated() && apic->disable_esr) {
1446                 apic_write(APIC_ESR, 0);
1447                 apic_write(APIC_ESR, 0);
1448                 apic_write(APIC_ESR, 0);
1449                 apic_write(APIC_ESR, 0);
1450         }
1451 #endif
1452         perf_events_lapic_init();
1453
1454         /*
1455          * Double-check whether this APIC is really registered.
1456          * This is meaningless in clustered apic mode, so we skip it.
1457          */
1458         BUG_ON(!apic->apic_id_registered());
1459
1460         /*
1461          * Intel recommends to set DFR, LDR and TPR before enabling
1462          * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
1463          * document number 292116).  So here it goes...
1464          */
1465         apic->init_apic_ldr();
1466
1467 #ifdef CONFIG_X86_32
1468         if (apic->dest_logical) {
1469                 int logical_apicid, ldr_apicid;
1470
1471                 /*
1472                  * APIC LDR is initialized.  If logical_apicid mapping was
1473                  * initialized during get_smp_config(), make sure it matches
1474                  * the actual value.
1475                  */
1476                 logical_apicid = early_per_cpu(x86_cpu_to_logical_apicid, cpu);
1477                 ldr_apicid = GET_APIC_LOGICAL_ID(apic_read(APIC_LDR));
1478                 if (logical_apicid != BAD_APICID)
1479                         WARN_ON(logical_apicid != ldr_apicid);
1480                 /* Always use the value from LDR. */
1481                 early_per_cpu(x86_cpu_to_logical_apicid, cpu) = ldr_apicid;
1482         }
1483 #endif
1484
1485         /*
1486          * Set Task Priority to 'accept all'. We never change this
1487          * later on.
1488          */
1489         value = apic_read(APIC_TASKPRI);
1490         value &= ~APIC_TPRI_MASK;
1491         apic_write(APIC_TASKPRI, value);
1492
1493         apic_pending_intr_clear();
1494
1495         /*
1496          * Now that we are all set up, enable the APIC
1497          */
1498         value = apic_read(APIC_SPIV);
1499         value &= ~APIC_VECTOR_MASK;
1500         /*
1501          * Enable APIC
1502          */
1503         value |= APIC_SPIV_APIC_ENABLED;
1504
1505 #ifdef CONFIG_X86_32
1506         /*
1507          * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1508          * certain networking cards. If high frequency interrupts are
1509          * happening on a particular IOAPIC pin, plus the IOAPIC routing
1510          * entry is masked/unmasked at a high rate as well then sooner or
1511          * later IOAPIC line gets 'stuck', no more interrupts are received
1512          * from the device. If focus CPU is disabled then the hang goes
1513          * away, oh well :-(
1514          *
1515          * [ This bug can be reproduced easily with a level-triggered
1516          *   PCI Ne2000 networking cards and PII/PIII processors, dual
1517          *   BX chipset. ]
1518          */
1519         /*
1520          * Actually disabling the focus CPU check just makes the hang less
1521          * frequent as it makes the interrupt distributon model be more
1522          * like LRU than MRU (the short-term load is more even across CPUs).
1523          */
1524
1525         /*
1526          * - enable focus processor (bit==0)
1527          * - 64bit mode always use processor focus
1528          *   so no need to set it
1529          */
1530         value &= ~APIC_SPIV_FOCUS_DISABLED;
1531 #endif
1532
1533         /*
1534          * Set spurious IRQ vector
1535          */
1536         value |= SPURIOUS_APIC_VECTOR;
1537         apic_write(APIC_SPIV, value);
1538
1539         /*
1540          * Set up LVT0, LVT1:
1541          *
1542          * set up through-local-APIC on the BP's LINT0. This is not
1543          * strictly necessary in pure symmetric-IO mode, but sometimes
1544          * we delegate interrupts to the 8259A.
1545          */
1546         /*
1547          * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1548          */
1549         value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1550         if (!cpu && (pic_mode || !value || skip_ioapic_setup)) {
1551                 value = APIC_DM_EXTINT;
1552                 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", cpu);
1553         } else {
1554                 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1555                 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", cpu);
1556         }
1557         apic_write(APIC_LVT0, value);
1558
1559         /*
1560          * Only the BSP sees the LINT1 NMI signal by default. This can be
1561          * modified by apic_extnmi= boot option.
1562          */
1563         if ((!cpu && apic_extnmi != APIC_EXTNMI_NONE) ||
1564             apic_extnmi == APIC_EXTNMI_ALL)
1565                 value = APIC_DM_NMI;
1566         else
1567                 value = APIC_DM_NMI | APIC_LVT_MASKED;
1568         if (!lapic_is_integrated())             /* 82489DX */
1569                 value |= APIC_LVT_LEVEL_TRIGGER;
1570         apic_write(APIC_LVT1, value);
1571
1572 #ifdef CONFIG_X86_MCE_INTEL
1573         /* Recheck CMCI information after local APIC is up on CPU #0 */
1574         if (!cpu)
1575                 cmci_recheck();
1576 #endif
1577 }
1578
1579 static void end_local_APIC_setup(void)
1580 {
1581         lapic_setup_esr();
1582
1583 #ifdef CONFIG_X86_32
1584         {
1585                 unsigned int value;
1586                 /* Disable the local apic timer */
1587                 value = apic_read(APIC_LVTT);
1588                 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1589                 apic_write(APIC_LVTT, value);
1590         }
1591 #endif
1592
1593         apic_pm_activate();
1594 }
1595
1596 /*
1597  * APIC setup function for application processors. Called from smpboot.c
1598  */
1599 void apic_ap_setup(void)
1600 {
1601         setup_local_APIC();
1602         end_local_APIC_setup();
1603 }
1604
1605 #ifdef CONFIG_X86_X2APIC
1606 int x2apic_mode;
1607
1608 enum {
1609         X2APIC_OFF,
1610         X2APIC_ON,
1611         X2APIC_DISABLED,
1612 };
1613 static int x2apic_state;
1614
1615 static void __x2apic_disable(void)
1616 {
1617         u64 msr;
1618
1619         if (!boot_cpu_has(X86_FEATURE_APIC))
1620                 return;
1621
1622         rdmsrl(MSR_IA32_APICBASE, msr);
1623         if (!(msr & X2APIC_ENABLE))
1624                 return;
1625         /* Disable xapic and x2apic first and then reenable xapic mode */
1626         wrmsrl(MSR_IA32_APICBASE, msr & ~(X2APIC_ENABLE | XAPIC_ENABLE));
1627         wrmsrl(MSR_IA32_APICBASE, msr & ~X2APIC_ENABLE);
1628         printk_once(KERN_INFO "x2apic disabled\n");
1629 }
1630
1631 static void __x2apic_enable(void)
1632 {
1633         u64 msr;
1634
1635         rdmsrl(MSR_IA32_APICBASE, msr);
1636         if (msr & X2APIC_ENABLE)
1637                 return;
1638         wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE);
1639         printk_once(KERN_INFO "x2apic enabled\n");
1640 }
1641
1642 static int __init setup_nox2apic(char *str)
1643 {
1644         if (x2apic_enabled()) {
1645                 int apicid = native_apic_msr_read(APIC_ID);
1646
1647                 if (apicid >= 255) {
1648                         pr_warning("Apicid: %08x, cannot enforce nox2apic\n",
1649                                    apicid);
1650                         return 0;
1651                 }
1652                 pr_warning("x2apic already enabled.\n");
1653                 __x2apic_disable();
1654         }
1655         setup_clear_cpu_cap(X86_FEATURE_X2APIC);
1656         x2apic_state = X2APIC_DISABLED;
1657         x2apic_mode = 0;
1658         return 0;
1659 }
1660 early_param("nox2apic", setup_nox2apic);
1661
1662 /* Called from cpu_init() to enable x2apic on (secondary) cpus */
1663 void x2apic_setup(void)
1664 {
1665         /*
1666          * If x2apic is not in ON state, disable it if already enabled
1667          * from BIOS.
1668          */
1669         if (x2apic_state != X2APIC_ON) {
1670                 __x2apic_disable();
1671                 return;
1672         }
1673         __x2apic_enable();
1674 }
1675
1676 static __init void x2apic_disable(void)
1677 {
1678         u32 x2apic_id, state = x2apic_state;
1679
1680         x2apic_mode = 0;
1681         x2apic_state = X2APIC_DISABLED;
1682
1683         if (state != X2APIC_ON)
1684                 return;
1685
1686         x2apic_id = read_apic_id();
1687         if (x2apic_id >= 255)
1688                 panic("Cannot disable x2apic, id: %08x\n", x2apic_id);
1689
1690         __x2apic_disable();
1691         register_lapic_address(mp_lapic_addr);
1692 }
1693
1694 static __init void x2apic_enable(void)
1695 {
1696         if (x2apic_state != X2APIC_OFF)
1697                 return;
1698
1699         x2apic_mode = 1;
1700         x2apic_state = X2APIC_ON;
1701         __x2apic_enable();
1702 }
1703
1704 static __init void try_to_enable_x2apic(int remap_mode)
1705 {
1706         if (x2apic_state == X2APIC_DISABLED)
1707                 return;
1708
1709         if (remap_mode != IRQ_REMAP_X2APIC_MODE) {
1710                 /* IR is required if there is APIC ID > 255 even when running
1711                  * under KVM
1712                  */
1713                 if (max_physical_apicid > 255 ||
1714                     !x86_init.hyper.x2apic_available()) {
1715                         pr_info("x2apic: IRQ remapping doesn't support X2APIC mode\n");
1716                         x2apic_disable();
1717                         return;
1718                 }
1719
1720                 /*
1721                  * without IR all CPUs can be addressed by IOAPIC/MSI
1722                  * only in physical mode
1723                  */
1724                 x2apic_phys = 1;
1725         }
1726         x2apic_enable();
1727 }
1728
1729 void __init check_x2apic(void)
1730 {
1731         if (x2apic_enabled()) {
1732                 pr_info("x2apic: enabled by BIOS, switching to x2apic ops\n");
1733                 x2apic_mode = 1;
1734                 x2apic_state = X2APIC_ON;
1735         } else if (!boot_cpu_has(X86_FEATURE_X2APIC)) {
1736                 x2apic_state = X2APIC_DISABLED;
1737         }
1738 }
1739 #else /* CONFIG_X86_X2APIC */
1740 static int __init validate_x2apic(void)
1741 {
1742         if (!apic_is_x2apic_enabled())
1743                 return 0;
1744         /*
1745          * Checkme: Can we simply turn off x2apic here instead of panic?
1746          */
1747         panic("BIOS has enabled x2apic but kernel doesn't support x2apic, please disable x2apic in BIOS.\n");
1748 }
1749 early_initcall(validate_x2apic);
1750
1751 static inline void try_to_enable_x2apic(int remap_mode) { }
1752 static inline void __x2apic_enable(void) { }
1753 #endif /* !CONFIG_X86_X2APIC */
1754
1755 void __init enable_IR_x2apic(void)
1756 {
1757         unsigned long flags;
1758         int ret, ir_stat;
1759
1760         if (skip_ioapic_setup) {
1761                 pr_info("Not enabling interrupt remapping due to skipped IO-APIC setup\n");
1762                 return;
1763         }
1764
1765         ir_stat = irq_remapping_prepare();
1766         if (ir_stat < 0 && !x2apic_supported())
1767                 return;
1768
1769         ret = save_ioapic_entries();
1770         if (ret) {
1771                 pr_info("Saving IO-APIC state failed: %d\n", ret);
1772                 return;
1773         }
1774
1775         local_irq_save(flags);
1776         legacy_pic->mask_all();
1777         mask_ioapic_entries();
1778
1779         /* If irq_remapping_prepare() succeeded, try to enable it */
1780         if (ir_stat >= 0)
1781                 ir_stat = irq_remapping_enable();
1782         /* ir_stat contains the remap mode or an error code */
1783         try_to_enable_x2apic(ir_stat);
1784
1785         if (ir_stat < 0)
1786                 restore_ioapic_entries();
1787         legacy_pic->restore_mask();
1788         local_irq_restore(flags);
1789 }
1790
1791 #ifdef CONFIG_X86_64
1792 /*
1793  * Detect and enable local APICs on non-SMP boards.
1794  * Original code written by Keir Fraser.
1795  * On AMD64 we trust the BIOS - if it says no APIC it is likely
1796  * not correctly set up (usually the APIC timer won't work etc.)
1797  */
1798 static int __init detect_init_APIC(void)
1799 {
1800         if (!boot_cpu_has(X86_FEATURE_APIC)) {
1801                 pr_info("No local APIC present\n");
1802                 return -1;
1803         }
1804
1805         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1806         return 0;
1807 }
1808 #else
1809
1810 static int __init apic_verify(void)
1811 {
1812         u32 features, h, l;
1813
1814         /*
1815          * The APIC feature bit should now be enabled
1816          * in `cpuid'
1817          */
1818         features = cpuid_edx(1);
1819         if (!(features & (1 << X86_FEATURE_APIC))) {
1820                 pr_warning("Could not enable APIC!\n");
1821                 return -1;
1822         }
1823         set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1824         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1825
1826         /* The BIOS may have set up the APIC at some other address */
1827         if (boot_cpu_data.x86 >= 6) {
1828                 rdmsr(MSR_IA32_APICBASE, l, h);
1829                 if (l & MSR_IA32_APICBASE_ENABLE)
1830                         mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1831         }
1832
1833         pr_info("Found and enabled local APIC!\n");
1834         return 0;
1835 }
1836
1837 int __init apic_force_enable(unsigned long addr)
1838 {
1839         u32 h, l;
1840
1841         if (disable_apic)
1842                 return -1;
1843
1844         /*
1845          * Some BIOSes disable the local APIC in the APIC_BASE
1846          * MSR. This can only be done in software for Intel P6 or later
1847          * and AMD K7 (Model > 1) or later.
1848          */
1849         if (boot_cpu_data.x86 >= 6) {
1850                 rdmsr(MSR_IA32_APICBASE, l, h);
1851                 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1852                         pr_info("Local APIC disabled by BIOS -- reenabling.\n");
1853                         l &= ~MSR_IA32_APICBASE_BASE;
1854                         l |= MSR_IA32_APICBASE_ENABLE | addr;
1855                         wrmsr(MSR_IA32_APICBASE, l, h);
1856                         enabled_via_apicbase = 1;
1857                 }
1858         }
1859         return apic_verify();
1860 }
1861
1862 /*
1863  * Detect and initialize APIC
1864  */
1865 static int __init detect_init_APIC(void)
1866 {
1867         /* Disabled by kernel option? */
1868         if (disable_apic)
1869                 return -1;
1870
1871         switch (boot_cpu_data.x86_vendor) {
1872         case X86_VENDOR_AMD:
1873                 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1874                     (boot_cpu_data.x86 >= 15))
1875                         break;
1876                 goto no_apic;
1877         case X86_VENDOR_INTEL:
1878                 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1879                     (boot_cpu_data.x86 == 5 && boot_cpu_has(X86_FEATURE_APIC)))
1880                         break;
1881                 goto no_apic;
1882         default:
1883                 goto no_apic;
1884         }
1885
1886         if (!boot_cpu_has(X86_FEATURE_APIC)) {
1887                 /*
1888                  * Over-ride BIOS and try to enable the local APIC only if
1889                  * "lapic" specified.
1890                  */
1891                 if (!force_enable_local_apic) {
1892                         pr_info("Local APIC disabled by BIOS -- "
1893                                 "you can enable it with \"lapic\"\n");
1894                         return -1;
1895                 }
1896                 if (apic_force_enable(APIC_DEFAULT_PHYS_BASE))
1897                         return -1;
1898         } else {
1899                 if (apic_verify())
1900                         return -1;
1901         }
1902
1903         apic_pm_activate();
1904
1905         return 0;
1906
1907 no_apic:
1908         pr_info("No local APIC present or hardware disabled\n");
1909         return -1;
1910 }
1911 #endif
1912
1913 /**
1914  * init_apic_mappings - initialize APIC mappings
1915  */
1916 void __init init_apic_mappings(void)
1917 {
1918         unsigned int new_apicid;
1919
1920         if (apic_validate_deadline_timer())
1921                 pr_info("TSC deadline timer available\n");
1922
1923         if (x2apic_mode) {
1924                 boot_cpu_physical_apicid = read_apic_id();
1925                 return;
1926         }
1927
1928         /* If no local APIC can be found return early */
1929         if (!smp_found_config && detect_init_APIC()) {
1930                 /* lets NOP'ify apic operations */
1931                 pr_info("APIC: disable apic facility\n");
1932                 apic_disable();
1933         } else {
1934                 apic_phys = mp_lapic_addr;
1935
1936                 /*
1937                  * If the system has ACPI MADT tables or MP info, the LAPIC
1938                  * address is already registered.
1939                  */
1940                 if (!acpi_lapic && !smp_found_config)
1941                         register_lapic_address(apic_phys);
1942         }
1943
1944         /*
1945          * Fetch the APIC ID of the BSP in case we have a
1946          * default configuration (or the MP table is broken).
1947          */
1948         new_apicid = read_apic_id();
1949         if (boot_cpu_physical_apicid != new_apicid) {
1950                 boot_cpu_physical_apicid = new_apicid;
1951                 /*
1952                  * yeah -- we lie about apic_version
1953                  * in case if apic was disabled via boot option
1954                  * but it's not a problem for SMP compiled kernel
1955                  * since smp_sanity_check is prepared for such a case
1956                  * and disable smp mode
1957                  */
1958                 boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR));
1959         }
1960 }
1961
1962 void __init register_lapic_address(unsigned long address)
1963 {
1964         mp_lapic_addr = address;
1965
1966         if (!x2apic_mode) {
1967                 set_fixmap_nocache(FIX_APIC_BASE, address);
1968                 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1969                             APIC_BASE, address);
1970         }
1971         if (boot_cpu_physical_apicid == -1U) {
1972                 boot_cpu_physical_apicid  = read_apic_id();
1973                 boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR));
1974         }
1975 }
1976
1977 /*
1978  * Local APIC interrupts
1979  */
1980
1981 /*
1982  * This interrupt should _never_ happen with our APIC/SMP architecture
1983  */
1984 __visible void __irq_entry smp_spurious_interrupt(struct pt_regs *regs)
1985 {
1986         u8 vector = ~regs->orig_ax;
1987         u32 v;
1988
1989         entering_irq();
1990         trace_spurious_apic_entry(vector);
1991
1992         /*
1993          * Check if this really is a spurious interrupt and ACK it
1994          * if it is a vectored one.  Just in case...
1995          * Spurious interrupts should not be ACKed.
1996          */
1997         v = apic_read(APIC_ISR + ((vector & ~0x1f) >> 1));
1998         if (v & (1 << (vector & 0x1f)))
1999                 ack_APIC_irq();
2000
2001         inc_irq_stat(irq_spurious_count);
2002
2003         /* see sw-dev-man vol 3, chapter 7.4.13.5 */
2004         pr_info("spurious APIC interrupt through vector %02x on CPU#%d, "
2005                 "should never happen.\n", vector, smp_processor_id());
2006
2007         trace_spurious_apic_exit(vector);
2008         exiting_irq();
2009 }
2010
2011 /*
2012  * This interrupt should never happen with our APIC/SMP architecture
2013  */
2014 __visible void __irq_entry smp_error_interrupt(struct pt_regs *regs)
2015 {
2016         static const char * const error_interrupt_reason[] = {
2017                 "Send CS error",                /* APIC Error Bit 0 */
2018                 "Receive CS error",             /* APIC Error Bit 1 */
2019                 "Send accept error",            /* APIC Error Bit 2 */
2020                 "Receive accept error",         /* APIC Error Bit 3 */
2021                 "Redirectable IPI",             /* APIC Error Bit 4 */
2022                 "Send illegal vector",          /* APIC Error Bit 5 */
2023                 "Received illegal vector",      /* APIC Error Bit 6 */
2024                 "Illegal register address",     /* APIC Error Bit 7 */
2025         };
2026         u32 v, i = 0;
2027
2028         entering_irq();
2029         trace_error_apic_entry(ERROR_APIC_VECTOR);
2030
2031         /* First tickle the hardware, only then report what went on. -- REW */
2032         if (lapic_get_maxlvt() > 3)     /* Due to the Pentium erratum 3AP. */
2033                 apic_write(APIC_ESR, 0);
2034         v = apic_read(APIC_ESR);
2035         ack_APIC_irq();
2036         atomic_inc(&irq_err_count);
2037
2038         apic_printk(APIC_DEBUG, KERN_DEBUG "APIC error on CPU%d: %02x",
2039                     smp_processor_id(), v);
2040
2041         v &= 0xff;
2042         while (v) {
2043                 if (v & 0x1)
2044                         apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]);
2045                 i++;
2046                 v >>= 1;
2047         }
2048
2049         apic_printk(APIC_DEBUG, KERN_CONT "\n");
2050
2051         trace_error_apic_exit(ERROR_APIC_VECTOR);
2052         exiting_irq();
2053 }
2054
2055 /**
2056  * connect_bsp_APIC - attach the APIC to the interrupt system
2057  */
2058 static void __init connect_bsp_APIC(void)
2059 {
2060 #ifdef CONFIG_X86_32
2061         if (pic_mode) {
2062                 /*
2063                  * Do not trust the local APIC being empty at bootup.
2064                  */
2065                 clear_local_APIC();
2066                 /*
2067                  * PIC mode, enable APIC mode in the IMCR, i.e.  connect BSP's
2068                  * local APIC to INT and NMI lines.
2069                  */
2070                 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
2071                                 "enabling APIC mode.\n");
2072                 imcr_pic_to_apic();
2073         }
2074 #endif
2075 }
2076
2077 /**
2078  * disconnect_bsp_APIC - detach the APIC from the interrupt system
2079  * @virt_wire_setup:    indicates, whether virtual wire mode is selected
2080  *
2081  * Virtual wire mode is necessary to deliver legacy interrupts even when the
2082  * APIC is disabled.
2083  */
2084 void disconnect_bsp_APIC(int virt_wire_setup)
2085 {
2086         unsigned int value;
2087
2088 #ifdef CONFIG_X86_32
2089         if (pic_mode) {
2090                 /*
2091                  * Put the board back into PIC mode (has an effect only on
2092                  * certain older boards).  Note that APIC interrupts, including
2093                  * IPIs, won't work beyond this point!  The only exception are
2094                  * INIT IPIs.
2095                  */
2096                 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
2097                                 "entering PIC mode.\n");
2098                 imcr_apic_to_pic();
2099                 return;
2100         }
2101 #endif
2102
2103         /* Go back to Virtual Wire compatibility mode */
2104
2105         /* For the spurious interrupt use vector F, and enable it */
2106         value = apic_read(APIC_SPIV);
2107         value &= ~APIC_VECTOR_MASK;
2108         value |= APIC_SPIV_APIC_ENABLED;
2109         value |= 0xf;
2110         apic_write(APIC_SPIV, value);
2111
2112         if (!virt_wire_setup) {
2113                 /*
2114                  * For LVT0 make it edge triggered, active high,
2115                  * external and enabled
2116                  */
2117                 value = apic_read(APIC_LVT0);
2118                 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2119                         APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2120                         APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2121                 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2122                 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
2123                 apic_write(APIC_LVT0, value);
2124         } else {
2125                 /* Disable LVT0 */
2126                 apic_write(APIC_LVT0, APIC_LVT_MASKED);
2127         }
2128
2129         /*
2130          * For LVT1 make it edge triggered, active high,
2131          * nmi and enabled
2132          */
2133         value = apic_read(APIC_LVT1);
2134         value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
2135                         APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
2136                         APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
2137         value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
2138         value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
2139         apic_write(APIC_LVT1, value);
2140 }
2141
2142 /*
2143  * The number of allocated logical CPU IDs. Since logical CPU IDs are allocated
2144  * contiguously, it equals to current allocated max logical CPU ID plus 1.
2145  * All allocated CPU IDs should be in the [0, nr_logical_cpuids) range,
2146  * so the maximum of nr_logical_cpuids is nr_cpu_ids.
2147  *
2148  * NOTE: Reserve 0 for BSP.
2149  */
2150 static int nr_logical_cpuids = 1;
2151
2152 /*
2153  * Used to store mapping between logical CPU IDs and APIC IDs.
2154  */
2155 static int cpuid_to_apicid[] = {
2156         [0 ... NR_CPUS - 1] = -1,
2157 };
2158
2159 #ifdef CONFIG_SMP
2160 /**
2161  * apic_id_is_primary_thread - Check whether APIC ID belongs to a primary thread
2162  * @id: APIC ID to check
2163  */
2164 bool apic_id_is_primary_thread(unsigned int apicid)
2165 {
2166         u32 mask;
2167
2168         if (smp_num_siblings == 1)
2169                 return true;
2170         /* Isolate the SMT bit(s) in the APICID and check for 0 */
2171         mask = (1U << (fls(smp_num_siblings) - 1)) - 1;
2172         return !(apicid & mask);
2173 }
2174 #endif
2175
2176 /*
2177  * Should use this API to allocate logical CPU IDs to keep nr_logical_cpuids
2178  * and cpuid_to_apicid[] synchronized.
2179  */
2180 static int allocate_logical_cpuid(int apicid)
2181 {
2182         int i;
2183
2184         /*
2185          * cpuid <-> apicid mapping is persistent, so when a cpu is up,
2186          * check if the kernel has allocated a cpuid for it.
2187          */
2188         for (i = 0; i < nr_logical_cpuids; i++) {
2189                 if (cpuid_to_apicid[i] == apicid)
2190                         return i;
2191         }
2192
2193         /* Allocate a new cpuid. */
2194         if (nr_logical_cpuids >= nr_cpu_ids) {
2195                 WARN_ONCE(1, "APIC: NR_CPUS/possible_cpus limit of %u reached. "
2196                              "Processor %d/0x%x and the rest are ignored.\n",
2197                              nr_cpu_ids, nr_logical_cpuids, apicid);
2198                 return -EINVAL;
2199         }
2200
2201         cpuid_to_apicid[nr_logical_cpuids] = apicid;
2202         return nr_logical_cpuids++;
2203 }
2204
2205 int generic_processor_info(int apicid, int version)
2206 {
2207         int cpu, max = nr_cpu_ids;
2208         bool boot_cpu_detected = physid_isset(boot_cpu_physical_apicid,
2209                                 phys_cpu_present_map);
2210
2211         /*
2212          * boot_cpu_physical_apicid is designed to have the apicid
2213          * returned by read_apic_id(), i.e, the apicid of the
2214          * currently booting-up processor. However, on some platforms,
2215          * it is temporarily modified by the apicid reported as BSP
2216          * through MP table. Concretely:
2217          *
2218          * - arch/x86/kernel/mpparse.c: MP_processor_info()
2219          * - arch/x86/mm/amdtopology.c: amd_numa_init()
2220          *
2221          * This function is executed with the modified
2222          * boot_cpu_physical_apicid. So, disabled_cpu_apicid kernel
2223          * parameter doesn't work to disable APs on kdump 2nd kernel.
2224          *
2225          * Since fixing handling of boot_cpu_physical_apicid requires
2226          * another discussion and tests on each platform, we leave it
2227          * for now and here we use read_apic_id() directly in this
2228          * function, generic_processor_info().
2229          */
2230         if (disabled_cpu_apicid != BAD_APICID &&
2231             disabled_cpu_apicid != read_apic_id() &&
2232             disabled_cpu_apicid == apicid) {
2233                 int thiscpu = num_processors + disabled_cpus;
2234
2235                 pr_warning("APIC: Disabling requested cpu."
2236                            " Processor %d/0x%x ignored.\n",
2237                            thiscpu, apicid);
2238
2239                 disabled_cpus++;
2240                 return -ENODEV;
2241         }
2242
2243         /*
2244          * If boot cpu has not been detected yet, then only allow upto
2245          * nr_cpu_ids - 1 processors and keep one slot free for boot cpu
2246          */
2247         if (!boot_cpu_detected && num_processors >= nr_cpu_ids - 1 &&
2248             apicid != boot_cpu_physical_apicid) {
2249                 int thiscpu = max + disabled_cpus - 1;
2250
2251                 pr_warning(
2252                         "APIC: NR_CPUS/possible_cpus limit of %i almost"
2253                         " reached. Keeping one slot for boot cpu."
2254                         "  Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
2255
2256                 disabled_cpus++;
2257                 return -ENODEV;
2258         }
2259
2260         if (num_processors >= nr_cpu_ids) {
2261                 int thiscpu = max + disabled_cpus;
2262
2263                 pr_warning("APIC: NR_CPUS/possible_cpus limit of %i "
2264                            "reached. Processor %d/0x%x ignored.\n",
2265                            max, thiscpu, apicid);
2266
2267                 disabled_cpus++;
2268                 return -EINVAL;
2269         }
2270
2271         if (apicid == boot_cpu_physical_apicid) {
2272                 /*
2273                  * x86_bios_cpu_apicid is required to have processors listed
2274                  * in same order as logical cpu numbers. Hence the first
2275                  * entry is BSP, and so on.
2276                  * boot_cpu_init() already hold bit 0 in cpu_present_mask
2277                  * for BSP.
2278                  */
2279                 cpu = 0;
2280
2281                 /* Logical cpuid 0 is reserved for BSP. */
2282                 cpuid_to_apicid[0] = apicid;
2283         } else {
2284                 cpu = allocate_logical_cpuid(apicid);
2285                 if (cpu < 0) {
2286                         disabled_cpus++;
2287                         return -EINVAL;
2288                 }
2289         }
2290
2291         /*
2292          * Validate version
2293          */
2294         if (version == 0x0) {
2295                 pr_warning("BIOS bug: APIC version is 0 for CPU %d/0x%x, fixing up to 0x10\n",
2296                            cpu, apicid);
2297                 version = 0x10;
2298         }
2299
2300         if (version != boot_cpu_apic_version) {
2301                 pr_warning("BIOS bug: APIC version mismatch, boot CPU: %x, CPU %d: version %x\n",
2302                         boot_cpu_apic_version, cpu, version);
2303         }
2304
2305         if (apicid > max_physical_apicid)
2306                 max_physical_apicid = apicid;
2307
2308 #if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
2309         early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
2310         early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
2311 #endif
2312 #ifdef CONFIG_X86_32
2313         early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
2314                 apic->x86_32_early_logical_apicid(cpu);
2315 #endif
2316         set_cpu_possible(cpu, true);
2317         physid_set(apicid, phys_cpu_present_map);
2318         set_cpu_present(cpu, true);
2319         num_processors++;
2320
2321         return cpu;
2322 }
2323
2324 int hard_smp_processor_id(void)
2325 {
2326         return read_apic_id();
2327 }
2328
2329 void default_init_apic_ldr(void)
2330 {
2331         unsigned long val;
2332
2333         apic_write(APIC_DFR, APIC_DFR_VALUE);
2334         val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
2335         val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
2336         apic_write(APIC_LDR, val);
2337 }
2338
2339 int default_cpu_mask_to_apicid(const struct cpumask *mask,
2340                                struct irq_data *irqdata,
2341                                unsigned int *apicid)
2342 {
2343         unsigned int cpu = cpumask_first(mask);
2344
2345         if (cpu >= nr_cpu_ids)
2346                 return -EINVAL;
2347         *apicid = per_cpu(x86_cpu_to_apicid, cpu);
2348         irq_data_update_effective_affinity(irqdata, cpumask_of(cpu));
2349         return 0;
2350 }
2351
2352 int flat_cpu_mask_to_apicid(const struct cpumask *mask,
2353                             struct irq_data *irqdata,
2354                             unsigned int *apicid)
2355
2356 {
2357         struct cpumask *effmsk = irq_data_get_effective_affinity_mask(irqdata);
2358         unsigned long cpu_mask = cpumask_bits(mask)[0] & APIC_ALL_CPUS;
2359
2360         if (!cpu_mask)
2361                 return -EINVAL;
2362         *apicid = (unsigned int)cpu_mask;
2363         cpumask_bits(effmsk)[0] = cpu_mask;
2364         return 0;
2365 }
2366
2367 /*
2368  * Override the generic EOI implementation with an optimized version.
2369  * Only called during early boot when only one CPU is active and with
2370  * interrupts disabled, so we know this does not race with actual APIC driver
2371  * use.
2372  */
2373 void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v))
2374 {
2375         struct apic **drv;
2376
2377         for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
2378                 /* Should happen once for each apic */
2379                 WARN_ON((*drv)->eoi_write == eoi_write);
2380                 (*drv)->native_eoi_write = (*drv)->eoi_write;
2381                 (*drv)->eoi_write = eoi_write;
2382         }
2383 }
2384
2385 static void __init apic_bsp_up_setup(void)
2386 {
2387 #ifdef CONFIG_X86_64
2388         apic_write(APIC_ID, apic->set_apic_id(boot_cpu_physical_apicid));
2389 #else
2390         /*
2391          * Hack: In case of kdump, after a crash, kernel might be booting
2392          * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
2393          * might be zero if read from MP tables. Get it from LAPIC.
2394          */
2395 # ifdef CONFIG_CRASH_DUMP
2396         boot_cpu_physical_apicid = read_apic_id();
2397 # endif
2398 #endif
2399         physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
2400 }
2401
2402 /**
2403  * apic_bsp_setup - Setup function for local apic and io-apic
2404  * @upmode:             Force UP mode (for APIC_init_uniprocessor)
2405  *
2406  * Returns:
2407  * apic_id of BSP APIC
2408  */
2409 int __init apic_bsp_setup(bool upmode)
2410 {
2411         int id;
2412
2413         connect_bsp_APIC();
2414         if (upmode)
2415                 apic_bsp_up_setup();
2416         setup_local_APIC();
2417
2418         if (x2apic_mode)
2419                 id = apic_read(APIC_LDR);
2420         else
2421                 id = GET_APIC_LOGICAL_ID(apic_read(APIC_LDR));
2422
2423         enable_IO_APIC();
2424         end_local_APIC_setup();
2425         irq_remap_enable_fault_handling();
2426         setup_IO_APIC();
2427         /* Setup local timer */
2428         x86_init.timers.setup_percpu_clockev();
2429         return id;
2430 }
2431
2432 /*
2433  * This initializes the IO-APIC and APIC hardware if this is
2434  * a UP kernel.
2435  */
2436 int __init APIC_init_uniprocessor(void)
2437 {
2438         if (disable_apic) {
2439                 pr_info("Apic disabled\n");
2440                 return -1;
2441         }
2442 #ifdef CONFIG_X86_64
2443         if (!boot_cpu_has(X86_FEATURE_APIC)) {
2444                 disable_apic = 1;
2445                 pr_info("Apic disabled by BIOS\n");
2446                 return -1;
2447         }
2448 #else
2449         if (!smp_found_config && !boot_cpu_has(X86_FEATURE_APIC))
2450                 return -1;
2451
2452         /*
2453          * Complain if the BIOS pretends there is one.
2454          */
2455         if (!boot_cpu_has(X86_FEATURE_APIC) &&
2456             APIC_INTEGRATED(boot_cpu_apic_version)) {
2457                 pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
2458                         boot_cpu_physical_apicid);
2459                 return -1;
2460         }
2461 #endif
2462
2463         if (!smp_found_config)
2464                 disable_ioapic_support();
2465
2466         default_setup_apic_routing();
2467         apic_bsp_setup(true);
2468         return 0;
2469 }
2470
2471 #ifdef CONFIG_UP_LATE_INIT
2472 void __init up_late_init(void)
2473 {
2474         APIC_init_uniprocessor();
2475 }
2476 #endif
2477
2478 /*
2479  * Power management
2480  */
2481 #ifdef CONFIG_PM
2482
2483 static struct {
2484         /*
2485          * 'active' is true if the local APIC was enabled by us and
2486          * not the BIOS; this signifies that we are also responsible
2487          * for disabling it before entering apm/acpi suspend
2488          */
2489         int active;
2490         /* r/w apic fields */
2491         unsigned int apic_id;
2492         unsigned int apic_taskpri;
2493         unsigned int apic_ldr;
2494         unsigned int apic_dfr;
2495         unsigned int apic_spiv;
2496         unsigned int apic_lvtt;
2497         unsigned int apic_lvtpc;
2498         unsigned int apic_lvt0;
2499         unsigned int apic_lvt1;
2500         unsigned int apic_lvterr;
2501         unsigned int apic_tmict;
2502         unsigned int apic_tdcr;
2503         unsigned int apic_thmr;
2504         unsigned int apic_cmci;
2505 } apic_pm_state;
2506
2507 static int lapic_suspend(void)
2508 {
2509         unsigned long flags;
2510         int maxlvt;
2511
2512         if (!apic_pm_state.active)
2513                 return 0;
2514
2515         maxlvt = lapic_get_maxlvt();
2516
2517         apic_pm_state.apic_id = apic_read(APIC_ID);
2518         apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
2519         apic_pm_state.apic_ldr = apic_read(APIC_LDR);
2520         apic_pm_state.apic_dfr = apic_read(APIC_DFR);
2521         apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
2522         apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
2523         if (maxlvt >= 4)
2524                 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
2525         apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
2526         apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
2527         apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
2528         apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
2529         apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
2530 #ifdef CONFIG_X86_THERMAL_VECTOR
2531         if (maxlvt >= 5)
2532                 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
2533 #endif
2534 #ifdef CONFIG_X86_MCE_INTEL
2535         if (maxlvt >= 6)
2536                 apic_pm_state.apic_cmci = apic_read(APIC_LVTCMCI);
2537 #endif
2538
2539         local_irq_save(flags);
2540         disable_local_APIC();
2541
2542         irq_remapping_disable();
2543
2544         local_irq_restore(flags);
2545         return 0;
2546 }
2547
2548 static void lapic_resume(void)
2549 {
2550         unsigned int l, h;
2551         unsigned long flags;
2552         int maxlvt;
2553
2554         if (!apic_pm_state.active)
2555                 return;
2556
2557         local_irq_save(flags);
2558
2559         /*
2560          * IO-APIC and PIC have their own resume routines.
2561          * We just mask them here to make sure the interrupt
2562          * subsystem is completely quiet while we enable x2apic
2563          * and interrupt-remapping.
2564          */
2565         mask_ioapic_entries();
2566         legacy_pic->mask_all();
2567
2568         if (x2apic_mode) {
2569                 __x2apic_enable();
2570         } else {
2571                 /*
2572                  * Make sure the APICBASE points to the right address
2573                  *
2574                  * FIXME! This will be wrong if we ever support suspend on
2575                  * SMP! We'll need to do this as part of the CPU restore!
2576                  */
2577                 if (boot_cpu_data.x86 >= 6) {
2578                         rdmsr(MSR_IA32_APICBASE, l, h);
2579                         l &= ~MSR_IA32_APICBASE_BASE;
2580                         l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
2581                         wrmsr(MSR_IA32_APICBASE, l, h);
2582                 }
2583         }
2584
2585         maxlvt = lapic_get_maxlvt();
2586         apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
2587         apic_write(APIC_ID, apic_pm_state.apic_id);
2588         apic_write(APIC_DFR, apic_pm_state.apic_dfr);
2589         apic_write(APIC_LDR, apic_pm_state.apic_ldr);
2590         apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
2591         apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
2592         apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
2593         apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
2594 #ifdef CONFIG_X86_THERMAL_VECTOR
2595         if (maxlvt >= 5)
2596                 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
2597 #endif
2598 #ifdef CONFIG_X86_MCE_INTEL
2599         if (maxlvt >= 6)
2600                 apic_write(APIC_LVTCMCI, apic_pm_state.apic_cmci);
2601 #endif
2602         if (maxlvt >= 4)
2603                 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
2604         apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2605         apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2606         apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2607         apic_write(APIC_ESR, 0);
2608         apic_read(APIC_ESR);
2609         apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2610         apic_write(APIC_ESR, 0);
2611         apic_read(APIC_ESR);
2612
2613         irq_remapping_reenable(x2apic_mode);
2614
2615         local_irq_restore(flags);
2616 }
2617
2618 /*
2619  * This device has no shutdown method - fully functioning local APICs
2620  * are needed on every CPU up until machine_halt/restart/poweroff.
2621  */
2622
2623 static struct syscore_ops lapic_syscore_ops = {
2624         .resume         = lapic_resume,
2625         .suspend        = lapic_suspend,
2626 };
2627
2628 static void apic_pm_activate(void)
2629 {
2630         apic_pm_state.active = 1;
2631 }
2632
2633 static int __init init_lapic_sysfs(void)
2634 {
2635         /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
2636         if (boot_cpu_has(X86_FEATURE_APIC))
2637                 register_syscore_ops(&lapic_syscore_ops);
2638
2639         return 0;
2640 }
2641
2642 /* local apic needs to resume before other devices access its registers. */
2643 core_initcall(init_lapic_sysfs);
2644
2645 #else   /* CONFIG_PM */
2646
2647 static void apic_pm_activate(void) { }
2648
2649 #endif  /* CONFIG_PM */
2650
2651 #ifdef CONFIG_X86_64
2652
2653 static int multi_checked;
2654 static int multi;
2655
2656 static int set_multi(const struct dmi_system_id *d)
2657 {
2658         if (multi)
2659                 return 0;
2660         pr_info("APIC: %s detected, Multi Chassis\n", d->ident);
2661         multi = 1;
2662         return 0;
2663 }
2664
2665 static const struct dmi_system_id multi_dmi_table[] = {
2666         {
2667                 .callback = set_multi,
2668                 .ident = "IBM System Summit2",
2669                 .matches = {
2670                         DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
2671                         DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"),
2672                 },
2673         },
2674         {}
2675 };
2676
2677 static void dmi_check_multi(void)
2678 {
2679         if (multi_checked)
2680                 return;
2681
2682         dmi_check_system(multi_dmi_table);
2683         multi_checked = 1;
2684 }
2685
2686 /*
2687  * apic_is_clustered_box() -- Check if we can expect good TSC
2688  *
2689  * Thus far, the major user of this is IBM's Summit2 series:
2690  * Clustered boxes may have unsynced TSC problems if they are
2691  * multi-chassis.
2692  * Use DMI to check them
2693  */
2694 int apic_is_clustered_box(void)
2695 {
2696         dmi_check_multi();
2697         return multi;
2698 }
2699 #endif
2700
2701 /*
2702  * APIC command line parameters
2703  */
2704 static int __init setup_disableapic(char *arg)
2705 {
2706         disable_apic = 1;
2707         setup_clear_cpu_cap(X86_FEATURE_APIC);
2708         return 0;
2709 }
2710 early_param("disableapic", setup_disableapic);
2711
2712 /* same as disableapic, for compatibility */
2713 static int __init setup_nolapic(char *arg)
2714 {
2715         return setup_disableapic(arg);
2716 }
2717 early_param("nolapic", setup_nolapic);
2718
2719 static int __init parse_lapic_timer_c2_ok(char *arg)
2720 {
2721         local_apic_timer_c2_ok = 1;
2722         return 0;
2723 }
2724 early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2725
2726 static int __init parse_disable_apic_timer(char *arg)
2727 {
2728         disable_apic_timer = 1;
2729         return 0;
2730 }
2731 early_param("noapictimer", parse_disable_apic_timer);
2732
2733 static int __init parse_nolapic_timer(char *arg)
2734 {
2735         disable_apic_timer = 1;
2736         return 0;
2737 }
2738 early_param("nolapic_timer", parse_nolapic_timer);
2739
2740 static int __init apic_set_verbosity(char *arg)
2741 {
2742         if (!arg)  {
2743 #ifdef CONFIG_X86_64
2744                 skip_ioapic_setup = 0;
2745                 return 0;
2746 #endif
2747                 return -EINVAL;
2748         }
2749
2750         if (strcmp("debug", arg) == 0)
2751                 apic_verbosity = APIC_DEBUG;
2752         else if (strcmp("verbose", arg) == 0)
2753                 apic_verbosity = APIC_VERBOSE;
2754         else {
2755                 pr_warning("APIC Verbosity level %s not recognised"
2756                         " use apic=verbose or apic=debug\n", arg);
2757                 return -EINVAL;
2758         }
2759
2760         return 0;
2761 }
2762 early_param("apic", apic_set_verbosity);
2763
2764 static int __init lapic_insert_resource(void)
2765 {
2766         if (!apic_phys)
2767                 return -1;
2768
2769         /* Put local APIC into the resource map. */
2770         lapic_resource.start = apic_phys;
2771         lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2772         insert_resource(&iomem_resource, &lapic_resource);
2773
2774         return 0;
2775 }
2776
2777 /*
2778  * need call insert after e820__reserve_resources()
2779  * that is using request_resource
2780  */
2781 late_initcall(lapic_insert_resource);
2782
2783 static int __init apic_set_disabled_cpu_apicid(char *arg)
2784 {
2785         if (!arg || !get_option(&arg, &disabled_cpu_apicid))
2786                 return -EINVAL;
2787
2788         return 0;
2789 }
2790 early_param("disable_cpu_apicid", apic_set_disabled_cpu_apicid);
2791
2792 static int __init apic_set_extnmi(char *arg)
2793 {
2794         if (!arg)
2795                 return -EINVAL;
2796
2797         if (!strncmp("all", arg, 3))
2798                 apic_extnmi = APIC_EXTNMI_ALL;
2799         else if (!strncmp("none", arg, 4))
2800                 apic_extnmi = APIC_EXTNMI_NONE;
2801         else if (!strncmp("bsp", arg, 3))
2802                 apic_extnmi = APIC_EXTNMI_BSP;
2803         else {
2804                 pr_warn("Unknown external NMI delivery mode `%s' ignored\n", arg);
2805                 return -EINVAL;
2806         }
2807
2808         return 0;
2809 }
2810 early_param("apic_extnmi", apic_set_extnmi);