blob: 9bb040689b31aa0d8b6850b26d93d0905f7ff8cd [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 */
57int apic_verbosity;
58
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
Suresh Siddha1b374e42008-07-10 11:16:49 -0700122void xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100123{
124 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
125 cpu_relax();
126}
127
Suresh Siddha1b374e42008-07-10 11:16:49 -0700128u32 safe_xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100129{
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
Suresh Siddha1b374e42008-07-10 11:16:49 -0700144void xapic_icr_write(u32 low, u32 id)
145{
146 apic_write(APIC_ICR2, id << 24);
147 apic_write(APIC_ICR, low);
148}
149
150u64 xapic_icr_read(void)
151{
152 u32 icr1, icr2;
153
154 icr2 = apic_read(APIC_ICR2);
155 icr1 = apic_read(APIC_ICR);
156
157 return (icr1 | ((u64)icr2 << 32));
158}
159
160static struct apic_ops xapic_ops = {
161 .read = native_apic_mem_read,
162 .write = native_apic_mem_write,
163 .write_atomic = native_apic_mem_write_atomic,
164 .icr_read = xapic_icr_read,
165 .icr_write = xapic_icr_write,
166 .wait_icr_idle = xapic_wait_icr_idle,
167 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
168};
169
170struct apic_ops __read_mostly *apic_ops = &xapic_ops;
171
172EXPORT_SYMBOL_GPL(apic_ops);
173
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100174/**
175 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
176 */
Jan Beuliche9427102008-01-30 13:31:24 +0100177void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100178{
179 unsigned int v;
180
181 /* unmask and set to NMI */
182 v = APIC_DM_NMI;
183 apic_write(APIC_LVT0, v);
184}
185
186/**
187 * lapic_get_maxlvt - get the maximum number of local vector table entries
188 */
189int lapic_get_maxlvt(void)
190{
191 unsigned int v, maxlvt;
192
193 v = apic_read(APIC_LVR);
194 maxlvt = GET_APIC_MAXLVT(v);
195 return maxlvt;
196}
197
198/*
199 * This function sets up the local APIC timer, with a timeout of
200 * 'clocks' APIC bus clock. During calibration we actually call
201 * this function twice on the boot CPU, once with a bogus timeout
202 * value, second time for real. The other (noncalibrating) CPUs
203 * call this function only once, with the real, calibrated value.
204 *
205 * We do reads before writes even if unnecessary, to get around the
206 * P5 APIC double write bug.
207 */
208
209static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
210{
211 unsigned int lvtt_value, tmp_value;
212
213 lvtt_value = LOCAL_TIMER_VECTOR;
214 if (!oneshot)
215 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
216 if (!irqen)
217 lvtt_value |= APIC_LVT_MASKED;
218
219 apic_write(APIC_LVTT, lvtt_value);
220
221 /*
222 * Divide PICLK by 16
223 */
224 tmp_value = apic_read(APIC_TDCR);
225 apic_write(APIC_TDCR, (tmp_value
226 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
227 | APIC_TDR_DIV_16);
228
229 if (!oneshot)
230 apic_write(APIC_TMICT, clocks);
231}
232
233/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100234 * Setup extended LVT, AMD specific (K8, family 10h)
235 *
236 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
237 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100238 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100239
240#define APIC_EILVT_LVTOFF_MCE 0
241#define APIC_EILVT_LVTOFF_IBS 1
242
243static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100244{
Robert Richter7b83dae2008-01-30 13:30:40 +0100245 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100246 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
247
248 apic_write(reg, v);
249}
250
Robert Richter7b83dae2008-01-30 13:30:40 +0100251u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
252{
253 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
254 return APIC_EILVT_LVTOFF_MCE;
255}
256
257u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
258{
259 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
260 return APIC_EILVT_LVTOFF_IBS;
261}
262
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100263/*
264 * Program the next event, relative to now
265 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200266static int lapic_next_event(unsigned long delta,
267 struct clock_event_device *evt)
268{
269 apic_write(APIC_TMICT, delta);
270 return 0;
271}
272
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100273/*
274 * Setup the lapic timer in periodic or oneshot mode
275 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200276static void lapic_timer_setup(enum clock_event_mode mode,
277 struct clock_event_device *evt)
278{
279 unsigned long flags;
280 unsigned int v;
281
282 /* Lapic used as dummy for broadcast ? */
283 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
284 return;
285
286 local_irq_save(flags);
287
288 switch (mode) {
289 case CLOCK_EVT_MODE_PERIODIC:
290 case CLOCK_EVT_MODE_ONESHOT:
291 __setup_APIC_LVTT(calibration_result,
292 mode != CLOCK_EVT_MODE_PERIODIC, 1);
293 break;
294 case CLOCK_EVT_MODE_UNUSED:
295 case CLOCK_EVT_MODE_SHUTDOWN:
296 v = apic_read(APIC_LVTT);
297 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
298 apic_write(APIC_LVTT, v);
299 break;
300 case CLOCK_EVT_MODE_RESUME:
301 /* Nothing to do here */
302 break;
303 }
304
305 local_irq_restore(flags);
306}
307
308/*
309 * Local APIC timer broadcast function
310 */
311static void lapic_timer_broadcast(cpumask_t mask)
312{
313#ifdef CONFIG_SMP
314 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
315#endif
316}
317
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100318/*
319 * Setup the local APIC timer for this CPU. Copy the initilized values
320 * of the boot CPU and register the clock event in the framework.
321 */
322static void setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200323{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100324 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
325
326 memcpy(levt, &lapic_clockevent, sizeof(*levt));
327 levt->cpumask = cpumask_of_cpu(smp_processor_id());
328
329 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200330}
331
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100332/*
333 * In this function we calibrate APIC bus clocks to the external
334 * timer. Unfortunately we cannot use jiffies and the timer irq
335 * to calibrate, since some later bootup code depends on getting
336 * the first irq? Ugh.
337 *
338 * We want to do the calibration only once since we
339 * want to have local timer irqs syncron. CPUs connected
340 * by the same APIC bus have the very same bus frequency.
341 * And we want to have irqs off anyways, no accidental
342 * APIC irq that way.
343 */
344
345#define TICK_COUNT 100000000
346
347static void __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200348{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100349 unsigned apic, apic_start;
350 unsigned long tsc, tsc_start;
351 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200352
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100353 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200354
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100355 /*
356 * Put whatever arbitrary (but long enough) timeout
357 * value into the APIC clock, we just want to get the
358 * counter running for calibration.
359 *
360 * No interrupt enable !
361 */
362 __setup_APIC_LVTT(250000000, 0, 0);
363
364 apic_start = apic_read(APIC_TMCCT);
365#ifdef CONFIG_X86_PM_TIMER
366 if (apic_calibrate_pmtmr && pmtmr_ioport) {
367 pmtimer_wait(5000); /* 5ms wait */
368 apic = apic_read(APIC_TMCCT);
369 result = (apic_start - apic) * 1000L / 5;
370 } else
371#endif
372 {
373 rdtscll(tsc_start);
374
375 do {
376 apic = apic_read(APIC_TMCCT);
377 rdtscll(tsc);
378 } while ((tsc - tsc_start) < TICK_COUNT &&
379 (apic_start - apic) < TICK_COUNT);
380
381 result = (apic_start - apic) * 1000L * tsc_khz /
382 (tsc - tsc_start);
383 }
384
385 local_irq_enable();
386
387 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
388
389 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
390 result / 1000 / 1000, result / 1000 % 1000);
391
392 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900393 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
394 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100395 lapic_clockevent.max_delta_ns =
396 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
397 lapic_clockevent.min_delta_ns =
398 clockevent_delta2ns(0xF, &lapic_clockevent);
399
400 calibration_result = result / HZ;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200401}
402
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100403/*
404 * Setup the boot APIC
405 *
406 * Calibrate and verify the result.
407 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100408void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100410 /*
411 * The local apic timer can be disabled via the kernel commandline.
412 * Register the lapic timer as a dummy clock event source on SMP
413 * systems, so the broadcast mechanism is used. On UP systems simply
414 * ignore it.
415 */
416 if (disable_apic_timer) {
417 printk(KERN_INFO "Disabling APIC timer\n");
418 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100419 if (num_possible_cpus() > 1) {
420 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100421 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100422 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100423 return;
424 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200425
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100426 printk(KERN_INFO "Using local APIC timer interrupts.\n");
427 calibrate_APIC_clock();
428
429 /*
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100430 * Do a sanity check on the APIC calibration result
431 */
432 if (calibration_result < (1000000 / HZ)) {
433 printk(KERN_WARNING
434 "APIC frequency too slow, disabling apic timer\n");
435 /* No broadcast on UP ! */
436 if (num_possible_cpus() > 1)
437 setup_APIC_timer();
438 return;
439 }
440
441 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100442 * If nmi_watchdog is set to IO_APIC, we need the
443 * PIT/HPET going. Otherwise register lapic as a dummy
444 * device.
445 */
446 if (nmi_watchdog != NMI_IO_APIC)
447 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
448 else
449 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200450 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100451
452 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100455void __cpuinit setup_secondary_APIC_clock(void)
456{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100457 setup_APIC_timer();
458}
459
460/*
461 * The guts of the apic timer interrupt
462 */
463static void local_apic_timer_interrupt(void)
464{
465 int cpu = smp_processor_id();
466 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
467
468 /*
469 * Normally we should not be here till LAPIC has been initialized but
470 * in some cases like kdump, its possible that there is a pending LAPIC
471 * timer interrupt from previous kernel's context and is delivered in
472 * new kernel the moment interrupts are enabled.
473 *
474 * Interrupts are enabled early and LAPIC is setup much later, hence
475 * its possible that when we get here evt->event_handler is NULL.
476 * Check for event_handler being NULL and discard the interrupt as
477 * spurious.
478 */
479 if (!evt->event_handler) {
480 printk(KERN_WARNING
481 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
482 /* Switch it off */
483 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
484 return;
485 }
486
487 /*
488 * the NMI deadlock-detector uses this.
489 */
490 add_pda(apic_timer_irqs, 1);
491
492 evt->event_handler(evt);
493}
494
495/*
496 * Local APIC timer interrupt. This is the most natural way for doing
497 * local interrupts, but local timer interrupts can be emulated by
498 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
499 *
500 * [ if a single-CPU system runs an SMP kernel then we call the local
501 * interrupt as well. Thus we cannot inline the local irq ... ]
502 */
503void smp_apic_timer_interrupt(struct pt_regs *regs)
504{
505 struct pt_regs *old_regs = set_irq_regs(regs);
506
507 /*
508 * NOTE! We'd better ACK the irq immediately,
509 * because timer handling can be slow.
510 */
511 ack_APIC_irq();
512 /*
513 * update_process_times() expects us to have done irq_enter().
514 * Besides, if we don't timer interrupts ignore the global
515 * interrupt lock, which is the WrongThing (tm) to do.
516 */
517 exit_idle();
518 irq_enter();
519 local_apic_timer_interrupt();
520 irq_exit();
521 set_irq_regs(old_regs);
522}
523
524int setup_profiling_timer(unsigned int multiplier)
525{
526 return -EINVAL;
527}
528
529
530/*
531 * Local APIC start and shutdown
532 */
533
534/**
535 * clear_local_APIC - shutdown the local APIC
536 *
537 * This is called, when a CPU is disabled and before rebooting, so the state of
538 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
539 * leftovers during boot.
540 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541void clear_local_APIC(void)
542{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400543 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100544 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Andi Kleend3432892008-01-30 13:33:17 +0100546 /* APIC hasn't been mapped yet */
547 if (!apic_phys)
548 return;
549
550 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200552 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * if the vector is zero. Mask LVTERR first to prevent this.
554 */
555 if (maxlvt >= 3) {
556 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100557 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 /*
560 * Careful: we have to set masks only first to deassert
561 * any level-triggered sources.
562 */
563 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100564 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100566 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100568 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (maxlvt >= 4) {
570 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100571 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
573
574 /*
575 * Clean APIC state for other OSs:
576 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100577 apic_write(APIC_LVTT, APIC_LVT_MASKED);
578 apic_write(APIC_LVT0, APIC_LVT_MASKED);
579 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100581 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100583 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200584 apic_write(APIC_ESR, 0);
585 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100588/**
589 * disable_local_APIC - clear and disable the local APIC
590 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591void disable_local_APIC(void)
592{
593 unsigned int value;
594
595 clear_local_APIC();
596
597 /*
598 * Disable APIC (implies clearing of registers
599 * for 82489DX!).
600 */
601 value = apic_read(APIC_SPIV);
602 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100603 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700606void lapic_shutdown(void)
607{
608 unsigned long flags;
609
610 if (!cpu_has_apic)
611 return;
612
613 local_irq_save(flags);
614
615 disable_local_APIC();
616
617 local_irq_restore(flags);
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/*
621 * This is to verify that we're looking at a real local APIC.
622 * Check these against your board if the CPUs aren't getting
623 * started for no apparent reason.
624 */
625int __init verify_local_APIC(void)
626{
627 unsigned int reg0, reg1;
628
629 /*
630 * The version register is read-only in a real APIC.
631 */
632 reg0 = apic_read(APIC_LVR);
633 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
634 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
635 reg1 = apic_read(APIC_LVR);
636 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
637
638 /*
639 * The two version reads above should print the same
640 * numbers. If the second one is different, then we
641 * poke at a non-APIC.
642 */
643 if (reg1 != reg0)
644 return 0;
645
646 /*
647 * Check if the version looks reasonably.
648 */
649 reg1 = GET_APIC_VERSION(reg0);
650 if (reg1 == 0x00 || reg1 == 0xff)
651 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100652 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (reg1 < 0x02 || reg1 == 0xff)
654 return 0;
655
656 /*
657 * The ID register is read/write in a real APIC.
658 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700659 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
661 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700662 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
664 apic_write(APIC_ID, reg0);
665 if (reg1 != (reg0 ^ APIC_ID_MASK))
666 return 0;
667
668 /*
669 * The next two are just to see if we have sane values.
670 * They're only really relevant if we're in Virtual Wire
671 * compatibility mode, but most boxes are anymore.
672 */
673 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100674 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 reg1 = apic_read(APIC_LVT1);
676 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
677
678 return 1;
679}
680
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100681/**
682 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
683 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684void __init sync_Arb_IDs(void)
685{
686 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100687 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return;
689
690 /*
691 * Wait for idle.
692 */
693 apic_wait_icr_idle();
694
695 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100696 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 | APIC_DM_INIT);
698}
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700/*
701 * An initial setup of the virtual wire mode.
702 */
703void __init init_bsp_APIC(void)
704{
Andi Kleen11a8e772006-01-11 22:46:51 +0100705 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /*
708 * Don't do the setup now if we have a SMP BIOS as the
709 * through-I/O-APIC virtual wire mode might be active.
710 */
711 if (smp_found_config || !cpu_has_apic)
712 return;
713
714 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 /*
717 * Do not trust the local APIC being empty at bootup.
718 */
719 clear_local_APIC();
720
721 /*
722 * Enable APIC.
723 */
724 value = apic_read(APIC_SPIV);
725 value &= ~APIC_VECTOR_MASK;
726 value |= APIC_SPIV_APIC_ENABLED;
727 value |= APIC_SPIV_FOCUS_DISABLED;
728 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100729 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /*
732 * Set up the virtual wire mode.
733 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100734 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100736 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100739/**
740 * setup_local_APIC - setup the local APIC
741 */
742void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Andi Kleen739f33b2008-01-30 13:30:40 +0100744 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100745 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Jack Steinerac23d4e2008-03-28 14:12:16 -0500747 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Andi Kleenfe7414a2006-09-26 10:52:30 +0200750 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /*
753 * Double-check whether this APIC is really registered.
754 * This is meaningless in clustered apic mode, so we skip it.
755 */
756 if (!apic_id_registered())
757 BUG();
758
759 /*
760 * Intel recommends to set DFR, LDR and TPR before enabling
761 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
762 * document number 292116). So here it goes...
763 */
764 init_apic_ldr();
765
766 /*
767 * Set Task Priority to 'accept all'. We never change this
768 * later on.
769 */
770 value = apic_read(APIC_TASKPRI);
771 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100772 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100775 * After a crash, we no longer service the interrupts and a pending
776 * interrupt from previous kernel might still have ISR bit set.
777 *
778 * Most probably by now CPU has serviced that pending interrupt and
779 * it might not have done the ack_APIC_irq() because it thought,
780 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
781 * does not clear the ISR bit and cpu thinks it has already serivced
782 * the interrupt. Hence a vector might get locked. It was noticed
783 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
784 */
785 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
786 value = apic_read(APIC_ISR + i*0x10);
787 for (j = 31; j >= 0; j--) {
788 if (value & (1<<j))
789 ack_APIC_irq();
790 }
791 }
792
793 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 * Now that we are all set up, enable the APIC
795 */
796 value = apic_read(APIC_SPIV);
797 value &= ~APIC_VECTOR_MASK;
798 /*
799 * Enable APIC
800 */
801 value |= APIC_SPIV_APIC_ENABLED;
802
Andi Kleen3f14c742006-09-26 10:52:29 +0200803 /* We always use processor focus */
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /*
806 * Set spurious IRQ vector
807 */
808 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100809 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /*
812 * Set up LVT0, LVT1:
813 *
814 * set up through-local-APIC on the BP's LINT0. This is not
815 * strictly necessary in pure symmetric-IO mode, but sometimes
816 * we delegate interrupts to the 8259A.
817 */
818 /*
819 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
820 */
821 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200822 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200824 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
825 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 } else {
827 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200828 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
829 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100831 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 /*
834 * only the BP should see the LINT1 NMI signal, obviously.
835 */
836 if (!smp_processor_id())
837 value = APIC_DM_NMI;
838 else
839 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100840 apic_write(APIC_LVT1, value);
Jack Steinerac23d4e2008-03-28 14:12:16 -0500841 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +0100842}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Ingo Molnara4928cf2008-04-23 13:20:56 +0200844static void __cpuinit lapic_setup_esr(void)
Andi Kleen739f33b2008-01-30 13:30:40 +0100845{
846 unsigned maxlvt = lapic_get_maxlvt();
847
848 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100849 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100850 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100851 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100852 if (maxlvt > 3)
853 apic_write(APIC_ESR, 0);
854}
Yinghai Lu1c695242008-01-30 13:30:39 +0100855
Andi Kleen739f33b2008-01-30 13:30:40 +0100856void __cpuinit end_local_APIC_setup(void)
857{
858 lapic_setup_esr();
Don Zickusf2802e72006-09-26 10:52:26 +0200859 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 apic_pm_activate();
861}
862
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100863/*
864 * Detect and enable local APICs on non-SMP boards.
865 * Original code written by Keir Fraser.
866 * On AMD64 we trust the BIOS - if it says no APIC it is likely
867 * not correctly set up (usually the APIC timer won't work etc.)
868 */
869static int __init detect_init_APIC(void)
870{
871 if (!cpu_has_apic) {
872 printk(KERN_INFO "No local APIC present\n");
873 return -1;
874 }
875
876 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300877 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100878 return 0;
879}
880
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800881void __init early_init_lapic_mapping(void)
882{
Thomas Gleixner431ee792008-05-12 15:43:35 +0200883 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800884
885 /*
886 * If no local APIC can be found then go out
887 * : it means there is no mpatable and MADT
888 */
889 if (!smp_found_config)
890 return;
891
Thomas Gleixner431ee792008-05-12 15:43:35 +0200892 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800893
Thomas Gleixner431ee792008-05-12 15:43:35 +0200894 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800895 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +0200896 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800897
898 /*
899 * Fetch the APIC ID of the BSP in case we have a
900 * default configuration (or the MP table is broken).
901 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500902 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800903}
904
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100905/**
906 * init_apic_mappings - initialize APIC mappings
907 */
908void __init init_apic_mappings(void)
909{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100910 /*
911 * If no local APIC can be found then set up a fake all
912 * zeroes page to simulate the local APIC and another
913 * one for the IO-APIC.
914 */
915 if (!smp_found_config && detect_init_APIC()) {
916 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
917 apic_phys = __pa(apic_phys);
918 } else
919 apic_phys = mp_lapic_addr;
920
921 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
922 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
923 APIC_BASE, apic_phys);
924
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100925 /*
926 * Fetch the APIC ID of the BSP in case we have a
927 * default configuration (or the MP table is broken).
928 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500929 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100930}
931
932/*
933 * This initializes the IO-APIC and APIC hardware if this is
934 * a UP kernel.
935 */
936int __init APIC_init_uniprocessor(void)
937{
938 if (disable_apic) {
939 printk(KERN_INFO "Apic disabled\n");
940 return -1;
941 }
942 if (!cpu_has_apic) {
943 disable_apic = 1;
944 printk(KERN_INFO "Apic disabled by BIOS\n");
945 return -1;
946 }
947
948 verify_local_APIC();
949
Glauber Costab5841762008-05-28 13:38:28 -0300950 connect_bsp_APIC();
951
Jack Steinerb6df1b82008-06-19 21:51:05 -0500952 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300953 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100954
955 setup_local_APIC();
956
Andi Kleen739f33b2008-01-30 13:30:40 +0100957 /*
958 * Now enable IO-APICs, actually call clear_IO_APIC
959 * We need clear_IO_APIC before enabling vector on BP
960 */
961 if (!skip_ioapic_setup && nr_ioapics)
962 enable_IO_APIC();
963
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +0100964 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
965 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +0100966 end_local_APIC_setup();
967
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100968 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
969 setup_IO_APIC();
970 else
971 nr_ioapics = 0;
972 setup_boot_APIC_clock();
973 check_nmi_watchdog();
974 return 0;
975}
976
977/*
978 * Local APIC interrupts
979 */
980
981/*
982 * This interrupt should _never_ happen with our APIC/SMP architecture
983 */
984asmlinkage void smp_spurious_interrupt(void)
985{
986 unsigned int v;
987 exit_idle();
988 irq_enter();
989 /*
990 * Check if this really is a spurious interrupt and ACK it
991 * if it is a vectored one. Just in case...
992 * Spurious interrupts should not be ACKed.
993 */
994 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
995 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
996 ack_APIC_irq();
997
998 add_pda(irq_spurious_count, 1);
999 irq_exit();
1000}
1001
1002/*
1003 * This interrupt should never happen with our APIC/SMP architecture
1004 */
1005asmlinkage void smp_error_interrupt(void)
1006{
1007 unsigned int v, v1;
1008
1009 exit_idle();
1010 irq_enter();
1011 /* First tickle the hardware, only then report what went on. -- REW */
1012 v = apic_read(APIC_ESR);
1013 apic_write(APIC_ESR, 0);
1014 v1 = apic_read(APIC_ESR);
1015 ack_APIC_irq();
1016 atomic_inc(&irq_err_count);
1017
1018 /* Here is what the APIC error bits mean:
1019 0: Send CS error
1020 1: Receive CS error
1021 2: Send accept error
1022 3: Receive accept error
1023 4: Reserved
1024 5: Send illegal vector
1025 6: Received illegal vector
1026 7: Illegal register address
1027 */
1028 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1029 smp_processor_id(), v , v1);
1030 irq_exit();
1031}
1032
Glauber Costab5841762008-05-28 13:38:28 -03001033/**
1034 * * connect_bsp_APIC - attach the APIC to the interrupt system
1035 * */
1036void __init connect_bsp_APIC(void)
1037{
1038 enable_apic_mode();
1039}
1040
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001041void disconnect_bsp_APIC(int virt_wire_setup)
1042{
1043 /* Go back to Virtual Wire compatibility mode */
1044 unsigned long value;
1045
1046 /* For the spurious interrupt use vector F, and enable it */
1047 value = apic_read(APIC_SPIV);
1048 value &= ~APIC_VECTOR_MASK;
1049 value |= APIC_SPIV_APIC_ENABLED;
1050 value |= 0xf;
1051 apic_write(APIC_SPIV, value);
1052
1053 if (!virt_wire_setup) {
1054 /*
1055 * For LVT0 make it edge triggered, active high,
1056 * external and enabled
1057 */
1058 value = apic_read(APIC_LVT0);
1059 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1060 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1061 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1062 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1063 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1064 apic_write(APIC_LVT0, value);
1065 } else {
1066 /* Disable LVT0 */
1067 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1068 }
1069
1070 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1071 value = apic_read(APIC_LVT1);
1072 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1073 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1074 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1075 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1076 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1077 apic_write(APIC_LVT1, value);
1078}
1079
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001080void __cpuinit generic_processor_info(int apicid, int version)
1081{
1082 int cpu;
1083 cpumask_t tmp_map;
1084
1085 if (num_processors >= NR_CPUS) {
1086 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1087 " Processor ignored.\n", NR_CPUS);
1088 return;
1089 }
1090
1091 if (num_processors >= maxcpus) {
1092 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1093 " Processor ignored.\n", maxcpus);
1094 return;
1095 }
1096
1097 num_processors++;
1098 cpus_complement(tmp_map, cpu_present_map);
1099 cpu = first_cpu(tmp_map);
1100
1101 physid_set(apicid, phys_cpu_present_map);
1102 if (apicid == boot_cpu_physical_apicid) {
1103 /*
1104 * x86_bios_cpu_apicid is required to have processors listed
1105 * in same order as logical cpu numbers. Hence the first
1106 * entry is BSP, and so on.
1107 */
1108 cpu = 0;
1109 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001110 if (apicid > max_physical_apicid)
1111 max_physical_apicid = apicid;
1112
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001113 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001114 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1115 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1116 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001117
1118 cpu_to_apicid[cpu] = apicid;
1119 bios_cpu_apicid[cpu] = apicid;
1120 } else {
1121 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1122 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1123 }
1124
1125 cpu_set(cpu, cpu_possible_map);
1126 cpu_set(cpu, cpu_present_map);
1127}
1128
Suresh Siddha0c81c742008-07-10 11:16:48 -07001129int hard_smp_processor_id(void)
1130{
1131 return read_apic_id();
1132}
1133
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001134/*
1135 * Power management
1136 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137#ifdef CONFIG_PM
1138
1139static struct {
1140 /* 'active' is true if the local APIC was enabled by us and
1141 not the BIOS; this signifies that we are also responsible
1142 for disabling it before entering apm/acpi suspend */
1143 int active;
1144 /* r/w apic fields */
1145 unsigned int apic_id;
1146 unsigned int apic_taskpri;
1147 unsigned int apic_ldr;
1148 unsigned int apic_dfr;
1149 unsigned int apic_spiv;
1150 unsigned int apic_lvtt;
1151 unsigned int apic_lvtpc;
1152 unsigned int apic_lvt0;
1153 unsigned int apic_lvt1;
1154 unsigned int apic_lvterr;
1155 unsigned int apic_tmict;
1156 unsigned int apic_tdcr;
1157 unsigned int apic_thmr;
1158} apic_pm_state;
1159
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001160static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001163 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 if (!apic_pm_state.active)
1166 return 0;
1167
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001168 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001169
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001170 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1172 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1173 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1174 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1175 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001176 if (maxlvt >= 4)
1177 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1179 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1180 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1181 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1182 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001183#ifdef CONFIG_X86_MCE_INTEL
1184 if (maxlvt >= 5)
1185 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1186#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001187 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 disable_local_APIC();
1189 local_irq_restore(flags);
1190 return 0;
1191}
1192
1193static int lapic_resume(struct sys_device *dev)
1194{
1195 unsigned int l, h;
1196 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001197 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if (!apic_pm_state.active)
1200 return 0;
1201
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001202 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 local_irq_save(flags);
1205 rdmsr(MSR_IA32_APICBASE, l, h);
1206 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +01001207 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 wrmsr(MSR_IA32_APICBASE, l, h);
1209 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1210 apic_write(APIC_ID, apic_pm_state.apic_id);
1211 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1212 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1213 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1214 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1215 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1216 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001217#ifdef CONFIG_X86_MCE_INTEL
1218 if (maxlvt >= 5)
1219 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1220#endif
1221 if (maxlvt >= 4)
1222 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1224 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1225 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1226 apic_write(APIC_ESR, 0);
1227 apic_read(APIC_ESR);
1228 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1229 apic_write(APIC_ESR, 0);
1230 apic_read(APIC_ESR);
1231 local_irq_restore(flags);
1232 return 0;
1233}
1234
1235static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001236 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 .resume = lapic_resume,
1238 .suspend = lapic_suspend,
1239};
1240
1241static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001242 .id = 0,
1243 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244};
1245
Ashok Raje6982c62005-06-25 14:54:58 -07001246static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
1248 apic_pm_state.active = 1;
1249}
1250
1251static int __init init_lapic_sysfs(void)
1252{
1253 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (!cpu_has_apic)
1256 return 0;
1257 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 error = sysdev_class_register(&lapic_sysclass);
1260 if (!error)
1261 error = sysdev_register(&device_lapic);
1262 return error;
1263}
1264device_initcall(init_lapic_sysfs);
1265
1266#else /* CONFIG_PM */
1267
1268static void apic_pm_activate(void) { }
1269
1270#endif /* CONFIG_PM */
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001273 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 *
1275 * Thus far, the major user of this is IBM's Summit2 series:
1276 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001277 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 * multi-chassis. Use available data to take a good guess.
1279 * If in doubt, go HPET.
1280 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001281__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 int i, clusters, zeros;
1284 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001285 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1287
Yinghai Lu322850a2008-02-23 21:48:42 -08001288 /*
1289 * there is not this kind of box with AMD CPU yet.
1290 * Some AMD box with quadcore cpu and 8 sockets apicid
1291 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001292 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001293 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001294 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001295 return 0;
1296
Mike Travis23ca4bb2008-05-12 21:21:12 +02001297 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001298 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001301 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001302 if (bios_cpu_apicid) {
1303 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001304 }
1305 else if (i < nr_cpu_ids) {
1306 if (cpu_present(i))
1307 id = per_cpu(x86_bios_cpu_apicid, i);
1308 else
1309 continue;
1310 }
1311 else
1312 break;
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (id != BAD_APICID)
1315 __set_bit(APIC_CLUSTERID(id), clustermap);
1316 }
1317
1318 /* Problem: Partially populated chassis may not have CPUs in some of
1319 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001320 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1321 * Since clusters are allocated sequentially, count zeros only if
1322 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 */
1324 clusters = 0;
1325 zeros = 0;
1326 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1327 if (test_bit(i, clustermap)) {
1328 clusters += 1 + zeros;
1329 zeros = 0;
1330 } else
1331 ++zeros;
1332 }
1333
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001334 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1335 * not guaranteed to be synced between boards
1336 */
1337 if (is_vsmp_box() && clusters > 1)
1338 return 1;
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001341 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 * May have to revisit this when multi-core + hyperthreaded CPUs come
1343 * out, but AFAIK this will work even for them.
1344 */
1345 return (clusters > 2);
1346}
1347
1348/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001349 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001351static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001353 if (str == NULL) {
1354 skip_ioapic_setup = 0;
1355 ioapic_force = 1;
1356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001358 if (strcmp("debug", str) == 0)
1359 apic_verbosity = APIC_DEBUG;
1360 else if (strcmp("verbose", str) == 0)
1361 apic_verbosity = APIC_VERBOSE;
1362 else {
1363 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1364 " use apic=verbose or apic=debug\n", str);
1365 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return 0;
1369}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001370early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001372static __init int setup_disableapic(char *str)
1373{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 disable_apic = 1;
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001375 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001376 return 0;
1377}
1378early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001380/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001381static __init int setup_nolapic(char *str)
1382{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001383 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001384}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001385early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001387static int __init parse_lapic_timer_c2_ok(char *arg)
1388{
1389 local_apic_timer_c2_ok = 1;
1390 return 0;
1391}
1392early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1393
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001394static __init int setup_noapictimer(char *str)
1395{
Andi Kleen73dea472006-02-03 21:50:50 +01001396 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001397 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001399 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001400}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001401__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001402
Andi Kleen0c3749c2006-02-03 21:51:41 +01001403static __init int setup_apicpmtimer(char *s)
1404{
1405 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001406 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001407 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001408}
1409__setup("apicpmtimer", setup_apicpmtimer);
1410
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001411static int __init lapic_insert_resource(void)
1412{
1413 if (!apic_phys)
1414 return -1;
1415
1416 /* Put local APIC into the resource map. */
1417 lapic_resource.start = apic_phys;
1418 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1419 insert_resource(&iomem_resource, &lapic_resource);
1420
1421 return 0;
1422}
1423
1424/*
1425 * need call insert after e820_reserve_resources()
1426 * that is using request_resource
1427 */
1428late_initcall(lapic_insert_resource);