b7268f5c8b18469b8f3c7280d24c6db9f694c9df
[deliverable/linux.git] / arch / x86 / kernel / apic_64.c
1 /*
2 * Local APIC handling, local APIC timers
3 *
4 * (c) 1999, 2000 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/init.h>
18
19 #include <linux/mm.h>
20 #include <linux/delay.h>
21 #include <linux/bootmem.h>
22 #include <linux/interrupt.h>
23 #include <linux/mc146818rtc.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/sysdev.h>
26 #include <linux/ioport.h>
27 #include <linux/clockchips.h>
28 #include <linux/acpi_pmtmr.h>
29 #include <linux/module.h>
30 #include <linux/dmar.h>
31
32 #include <asm/atomic.h>
33 #include <asm/smp.h>
34 #include <asm/mtrr.h>
35 #include <asm/mpspec.h>
36 #include <asm/desc.h>
37 #include <asm/hpet.h>
38 #include <asm/pgalloc.h>
39 #include <asm/nmi.h>
40 #include <asm/idle.h>
41 #include <asm/proto.h>
42 #include <asm/timex.h>
43 #include <asm/apic.h>
44 #include <asm/i8259.h>
45
46 #include <mach_ipi.h>
47 #include <mach_apic.h>
48
49 /*
50 * Sanity check
51 */
52 #if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
53 # error SPURIOUS_APIC_VECTOR definition error
54 #endif
55
56 #ifdef CONFIG_X86_32
57 /*
58 * Knob to control our willingness to enable the local APIC.
59 *
60 * +1=force-enable
61 */
62 static int force_enable_local_apic;
63 /*
64 * APIC command line parameters
65 */
66 static int __init parse_lapic(char *arg)
67 {
68 force_enable_local_apic = 1;
69 return 0;
70 }
71 early_param("lapic", parse_lapic);
72 /* Local APIC was disabled by the BIOS and enabled by the kernel */
73 static int enabled_via_apicbase;
74
75 #endif
76
77 #ifdef CONFIG_X86_64
78 static int apic_calibrate_pmtmr __initdata;
79 static __init int setup_apicpmtimer(char *s)
80 {
81 apic_calibrate_pmtmr = 1;
82 notsc_setup(NULL);
83 return 0;
84 }
85 __setup("apicpmtimer", setup_apicpmtimer);
86 #endif
87
88 #ifdef CONFIG_X86_64
89 #define HAVE_X2APIC
90 #endif
91
92 #ifdef HAVE_X2APIC
93 int x2apic;
94 /* x2apic enabled before OS handover */
95 int x2apic_preenabled;
96 int disable_x2apic;
97 static __init int setup_nox2apic(char *str)
98 {
99 disable_x2apic = 1;
100 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
101 return 0;
102 }
103 early_param("nox2apic", setup_nox2apic);
104 #endif
105
106 unsigned long mp_lapic_addr;
107 int disable_apic;
108 /* Disable local APIC timer from the kernel commandline or via dmi quirk */
109 static int disable_apic_timer __cpuinitdata;
110 /* Local APIC timer works in C2 */
111 int local_apic_timer_c2_ok;
112 EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
113
114 int first_system_vector = 0xfe;
115
116 char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
117
118 /*
119 * Debug level, exported for io_apic.c
120 */
121 unsigned int apic_verbosity;
122
123 int pic_mode;
124
125 /* Have we found an MP table */
126 int smp_found_config;
127
128 static struct resource lapic_resource = {
129 .name = "Local APIC",
130 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
131 };
132
133 static unsigned int calibration_result;
134
135 static int lapic_next_event(unsigned long delta,
136 struct clock_event_device *evt);
137 static void lapic_timer_setup(enum clock_event_mode mode,
138 struct clock_event_device *evt);
139 static void lapic_timer_broadcast(cpumask_t mask);
140 static void apic_pm_activate(void);
141
142 /*
143 * The local apic timer can be used for any function which is CPU local.
144 */
145 static struct clock_event_device lapic_clockevent = {
146 .name = "lapic",
147 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
148 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
149 .shift = 32,
150 .set_mode = lapic_timer_setup,
151 .set_next_event = lapic_next_event,
152 .broadcast = lapic_timer_broadcast,
153 .rating = 100,
154 .irq = -1,
155 };
156 static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
157
158 static unsigned long apic_phys;
159
160 /*
161 * Get the LAPIC version
162 */
163 static inline int lapic_get_version(void)
164 {
165 return GET_APIC_VERSION(apic_read(APIC_LVR));
166 }
167
168 /*
169 * Check, if the APIC is integrated or a separate chip
170 */
171 static inline int lapic_is_integrated(void)
172 {
173 #ifdef CONFIG_X86_64
174 return 1;
175 #else
176 return APIC_INTEGRATED(lapic_get_version());
177 #endif
178 }
179
180 /*
181 * Check, whether this is a modern or a first generation APIC
182 */
183 static int modern_apic(void)
184 {
185 /* AMD systems use old APIC versions, so check the CPU */
186 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
187 boot_cpu_data.x86 >= 0xf)
188 return 1;
189 return lapic_get_version() >= 0x14;
190 }
191
192 /*
193 * Paravirt kernels also might be using these below ops. So we still
194 * use generic apic_read()/apic_write(), which might be pointing to different
195 * ops in PARAVIRT case.
196 */
197 void xapic_wait_icr_idle(void)
198 {
199 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
200 cpu_relax();
201 }
202
203 u32 safe_xapic_wait_icr_idle(void)
204 {
205 u32 send_status;
206 int timeout;
207
208 timeout = 0;
209 do {
210 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
211 if (!send_status)
212 break;
213 udelay(100);
214 } while (timeout++ < 1000);
215
216 return send_status;
217 }
218
219 void xapic_icr_write(u32 low, u32 id)
220 {
221 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
222 apic_write(APIC_ICR, low);
223 }
224
225 u64 xapic_icr_read(void)
226 {
227 u32 icr1, icr2;
228
229 icr2 = apic_read(APIC_ICR2);
230 icr1 = apic_read(APIC_ICR);
231
232 return icr1 | ((u64)icr2 << 32);
233 }
234
235 static struct apic_ops xapic_ops = {
236 .read = native_apic_mem_read,
237 .write = native_apic_mem_write,
238 .icr_read = xapic_icr_read,
239 .icr_write = xapic_icr_write,
240 .wait_icr_idle = xapic_wait_icr_idle,
241 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
242 };
243
244 struct apic_ops __read_mostly *apic_ops = &xapic_ops;
245 EXPORT_SYMBOL_GPL(apic_ops);
246
247 #ifdef HAVE_X2APIC
248 static void x2apic_wait_icr_idle(void)
249 {
250 /* no need to wait for icr idle in x2apic */
251 return;
252 }
253
254 static u32 safe_x2apic_wait_icr_idle(void)
255 {
256 /* no need to wait for icr idle in x2apic */
257 return 0;
258 }
259
260 void x2apic_icr_write(u32 low, u32 id)
261 {
262 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
263 }
264
265 u64 x2apic_icr_read(void)
266 {
267 unsigned long val;
268
269 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
270 return val;
271 }
272
273 static struct apic_ops x2apic_ops = {
274 .read = native_apic_msr_read,
275 .write = native_apic_msr_write,
276 .icr_read = x2apic_icr_read,
277 .icr_write = x2apic_icr_write,
278 .wait_icr_idle = x2apic_wait_icr_idle,
279 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
280 };
281 #endif
282
283 /**
284 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
285 */
286 void __cpuinit enable_NMI_through_LVT0(void)
287 {
288 unsigned int v;
289
290 /* unmask and set to NMI */
291 v = APIC_DM_NMI;
292
293 /* Level triggered for 82489DX (32bit mode) */
294 if (!lapic_is_integrated())
295 v |= APIC_LVT_LEVEL_TRIGGER;
296
297 apic_write(APIC_LVT0, v);
298 }
299
300 #ifdef CONFIG_X86_32
301 /**
302 * get_physical_broadcast - Get number of physical broadcast IDs
303 */
304 int get_physical_broadcast(void)
305 {
306 return modern_apic() ? 0xff : 0xf;
307 }
308 #endif
309
310 /**
311 * lapic_get_maxlvt - get the maximum number of local vector table entries
312 */
313 int lapic_get_maxlvt(void)
314 {
315 unsigned int v;
316
317 v = apic_read(APIC_LVR);
318 /*
319 * - we always have APIC integrated on 64bit mode
320 * - 82489DXs do not report # of LVT entries
321 */
322 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
323 }
324
325 /*
326 * Local APIC timer
327 */
328
329 /* Clock divisor */
330 #ifdef CONFG_X86_64
331 #define APIC_DIVISOR 1
332 #else
333 #define APIC_DIVISOR 16
334 #endif
335
336 /*
337 * This function sets up the local APIC timer, with a timeout of
338 * 'clocks' APIC bus clock. During calibration we actually call
339 * this function twice on the boot CPU, once with a bogus timeout
340 * value, second time for real. The other (noncalibrating) CPUs
341 * call this function only once, with the real, calibrated value.
342 *
343 * We do reads before writes even if unnecessary, to get around the
344 * P5 APIC double write bug.
345 */
346 static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
347 {
348 unsigned int lvtt_value, tmp_value;
349
350 lvtt_value = LOCAL_TIMER_VECTOR;
351 if (!oneshot)
352 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
353 if (!lapic_is_integrated())
354 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
355
356 if (!irqen)
357 lvtt_value |= APIC_LVT_MASKED;
358
359 apic_write(APIC_LVTT, lvtt_value);
360
361 /*
362 * Divide PICLK by 16
363 */
364 tmp_value = apic_read(APIC_TDCR);
365 apic_write(APIC_TDCR,
366 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
367 APIC_TDR_DIV_16);
368
369 if (!oneshot)
370 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
371 }
372
373 /*
374 * Setup extended LVT, AMD specific (K8, family 10h)
375 *
376 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
377 * MCE interrupts are supported. Thus MCE offset must be set to 0.
378 *
379 * If mask=1, the LVT entry does not generate interrupts while mask=0
380 * enables the vector. See also the BKDGs.
381 */
382
383 #define APIC_EILVT_LVTOFF_MCE 0
384 #define APIC_EILVT_LVTOFF_IBS 1
385
386 static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
387 {
388 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
389 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
390
391 apic_write(reg, v);
392 }
393
394 u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
395 {
396 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
397 return APIC_EILVT_LVTOFF_MCE;
398 }
399
400 u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
401 {
402 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
403 return APIC_EILVT_LVTOFF_IBS;
404 }
405 EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
406
407 /*
408 * Program the next event, relative to now
409 */
410 static int lapic_next_event(unsigned long delta,
411 struct clock_event_device *evt)
412 {
413 apic_write(APIC_TMICT, delta);
414 return 0;
415 }
416
417 /*
418 * Setup the lapic timer in periodic or oneshot mode
419 */
420 static void lapic_timer_setup(enum clock_event_mode mode,
421 struct clock_event_device *evt)
422 {
423 unsigned long flags;
424 unsigned int v;
425
426 /* Lapic used as dummy for broadcast ? */
427 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
428 return;
429
430 local_irq_save(flags);
431
432 switch (mode) {
433 case CLOCK_EVT_MODE_PERIODIC:
434 case CLOCK_EVT_MODE_ONESHOT:
435 __setup_APIC_LVTT(calibration_result,
436 mode != CLOCK_EVT_MODE_PERIODIC, 1);
437 break;
438 case CLOCK_EVT_MODE_UNUSED:
439 case CLOCK_EVT_MODE_SHUTDOWN:
440 v = apic_read(APIC_LVTT);
441 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
442 apic_write(APIC_LVTT, v);
443 break;
444 case CLOCK_EVT_MODE_RESUME:
445 /* Nothing to do here */
446 break;
447 }
448
449 local_irq_restore(flags);
450 }
451
452 /*
453 * Local APIC timer broadcast function
454 */
455 static void lapic_timer_broadcast(cpumask_t mask)
456 {
457 #ifdef CONFIG_SMP
458 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
459 #endif
460 }
461
462 /*
463 * Setup the local APIC timer for this CPU. Copy the initilized values
464 * of the boot CPU and register the clock event in the framework.
465 */
466 static void __cpuinit setup_APIC_timer(void)
467 {
468 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
469
470 memcpy(levt, &lapic_clockevent, sizeof(*levt));
471 levt->cpumask = cpumask_of_cpu(smp_processor_id());
472
473 clockevents_register_device(levt);
474 }
475
476 /*
477 * In this function we calibrate APIC bus clocks to the external
478 * timer. Unfortunately we cannot use jiffies and the timer irq
479 * to calibrate, since some later bootup code depends on getting
480 * the first irq? Ugh.
481 *
482 * We want to do the calibration only once since we
483 * want to have local timer irqs syncron. CPUs connected
484 * by the same APIC bus have the very same bus frequency.
485 * And we want to have irqs off anyways, no accidental
486 * APIC irq that way.
487 */
488
489 #define TICK_COUNT 100000000
490
491 static int __init calibrate_APIC_clock(void)
492 {
493 unsigned apic, apic_start;
494 unsigned long tsc, tsc_start;
495 int result;
496
497 local_irq_disable();
498
499 /*
500 * Put whatever arbitrary (but long enough) timeout
501 * value into the APIC clock, we just want to get the
502 * counter running for calibration.
503 *
504 * No interrupt enable !
505 */
506 __setup_APIC_LVTT(250000000, 0, 0);
507
508 apic_start = apic_read(APIC_TMCCT);
509 #ifdef CONFIG_X86_PM_TIMER
510 if (apic_calibrate_pmtmr && pmtmr_ioport) {
511 pmtimer_wait(5000); /* 5ms wait */
512 apic = apic_read(APIC_TMCCT);
513 result = (apic_start - apic) * 1000L / 5;
514 } else
515 #endif
516 {
517 rdtscll(tsc_start);
518
519 do {
520 apic = apic_read(APIC_TMCCT);
521 rdtscll(tsc);
522 } while ((tsc - tsc_start) < TICK_COUNT &&
523 (apic_start - apic) < TICK_COUNT);
524
525 result = (apic_start - apic) * 1000L * tsc_khz /
526 (tsc - tsc_start);
527 }
528
529 local_irq_enable();
530
531 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
532
533 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
534 result / 1000 / 1000, result / 1000 % 1000);
535
536 /* Calculate the scaled math multiplication factor */
537 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
538 lapic_clockevent.shift);
539 lapic_clockevent.max_delta_ns =
540 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
541 lapic_clockevent.min_delta_ns =
542 clockevent_delta2ns(0xF, &lapic_clockevent);
543
544 calibration_result = (result * APIC_DIVISOR) / HZ;
545
546 /*
547 * Do a sanity check on the APIC calibration result
548 */
549 if (calibration_result < (1000000 / HZ)) {
550 printk(KERN_WARNING
551 "APIC frequency too slow, disabling apic timer\n");
552 return -1;
553 }
554
555 return 0;
556 }
557
558 /*
559 * Setup the boot APIC
560 *
561 * Calibrate and verify the result.
562 */
563 void __init setup_boot_APIC_clock(void)
564 {
565 /*
566 * The local apic timer can be disabled via the kernel
567 * commandline or from the CPU detection code. Register the lapic
568 * timer as a dummy clock event source on SMP systems, so the
569 * broadcast mechanism is used. On UP systems simply ignore it.
570 */
571 if (disable_apic_timer) {
572 printk(KERN_INFO "Disabling APIC timer\n");
573 /* No broadcast on UP ! */
574 if (num_possible_cpus() > 1) {
575 lapic_clockevent.mult = 1;
576 setup_APIC_timer();
577 }
578 return;
579 }
580
581 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
582 "calibrating APIC timer ...\n");
583
584 if (calibrate_APIC_clock()) {
585 /* No broadcast on UP ! */
586 if (num_possible_cpus() > 1)
587 setup_APIC_timer();
588 return;
589 }
590
591 /*
592 * If nmi_watchdog is set to IO_APIC, we need the
593 * PIT/HPET going. Otherwise register lapic as a dummy
594 * device.
595 */
596 if (nmi_watchdog != NMI_IO_APIC)
597 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
598 else
599 printk(KERN_WARNING "APIC timer registered as dummy,"
600 " due to nmi_watchdog=%d!\n", nmi_watchdog);
601
602 /* Setup the lapic or request the broadcast */
603 setup_APIC_timer();
604 }
605
606 void __cpuinit setup_secondary_APIC_clock(void)
607 {
608 setup_APIC_timer();
609 }
610
611 /*
612 * The guts of the apic timer interrupt
613 */
614 static void local_apic_timer_interrupt(void)
615 {
616 int cpu = smp_processor_id();
617 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
618
619 /*
620 * Normally we should not be here till LAPIC has been initialized but
621 * in some cases like kdump, its possible that there is a pending LAPIC
622 * timer interrupt from previous kernel's context and is delivered in
623 * new kernel the moment interrupts are enabled.
624 *
625 * Interrupts are enabled early and LAPIC is setup much later, hence
626 * its possible that when we get here evt->event_handler is NULL.
627 * Check for event_handler being NULL and discard the interrupt as
628 * spurious.
629 */
630 if (!evt->event_handler) {
631 printk(KERN_WARNING
632 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
633 /* Switch it off */
634 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
635 return;
636 }
637
638 /*
639 * the NMI deadlock-detector uses this.
640 */
641 #ifdef CONFIG_X86_64
642 add_pda(apic_timer_irqs, 1);
643 #else
644 per_cpu(irq_stat, cpu).apic_timer_irqs++;
645 #endif
646
647 evt->event_handler(evt);
648 }
649
650 /*
651 * Local APIC timer interrupt. This is the most natural way for doing
652 * local interrupts, but local timer interrupts can be emulated by
653 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
654 *
655 * [ if a single-CPU system runs an SMP kernel then we call the local
656 * interrupt as well. Thus we cannot inline the local irq ... ]
657 */
658 void smp_apic_timer_interrupt(struct pt_regs *regs)
659 {
660 struct pt_regs *old_regs = set_irq_regs(regs);
661
662 /*
663 * NOTE! We'd better ACK the irq immediately,
664 * because timer handling can be slow.
665 */
666 ack_APIC_irq();
667 /*
668 * update_process_times() expects us to have done irq_enter().
669 * Besides, if we don't timer interrupts ignore the global
670 * interrupt lock, which is the WrongThing (tm) to do.
671 */
672 #ifdef CONFIG_X86_64
673 exit_idle();
674 #endif
675 irq_enter();
676 local_apic_timer_interrupt();
677 irq_exit();
678
679 set_irq_regs(old_regs);
680 }
681
682 int setup_profiling_timer(unsigned int multiplier)
683 {
684 return -EINVAL;
685 }
686
687 /*
688 * Local APIC start and shutdown
689 */
690
691 /**
692 * clear_local_APIC - shutdown the local APIC
693 *
694 * This is called, when a CPU is disabled and before rebooting, so the state of
695 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
696 * leftovers during boot.
697 */
698 void clear_local_APIC(void)
699 {
700 int maxlvt;
701 u32 v;
702
703 /* APIC hasn't been mapped yet */
704 if (!apic_phys)
705 return;
706
707 maxlvt = lapic_get_maxlvt();
708 /*
709 * Masking an LVT entry can trigger a local APIC error
710 * if the vector is zero. Mask LVTERR first to prevent this.
711 */
712 if (maxlvt >= 3) {
713 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
714 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
715 }
716 /*
717 * Careful: we have to set masks only first to deassert
718 * any level-triggered sources.
719 */
720 v = apic_read(APIC_LVTT);
721 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
722 v = apic_read(APIC_LVT0);
723 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
724 v = apic_read(APIC_LVT1);
725 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
726 if (maxlvt >= 4) {
727 v = apic_read(APIC_LVTPC);
728 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
729 }
730
731 /* lets not touch this if we didn't frob it */
732 #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
733 if (maxlvt >= 5) {
734 v = apic_read(APIC_LVTTHMR);
735 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
736 }
737 #endif
738 /*
739 * Clean APIC state for other OSs:
740 */
741 apic_write(APIC_LVTT, APIC_LVT_MASKED);
742 apic_write(APIC_LVT0, APIC_LVT_MASKED);
743 apic_write(APIC_LVT1, APIC_LVT_MASKED);
744 if (maxlvt >= 3)
745 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
746 if (maxlvt >= 4)
747 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
748
749 /* Integrated APIC (!82489DX) ? */
750 if (lapic_is_integrated()) {
751 if (maxlvt > 3)
752 /* Clear ESR due to Pentium errata 3AP and 11AP */
753 apic_write(APIC_ESR, 0);
754 apic_read(APIC_ESR);
755 }
756 }
757
758 /**
759 * disable_local_APIC - clear and disable the local APIC
760 */
761 void disable_local_APIC(void)
762 {
763 unsigned int value;
764
765 clear_local_APIC();
766
767 /*
768 * Disable APIC (implies clearing of registers
769 * for 82489DX!).
770 */
771 value = apic_read(APIC_SPIV);
772 value &= ~APIC_SPIV_APIC_ENABLED;
773 apic_write(APIC_SPIV, value);
774
775 #ifdef CONFIG_X86_32
776 /*
777 * When LAPIC was disabled by the BIOS and enabled by the kernel,
778 * restore the disabled state.
779 */
780 if (enabled_via_apicbase) {
781 unsigned int l, h;
782
783 rdmsr(MSR_IA32_APICBASE, l, h);
784 l &= ~MSR_IA32_APICBASE_ENABLE;
785 wrmsr(MSR_IA32_APICBASE, l, h);
786 }
787 #endif
788 }
789
790 /*
791 * If Linux enabled the LAPIC against the BIOS default disable it down before
792 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
793 * not power-off. Additionally clear all LVT entries before disable_local_APIC
794 * for the case where Linux didn't enable the LAPIC.
795 */
796 void lapic_shutdown(void)
797 {
798 unsigned long flags;
799
800 if (!cpu_has_apic)
801 return;
802
803 local_irq_save(flags);
804
805 #ifdef CONFIG_X86_32
806 if (!enabled_via_apicbase)
807 clear_local_APIC();
808 else
809 #endif
810 disable_local_APIC();
811
812
813 local_irq_restore(flags);
814 }
815
816 /*
817 * This is to verify that we're looking at a real local APIC.
818 * Check these against your board if the CPUs aren't getting
819 * started for no apparent reason.
820 */
821 int __init verify_local_APIC(void)
822 {
823 unsigned int reg0, reg1;
824
825 /*
826 * The version register is read-only in a real APIC.
827 */
828 reg0 = apic_read(APIC_LVR);
829 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
830 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
831 reg1 = apic_read(APIC_LVR);
832 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
833
834 /*
835 * The two version reads above should print the same
836 * numbers. If the second one is different, then we
837 * poke at a non-APIC.
838 */
839 if (reg1 != reg0)
840 return 0;
841
842 /*
843 * Check if the version looks reasonably.
844 */
845 reg1 = GET_APIC_VERSION(reg0);
846 if (reg1 == 0x00 || reg1 == 0xff)
847 return 0;
848 reg1 = lapic_get_maxlvt();
849 if (reg1 < 0x02 || reg1 == 0xff)
850 return 0;
851
852 /*
853 * The ID register is read/write in a real APIC.
854 */
855 reg0 = apic_read(APIC_ID);
856 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
857 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
858 reg1 = apic_read(APIC_ID);
859 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
860 apic_write(APIC_ID, reg0);
861 if (reg1 != (reg0 ^ APIC_ID_MASK))
862 return 0;
863
864 /*
865 * The next two are just to see if we have sane values.
866 * They're only really relevant if we're in Virtual Wire
867 * compatibility mode, but most boxes are anymore.
868 */
869 reg0 = apic_read(APIC_LVT0);
870 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
871 reg1 = apic_read(APIC_LVT1);
872 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
873
874 return 1;
875 }
876
877 /**
878 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
879 */
880 void __init sync_Arb_IDs(void)
881 {
882 /*
883 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
884 * needed on AMD.
885 */
886 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
887 return;
888
889 /*
890 * Wait for idle.
891 */
892 apic_wait_icr_idle();
893
894 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
895 apic_write(APIC_ICR, APIC_DEST_ALLINC |
896 APIC_INT_LEVELTRIG | APIC_DM_INIT);
897 }
898
899 /*
900 * An initial setup of the virtual wire mode.
901 */
902 void __init init_bsp_APIC(void)
903 {
904 unsigned int value;
905
906 /*
907 * Don't do the setup now if we have a SMP BIOS as the
908 * through-I/O-APIC virtual wire mode might be active.
909 */
910 if (smp_found_config || !cpu_has_apic)
911 return;
912
913 /*
914 * Do not trust the local APIC being empty at bootup.
915 */
916 clear_local_APIC();
917
918 /*
919 * Enable APIC.
920 */
921 value = apic_read(APIC_SPIV);
922 value &= ~APIC_VECTOR_MASK;
923 value |= APIC_SPIV_APIC_ENABLED;
924
925 #ifdef CONFIG_X86_32
926 /* This bit is reserved on P4/Xeon and should be cleared */
927 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
928 (boot_cpu_data.x86 == 15))
929 value &= ~APIC_SPIV_FOCUS_DISABLED;
930 else
931 #endif
932 value |= APIC_SPIV_FOCUS_DISABLED;
933 value |= SPURIOUS_APIC_VECTOR;
934 apic_write(APIC_SPIV, value);
935
936 /*
937 * Set up the virtual wire mode.
938 */
939 apic_write(APIC_LVT0, APIC_DM_EXTINT);
940 value = APIC_DM_NMI;
941 if (!lapic_is_integrated()) /* 82489DX */
942 value |= APIC_LVT_LEVEL_TRIGGER;
943 apic_write(APIC_LVT1, value);
944 }
945
946 static void __cpuinit lapic_setup_esr(void)
947 {
948 unsigned long oldvalue, value, maxlvt;
949 if (lapic_is_integrated() && !esr_disable) {
950 if (esr_disable) {
951 /*
952 * Something untraceable is creating bad interrupts on
953 * secondary quads ... for the moment, just leave the
954 * ESR disabled - we can't do anything useful with the
955 * errors anyway - mbligh
956 */
957 printk(KERN_INFO "Leaving ESR disabled.\n");
958 return;
959 }
960 /* !82489DX */
961 maxlvt = lapic_get_maxlvt();
962 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
963 apic_write(APIC_ESR, 0);
964 oldvalue = apic_read(APIC_ESR);
965
966 /* enables sending errors */
967 value = ERROR_APIC_VECTOR;
968 apic_write(APIC_LVTERR, value);
969 /*
970 * spec says clear errors after enabling vector.
971 */
972 if (maxlvt > 3)
973 apic_write(APIC_ESR, 0);
974 value = apic_read(APIC_ESR);
975 if (value != oldvalue)
976 apic_printk(APIC_VERBOSE, "ESR value before enabling "
977 "vector: 0x%08lx after: 0x%08lx\n",
978 oldvalue, value);
979 } else {
980 printk(KERN_INFO "No ESR for 82489DX.\n");
981 }
982 }
983
984
985 /**
986 * setup_local_APIC - setup the local APIC
987 */
988 void __cpuinit setup_local_APIC(void)
989 {
990 unsigned int value;
991 int i, j;
992
993 #ifdef CONFIG_X86_32
994 /* Pound the ESR really hard over the head with a big hammer - mbligh */
995 if (esr_disable) {
996 apic_write(APIC_ESR, 0);
997 apic_write(APIC_ESR, 0);
998 apic_write(APIC_ESR, 0);
999 apic_write(APIC_ESR, 0);
1000 }
1001 #endif
1002
1003 preempt_disable();
1004
1005 /*
1006 * Double-check whether this APIC is really registered.
1007 * This is meaningless in clustered apic mode, so we skip it.
1008 */
1009 if (!apic_id_registered())
1010 BUG();
1011
1012 /*
1013 * Intel recommends to set DFR, LDR and TPR before enabling
1014 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1015 * document number 292116). So here it goes...
1016 */
1017 init_apic_ldr();
1018
1019 /*
1020 * Set Task Priority to 'accept all'. We never change this
1021 * later on.
1022 */
1023 value = apic_read(APIC_TASKPRI);
1024 value &= ~APIC_TPRI_MASK;
1025 apic_write(APIC_TASKPRI, value);
1026
1027 /*
1028 * After a crash, we no longer service the interrupts and a pending
1029 * interrupt from previous kernel might still have ISR bit set.
1030 *
1031 * Most probably by now CPU has serviced that pending interrupt and
1032 * it might not have done the ack_APIC_irq() because it thought,
1033 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1034 * does not clear the ISR bit and cpu thinks it has already serivced
1035 * the interrupt. Hence a vector might get locked. It was noticed
1036 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1037 */
1038 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1039 value = apic_read(APIC_ISR + i*0x10);
1040 for (j = 31; j >= 0; j--) {
1041 if (value & (1<<j))
1042 ack_APIC_irq();
1043 }
1044 }
1045
1046 /*
1047 * Now that we are all set up, enable the APIC
1048 */
1049 value = apic_read(APIC_SPIV);
1050 value &= ~APIC_VECTOR_MASK;
1051 /*
1052 * Enable APIC
1053 */
1054 value |= APIC_SPIV_APIC_ENABLED;
1055
1056 #ifdef CONFIG_X86_32
1057 /*
1058 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1059 * certain networking cards. If high frequency interrupts are
1060 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1061 * entry is masked/unmasked at a high rate as well then sooner or
1062 * later IOAPIC line gets 'stuck', no more interrupts are received
1063 * from the device. If focus CPU is disabled then the hang goes
1064 * away, oh well :-(
1065 *
1066 * [ This bug can be reproduced easily with a level-triggered
1067 * PCI Ne2000 networking cards and PII/PIII processors, dual
1068 * BX chipset. ]
1069 */
1070 /*
1071 * Actually disabling the focus CPU check just makes the hang less
1072 * frequent as it makes the interrupt distributon model be more
1073 * like LRU than MRU (the short-term load is more even across CPUs).
1074 * See also the comment in end_level_ioapic_irq(). --macro
1075 */
1076
1077 /*
1078 * - enable focus processor (bit==0)
1079 * - 64bit mode always use processor focus
1080 * so no need to set it
1081 */
1082 value &= ~APIC_SPIV_FOCUS_DISABLED;
1083 #endif
1084
1085 /*
1086 * Set spurious IRQ vector
1087 */
1088 value |= SPURIOUS_APIC_VECTOR;
1089 apic_write(APIC_SPIV, value);
1090
1091 /*
1092 * Set up LVT0, LVT1:
1093 *
1094 * set up through-local-APIC on the BP's LINT0. This is not
1095 * strictly necessary in pure symmetric-IO mode, but sometimes
1096 * we delegate interrupts to the 8259A.
1097 */
1098 /*
1099 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1100 */
1101 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1102 if (!smp_processor_id() && (pic_mode || !value)) {
1103 value = APIC_DM_EXTINT;
1104 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
1105 smp_processor_id());
1106 } else {
1107 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1108 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1109 smp_processor_id());
1110 }
1111 apic_write(APIC_LVT0, value);
1112
1113 /*
1114 * only the BP should see the LINT1 NMI signal, obviously.
1115 */
1116 if (!smp_processor_id())
1117 value = APIC_DM_NMI;
1118 else
1119 value = APIC_DM_NMI | APIC_LVT_MASKED;
1120 if (!lapic_is_integrated()) /* 82489DX */
1121 value |= APIC_LVT_LEVEL_TRIGGER;
1122 apic_write(APIC_LVT1, value);
1123
1124 preempt_enable();
1125 }
1126
1127 void __cpuinit end_local_APIC_setup(void)
1128 {
1129 lapic_setup_esr();
1130
1131 #ifdef CONFIG_X86_32
1132 {
1133 unsigned int value;
1134 /* Disable the local apic timer */
1135 value = apic_read(APIC_LVTT);
1136 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1137 apic_write(APIC_LVTT, value);
1138 }
1139 #endif
1140
1141 setup_apic_nmi_watchdog(NULL);
1142 apic_pm_activate();
1143 }
1144
1145 #ifdef HAVE_X2APIC
1146 void check_x2apic(void)
1147 {
1148 int msr, msr2;
1149
1150 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1151
1152 if (msr & X2APIC_ENABLE) {
1153 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
1154 x2apic_preenabled = x2apic = 1;
1155 apic_ops = &x2apic_ops;
1156 }
1157 }
1158
1159 void enable_x2apic(void)
1160 {
1161 int msr, msr2;
1162
1163 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1164 if (!(msr & X2APIC_ENABLE)) {
1165 printk("Enabling x2apic\n");
1166 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1167 }
1168 }
1169
1170 void enable_IR_x2apic(void)
1171 {
1172 #ifdef CONFIG_INTR_REMAP
1173 int ret;
1174 unsigned long flags;
1175
1176 if (!cpu_has_x2apic)
1177 return;
1178
1179 if (!x2apic_preenabled && disable_x2apic) {
1180 printk(KERN_INFO
1181 "Skipped enabling x2apic and Interrupt-remapping "
1182 "because of nox2apic\n");
1183 return;
1184 }
1185
1186 if (x2apic_preenabled && disable_x2apic)
1187 panic("Bios already enabled x2apic, can't enforce nox2apic");
1188
1189 if (!x2apic_preenabled && skip_ioapic_setup) {
1190 printk(KERN_INFO
1191 "Skipped enabling x2apic and Interrupt-remapping "
1192 "because of skipping io-apic setup\n");
1193 return;
1194 }
1195
1196 ret = dmar_table_init();
1197 if (ret) {
1198 printk(KERN_INFO
1199 "dmar_table_init() failed with %d:\n", ret);
1200
1201 if (x2apic_preenabled)
1202 panic("x2apic enabled by bios. But IR enabling failed");
1203 else
1204 printk(KERN_INFO
1205 "Not enabling x2apic,Intr-remapping\n");
1206 return;
1207 }
1208
1209 local_irq_save(flags);
1210 mask_8259A();
1211 save_mask_IO_APIC_setup();
1212
1213 ret = enable_intr_remapping(1);
1214
1215 if (ret && x2apic_preenabled) {
1216 local_irq_restore(flags);
1217 panic("x2apic enabled by bios. But IR enabling failed");
1218 }
1219
1220 if (ret)
1221 goto end;
1222
1223 if (!x2apic) {
1224 x2apic = 1;
1225 apic_ops = &x2apic_ops;
1226 enable_x2apic();
1227 }
1228 end:
1229 if (ret)
1230 /*
1231 * IR enabling failed
1232 */
1233 restore_IO_APIC_setup();
1234 else
1235 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1236
1237 unmask_8259A();
1238 local_irq_restore(flags);
1239
1240 if (!ret) {
1241 if (!x2apic_preenabled)
1242 printk(KERN_INFO
1243 "Enabled x2apic and interrupt-remapping\n");
1244 else
1245 printk(KERN_INFO
1246 "Enabled Interrupt-remapping\n");
1247 } else
1248 printk(KERN_ERR
1249 "Failed to enable Interrupt-remapping and x2apic\n");
1250 #else
1251 if (!cpu_has_x2apic)
1252 return;
1253
1254 if (x2apic_preenabled)
1255 panic("x2apic enabled prior OS handover,"
1256 " enable CONFIG_INTR_REMAP");
1257
1258 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1259 " and x2apic\n");
1260 #endif
1261
1262 return;
1263 }
1264 #endif /* HAVE_X2APIC */
1265
1266 #ifdef CONFIG_X86_64
1267 /*
1268 * Detect and enable local APICs on non-SMP boards.
1269 * Original code written by Keir Fraser.
1270 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1271 * not correctly set up (usually the APIC timer won't work etc.)
1272 */
1273 static int __init detect_init_APIC(void)
1274 {
1275 if (!cpu_has_apic) {
1276 printk(KERN_INFO "No local APIC present\n");
1277 return -1;
1278 }
1279
1280 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1281 boot_cpu_physical_apicid = 0;
1282 return 0;
1283 }
1284 #else
1285 /*
1286 * Detect and initialize APIC
1287 */
1288 static int __init detect_init_APIC(void)
1289 {
1290 u32 h, l, features;
1291
1292 /* Disabled by kernel option? */
1293 if (disable_apic)
1294 return -1;
1295
1296 switch (boot_cpu_data.x86_vendor) {
1297 case X86_VENDOR_AMD:
1298 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1299 (boot_cpu_data.x86 == 15))
1300 break;
1301 goto no_apic;
1302 case X86_VENDOR_INTEL:
1303 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1304 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1305 break;
1306 goto no_apic;
1307 default:
1308 goto no_apic;
1309 }
1310
1311 if (!cpu_has_apic) {
1312 /*
1313 * Over-ride BIOS and try to enable the local APIC only if
1314 * "lapic" specified.
1315 */
1316 if (!force_enable_local_apic) {
1317 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1318 "you can enable it with \"lapic\"\n");
1319 return -1;
1320 }
1321 /*
1322 * Some BIOSes disable the local APIC in the APIC_BASE
1323 * MSR. This can only be done in software for Intel P6 or later
1324 * and AMD K7 (Model > 1) or later.
1325 */
1326 rdmsr(MSR_IA32_APICBASE, l, h);
1327 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1328 printk(KERN_INFO
1329 "Local APIC disabled by BIOS -- reenabling.\n");
1330 l &= ~MSR_IA32_APICBASE_BASE;
1331 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1332 wrmsr(MSR_IA32_APICBASE, l, h);
1333 enabled_via_apicbase = 1;
1334 }
1335 }
1336 /*
1337 * The APIC feature bit should now be enabled
1338 * in `cpuid'
1339 */
1340 features = cpuid_edx(1);
1341 if (!(features & (1 << X86_FEATURE_APIC))) {
1342 printk(KERN_WARNING "Could not enable APIC!\n");
1343 return -1;
1344 }
1345 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1346 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1347
1348 /* The BIOS may have set up the APIC at some other address */
1349 rdmsr(MSR_IA32_APICBASE, l, h);
1350 if (l & MSR_IA32_APICBASE_ENABLE)
1351 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1352
1353 printk(KERN_INFO "Found and enabled local APIC!\n");
1354
1355 apic_pm_activate();
1356
1357 return 0;
1358
1359 no_apic:
1360 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1361 return -1;
1362 }
1363 #endif
1364
1365 #ifdef CONFIG_X86_64
1366 void __init early_init_lapic_mapping(void)
1367 {
1368 unsigned long phys_addr;
1369
1370 /*
1371 * If no local APIC can be found then go out
1372 * : it means there is no mpatable and MADT
1373 */
1374 if (!smp_found_config)
1375 return;
1376
1377 phys_addr = mp_lapic_addr;
1378
1379 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
1380 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1381 APIC_BASE, phys_addr);
1382
1383 /*
1384 * Fetch the APIC ID of the BSP in case we have a
1385 * default configuration (or the MP table is broken).
1386 */
1387 boot_cpu_physical_apicid = read_apic_id();
1388 }
1389 #endif
1390
1391 /**
1392 * init_apic_mappings - initialize APIC mappings
1393 */
1394 void __init init_apic_mappings(void)
1395 {
1396 #ifdef HAVE_X2APIC
1397 if (x2apic) {
1398 boot_cpu_physical_apicid = read_apic_id();
1399 return;
1400 }
1401 #endif
1402
1403 /*
1404 * If no local APIC can be found then set up a fake all
1405 * zeroes page to simulate the local APIC and another
1406 * one for the IO-APIC.
1407 */
1408 if (!smp_found_config && detect_init_APIC()) {
1409 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1410 apic_phys = __pa(apic_phys);
1411 } else
1412 apic_phys = mp_lapic_addr;
1413
1414 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1415 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1416 APIC_BASE, apic_phys);
1417
1418 /*
1419 * Fetch the APIC ID of the BSP in case we have a
1420 * default configuration (or the MP table is broken).
1421 */
1422 if (boot_cpu_physical_apicid == -1U)
1423 boot_cpu_physical_apicid = read_apic_id();
1424 }
1425
1426 /*
1427 * This initializes the IO-APIC and APIC hardware if this is
1428 * a UP kernel.
1429 */
1430 int apic_version[MAX_APICS];
1431
1432 int __init APIC_init_uniprocessor(void)
1433 {
1434 #ifdef CONFIG_X86_64
1435 if (disable_apic) {
1436 printk(KERN_INFO "Apic disabled\n");
1437 return -1;
1438 }
1439 if (!cpu_has_apic) {
1440 disable_apic = 1;
1441 printk(KERN_INFO "Apic disabled by BIOS\n");
1442 return -1;
1443 }
1444 #else
1445 if (!smp_found_config && !cpu_has_apic)
1446 return -1;
1447
1448 /*
1449 * Complain if the BIOS pretends there is one.
1450 */
1451 if (!cpu_has_apic &&
1452 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
1453 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1454 boot_cpu_physical_apicid);
1455 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1456 return -1;
1457 }
1458 #endif
1459
1460 #ifdef HAVE_X2APIC
1461 enable_IR_x2apic();
1462 #endif
1463 #ifdef CONFIG_X86_64
1464 setup_apic_routing();
1465 #endif
1466
1467 verify_local_APIC();
1468 connect_bsp_APIC();
1469
1470 #ifdef CONFIG_X86_64
1471 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
1472 #else
1473 /*
1474 * Hack: In case of kdump, after a crash, kernel might be booting
1475 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1476 * might be zero if read from MP tables. Get it from LAPIC.
1477 */
1478 # ifdef CONFIG_CRASH_DUMP
1479 boot_cpu_physical_apicid = read_apic_id();
1480 # endif
1481 #endif
1482 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
1483 setup_local_APIC();
1484
1485 #ifdef CONFIG_X86_64
1486 /*
1487 * Now enable IO-APICs, actually call clear_IO_APIC
1488 * We need clear_IO_APIC before enabling vector on BP
1489 */
1490 if (!skip_ioapic_setup && nr_ioapics)
1491 enable_IO_APIC();
1492 #endif
1493
1494 #ifdef CONFIG_X86_IO_APIC
1495 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1496 #endif
1497 localise_nmi_watchdog();
1498 end_local_APIC_setup();
1499
1500 #ifdef CONFIG_X86_IO_APIC
1501 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1502 setup_IO_APIC();
1503 # ifdef CONFIG_X86_64
1504 else
1505 nr_ioapics = 0;
1506 # endif
1507 #endif
1508
1509 #ifdef CONFIG_X86_64
1510 setup_boot_APIC_clock();
1511 check_nmi_watchdog();
1512 #else
1513 setup_boot_clock();
1514 #endif
1515
1516 return 0;
1517 }
1518
1519 /*
1520 * Local APIC interrupts
1521 */
1522
1523 /*
1524 * This interrupt should _never_ happen with our APIC/SMP architecture
1525 */
1526 asmlinkage void smp_spurious_interrupt(void)
1527 {
1528 unsigned int v;
1529 exit_idle();
1530 irq_enter();
1531 /*
1532 * Check if this really is a spurious interrupt and ACK it
1533 * if it is a vectored one. Just in case...
1534 * Spurious interrupts should not be ACKed.
1535 */
1536 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1537 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1538 ack_APIC_irq();
1539
1540 add_pda(irq_spurious_count, 1);
1541 irq_exit();
1542 }
1543
1544 /*
1545 * This interrupt should never happen with our APIC/SMP architecture
1546 */
1547 asmlinkage void smp_error_interrupt(void)
1548 {
1549 unsigned int v, v1;
1550
1551 exit_idle();
1552 irq_enter();
1553 /* First tickle the hardware, only then report what went on. -- REW */
1554 v = apic_read(APIC_ESR);
1555 apic_write(APIC_ESR, 0);
1556 v1 = apic_read(APIC_ESR);
1557 ack_APIC_irq();
1558 atomic_inc(&irq_err_count);
1559
1560 /* Here is what the APIC error bits mean:
1561 0: Send CS error
1562 1: Receive CS error
1563 2: Send accept error
1564 3: Receive accept error
1565 4: Reserved
1566 5: Send illegal vector
1567 6: Received illegal vector
1568 7: Illegal register address
1569 */
1570 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1571 smp_processor_id(), v , v1);
1572 irq_exit();
1573 }
1574
1575 /**
1576 * connect_bsp_APIC - attach the APIC to the interrupt system
1577 */
1578 void __init connect_bsp_APIC(void)
1579 {
1580 #ifdef CONFIG_X86_32
1581 if (pic_mode) {
1582 /*
1583 * Do not trust the local APIC being empty at bootup.
1584 */
1585 clear_local_APIC();
1586 /*
1587 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1588 * local APIC to INT and NMI lines.
1589 */
1590 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1591 "enabling APIC mode.\n");
1592 outb(0x70, 0x22);
1593 outb(0x01, 0x23);
1594 }
1595 #endif
1596 enable_apic_mode();
1597 }
1598
1599 /**
1600 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1601 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1602 *
1603 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1604 * APIC is disabled.
1605 */
1606 void disconnect_bsp_APIC(int virt_wire_setup)
1607 {
1608 unsigned int value;
1609
1610 #ifdef CONFIG_X86_32
1611 if (pic_mode) {
1612 /*
1613 * Put the board back into PIC mode (has an effect only on
1614 * certain older boards). Note that APIC interrupts, including
1615 * IPIs, won't work beyond this point! The only exception are
1616 * INIT IPIs.
1617 */
1618 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1619 "entering PIC mode.\n");
1620 outb(0x70, 0x22);
1621 outb(0x00, 0x23);
1622 return;
1623 }
1624 #endif
1625
1626 /* Go back to Virtual Wire compatibility mode */
1627
1628 /* For the spurious interrupt use vector F, and enable it */
1629 value = apic_read(APIC_SPIV);
1630 value &= ~APIC_VECTOR_MASK;
1631 value |= APIC_SPIV_APIC_ENABLED;
1632 value |= 0xf;
1633 apic_write(APIC_SPIV, value);
1634
1635 if (!virt_wire_setup) {
1636 /*
1637 * For LVT0 make it edge triggered, active high,
1638 * external and enabled
1639 */
1640 value = apic_read(APIC_LVT0);
1641 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1642 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1643 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1644 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1645 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1646 apic_write(APIC_LVT0, value);
1647 } else {
1648 /* Disable LVT0 */
1649 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1650 }
1651
1652 /*
1653 * For LVT1 make it edge triggered, active high,
1654 * nmi and enabled
1655 */
1656 value = apic_read(APIC_LVT1);
1657 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1658 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1659 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1660 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1661 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1662 apic_write(APIC_LVT1, value);
1663 }
1664
1665 void __cpuinit generic_processor_info(int apicid, int version)
1666 {
1667 int cpu;
1668 cpumask_t tmp_map;
1669
1670 /*
1671 * Validate version
1672 */
1673 if (version == 0x0) {
1674 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1675 "fixing up to 0x10. (tell your hw vendor)\n",
1676 version);
1677 version = 0x10;
1678 }
1679 apic_version[apicid] = version;
1680
1681 if (num_processors >= NR_CPUS) {
1682 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1683 " Processor ignored.\n", NR_CPUS);
1684 return;
1685 }
1686
1687 num_processors++;
1688 cpus_complement(tmp_map, cpu_present_map);
1689 cpu = first_cpu(tmp_map);
1690
1691 physid_set(apicid, phys_cpu_present_map);
1692 if (apicid == boot_cpu_physical_apicid) {
1693 /*
1694 * x86_bios_cpu_apicid is required to have processors listed
1695 * in same order as logical cpu numbers. Hence the first
1696 * entry is BSP, and so on.
1697 */
1698 cpu = 0;
1699 }
1700 if (apicid > max_physical_apicid)
1701 max_physical_apicid = apicid;
1702
1703 #ifdef CONFIG_X86_32
1704 /*
1705 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1706 * but we need to work other dependencies like SMP_SUSPEND etc
1707 * before this can be done without some confusion.
1708 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1709 * - Ashok Raj <ashok.raj@intel.com>
1710 */
1711 if (max_physical_apicid >= 8) {
1712 switch (boot_cpu_data.x86_vendor) {
1713 case X86_VENDOR_INTEL:
1714 if (!APIC_XAPIC(version)) {
1715 def_to_bigsmp = 0;
1716 break;
1717 }
1718 /* If P4 and above fall through */
1719 case X86_VENDOR_AMD:
1720 def_to_bigsmp = 1;
1721 }
1722 }
1723 #endif
1724
1725 #if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
1726 /* are we being called early in kernel startup? */
1727 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1728 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1729 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
1730
1731 cpu_to_apicid[cpu] = apicid;
1732 bios_cpu_apicid[cpu] = apicid;
1733 } else {
1734 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1735 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1736 }
1737 #endif
1738
1739 cpu_set(cpu, cpu_possible_map);
1740 cpu_set(cpu, cpu_present_map);
1741 }
1742
1743 #ifdef CONFIG_X86_64
1744 int hard_smp_processor_id(void)
1745 {
1746 return read_apic_id();
1747 }
1748 #endif
1749
1750 /*
1751 * Power management
1752 */
1753 #ifdef CONFIG_PM
1754
1755 static struct {
1756 /*
1757 * 'active' is true if the local APIC was enabled by us and
1758 * not the BIOS; this signifies that we are also responsible
1759 * for disabling it before entering apm/acpi suspend
1760 */
1761 int active;
1762 /* r/w apic fields */
1763 unsigned int apic_id;
1764 unsigned int apic_taskpri;
1765 unsigned int apic_ldr;
1766 unsigned int apic_dfr;
1767 unsigned int apic_spiv;
1768 unsigned int apic_lvtt;
1769 unsigned int apic_lvtpc;
1770 unsigned int apic_lvt0;
1771 unsigned int apic_lvt1;
1772 unsigned int apic_lvterr;
1773 unsigned int apic_tmict;
1774 unsigned int apic_tdcr;
1775 unsigned int apic_thmr;
1776 } apic_pm_state;
1777
1778 static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1779 {
1780 unsigned long flags;
1781 int maxlvt;
1782
1783 if (!apic_pm_state.active)
1784 return 0;
1785
1786 maxlvt = lapic_get_maxlvt();
1787
1788 apic_pm_state.apic_id = apic_read(APIC_ID);
1789 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1790 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1791 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1792 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1793 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1794 if (maxlvt >= 4)
1795 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1796 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1797 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1798 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1799 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1800 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1801 #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
1802 if (maxlvt >= 5)
1803 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1804 #endif
1805
1806 local_irq_save(flags);
1807 disable_local_APIC();
1808 local_irq_restore(flags);
1809 return 0;
1810 }
1811
1812 static int lapic_resume(struct sys_device *dev)
1813 {
1814 unsigned int l, h;
1815 unsigned long flags;
1816 int maxlvt;
1817
1818 if (!apic_pm_state.active)
1819 return 0;
1820
1821 maxlvt = lapic_get_maxlvt();
1822
1823 local_irq_save(flags);
1824
1825 #ifdef HAVE_X2APIC
1826 if (x2apic)
1827 enable_x2apic();
1828 else
1829 #endif
1830 {
1831 /*
1832 * Make sure the APICBASE points to the right address
1833 *
1834 * FIXME! This will be wrong if we ever support suspend on
1835 * SMP! We'll need to do this as part of the CPU restore!
1836 */
1837 rdmsr(MSR_IA32_APICBASE, l, h);
1838 l &= ~MSR_IA32_APICBASE_BASE;
1839 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1840 wrmsr(MSR_IA32_APICBASE, l, h);
1841 }
1842
1843 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1844 apic_write(APIC_ID, apic_pm_state.apic_id);
1845 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1846 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1847 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1848 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1849 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1850 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1851 #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
1852 if (maxlvt >= 5)
1853 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1854 #endif
1855 if (maxlvt >= 4)
1856 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1857 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1858 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1859 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1860 apic_write(APIC_ESR, 0);
1861 apic_read(APIC_ESR);
1862 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1863 apic_write(APIC_ESR, 0);
1864 apic_read(APIC_ESR);
1865
1866 local_irq_restore(flags);
1867
1868 return 0;
1869 }
1870
1871 /*
1872 * This device has no shutdown method - fully functioning local APICs
1873 * are needed on every CPU up until machine_halt/restart/poweroff.
1874 */
1875
1876 static struct sysdev_class lapic_sysclass = {
1877 .name = "lapic",
1878 .resume = lapic_resume,
1879 .suspend = lapic_suspend,
1880 };
1881
1882 static struct sys_device device_lapic = {
1883 .id = 0,
1884 .cls = &lapic_sysclass,
1885 };
1886
1887 static void __cpuinit apic_pm_activate(void)
1888 {
1889 apic_pm_state.active = 1;
1890 }
1891
1892 static int __init init_lapic_sysfs(void)
1893 {
1894 int error;
1895
1896 if (!cpu_has_apic)
1897 return 0;
1898 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1899
1900 error = sysdev_class_register(&lapic_sysclass);
1901 if (!error)
1902 error = sysdev_register(&device_lapic);
1903 return error;
1904 }
1905 device_initcall(init_lapic_sysfs);
1906
1907 #else /* CONFIG_PM */
1908
1909 static void apic_pm_activate(void) { }
1910
1911 #endif /* CONFIG_PM */
1912
1913 #ifdef CONFIG_X86_64
1914 /*
1915 * apic_is_clustered_box() -- Check if we can expect good TSC
1916 *
1917 * Thus far, the major user of this is IBM's Summit2 series:
1918 *
1919 * Clustered boxes may have unsynced TSC problems if they are
1920 * multi-chassis. Use available data to take a good guess.
1921 * If in doubt, go HPET.
1922 */
1923 __cpuinit int apic_is_clustered_box(void)
1924 {
1925 int i, clusters, zeros;
1926 unsigned id;
1927 u16 *bios_cpu_apicid;
1928 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1929
1930 /*
1931 * there is not this kind of box with AMD CPU yet.
1932 * Some AMD box with quadcore cpu and 8 sockets apicid
1933 * will be [4, 0x23] or [8, 0x27] could be thought to
1934 * vsmp box still need checking...
1935 */
1936 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
1937 return 0;
1938
1939 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
1940 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
1941
1942 for (i = 0; i < NR_CPUS; i++) {
1943 /* are we being called early in kernel startup? */
1944 if (bios_cpu_apicid) {
1945 id = bios_cpu_apicid[i];
1946 }
1947 else if (i < nr_cpu_ids) {
1948 if (cpu_present(i))
1949 id = per_cpu(x86_bios_cpu_apicid, i);
1950 else
1951 continue;
1952 }
1953 else
1954 break;
1955
1956 if (id != BAD_APICID)
1957 __set_bit(APIC_CLUSTERID(id), clustermap);
1958 }
1959
1960 /* Problem: Partially populated chassis may not have CPUs in some of
1961 * the APIC clusters they have been allocated. Only present CPUs have
1962 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1963 * Since clusters are allocated sequentially, count zeros only if
1964 * they are bounded by ones.
1965 */
1966 clusters = 0;
1967 zeros = 0;
1968 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1969 if (test_bit(i, clustermap)) {
1970 clusters += 1 + zeros;
1971 zeros = 0;
1972 } else
1973 ++zeros;
1974 }
1975
1976 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1977 * not guaranteed to be synced between boards
1978 */
1979 if (is_vsmp_box() && clusters > 1)
1980 return 1;
1981
1982 /*
1983 * If clusters > 2, then should be multi-chassis.
1984 * May have to revisit this when multi-core + hyperthreaded CPUs come
1985 * out, but AFAIK this will work even for them.
1986 */
1987 return (clusters > 2);
1988 }
1989 #endif
1990
1991 /*
1992 * APIC command line parameters
1993 */
1994 static int __init setup_disableapic(char *arg)
1995 {
1996 disable_apic = 1;
1997 setup_clear_cpu_cap(X86_FEATURE_APIC);
1998 return 0;
1999 }
2000 early_param("disableapic", setup_disableapic);
2001
2002 /* same as disableapic, for compatibility */
2003 static int __init setup_nolapic(char *arg)
2004 {
2005 return setup_disableapic(arg);
2006 }
2007 early_param("nolapic", setup_nolapic);
2008
2009 static int __init parse_lapic_timer_c2_ok(char *arg)
2010 {
2011 local_apic_timer_c2_ok = 1;
2012 return 0;
2013 }
2014 early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2015
2016 static int __init parse_disable_apic_timer(char *arg)
2017 {
2018 disable_apic_timer = 1;
2019 return 0;
2020 }
2021 early_param("noapictimer", parse_disable_apic_timer);
2022
2023 static int __init parse_nolapic_timer(char *arg)
2024 {
2025 disable_apic_timer = 1;
2026 return 0;
2027 }
2028 early_param("nolapic_timer", parse_nolapic_timer);
2029
2030 static int __init apic_set_verbosity(char *arg)
2031 {
2032 if (!arg) {
2033 #ifdef CONFIG_X86_64
2034 skip_ioapic_setup = 0;
2035 return 0;
2036 #endif
2037 return -EINVAL;
2038 }
2039
2040 if (strcmp("debug", arg) == 0)
2041 apic_verbosity = APIC_DEBUG;
2042 else if (strcmp("verbose", arg) == 0)
2043 apic_verbosity = APIC_VERBOSE;
2044 else {
2045 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
2046 " use apic=verbose or apic=debug\n", arg);
2047 return -EINVAL;
2048 }
2049
2050 return 0;
2051 }
2052 early_param("apic", apic_set_verbosity);
2053
2054 static int __init lapic_insert_resource(void)
2055 {
2056 if (!apic_phys)
2057 return -1;
2058
2059 /* Put local APIC into the resource map. */
2060 lapic_resource.start = apic_phys;
2061 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2062 insert_resource(&iomem_resource, &lapic_resource);
2063
2064 return 0;
2065 }
2066
2067 /*
2068 * need call insert after e820_reserve_resources()
2069 * that is using request_resource
2070 */
2071 late_initcall(lapic_insert_resource);
This page took 0.09436 seconds and 4 git commands to generate.