blob: 93aa911646ad5140310ceeb78c8b410322f4768a [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
132/**
133 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135void enable_NMI_through_LVT0 (void * dummy)
136{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800137 unsigned int v = APIC_DM_NMI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800139 /* Level triggered for 82489DX */
140 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 v |= APIC_LVT_LEVEL_TRIGGER;
142 apic_write_around(APIC_LVT0, v);
143}
144
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800145/**
146 * get_physical_broadcast - Get number of physical broadcast IDs
147 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148int get_physical_broadcast(void)
149{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800150 return modern_apic() ? 0xff : 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800153/**
154 * lapic_get_maxlvt - get the maximum number of local vector table entries
155 */
156int lapic_get_maxlvt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800158 unsigned int v = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* 82489DXs do not report # of LVT entries. */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800161 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800165 * Local APIC timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800168/* Clock divisor is set to 16 */
169#define APIC_DIVISOR 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*
172 * This function sets up the local APIC timer, with a timeout of
173 * 'clocks' APIC bus clock. During calibration we actually call
174 * this function twice on the boot CPU, once with a bogus timeout
175 * value, second time for real. The other (noncalibrating) CPUs
176 * call this function only once, with the real, calibrated value.
177 *
178 * We do reads before writes even if unnecessary, to get around the
179 * P5 APIC double write bug.
180 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800181static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800183 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800185 lvtt_value = LOCAL_TIMER_VECTOR;
186 if (!oneshot)
187 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800188 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100190
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800191 if (!irqen)
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100192 lvtt_value |= APIC_LVT_MASKED;
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 apic_write_around(APIC_LVTT, lvtt_value);
195
196 /*
197 * Divide PICLK by 16
198 */
199 tmp_value = apic_read(APIC_TDCR);
200 apic_write_around(APIC_TDCR, (tmp_value
201 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
202 | APIC_TDR_DIV_16);
203
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800204 if (!oneshot)
205 apic_write_around(APIC_TMICT, clocks/APIC_DIVISOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800208/*
209 * Program the next event, relative to now
210 */
211static int lapic_next_event(unsigned long delta,
212 struct clock_event_device *evt)
213{
214 apic_write_around(APIC_TMICT, delta);
215 return 0;
216}
217
218/*
219 * Setup the lapic timer in periodic or oneshot mode
220 */
221static void lapic_timer_setup(enum clock_event_mode mode,
222 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800225 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800227 /* Lapic used for broadcast ? */
228 if (!local_apic_timer_verify_ok)
229 return;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 local_irq_save(flags);
232
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800233 switch (mode) {
234 case CLOCK_EVT_MODE_PERIODIC:
235 case CLOCK_EVT_MODE_ONESHOT:
236 __setup_APIC_LVTT(calibration_result,
237 mode != CLOCK_EVT_MODE_PERIODIC, 1);
238 break;
239 case CLOCK_EVT_MODE_UNUSED:
240 case CLOCK_EVT_MODE_SHUTDOWN:
241 v = apic_read(APIC_LVTT);
242 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
243 apic_write_around(APIC_LVTT, v);
244 break;
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 local_irq_restore(flags);
248}
249
250/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800251 * Local APIC timer broadcast function
252 */
253static void lapic_timer_broadcast(cpumask_t mask)
254{
255#ifdef CONFIG_SMP
256 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
257#endif
258}
259
260/*
261 * Setup the local APIC timer for this CPU. Copy the initilized values
262 * of the boot CPU and register the clock event in the framework.
263 */
264static void __devinit setup_APIC_timer(void)
265{
266 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
267
268 memcpy(levt, &lapic_clockevent, sizeof(*levt));
269 levt->cpumask = cpumask_of_cpu(smp_processor_id());
270
271 clockevents_register_device(levt);
272}
273
274/*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800275 * In this functions we calibrate APIC bus clocks to the external timer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800277 * We want to do the calibration only once since we want to have local timer
278 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
279 * frequency.
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800280 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800281 * This was previously done by reading the PIT/HPET and waiting for a wrap
282 * around to find out, that a tick has elapsed. I have a box, where the PIT
283 * readout is broken, so it never gets out of the wait loop again. This was
284 * also reported by others.
285 *
286 * Monitoring the jiffies value is inaccurate and the clockevents
287 * infrastructure allows us to do a simple substitution of the interrupt
288 * handler.
289 *
290 * The calibration routine also uses the pm_timer when possible, as the PIT
291 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
292 * back to normal later in the boot process).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 */
294
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800295#define LAPIC_CAL_LOOPS (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800297static __initdata volatile int lapic_cal_loops = -1;
298static __initdata long lapic_cal_t1, lapic_cal_t2;
299static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
300static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
301static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
302
303/*
304 * Temporary interrupt handler.
305 */
306static void __init lapic_cal_handler(struct clock_event_device *dev)
307{
308 unsigned long long tsc = 0;
309 long tapic = apic_read(APIC_TMCCT);
310 unsigned long pm = acpi_pm_read_early();
311
312 if (cpu_has_tsc)
313 rdtscll(tsc);
314
315 switch (lapic_cal_loops++) {
316 case 0:
317 lapic_cal_t1 = tapic;
318 lapic_cal_tsc1 = tsc;
319 lapic_cal_pm1 = pm;
320 lapic_cal_j1 = jiffies;
321 break;
322
323 case LAPIC_CAL_LOOPS:
324 lapic_cal_t2 = tapic;
325 lapic_cal_tsc2 = tsc;
326 if (pm < lapic_cal_pm1)
327 pm += ACPI_PM_OVRRUN;
328 lapic_cal_pm2 = pm;
329 lapic_cal_j2 = jiffies;
330 break;
331 }
332}
333
334/*
335 * Setup the boot APIC
336 *
337 * Calibrate and verify the result.
338 */
339void __init setup_boot_APIC_clock(void)
340{
341 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
342 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
343 const long pm_thresh = pm_100ms/100;
344 void (*real_handler)(struct clock_event_device *dev);
345 unsigned long deltaj;
346 long delta, deltapm;
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800347 int pm_referenced = 0;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800348
Andi Kleen3556ddf2007-04-02 12:14:12 +0200349 if (boot_cpu_has(X86_FEATURE_LAPIC_TIMER_BROKEN))
350 local_apic_timer_disabled = 1;
Thomas Gleixnerad62ca22007-03-22 00:11:21 -0800351
352 /*
353 * The local apic timer can be disabled via the kernel
Andi Kleen3556ddf2007-04-02 12:14:12 +0200354 * commandline or from the test above. Register the lapic
Thomas Gleixnerad62ca22007-03-22 00:11:21 -0800355 * timer as a dummy clock event source on SMP systems, so the
356 * broadcast mechanism is used. On UP systems simply ignore it.
357 */
358 if (local_apic_timer_disabled) {
359 /* No broadcast on UP ! */
360 if (num_possible_cpus() > 1)
361 setup_APIC_timer();
362 return;
363 }
364
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800365 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
366 "calibrating APIC timer ...\n");
367
368 local_irq_disable();
369
370 /* Replace the global interrupt handler */
371 real_handler = global_clock_event->event_handler;
372 global_clock_event->event_handler = lapic_cal_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800375 * Setup the APIC counter to 1e9. There is no way the lapic
376 * can underflow in the 100ms detection time frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800378 __setup_APIC_LVTT(1000000000, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800380 /* Let the interrupts run */
381 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800383 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
384 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800386 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800388 /* Restore the real event handler */
389 global_clock_event->event_handler = real_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800391 /* Build delta t1-t2 as apic timer counts down */
392 delta = lapic_cal_t1 - lapic_cal_t2;
393 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800395 /* Check, if the PM timer is available */
396 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
397 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800399 if (deltapm) {
400 unsigned long mult;
401 u64 res;
402
403 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
404
405 if (deltapm > (pm_100ms - pm_thresh) &&
406 deltapm < (pm_100ms + pm_thresh)) {
407 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
408 } else {
409 res = (((u64) deltapm) * mult) >> 22;
410 do_div(res, 1000000);
411 printk(KERN_WARNING "APIC calibration not consistent "
412 "with PM Timer: %ldms instead of 100ms\n",
413 (long)res);
414 /* Correct the lapic counter value */
415 res = (((u64) delta ) * pm_100ms);
416 do_div(res, deltapm);
417 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
418 "%lu (%ld)\n", (unsigned long) res, delta);
419 delta = (long) res;
420 }
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800421 pm_referenced = 1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800424 /* Calculate the scaled math multiplication factor */
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800425 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS, 32);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800426 lapic_clockevent.max_delta_ns =
427 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
428 lapic_clockevent.min_delta_ns =
429 clockevent_delta2ns(0xF, &lapic_clockevent);
430
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800431 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800432
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800433 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
434 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
435 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
436 calibration_result);
437
438 if (cpu_has_tsc) {
439 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800441 "%ld.%04ld MHz.\n",
442 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
443 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800447 "%u.%04u MHz.\n",
448 calibration_result / (1000000 / HZ),
449 calibration_result % (1000000 / HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800451 local_apic_timer_verify_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800453 /* We trust the pm timer based calibration */
454 if (!pm_referenced) {
455 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800456
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800457 /*
458 * Setup the apic timer manually
459 */
460 levt->event_handler = lapic_cal_handler;
461 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
462 lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800463
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800464 /* Let the interrupts run */
465 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800466
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800467 while(lapic_cal_loops <= LAPIC_CAL_LOOPS)
468 cpu_relax();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800469
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800470 local_irq_disable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800471
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800472 /* Stop the lapic timer */
473 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800474
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800475 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800476
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800477 /* Jiffies delta */
478 deltaj = lapic_cal_j2 - lapic_cal_j1;
479 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800480
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800481 /* Check, if the jiffies result is consistent */
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800482 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800483 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800484 else
485 local_apic_timer_verify_ok = 0;
Ingo Molnar4edc5db2007-03-22 10:31:19 +0100486 } else
487 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800488
489 if (!local_apic_timer_verify_ok) {
490 printk(KERN_WARNING
491 "APIC timer disabled due to verification failure.\n");
492 /* No broadcast on UP ! */
493 if (num_possible_cpus() == 1)
494 return;
Thomas Gleixnera5f5e432007-03-05 00:30:45 -0800495 } else {
496 /*
497 * If nmi_watchdog is set to IO_APIC, we need the
498 * PIT/HPET going. Otherwise register lapic as a dummy
499 * device.
500 */
501 if (nmi_watchdog != NMI_IO_APIC)
502 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
503 }
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800504
505 /* Setup the lapic or request the broadcast */
506 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Li Shaohua0bb31842005-06-25 14:54:55 -0700509void __devinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800511 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800515 * The guts of the apic timer interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800517static void local_apic_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800519 int cpu = smp_processor_id();
520 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800523 * Normally we should not be here till LAPIC has been initialized but
524 * in some cases like kdump, its possible that there is a pending LAPIC
525 * timer interrupt from previous kernel's context and is delivered in
526 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800528 * Interrupts are enabled early and LAPIC is setup much later, hence
529 * its possible that when we get here evt->event_handler is NULL.
530 * Check for event_handler being NULL and discard the interrupt as
531 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800533 if (!evt->event_handler) {
534 printk(KERN_WARNING
535 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
536 /* Switch it off */
537 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
538 return;
539 }
540
541 per_cpu(irq_stat, cpu).apic_timer_irqs++;
542
543 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546/*
547 * Local APIC timer interrupt. This is the most natural way for doing
548 * local interrupts, but local timer interrupts can be emulated by
549 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
550 *
551 * [ if a single-CPU system runs an SMP kernel then we call the local
552 * interrupt as well. Thus we cannot inline the local irq ... ]
553 */
554
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800555void fastcall smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
David Howells7d12e782006-10-05 14:55:46 +0100557 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /*
560 * NOTE! We'd better ACK the irq immediately,
561 * because timer handling can be slow.
562 */
563 ack_APIC_irq();
564 /*
565 * update_process_times() expects us to have done irq_enter().
566 * Besides, if we don't timer interrupts ignore the global
567 * interrupt lock, which is the WrongThing (tm) to do.
568 */
569 irq_enter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800570 local_apic_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 irq_exit();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800572
David Howells7d12e782006-10-05 14:55:46 +0100573 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +0100576int setup_profiling_timer(unsigned int multiplier)
577{
578 return -EINVAL;
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800582 * Local APIC start and shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800584
585/**
586 * clear_local_APIC - shutdown the local APIC
587 *
588 * This is called, when a CPU is disabled and before rebooting, so the state of
589 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
590 * leftovers during boot.
591 */
592void clear_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800594 int maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 unsigned long v;
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800598 * Masking an LVT entry can trigger a local APIC error
599 * if the vector is zero. Mask LVTERR first to prevent this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800601 if (maxlvt >= 3) {
602 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
603 apic_write_around(APIC_LVTERR, v | APIC_LVT_MASKED);
604 }
605 /*
606 * Careful: we have to set masks only first to deassert
607 * any level-triggered sources.
608 */
609 v = apic_read(APIC_LVTT);
610 apic_write_around(APIC_LVTT, v | APIC_LVT_MASKED);
611 v = apic_read(APIC_LVT0);
612 apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
613 v = apic_read(APIC_LVT1);
614 apic_write_around(APIC_LVT1, v | APIC_LVT_MASKED);
615 if (maxlvt >= 4) {
616 v = apic_read(APIC_LVTPC);
617 apic_write_around(APIC_LVTPC, v | APIC_LVT_MASKED);
618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800620 /* lets not touch this if we didn't frob it */
621#ifdef CONFIG_X86_MCE_P4THERMAL
622 if (maxlvt >= 5) {
623 v = apic_read(APIC_LVTTHMR);
624 apic_write_around(APIC_LVTTHMR, v | APIC_LVT_MASKED);
625 }
626#endif
627 /*
628 * Clean APIC state for other OSs:
629 */
630 apic_write_around(APIC_LVTT, APIC_LVT_MASKED);
631 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
632 apic_write_around(APIC_LVT1, APIC_LVT_MASKED);
633 if (maxlvt >= 3)
634 apic_write_around(APIC_LVTERR, APIC_LVT_MASKED);
635 if (maxlvt >= 4)
636 apic_write_around(APIC_LVTPC, APIC_LVT_MASKED);
637
638#ifdef CONFIG_X86_MCE_P4THERMAL
639 if (maxlvt >= 5)
640 apic_write_around(APIC_LVTTHMR, APIC_LVT_MASKED);
641#endif
642 /* Integrated APIC (!82489DX) ? */
643 if (lapic_is_integrated()) {
644 if (maxlvt > 3)
645 /* Clear ESR due to Pentium errata 3AP and 11AP */
646 apic_write(APIC_ESR, 0);
647 apic_read(APIC_ESR);
648 }
649}
650
651/**
652 * disable_local_APIC - clear and disable the local APIC
653 */
654void disable_local_APIC(void)
655{
656 unsigned long value;
657
658 clear_local_APIC();
659
660 /*
661 * Disable APIC (implies clearing of registers
662 * for 82489DX!).
663 */
664 value = apic_read(APIC_SPIV);
665 value &= ~APIC_SPIV_APIC_ENABLED;
666 apic_write_around(APIC_SPIV, value);
667
668 /*
669 * When LAPIC was disabled by the BIOS and enabled by the kernel,
670 * restore the disabled state.
671 */
672 if (enabled_via_apicbase) {
673 unsigned int l, h;
674
675 rdmsr(MSR_IA32_APICBASE, l, h);
676 l &= ~MSR_IA32_APICBASE_ENABLE;
677 wrmsr(MSR_IA32_APICBASE, l, h);
678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800682 * If Linux enabled the LAPIC against the BIOS default disable it down before
683 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
684 * not power-off. Additionally clear all LVT entries before disable_local_APIC
685 * for the case where Linux didn't enable the LAPIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800687void lapic_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800689 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800691 if (!cpu_has_apic)
692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800694 local_irq_save(flags);
695 clear_local_APIC();
696
697 if (enabled_via_apicbase)
698 disable_local_APIC();
699
700 local_irq_restore(flags);
701}
702
703/*
704 * This is to verify that we're looking at a real local APIC.
705 * Check these against your board if the CPUs aren't getting
706 * started for no apparent reason.
707 */
708int __init verify_local_APIC(void)
709{
710 unsigned int reg0, reg1;
711
712 /*
713 * The version register is read-only in a real APIC.
714 */
715 reg0 = apic_read(APIC_LVR);
716 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
717 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
718 reg1 = apic_read(APIC_LVR);
719 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
720
721 /*
722 * The two version reads above should print the same
723 * numbers. If the second one is different, then we
724 * poke at a non-APIC.
725 */
726 if (reg1 != reg0)
727 return 0;
728
729 /*
730 * Check if the version looks reasonably.
731 */
732 reg1 = GET_APIC_VERSION(reg0);
733 if (reg1 == 0x00 || reg1 == 0xff)
734 return 0;
735 reg1 = lapic_get_maxlvt();
736 if (reg1 < 0x02 || reg1 == 0xff)
737 return 0;
738
739 /*
740 * The ID register is read/write in a real APIC.
741 */
742 reg0 = apic_read(APIC_ID);
743 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
744
745 /*
746 * The next two are just to see if we have sane values.
747 * They're only really relevant if we're in Virtual Wire
748 * compatibility mode, but most boxes are anymore.
749 */
750 reg0 = apic_read(APIC_LVT0);
751 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
752 reg1 = apic_read(APIC_LVT1);
753 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
754
755 return 1;
756}
757
758/**
759 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
760 */
761void __init sync_Arb_IDs(void)
762{
763 /*
764 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
765 * needed on AMD.
766 */
767 if (modern_apic())
768 return;
769 /*
770 * Wait for idle.
771 */
772 apic_wait_icr_idle();
773
774 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
775 apic_write_around(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
776 | APIC_DM_INIT);
777}
778
779/*
780 * An initial setup of the virtual wire mode.
781 */
782void __init init_bsp_APIC(void)
783{
784 unsigned long value;
785
786 /*
787 * Don't do the setup now if we have a SMP BIOS as the
788 * through-I/O-APIC virtual wire mode might be active.
789 */
790 if (smp_found_config || !cpu_has_apic)
791 return;
792
793 /*
794 * Do not trust the local APIC being empty at bootup.
795 */
796 clear_local_APIC();
797
798 /*
799 * Enable APIC.
800 */
801 value = apic_read(APIC_SPIV);
802 value &= ~APIC_VECTOR_MASK;
803 value |= APIC_SPIV_APIC_ENABLED;
804
805 /* This bit is reserved on P4/Xeon and should be cleared */
806 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
807 (boot_cpu_data.x86 == 15))
808 value &= ~APIC_SPIV_FOCUS_DISABLED;
809 else
810 value |= APIC_SPIV_FOCUS_DISABLED;
811 value |= SPURIOUS_APIC_VECTOR;
812 apic_write_around(APIC_SPIV, value);
813
814 /*
815 * Set up the virtual wire mode.
816 */
817 apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
818 value = APIC_DM_NMI;
819 if (!lapic_is_integrated()) /* 82489DX */
820 value |= APIC_LVT_LEVEL_TRIGGER;
821 apic_write_around(APIC_LVT1, value);
822}
823
824/**
825 * setup_local_APIC - setup the local APIC
826 */
827void __devinit setup_local_APIC(void)
828{
829 unsigned long oldvalue, value, maxlvt, integrated;
830 int i, j;
831
832 /* Pound the ESR really hard over the head with a big hammer - mbligh */
833 if (esr_disable) {
834 apic_write(APIC_ESR, 0);
835 apic_write(APIC_ESR, 0);
836 apic_write(APIC_ESR, 0);
837 apic_write(APIC_ESR, 0);
838 }
839
840 integrated = lapic_is_integrated();
841
842 /*
843 * Double-check whether this APIC is really registered.
844 */
845 if (!apic_id_registered())
846 BUG();
847
848 /*
849 * Intel recommends to set DFR, LDR and TPR before enabling
850 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
851 * document number 292116). So here it goes...
852 */
853 init_apic_ldr();
854
855 /*
856 * Set Task Priority to 'accept all'. We never change this
857 * later on.
858 */
859 value = apic_read(APIC_TASKPRI);
860 value &= ~APIC_TPRI_MASK;
861 apic_write_around(APIC_TASKPRI, value);
862
863 /*
864 * After a crash, we no longer service the interrupts and a pending
865 * interrupt from previous kernel might still have ISR bit set.
866 *
867 * Most probably by now CPU has serviced that pending interrupt and
868 * it might not have done the ack_APIC_irq() because it thought,
869 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
870 * does not clear the ISR bit and cpu thinks it has already serivced
871 * the interrupt. Hence a vector might get locked. It was noticed
872 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
873 */
874 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
875 value = apic_read(APIC_ISR + i*0x10);
876 for (j = 31; j >= 0; j--) {
877 if (value & (1<<j))
878 ack_APIC_irq();
879 }
880 }
881
882 /*
883 * Now that we are all set up, enable the APIC
884 */
885 value = apic_read(APIC_SPIV);
886 value &= ~APIC_VECTOR_MASK;
887 /*
888 * Enable APIC
889 */
890 value |= APIC_SPIV_APIC_ENABLED;
891
892 /*
893 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
894 * certain networking cards. If high frequency interrupts are
895 * happening on a particular IOAPIC pin, plus the IOAPIC routing
896 * entry is masked/unmasked at a high rate as well then sooner or
897 * later IOAPIC line gets 'stuck', no more interrupts are received
898 * from the device. If focus CPU is disabled then the hang goes
899 * away, oh well :-(
900 *
901 * [ This bug can be reproduced easily with a level-triggered
902 * PCI Ne2000 networking cards and PII/PIII processors, dual
903 * BX chipset. ]
904 */
905 /*
906 * Actually disabling the focus CPU check just makes the hang less
907 * frequent as it makes the interrupt distributon model be more
908 * like LRU than MRU (the short-term load is more even across CPUs).
909 * See also the comment in end_level_ioapic_irq(). --macro
910 */
911
912 /* Enable focus processor (bit==0) */
913 value &= ~APIC_SPIV_FOCUS_DISABLED;
914
915 /*
916 * Set spurious IRQ vector
917 */
918 value |= SPURIOUS_APIC_VECTOR;
919 apic_write_around(APIC_SPIV, value);
920
921 /*
922 * Set up LVT0, LVT1:
923 *
924 * set up through-local-APIC on the BP's LINT0. This is not
925 * strictly necessery in pure symmetric-IO mode, but sometimes
926 * we delegate interrupts to the 8259A.
927 */
928 /*
929 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
930 */
931 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
932 if (!smp_processor_id() && (pic_mode || !value)) {
933 value = APIC_DM_EXTINT;
934 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
935 smp_processor_id());
936 } else {
937 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
938 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
939 smp_processor_id());
940 }
941 apic_write_around(APIC_LVT0, value);
942
943 /*
944 * only the BP should see the LINT1 NMI signal, obviously.
945 */
946 if (!smp_processor_id())
947 value = APIC_DM_NMI;
948 else
949 value = APIC_DM_NMI | APIC_LVT_MASKED;
950 if (!integrated) /* 82489DX */
951 value |= APIC_LVT_LEVEL_TRIGGER;
952 apic_write_around(APIC_LVT1, value);
953
954 if (integrated && !esr_disable) { /* !82489DX */
955 maxlvt = lapic_get_maxlvt();
956 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
957 apic_write(APIC_ESR, 0);
958 oldvalue = apic_read(APIC_ESR);
959
960 /* enables sending errors */
961 value = ERROR_APIC_VECTOR;
962 apic_write_around(APIC_LVTERR, value);
963 /*
964 * spec says clear errors after enabling vector.
965 */
966 if (maxlvt > 3)
967 apic_write(APIC_ESR, 0);
968 value = apic_read(APIC_ESR);
969 if (value != oldvalue)
970 apic_printk(APIC_VERBOSE, "ESR value before enabling "
971 "vector: 0x%08lx after: 0x%08lx\n",
972 oldvalue, value);
973 } else {
974 if (esr_disable)
975 /*
976 * Something untraceble is creating bad interrupts on
977 * secondary quads ... for the moment, just leave the
978 * ESR disabled - we can't do anything useful with the
979 * errors anyway - mbligh
980 */
981 printk(KERN_INFO "Leaving ESR disabled.\n");
982 else
983 printk(KERN_INFO "No ESR for 82489DX.\n");
984 }
985
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800986 /* Disable the local apic timer */
987 value = apic_read(APIC_LVTT);
988 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
989 apic_write_around(APIC_LVTT, value);
990
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800991 setup_apic_nmi_watchdog(NULL);
992 apic_pm_activate();
993}
994
995/*
996 * Detect and initialize APIC
997 */
998static int __init detect_init_APIC (void)
999{
1000 u32 h, l, features;
1001
1002 /* Disabled by kernel option? */
1003 if (enable_local_apic < 0)
1004 return -1;
1005
1006 switch (boot_cpu_data.x86_vendor) {
1007 case X86_VENDOR_AMD:
1008 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1009 (boot_cpu_data.x86 == 15))
1010 break;
1011 goto no_apic;
1012 case X86_VENDOR_INTEL:
1013 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1014 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1015 break;
1016 goto no_apic;
1017 default:
1018 goto no_apic;
1019 }
1020
1021 if (!cpu_has_apic) {
1022 /*
1023 * Over-ride BIOS and try to enable the local APIC only if
1024 * "lapic" specified.
1025 */
1026 if (enable_local_apic <= 0) {
1027 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1028 "you can enable it with \"lapic\"\n");
1029 return -1;
1030 }
1031 /*
1032 * Some BIOSes disable the local APIC in the APIC_BASE
1033 * MSR. This can only be done in software for Intel P6 or later
1034 * and AMD K7 (Model > 1) or later.
1035 */
1036 rdmsr(MSR_IA32_APICBASE, l, h);
1037 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1038 printk(KERN_INFO
1039 "Local APIC disabled by BIOS -- reenabling.\n");
1040 l &= ~MSR_IA32_APICBASE_BASE;
1041 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1042 wrmsr(MSR_IA32_APICBASE, l, h);
1043 enabled_via_apicbase = 1;
1044 }
1045 }
1046 /*
1047 * The APIC feature bit should now be enabled
1048 * in `cpuid'
1049 */
1050 features = cpuid_edx(1);
1051 if (!(features & (1 << X86_FEATURE_APIC))) {
1052 printk(KERN_WARNING "Could not enable APIC!\n");
1053 return -1;
1054 }
1055 set_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1056 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1057
1058 /* The BIOS may have set up the APIC at some other address */
1059 rdmsr(MSR_IA32_APICBASE, l, h);
1060 if (l & MSR_IA32_APICBASE_ENABLE)
1061 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1062
1063 if (nmi_watchdog != NMI_NONE)
1064 nmi_watchdog = NMI_LOCAL_APIC;
1065
1066 printk(KERN_INFO "Found and enabled local APIC!\n");
1067
1068 apic_pm_activate();
1069
1070 return 0;
1071
1072no_apic:
1073 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1074 return -1;
1075}
1076
1077/**
1078 * init_apic_mappings - initialize APIC mappings
1079 */
1080void __init init_apic_mappings(void)
1081{
1082 unsigned long apic_phys;
1083
1084 /*
1085 * If no local APIC can be found then set up a fake all
1086 * zeroes page to simulate the local APIC and another
1087 * one for the IO-APIC.
1088 */
1089 if (!smp_found_config && detect_init_APIC()) {
1090 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1091 apic_phys = __pa(apic_phys);
1092 } else
1093 apic_phys = mp_lapic_addr;
1094
1095 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1096 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1097 apic_phys);
1098
1099 /*
1100 * Fetch the APIC ID of the BSP in case we have a
1101 * default configuration (or the MP table is broken).
1102 */
1103 if (boot_cpu_physical_apicid == -1U)
1104 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
1105
1106#ifdef CONFIG_X86_IO_APIC
1107 {
1108 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
1109 int i;
1110
1111 for (i = 0; i < nr_ioapics; i++) {
1112 if (smp_found_config) {
1113 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
1114 if (!ioapic_phys) {
1115 printk(KERN_ERR
1116 "WARNING: bogus zero IO-APIC "
1117 "address found in MPTABLE, "
1118 "disabling IO/APIC support!\n");
1119 smp_found_config = 0;
1120 skip_ioapic_setup = 1;
1121 goto fake_ioapic_page;
1122 }
1123 } else {
1124fake_ioapic_page:
1125 ioapic_phys = (unsigned long)
1126 alloc_bootmem_pages(PAGE_SIZE);
1127 ioapic_phys = __pa(ioapic_phys);
1128 }
1129 set_fixmap_nocache(idx, ioapic_phys);
1130 printk(KERN_DEBUG "mapped IOAPIC to %08lx (%08lx)\n",
1131 __fix_to_virt(idx), ioapic_phys);
1132 idx++;
1133 }
1134 }
1135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
1138/*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001139 * This initializes the IO-APIC and APIC hardware if this is
1140 * a UP kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 */
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001142int __init APIC_init_uniprocessor (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001144 if (enable_local_apic < 0)
1145 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001146
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001147 if (!smp_found_config && !cpu_has_apic)
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001148 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001151 * Complain if the BIOS pretends there is one.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001153 if (!cpu_has_apic &&
1154 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001156 boot_cpu_physical_apicid);
Andi Kleen3777a952006-02-03 21:51:53 +01001157 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return -1;
1159 }
1160
1161 verify_local_APIC();
1162
1163 connect_bsp_APIC();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001164
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001165 /*
1166 * Hack: In case of kdump, after a crash, kernel might be booting
1167 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1168 * might be zero if read from MP tables. Get it from LAPIC.
1169 */
1170#ifdef CONFIG_CRASH_DUMP
1171 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
1172#endif
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001173 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 setup_local_APIC();
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001178 if (smp_found_config)
1179 if (!skip_ioapic_setup && nr_ioapics)
1180 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181#endif
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001182 setup_boot_clock();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001183
1184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001186
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001187/*
1188 * APIC command line parameters
1189 */
Rusty Russell1a3f2392006-09-26 10:52:32 +02001190static int __init parse_lapic(char *arg)
1191{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001192 enable_local_apic = 1;
Rusty Russell1a3f2392006-09-26 10:52:32 +02001193 return 0;
1194}
1195early_param("lapic", parse_lapic);
1196
1197static int __init parse_nolapic(char *arg)
1198{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001199 enable_local_apic = -1;
1200 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001201 return 0;
1202}
1203early_param("nolapic", parse_nolapic);
1204
Thomas Gleixnerad62ca22007-03-22 00:11:21 -08001205static int __init parse_disable_lapic_timer(char *arg)
1206{
1207 local_apic_timer_disabled = 1;
1208 return 0;
1209}
1210early_param("nolapic_timer", parse_disable_lapic_timer);
1211
Thomas Gleixnere585bef2007-03-23 16:08:01 +01001212static int __init parse_lapic_timer_c2_ok(char *arg)
1213{
1214 local_apic_timer_c2_ok = 1;
1215 return 0;
1216}
1217early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1218
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001219static int __init apic_set_verbosity(char *str)
1220{
1221 if (strcmp("debug", str) == 0)
1222 apic_verbosity = APIC_DEBUG;
1223 else if (strcmp("verbose", str) == 0)
1224 apic_verbosity = APIC_VERBOSE;
1225 return 1;
1226}
1227
1228__setup("apic=", apic_set_verbosity);
1229
1230
1231/*
1232 * Local APIC interrupts
1233 */
1234
1235/*
1236 * This interrupt should _never_ happen with our APIC/SMP architecture
1237 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001238void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001239{
1240 unsigned long v;
1241
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001242 irq_enter();
1243 /*
1244 * Check if this really is a spurious interrupt and ACK it
1245 * if it is a vectored one. Just in case...
1246 * Spurious interrupts should not be ACKed.
1247 */
1248 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1249 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1250 ack_APIC_irq();
1251
1252 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1253 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1254 "should never happen.\n", smp_processor_id());
1255 irq_exit();
1256}
1257
1258/*
1259 * This interrupt should never happen with our APIC/SMP architecture
1260 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001261void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001262{
1263 unsigned long v, v1;
1264
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001265 irq_enter();
1266 /* First tickle the hardware, only then report what went on. -- REW */
1267 v = apic_read(APIC_ESR);
1268 apic_write(APIC_ESR, 0);
1269 v1 = apic_read(APIC_ESR);
1270 ack_APIC_irq();
1271 atomic_inc(&irq_err_count);
1272
1273 /* Here is what the APIC error bits mean:
1274 0: Send CS error
1275 1: Receive CS error
1276 2: Send accept error
1277 3: Receive accept error
1278 4: Reserved
1279 5: Send illegal vector
1280 6: Received illegal vector
1281 7: Illegal register address
1282 */
1283 printk (KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
1284 smp_processor_id(), v , v1);
1285 irq_exit();
1286}
1287
1288/*
1289 * Initialize APIC interrupts
1290 */
1291void __init apic_intr_init(void)
1292{
1293#ifdef CONFIG_SMP
1294 smp_intr_init();
1295#endif
1296 /* self generated IPI for local APIC timer */
1297 set_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
1298
1299 /* IPI vectors for APIC spurious and error interrupts */
1300 set_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
1301 set_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
1302
1303 /* thermal monitor LVT interrupt */
1304#ifdef CONFIG_X86_MCE_P4THERMAL
1305 set_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
1306#endif
1307}
1308
1309/**
1310 * connect_bsp_APIC - attach the APIC to the interrupt system
1311 */
1312void __init connect_bsp_APIC(void)
1313{
1314 if (pic_mode) {
1315 /*
1316 * Do not trust the local APIC being empty at bootup.
1317 */
1318 clear_local_APIC();
1319 /*
1320 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1321 * local APIC to INT and NMI lines.
1322 */
1323 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1324 "enabling APIC mode.\n");
1325 outb(0x70, 0x22);
1326 outb(0x01, 0x23);
1327 }
1328 enable_apic_mode();
1329}
1330
1331/**
1332 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1333 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1334 *
1335 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1336 * APIC is disabled.
1337 */
1338void disconnect_bsp_APIC(int virt_wire_setup)
1339{
1340 if (pic_mode) {
1341 /*
1342 * Put the board back into PIC mode (has an effect only on
1343 * certain older boards). Note that APIC interrupts, including
1344 * IPIs, won't work beyond this point! The only exception are
1345 * INIT IPIs.
1346 */
1347 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1348 "entering PIC mode.\n");
1349 outb(0x70, 0x22);
1350 outb(0x00, 0x23);
1351 } else {
1352 /* Go back to Virtual Wire compatibility mode */
1353 unsigned long value;
1354
1355 /* For the spurious interrupt use vector F, and enable it */
1356 value = apic_read(APIC_SPIV);
1357 value &= ~APIC_VECTOR_MASK;
1358 value |= APIC_SPIV_APIC_ENABLED;
1359 value |= 0xf;
1360 apic_write_around(APIC_SPIV, value);
1361
1362 if (!virt_wire_setup) {
1363 /*
1364 * For LVT0 make it edge triggered, active high,
1365 * external and enabled
1366 */
1367 value = apic_read(APIC_LVT0);
1368 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1369 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1370 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED );
1371 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1372 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1373 apic_write_around(APIC_LVT0, value);
1374 } else {
1375 /* Disable LVT0 */
1376 apic_write_around(APIC_LVT0, APIC_LVT_MASKED);
1377 }
1378
1379 /*
1380 * For LVT1 make it edge triggered, active high, nmi and
1381 * enabled
1382 */
1383 value = apic_read(APIC_LVT1);
1384 value &= ~(
1385 APIC_MODE_MASK | APIC_SEND_PENDING |
1386 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1387 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1388 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1389 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1390 apic_write_around(APIC_LVT1, value);
1391 }
1392}
1393
1394/*
1395 * Power management
1396 */
1397#ifdef CONFIG_PM
1398
1399static struct {
1400 int active;
1401 /* r/w apic fields */
1402 unsigned int apic_id;
1403 unsigned int apic_taskpri;
1404 unsigned int apic_ldr;
1405 unsigned int apic_dfr;
1406 unsigned int apic_spiv;
1407 unsigned int apic_lvtt;
1408 unsigned int apic_lvtpc;
1409 unsigned int apic_lvt0;
1410 unsigned int apic_lvt1;
1411 unsigned int apic_lvterr;
1412 unsigned int apic_tmict;
1413 unsigned int apic_tdcr;
1414 unsigned int apic_thmr;
1415} apic_pm_state;
1416
1417static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1418{
1419 unsigned long flags;
1420 int maxlvt;
1421
1422 if (!apic_pm_state.active)
1423 return 0;
1424
1425 maxlvt = lapic_get_maxlvt();
1426
1427 apic_pm_state.apic_id = apic_read(APIC_ID);
1428 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1429 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1430 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1431 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1432 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1433 if (maxlvt >= 4)
1434 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1435 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1436 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1437 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1438 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1439 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1440#ifdef CONFIG_X86_MCE_P4THERMAL
1441 if (maxlvt >= 5)
1442 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1443#endif
1444
1445 local_irq_save(flags);
1446 disable_local_APIC();
1447 local_irq_restore(flags);
1448 return 0;
1449}
1450
1451static int lapic_resume(struct sys_device *dev)
1452{
1453 unsigned int l, h;
1454 unsigned long flags;
1455 int maxlvt;
1456
1457 if (!apic_pm_state.active)
1458 return 0;
1459
1460 maxlvt = lapic_get_maxlvt();
1461
1462 local_irq_save(flags);
1463
1464 /*
1465 * Make sure the APICBASE points to the right address
1466 *
1467 * FIXME! This will be wrong if we ever support suspend on
1468 * SMP! We'll need to do this as part of the CPU restore!
1469 */
1470 rdmsr(MSR_IA32_APICBASE, l, h);
1471 l &= ~MSR_IA32_APICBASE_BASE;
1472 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1473 wrmsr(MSR_IA32_APICBASE, l, h);
1474
1475 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1476 apic_write(APIC_ID, apic_pm_state.apic_id);
1477 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1478 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1479 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1480 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1481 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1482 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1483#ifdef CONFIG_X86_MCE_P4THERMAL
1484 if (maxlvt >= 5)
1485 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1486#endif
1487 if (maxlvt >= 4)
1488 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1489 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1490 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1491 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1492 apic_write(APIC_ESR, 0);
1493 apic_read(APIC_ESR);
1494 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1495 apic_write(APIC_ESR, 0);
1496 apic_read(APIC_ESR);
1497 local_irq_restore(flags);
1498 return 0;
1499}
1500
1501/*
1502 * This device has no shutdown method - fully functioning local APICs
1503 * are needed on every CPU up until machine_halt/restart/poweroff.
1504 */
1505
1506static struct sysdev_class lapic_sysclass = {
1507 set_kset_name("lapic"),
1508 .resume = lapic_resume,
1509 .suspend = lapic_suspend,
1510};
1511
1512static struct sys_device device_lapic = {
1513 .id = 0,
1514 .cls = &lapic_sysclass,
1515};
1516
1517static void __devinit apic_pm_activate(void)
1518{
1519 apic_pm_state.active = 1;
1520}
1521
1522static int __init init_lapic_sysfs(void)
1523{
1524 int error;
1525
1526 if (!cpu_has_apic)
1527 return 0;
1528 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1529
1530 error = sysdev_class_register(&lapic_sysclass);
1531 if (!error)
1532 error = sysdev_register(&device_lapic);
1533 return error;
1534}
1535device_initcall(init_lapic_sysfs);
1536
1537#else /* CONFIG_PM */
1538
1539static void apic_pm_activate(void) { }
1540
1541#endif /* CONFIG_PM */