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