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