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