blob: aca054cc0552b61aa0ad3662a0b5dc9220dbf7e5 [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>
22#include <linux/smp_lock.h>
23#include <linux/interrupt.h>
24#include <linux/mc146818rtc.h>
25#include <linux/kernel_stat.h>
26#include <linux/sysdev.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070027#include <linux/cpu.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080028#include <linux/clockchips.h>
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -080029#include <linux/acpi_pmtmr.h>
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +010030#include <linux/module.h>
Thomas Gleixnerad62ca22007-03-22 00:11:21 -080031#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/atomic.h>
34#include <asm/smp.h>
35#include <asm/mtrr.h>
36#include <asm/mpspec.h>
37#include <asm/desc.h>
38#include <asm/arch_hooks.h>
39#include <asm/hpet.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070040#include <asm/i8253.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020041#include <asm/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <mach_apic.h>
Jesper Juhl382dbd02006-03-23 02:59:49 -080044#include <mach_apicdef.h>
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +010045#include <mach_ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include "io_ports.h"
48
49/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -080050 * Sanity check
51 */
52#if (SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F
53# error SPURIOUS_APIC_VECTOR definition error
54#endif
55
56/*
Eric W. Biederman9635b472005-06-25 14:57:41 -070057 * Knob to control our willingness to enable the local APIC.
Thomas Gleixnere05d7232007-02-16 01:27:58 -080058 *
59 * -1=force-disable, +1=force-enable
Eric W. Biederman9635b472005-06-25 14:57:41 -070060 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -080061static int enable_local_apic __initdata = 0;
Eric W. Biederman9635b472005-06-25 14:57:41 -070062
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -080063/* Local APIC timer verification ok */
64static int local_apic_timer_verify_ok;
Thomas Gleixnerad62ca22007-03-22 00:11:21 -080065/* Disable local APIC timer from the kernel commandline or via dmi quirk */
66static int local_apic_timer_disabled;
Thomas Gleixnere585bef2007-03-23 16:08:01 +010067/* Local APIC timer works in C2 */
68int local_apic_timer_c2_ok;
69EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080070
Eric W. Biederman9635b472005-06-25 14:57:41 -070071/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -080072 * Debug level, exported for io_apic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74int apic_verbosity;
75
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080076static unsigned int calibration_result;
77
78static int lapic_next_event(unsigned long delta,
79 struct clock_event_device *evt);
80static void lapic_timer_setup(enum clock_event_mode mode,
81 struct clock_event_device *evt);
82static void lapic_timer_broadcast(cpumask_t mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static void apic_pm_activate(void);
84
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080085/*
86 * The local apic timer can be used for any function which is CPU local.
87 */
88static struct clock_event_device lapic_clockevent = {
89 .name = "lapic",
90 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -080091 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080092 .shift = 32,
93 .set_mode = lapic_timer_setup,
94 .set_next_event = lapic_next_event,
95 .broadcast = lapic_timer_broadcast,
96 .rating = 100,
97 .irq = -1,
98};
99static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800101/* Local APIC was disabled by the BIOS and enabled by the kernel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int enabled_via_apicbase;
103
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800104/*
105 * Get the LAPIC version
106 */
107static inline int lapic_get_version(void)
108{
109 return GET_APIC_VERSION(apic_read(APIC_LVR));
110}
111
112/*
113 * Check, if the APIC is integrated or a seperate chip
114 */
115static inline int lapic_is_integrated(void)
116{
117 return APIC_INTEGRATED(lapic_get_version());
118}
119
120/*
121 * Check, whether this is a modern or a first generation APIC
122 */
123static int modern_apic(void)
124{
125 /* AMD systems use old APIC versions, so check the CPU */
126 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
127 boot_cpu_data.x86 >= 0xf)
128 return 1;
129 return lapic_get_version() >= 0x14;
130}
131
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200132void apic_wait_icr_idle(void)
133{
134 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
135 cpu_relax();
136}
137
138unsigned long safe_apic_wait_icr_idle(void)
139{
140 unsigned long send_status;
141 int timeout;
142
143 timeout = 0;
144 do {
145 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
146 if (!send_status)
147 break;
148 udelay(100);
149 } while (timeout++ < 1000);
150
151 return send_status;
152}
153
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800154/**
155 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157void enable_NMI_through_LVT0 (void * dummy)
158{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800159 unsigned int v = APIC_DM_NMI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800161 /* Level triggered for 82489DX */
162 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 v |= APIC_LVT_LEVEL_TRIGGER;
164 apic_write_around(APIC_LVT0, v);
165}
166
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800167/**
168 * get_physical_broadcast - Get number of physical broadcast IDs
169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170int get_physical_broadcast(void)
171{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800172 return modern_apic() ? 0xff : 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800175/**
176 * lapic_get_maxlvt - get the maximum number of local vector table entries
177 */
178int lapic_get_maxlvt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800180 unsigned int v = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* 82489DXs do not report # of LVT entries. */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800183 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800187 * Local APIC timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800190/* Clock divisor is set to 16 */
191#define APIC_DIVISOR 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193/*
194 * This function sets up the local APIC timer, with a timeout of
195 * 'clocks' APIC bus clock. During calibration we actually call
196 * this function twice on the boot CPU, once with a bogus timeout
197 * value, second time for real. The other (noncalibrating) CPUs
198 * call this function only once, with the real, calibrated value.
199 *
200 * We do reads before writes even if unnecessary, to get around the
201 * P5 APIC double write bug.
202 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800203static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800205 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800207 lvtt_value = LOCAL_TIMER_VECTOR;
208 if (!oneshot)
209 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800210 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100212
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800213 if (!irqen)
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100214 lvtt_value |= APIC_LVT_MASKED;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 apic_write_around(APIC_LVTT, lvtt_value);
217
218 /*
219 * Divide PICLK by 16
220 */
221 tmp_value = apic_read(APIC_TDCR);
222 apic_write_around(APIC_TDCR, (tmp_value
223 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
224 | APIC_TDR_DIV_16);
225
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800226 if (!oneshot)
227 apic_write_around(APIC_TMICT, clocks/APIC_DIVISOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800230/*
231 * Program the next event, relative to now
232 */
233static int lapic_next_event(unsigned long delta,
234 struct clock_event_device *evt)
235{
236 apic_write_around(APIC_TMICT, delta);
237 return 0;
238}
239
240/*
241 * Setup the lapic timer in periodic or oneshot mode
242 */
243static void lapic_timer_setup(enum clock_event_mode mode,
244 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800247 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800249 /* Lapic used for broadcast ? */
250 if (!local_apic_timer_verify_ok)
251 return;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 local_irq_save(flags);
254
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800255 switch (mode) {
256 case CLOCK_EVT_MODE_PERIODIC:
257 case CLOCK_EVT_MODE_ONESHOT:
258 __setup_APIC_LVTT(calibration_result,
259 mode != CLOCK_EVT_MODE_PERIODIC, 1);
260 break;
261 case CLOCK_EVT_MODE_UNUSED:
262 case CLOCK_EVT_MODE_SHUTDOWN:
263 v = apic_read(APIC_LVTT);
264 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
265 apic_write_around(APIC_LVTT, v);
266 break;
267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 local_irq_restore(flags);
270}
271
272/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800273 * Local APIC timer broadcast function
274 */
275static void lapic_timer_broadcast(cpumask_t mask)
276{
277#ifdef CONFIG_SMP
278 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
279#endif
280}
281
282/*
283 * Setup the local APIC timer for this CPU. Copy the initilized values
284 * of the boot CPU and register the clock event in the framework.
285 */
286static void __devinit setup_APIC_timer(void)
287{
288 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
289
290 memcpy(levt, &lapic_clockevent, sizeof(*levt));
291 levt->cpumask = cpumask_of_cpu(smp_processor_id());
292
293 clockevents_register_device(levt);
294}
295
296/*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800297 * In this functions we calibrate APIC bus clocks to the external timer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800299 * We want to do the calibration only once since we want to have local timer
300 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
301 * frequency.
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800302 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800303 * This was previously done by reading the PIT/HPET and waiting for a wrap
304 * around to find out, that a tick has elapsed. I have a box, where the PIT
305 * readout is broken, so it never gets out of the wait loop again. This was
306 * also reported by others.
307 *
308 * Monitoring the jiffies value is inaccurate and the clockevents
309 * infrastructure allows us to do a simple substitution of the interrupt
310 * handler.
311 *
312 * The calibration routine also uses the pm_timer when possible, as the PIT
313 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
314 * back to normal later in the boot process).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 */
316
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800317#define LAPIC_CAL_LOOPS (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800319static __initdata volatile int lapic_cal_loops = -1;
320static __initdata long lapic_cal_t1, lapic_cal_t2;
321static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
322static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
323static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
324
325/*
326 * Temporary interrupt handler.
327 */
328static void __init lapic_cal_handler(struct clock_event_device *dev)
329{
330 unsigned long long tsc = 0;
331 long tapic = apic_read(APIC_TMCCT);
332 unsigned long pm = acpi_pm_read_early();
333
334 if (cpu_has_tsc)
335 rdtscll(tsc);
336
337 switch (lapic_cal_loops++) {
338 case 0:
339 lapic_cal_t1 = tapic;
340 lapic_cal_tsc1 = tsc;
341 lapic_cal_pm1 = pm;
342 lapic_cal_j1 = jiffies;
343 break;
344
345 case LAPIC_CAL_LOOPS:
346 lapic_cal_t2 = tapic;
347 lapic_cal_tsc2 = tsc;
348 if (pm < lapic_cal_pm1)
349 pm += ACPI_PM_OVRRUN;
350 lapic_cal_pm2 = pm;
351 lapic_cal_j2 = jiffies;
352 break;
353 }
354}
355
356/*
357 * Setup the boot APIC
358 *
359 * Calibrate and verify the result.
360 */
361void __init setup_boot_APIC_clock(void)
362{
363 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
364 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
365 const long pm_thresh = pm_100ms/100;
366 void (*real_handler)(struct clock_event_device *dev);
367 unsigned long deltaj;
368 long delta, deltapm;
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800369 int pm_referenced = 0;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800370
Andi Kleen3556ddf2007-04-02 12:14:12 +0200371 if (boot_cpu_has(X86_FEATURE_LAPIC_TIMER_BROKEN))
372 local_apic_timer_disabled = 1;
Thomas Gleixnerad62ca22007-03-22 00:11:21 -0800373
374 /*
375 * The local apic timer can be disabled via the kernel
Andi Kleen3556ddf2007-04-02 12:14:12 +0200376 * commandline or from the test above. Register the lapic
Thomas Gleixnerad62ca22007-03-22 00:11:21 -0800377 * timer as a dummy clock event source on SMP systems, so the
378 * broadcast mechanism is used. On UP systems simply ignore it.
379 */
380 if (local_apic_timer_disabled) {
381 /* No broadcast on UP ! */
382 if (num_possible_cpus() > 1)
383 setup_APIC_timer();
384 return;
385 }
386
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800387 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
388 "calibrating APIC timer ...\n");
389
390 local_irq_disable();
391
392 /* Replace the global interrupt handler */
393 real_handler = global_clock_event->event_handler;
394 global_clock_event->event_handler = lapic_cal_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800397 * Setup the APIC counter to 1e9. There is no way the lapic
398 * can underflow in the 100ms detection time frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800400 __setup_APIC_LVTT(1000000000, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800402 /* Let the interrupts run */
403 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800405 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
406 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800408 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800410 /* Restore the real event handler */
411 global_clock_event->event_handler = real_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800413 /* Build delta t1-t2 as apic timer counts down */
414 delta = lapic_cal_t1 - lapic_cal_t2;
415 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800417 /* Check, if the PM timer is available */
418 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
419 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800421 if (deltapm) {
422 unsigned long mult;
423 u64 res;
424
425 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
426
427 if (deltapm > (pm_100ms - pm_thresh) &&
428 deltapm < (pm_100ms + pm_thresh)) {
429 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
430 } else {
431 res = (((u64) deltapm) * mult) >> 22;
432 do_div(res, 1000000);
433 printk(KERN_WARNING "APIC calibration not consistent "
434 "with PM Timer: %ldms instead of 100ms\n",
435 (long)res);
436 /* Correct the lapic counter value */
437 res = (((u64) delta ) * pm_100ms);
438 do_div(res, deltapm);
439 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
440 "%lu (%ld)\n", (unsigned long) res, delta);
441 delta = (long) res;
442 }
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800443 pm_referenced = 1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800446 /* Calculate the scaled math multiplication factor */
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800447 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS, 32);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800448 lapic_clockevent.max_delta_ns =
449 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
450 lapic_clockevent.min_delta_ns =
451 clockevent_delta2ns(0xF, &lapic_clockevent);
452
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800453 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800454
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800455 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
456 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
457 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
458 calibration_result);
459
460 if (cpu_has_tsc) {
461 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800463 "%ld.%04ld MHz.\n",
464 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
465 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800469 "%u.%04u MHz.\n",
470 calibration_result / (1000000 / HZ),
471 calibration_result % (1000000 / HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800473 local_apic_timer_verify_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800475 /* We trust the pm timer based calibration */
476 if (!pm_referenced) {
477 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800478
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800479 /*
480 * Setup the apic timer manually
481 */
482 levt->event_handler = lapic_cal_handler;
483 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
484 lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800485
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800486 /* Let the interrupts run */
487 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800488
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800489 while(lapic_cal_loops <= LAPIC_CAL_LOOPS)
490 cpu_relax();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800491
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800492 local_irq_disable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800493
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800494 /* Stop the lapic timer */
495 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800496
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800497 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800498
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800499 /* Jiffies delta */
500 deltaj = lapic_cal_j2 - lapic_cal_j1;
501 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800502
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800503 /* Check, if the jiffies result is consistent */
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800504 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800505 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800506 else
507 local_apic_timer_verify_ok = 0;
Ingo Molnar4edc5db2007-03-22 10:31:19 +0100508 } else
509 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800510
511 if (!local_apic_timer_verify_ok) {
512 printk(KERN_WARNING
513 "APIC timer disabled due to verification failure.\n");
514 /* No broadcast on UP ! */
515 if (num_possible_cpus() == 1)
516 return;
Thomas Gleixnera5f5e432007-03-05 00:30:45 -0800517 } else {
518 /*
519 * If nmi_watchdog is set to IO_APIC, we need the
520 * PIT/HPET going. Otherwise register lapic as a dummy
521 * device.
522 */
523 if (nmi_watchdog != NMI_IO_APIC)
524 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
525 }
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800526
527 /* Setup the lapic or request the broadcast */
528 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Li Shaohua0bb31842005-06-25 14:54:55 -0700531void __devinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800533 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800537 * The guts of the apic timer interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800539static void local_apic_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800541 int cpu = smp_processor_id();
542 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800545 * Normally we should not be here till LAPIC has been initialized but
546 * in some cases like kdump, its possible that there is a pending LAPIC
547 * timer interrupt from previous kernel's context and is delivered in
548 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800550 * Interrupts are enabled early and LAPIC is setup much later, hence
551 * its possible that when we get here evt->event_handler is NULL.
552 * Check for event_handler being NULL and discard the interrupt as
553 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800555 if (!evt->event_handler) {
556 printk(KERN_WARNING
557 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
558 /* Switch it off */
559 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
560 return;
561 }
562
563 per_cpu(irq_stat, cpu).apic_timer_irqs++;
564
565 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568/*
569 * Local APIC timer interrupt. This is the most natural way for doing
570 * local interrupts, but local timer interrupts can be emulated by
571 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
572 *
573 * [ if a single-CPU system runs an SMP kernel then we call the local
574 * interrupt as well. Thus we cannot inline the local irq ... ]
575 */
576
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800577void fastcall smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
David Howells7d12e782006-10-05 14:55:46 +0100579 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 /*
582 * NOTE! We'd better ACK the irq immediately,
583 * because timer handling can be slow.
584 */
585 ack_APIC_irq();
586 /*
587 * update_process_times() expects us to have done irq_enter().
588 * Besides, if we don't timer interrupts ignore the global
589 * interrupt lock, which is the WrongThing (tm) to do.
590 */
591 irq_enter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800592 local_apic_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 irq_exit();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800594
David Howells7d12e782006-10-05 14:55:46 +0100595 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +0100598int setup_profiling_timer(unsigned int multiplier)
599{
600 return -EINVAL;
601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800604 * Local APIC start and shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800606
607/**
608 * clear_local_APIC - shutdown the local APIC
609 *
610 * This is called, when a CPU is disabled and before rebooting, so the state of
611 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
612 * leftovers during boot.
613 */
614void clear_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800616 int maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 unsigned long v;
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800620 * Masking an LVT entry can trigger a local APIC error
621 * if the vector is zero. Mask LVTERR first to prevent this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800623 if (maxlvt >= 3) {
624 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
625 apic_write_around(APIC_LVTERR, v | APIC_LVT_MASKED);
626 }
627 /*
628 * Careful: we have to set masks only first to deassert
629 * any level-triggered sources.
630 */
631 v = apic_read(APIC_LVTT);
632 apic_write_around(APIC_LVTT, v | APIC_LVT_MASKED);
633 v = apic_read(APIC_LVT0);
634 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
635 v = apic_read(APIC_LVT1);
636 apic_write_around(APIC_LVT1, v | APIC_LVT_MASKED);
637 if (maxlvt >= 4) {
638 v = apic_read(APIC_LVTPC);
639 apic_write_around(APIC_LVTPC, v | APIC_LVT_MASKED);
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800642 /* lets not touch this if we didn't frob it */
643#ifdef CONFIG_X86_MCE_P4THERMAL
644 if (maxlvt >= 5) {
645 v = apic_read(APIC_LVTTHMR);
646 apic_write_around(APIC_LVTTHMR, v | APIC_LVT_MASKED);
647 }
648#endif
649 /*
650 * Clean APIC state for other OSs:
651 */
652 apic_write_around(APIC_LVTT, APIC_LVT_MASKED);
653 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
654 apic_write_around(APIC_LVT1, APIC_LVT_MASKED);
655 if (maxlvt >= 3)
656 apic_write_around(APIC_LVTERR, APIC_LVT_MASKED);
657 if (maxlvt >= 4)
658 apic_write_around(APIC_LVTPC, APIC_LVT_MASKED);
659
660#ifdef CONFIG_X86_MCE_P4THERMAL
661 if (maxlvt >= 5)
662 apic_write_around(APIC_LVTTHMR, APIC_LVT_MASKED);
663#endif
664 /* Integrated APIC (!82489DX) ? */
665 if (lapic_is_integrated()) {
666 if (maxlvt > 3)
667 /* Clear ESR due to Pentium errata 3AP and 11AP */
668 apic_write(APIC_ESR, 0);
669 apic_read(APIC_ESR);
670 }
671}
672
673/**
674 * disable_local_APIC - clear and disable the local APIC
675 */
676void disable_local_APIC(void)
677{
678 unsigned long value;
679
680 clear_local_APIC();
681
682 /*
683 * Disable APIC (implies clearing of registers
684 * for 82489DX!).
685 */
686 value = apic_read(APIC_SPIV);
687 value &= ~APIC_SPIV_APIC_ENABLED;
688 apic_write_around(APIC_SPIV, value);
689
690 /*
691 * When LAPIC was disabled by the BIOS and enabled by the kernel,
692 * restore the disabled state.
693 */
694 if (enabled_via_apicbase) {
695 unsigned int l, h;
696
697 rdmsr(MSR_IA32_APICBASE, l, h);
698 l &= ~MSR_IA32_APICBASE_ENABLE;
699 wrmsr(MSR_IA32_APICBASE, l, h);
700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
703/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800704 * If Linux enabled the LAPIC against the BIOS default disable it down before
705 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
706 * not power-off. Additionally clear all LVT entries before disable_local_APIC
707 * for the case where Linux didn't enable the LAPIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800709void lapic_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800711 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800713 if (!cpu_has_apic)
714 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800716 local_irq_save(flags);
717 clear_local_APIC();
718
719 if (enabled_via_apicbase)
720 disable_local_APIC();
721
722 local_irq_restore(flags);
723}
724
725/*
726 * This is to verify that we're looking at a real local APIC.
727 * Check these against your board if the CPUs aren't getting
728 * started for no apparent reason.
729 */
730int __init verify_local_APIC(void)
731{
732 unsigned int reg0, reg1;
733
734 /*
735 * The version register is read-only in a real APIC.
736 */
737 reg0 = apic_read(APIC_LVR);
738 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
739 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
740 reg1 = apic_read(APIC_LVR);
741 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
742
743 /*
744 * The two version reads above should print the same
745 * numbers. If the second one is different, then we
746 * poke at a non-APIC.
747 */
748 if (reg1 != reg0)
749 return 0;
750
751 /*
752 * Check if the version looks reasonably.
753 */
754 reg1 = GET_APIC_VERSION(reg0);
755 if (reg1 == 0x00 || reg1 == 0xff)
756 return 0;
757 reg1 = lapic_get_maxlvt();
758 if (reg1 < 0x02 || reg1 == 0xff)
759 return 0;
760
761 /*
762 * The ID register is read/write in a real APIC.
763 */
764 reg0 = apic_read(APIC_ID);
765 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
766
767 /*
768 * The next two are just to see if we have sane values.
769 * They're only really relevant if we're in Virtual Wire
770 * compatibility mode, but most boxes are anymore.
771 */
772 reg0 = apic_read(APIC_LVT0);
773 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
774 reg1 = apic_read(APIC_LVT1);
775 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
776
777 return 1;
778}
779
780/**
781 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
782 */
783void __init sync_Arb_IDs(void)
784{
785 /*
786 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
787 * needed on AMD.
788 */
789 if (modern_apic())
790 return;
791 /*
792 * Wait for idle.
793 */
794 apic_wait_icr_idle();
795
796 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
797 apic_write_around(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
798 | APIC_DM_INIT);
799}
800
801/*
802 * An initial setup of the virtual wire mode.
803 */
804void __init init_bsp_APIC(void)
805{
806 unsigned long value;
807
808 /*
809 * Don't do the setup now if we have a SMP BIOS as the
810 * through-I/O-APIC virtual wire mode might be active.
811 */
812 if (smp_found_config || !cpu_has_apic)
813 return;
814
815 /*
816 * Do not trust the local APIC being empty at bootup.
817 */
818 clear_local_APIC();
819
820 /*
821 * Enable APIC.
822 */
823 value = apic_read(APIC_SPIV);
824 value &= ~APIC_VECTOR_MASK;
825 value |= APIC_SPIV_APIC_ENABLED;
826
827 /* This bit is reserved on P4/Xeon and should be cleared */
828 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
829 (boot_cpu_data.x86 == 15))
830 value &= ~APIC_SPIV_FOCUS_DISABLED;
831 else
832 value |= APIC_SPIV_FOCUS_DISABLED;
833 value |= SPURIOUS_APIC_VECTOR;
834 apic_write_around(APIC_SPIV, value);
835
836 /*
837 * Set up the virtual wire mode.
838 */
839 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
840 value = APIC_DM_NMI;
841 if (!lapic_is_integrated()) /* 82489DX */
842 value |= APIC_LVT_LEVEL_TRIGGER;
843 apic_write_around(APIC_LVT1, value);
844}
845
846/**
847 * setup_local_APIC - setup the local APIC
848 */
849void __devinit setup_local_APIC(void)
850{
851 unsigned long oldvalue, value, maxlvt, integrated;
852 int i, j;
853
854 /* Pound the ESR really hard over the head with a big hammer - mbligh */
855 if (esr_disable) {
856 apic_write(APIC_ESR, 0);
857 apic_write(APIC_ESR, 0);
858 apic_write(APIC_ESR, 0);
859 apic_write(APIC_ESR, 0);
860 }
861
862 integrated = lapic_is_integrated();
863
864 /*
865 * Double-check whether this APIC is really registered.
866 */
867 if (!apic_id_registered())
868 BUG();
869
870 /*
871 * Intel recommends to set DFR, LDR and TPR before enabling
872 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
873 * document number 292116). So here it goes...
874 */
875 init_apic_ldr();
876
877 /*
878 * Set Task Priority to 'accept all'. We never change this
879 * later on.
880 */
881 value = apic_read(APIC_TASKPRI);
882 value &= ~APIC_TPRI_MASK;
883 apic_write_around(APIC_TASKPRI, value);
884
885 /*
886 * After a crash, we no longer service the interrupts and a pending
887 * interrupt from previous kernel might still have ISR bit set.
888 *
889 * Most probably by now CPU has serviced that pending interrupt and
890 * it might not have done the ack_APIC_irq() because it thought,
891 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
892 * does not clear the ISR bit and cpu thinks it has already serivced
893 * the interrupt. Hence a vector might get locked. It was noticed
894 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
895 */
896 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
897 value = apic_read(APIC_ISR + i*0x10);
898 for (j = 31; j >= 0; j--) {
899 if (value & (1<<j))
900 ack_APIC_irq();
901 }
902 }
903
904 /*
905 * Now that we are all set up, enable the APIC
906 */
907 value = apic_read(APIC_SPIV);
908 value &= ~APIC_VECTOR_MASK;
909 /*
910 * Enable APIC
911 */
912 value |= APIC_SPIV_APIC_ENABLED;
913
914 /*
915 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
916 * certain networking cards. If high frequency interrupts are
917 * happening on a particular IOAPIC pin, plus the IOAPIC routing
918 * entry is masked/unmasked at a high rate as well then sooner or
919 * later IOAPIC line gets 'stuck', no more interrupts are received
920 * from the device. If focus CPU is disabled then the hang goes
921 * away, oh well :-(
922 *
923 * [ This bug can be reproduced easily with a level-triggered
924 * PCI Ne2000 networking cards and PII/PIII processors, dual
925 * BX chipset. ]
926 */
927 /*
928 * Actually disabling the focus CPU check just makes the hang less
929 * frequent as it makes the interrupt distributon model be more
930 * like LRU than MRU (the short-term load is more even across CPUs).
931 * See also the comment in end_level_ioapic_irq(). --macro
932 */
933
934 /* Enable focus processor (bit==0) */
935 value &= ~APIC_SPIV_FOCUS_DISABLED;
936
937 /*
938 * Set spurious IRQ vector
939 */
940 value |= SPURIOUS_APIC_VECTOR;
941 apic_write_around(APIC_SPIV, value);
942
943 /*
944 * Set up LVT0, LVT1:
945 *
946 * set up through-local-APIC on the BP's LINT0. This is not
947 * strictly necessery in pure symmetric-IO mode, but sometimes
948 * we delegate interrupts to the 8259A.
949 */
950 /*
951 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
952 */
953 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
954 if (!smp_processor_id() && (pic_mode || !value)) {
955 value = APIC_DM_EXTINT;
956 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
957 smp_processor_id());
958 } else {
959 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
960 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
961 smp_processor_id());
962 }
963 apic_write_around(APIC_LVT0, value);
964
965 /*
966 * only the BP should see the LINT1 NMI signal, obviously.
967 */
968 if (!smp_processor_id())
969 value = APIC_DM_NMI;
970 else
971 value = APIC_DM_NMI | APIC_LVT_MASKED;
972 if (!integrated) /* 82489DX */
973 value |= APIC_LVT_LEVEL_TRIGGER;
974 apic_write_around(APIC_LVT1, value);
975
976 if (integrated && !esr_disable) { /* !82489DX */
977 maxlvt = lapic_get_maxlvt();
978 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
979 apic_write(APIC_ESR, 0);
980 oldvalue = apic_read(APIC_ESR);
981
982 /* enables sending errors */
983 value = ERROR_APIC_VECTOR;
984 apic_write_around(APIC_LVTERR, value);
985 /*
986 * spec says clear errors after enabling vector.
987 */
988 if (maxlvt > 3)
989 apic_write(APIC_ESR, 0);
990 value = apic_read(APIC_ESR);
991 if (value != oldvalue)
992 apic_printk(APIC_VERBOSE, "ESR value before enabling "
993 "vector: 0x%08lx after: 0x%08lx\n",
994 oldvalue, value);
995 } else {
996 if (esr_disable)
997 /*
998 * Something untraceble is creating bad interrupts on
999 * secondary quads ... for the moment, just leave the
1000 * ESR disabled - we can't do anything useful with the
1001 * errors anyway - mbligh
1002 */
1003 printk(KERN_INFO "Leaving ESR disabled.\n");
1004 else
1005 printk(KERN_INFO "No ESR for 82489DX.\n");
1006 }
1007
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001008 /* Disable the local apic timer */
1009 value = apic_read(APIC_LVTT);
1010 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1011 apic_write_around(APIC_LVTT, value);
1012
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001013 setup_apic_nmi_watchdog(NULL);
1014 apic_pm_activate();
1015}
1016
1017/*
1018 * Detect and initialize APIC
1019 */
1020static int __init detect_init_APIC (void)
1021{
1022 u32 h, l, features;
1023
1024 /* Disabled by kernel option? */
1025 if (enable_local_apic < 0)
1026 return -1;
1027
1028 switch (boot_cpu_data.x86_vendor) {
1029 case X86_VENDOR_AMD:
1030 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1031 (boot_cpu_data.x86 == 15))
1032 break;
1033 goto no_apic;
1034 case X86_VENDOR_INTEL:
1035 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1036 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1037 break;
1038 goto no_apic;
1039 default:
1040 goto no_apic;
1041 }
1042
1043 if (!cpu_has_apic) {
1044 /*
1045 * Over-ride BIOS and try to enable the local APIC only if
1046 * "lapic" specified.
1047 */
1048 if (enable_local_apic <= 0) {
1049 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1050 "you can enable it with \"lapic\"\n");
1051 return -1;
1052 }
1053 /*
1054 * Some BIOSes disable the local APIC in the APIC_BASE
1055 * MSR. This can only be done in software for Intel P6 or later
1056 * and AMD K7 (Model > 1) or later.
1057 */
1058 rdmsr(MSR_IA32_APICBASE, l, h);
1059 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1060 printk(KERN_INFO
1061 "Local APIC disabled by BIOS -- reenabling.\n");
1062 l &= ~MSR_IA32_APICBASE_BASE;
1063 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1064 wrmsr(MSR_IA32_APICBASE, l, h);
1065 enabled_via_apicbase = 1;
1066 }
1067 }
1068 /*
1069 * The APIC feature bit should now be enabled
1070 * in `cpuid'
1071 */
1072 features = cpuid_edx(1);
1073 if (!(features & (1 << X86_FEATURE_APIC))) {
1074 printk(KERN_WARNING "Could not enable APIC!\n");
1075 return -1;
1076 }
1077 set_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1078 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1079
1080 /* The BIOS may have set up the APIC at some other address */
1081 rdmsr(MSR_IA32_APICBASE, l, h);
1082 if (l & MSR_IA32_APICBASE_ENABLE)
1083 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1084
1085 if (nmi_watchdog != NMI_NONE)
1086 nmi_watchdog = NMI_LOCAL_APIC;
1087
1088 printk(KERN_INFO "Found and enabled local APIC!\n");
1089
1090 apic_pm_activate();
1091
1092 return 0;
1093
1094no_apic:
1095 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1096 return -1;
1097}
1098
1099/**
1100 * init_apic_mappings - initialize APIC mappings
1101 */
1102void __init init_apic_mappings(void)
1103{
1104 unsigned long apic_phys;
1105
1106 /*
1107 * If no local APIC can be found then set up a fake all
1108 * zeroes page to simulate the local APIC and another
1109 * one for the IO-APIC.
1110 */
1111 if (!smp_found_config && detect_init_APIC()) {
1112 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1113 apic_phys = __pa(apic_phys);
1114 } else
1115 apic_phys = mp_lapic_addr;
1116
1117 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1118 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1119 apic_phys);
1120
1121 /*
1122 * Fetch the APIC ID of the BSP in case we have a
1123 * default configuration (or the MP table is broken).
1124 */
1125 if (boot_cpu_physical_apicid == -1U)
1126 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
1127
1128#ifdef CONFIG_X86_IO_APIC
1129 {
1130 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
1131 int i;
1132
1133 for (i = 0; i < nr_ioapics; i++) {
1134 if (smp_found_config) {
1135 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
1136 if (!ioapic_phys) {
1137 printk(KERN_ERR
1138 "WARNING: bogus zero IO-APIC "
1139 "address found in MPTABLE, "
1140 "disabling IO/APIC support!\n");
1141 smp_found_config = 0;
1142 skip_ioapic_setup = 1;
1143 goto fake_ioapic_page;
1144 }
1145 } else {
1146fake_ioapic_page:
1147 ioapic_phys = (unsigned long)
1148 alloc_bootmem_pages(PAGE_SIZE);
1149 ioapic_phys = __pa(ioapic_phys);
1150 }
1151 set_fixmap_nocache(idx, ioapic_phys);
1152 printk(KERN_DEBUG "mapped IOAPIC to %08lx (%08lx)\n",
1153 __fix_to_virt(idx), ioapic_phys);
1154 idx++;
1155 }
1156 }
1157#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
1160/*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001161 * This initializes the IO-APIC and APIC hardware if this is
1162 * a UP kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 */
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001164int __init APIC_init_uniprocessor (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001166 if (enable_local_apic < 0)
1167 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001168
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001169 if (!smp_found_config && !cpu_has_apic)
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001170 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001173 * Complain if the BIOS pretends there is one.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001175 if (!cpu_has_apic &&
1176 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001178 boot_cpu_physical_apicid);
Andi Kleen3777a952006-02-03 21:51:53 +01001179 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return -1;
1181 }
1182
1183 verify_local_APIC();
1184
1185 connect_bsp_APIC();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001186
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001187 /*
1188 * Hack: In case of kdump, after a crash, kernel might be booting
1189 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1190 * might be zero if read from MP tables. Get it from LAPIC.
1191 */
1192#ifdef CONFIG_CRASH_DUMP
1193 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
1194#endif
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001195 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 setup_local_APIC();
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001200 if (smp_found_config)
1201 if (!skip_ioapic_setup && nr_ioapics)
1202 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203#endif
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001204 setup_boot_clock();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001205
1206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001208
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001209/*
1210 * APIC command line parameters
1211 */
Rusty Russell1a3f2392006-09-26 10:52:32 +02001212static int __init parse_lapic(char *arg)
1213{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001214 enable_local_apic = 1;
Rusty Russell1a3f2392006-09-26 10:52:32 +02001215 return 0;
1216}
1217early_param("lapic", parse_lapic);
1218
1219static int __init parse_nolapic(char *arg)
1220{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001221 enable_local_apic = -1;
1222 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001223 return 0;
1224}
1225early_param("nolapic", parse_nolapic);
1226
Thomas Gleixnerad62ca22007-03-22 00:11:21 -08001227static int __init parse_disable_lapic_timer(char *arg)
1228{
1229 local_apic_timer_disabled = 1;
1230 return 0;
1231}
1232early_param("nolapic_timer", parse_disable_lapic_timer);
1233
Thomas Gleixnere585bef2007-03-23 16:08:01 +01001234static int __init parse_lapic_timer_c2_ok(char *arg)
1235{
1236 local_apic_timer_c2_ok = 1;
1237 return 0;
1238}
1239early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1240
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001241static int __init apic_set_verbosity(char *str)
1242{
1243 if (strcmp("debug", str) == 0)
1244 apic_verbosity = APIC_DEBUG;
1245 else if (strcmp("verbose", str) == 0)
1246 apic_verbosity = APIC_VERBOSE;
1247 return 1;
1248}
1249
1250__setup("apic=", apic_set_verbosity);
1251
1252
1253/*
1254 * Local APIC interrupts
1255 */
1256
1257/*
1258 * This interrupt should _never_ happen with our APIC/SMP architecture
1259 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001260void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001261{
1262 unsigned long v;
1263
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001264 irq_enter();
1265 /*
1266 * Check if this really is a spurious interrupt and ACK it
1267 * if it is a vectored one. Just in case...
1268 * Spurious interrupts should not be ACKed.
1269 */
1270 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1271 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1272 ack_APIC_irq();
1273
1274 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1275 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1276 "should never happen.\n", smp_processor_id());
1277 irq_exit();
1278}
1279
1280/*
1281 * This interrupt should never happen with our APIC/SMP architecture
1282 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001283void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001284{
1285 unsigned long v, v1;
1286
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001287 irq_enter();
1288 /* First tickle the hardware, only then report what went on. -- REW */
1289 v = apic_read(APIC_ESR);
1290 apic_write(APIC_ESR, 0);
1291 v1 = apic_read(APIC_ESR);
1292 ack_APIC_irq();
1293 atomic_inc(&irq_err_count);
1294
1295 /* Here is what the APIC error bits mean:
1296 0: Send CS error
1297 1: Receive CS error
1298 2: Send accept error
1299 3: Receive accept error
1300 4: Reserved
1301 5: Send illegal vector
1302 6: Received illegal vector
1303 7: Illegal register address
1304 */
1305 printk (KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
1306 smp_processor_id(), v , v1);
1307 irq_exit();
1308}
1309
1310/*
1311 * Initialize APIC interrupts
1312 */
1313void __init apic_intr_init(void)
1314{
1315#ifdef CONFIG_SMP
1316 smp_intr_init();
1317#endif
1318 /* self generated IPI for local APIC timer */
1319 set_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
1320
1321 /* IPI vectors for APIC spurious and error interrupts */
1322 set_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
1323 set_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
1324
1325 /* thermal monitor LVT interrupt */
1326#ifdef CONFIG_X86_MCE_P4THERMAL
1327 set_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
1328#endif
1329}
1330
1331/**
1332 * connect_bsp_APIC - attach the APIC to the interrupt system
1333 */
1334void __init connect_bsp_APIC(void)
1335{
1336 if (pic_mode) {
1337 /*
1338 * Do not trust the local APIC being empty at bootup.
1339 */
1340 clear_local_APIC();
1341 /*
1342 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1343 * local APIC to INT and NMI lines.
1344 */
1345 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1346 "enabling APIC mode.\n");
1347 outb(0x70, 0x22);
1348 outb(0x01, 0x23);
1349 }
1350 enable_apic_mode();
1351}
1352
1353/**
1354 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1355 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1356 *
1357 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1358 * APIC is disabled.
1359 */
1360void disconnect_bsp_APIC(int virt_wire_setup)
1361{
1362 if (pic_mode) {
1363 /*
1364 * Put the board back into PIC mode (has an effect only on
1365 * certain older boards). Note that APIC interrupts, including
1366 * IPIs, won't work beyond this point! The only exception are
1367 * INIT IPIs.
1368 */
1369 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1370 "entering PIC mode.\n");
1371 outb(0x70, 0x22);
1372 outb(0x00, 0x23);
1373 } else {
1374 /* Go back to Virtual Wire compatibility mode */
1375 unsigned long value;
1376
1377 /* For the spurious interrupt use vector F, and enable it */
1378 value = apic_read(APIC_SPIV);
1379 value &= ~APIC_VECTOR_MASK;
1380 value |= APIC_SPIV_APIC_ENABLED;
1381 value |= 0xf;
1382 apic_write_around(APIC_SPIV, value);
1383
1384 if (!virt_wire_setup) {
1385 /*
1386 * For LVT0 make it edge triggered, active high,
1387 * external and enabled
1388 */
1389 value = apic_read(APIC_LVT0);
1390 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1391 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1392 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED );
1393 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1394 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1395 apic_write_around(APIC_LVT0, value);
1396 } else {
1397 /* Disable LVT0 */
1398 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
1399 }
1400
1401 /*
1402 * For LVT1 make it edge triggered, active high, nmi and
1403 * enabled
1404 */
1405 value = apic_read(APIC_LVT1);
1406 value &= ~(
1407 APIC_MODE_MASK | APIC_SEND_PENDING |
1408 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1409 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1410 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1411 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1412 apic_write_around(APIC_LVT1, value);
1413 }
1414}
1415
1416/*
1417 * Power management
1418 */
1419#ifdef CONFIG_PM
1420
1421static struct {
1422 int active;
1423 /* r/w apic fields */
1424 unsigned int apic_id;
1425 unsigned int apic_taskpri;
1426 unsigned int apic_ldr;
1427 unsigned int apic_dfr;
1428 unsigned int apic_spiv;
1429 unsigned int apic_lvtt;
1430 unsigned int apic_lvtpc;
1431 unsigned int apic_lvt0;
1432 unsigned int apic_lvt1;
1433 unsigned int apic_lvterr;
1434 unsigned int apic_tmict;
1435 unsigned int apic_tdcr;
1436 unsigned int apic_thmr;
1437} apic_pm_state;
1438
1439static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1440{
1441 unsigned long flags;
1442 int maxlvt;
1443
1444 if (!apic_pm_state.active)
1445 return 0;
1446
1447 maxlvt = lapic_get_maxlvt();
1448
1449 apic_pm_state.apic_id = apic_read(APIC_ID);
1450 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1451 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1452 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1453 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1454 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1455 if (maxlvt >= 4)
1456 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1457 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1458 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1459 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1460 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1461 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1462#ifdef CONFIG_X86_MCE_P4THERMAL
1463 if (maxlvt >= 5)
1464 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1465#endif
1466
1467 local_irq_save(flags);
1468 disable_local_APIC();
1469 local_irq_restore(flags);
1470 return 0;
1471}
1472
1473static int lapic_resume(struct sys_device *dev)
1474{
1475 unsigned int l, h;
1476 unsigned long flags;
1477 int maxlvt;
1478
1479 if (!apic_pm_state.active)
1480 return 0;
1481
1482 maxlvt = lapic_get_maxlvt();
1483
1484 local_irq_save(flags);
1485
1486 /*
1487 * Make sure the APICBASE points to the right address
1488 *
1489 * FIXME! This will be wrong if we ever support suspend on
1490 * SMP! We'll need to do this as part of the CPU restore!
1491 */
1492 rdmsr(MSR_IA32_APICBASE, l, h);
1493 l &= ~MSR_IA32_APICBASE_BASE;
1494 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1495 wrmsr(MSR_IA32_APICBASE, l, h);
1496
1497 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1498 apic_write(APIC_ID, apic_pm_state.apic_id);
1499 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1500 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1501 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1502 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1503 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1504 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1505#ifdef CONFIG_X86_MCE_P4THERMAL
1506 if (maxlvt >= 5)
1507 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1508#endif
1509 if (maxlvt >= 4)
1510 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1511 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1512 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1513 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1514 apic_write(APIC_ESR, 0);
1515 apic_read(APIC_ESR);
1516 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1517 apic_write(APIC_ESR, 0);
1518 apic_read(APIC_ESR);
1519 local_irq_restore(flags);
1520 return 0;
1521}
1522
1523/*
1524 * This device has no shutdown method - fully functioning local APICs
1525 * are needed on every CPU up until machine_halt/restart/poweroff.
1526 */
1527
1528static struct sysdev_class lapic_sysclass = {
1529 set_kset_name("lapic"),
1530 .resume = lapic_resume,
1531 .suspend = lapic_suspend,
1532};
1533
1534static struct sys_device device_lapic = {
1535 .id = 0,
1536 .cls = &lapic_sysclass,
1537};
1538
1539static void __devinit apic_pm_activate(void)
1540{
1541 apic_pm_state.active = 1;
1542}
1543
1544static int __init init_lapic_sysfs(void)
1545{
1546 int error;
1547
1548 if (!cpu_has_apic)
1549 return 0;
1550 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1551
1552 error = sysdev_class_register(&lapic_sysclass);
1553 if (!error)
1554 error = sysdev_register(&device_lapic);
1555 return error;
1556}
1557device_initcall(init_lapic_sysfs);
1558
1559#else /* CONFIG_PM */
1560
1561static void apic_pm_activate(void) { }
1562
1563#endif /* CONFIG_PM */