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