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