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