blob: 868ec1deb19ad00659f0f9fcab58151cb4888ff1 [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>
37#include <asm/mach_apic.h>
Andi Kleen75152112005-05-16 21:53:34 -070038#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010039#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010040#include <asm/proto.h>
41#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020042#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Thomas Gleixnerfb79d222007-10-12 23:04:07 +020044int disable_apic_timer __cpuinitdata;
Chris Wrightbc1d99c2007-10-12 23:04:23 +020045static int apic_calibrate_pmtmr __initdata;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010046int disable_apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010048/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -070049int local_apic_timer_c2_ok;
50EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
51
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010052/*
53 * Debug level, exported for io_apic.c
54 */
55int apic_verbosity;
56
Aaron Durbin39928722006-12-07 02:14:01 +010057static struct resource lapic_resource = {
58 .name = "Local APIC",
59 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
60};
61
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020062static unsigned int calibration_result;
63
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020064static int lapic_next_event(unsigned long delta,
65 struct clock_event_device *evt);
66static void lapic_timer_setup(enum clock_event_mode mode,
67 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020068static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +010069static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020070
71static struct clock_event_device lapic_clockevent = {
72 .name = "lapic",
73 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
74 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
75 .shift = 32,
76 .set_mode = lapic_timer_setup,
77 .set_next_event = lapic_next_event,
78 .broadcast = lapic_timer_broadcast,
79 .rating = 100,
80 .irq = -1,
81};
82static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
83
Andi Kleend3432892008-01-30 13:33:17 +010084static unsigned long apic_phys;
85
Thomas Gleixner0e078e22008-01-30 13:30:20 +010086/*
87 * Get the LAPIC version
88 */
89static inline int lapic_get_version(void)
90{
91 return GET_APIC_VERSION(apic_read(APIC_LVR));
92}
93
94/*
95 * Check, if the APIC is integrated or a seperate chip
96 */
97static inline int lapic_is_integrated(void)
98{
99 return 1;
100}
101
102/*
103 * Check, whether this is a modern or a first generation APIC
104 */
105static int modern_apic(void)
106{
107 /* AMD systems use old APIC versions, so check the CPU */
108 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
109 boot_cpu_data.x86 >= 0xf)
110 return 1;
111 return lapic_get_version() >= 0x14;
112}
113
114void apic_wait_icr_idle(void)
115{
116 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
117 cpu_relax();
118}
119
120u32 safe_apic_wait_icr_idle(void)
121{
122 u32 send_status;
123 int timeout;
124
125 timeout = 0;
126 do {
127 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
128 if (!send_status)
129 break;
130 udelay(100);
131 } while (timeout++ < 1000);
132
133 return send_status;
134}
135
136/**
137 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
138 */
Jan Beuliche9427102008-01-30 13:31:24 +0100139void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100140{
141 unsigned int v;
142
143 /* unmask and set to NMI */
144 v = APIC_DM_NMI;
145 apic_write(APIC_LVT0, v);
146}
147
148/**
149 * lapic_get_maxlvt - get the maximum number of local vector table entries
150 */
151int lapic_get_maxlvt(void)
152{
153 unsigned int v, maxlvt;
154
155 v = apic_read(APIC_LVR);
156 maxlvt = GET_APIC_MAXLVT(v);
157 return maxlvt;
158}
159
160/*
161 * This function sets up the local APIC timer, with a timeout of
162 * 'clocks' APIC bus clock. During calibration we actually call
163 * this function twice on the boot CPU, once with a bogus timeout
164 * value, second time for real. The other (noncalibrating) CPUs
165 * call this function only once, with the real, calibrated value.
166 *
167 * We do reads before writes even if unnecessary, to get around the
168 * P5 APIC double write bug.
169 */
170
171static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
172{
173 unsigned int lvtt_value, tmp_value;
174
175 lvtt_value = LOCAL_TIMER_VECTOR;
176 if (!oneshot)
177 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
178 if (!irqen)
179 lvtt_value |= APIC_LVT_MASKED;
180
181 apic_write(APIC_LVTT, lvtt_value);
182
183 /*
184 * Divide PICLK by 16
185 */
186 tmp_value = apic_read(APIC_TDCR);
187 apic_write(APIC_TDCR, (tmp_value
188 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
189 | APIC_TDR_DIV_16);
190
191 if (!oneshot)
192 apic_write(APIC_TMICT, clocks);
193}
194
195/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100196 * Setup extended LVT, AMD specific (K8, family 10h)
197 *
198 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
199 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100200 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100201
202#define APIC_EILVT_LVTOFF_MCE 0
203#define APIC_EILVT_LVTOFF_IBS 1
204
205static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100206{
Robert Richter7b83dae2008-01-30 13:30:40 +0100207 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100208 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
209
210 apic_write(reg, v);
211}
212
Robert Richter7b83dae2008-01-30 13:30:40 +0100213u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
214{
215 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
216 return APIC_EILVT_LVTOFF_MCE;
217}
218
219u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
220{
221 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
222 return APIC_EILVT_LVTOFF_IBS;
223}
224
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100225/*
226 * Program the next event, relative to now
227 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200228static int lapic_next_event(unsigned long delta,
229 struct clock_event_device *evt)
230{
231 apic_write(APIC_TMICT, delta);
232 return 0;
233}
234
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100235/*
236 * Setup the lapic timer in periodic or oneshot mode
237 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200238static void lapic_timer_setup(enum clock_event_mode mode,
239 struct clock_event_device *evt)
240{
241 unsigned long flags;
242 unsigned int v;
243
244 /* Lapic used as dummy for broadcast ? */
245 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
246 return;
247
248 local_irq_save(flags);
249
250 switch (mode) {
251 case CLOCK_EVT_MODE_PERIODIC:
252 case CLOCK_EVT_MODE_ONESHOT:
253 __setup_APIC_LVTT(calibration_result,
254 mode != CLOCK_EVT_MODE_PERIODIC, 1);
255 break;
256 case CLOCK_EVT_MODE_UNUSED:
257 case CLOCK_EVT_MODE_SHUTDOWN:
258 v = apic_read(APIC_LVTT);
259 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
260 apic_write(APIC_LVTT, v);
261 break;
262 case CLOCK_EVT_MODE_RESUME:
263 /* Nothing to do here */
264 break;
265 }
266
267 local_irq_restore(flags);
268}
269
270/*
271 * Local APIC timer broadcast function
272 */
273static void lapic_timer_broadcast(cpumask_t mask)
274{
275#ifdef CONFIG_SMP
276 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
277#endif
278}
279
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100280/*
281 * Setup the local APIC timer for this CPU. Copy the initilized values
282 * of the boot CPU and register the clock event in the framework.
283 */
284static void setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200285{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100286 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
287
288 memcpy(levt, &lapic_clockevent, sizeof(*levt));
289 levt->cpumask = cpumask_of_cpu(smp_processor_id());
290
291 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200292}
293
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100294/*
295 * In this function we calibrate APIC bus clocks to the external
296 * timer. Unfortunately we cannot use jiffies and the timer irq
297 * to calibrate, since some later bootup code depends on getting
298 * the first irq? Ugh.
299 *
300 * We want to do the calibration only once since we
301 * want to have local timer irqs syncron. CPUs connected
302 * by the same APIC bus have the very same bus frequency.
303 * And we want to have irqs off anyways, no accidental
304 * APIC irq that way.
305 */
306
307#define TICK_COUNT 100000000
308
309static void __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200310{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100311 unsigned apic, apic_start;
312 unsigned long tsc, tsc_start;
313 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200314
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100315 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200316
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100317 /*
318 * Put whatever arbitrary (but long enough) timeout
319 * value into the APIC clock, we just want to get the
320 * counter running for calibration.
321 *
322 * No interrupt enable !
323 */
324 __setup_APIC_LVTT(250000000, 0, 0);
325
326 apic_start = apic_read(APIC_TMCCT);
327#ifdef CONFIG_X86_PM_TIMER
328 if (apic_calibrate_pmtmr && pmtmr_ioport) {
329 pmtimer_wait(5000); /* 5ms wait */
330 apic = apic_read(APIC_TMCCT);
331 result = (apic_start - apic) * 1000L / 5;
332 } else
333#endif
334 {
335 rdtscll(tsc_start);
336
337 do {
338 apic = apic_read(APIC_TMCCT);
339 rdtscll(tsc);
340 } while ((tsc - tsc_start) < TICK_COUNT &&
341 (apic_start - apic) < TICK_COUNT);
342
343 result = (apic_start - apic) * 1000L * tsc_khz /
344 (tsc - tsc_start);
345 }
346
347 local_irq_enable();
348
349 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
350
351 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
352 result / 1000 / 1000, result / 1000 % 1000);
353
354 /* Calculate the scaled math multiplication factor */
355 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC, 32);
356 lapic_clockevent.max_delta_ns =
357 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
358 lapic_clockevent.min_delta_ns =
359 clockevent_delta2ns(0xF, &lapic_clockevent);
360
361 calibration_result = result / HZ;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200362}
363
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100364/*
365 * Setup the boot APIC
366 *
367 * Calibrate and verify the result.
368 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100369void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100371 /*
372 * The local apic timer can be disabled via the kernel commandline.
373 * Register the lapic timer as a dummy clock event source on SMP
374 * systems, so the broadcast mechanism is used. On UP systems simply
375 * ignore it.
376 */
377 if (disable_apic_timer) {
378 printk(KERN_INFO "Disabling APIC timer\n");
379 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100380 if (num_possible_cpus() > 1) {
381 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100382 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100383 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100384 return;
385 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200386
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100387 printk(KERN_INFO "Using local APIC timer interrupts.\n");
388 calibrate_APIC_clock();
389
390 /*
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100391 * Do a sanity check on the APIC calibration result
392 */
393 if (calibration_result < (1000000 / HZ)) {
394 printk(KERN_WARNING
395 "APIC frequency too slow, disabling apic timer\n");
396 /* No broadcast on UP ! */
397 if (num_possible_cpus() > 1)
398 setup_APIC_timer();
399 return;
400 }
401
402 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100403 * If nmi_watchdog is set to IO_APIC, we need the
404 * PIT/HPET going. Otherwise register lapic as a dummy
405 * device.
406 */
407 if (nmi_watchdog != NMI_IO_APIC)
408 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
409 else
410 printk(KERN_WARNING "APIC timer registered as dummy,"
411 " due to nmi_watchdog=1!\n");
412
413 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100416/*
417 * AMD C1E enabled CPUs have a real nasty problem: Some BIOSes set the
418 * C1E flag only in the secondary CPU, so when we detect the wreckage
419 * we already have enabled the boot CPU local apic timer. Check, if
420 * disable_apic_timer is set and the DUMMY flag is cleared. If yes,
421 * set the DUMMY flag again and force the broadcast mode in the
422 * clockevents layer.
423 */
424void __cpuinit check_boot_apic_timer_broadcast(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100426 if (!disable_apic_timer ||
427 (lapic_clockevent.features & CLOCK_EVT_FEAT_DUMMY))
428 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100430 printk(KERN_INFO "AMD C1E detected late. Force timer broadcast.\n");
431 lapic_clockevent.features |= CLOCK_EVT_FEAT_DUMMY;
432
433 local_irq_enable();
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300434 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
435 &boot_cpu_physical_apicid);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100436 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100439void __cpuinit setup_secondary_APIC_clock(void)
440{
441 check_boot_apic_timer_broadcast();
442 setup_APIC_timer();
443}
444
445/*
446 * The guts of the apic timer interrupt
447 */
448static void local_apic_timer_interrupt(void)
449{
450 int cpu = smp_processor_id();
451 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
452
453 /*
454 * Normally we should not be here till LAPIC has been initialized but
455 * in some cases like kdump, its possible that there is a pending LAPIC
456 * timer interrupt from previous kernel's context and is delivered in
457 * new kernel the moment interrupts are enabled.
458 *
459 * Interrupts are enabled early and LAPIC is setup much later, hence
460 * its possible that when we get here evt->event_handler is NULL.
461 * Check for event_handler being NULL and discard the interrupt as
462 * spurious.
463 */
464 if (!evt->event_handler) {
465 printk(KERN_WARNING
466 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
467 /* Switch it off */
468 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
469 return;
470 }
471
472 /*
473 * the NMI deadlock-detector uses this.
474 */
475 add_pda(apic_timer_irqs, 1);
476
477 evt->event_handler(evt);
478}
479
480/*
481 * Local APIC timer interrupt. This is the most natural way for doing
482 * local interrupts, but local timer interrupts can be emulated by
483 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
484 *
485 * [ if a single-CPU system runs an SMP kernel then we call the local
486 * interrupt as well. Thus we cannot inline the local irq ... ]
487 */
488void smp_apic_timer_interrupt(struct pt_regs *regs)
489{
490 struct pt_regs *old_regs = set_irq_regs(regs);
491
492 /*
493 * NOTE! We'd better ACK the irq immediately,
494 * because timer handling can be slow.
495 */
496 ack_APIC_irq();
497 /*
498 * update_process_times() expects us to have done irq_enter().
499 * Besides, if we don't timer interrupts ignore the global
500 * interrupt lock, which is the WrongThing (tm) to do.
501 */
502 exit_idle();
503 irq_enter();
504 local_apic_timer_interrupt();
505 irq_exit();
506 set_irq_regs(old_regs);
507}
508
509int setup_profiling_timer(unsigned int multiplier)
510{
511 return -EINVAL;
512}
513
514
515/*
516 * Local APIC start and shutdown
517 */
518
519/**
520 * clear_local_APIC - shutdown the local APIC
521 *
522 * This is called, when a CPU is disabled and before rebooting, so the state of
523 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
524 * leftovers during boot.
525 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526void clear_local_APIC(void)
527{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100528 int maxlvt = lapic_get_maxlvt();
529 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Andi Kleend3432892008-01-30 13:33:17 +0100531 /* APIC hasn't been mapped yet */
532 if (!apic_phys)
533 return;
534
535 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200537 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 * if the vector is zero. Mask LVTERR first to prevent this.
539 */
540 if (maxlvt >= 3) {
541 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100542 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544 /*
545 * Careful: we have to set masks only first to deassert
546 * any level-triggered sources.
547 */
548 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100549 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100551 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100553 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (maxlvt >= 4) {
555 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100556 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558
559 /*
560 * Clean APIC state for other OSs:
561 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100562 apic_write(APIC_LVTT, APIC_LVT_MASKED);
563 apic_write(APIC_LVT0, APIC_LVT_MASKED);
564 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100566 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100568 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200569 apic_write(APIC_ESR, 0);
570 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100573/**
574 * disable_local_APIC - clear and disable the local APIC
575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576void disable_local_APIC(void)
577{
578 unsigned int value;
579
580 clear_local_APIC();
581
582 /*
583 * Disable APIC (implies clearing of registers
584 * for 82489DX!).
585 */
586 value = apic_read(APIC_SPIV);
587 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100588 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700591void lapic_shutdown(void)
592{
593 unsigned long flags;
594
595 if (!cpu_has_apic)
596 return;
597
598 local_irq_save(flags);
599
600 disable_local_APIC();
601
602 local_irq_restore(flags);
603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/*
606 * This is to verify that we're looking at a real local APIC.
607 * Check these against your board if the CPUs aren't getting
608 * started for no apparent reason.
609 */
610int __init verify_local_APIC(void)
611{
612 unsigned int reg0, reg1;
613
614 /*
615 * The version register is read-only in a real APIC.
616 */
617 reg0 = apic_read(APIC_LVR);
618 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
619 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
620 reg1 = apic_read(APIC_LVR);
621 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
622
623 /*
624 * The two version reads above should print the same
625 * numbers. If the second one is different, then we
626 * poke at a non-APIC.
627 */
628 if (reg1 != reg0)
629 return 0;
630
631 /*
632 * Check if the version looks reasonably.
633 */
634 reg1 = GET_APIC_VERSION(reg0);
635 if (reg1 == 0x00 || reg1 == 0xff)
636 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100637 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (reg1 < 0x02 || reg1 == 0xff)
639 return 0;
640
641 /*
642 * The ID register is read/write in a real APIC.
643 */
644 reg0 = apic_read(APIC_ID);
645 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
646 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
647 reg1 = apic_read(APIC_ID);
648 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
649 apic_write(APIC_ID, reg0);
650 if (reg1 != (reg0 ^ APIC_ID_MASK))
651 return 0;
652
653 /*
654 * The next two are just to see if we have sane values.
655 * They're only really relevant if we're in Virtual Wire
656 * compatibility mode, but most boxes are anymore.
657 */
658 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100659 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 reg1 = apic_read(APIC_LVT1);
661 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
662
663 return 1;
664}
665
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100666/**
667 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
668 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669void __init sync_Arb_IDs(void)
670{
671 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100672 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return;
674
675 /*
676 * Wait for idle.
677 */
678 apic_wait_icr_idle();
679
680 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100681 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 | APIC_DM_INIT);
683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685/*
686 * An initial setup of the virtual wire mode.
687 */
688void __init init_bsp_APIC(void)
689{
Andi Kleen11a8e772006-01-11 22:46:51 +0100690 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 /*
693 * Don't do the setup now if we have a SMP BIOS as the
694 * through-I/O-APIC virtual wire mode might be active.
695 */
696 if (smp_found_config || !cpu_has_apic)
697 return;
698
699 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 /*
702 * Do not trust the local APIC being empty at bootup.
703 */
704 clear_local_APIC();
705
706 /*
707 * Enable APIC.
708 */
709 value = apic_read(APIC_SPIV);
710 value &= ~APIC_VECTOR_MASK;
711 value |= APIC_SPIV_APIC_ENABLED;
712 value |= APIC_SPIV_FOCUS_DISABLED;
713 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100714 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 /*
717 * Set up the virtual wire mode.
718 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100719 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100721 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100724/**
725 * setup_local_APIC - setup the local APIC
726 */
727void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Andi Kleen739f33b2008-01-30 13:30:40 +0100729 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100730 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Andi Kleenfe7414a2006-09-26 10:52:30 +0200734 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /*
737 * Double-check whether this APIC is really registered.
738 * This is meaningless in clustered apic mode, so we skip it.
739 */
740 if (!apic_id_registered())
741 BUG();
742
743 /*
744 * Intel recommends to set DFR, LDR and TPR before enabling
745 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
746 * document number 292116). So here it goes...
747 */
748 init_apic_ldr();
749
750 /*
751 * Set Task Priority to 'accept all'. We never change this
752 * later on.
753 */
754 value = apic_read(APIC_TASKPRI);
755 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100756 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100759 * After a crash, we no longer service the interrupts and a pending
760 * interrupt from previous kernel might still have ISR bit set.
761 *
762 * Most probably by now CPU has serviced that pending interrupt and
763 * it might not have done the ack_APIC_irq() because it thought,
764 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
765 * does not clear the ISR bit and cpu thinks it has already serivced
766 * the interrupt. Hence a vector might get locked. It was noticed
767 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
768 */
769 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
770 value = apic_read(APIC_ISR + i*0x10);
771 for (j = 31; j >= 0; j--) {
772 if (value & (1<<j))
773 ack_APIC_irq();
774 }
775 }
776
777 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * Now that we are all set up, enable the APIC
779 */
780 value = apic_read(APIC_SPIV);
781 value &= ~APIC_VECTOR_MASK;
782 /*
783 * Enable APIC
784 */
785 value |= APIC_SPIV_APIC_ENABLED;
786
Andi Kleen3f14c742006-09-26 10:52:29 +0200787 /* We always use processor focus */
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /*
790 * Set spurious IRQ vector
791 */
792 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100793 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /*
796 * Set up LVT0, LVT1:
797 *
798 * set up through-local-APIC on the BP's LINT0. This is not
799 * strictly necessary in pure symmetric-IO mode, but sometimes
800 * we delegate interrupts to the 8259A.
801 */
802 /*
803 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
804 */
805 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200806 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200808 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
809 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 } else {
811 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200812 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
813 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100815 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /*
818 * only the BP should see the LINT1 NMI signal, obviously.
819 */
820 if (!smp_processor_id())
821 value = APIC_DM_NMI;
822 else
823 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100824 apic_write(APIC_LVT1, value);
Andi Kleen739f33b2008-01-30 13:30:40 +0100825}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Andi Kleen739f33b2008-01-30 13:30:40 +0100827void __cpuinit lapic_setup_esr(void)
828{
829 unsigned maxlvt = lapic_get_maxlvt();
830
831 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100832 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100833 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100834 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100835 if (maxlvt > 3)
836 apic_write(APIC_ESR, 0);
837}
Yinghai Lu1c695242008-01-30 13:30:39 +0100838
Andi Kleen739f33b2008-01-30 13:30:40 +0100839void __cpuinit end_local_APIC_setup(void)
840{
841 lapic_setup_esr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 nmi_watchdog_default();
Don Zickusf2802e72006-09-26 10:52:26 +0200843 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 apic_pm_activate();
845}
846
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100847/*
848 * Detect and enable local APICs on non-SMP boards.
849 * Original code written by Keir Fraser.
850 * On AMD64 we trust the BIOS - if it says no APIC it is likely
851 * not correctly set up (usually the APIC timer won't work etc.)
852 */
853static int __init detect_init_APIC(void)
854{
855 if (!cpu_has_apic) {
856 printk(KERN_INFO "No local APIC present\n");
857 return -1;
858 }
859
860 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300861 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100862 return 0;
863}
864
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800865void __init early_init_lapic_mapping(void)
866{
867 unsigned long apic_phys;
868
869 /*
870 * If no local APIC can be found then go out
871 * : it means there is no mpatable and MADT
872 */
873 if (!smp_found_config)
874 return;
875
876 apic_phys = mp_lapic_addr;
877
878 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
879 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
880 APIC_BASE, apic_phys);
881
882 /*
883 * Fetch the APIC ID of the BSP in case we have a
884 * default configuration (or the MP table is broken).
885 */
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300886 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800887}
888
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100889/**
890 * init_apic_mappings - initialize APIC mappings
891 */
892void __init init_apic_mappings(void)
893{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100894 /*
895 * If no local APIC can be found then set up a fake all
896 * zeroes page to simulate the local APIC and another
897 * one for the IO-APIC.
898 */
899 if (!smp_found_config && detect_init_APIC()) {
900 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
901 apic_phys = __pa(apic_phys);
902 } else
903 apic_phys = mp_lapic_addr;
904
905 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
906 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
907 APIC_BASE, apic_phys);
908
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100909 /*
910 * Fetch the APIC ID of the BSP in case we have a
911 * default configuration (or the MP table is broken).
912 */
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300913 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100914}
915
916/*
917 * This initializes the IO-APIC and APIC hardware if this is
918 * a UP kernel.
919 */
920int __init APIC_init_uniprocessor(void)
921{
922 if (disable_apic) {
923 printk(KERN_INFO "Apic disabled\n");
924 return -1;
925 }
926 if (!cpu_has_apic) {
927 disable_apic = 1;
928 printk(KERN_INFO "Apic disabled by BIOS\n");
929 return -1;
930 }
931
932 verify_local_APIC();
933
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300934 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
935 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
946 end_local_APIC_setup();
947
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100948 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
949 setup_IO_APIC();
950 else
951 nr_ioapics = 0;
952 setup_boot_APIC_clock();
953 check_nmi_watchdog();
954 return 0;
955}
956
957/*
958 * Local APIC interrupts
959 */
960
961/*
962 * This interrupt should _never_ happen with our APIC/SMP architecture
963 */
964asmlinkage void smp_spurious_interrupt(void)
965{
966 unsigned int v;
967 exit_idle();
968 irq_enter();
969 /*
970 * Check if this really is a spurious interrupt and ACK it
971 * if it is a vectored one. Just in case...
972 * Spurious interrupts should not be ACKed.
973 */
974 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
975 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
976 ack_APIC_irq();
977
978 add_pda(irq_spurious_count, 1);
979 irq_exit();
980}
981
982/*
983 * This interrupt should never happen with our APIC/SMP architecture
984 */
985asmlinkage void smp_error_interrupt(void)
986{
987 unsigned int v, v1;
988
989 exit_idle();
990 irq_enter();
991 /* First tickle the hardware, only then report what went on. -- REW */
992 v = apic_read(APIC_ESR);
993 apic_write(APIC_ESR, 0);
994 v1 = apic_read(APIC_ESR);
995 ack_APIC_irq();
996 atomic_inc(&irq_err_count);
997
998 /* Here is what the APIC error bits mean:
999 0: Send CS error
1000 1: Receive CS error
1001 2: Send accept error
1002 3: Receive accept error
1003 4: Reserved
1004 5: Send illegal vector
1005 6: Received illegal vector
1006 7: Illegal register address
1007 */
1008 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1009 smp_processor_id(), v , v1);
1010 irq_exit();
1011}
1012
1013void disconnect_bsp_APIC(int virt_wire_setup)
1014{
1015 /* Go back to Virtual Wire compatibility mode */
1016 unsigned long value;
1017
1018 /* For the spurious interrupt use vector F, and enable it */
1019 value = apic_read(APIC_SPIV);
1020 value &= ~APIC_VECTOR_MASK;
1021 value |= APIC_SPIV_APIC_ENABLED;
1022 value |= 0xf;
1023 apic_write(APIC_SPIV, value);
1024
1025 if (!virt_wire_setup) {
1026 /*
1027 * For LVT0 make it edge triggered, active high,
1028 * external and enabled
1029 */
1030 value = apic_read(APIC_LVT0);
1031 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1032 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1033 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1034 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1035 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1036 apic_write(APIC_LVT0, value);
1037 } else {
1038 /* Disable LVT0 */
1039 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1040 }
1041
1042 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1043 value = apic_read(APIC_LVT1);
1044 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1045 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1046 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1047 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1048 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1049 apic_write(APIC_LVT1, value);
1050}
1051
1052/*
1053 * Power management
1054 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055#ifdef CONFIG_PM
1056
1057static struct {
1058 /* 'active' is true if the local APIC was enabled by us and
1059 not the BIOS; this signifies that we are also responsible
1060 for disabling it before entering apm/acpi suspend */
1061 int active;
1062 /* r/w apic fields */
1063 unsigned int apic_id;
1064 unsigned int apic_taskpri;
1065 unsigned int apic_ldr;
1066 unsigned int apic_dfr;
1067 unsigned int apic_spiv;
1068 unsigned int apic_lvtt;
1069 unsigned int apic_lvtpc;
1070 unsigned int apic_lvt0;
1071 unsigned int apic_lvt1;
1072 unsigned int apic_lvterr;
1073 unsigned int apic_tmict;
1074 unsigned int apic_tdcr;
1075 unsigned int apic_thmr;
1076} apic_pm_state;
1077
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001078static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001081 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 if (!apic_pm_state.active)
1084 return 0;
1085
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001086 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 apic_pm_state.apic_id = apic_read(APIC_ID);
1089 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1090 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1091 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1092 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1093 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001094 if (maxlvt >= 4)
1095 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1097 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1098 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1099 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1100 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001101#ifdef CONFIG_X86_MCE_INTEL
1102 if (maxlvt >= 5)
1103 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1104#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001105 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 disable_local_APIC();
1107 local_irq_restore(flags);
1108 return 0;
1109}
1110
1111static int lapic_resume(struct sys_device *dev)
1112{
1113 unsigned int l, h;
1114 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001115 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 if (!apic_pm_state.active)
1118 return 0;
1119
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001120 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 local_irq_save(flags);
1123 rdmsr(MSR_IA32_APICBASE, l, h);
1124 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +01001125 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 wrmsr(MSR_IA32_APICBASE, l, h);
1127 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1128 apic_write(APIC_ID, apic_pm_state.apic_id);
1129 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1130 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1131 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1132 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1133 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1134 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001135#ifdef CONFIG_X86_MCE_INTEL
1136 if (maxlvt >= 5)
1137 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1138#endif
1139 if (maxlvt >= 4)
1140 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1142 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1143 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1144 apic_write(APIC_ESR, 0);
1145 apic_read(APIC_ESR);
1146 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1147 apic_write(APIC_ESR, 0);
1148 apic_read(APIC_ESR);
1149 local_irq_restore(flags);
1150 return 0;
1151}
1152
1153static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001154 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 .resume = lapic_resume,
1156 .suspend = lapic_suspend,
1157};
1158
1159static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001160 .id = 0,
1161 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162};
1163
Ashok Raje6982c62005-06-25 14:54:58 -07001164static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 apic_pm_state.active = 1;
1167}
1168
1169static int __init init_lapic_sysfs(void)
1170{
1171 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (!cpu_has_apic)
1174 return 0;
1175 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 error = sysdev_class_register(&lapic_sysclass);
1178 if (!error)
1179 error = sysdev_register(&device_lapic);
1180 return error;
1181}
1182device_initcall(init_lapic_sysfs);
1183
1184#else /* CONFIG_PM */
1185
1186static void apic_pm_activate(void) { }
1187
1188#endif /* CONFIG_PM */
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001191 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 *
1193 * Thus far, the major user of this is IBM's Summit2 series:
1194 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001195 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 * multi-chassis. Use available data to take a good guess.
1197 * If in doubt, go HPET.
1198 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001199__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 int i, clusters, zeros;
1202 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001203 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1205
Yinghai Lu322850a2008-02-23 21:48:42 -08001206 /*
1207 * there is not this kind of box with AMD CPU yet.
1208 * Some AMD box with quadcore cpu and 8 sockets apicid
1209 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001210 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001211 */
Yinghai Luf8fffa42008-02-24 21:36:28 -08001212 if (!is_vsmp_box() && (boot_cpu_data.x86_vendor == X86_VENDOR_AMD))
Yinghai Lu322850a2008-02-23 21:48:42 -08001213 return 0;
1214
1215 bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
Suresh Siddha376ec332005-05-16 21:53:32 -07001216 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001219 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001220 if (bios_cpu_apicid) {
1221 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001222 }
1223 else if (i < nr_cpu_ids) {
1224 if (cpu_present(i))
1225 id = per_cpu(x86_bios_cpu_apicid, i);
1226 else
1227 continue;
1228 }
1229 else
1230 break;
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (id != BAD_APICID)
1233 __set_bit(APIC_CLUSTERID(id), clustermap);
1234 }
1235
1236 /* Problem: Partially populated chassis may not have CPUs in some of
1237 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001238 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1239 * Since clusters are allocated sequentially, count zeros only if
1240 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 */
1242 clusters = 0;
1243 zeros = 0;
1244 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1245 if (test_bit(i, clustermap)) {
1246 clusters += 1 + zeros;
1247 zeros = 0;
1248 } else
1249 ++zeros;
1250 }
1251
1252 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001253 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 * May have to revisit this when multi-core + hyperthreaded CPUs come
1255 * out, but AFAIK this will work even for them.
1256 */
1257 return (clusters > 2);
1258}
1259
1260/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001261 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001263static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001265 if (str == NULL) {
1266 skip_ioapic_setup = 0;
1267 ioapic_force = 1;
1268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001270 if (strcmp("debug", str) == 0)
1271 apic_verbosity = APIC_DEBUG;
1272 else if (strcmp("verbose", str) == 0)
1273 apic_verbosity = APIC_VERBOSE;
1274 else {
1275 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1276 " use apic=verbose or apic=debug\n", str);
1277 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return 0;
1281}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001282early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001284static __init int setup_disableapic(char *str)
1285{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 disable_apic = 1;
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001287 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001288 return 0;
1289}
1290early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001292/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001293static __init int setup_nolapic(char *str)
1294{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001295 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001296}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001297early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001299static int __init parse_lapic_timer_c2_ok(char *arg)
1300{
1301 local_apic_timer_c2_ok = 1;
1302 return 0;
1303}
1304early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1305
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001306static __init int setup_noapictimer(char *str)
1307{
Andi Kleen73dea472006-02-03 21:50:50 +01001308 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001309 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001311 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001312}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001313__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001314
Andi Kleen0c3749c2006-02-03 21:51:41 +01001315static __init int setup_apicpmtimer(char *s)
1316{
1317 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001318 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001319 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001320}
1321__setup("apicpmtimer", setup_apicpmtimer);
1322
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001323static int __init lapic_insert_resource(void)
1324{
1325 if (!apic_phys)
1326 return -1;
1327
1328 /* Put local APIC into the resource map. */
1329 lapic_resource.start = apic_phys;
1330 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1331 insert_resource(&iomem_resource, &lapic_resource);
1332
1333 return 0;
1334}
1335
1336/*
1337 * need call insert after e820_reserve_resources()
1338 * that is using request_resource
1339 */
1340late_initcall(lapic_insert_resource);