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