blob: 7615b4b9c3f3df5721e61bd9711915d1eedfb363 [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;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200153
154 /* Level triggered for 82489DX (32bit mode) */
155 if (!lapic_is_integrated())
156 v |= APIC_LVT_LEVEL_TRIGGER;
157
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100158 apic_write(APIC_LVT0, v);
159}
160
161/**
162 * lapic_get_maxlvt - get the maximum number of local vector table entries
163 */
164int lapic_get_maxlvt(void)
165{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200166 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100167
168 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200169 /*
170 * - we always have APIC integrated on 64bit mode
171 * - 82489DXs do not report # of LVT entries
172 */
173 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100174}
175
176/*
177 * This function sets up the local APIC timer, with a timeout of
178 * 'clocks' APIC bus clock. During calibration we actually call
179 * this function twice on the boot CPU, once with a bogus timeout
180 * value, second time for real. The other (noncalibrating) CPUs
181 * call this function only once, with the real, calibrated value.
182 *
183 * We do reads before writes even if unnecessary, to get around the
184 * P5 APIC double write bug.
185 */
186
187static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
188{
189 unsigned int lvtt_value, tmp_value;
190
191 lvtt_value = LOCAL_TIMER_VECTOR;
192 if (!oneshot)
193 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
194 if (!irqen)
195 lvtt_value |= APIC_LVT_MASKED;
196
197 apic_write(APIC_LVTT, lvtt_value);
198
199 /*
200 * Divide PICLK by 16
201 */
202 tmp_value = apic_read(APIC_TDCR);
203 apic_write(APIC_TDCR, (tmp_value
204 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
205 | APIC_TDR_DIV_16);
206
207 if (!oneshot)
208 apic_write(APIC_TMICT, clocks);
209}
210
211/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100212 * Setup extended LVT, AMD specific (K8, family 10h)
213 *
214 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
215 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100216 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100217
218#define APIC_EILVT_LVTOFF_MCE 0
219#define APIC_EILVT_LVTOFF_IBS 1
220
221static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100222{
Robert Richter7b83dae2008-01-30 13:30:40 +0100223 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100224 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
225
226 apic_write(reg, v);
227}
228
Robert Richter7b83dae2008-01-30 13:30:40 +0100229u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
230{
231 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
232 return APIC_EILVT_LVTOFF_MCE;
233}
234
235u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
236{
237 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
238 return APIC_EILVT_LVTOFF_IBS;
239}
240
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100241/*
242 * Program the next event, relative to now
243 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200244static int lapic_next_event(unsigned long delta,
245 struct clock_event_device *evt)
246{
247 apic_write(APIC_TMICT, delta);
248 return 0;
249}
250
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100251/*
252 * Setup the lapic timer in periodic or oneshot mode
253 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200254static void lapic_timer_setup(enum clock_event_mode mode,
255 struct clock_event_device *evt)
256{
257 unsigned long flags;
258 unsigned int v;
259
260 /* Lapic used as dummy for broadcast ? */
261 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
262 return;
263
264 local_irq_save(flags);
265
266 switch (mode) {
267 case CLOCK_EVT_MODE_PERIODIC:
268 case CLOCK_EVT_MODE_ONESHOT:
269 __setup_APIC_LVTT(calibration_result,
270 mode != CLOCK_EVT_MODE_PERIODIC, 1);
271 break;
272 case CLOCK_EVT_MODE_UNUSED:
273 case CLOCK_EVT_MODE_SHUTDOWN:
274 v = apic_read(APIC_LVTT);
275 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
276 apic_write(APIC_LVTT, v);
277 break;
278 case CLOCK_EVT_MODE_RESUME:
279 /* Nothing to do here */
280 break;
281 }
282
283 local_irq_restore(flags);
284}
285
286/*
287 * Local APIC timer broadcast function
288 */
289static void lapic_timer_broadcast(cpumask_t mask)
290{
291#ifdef CONFIG_SMP
292 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
293#endif
294}
295
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100296/*
297 * Setup the local APIC timer for this CPU. Copy the initilized values
298 * of the boot CPU and register the clock event in the framework.
299 */
300static void setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200301{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100302 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
303
304 memcpy(levt, &lapic_clockevent, sizeof(*levt));
305 levt->cpumask = cpumask_of_cpu(smp_processor_id());
306
307 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200308}
309
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100310/*
311 * In this function we calibrate APIC bus clocks to the external
312 * timer. Unfortunately we cannot use jiffies and the timer irq
313 * to calibrate, since some later bootup code depends on getting
314 * the first irq? Ugh.
315 *
316 * We want to do the calibration only once since we
317 * want to have local timer irqs syncron. CPUs connected
318 * by the same APIC bus have the very same bus frequency.
319 * And we want to have irqs off anyways, no accidental
320 * APIC irq that way.
321 */
322
323#define TICK_COUNT 100000000
324
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400325static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200326{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100327 unsigned apic, apic_start;
328 unsigned long tsc, tsc_start;
329 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200330
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100331 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200332
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100333 /*
334 * Put whatever arbitrary (but long enough) timeout
335 * value into the APIC clock, we just want to get the
336 * counter running for calibration.
337 *
338 * No interrupt enable !
339 */
340 __setup_APIC_LVTT(250000000, 0, 0);
341
342 apic_start = apic_read(APIC_TMCCT);
343#ifdef CONFIG_X86_PM_TIMER
344 if (apic_calibrate_pmtmr && pmtmr_ioport) {
345 pmtimer_wait(5000); /* 5ms wait */
346 apic = apic_read(APIC_TMCCT);
347 result = (apic_start - apic) * 1000L / 5;
348 } else
349#endif
350 {
351 rdtscll(tsc_start);
352
353 do {
354 apic = apic_read(APIC_TMCCT);
355 rdtscll(tsc);
356 } while ((tsc - tsc_start) < TICK_COUNT &&
357 (apic_start - apic) < TICK_COUNT);
358
359 result = (apic_start - apic) * 1000L * tsc_khz /
360 (tsc - tsc_start);
361 }
362
363 local_irq_enable();
364
365 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
366
367 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
368 result / 1000 / 1000, result / 1000 % 1000);
369
370 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900371 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
372 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100373 lapic_clockevent.max_delta_ns =
374 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
375 lapic_clockevent.min_delta_ns =
376 clockevent_delta2ns(0xF, &lapic_clockevent);
377
378 calibration_result = result / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400379
380 /*
381 * Do a sanity check on the APIC calibration result
382 */
383 if (calibration_result < (1000000 / HZ)) {
384 printk(KERN_WARNING
385 "APIC frequency too slow, disabling apic timer\n");
386 return -1;
387 }
388
389 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200390}
391
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100392/*
393 * Setup the boot APIC
394 *
395 * Calibrate and verify the result.
396 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100397void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100399 /*
400 * The local apic timer can be disabled via the kernel commandline.
401 * Register the lapic timer as a dummy clock event source on SMP
402 * systems, so the broadcast mechanism is used. On UP systems simply
403 * ignore it.
404 */
405 if (disable_apic_timer) {
406 printk(KERN_INFO "Disabling APIC timer\n");
407 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100408 if (num_possible_cpus() > 1) {
409 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100410 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100411 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100412 return;
413 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200414
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100415 printk(KERN_INFO "Using local APIC timer interrupts.\n");
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400416 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100417 /* No broadcast on UP ! */
418 if (num_possible_cpus() > 1)
419 setup_APIC_timer();
420 return;
421 }
422
423 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100424 * If nmi_watchdog is set to IO_APIC, we need the
425 * PIT/HPET going. Otherwise register lapic as a dummy
426 * device.
427 */
428 if (nmi_watchdog != NMI_IO_APIC)
429 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
430 else
431 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200432 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100433
434 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100437void __cpuinit setup_secondary_APIC_clock(void)
438{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100439 setup_APIC_timer();
440}
441
442/*
443 * The guts of the apic timer interrupt
444 */
445static void local_apic_timer_interrupt(void)
446{
447 int cpu = smp_processor_id();
448 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
449
450 /*
451 * Normally we should not be here till LAPIC has been initialized but
452 * in some cases like kdump, its possible that there is a pending LAPIC
453 * timer interrupt from previous kernel's context and is delivered in
454 * new kernel the moment interrupts are enabled.
455 *
456 * Interrupts are enabled early and LAPIC is setup much later, hence
457 * its possible that when we get here evt->event_handler is NULL.
458 * Check for event_handler being NULL and discard the interrupt as
459 * spurious.
460 */
461 if (!evt->event_handler) {
462 printk(KERN_WARNING
463 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
464 /* Switch it off */
465 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
466 return;
467 }
468
469 /*
470 * the NMI deadlock-detector uses this.
471 */
472 add_pda(apic_timer_irqs, 1);
473
474 evt->event_handler(evt);
475}
476
477/*
478 * Local APIC timer interrupt. This is the most natural way for doing
479 * local interrupts, but local timer interrupts can be emulated by
480 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
481 *
482 * [ if a single-CPU system runs an SMP kernel then we call the local
483 * interrupt as well. Thus we cannot inline the local irq ... ]
484 */
485void smp_apic_timer_interrupt(struct pt_regs *regs)
486{
487 struct pt_regs *old_regs = set_irq_regs(regs);
488
489 /*
490 * NOTE! We'd better ACK the irq immediately,
491 * because timer handling can be slow.
492 */
493 ack_APIC_irq();
494 /*
495 * update_process_times() expects us to have done irq_enter().
496 * Besides, if we don't timer interrupts ignore the global
497 * interrupt lock, which is the WrongThing (tm) to do.
498 */
499 exit_idle();
500 irq_enter();
501 local_apic_timer_interrupt();
502 irq_exit();
503 set_irq_regs(old_regs);
504}
505
506int setup_profiling_timer(unsigned int multiplier)
507{
508 return -EINVAL;
509}
510
511
512/*
513 * Local APIC start and shutdown
514 */
515
516/**
517 * clear_local_APIC - shutdown the local APIC
518 *
519 * This is called, when a CPU is disabled and before rebooting, so the state of
520 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
521 * leftovers during boot.
522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523void clear_local_APIC(void)
524{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400525 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100526 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Andi Kleend3432892008-01-30 13:33:17 +0100528 /* APIC hasn't been mapped yet */
529 if (!apic_phys)
530 return;
531
532 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200534 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * if the vector is zero. Mask LVTERR first to prevent this.
536 */
537 if (maxlvt >= 3) {
538 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100539 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541 /*
542 * Careful: we have to set masks only first to deassert
543 * any level-triggered sources.
544 */
545 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100546 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100548 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100550 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (maxlvt >= 4) {
552 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100553 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
556 /*
557 * Clean APIC state for other OSs:
558 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100559 apic_write(APIC_LVTT, APIC_LVT_MASKED);
560 apic_write(APIC_LVT0, APIC_LVT_MASKED);
561 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100563 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100565 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200566 apic_write(APIC_ESR, 0);
567 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100570/**
571 * disable_local_APIC - clear and disable the local APIC
572 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573void disable_local_APIC(void)
574{
575 unsigned int value;
576
577 clear_local_APIC();
578
579 /*
580 * Disable APIC (implies clearing of registers
581 * for 82489DX!).
582 */
583 value = apic_read(APIC_SPIV);
584 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100585 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700588void lapic_shutdown(void)
589{
590 unsigned long flags;
591
592 if (!cpu_has_apic)
593 return;
594
595 local_irq_save(flags);
596
597 disable_local_APIC();
598
599 local_irq_restore(flags);
600}
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602/*
603 * This is to verify that we're looking at a real local APIC.
604 * Check these against your board if the CPUs aren't getting
605 * started for no apparent reason.
606 */
607int __init verify_local_APIC(void)
608{
609 unsigned int reg0, reg1;
610
611 /*
612 * The version register is read-only in a real APIC.
613 */
614 reg0 = apic_read(APIC_LVR);
615 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
616 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
617 reg1 = apic_read(APIC_LVR);
618 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
619
620 /*
621 * The two version reads above should print the same
622 * numbers. If the second one is different, then we
623 * poke at a non-APIC.
624 */
625 if (reg1 != reg0)
626 return 0;
627
628 /*
629 * Check if the version looks reasonably.
630 */
631 reg1 = GET_APIC_VERSION(reg0);
632 if (reg1 == 0x00 || reg1 == 0xff)
633 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100634 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (reg1 < 0x02 || reg1 == 0xff)
636 return 0;
637
638 /*
639 * The ID register is read/write in a real APIC.
640 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500641 reg0 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
643 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Jack Steiner05f2d122008-03-28 14:12:02 -0500644 reg1 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
646 apic_write(APIC_ID, reg0);
647 if (reg1 != (reg0 ^ APIC_ID_MASK))
648 return 0;
649
650 /*
651 * The next two are just to see if we have sane values.
652 * They're only really relevant if we're in Virtual Wire
653 * compatibility mode, but most boxes are anymore.
654 */
655 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100656 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 reg1 = apic_read(APIC_LVT1);
658 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
659
660 return 1;
661}
662
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100663/**
664 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
665 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666void __init sync_Arb_IDs(void)
667{
668 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100669 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return;
671
672 /*
673 * Wait for idle.
674 */
675 apic_wait_icr_idle();
676
677 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100678 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 | APIC_DM_INIT);
680}
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/*
683 * An initial setup of the virtual wire mode.
684 */
685void __init init_bsp_APIC(void)
686{
Andi Kleen11a8e772006-01-11 22:46:51 +0100687 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 /*
690 * Don't do the setup now if we have a SMP BIOS as the
691 * through-I/O-APIC virtual wire mode might be active.
692 */
693 if (smp_found_config || !cpu_has_apic)
694 return;
695
696 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 /*
699 * Do not trust the local APIC being empty at bootup.
700 */
701 clear_local_APIC();
702
703 /*
704 * Enable APIC.
705 */
706 value = apic_read(APIC_SPIV);
707 value &= ~APIC_VECTOR_MASK;
708 value |= APIC_SPIV_APIC_ENABLED;
709 value |= APIC_SPIV_FOCUS_DISABLED;
710 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100711 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /*
714 * Set up the virtual wire mode.
715 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100716 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100718 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100721/**
722 * setup_local_APIC - setup the local APIC
723 */
724void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Andi Kleen739f33b2008-01-30 13:30:40 +0100726 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100727 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jack Steinerac23d4e2008-03-28 14:12:16 -0500729 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Andi Kleenfe7414a2006-09-26 10:52:30 +0200732 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 /*
735 * Double-check whether this APIC is really registered.
736 * This is meaningless in clustered apic mode, so we skip it.
737 */
738 if (!apic_id_registered())
739 BUG();
740
741 /*
742 * Intel recommends to set DFR, LDR and TPR before enabling
743 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
744 * document number 292116). So here it goes...
745 */
746 init_apic_ldr();
747
748 /*
749 * Set Task Priority to 'accept all'. We never change this
750 * later on.
751 */
752 value = apic_read(APIC_TASKPRI);
753 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100754 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100757 * After a crash, we no longer service the interrupts and a pending
758 * interrupt from previous kernel might still have ISR bit set.
759 *
760 * Most probably by now CPU has serviced that pending interrupt and
761 * it might not have done the ack_APIC_irq() because it thought,
762 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
763 * does not clear the ISR bit and cpu thinks it has already serivced
764 * the interrupt. Hence a vector might get locked. It was noticed
765 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
766 */
767 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
768 value = apic_read(APIC_ISR + i*0x10);
769 for (j = 31; j >= 0; j--) {
770 if (value & (1<<j))
771 ack_APIC_irq();
772 }
773 }
774
775 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * Now that we are all set up, enable the APIC
777 */
778 value = apic_read(APIC_SPIV);
779 value &= ~APIC_VECTOR_MASK;
780 /*
781 * Enable APIC
782 */
783 value |= APIC_SPIV_APIC_ENABLED;
784
Andi Kleen3f14c742006-09-26 10:52:29 +0200785 /* We always use processor focus */
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /*
788 * Set spurious IRQ vector
789 */
790 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100791 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /*
794 * Set up LVT0, LVT1:
795 *
796 * set up through-local-APIC on the BP's LINT0. This is not
797 * strictly necessary in pure symmetric-IO mode, but sometimes
798 * we delegate interrupts to the 8259A.
799 */
800 /*
801 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
802 */
803 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200804 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200806 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
807 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 } else {
809 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200810 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
811 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100813 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /*
816 * only the BP should see the LINT1 NMI signal, obviously.
817 */
818 if (!smp_processor_id())
819 value = APIC_DM_NMI;
820 else
821 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100822 apic_write(APIC_LVT1, value);
Jack Steinerac23d4e2008-03-28 14:12:16 -0500823 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +0100824}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Ingo Molnara4928cf2008-04-23 13:20:56 +0200826static void __cpuinit lapic_setup_esr(void)
Andi Kleen739f33b2008-01-30 13:30:40 +0100827{
828 unsigned maxlvt = lapic_get_maxlvt();
829
830 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100831 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100832 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100833 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100834 if (maxlvt > 3)
835 apic_write(APIC_ESR, 0);
836}
Yinghai Lu1c695242008-01-30 13:30:39 +0100837
Andi Kleen739f33b2008-01-30 13:30:40 +0100838void __cpuinit end_local_APIC_setup(void)
839{
840 lapic_setup_esr();
Don Zickusf2802e72006-09-26 10:52:26 +0200841 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 apic_pm_activate();
843}
844
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100845/*
846 * Detect and enable local APICs on non-SMP boards.
847 * Original code written by Keir Fraser.
848 * On AMD64 we trust the BIOS - if it says no APIC it is likely
849 * not correctly set up (usually the APIC timer won't work etc.)
850 */
851static int __init detect_init_APIC(void)
852{
853 if (!cpu_has_apic) {
854 printk(KERN_INFO "No local APIC present\n");
855 return -1;
856 }
857
858 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300859 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100860 return 0;
861}
862
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800863void __init early_init_lapic_mapping(void)
864{
Thomas Gleixner431ee792008-05-12 15:43:35 +0200865 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800866
867 /*
868 * If no local APIC can be found then go out
869 * : it means there is no mpatable and MADT
870 */
871 if (!smp_found_config)
872 return;
873
Thomas Gleixner431ee792008-05-12 15:43:35 +0200874 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800875
Thomas Gleixner431ee792008-05-12 15:43:35 +0200876 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800877 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +0200878 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800879
880 /*
881 * Fetch the APIC ID of the BSP in case we have a
882 * default configuration (or the MP table is broken).
883 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500884 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800885}
886
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100887/**
888 * init_apic_mappings - initialize APIC mappings
889 */
890void __init init_apic_mappings(void)
891{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100892 /*
893 * If no local APIC can be found then set up a fake all
894 * zeroes page to simulate the local APIC and another
895 * one for the IO-APIC.
896 */
897 if (!smp_found_config && detect_init_APIC()) {
898 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
899 apic_phys = __pa(apic_phys);
900 } else
901 apic_phys = mp_lapic_addr;
902
903 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
904 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
905 APIC_BASE, apic_phys);
906
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100907 /*
908 * Fetch the APIC ID of the BSP in case we have a
909 * default configuration (or the MP table is broken).
910 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500911 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100912}
913
914/*
915 * This initializes the IO-APIC and APIC hardware if this is
916 * a UP kernel.
917 */
918int __init APIC_init_uniprocessor(void)
919{
920 if (disable_apic) {
921 printk(KERN_INFO "Apic disabled\n");
922 return -1;
923 }
924 if (!cpu_has_apic) {
925 disable_apic = 1;
926 printk(KERN_INFO "Apic disabled by BIOS\n");
927 return -1;
928 }
929
930 verify_local_APIC();
931
Glauber Costab5841762008-05-28 13:38:28 -0300932 connect_bsp_APIC();
933
Jack Steinerb6df1b82008-06-19 21:51:05 -0500934 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300935 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100936
937 setup_local_APIC();
938
Andi Kleen739f33b2008-01-30 13:30:40 +0100939 /*
940 * Now enable IO-APICs, actually call clear_IO_APIC
941 * We need clear_IO_APIC before enabling vector on BP
942 */
943 if (!skip_ioapic_setup && nr_ioapics)
944 enable_IO_APIC();
945
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +0100946 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
947 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +0100948 end_local_APIC_setup();
949
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100950 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
951 setup_IO_APIC();
952 else
953 nr_ioapics = 0;
954 setup_boot_APIC_clock();
955 check_nmi_watchdog();
956 return 0;
957}
958
959/*
960 * Local APIC interrupts
961 */
962
963/*
964 * This interrupt should _never_ happen with our APIC/SMP architecture
965 */
966asmlinkage void smp_spurious_interrupt(void)
967{
968 unsigned int v;
969 exit_idle();
970 irq_enter();
971 /*
972 * Check if this really is a spurious interrupt and ACK it
973 * if it is a vectored one. Just in case...
974 * Spurious interrupts should not be ACKed.
975 */
976 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
977 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
978 ack_APIC_irq();
979
980 add_pda(irq_spurious_count, 1);
981 irq_exit();
982}
983
984/*
985 * This interrupt should never happen with our APIC/SMP architecture
986 */
987asmlinkage void smp_error_interrupt(void)
988{
989 unsigned int v, v1;
990
991 exit_idle();
992 irq_enter();
993 /* First tickle the hardware, only then report what went on. -- REW */
994 v = apic_read(APIC_ESR);
995 apic_write(APIC_ESR, 0);
996 v1 = apic_read(APIC_ESR);
997 ack_APIC_irq();
998 atomic_inc(&irq_err_count);
999
1000 /* Here is what the APIC error bits mean:
1001 0: Send CS error
1002 1: Receive CS error
1003 2: Send accept error
1004 3: Receive accept error
1005 4: Reserved
1006 5: Send illegal vector
1007 6: Received illegal vector
1008 7: Illegal register address
1009 */
1010 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1011 smp_processor_id(), v , v1);
1012 irq_exit();
1013}
1014
Glauber Costab5841762008-05-28 13:38:28 -03001015/**
1016 * * connect_bsp_APIC - attach the APIC to the interrupt system
1017 * */
1018void __init connect_bsp_APIC(void)
1019{
1020 enable_apic_mode();
1021}
1022
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001023void disconnect_bsp_APIC(int virt_wire_setup)
1024{
1025 /* Go back to Virtual Wire compatibility mode */
1026 unsigned long value;
1027
1028 /* For the spurious interrupt use vector F, and enable it */
1029 value = apic_read(APIC_SPIV);
1030 value &= ~APIC_VECTOR_MASK;
1031 value |= APIC_SPIV_APIC_ENABLED;
1032 value |= 0xf;
1033 apic_write(APIC_SPIV, value);
1034
1035 if (!virt_wire_setup) {
1036 /*
1037 * For LVT0 make it edge triggered, active high,
1038 * external and enabled
1039 */
1040 value = apic_read(APIC_LVT0);
1041 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1042 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1043 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1044 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1045 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1046 apic_write(APIC_LVT0, value);
1047 } else {
1048 /* Disable LVT0 */
1049 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1050 }
1051
1052 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1053 value = apic_read(APIC_LVT1);
1054 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1055 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1056 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1057 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1058 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1059 apic_write(APIC_LVT1, value);
1060}
1061
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001062void __cpuinit generic_processor_info(int apicid, int version)
1063{
1064 int cpu;
1065 cpumask_t tmp_map;
1066
1067 if (num_processors >= NR_CPUS) {
1068 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1069 " Processor ignored.\n", NR_CPUS);
1070 return;
1071 }
1072
1073 if (num_processors >= maxcpus) {
1074 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1075 " Processor ignored.\n", maxcpus);
1076 return;
1077 }
1078
1079 num_processors++;
1080 cpus_complement(tmp_map, cpu_present_map);
1081 cpu = first_cpu(tmp_map);
1082
1083 physid_set(apicid, phys_cpu_present_map);
1084 if (apicid == boot_cpu_physical_apicid) {
1085 /*
1086 * x86_bios_cpu_apicid is required to have processors listed
1087 * in same order as logical cpu numbers. Hence the first
1088 * entry is BSP, and so on.
1089 */
1090 cpu = 0;
1091 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001092 if (apicid > max_physical_apicid)
1093 max_physical_apicid = apicid;
1094
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001095 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001096 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1097 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1098 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001099
1100 cpu_to_apicid[cpu] = apicid;
1101 bios_cpu_apicid[cpu] = apicid;
1102 } else {
1103 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1104 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1105 }
1106
1107 cpu_set(cpu, cpu_possible_map);
1108 cpu_set(cpu, cpu_present_map);
1109}
1110
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001111/*
1112 * Power management
1113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114#ifdef CONFIG_PM
1115
1116static struct {
1117 /* 'active' is true if the local APIC was enabled by us and
1118 not the BIOS; this signifies that we are also responsible
1119 for disabling it before entering apm/acpi suspend */
1120 int active;
1121 /* r/w apic fields */
1122 unsigned int apic_id;
1123 unsigned int apic_taskpri;
1124 unsigned int apic_ldr;
1125 unsigned int apic_dfr;
1126 unsigned int apic_spiv;
1127 unsigned int apic_lvtt;
1128 unsigned int apic_lvtpc;
1129 unsigned int apic_lvt0;
1130 unsigned int apic_lvt1;
1131 unsigned int apic_lvterr;
1132 unsigned int apic_tmict;
1133 unsigned int apic_tdcr;
1134 unsigned int apic_thmr;
1135} apic_pm_state;
1136
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001137static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
1139 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001140 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 if (!apic_pm_state.active)
1143 return 0;
1144
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001145 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001146
Jack Steiner05f2d122008-03-28 14:12:02 -05001147 apic_pm_state.apic_id = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1149 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1150 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1151 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1152 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001153 if (maxlvt >= 4)
1154 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1156 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1157 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1158 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1159 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001160#ifdef CONFIG_X86_MCE_INTEL
1161 if (maxlvt >= 5)
1162 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1163#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001164 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 disable_local_APIC();
1166 local_irq_restore(flags);
1167 return 0;
1168}
1169
1170static int lapic_resume(struct sys_device *dev)
1171{
1172 unsigned int l, h;
1173 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001174 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 if (!apic_pm_state.active)
1177 return 0;
1178
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001179 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 local_irq_save(flags);
1182 rdmsr(MSR_IA32_APICBASE, l, h);
1183 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +01001184 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 wrmsr(MSR_IA32_APICBASE, l, h);
1186 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1187 apic_write(APIC_ID, apic_pm_state.apic_id);
1188 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1189 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1190 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1191 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1192 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1193 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001194#ifdef CONFIG_X86_MCE_INTEL
1195 if (maxlvt >= 5)
1196 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1197#endif
1198 if (maxlvt >= 4)
1199 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1201 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1202 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1203 apic_write(APIC_ESR, 0);
1204 apic_read(APIC_ESR);
1205 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1206 apic_write(APIC_ESR, 0);
1207 apic_read(APIC_ESR);
1208 local_irq_restore(flags);
1209 return 0;
1210}
1211
1212static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001213 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 .resume = lapic_resume,
1215 .suspend = lapic_suspend,
1216};
1217
1218static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001219 .id = 0,
1220 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221};
1222
Ashok Raje6982c62005-06-25 14:54:58 -07001223static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 apic_pm_state.active = 1;
1226}
1227
1228static int __init init_lapic_sysfs(void)
1229{
1230 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (!cpu_has_apic)
1233 return 0;
1234 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 error = sysdev_class_register(&lapic_sysclass);
1237 if (!error)
1238 error = sysdev_register(&device_lapic);
1239 return error;
1240}
1241device_initcall(init_lapic_sysfs);
1242
1243#else /* CONFIG_PM */
1244
1245static void apic_pm_activate(void) { }
1246
1247#endif /* CONFIG_PM */
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001250 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 *
1252 * Thus far, the major user of this is IBM's Summit2 series:
1253 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001254 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 * multi-chassis. Use available data to take a good guess.
1256 * If in doubt, go HPET.
1257 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001258__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 int i, clusters, zeros;
1261 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001262 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1264
Yinghai Lu322850a2008-02-23 21:48:42 -08001265 /*
1266 * there is not this kind of box with AMD CPU yet.
1267 * Some AMD box with quadcore cpu and 8 sockets apicid
1268 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001269 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001270 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001271 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001272 return 0;
1273
Mike Travis23ca4bb2008-05-12 21:21:12 +02001274 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001275 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001278 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001279 if (bios_cpu_apicid) {
1280 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001281 }
1282 else if (i < nr_cpu_ids) {
1283 if (cpu_present(i))
1284 id = per_cpu(x86_bios_cpu_apicid, i);
1285 else
1286 continue;
1287 }
1288 else
1289 break;
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (id != BAD_APICID)
1292 __set_bit(APIC_CLUSTERID(id), clustermap);
1293 }
1294
1295 /* Problem: Partially populated chassis may not have CPUs in some of
1296 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001297 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1298 * Since clusters are allocated sequentially, count zeros only if
1299 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 */
1301 clusters = 0;
1302 zeros = 0;
1303 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1304 if (test_bit(i, clustermap)) {
1305 clusters += 1 + zeros;
1306 zeros = 0;
1307 } else
1308 ++zeros;
1309 }
1310
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001311 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1312 * not guaranteed to be synced between boards
1313 */
1314 if (is_vsmp_box() && clusters > 1)
1315 return 1;
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001318 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 * May have to revisit this when multi-core + hyperthreaded CPUs come
1320 * out, but AFAIK this will work even for them.
1321 */
1322 return (clusters > 2);
1323}
1324
1325/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001326 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001328static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001330 if (str == NULL) {
1331 skip_ioapic_setup = 0;
1332 ioapic_force = 1;
1333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001335 if (strcmp("debug", str) == 0)
1336 apic_verbosity = APIC_DEBUG;
1337 else if (strcmp("verbose", str) == 0)
1338 apic_verbosity = APIC_VERBOSE;
1339 else {
1340 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1341 " use apic=verbose or apic=debug\n", str);
1342 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return 0;
1346}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001347early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001349static __init int setup_disableapic(char *str)
1350{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001352 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001353 return 0;
1354}
1355early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001357/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001358static __init int setup_nolapic(char *str)
1359{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001360 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001361}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001362early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001364static int __init parse_lapic_timer_c2_ok(char *arg)
1365{
1366 local_apic_timer_c2_ok = 1;
1367 return 0;
1368}
1369early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1370
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001371static __init int setup_noapictimer(char *str)
1372{
Andi Kleen73dea472006-02-03 21:50:50 +01001373 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001376 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001377}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001378__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001379
Andi Kleen0c3749c2006-02-03 21:51:41 +01001380static __init int setup_apicpmtimer(char *s)
1381{
1382 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001383 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001384 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001385}
1386__setup("apicpmtimer", setup_apicpmtimer);
1387
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001388static int __init lapic_insert_resource(void)
1389{
1390 if (!apic_phys)
1391 return -1;
1392
1393 /* Put local APIC into the resource map. */
1394 lapic_resource.start = apic_phys;
1395 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1396 insert_resource(&iomem_resource, &lapic_resource);
1397
1398 return 0;
1399}
1400
1401/*
1402 * need call insert after e820_reserve_resources()
1403 * that is using request_resource
1404 */
1405late_initcall(lapic_insert_resource);