blob: 4fa2a8620c265cf31959d224041f11e4eed32e75 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Local APIC handling, local APIC timers
3 *
4 * (c) 1999, 2000 Ingo Molnar <mingo@redhat.com>
5 *
6 * Fixes
7 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
8 * thanks to Eric Gilmore
9 * and Rolf G. Tews
10 * for testing these extensively.
11 * Maciej W. Rozycki : Various updates and fixes.
12 * Mikael Pettersson : Power Management for UP-APIC.
13 * Pavel Machek and
14 * Mikael Pettersson : PM converted to driver model.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18
19#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h>
21#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/interrupt.h>
23#include <linux/mc146818rtc.h>
24#include <linux/kernel_stat.h>
25#include <linux/sysdev.h>
Aaron Durbin39928722006-12-07 02:14:01 +010026#include <linux/ioport.h>
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020027#include <linux/clockchips.h>
Thomas Gleixner70a20022008-01-30 13:30:18 +010028#include <linux/acpi_pmtmr.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010029#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/atomic.h>
32#include <asm/smp.h>
33#include <asm/mtrr.h>
34#include <asm/mpspec.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010035#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/pgalloc.h>
Andi Kleen75152112005-05-16 21:53:34 -070037#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010038#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010039#include <asm/proto.h>
40#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020041#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Glauber Costa5af55732008-03-25 13:28:56 -030043#include <mach_ipi.h>
Glauber Costadd46e3c2008-03-25 18:10:46 -030044#include <mach_apic.h>
Glauber Costa5af55732008-03-25 13:28:56 -030045
Thomas Gleixneraa276e12008-06-09 19:15:00 +020046static int disable_apic_timer __cpuinitdata;
Chris Wrightbc1d99c2007-10-12 23:04:23 +020047static int apic_calibrate_pmtmr __initdata;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010048int disable_apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010050/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -070051int local_apic_timer_c2_ok;
52EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
53
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010054/*
55 * Debug level, exported for io_apic.c
56 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010057unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010058
Alexey Starikovskiybab4b272008-05-19 19:47:03 +040059/* Have we found an MP table */
60int smp_found_config;
61
Aaron Durbin39928722006-12-07 02:14:01 +010062static struct resource lapic_resource = {
63 .name = "Local APIC",
64 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
65};
66
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020067static unsigned int calibration_result;
68
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020069static int lapic_next_event(unsigned long delta,
70 struct clock_event_device *evt);
71static void lapic_timer_setup(enum clock_event_mode mode,
72 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020073static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +010074static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020075
76static struct clock_event_device lapic_clockevent = {
77 .name = "lapic",
78 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
79 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
80 .shift = 32,
81 .set_mode = lapic_timer_setup,
82 .set_next_event = lapic_next_event,
83 .broadcast = lapic_timer_broadcast,
84 .rating = 100,
85 .irq = -1,
86};
87static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
88
Andi Kleend3432892008-01-30 13:33:17 +010089static unsigned long apic_phys;
90
Alexey Starikovskiy3f530702008-03-27 23:55:47 +030091unsigned long mp_lapic_addr;
92
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +030093unsigned int __cpuinitdata maxcpus = NR_CPUS;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010094/*
95 * Get the LAPIC version
96 */
97static inline int lapic_get_version(void)
98{
99 return GET_APIC_VERSION(apic_read(APIC_LVR));
100}
101
102/*
103 * Check, if the APIC is integrated or a seperate chip
104 */
105static inline int lapic_is_integrated(void)
106{
107 return 1;
108}
109
110/*
111 * Check, whether this is a modern or a first generation APIC
112 */
113static int modern_apic(void)
114{
115 /* AMD systems use old APIC versions, so check the CPU */
116 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
117 boot_cpu_data.x86 >= 0xf)
118 return 1;
119 return lapic_get_version() >= 0x14;
120}
121
122void apic_wait_icr_idle(void)
123{
124 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
125 cpu_relax();
126}
127
128u32 safe_apic_wait_icr_idle(void)
129{
130 u32 send_status;
131 int timeout;
132
133 timeout = 0;
134 do {
135 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
136 if (!send_status)
137 break;
138 udelay(100);
139 } while (timeout++ < 1000);
140
141 return send_status;
142}
143
144/**
145 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
146 */
Jan Beuliche9427102008-01-30 13:31:24 +0100147void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100148{
149 unsigned int v;
150
151 /* unmask and set to NMI */
152 v = APIC_DM_NMI;
153 apic_write(APIC_LVT0, v);
154}
155
156/**
157 * lapic_get_maxlvt - get the maximum number of local vector table entries
158 */
159int lapic_get_maxlvt(void)
160{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200161 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100162
163 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200164 /*
165 * - we always have APIC integrated on 64bit mode
166 * - 82489DXs do not report # of LVT entries
167 */
168 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100169}
170
171/*
172 * This function sets up the local APIC timer, with a timeout of
173 * 'clocks' APIC bus clock. During calibration we actually call
174 * this function twice on the boot CPU, once with a bogus timeout
175 * value, second time for real. The other (noncalibrating) CPUs
176 * call this function only once, with the real, calibrated value.
177 *
178 * We do reads before writes even if unnecessary, to get around the
179 * P5 APIC double write bug.
180 */
181
182static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
183{
184 unsigned int lvtt_value, tmp_value;
185
186 lvtt_value = LOCAL_TIMER_VECTOR;
187 if (!oneshot)
188 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
189 if (!irqen)
190 lvtt_value |= APIC_LVT_MASKED;
191
192 apic_write(APIC_LVTT, lvtt_value);
193
194 /*
195 * Divide PICLK by 16
196 */
197 tmp_value = apic_read(APIC_TDCR);
198 apic_write(APIC_TDCR, (tmp_value
199 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
200 | APIC_TDR_DIV_16);
201
202 if (!oneshot)
203 apic_write(APIC_TMICT, clocks);
204}
205
206/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100207 * Setup extended LVT, AMD specific (K8, family 10h)
208 *
209 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
210 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100211 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100212
213#define APIC_EILVT_LVTOFF_MCE 0
214#define APIC_EILVT_LVTOFF_IBS 1
215
216static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100217{
Robert Richter7b83dae2008-01-30 13:30:40 +0100218 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100219 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
220
221 apic_write(reg, v);
222}
223
Robert Richter7b83dae2008-01-30 13:30:40 +0100224u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
225{
226 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
227 return APIC_EILVT_LVTOFF_MCE;
228}
229
230u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
231{
232 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
233 return APIC_EILVT_LVTOFF_IBS;
234}
235
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100236/*
237 * Program the next event, relative to now
238 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200239static int lapic_next_event(unsigned long delta,
240 struct clock_event_device *evt)
241{
242 apic_write(APIC_TMICT, delta);
243 return 0;
244}
245
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100246/*
247 * Setup the lapic timer in periodic or oneshot mode
248 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200249static void lapic_timer_setup(enum clock_event_mode mode,
250 struct clock_event_device *evt)
251{
252 unsigned long flags;
253 unsigned int v;
254
255 /* Lapic used as dummy for broadcast ? */
256 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
257 return;
258
259 local_irq_save(flags);
260
261 switch (mode) {
262 case CLOCK_EVT_MODE_PERIODIC:
263 case CLOCK_EVT_MODE_ONESHOT:
264 __setup_APIC_LVTT(calibration_result,
265 mode != CLOCK_EVT_MODE_PERIODIC, 1);
266 break;
267 case CLOCK_EVT_MODE_UNUSED:
268 case CLOCK_EVT_MODE_SHUTDOWN:
269 v = apic_read(APIC_LVTT);
270 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
271 apic_write(APIC_LVTT, v);
272 break;
273 case CLOCK_EVT_MODE_RESUME:
274 /* Nothing to do here */
275 break;
276 }
277
278 local_irq_restore(flags);
279}
280
281/*
282 * Local APIC timer broadcast function
283 */
284static void lapic_timer_broadcast(cpumask_t mask)
285{
286#ifdef CONFIG_SMP
287 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
288#endif
289}
290
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100291/*
292 * Setup the local APIC timer for this CPU. Copy the initilized values
293 * of the boot CPU and register the clock event in the framework.
294 */
295static void setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200296{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100297 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
298
299 memcpy(levt, &lapic_clockevent, sizeof(*levt));
300 levt->cpumask = cpumask_of_cpu(smp_processor_id());
301
302 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200303}
304
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100305/*
306 * In this function we calibrate APIC bus clocks to the external
307 * timer. Unfortunately we cannot use jiffies and the timer irq
308 * to calibrate, since some later bootup code depends on getting
309 * the first irq? Ugh.
310 *
311 * We want to do the calibration only once since we
312 * want to have local timer irqs syncron. CPUs connected
313 * by the same APIC bus have the very same bus frequency.
314 * And we want to have irqs off anyways, no accidental
315 * APIC irq that way.
316 */
317
318#define TICK_COUNT 100000000
319
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400320static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200321{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100322 unsigned apic, apic_start;
323 unsigned long tsc, tsc_start;
324 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200325
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100326 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200327
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100328 /*
329 * Put whatever arbitrary (but long enough) timeout
330 * value into the APIC clock, we just want to get the
331 * counter running for calibration.
332 *
333 * No interrupt enable !
334 */
335 __setup_APIC_LVTT(250000000, 0, 0);
336
337 apic_start = apic_read(APIC_TMCCT);
338#ifdef CONFIG_X86_PM_TIMER
339 if (apic_calibrate_pmtmr && pmtmr_ioport) {
340 pmtimer_wait(5000); /* 5ms wait */
341 apic = apic_read(APIC_TMCCT);
342 result = (apic_start - apic) * 1000L / 5;
343 } else
344#endif
345 {
346 rdtscll(tsc_start);
347
348 do {
349 apic = apic_read(APIC_TMCCT);
350 rdtscll(tsc);
351 } while ((tsc - tsc_start) < TICK_COUNT &&
352 (apic_start - apic) < TICK_COUNT);
353
354 result = (apic_start - apic) * 1000L * tsc_khz /
355 (tsc - tsc_start);
356 }
357
358 local_irq_enable();
359
360 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
361
362 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
363 result / 1000 / 1000, result / 1000 % 1000);
364
365 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900366 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
367 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100368 lapic_clockevent.max_delta_ns =
369 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
370 lapic_clockevent.min_delta_ns =
371 clockevent_delta2ns(0xF, &lapic_clockevent);
372
373 calibration_result = result / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400374
375 /*
376 * Do a sanity check on the APIC calibration result
377 */
378 if (calibration_result < (1000000 / HZ)) {
379 printk(KERN_WARNING
380 "APIC frequency too slow, disabling apic timer\n");
381 return -1;
382 }
383
384 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200385}
386
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100387/*
388 * Setup the boot APIC
389 *
390 * Calibrate and verify the result.
391 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100392void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100394 /*
395 * The local apic timer can be disabled via the kernel commandline.
396 * Register the lapic timer as a dummy clock event source on SMP
397 * systems, so the broadcast mechanism is used. On UP systems simply
398 * ignore it.
399 */
400 if (disable_apic_timer) {
401 printk(KERN_INFO "Disabling APIC timer\n");
402 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100403 if (num_possible_cpus() > 1) {
404 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100405 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100406 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100407 return;
408 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200409
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100410 printk(KERN_INFO "Using local APIC timer interrupts.\n");
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400411 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100412 /* No broadcast on UP ! */
413 if (num_possible_cpus() > 1)
414 setup_APIC_timer();
415 return;
416 }
417
418 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100419 * If nmi_watchdog is set to IO_APIC, we need the
420 * PIT/HPET going. Otherwise register lapic as a dummy
421 * device.
422 */
423 if (nmi_watchdog != NMI_IO_APIC)
424 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
425 else
426 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200427 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100428
429 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100432void __cpuinit setup_secondary_APIC_clock(void)
433{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100434 setup_APIC_timer();
435}
436
437/*
438 * The guts of the apic timer interrupt
439 */
440static void local_apic_timer_interrupt(void)
441{
442 int cpu = smp_processor_id();
443 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
444
445 /*
446 * Normally we should not be here till LAPIC has been initialized but
447 * in some cases like kdump, its possible that there is a pending LAPIC
448 * timer interrupt from previous kernel's context and is delivered in
449 * new kernel the moment interrupts are enabled.
450 *
451 * Interrupts are enabled early and LAPIC is setup much later, hence
452 * its possible that when we get here evt->event_handler is NULL.
453 * Check for event_handler being NULL and discard the interrupt as
454 * spurious.
455 */
456 if (!evt->event_handler) {
457 printk(KERN_WARNING
458 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
459 /* Switch it off */
460 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
461 return;
462 }
463
464 /*
465 * the NMI deadlock-detector uses this.
466 */
467 add_pda(apic_timer_irqs, 1);
468
469 evt->event_handler(evt);
470}
471
472/*
473 * Local APIC timer interrupt. This is the most natural way for doing
474 * local interrupts, but local timer interrupts can be emulated by
475 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
476 *
477 * [ if a single-CPU system runs an SMP kernel then we call the local
478 * interrupt as well. Thus we cannot inline the local irq ... ]
479 */
480void smp_apic_timer_interrupt(struct pt_regs *regs)
481{
482 struct pt_regs *old_regs = set_irq_regs(regs);
483
484 /*
485 * NOTE! We'd better ACK the irq immediately,
486 * because timer handling can be slow.
487 */
488 ack_APIC_irq();
489 /*
490 * update_process_times() expects us to have done irq_enter().
491 * Besides, if we don't timer interrupts ignore the global
492 * interrupt lock, which is the WrongThing (tm) to do.
493 */
494 exit_idle();
495 irq_enter();
496 local_apic_timer_interrupt();
497 irq_exit();
498 set_irq_regs(old_regs);
499}
500
501int setup_profiling_timer(unsigned int multiplier)
502{
503 return -EINVAL;
504}
505
506
507/*
508 * Local APIC start and shutdown
509 */
510
511/**
512 * clear_local_APIC - shutdown the local APIC
513 *
514 * This is called, when a CPU is disabled and before rebooting, so the state of
515 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
516 * leftovers during boot.
517 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518void clear_local_APIC(void)
519{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400520 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100521 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Andi Kleend3432892008-01-30 13:33:17 +0100523 /* APIC hasn't been mapped yet */
524 if (!apic_phys)
525 return;
526
527 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200529 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * if the vector is zero. Mask LVTERR first to prevent this.
531 */
532 if (maxlvt >= 3) {
533 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100534 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 /*
537 * Careful: we have to set masks only first to deassert
538 * any level-triggered sources.
539 */
540 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100541 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100543 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100545 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (maxlvt >= 4) {
547 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100548 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
551 /*
552 * Clean APIC state for other OSs:
553 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100554 apic_write(APIC_LVTT, APIC_LVT_MASKED);
555 apic_write(APIC_LVT0, APIC_LVT_MASKED);
556 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100558 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100560 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200561 apic_write(APIC_ESR, 0);
562 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100565/**
566 * disable_local_APIC - clear and disable the local APIC
567 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568void disable_local_APIC(void)
569{
570 unsigned int value;
571
572 clear_local_APIC();
573
574 /*
575 * Disable APIC (implies clearing of registers
576 * for 82489DX!).
577 */
578 value = apic_read(APIC_SPIV);
579 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100580 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700583void lapic_shutdown(void)
584{
585 unsigned long flags;
586
587 if (!cpu_has_apic)
588 return;
589
590 local_irq_save(flags);
591
592 disable_local_APIC();
593
594 local_irq_restore(flags);
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597/*
598 * This is to verify that we're looking at a real local APIC.
599 * Check these against your board if the CPUs aren't getting
600 * started for no apparent reason.
601 */
602int __init verify_local_APIC(void)
603{
604 unsigned int reg0, reg1;
605
606 /*
607 * The version register is read-only in a real APIC.
608 */
609 reg0 = apic_read(APIC_LVR);
610 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
611 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
612 reg1 = apic_read(APIC_LVR);
613 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
614
615 /*
616 * The two version reads above should print the same
617 * numbers. If the second one is different, then we
618 * poke at a non-APIC.
619 */
620 if (reg1 != reg0)
621 return 0;
622
623 /*
624 * Check if the version looks reasonably.
625 */
626 reg1 = GET_APIC_VERSION(reg0);
627 if (reg1 == 0x00 || reg1 == 0xff)
628 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100629 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (reg1 < 0x02 || reg1 == 0xff)
631 return 0;
632
633 /*
634 * The ID register is read/write in a real APIC.
635 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500636 reg0 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
638 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Jack Steiner05f2d122008-03-28 14:12:02 -0500639 reg1 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
641 apic_write(APIC_ID, reg0);
642 if (reg1 != (reg0 ^ APIC_ID_MASK))
643 return 0;
644
645 /*
646 * The next two are just to see if we have sane values.
647 * They're only really relevant if we're in Virtual Wire
648 * compatibility mode, but most boxes are anymore.
649 */
650 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100651 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 reg1 = apic_read(APIC_LVT1);
653 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
654
655 return 1;
656}
657
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100658/**
659 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
660 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661void __init sync_Arb_IDs(void)
662{
663 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100664 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return;
666
667 /*
668 * Wait for idle.
669 */
670 apic_wait_icr_idle();
671
672 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100673 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 | APIC_DM_INIT);
675}
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/*
678 * An initial setup of the virtual wire mode.
679 */
680void __init init_bsp_APIC(void)
681{
Andi Kleen11a8e772006-01-11 22:46:51 +0100682 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /*
685 * Don't do the setup now if we have a SMP BIOS as the
686 * through-I/O-APIC virtual wire mode might be active.
687 */
688 if (smp_found_config || !cpu_has_apic)
689 return;
690
691 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 /*
694 * Do not trust the local APIC being empty at bootup.
695 */
696 clear_local_APIC();
697
698 /*
699 * Enable APIC.
700 */
701 value = apic_read(APIC_SPIV);
702 value &= ~APIC_VECTOR_MASK;
703 value |= APIC_SPIV_APIC_ENABLED;
704 value |= APIC_SPIV_FOCUS_DISABLED;
705 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100706 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 /*
709 * Set up the virtual wire mode.
710 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100711 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100713 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100716/**
717 * setup_local_APIC - setup the local APIC
718 */
719void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Andi Kleen739f33b2008-01-30 13:30:40 +0100721 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100722 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Jack Steinerac23d4e2008-03-28 14:12:16 -0500724 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Andi Kleenfe7414a2006-09-26 10:52:30 +0200727 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 /*
730 * Double-check whether this APIC is really registered.
731 * This is meaningless in clustered apic mode, so we skip it.
732 */
733 if (!apic_id_registered())
734 BUG();
735
736 /*
737 * Intel recommends to set DFR, LDR and TPR before enabling
738 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
739 * document number 292116). So here it goes...
740 */
741 init_apic_ldr();
742
743 /*
744 * Set Task Priority to 'accept all'. We never change this
745 * later on.
746 */
747 value = apic_read(APIC_TASKPRI);
748 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100749 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100752 * After a crash, we no longer service the interrupts and a pending
753 * interrupt from previous kernel might still have ISR bit set.
754 *
755 * Most probably by now CPU has serviced that pending interrupt and
756 * it might not have done the ack_APIC_irq() because it thought,
757 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
758 * does not clear the ISR bit and cpu thinks it has already serivced
759 * the interrupt. Hence a vector might get locked. It was noticed
760 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
761 */
762 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
763 value = apic_read(APIC_ISR + i*0x10);
764 for (j = 31; j >= 0; j--) {
765 if (value & (1<<j))
766 ack_APIC_irq();
767 }
768 }
769
770 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * Now that we are all set up, enable the APIC
772 */
773 value = apic_read(APIC_SPIV);
774 value &= ~APIC_VECTOR_MASK;
775 /*
776 * Enable APIC
777 */
778 value |= APIC_SPIV_APIC_ENABLED;
779
Andi Kleen3f14c742006-09-26 10:52:29 +0200780 /* We always use processor focus */
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /*
783 * Set spurious IRQ vector
784 */
785 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100786 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 /*
789 * Set up LVT0, LVT1:
790 *
791 * set up through-local-APIC on the BP's LINT0. This is not
792 * strictly necessary in pure symmetric-IO mode, but sometimes
793 * we delegate interrupts to the 8259A.
794 */
795 /*
796 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
797 */
798 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200799 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200801 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
802 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 } else {
804 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200805 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
806 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100808 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 /*
811 * only the BP should see the LINT1 NMI signal, obviously.
812 */
813 if (!smp_processor_id())
814 value = APIC_DM_NMI;
815 else
816 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100817 apic_write(APIC_LVT1, value);
Jack Steinerac23d4e2008-03-28 14:12:16 -0500818 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +0100819}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Ingo Molnara4928cf2008-04-23 13:20:56 +0200821static void __cpuinit lapic_setup_esr(void)
Andi Kleen739f33b2008-01-30 13:30:40 +0100822{
823 unsigned maxlvt = lapic_get_maxlvt();
824
825 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100826 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100827 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100828 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100829 if (maxlvt > 3)
830 apic_write(APIC_ESR, 0);
831}
Yinghai Lu1c695242008-01-30 13:30:39 +0100832
Andi Kleen739f33b2008-01-30 13:30:40 +0100833void __cpuinit end_local_APIC_setup(void)
834{
835 lapic_setup_esr();
Don Zickusf2802e72006-09-26 10:52:26 +0200836 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 apic_pm_activate();
838}
839
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100840/*
841 * Detect and enable local APICs on non-SMP boards.
842 * Original code written by Keir Fraser.
843 * On AMD64 we trust the BIOS - if it says no APIC it is likely
844 * not correctly set up (usually the APIC timer won't work etc.)
845 */
846static int __init detect_init_APIC(void)
847{
848 if (!cpu_has_apic) {
849 printk(KERN_INFO "No local APIC present\n");
850 return -1;
851 }
852
853 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300854 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100855 return 0;
856}
857
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800858void __init early_init_lapic_mapping(void)
859{
Thomas Gleixner431ee792008-05-12 15:43:35 +0200860 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800861
862 /*
863 * If no local APIC can be found then go out
864 * : it means there is no mpatable and MADT
865 */
866 if (!smp_found_config)
867 return;
868
Thomas Gleixner431ee792008-05-12 15:43:35 +0200869 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800870
Thomas Gleixner431ee792008-05-12 15:43:35 +0200871 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800872 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +0200873 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800874
875 /*
876 * Fetch the APIC ID of the BSP in case we have a
877 * default configuration (or the MP table is broken).
878 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500879 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800880}
881
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100882/**
883 * init_apic_mappings - initialize APIC mappings
884 */
885void __init init_apic_mappings(void)
886{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100887 /*
888 * If no local APIC can be found then set up a fake all
889 * zeroes page to simulate the local APIC and another
890 * one for the IO-APIC.
891 */
892 if (!smp_found_config && detect_init_APIC()) {
893 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
894 apic_phys = __pa(apic_phys);
895 } else
896 apic_phys = mp_lapic_addr;
897
898 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
899 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
900 APIC_BASE, apic_phys);
901
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100902 /*
903 * Fetch the APIC ID of the BSP in case we have a
904 * default configuration (or the MP table is broken).
905 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500906 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100907}
908
909/*
910 * This initializes the IO-APIC and APIC hardware if this is
911 * a UP kernel.
912 */
913int __init APIC_init_uniprocessor(void)
914{
915 if (disable_apic) {
916 printk(KERN_INFO "Apic disabled\n");
917 return -1;
918 }
919 if (!cpu_has_apic) {
920 disable_apic = 1;
921 printk(KERN_INFO "Apic disabled by BIOS\n");
922 return -1;
923 }
924
925 verify_local_APIC();
926
Glauber Costab5841762008-05-28 13:38:28 -0300927 connect_bsp_APIC();
928
Jack Steinerb6df1b82008-06-19 21:51:05 -0500929 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300930 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100931
932 setup_local_APIC();
933
Andi Kleen739f33b2008-01-30 13:30:40 +0100934 /*
935 * Now enable IO-APICs, actually call clear_IO_APIC
936 * We need clear_IO_APIC before enabling vector on BP
937 */
938 if (!skip_ioapic_setup && nr_ioapics)
939 enable_IO_APIC();
940
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +0100941 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
942 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +0100943 end_local_APIC_setup();
944
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100945 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
946 setup_IO_APIC();
947 else
948 nr_ioapics = 0;
949 setup_boot_APIC_clock();
950 check_nmi_watchdog();
951 return 0;
952}
953
954/*
955 * Local APIC interrupts
956 */
957
958/*
959 * This interrupt should _never_ happen with our APIC/SMP architecture
960 */
961asmlinkage void smp_spurious_interrupt(void)
962{
963 unsigned int v;
964 exit_idle();
965 irq_enter();
966 /*
967 * Check if this really is a spurious interrupt and ACK it
968 * if it is a vectored one. Just in case...
969 * Spurious interrupts should not be ACKed.
970 */
971 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
972 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
973 ack_APIC_irq();
974
975 add_pda(irq_spurious_count, 1);
976 irq_exit();
977}
978
979/*
980 * This interrupt should never happen with our APIC/SMP architecture
981 */
982asmlinkage void smp_error_interrupt(void)
983{
984 unsigned int v, v1;
985
986 exit_idle();
987 irq_enter();
988 /* First tickle the hardware, only then report what went on. -- REW */
989 v = apic_read(APIC_ESR);
990 apic_write(APIC_ESR, 0);
991 v1 = apic_read(APIC_ESR);
992 ack_APIC_irq();
993 atomic_inc(&irq_err_count);
994
995 /* Here is what the APIC error bits mean:
996 0: Send CS error
997 1: Receive CS error
998 2: Send accept error
999 3: Receive accept error
1000 4: Reserved
1001 5: Send illegal vector
1002 6: Received illegal vector
1003 7: Illegal register address
1004 */
1005 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1006 smp_processor_id(), v , v1);
1007 irq_exit();
1008}
1009
Glauber Costab5841762008-05-28 13:38:28 -03001010/**
1011 * * connect_bsp_APIC - attach the APIC to the interrupt system
1012 * */
1013void __init connect_bsp_APIC(void)
1014{
1015 enable_apic_mode();
1016}
1017
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001018void disconnect_bsp_APIC(int virt_wire_setup)
1019{
1020 /* Go back to Virtual Wire compatibility mode */
1021 unsigned long value;
1022
1023 /* For the spurious interrupt use vector F, and enable it */
1024 value = apic_read(APIC_SPIV);
1025 value &= ~APIC_VECTOR_MASK;
1026 value |= APIC_SPIV_APIC_ENABLED;
1027 value |= 0xf;
1028 apic_write(APIC_SPIV, value);
1029
1030 if (!virt_wire_setup) {
1031 /*
1032 * For LVT0 make it edge triggered, active high,
1033 * external and enabled
1034 */
1035 value = apic_read(APIC_LVT0);
1036 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1037 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1038 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1039 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1040 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1041 apic_write(APIC_LVT0, value);
1042 } else {
1043 /* Disable LVT0 */
1044 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1045 }
1046
1047 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1048 value = apic_read(APIC_LVT1);
1049 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1050 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1051 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1052 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1053 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1054 apic_write(APIC_LVT1, value);
1055}
1056
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001057void __cpuinit generic_processor_info(int apicid, int version)
1058{
1059 int cpu;
1060 cpumask_t tmp_map;
1061
1062 if (num_processors >= NR_CPUS) {
1063 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1064 " Processor ignored.\n", NR_CPUS);
1065 return;
1066 }
1067
1068 if (num_processors >= maxcpus) {
1069 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1070 " Processor ignored.\n", maxcpus);
1071 return;
1072 }
1073
1074 num_processors++;
1075 cpus_complement(tmp_map, cpu_present_map);
1076 cpu = first_cpu(tmp_map);
1077
1078 physid_set(apicid, phys_cpu_present_map);
1079 if (apicid == boot_cpu_physical_apicid) {
1080 /*
1081 * x86_bios_cpu_apicid is required to have processors listed
1082 * in same order as logical cpu numbers. Hence the first
1083 * entry is BSP, and so on.
1084 */
1085 cpu = 0;
1086 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001087 if (apicid > max_physical_apicid)
1088 max_physical_apicid = apicid;
1089
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001090 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001091 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1092 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1093 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001094
1095 cpu_to_apicid[cpu] = apicid;
1096 bios_cpu_apicid[cpu] = apicid;
1097 } else {
1098 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1099 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1100 }
1101
1102 cpu_set(cpu, cpu_possible_map);
1103 cpu_set(cpu, cpu_present_map);
1104}
1105
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001106/*
1107 * Power management
1108 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109#ifdef CONFIG_PM
1110
1111static struct {
1112 /* 'active' is true if the local APIC was enabled by us and
1113 not the BIOS; this signifies that we are also responsible
1114 for disabling it before entering apm/acpi suspend */
1115 int active;
1116 /* r/w apic fields */
1117 unsigned int apic_id;
1118 unsigned int apic_taskpri;
1119 unsigned int apic_ldr;
1120 unsigned int apic_dfr;
1121 unsigned int apic_spiv;
1122 unsigned int apic_lvtt;
1123 unsigned int apic_lvtpc;
1124 unsigned int apic_lvt0;
1125 unsigned int apic_lvt1;
1126 unsigned int apic_lvterr;
1127 unsigned int apic_tmict;
1128 unsigned int apic_tdcr;
1129 unsigned int apic_thmr;
1130} apic_pm_state;
1131
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001132static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
1134 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001135 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 if (!apic_pm_state.active)
1138 return 0;
1139
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001140 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001141
Jack Steiner05f2d122008-03-28 14:12:02 -05001142 apic_pm_state.apic_id = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1144 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1145 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1146 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1147 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001148 if (maxlvt >= 4)
1149 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1151 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1152 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1153 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1154 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001155#ifdef CONFIG_X86_MCE_INTEL
1156 if (maxlvt >= 5)
1157 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1158#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001159 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 disable_local_APIC();
1161 local_irq_restore(flags);
1162 return 0;
1163}
1164
1165static int lapic_resume(struct sys_device *dev)
1166{
1167 unsigned int l, h;
1168 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001169 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 if (!apic_pm_state.active)
1172 return 0;
1173
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001174 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 local_irq_save(flags);
1177 rdmsr(MSR_IA32_APICBASE, l, h);
1178 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +01001179 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 wrmsr(MSR_IA32_APICBASE, l, h);
1181 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1182 apic_write(APIC_ID, apic_pm_state.apic_id);
1183 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1184 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1185 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1186 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1187 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1188 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001189#ifdef CONFIG_X86_MCE_INTEL
1190 if (maxlvt >= 5)
1191 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1192#endif
1193 if (maxlvt >= 4)
1194 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1196 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1197 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1198 apic_write(APIC_ESR, 0);
1199 apic_read(APIC_ESR);
1200 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1201 apic_write(APIC_ESR, 0);
1202 apic_read(APIC_ESR);
1203 local_irq_restore(flags);
1204 return 0;
1205}
1206
1207static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001208 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 .resume = lapic_resume,
1210 .suspend = lapic_suspend,
1211};
1212
1213static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001214 .id = 0,
1215 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216};
1217
Ashok Raje6982c62005-06-25 14:54:58 -07001218static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 apic_pm_state.active = 1;
1221}
1222
1223static int __init init_lapic_sysfs(void)
1224{
1225 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (!cpu_has_apic)
1228 return 0;
1229 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 error = sysdev_class_register(&lapic_sysclass);
1232 if (!error)
1233 error = sysdev_register(&device_lapic);
1234 return error;
1235}
1236device_initcall(init_lapic_sysfs);
1237
1238#else /* CONFIG_PM */
1239
1240static void apic_pm_activate(void) { }
1241
1242#endif /* CONFIG_PM */
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001245 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 *
1247 * Thus far, the major user of this is IBM's Summit2 series:
1248 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001249 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 * multi-chassis. Use available data to take a good guess.
1251 * If in doubt, go HPET.
1252 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001253__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 int i, clusters, zeros;
1256 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001257 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1259
Yinghai Lu322850a2008-02-23 21:48:42 -08001260 /*
1261 * there is not this kind of box with AMD CPU yet.
1262 * Some AMD box with quadcore cpu and 8 sockets apicid
1263 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001264 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001265 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001266 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001267 return 0;
1268
Mike Travis23ca4bb2008-05-12 21:21:12 +02001269 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001270 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001273 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001274 if (bios_cpu_apicid) {
1275 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001276 }
1277 else if (i < nr_cpu_ids) {
1278 if (cpu_present(i))
1279 id = per_cpu(x86_bios_cpu_apicid, i);
1280 else
1281 continue;
1282 }
1283 else
1284 break;
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (id != BAD_APICID)
1287 __set_bit(APIC_CLUSTERID(id), clustermap);
1288 }
1289
1290 /* Problem: Partially populated chassis may not have CPUs in some of
1291 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001292 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1293 * Since clusters are allocated sequentially, count zeros only if
1294 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 */
1296 clusters = 0;
1297 zeros = 0;
1298 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1299 if (test_bit(i, clustermap)) {
1300 clusters += 1 + zeros;
1301 zeros = 0;
1302 } else
1303 ++zeros;
1304 }
1305
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001306 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1307 * not guaranteed to be synced between boards
1308 */
1309 if (is_vsmp_box() && clusters > 1)
1310 return 1;
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001313 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 * May have to revisit this when multi-core + hyperthreaded CPUs come
1315 * out, but AFAIK this will work even for them.
1316 */
1317 return (clusters > 2);
1318}
1319
1320/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001321 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001323static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001325 if (str == NULL) {
1326 skip_ioapic_setup = 0;
1327 ioapic_force = 1;
1328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001330 if (strcmp("debug", str) == 0)
1331 apic_verbosity = APIC_DEBUG;
1332 else if (strcmp("verbose", str) == 0)
1333 apic_verbosity = APIC_VERBOSE;
1334 else {
1335 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1336 " use apic=verbose or apic=debug\n", str);
1337 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return 0;
1341}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001342early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001344static __init int setup_disableapic(char *str)
1345{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001347 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001348 return 0;
1349}
1350early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001352/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001353static __init int setup_nolapic(char *str)
1354{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001355 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001356}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001357early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001359static int __init parse_lapic_timer_c2_ok(char *arg)
1360{
1361 local_apic_timer_c2_ok = 1;
1362 return 0;
1363}
1364early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1365
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001366static __init int setup_noapictimer(char *str)
1367{
Andi Kleen73dea472006-02-03 21:50:50 +01001368 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001371 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001372}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001373__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001374
Andi Kleen0c3749c2006-02-03 21:51:41 +01001375static __init int setup_apicpmtimer(char *s)
1376{
1377 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001378 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001379 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001380}
1381__setup("apicpmtimer", setup_apicpmtimer);
1382
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001383static int __init lapic_insert_resource(void)
1384{
1385 if (!apic_phys)
1386 return -1;
1387
1388 /* Put local APIC into the resource map. */
1389 lapic_resource.start = apic_phys;
1390 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1391 insert_resource(&iomem_resource, &lapic_resource);
1392
1393 return 0;
1394}
1395
1396/*
1397 * need call insert after e820_reserve_resources()
1398 * that is using request_resource
1399 */
1400late_initcall(lapic_insert_resource);