]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - arch/x86/kernel/apic_32.c
Merge branch 'linus' into x86/x2apic
[mirror_ubuntu-zesty-kernel.git] / arch / x86 / kernel / apic_32.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/cpu.h>
27 #include <linux/clockchips.h>
28 #include <linux/acpi_pmtmr.h>
29 #include <linux/module.h>
30 #include <linux/dmi.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/arch_hooks.h>
38 #include <asm/hpet.h>
39 #include <asm/i8253.h>
40 #include <asm/nmi.h>
41
42 #include <mach_apic.h>
43 #include <mach_apicdef.h>
44 #include <mach_ipi.h>
45
46 /*
47 * Sanity check
48 */
49 #if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
50 # error SPURIOUS_APIC_VECTOR definition error
51 #endif
52
53 unsigned long mp_lapic_addr;
54
55 /*
56 * Knob to control our willingness to enable the local APIC.
57 *
58 * +1=force-enable
59 */
60 static int force_enable_local_apic;
61 int disable_apic;
62
63 /* Local APIC timer verification ok */
64 static int local_apic_timer_verify_ok;
65 /* Disable local APIC timer from the kernel commandline or via dmi quirk */
66 static int local_apic_timer_disabled;
67 /* Local APIC timer works in C2 */
68 int local_apic_timer_c2_ok;
69 EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
70
71 int first_system_vector = 0xfe;
72
73 char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
74
75 /*
76 * Debug level, exported for io_apic.c
77 */
78 int apic_verbosity;
79
80 int pic_mode;
81
82 /* Have we found an MP table */
83 int smp_found_config;
84
85 static struct resource lapic_resource = {
86 .name = "Local APIC",
87 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
88 };
89
90 static unsigned int calibration_result;
91
92 static int lapic_next_event(unsigned long delta,
93 struct clock_event_device *evt);
94 static void lapic_timer_setup(enum clock_event_mode mode,
95 struct clock_event_device *evt);
96 static void lapic_timer_broadcast(cpumask_t mask);
97 static void apic_pm_activate(void);
98
99 /*
100 * The local apic timer can be used for any function which is CPU local.
101 */
102 static struct clock_event_device lapic_clockevent = {
103 .name = "lapic",
104 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
105 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
106 .shift = 32,
107 .set_mode = lapic_timer_setup,
108 .set_next_event = lapic_next_event,
109 .broadcast = lapic_timer_broadcast,
110 .rating = 100,
111 .irq = -1,
112 };
113 static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
114
115 /* Local APIC was disabled by the BIOS and enabled by the kernel */
116 static int enabled_via_apicbase;
117
118 static unsigned long apic_phys;
119
120 /*
121 * Get the LAPIC version
122 */
123 static inline int lapic_get_version(void)
124 {
125 return GET_APIC_VERSION(apic_read(APIC_LVR));
126 }
127
128 /*
129 * Check, if the APIC is integrated or a separate chip
130 */
131 static inline int lapic_is_integrated(void)
132 {
133 return APIC_INTEGRATED(lapic_get_version());
134 }
135
136 /*
137 * Check, whether this is a modern or a first generation APIC
138 */
139 static int modern_apic(void)
140 {
141 /* AMD systems use old APIC versions, so check the CPU */
142 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
143 boot_cpu_data.x86 >= 0xf)
144 return 1;
145 return lapic_get_version() >= 0x14;
146 }
147
148 /*
149 * Paravirt kernels also might be using these below ops. So we still
150 * use generic apic_read()/apic_write(), which might be pointing to different
151 * ops in PARAVIRT case.
152 */
153 void xapic_wait_icr_idle(void)
154 {
155 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
156 cpu_relax();
157 }
158
159 u32 safe_xapic_wait_icr_idle(void)
160 {
161 u32 send_status;
162 int timeout;
163
164 timeout = 0;
165 do {
166 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
167 if (!send_status)
168 break;
169 udelay(100);
170 } while (timeout++ < 1000);
171
172 return send_status;
173 }
174
175 void xapic_icr_write(u32 low, u32 id)
176 {
177 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(id));
178 apic_write_around(APIC_ICR, low);
179 }
180
181 u64 xapic_icr_read(void)
182 {
183 u32 icr1, icr2;
184
185 icr2 = apic_read(APIC_ICR2);
186 icr1 = apic_read(APIC_ICR);
187
188 return icr1 | ((u64)icr2 << 32);
189 }
190
191 static struct apic_ops xapic_ops = {
192 .read = native_apic_mem_read,
193 .write = native_apic_mem_write,
194 .write_atomic = native_apic_mem_write_atomic,
195 .icr_read = xapic_icr_read,
196 .icr_write = xapic_icr_write,
197 .wait_icr_idle = xapic_wait_icr_idle,
198 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
199 };
200
201 struct apic_ops __read_mostly *apic_ops = &xapic_ops;
202 EXPORT_SYMBOL_GPL(apic_ops);
203
204 /**
205 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
206 */
207 void __cpuinit enable_NMI_through_LVT0(void)
208 {
209 unsigned int v = APIC_DM_NMI;
210
211 /* Level triggered for 82489DX */
212 if (!lapic_is_integrated())
213 v |= APIC_LVT_LEVEL_TRIGGER;
214 apic_write_around(APIC_LVT0, v);
215 }
216
217 /**
218 * get_physical_broadcast - Get number of physical broadcast IDs
219 */
220 int get_physical_broadcast(void)
221 {
222 return modern_apic() ? 0xff : 0xf;
223 }
224
225 /**
226 * lapic_get_maxlvt - get the maximum number of local vector table entries
227 */
228 int lapic_get_maxlvt(void)
229 {
230 unsigned int v = apic_read(APIC_LVR);
231
232 /* 82489DXs do not report # of LVT entries. */
233 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
234 }
235
236 /*
237 * Local APIC timer
238 */
239
240 /* Clock divisor is set to 16 */
241 #define APIC_DIVISOR 16
242
243 /*
244 * This function sets up the local APIC timer, with a timeout of
245 * 'clocks' APIC bus clock. During calibration we actually call
246 * this function twice on the boot CPU, once with a bogus timeout
247 * value, second time for real. The other (noncalibrating) CPUs
248 * call this function only once, with the real, calibrated value.
249 *
250 * We do reads before writes even if unnecessary, to get around the
251 * P5 APIC double write bug.
252 */
253 static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
254 {
255 unsigned int lvtt_value, tmp_value;
256
257 lvtt_value = LOCAL_TIMER_VECTOR;
258 if (!oneshot)
259 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
260 if (!lapic_is_integrated())
261 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
262
263 if (!irqen)
264 lvtt_value |= APIC_LVT_MASKED;
265
266 apic_write_around(APIC_LVTT, lvtt_value);
267
268 /*
269 * Divide PICLK by 16
270 */
271 tmp_value = apic_read(APIC_TDCR);
272 apic_write_around(APIC_TDCR, (tmp_value
273 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
274 | APIC_TDR_DIV_16);
275
276 if (!oneshot)
277 apic_write_around(APIC_TMICT, clocks/APIC_DIVISOR);
278 }
279
280 /*
281 * Program the next event, relative to now
282 */
283 static int lapic_next_event(unsigned long delta,
284 struct clock_event_device *evt)
285 {
286 apic_write_around(APIC_TMICT, delta);
287 return 0;
288 }
289
290 /*
291 * Setup the lapic timer in periodic or oneshot mode
292 */
293 static void lapic_timer_setup(enum clock_event_mode mode,
294 struct clock_event_device *evt)
295 {
296 unsigned long flags;
297 unsigned int v;
298
299 /* Lapic used for broadcast ? */
300 if (!local_apic_timer_verify_ok)
301 return;
302
303 local_irq_save(flags);
304
305 switch (mode) {
306 case CLOCK_EVT_MODE_PERIODIC:
307 case CLOCK_EVT_MODE_ONESHOT:
308 __setup_APIC_LVTT(calibration_result,
309 mode != CLOCK_EVT_MODE_PERIODIC, 1);
310 break;
311 case CLOCK_EVT_MODE_UNUSED:
312 case CLOCK_EVT_MODE_SHUTDOWN:
313 v = apic_read(APIC_LVTT);
314 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
315 apic_write_around(APIC_LVTT, v);
316 break;
317 case CLOCK_EVT_MODE_RESUME:
318 /* Nothing to do here */
319 break;
320 }
321
322 local_irq_restore(flags);
323 }
324
325 /*
326 * Local APIC timer broadcast function
327 */
328 static void lapic_timer_broadcast(cpumask_t mask)
329 {
330 #ifdef CONFIG_SMP
331 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
332 #endif
333 }
334
335 /*
336 * Setup the local APIC timer for this CPU. Copy the initilized values
337 * of the boot CPU and register the clock event in the framework.
338 */
339 static void __devinit setup_APIC_timer(void)
340 {
341 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
342
343 memcpy(levt, &lapic_clockevent, sizeof(*levt));
344 levt->cpumask = cpumask_of_cpu(smp_processor_id());
345
346 clockevents_register_device(levt);
347 }
348
349 /*
350 * In this functions we calibrate APIC bus clocks to the external timer.
351 *
352 * We want to do the calibration only once since we want to have local timer
353 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
354 * frequency.
355 *
356 * This was previously done by reading the PIT/HPET and waiting for a wrap
357 * around to find out, that a tick has elapsed. I have a box, where the PIT
358 * readout is broken, so it never gets out of the wait loop again. This was
359 * also reported by others.
360 *
361 * Monitoring the jiffies value is inaccurate and the clockevents
362 * infrastructure allows us to do a simple substitution of the interrupt
363 * handler.
364 *
365 * The calibration routine also uses the pm_timer when possible, as the PIT
366 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
367 * back to normal later in the boot process).
368 */
369
370 #define LAPIC_CAL_LOOPS (HZ/10)
371
372 static __initdata int lapic_cal_loops = -1;
373 static __initdata long lapic_cal_t1, lapic_cal_t2;
374 static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
375 static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
376 static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
377
378 /*
379 * Temporary interrupt handler.
380 */
381 static void __init lapic_cal_handler(struct clock_event_device *dev)
382 {
383 unsigned long long tsc = 0;
384 long tapic = apic_read(APIC_TMCCT);
385 unsigned long pm = acpi_pm_read_early();
386
387 if (cpu_has_tsc)
388 rdtscll(tsc);
389
390 switch (lapic_cal_loops++) {
391 case 0:
392 lapic_cal_t1 = tapic;
393 lapic_cal_tsc1 = tsc;
394 lapic_cal_pm1 = pm;
395 lapic_cal_j1 = jiffies;
396 break;
397
398 case LAPIC_CAL_LOOPS:
399 lapic_cal_t2 = tapic;
400 lapic_cal_tsc2 = tsc;
401 if (pm < lapic_cal_pm1)
402 pm += ACPI_PM_OVRRUN;
403 lapic_cal_pm2 = pm;
404 lapic_cal_j2 = jiffies;
405 break;
406 }
407 }
408
409 /*
410 * Setup the boot APIC
411 *
412 * Calibrate and verify the result.
413 */
414 void __init setup_boot_APIC_clock(void)
415 {
416 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
417 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
418 const long pm_thresh = pm_100ms/100;
419 void (*real_handler)(struct clock_event_device *dev);
420 unsigned long deltaj;
421 long delta, deltapm;
422 int pm_referenced = 0;
423
424 /*
425 * The local apic timer can be disabled via the kernel
426 * commandline or from the CPU detection code. Register the lapic
427 * timer as a dummy clock event source on SMP systems, so the
428 * broadcast mechanism is used. On UP systems simply ignore it.
429 */
430 if (local_apic_timer_disabled) {
431 /* No broadcast on UP ! */
432 if (num_possible_cpus() > 1) {
433 lapic_clockevent.mult = 1;
434 setup_APIC_timer();
435 }
436 return;
437 }
438
439 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
440 "calibrating APIC timer ...\n");
441
442 local_irq_disable();
443
444 /* Replace the global interrupt handler */
445 real_handler = global_clock_event->event_handler;
446 global_clock_event->event_handler = lapic_cal_handler;
447
448 /*
449 * Setup the APIC counter to 1e9. There is no way the lapic
450 * can underflow in the 100ms detection time frame
451 */
452 __setup_APIC_LVTT(1000000000, 0, 0);
453
454 /* Let the interrupts run */
455 local_irq_enable();
456
457 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
458 cpu_relax();
459
460 local_irq_disable();
461
462 /* Restore the real event handler */
463 global_clock_event->event_handler = real_handler;
464
465 /* Build delta t1-t2 as apic timer counts down */
466 delta = lapic_cal_t1 - lapic_cal_t2;
467 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
468
469 /* Check, if the PM timer is available */
470 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
471 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
472
473 if (deltapm) {
474 unsigned long mult;
475 u64 res;
476
477 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
478
479 if (deltapm > (pm_100ms - pm_thresh) &&
480 deltapm < (pm_100ms + pm_thresh)) {
481 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
482 } else {
483 res = (((u64) deltapm) * mult) >> 22;
484 do_div(res, 1000000);
485 printk(KERN_WARNING "APIC calibration not consistent "
486 "with PM Timer: %ldms instead of 100ms\n",
487 (long)res);
488 /* Correct the lapic counter value */
489 res = (((u64) delta) * pm_100ms);
490 do_div(res, deltapm);
491 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
492 "%lu (%ld)\n", (unsigned long) res, delta);
493 delta = (long) res;
494 }
495 pm_referenced = 1;
496 }
497
498 /* Calculate the scaled math multiplication factor */
499 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
500 lapic_clockevent.shift);
501 lapic_clockevent.max_delta_ns =
502 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
503 lapic_clockevent.min_delta_ns =
504 clockevent_delta2ns(0xF, &lapic_clockevent);
505
506 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
507
508 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
509 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
510 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
511 calibration_result);
512
513 if (cpu_has_tsc) {
514 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
515 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
516 "%ld.%04ld MHz.\n",
517 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
518 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
519 }
520
521 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
522 "%u.%04u MHz.\n",
523 calibration_result / (1000000 / HZ),
524 calibration_result % (1000000 / HZ));
525
526 local_apic_timer_verify_ok = 1;
527
528 /*
529 * Do a sanity check on the APIC calibration result
530 */
531 if (calibration_result < (1000000 / HZ)) {
532 local_irq_enable();
533 printk(KERN_WARNING
534 "APIC frequency too slow, disabling apic timer\n");
535 /* No broadcast on UP ! */
536 if (num_possible_cpus() > 1)
537 setup_APIC_timer();
538 return;
539 }
540
541 /* We trust the pm timer based calibration */
542 if (!pm_referenced) {
543 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
544
545 /*
546 * Setup the apic timer manually
547 */
548 levt->event_handler = lapic_cal_handler;
549 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
550 lapic_cal_loops = -1;
551
552 /* Let the interrupts run */
553 local_irq_enable();
554
555 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
556 cpu_relax();
557
558 local_irq_disable();
559
560 /* Stop the lapic timer */
561 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
562
563 local_irq_enable();
564
565 /* Jiffies delta */
566 deltaj = lapic_cal_j2 - lapic_cal_j1;
567 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
568
569 /* Check, if the jiffies result is consistent */
570 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
571 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
572 else
573 local_apic_timer_verify_ok = 0;
574 } else
575 local_irq_enable();
576
577 if (!local_apic_timer_verify_ok) {
578 printk(KERN_WARNING
579 "APIC timer disabled due to verification failure.\n");
580 /* No broadcast on UP ! */
581 if (num_possible_cpus() == 1)
582 return;
583 } else {
584 /*
585 * If nmi_watchdog is set to IO_APIC, we need the
586 * PIT/HPET going. Otherwise register lapic as a dummy
587 * device.
588 */
589 if (nmi_watchdog != NMI_IO_APIC)
590 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
591 else
592 printk(KERN_WARNING "APIC timer registered as dummy,"
593 " due to nmi_watchdog=%d!\n", nmi_watchdog);
594 }
595
596 /* Setup the lapic or request the broadcast */
597 setup_APIC_timer();
598 }
599
600 void __devinit setup_secondary_APIC_clock(void)
601 {
602 setup_APIC_timer();
603 }
604
605 /*
606 * The guts of the apic timer interrupt
607 */
608 static void local_apic_timer_interrupt(void)
609 {
610 int cpu = smp_processor_id();
611 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
612
613 /*
614 * Normally we should not be here till LAPIC has been initialized but
615 * in some cases like kdump, its possible that there is a pending LAPIC
616 * timer interrupt from previous kernel's context and is delivered in
617 * new kernel the moment interrupts are enabled.
618 *
619 * Interrupts are enabled early and LAPIC is setup much later, hence
620 * its possible that when we get here evt->event_handler is NULL.
621 * Check for event_handler being NULL and discard the interrupt as
622 * spurious.
623 */
624 if (!evt->event_handler) {
625 printk(KERN_WARNING
626 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
627 /* Switch it off */
628 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
629 return;
630 }
631
632 /*
633 * the NMI deadlock-detector uses this.
634 */
635 per_cpu(irq_stat, cpu).apic_timer_irqs++;
636
637 evt->event_handler(evt);
638 }
639
640 /*
641 * Local APIC timer interrupt. This is the most natural way for doing
642 * local interrupts, but local timer interrupts can be emulated by
643 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
644 *
645 * [ if a single-CPU system runs an SMP kernel then we call the local
646 * interrupt as well. Thus we cannot inline the local irq ... ]
647 */
648 void smp_apic_timer_interrupt(struct pt_regs *regs)
649 {
650 struct pt_regs *old_regs = set_irq_regs(regs);
651
652 /*
653 * NOTE! We'd better ACK the irq immediately,
654 * because timer handling can be slow.
655 */
656 ack_APIC_irq();
657 /*
658 * update_process_times() expects us to have done irq_enter().
659 * Besides, if we don't timer interrupts ignore the global
660 * interrupt lock, which is the WrongThing (tm) to do.
661 */
662 irq_enter();
663 local_apic_timer_interrupt();
664 irq_exit();
665
666 set_irq_regs(old_regs);
667 }
668
669 int setup_profiling_timer(unsigned int multiplier)
670 {
671 return -EINVAL;
672 }
673
674 /*
675 * Setup extended LVT, AMD specific (K8, family 10h)
676 *
677 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
678 * MCE interrupts are supported. Thus MCE offset must be set to 0.
679 */
680
681 #define APIC_EILVT_LVTOFF_MCE 0
682 #define APIC_EILVT_LVTOFF_IBS 1
683
684 static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
685 {
686 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
687 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
688 apic_write(reg, v);
689 }
690
691 u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
692 {
693 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
694 return APIC_EILVT_LVTOFF_MCE;
695 }
696
697 u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
698 {
699 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
700 return APIC_EILVT_LVTOFF_IBS;
701 }
702
703 /*
704 * Local APIC start and shutdown
705 */
706
707 /**
708 * clear_local_APIC - shutdown the local APIC
709 *
710 * This is called, when a CPU is disabled and before rebooting, so the state of
711 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
712 * leftovers during boot.
713 */
714 void clear_local_APIC(void)
715 {
716 int maxlvt;
717 u32 v;
718
719 /* APIC hasn't been mapped yet */
720 if (!apic_phys)
721 return;
722
723 maxlvt = lapic_get_maxlvt();
724 /*
725 * Masking an LVT entry can trigger a local APIC error
726 * if the vector is zero. Mask LVTERR first to prevent this.
727 */
728 if (maxlvt >= 3) {
729 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
730 apic_write_around(APIC_LVTERR, v | APIC_LVT_MASKED);
731 }
732 /*
733 * Careful: we have to set masks only first to deassert
734 * any level-triggered sources.
735 */
736 v = apic_read(APIC_LVTT);
737 apic_write_around(APIC_LVTT, v | APIC_LVT_MASKED);
738 v = apic_read(APIC_LVT0);
739 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
740 v = apic_read(APIC_LVT1);
741 apic_write_around(APIC_LVT1, v | APIC_LVT_MASKED);
742 if (maxlvt >= 4) {
743 v = apic_read(APIC_LVTPC);
744 apic_write_around(APIC_LVTPC, v | APIC_LVT_MASKED);
745 }
746
747 /* lets not touch this if we didn't frob it */
748 #ifdef CONFIG_X86_MCE_P4THERMAL
749 if (maxlvt >= 5) {
750 v = apic_read(APIC_LVTTHMR);
751 apic_write_around(APIC_LVTTHMR, v | APIC_LVT_MASKED);
752 }
753 #endif
754 /*
755 * Clean APIC state for other OSs:
756 */
757 apic_write_around(APIC_LVTT, APIC_LVT_MASKED);
758 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
759 apic_write_around(APIC_LVT1, APIC_LVT_MASKED);
760 if (maxlvt >= 3)
761 apic_write_around(APIC_LVTERR, APIC_LVT_MASKED);
762 if (maxlvt >= 4)
763 apic_write_around(APIC_LVTPC, APIC_LVT_MASKED);
764
765 #ifdef CONFIG_X86_MCE_P4THERMAL
766 if (maxlvt >= 5)
767 apic_write_around(APIC_LVTTHMR, APIC_LVT_MASKED);
768 #endif
769 /* Integrated APIC (!82489DX) ? */
770 if (lapic_is_integrated()) {
771 if (maxlvt > 3)
772 /* Clear ESR due to Pentium errata 3AP and 11AP */
773 apic_write(APIC_ESR, 0);
774 apic_read(APIC_ESR);
775 }
776 }
777
778 /**
779 * disable_local_APIC - clear and disable the local APIC
780 */
781 void disable_local_APIC(void)
782 {
783 unsigned long value;
784
785 clear_local_APIC();
786
787 /*
788 * Disable APIC (implies clearing of registers
789 * for 82489DX!).
790 */
791 value = apic_read(APIC_SPIV);
792 value &= ~APIC_SPIV_APIC_ENABLED;
793 apic_write_around(APIC_SPIV, value);
794
795 /*
796 * When LAPIC was disabled by the BIOS and enabled by the kernel,
797 * restore the disabled state.
798 */
799 if (enabled_via_apicbase) {
800 unsigned int l, h;
801
802 rdmsr(MSR_IA32_APICBASE, l, h);
803 l &= ~MSR_IA32_APICBASE_ENABLE;
804 wrmsr(MSR_IA32_APICBASE, l, h);
805 }
806 }
807
808 /*
809 * If Linux enabled the LAPIC against the BIOS default disable it down before
810 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
811 * not power-off. Additionally clear all LVT entries before disable_local_APIC
812 * for the case where Linux didn't enable the LAPIC.
813 */
814 void lapic_shutdown(void)
815 {
816 unsigned long flags;
817
818 if (!cpu_has_apic)
819 return;
820
821 local_irq_save(flags);
822 clear_local_APIC();
823
824 if (enabled_via_apicbase)
825 disable_local_APIC();
826
827 local_irq_restore(flags);
828 }
829
830 /*
831 * This is to verify that we're looking at a real local APIC.
832 * Check these against your board if the CPUs aren't getting
833 * started for no apparent reason.
834 */
835 int __init verify_local_APIC(void)
836 {
837 unsigned int reg0, reg1;
838
839 /*
840 * The version register is read-only in a real APIC.
841 */
842 reg0 = apic_read(APIC_LVR);
843 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
844 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
845 reg1 = apic_read(APIC_LVR);
846 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
847
848 /*
849 * The two version reads above should print the same
850 * numbers. If the second one is different, then we
851 * poke at a non-APIC.
852 */
853 if (reg1 != reg0)
854 return 0;
855
856 /*
857 * Check if the version looks reasonably.
858 */
859 reg1 = GET_APIC_VERSION(reg0);
860 if (reg1 == 0x00 || reg1 == 0xff)
861 return 0;
862 reg1 = lapic_get_maxlvt();
863 if (reg1 < 0x02 || reg1 == 0xff)
864 return 0;
865
866 /*
867 * The ID register is read/write in a real APIC.
868 */
869 reg0 = apic_read(APIC_ID);
870 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
871
872 /*
873 * The next two are just to see if we have sane values.
874 * They're only really relevant if we're in Virtual Wire
875 * compatibility mode, but most boxes are anymore.
876 */
877 reg0 = apic_read(APIC_LVT0);
878 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
879 reg1 = apic_read(APIC_LVT1);
880 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
881
882 return 1;
883 }
884
885 /**
886 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
887 */
888 void __init sync_Arb_IDs(void)
889 {
890 /*
891 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
892 * needed on AMD.
893 */
894 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
895 return;
896 /*
897 * Wait for idle.
898 */
899 apic_wait_icr_idle();
900
901 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
902 apic_write_around(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
903 | APIC_DM_INIT);
904 }
905
906 /*
907 * An initial setup of the virtual wire mode.
908 */
909 void __init init_bsp_APIC(void)
910 {
911 unsigned long value;
912
913 /*
914 * Don't do the setup now if we have a SMP BIOS as the
915 * through-I/O-APIC virtual wire mode might be active.
916 */
917 if (smp_found_config || !cpu_has_apic)
918 return;
919
920 /*
921 * Do not trust the local APIC being empty at bootup.
922 */
923 clear_local_APIC();
924
925 /*
926 * Enable APIC.
927 */
928 value = apic_read(APIC_SPIV);
929 value &= ~APIC_VECTOR_MASK;
930 value |= APIC_SPIV_APIC_ENABLED;
931
932 /* This bit is reserved on P4/Xeon and should be cleared */
933 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
934 (boot_cpu_data.x86 == 15))
935 value &= ~APIC_SPIV_FOCUS_DISABLED;
936 else
937 value |= APIC_SPIV_FOCUS_DISABLED;
938 value |= SPURIOUS_APIC_VECTOR;
939 apic_write_around(APIC_SPIV, value);
940
941 /*
942 * Set up the virtual wire mode.
943 */
944 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
945 value = APIC_DM_NMI;
946 if (!lapic_is_integrated()) /* 82489DX */
947 value |= APIC_LVT_LEVEL_TRIGGER;
948 apic_write_around(APIC_LVT1, value);
949 }
950
951 static void __cpuinit lapic_setup_esr(void)
952 {
953 unsigned long oldvalue, value, maxlvt;
954 if (lapic_is_integrated() && !esr_disable) {
955 /* !82489DX */
956 maxlvt = lapic_get_maxlvt();
957 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
958 apic_write(APIC_ESR, 0);
959 oldvalue = apic_read(APIC_ESR);
960
961 /* enables sending errors */
962 value = ERROR_APIC_VECTOR;
963 apic_write_around(APIC_LVTERR, value);
964 /*
965 * spec says clear errors after enabling vector.
966 */
967 if (maxlvt > 3)
968 apic_write(APIC_ESR, 0);
969 value = apic_read(APIC_ESR);
970 if (value != oldvalue)
971 apic_printk(APIC_VERBOSE, "ESR value before enabling "
972 "vector: 0x%08lx after: 0x%08lx\n",
973 oldvalue, value);
974 } else {
975 if (esr_disable)
976 /*
977 * Something untraceable is creating bad interrupts on
978 * secondary quads ... for the moment, just leave the
979 * ESR disabled - we can't do anything useful with the
980 * errors anyway - mbligh
981 */
982 printk(KERN_INFO "Leaving ESR disabled.\n");
983 else
984 printk(KERN_INFO "No ESR for 82489DX.\n");
985 }
986 }
987
988
989 /**
990 * setup_local_APIC - setup the local APIC
991 */
992 void __cpuinit setup_local_APIC(void)
993 {
994 unsigned long value, integrated;
995 int i, j;
996
997 /* Pound the ESR really hard over the head with a big hammer - mbligh */
998 if (esr_disable) {
999 apic_write(APIC_ESR, 0);
1000 apic_write(APIC_ESR, 0);
1001 apic_write(APIC_ESR, 0);
1002 apic_write(APIC_ESR, 0);
1003 }
1004
1005 integrated = lapic_is_integrated();
1006
1007 /*
1008 * Double-check whether this APIC is really registered.
1009 */
1010 if (!apic_id_registered())
1011 WARN_ON_ONCE(1);
1012
1013 /*
1014 * Intel recommends to set DFR, LDR and TPR before enabling
1015 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1016 * document number 292116). So here it goes...
1017 */
1018 init_apic_ldr();
1019
1020 /*
1021 * Set Task Priority to 'accept all'. We never change this
1022 * later on.
1023 */
1024 value = apic_read(APIC_TASKPRI);
1025 value &= ~APIC_TPRI_MASK;
1026 apic_write_around(APIC_TASKPRI, value);
1027
1028 /*
1029 * After a crash, we no longer service the interrupts and a pending
1030 * interrupt from previous kernel might still have ISR bit set.
1031 *
1032 * Most probably by now CPU has serviced that pending interrupt and
1033 * it might not have done the ack_APIC_irq() because it thought,
1034 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1035 * does not clear the ISR bit and cpu thinks it has already serivced
1036 * the interrupt. Hence a vector might get locked. It was noticed
1037 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1038 */
1039 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1040 value = apic_read(APIC_ISR + i*0x10);
1041 for (j = 31; j >= 0; j--) {
1042 if (value & (1<<j))
1043 ack_APIC_irq();
1044 }
1045 }
1046
1047 /*
1048 * Now that we are all set up, enable the APIC
1049 */
1050 value = apic_read(APIC_SPIV);
1051 value &= ~APIC_VECTOR_MASK;
1052 /*
1053 * Enable APIC
1054 */
1055 value |= APIC_SPIV_APIC_ENABLED;
1056
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 /* Enable focus processor (bit==0) */
1078 value &= ~APIC_SPIV_FOCUS_DISABLED;
1079
1080 /*
1081 * Set spurious IRQ vector
1082 */
1083 value |= SPURIOUS_APIC_VECTOR;
1084 apic_write_around(APIC_SPIV, value);
1085
1086 /*
1087 * Set up LVT0, LVT1:
1088 *
1089 * set up through-local-APIC on the BP's LINT0. This is not
1090 * strictly necessary in pure symmetric-IO mode, but sometimes
1091 * we delegate interrupts to the 8259A.
1092 */
1093 /*
1094 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1095 */
1096 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1097 if (!smp_processor_id() && (pic_mode || !value)) {
1098 value = APIC_DM_EXTINT;
1099 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
1100 smp_processor_id());
1101 } else {
1102 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1103 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1104 smp_processor_id());
1105 }
1106 apic_write_around(APIC_LVT0, value);
1107
1108 /*
1109 * only the BP should see the LINT1 NMI signal, obviously.
1110 */
1111 if (!smp_processor_id())
1112 value = APIC_DM_NMI;
1113 else
1114 value = APIC_DM_NMI | APIC_LVT_MASKED;
1115 if (!integrated) /* 82489DX */
1116 value |= APIC_LVT_LEVEL_TRIGGER;
1117 apic_write_around(APIC_LVT1, value);
1118 }
1119
1120 void __cpuinit end_local_APIC_setup(void)
1121 {
1122 unsigned long value;
1123
1124 lapic_setup_esr();
1125 /* Disable the local apic timer */
1126 value = apic_read(APIC_LVTT);
1127 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1128 apic_write_around(APIC_LVTT, value);
1129
1130 setup_apic_nmi_watchdog(NULL);
1131 apic_pm_activate();
1132 }
1133
1134 /*
1135 * Detect and initialize APIC
1136 */
1137 static int __init detect_init_APIC(void)
1138 {
1139 u32 h, l, features;
1140
1141 /* Disabled by kernel option? */
1142 if (disable_apic)
1143 return -1;
1144
1145 switch (boot_cpu_data.x86_vendor) {
1146 case X86_VENDOR_AMD:
1147 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1148 (boot_cpu_data.x86 == 15))
1149 break;
1150 goto no_apic;
1151 case X86_VENDOR_INTEL:
1152 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1153 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1154 break;
1155 goto no_apic;
1156 default:
1157 goto no_apic;
1158 }
1159
1160 if (!cpu_has_apic) {
1161 /*
1162 * Over-ride BIOS and try to enable the local APIC only if
1163 * "lapic" specified.
1164 */
1165 if (!force_enable_local_apic) {
1166 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1167 "you can enable it with \"lapic\"\n");
1168 return -1;
1169 }
1170 /*
1171 * Some BIOSes disable the local APIC in the APIC_BASE
1172 * MSR. This can only be done in software for Intel P6 or later
1173 * and AMD K7 (Model > 1) or later.
1174 */
1175 rdmsr(MSR_IA32_APICBASE, l, h);
1176 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1177 printk(KERN_INFO
1178 "Local APIC disabled by BIOS -- reenabling.\n");
1179 l &= ~MSR_IA32_APICBASE_BASE;
1180 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1181 wrmsr(MSR_IA32_APICBASE, l, h);
1182 enabled_via_apicbase = 1;
1183 }
1184 }
1185 /*
1186 * The APIC feature bit should now be enabled
1187 * in `cpuid'
1188 */
1189 features = cpuid_edx(1);
1190 if (!(features & (1 << X86_FEATURE_APIC))) {
1191 printk(KERN_WARNING "Could not enable APIC!\n");
1192 return -1;
1193 }
1194 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1195 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1196
1197 /* The BIOS may have set up the APIC at some other address */
1198 rdmsr(MSR_IA32_APICBASE, l, h);
1199 if (l & MSR_IA32_APICBASE_ENABLE)
1200 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1201
1202 printk(KERN_INFO "Found and enabled local APIC!\n");
1203
1204 apic_pm_activate();
1205
1206 return 0;
1207
1208 no_apic:
1209 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1210 return -1;
1211 }
1212
1213 /**
1214 * init_apic_mappings - initialize APIC mappings
1215 */
1216 void __init init_apic_mappings(void)
1217 {
1218 /*
1219 * If no local APIC can be found then set up a fake all
1220 * zeroes page to simulate the local APIC and another
1221 * one for the IO-APIC.
1222 */
1223 if (!smp_found_config && detect_init_APIC()) {
1224 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1225 apic_phys = __pa(apic_phys);
1226 } else
1227 apic_phys = mp_lapic_addr;
1228
1229 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1230 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1231 apic_phys);
1232
1233 /*
1234 * Fetch the APIC ID of the BSP in case we have a
1235 * default configuration (or the MP table is broken).
1236 */
1237 if (boot_cpu_physical_apicid == -1U)
1238 boot_cpu_physical_apicid = read_apic_id();
1239
1240 }
1241
1242 /*
1243 * This initializes the IO-APIC and APIC hardware if this is
1244 * a UP kernel.
1245 */
1246
1247 int apic_version[MAX_APICS];
1248
1249 int __init APIC_init_uniprocessor(void)
1250 {
1251 if (disable_apic)
1252 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1253
1254 if (!smp_found_config && !cpu_has_apic)
1255 return -1;
1256
1257 /*
1258 * Complain if the BIOS pretends there is one.
1259 */
1260 if (!cpu_has_apic &&
1261 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
1262 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1263 boot_cpu_physical_apicid);
1264 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1265 return -1;
1266 }
1267
1268 verify_local_APIC();
1269
1270 connect_bsp_APIC();
1271
1272 /*
1273 * Hack: In case of kdump, after a crash, kernel might be booting
1274 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1275 * might be zero if read from MP tables. Get it from LAPIC.
1276 */
1277 #ifdef CONFIG_CRASH_DUMP
1278 boot_cpu_physical_apicid = read_apic_id();
1279 #endif
1280 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
1281
1282 setup_local_APIC();
1283
1284 #ifdef CONFIG_X86_IO_APIC
1285 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1286 #endif
1287 localise_nmi_watchdog();
1288 end_local_APIC_setup();
1289 #ifdef CONFIG_X86_IO_APIC
1290 if (smp_found_config)
1291 if (!skip_ioapic_setup && nr_ioapics)
1292 setup_IO_APIC();
1293 #endif
1294 setup_boot_clock();
1295
1296 return 0;
1297 }
1298
1299 /*
1300 * Local APIC interrupts
1301 */
1302
1303 /*
1304 * This interrupt should _never_ happen with our APIC/SMP architecture
1305 */
1306 void smp_spurious_interrupt(struct pt_regs *regs)
1307 {
1308 unsigned long v;
1309
1310 irq_enter();
1311 /*
1312 * Check if this really is a spurious interrupt and ACK it
1313 * if it is a vectored one. Just in case...
1314 * Spurious interrupts should not be ACKed.
1315 */
1316 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1317 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1318 ack_APIC_irq();
1319
1320 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1321 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1322 "should never happen.\n", smp_processor_id());
1323 __get_cpu_var(irq_stat).irq_spurious_count++;
1324 irq_exit();
1325 }
1326
1327 /*
1328 * This interrupt should never happen with our APIC/SMP architecture
1329 */
1330 void smp_error_interrupt(struct pt_regs *regs)
1331 {
1332 unsigned long v, v1;
1333
1334 irq_enter();
1335 /* First tickle the hardware, only then report what went on. -- REW */
1336 v = apic_read(APIC_ESR);
1337 apic_write(APIC_ESR, 0);
1338 v1 = apic_read(APIC_ESR);
1339 ack_APIC_irq();
1340 atomic_inc(&irq_err_count);
1341
1342 /* Here is what the APIC error bits mean:
1343 0: Send CS error
1344 1: Receive CS error
1345 2: Send accept error
1346 3: Receive accept error
1347 4: Reserved
1348 5: Send illegal vector
1349 6: Received illegal vector
1350 7: Illegal register address
1351 */
1352 printk(KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
1353 smp_processor_id(), v , v1);
1354 irq_exit();
1355 }
1356
1357 #ifdef CONFIG_SMP
1358 void __init smp_intr_init(void)
1359 {
1360 /*
1361 * IRQ0 must be given a fixed assignment and initialized,
1362 * because it's used before the IO-APIC is set up.
1363 */
1364 set_intr_gate(FIRST_DEVICE_VECTOR, interrupt[0]);
1365
1366 /*
1367 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
1368 * IPI, driven by wakeup.
1369 */
1370 alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
1371
1372 /* IPI for invalidation */
1373 alloc_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
1374
1375 /* IPI for generic function call */
1376 alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
1377
1378 /* IPI for single call function */
1379 set_intr_gate(CALL_FUNCTION_SINGLE_VECTOR,
1380 call_function_single_interrupt);
1381 }
1382 #endif
1383
1384 /*
1385 * Initialize APIC interrupts
1386 */
1387 void __init apic_intr_init(void)
1388 {
1389 #ifdef CONFIG_SMP
1390 smp_intr_init();
1391 #endif
1392 /* self generated IPI for local APIC timer */
1393 alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
1394
1395 /* IPI vectors for APIC spurious and error interrupts */
1396 alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
1397 alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
1398
1399 /* thermal monitor LVT interrupt */
1400 #ifdef CONFIG_X86_MCE_P4THERMAL
1401 alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
1402 #endif
1403 }
1404
1405 /**
1406 * connect_bsp_APIC - attach the APIC to the interrupt system
1407 */
1408 void __init connect_bsp_APIC(void)
1409 {
1410 if (pic_mode) {
1411 /*
1412 * Do not trust the local APIC being empty at bootup.
1413 */
1414 clear_local_APIC();
1415 /*
1416 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1417 * local APIC to INT and NMI lines.
1418 */
1419 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1420 "enabling APIC mode.\n");
1421 outb(0x70, 0x22);
1422 outb(0x01, 0x23);
1423 }
1424 enable_apic_mode();
1425 }
1426
1427 /**
1428 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1429 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1430 *
1431 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1432 * APIC is disabled.
1433 */
1434 void disconnect_bsp_APIC(int virt_wire_setup)
1435 {
1436 if (pic_mode) {
1437 /*
1438 * Put the board back into PIC mode (has an effect only on
1439 * certain older boards). Note that APIC interrupts, including
1440 * IPIs, won't work beyond this point! The only exception are
1441 * INIT IPIs.
1442 */
1443 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1444 "entering PIC mode.\n");
1445 outb(0x70, 0x22);
1446 outb(0x00, 0x23);
1447 } else {
1448 /* Go back to Virtual Wire compatibility mode */
1449 unsigned long value;
1450
1451 /* For the spurious interrupt use vector F, and enable it */
1452 value = apic_read(APIC_SPIV);
1453 value &= ~APIC_VECTOR_MASK;
1454 value |= APIC_SPIV_APIC_ENABLED;
1455 value |= 0xf;
1456 apic_write_around(APIC_SPIV, value);
1457
1458 if (!virt_wire_setup) {
1459 /*
1460 * For LVT0 make it edge triggered, active high,
1461 * external and enabled
1462 */
1463 value = apic_read(APIC_LVT0);
1464 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1465 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1466 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1467 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1468 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1469 apic_write_around(APIC_LVT0, value);
1470 } else {
1471 /* Disable LVT0 */
1472 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
1473 }
1474
1475 /*
1476 * For LVT1 make it edge triggered, active high, nmi and
1477 * enabled
1478 */
1479 value = apic_read(APIC_LVT1);
1480 value &= ~(
1481 APIC_MODE_MASK | APIC_SEND_PENDING |
1482 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1483 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1484 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1485 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1486 apic_write_around(APIC_LVT1, value);
1487 }
1488 }
1489
1490 unsigned int __cpuinitdata maxcpus = NR_CPUS;
1491
1492 void __cpuinit generic_processor_info(int apicid, int version)
1493 {
1494 int cpu;
1495 cpumask_t tmp_map;
1496 physid_mask_t phys_cpu;
1497
1498 /*
1499 * Validate version
1500 */
1501 if (version == 0x0) {
1502 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1503 "fixing up to 0x10. (tell your hw vendor)\n",
1504 version);
1505 version = 0x10;
1506 }
1507 apic_version[apicid] = version;
1508
1509 phys_cpu = apicid_to_cpu_present(apicid);
1510 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
1511
1512 if (num_processors >= NR_CPUS) {
1513 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1514 " Processor ignored.\n", NR_CPUS);
1515 return;
1516 }
1517
1518 if (num_processors >= maxcpus) {
1519 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1520 " Processor ignored.\n", maxcpus);
1521 return;
1522 }
1523
1524 num_processors++;
1525 cpus_complement(tmp_map, cpu_present_map);
1526 cpu = first_cpu(tmp_map);
1527
1528 if (apicid == boot_cpu_physical_apicid)
1529 /*
1530 * x86_bios_cpu_apicid is required to have processors listed
1531 * in same order as logical cpu numbers. Hence the first
1532 * entry is BSP, and so on.
1533 */
1534 cpu = 0;
1535
1536 if (apicid > max_physical_apicid)
1537 max_physical_apicid = apicid;
1538
1539 /*
1540 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1541 * but we need to work other dependencies like SMP_SUSPEND etc
1542 * before this can be done without some confusion.
1543 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1544 * - Ashok Raj <ashok.raj@intel.com>
1545 */
1546 if (max_physical_apicid >= 8) {
1547 switch (boot_cpu_data.x86_vendor) {
1548 case X86_VENDOR_INTEL:
1549 if (!APIC_XAPIC(version)) {
1550 def_to_bigsmp = 0;
1551 break;
1552 }
1553 /* If P4 and above fall through */
1554 case X86_VENDOR_AMD:
1555 def_to_bigsmp = 1;
1556 }
1557 }
1558 #ifdef CONFIG_SMP
1559 /* are we being called early in kernel startup? */
1560 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1561 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1562 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
1563
1564 cpu_to_apicid[cpu] = apicid;
1565 bios_cpu_apicid[cpu] = apicid;
1566 } else {
1567 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1568 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1569 }
1570 #endif
1571 cpu_set(cpu, cpu_possible_map);
1572 cpu_set(cpu, cpu_present_map);
1573 }
1574
1575 /*
1576 * Power management
1577 */
1578 #ifdef CONFIG_PM
1579
1580 static struct {
1581 int active;
1582 /* r/w apic fields */
1583 unsigned int apic_id;
1584 unsigned int apic_taskpri;
1585 unsigned int apic_ldr;
1586 unsigned int apic_dfr;
1587 unsigned int apic_spiv;
1588 unsigned int apic_lvtt;
1589 unsigned int apic_lvtpc;
1590 unsigned int apic_lvt0;
1591 unsigned int apic_lvt1;
1592 unsigned int apic_lvterr;
1593 unsigned int apic_tmict;
1594 unsigned int apic_tdcr;
1595 unsigned int apic_thmr;
1596 } apic_pm_state;
1597
1598 static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1599 {
1600 unsigned long flags;
1601 int maxlvt;
1602
1603 if (!apic_pm_state.active)
1604 return 0;
1605
1606 maxlvt = lapic_get_maxlvt();
1607
1608 apic_pm_state.apic_id = apic_read(APIC_ID);
1609 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1610 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1611 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1612 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1613 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1614 if (maxlvt >= 4)
1615 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1616 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1617 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1618 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1619 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1620 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1621 #ifdef CONFIG_X86_MCE_P4THERMAL
1622 if (maxlvt >= 5)
1623 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1624 #endif
1625
1626 local_irq_save(flags);
1627 disable_local_APIC();
1628 local_irq_restore(flags);
1629 return 0;
1630 }
1631
1632 static int lapic_resume(struct sys_device *dev)
1633 {
1634 unsigned int l, h;
1635 unsigned long flags;
1636 int maxlvt;
1637
1638 if (!apic_pm_state.active)
1639 return 0;
1640
1641 maxlvt = lapic_get_maxlvt();
1642
1643 local_irq_save(flags);
1644
1645 /*
1646 * Make sure the APICBASE points to the right address
1647 *
1648 * FIXME! This will be wrong if we ever support suspend on
1649 * SMP! We'll need to do this as part of the CPU restore!
1650 */
1651 rdmsr(MSR_IA32_APICBASE, l, h);
1652 l &= ~MSR_IA32_APICBASE_BASE;
1653 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1654 wrmsr(MSR_IA32_APICBASE, l, h);
1655
1656 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1657 apic_write(APIC_ID, apic_pm_state.apic_id);
1658 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1659 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1660 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1661 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1662 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1663 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1664 #ifdef CONFIG_X86_MCE_P4THERMAL
1665 if (maxlvt >= 5)
1666 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1667 #endif
1668 if (maxlvt >= 4)
1669 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1670 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1671 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1672 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1673 apic_write(APIC_ESR, 0);
1674 apic_read(APIC_ESR);
1675 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1676 apic_write(APIC_ESR, 0);
1677 apic_read(APIC_ESR);
1678 local_irq_restore(flags);
1679 return 0;
1680 }
1681
1682 /*
1683 * This device has no shutdown method - fully functioning local APICs
1684 * are needed on every CPU up until machine_halt/restart/poweroff.
1685 */
1686
1687 static struct sysdev_class lapic_sysclass = {
1688 .name = "lapic",
1689 .resume = lapic_resume,
1690 .suspend = lapic_suspend,
1691 };
1692
1693 static struct sys_device device_lapic = {
1694 .id = 0,
1695 .cls = &lapic_sysclass,
1696 };
1697
1698 static void __devinit apic_pm_activate(void)
1699 {
1700 apic_pm_state.active = 1;
1701 }
1702
1703 static int __init init_lapic_sysfs(void)
1704 {
1705 int error;
1706
1707 if (!cpu_has_apic)
1708 return 0;
1709 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1710
1711 error = sysdev_class_register(&lapic_sysclass);
1712 if (!error)
1713 error = sysdev_register(&device_lapic);
1714 return error;
1715 }
1716 device_initcall(init_lapic_sysfs);
1717
1718 #else /* CONFIG_PM */
1719
1720 static void apic_pm_activate(void) { }
1721
1722 #endif /* CONFIG_PM */
1723
1724 /*
1725 * APIC command line parameters
1726 */
1727 static int __init parse_lapic(char *arg)
1728 {
1729 force_enable_local_apic = 1;
1730 return 0;
1731 }
1732 early_param("lapic", parse_lapic);
1733
1734 static int __init parse_nolapic(char *arg)
1735 {
1736 disable_apic = 1;
1737 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1738 return 0;
1739 }
1740 early_param("nolapic", parse_nolapic);
1741
1742 static int __init parse_disable_lapic_timer(char *arg)
1743 {
1744 local_apic_timer_disabled = 1;
1745 return 0;
1746 }
1747 early_param("nolapic_timer", parse_disable_lapic_timer);
1748
1749 static int __init parse_lapic_timer_c2_ok(char *arg)
1750 {
1751 local_apic_timer_c2_ok = 1;
1752 return 0;
1753 }
1754 early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1755
1756 static int __init apic_set_verbosity(char *str)
1757 {
1758 if (strcmp("debug", str) == 0)
1759 apic_verbosity = APIC_DEBUG;
1760 else if (strcmp("verbose", str) == 0)
1761 apic_verbosity = APIC_VERBOSE;
1762 return 1;
1763 }
1764 __setup("apic=", apic_set_verbosity);
1765
1766 static int __init lapic_insert_resource(void)
1767 {
1768 if (!apic_phys)
1769 return -1;
1770
1771 /* Put local APIC into the resource map. */
1772 lapic_resource.start = apic_phys;
1773 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1774 insert_resource(&iomem_resource, &lapic_resource);
1775
1776 return 0;
1777 }
1778
1779 /*
1780 * need call insert after e820_reserve_resources()
1781 * that is using request_resource
1782 */
1783 late_initcall(lapic_insert_resource);