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