blob: 01708f128eeee410283dd61e7528d9a6d9195a15 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Local APIC handling, local APIC timers
3 *
4 * (c) 1999, 2000 Ingo Molnar <mingo@redhat.com>
5 *
6 * Fixes
7 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
8 * thanks to Eric Gilmore
9 * and Rolf G. Tews
10 * for testing these extensively.
11 * Maciej W. Rozycki : Various updates and fixes.
12 * Mikael Pettersson : Power Management for UP-APIC.
13 * Pavel Machek and
14 * Mikael Pettersson : PM converted to driver model.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18
19#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h>
21#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/interrupt.h>
23#include <linux/mc146818rtc.h>
24#include <linux/kernel_stat.h>
25#include <linux/sysdev.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070026#include <linux/cpu.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080027#include <linux/clockchips.h>
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -080028#include <linux/acpi_pmtmr.h>
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +010029#include <linux/module.h>
Thomas Gleixnerad62ca22007-03-22 00:11:21 -080030#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/atomic.h>
33#include <asm/smp.h>
34#include <asm/mtrr.h>
35#include <asm/mpspec.h>
36#include <asm/desc.h>
37#include <asm/arch_hooks.h>
38#include <asm/hpet.h>
Ingo Molnar306e4402005-06-30 02:58:55 -070039#include <asm/i8253.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020040#include <asm/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <mach_apic.h>
Jesper Juhl382dbd02006-03-23 02:59:49 -080043#include <mach_apicdef.h>
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +010044#include <mach_ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -080047 * Sanity check
48 */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +010049#if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
Thomas Gleixnere05d7232007-02-16 01:27:58 -080050# error SPURIOUS_APIC_VECTOR definition error
51#endif
52
Alexey Starikovskiy8f6e2ca2008-03-27 23:54:38 +030053unsigned long mp_lapic_addr;
54
Thomas Gleixnere05d7232007-02-16 01:27:58 -080055/*
Eric W. Biederman9635b472005-06-25 14:57:41 -070056 * Knob to control our willingness to enable the local APIC.
Thomas Gleixnere05d7232007-02-16 01:27:58 -080057 *
Yinghai Lu914bebf2008-06-29 00:06:37 -070058 * +1=force-enable
Eric W. Biederman9635b472005-06-25 14:57:41 -070059 */
Yinghai Lu914bebf2008-06-29 00:06:37 -070060static int force_enable_local_apic;
61int disable_apic;
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 Gleixneraa276e12008-06-09 19:15:00 +020065/* 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
Alan Mayerce178332008-04-16 15:17:20 -050071int first_system_vector = 0xfe;
72
73char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
74
Eric W. Biederman9635b472005-06-25 14:57:41 -070075/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -080076 * Debug level, exported for io_apic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010078unsigned int apic_verbosity;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Alexey Starikovskiyf3918352008-05-23 01:54:51 +040080int pic_mode;
81
Alexey Starikovskiybab4b272008-05-19 19:47:03 +040082/* Have we found an MP table */
83int smp_found_config;
84
Cyrill Gorcunov746f2eb2008-07-01 21:43:52 +040085static struct resource lapic_resource = {
86 .name = "Local APIC",
87 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
88};
89
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080090static unsigned int calibration_result;
91
92static int lapic_next_event(unsigned long delta,
93 struct clock_event_device *evt);
94static void lapic_timer_setup(enum clock_event_mode mode,
95 struct clock_event_device *evt);
96static void lapic_timer_broadcast(cpumask_t mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static void apic_pm_activate(void);
98
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080099/*
100 * The local apic timer can be used for any function which is CPU local.
101 */
102static struct clock_event_device lapic_clockevent = {
103 .name = "lapic",
104 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800105 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800106 .shift = 32,
107 .set_mode = lapic_timer_setup,
108 .set_next_event = lapic_next_event,
109 .broadcast = lapic_timer_broadcast,
110 .rating = 100,
111 .irq = -1,
112};
113static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800115/* Local APIC was disabled by the BIOS and enabled by the kernel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static int enabled_via_apicbase;
117
Andi Kleend3432892008-01-30 13:33:17 +0100118static unsigned long apic_phys;
119
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800120/*
121 * Get the LAPIC version
122 */
123static inline int lapic_get_version(void)
124{
125 return GET_APIC_VERSION(apic_read(APIC_LVR));
126}
127
128/*
Joe Perchesab4a5742008-01-30 13:31:42 +0100129 * Check, if the APIC is integrated or a separate chip
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800130 */
131static inline int lapic_is_integrated(void)
132{
133 return APIC_INTEGRATED(lapic_get_version());
134}
135
136/*
137 * Check, whether this is a modern or a first generation APIC
138 */
139static int modern_apic(void)
140{
141 /* AMD systems use old APIC versions, so check the CPU */
142 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
143 boot_cpu_data.x86 >= 0xf)
144 return 1;
145 return lapic_get_version() >= 0x14;
146}
147
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200148void apic_wait_icr_idle(void)
149{
150 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
151 cpu_relax();
152}
153
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100154u32 safe_apic_wait_icr_idle(void)
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200155{
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100156 u32 send_status;
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200157 int timeout;
158
159 timeout = 0;
160 do {
161 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
162 if (!send_status)
163 break;
164 udelay(100);
165 } while (timeout++ < 1000);
166
167 return send_status;
168}
169
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800170/**
171 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
172 */
Jan Beuliche9427102008-01-30 13:31:24 +0100173void __cpuinit enable_NMI_through_LVT0(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200175 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200177 /* unmask and set to NMI */
178 v = APIC_DM_NMI;
179
180 /* Level triggered for 82489DX (32bit mode) */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800181 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 v |= APIC_LVT_LEVEL_TRIGGER;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200183
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100184 apic_write(APIC_LVT0, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800187/**
188 * get_physical_broadcast - Get number of physical broadcast IDs
189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190int get_physical_broadcast(void)
191{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800192 return modern_apic() ? 0xff : 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800195/**
196 * lapic_get_maxlvt - get the maximum number of local vector table entries
197 */
198int lapic_get_maxlvt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200200 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200202 v = apic_read(APIC_LVR);
203 /*
204 * - we always have APIC integrated on 64bit mode
205 * - 82489DXs do not report # of LVT entries
206 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800207 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800211 * Local APIC timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800214/* Clock divisor is set to 16 */
215#define APIC_DIVISOR 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217/*
218 * This function sets up the local APIC timer, with a timeout of
219 * 'clocks' APIC bus clock. During calibration we actually call
220 * this function twice on the boot CPU, once with a bogus timeout
221 * value, second time for real. The other (noncalibrating) CPUs
222 * call this function only once, with the real, calibrated value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800224static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800226 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800228 lvtt_value = LOCAL_TIMER_VECTOR;
229 if (!oneshot)
230 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800231 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100233
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800234 if (!irqen)
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100235 lvtt_value |= APIC_LVT_MASKED;
236
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100237 apic_write(APIC_LVTT, lvtt_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /*
240 * Divide PICLK by 16
241 */
242 tmp_value = apic_read(APIC_TDCR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100243 apic_write(APIC_TDCR,
244 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
245 APIC_TDR_DIV_16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800247 if (!oneshot)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100248 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800251/*
252 * Program the next event, relative to now
253 */
254static int lapic_next_event(unsigned long delta,
255 struct clock_event_device *evt)
256{
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100257 apic_write(APIC_TMICT, delta);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800258 return 0;
259}
260
261/*
262 * Setup the lapic timer in periodic or oneshot mode
263 */
264static void lapic_timer_setup(enum clock_event_mode mode,
265 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800268 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800270 /* Lapic used for broadcast ? */
271 if (!local_apic_timer_verify_ok)
272 return;
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 local_irq_save(flags);
275
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800276 switch (mode) {
277 case CLOCK_EVT_MODE_PERIODIC:
278 case CLOCK_EVT_MODE_ONESHOT:
279 __setup_APIC_LVTT(calibration_result,
280 mode != CLOCK_EVT_MODE_PERIODIC, 1);
281 break;
282 case CLOCK_EVT_MODE_UNUSED:
283 case CLOCK_EVT_MODE_SHUTDOWN:
284 v = apic_read(APIC_LVTT);
285 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100286 apic_write(APIC_LVTT, v);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800287 break;
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700288 case CLOCK_EVT_MODE_RESUME:
289 /* Nothing to do here */
290 break;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 local_irq_restore(flags);
294}
295
296/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800297 * Local APIC timer broadcast function
298 */
299static void lapic_timer_broadcast(cpumask_t mask)
300{
301#ifdef CONFIG_SMP
302 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
303#endif
304}
305
306/*
307 * Setup the local APIC timer for this CPU. Copy the initilized values
308 * of the boot CPU and register the clock event in the framework.
309 */
310static void __devinit setup_APIC_timer(void)
311{
312 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
313
314 memcpy(levt, &lapic_clockevent, sizeof(*levt));
315 levt->cpumask = cpumask_of_cpu(smp_processor_id());
316
317 clockevents_register_device(levt);
318}
319
320/*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800321 * In this functions we calibrate APIC bus clocks to the external timer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800323 * We want to do the calibration only once since we want to have local timer
324 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
325 * frequency.
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800326 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800327 * This was previously done by reading the PIT/HPET and waiting for a wrap
328 * around to find out, that a tick has elapsed. I have a box, where the PIT
329 * readout is broken, so it never gets out of the wait loop again. This was
330 * also reported by others.
331 *
332 * Monitoring the jiffies value is inaccurate and the clockevents
333 * infrastructure allows us to do a simple substitution of the interrupt
334 * handler.
335 *
336 * The calibration routine also uses the pm_timer when possible, as the PIT
337 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
338 * back to normal later in the boot process).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
340
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800341#define LAPIC_CAL_LOOPS (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200343static __initdata int lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800344static __initdata long lapic_cal_t1, lapic_cal_t2;
345static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
346static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
347static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
348
349/*
350 * Temporary interrupt handler.
351 */
352static void __init lapic_cal_handler(struct clock_event_device *dev)
353{
354 unsigned long long tsc = 0;
355 long tapic = apic_read(APIC_TMCCT);
356 unsigned long pm = acpi_pm_read_early();
357
358 if (cpu_has_tsc)
359 rdtscll(tsc);
360
361 switch (lapic_cal_loops++) {
362 case 0:
363 lapic_cal_t1 = tapic;
364 lapic_cal_tsc1 = tsc;
365 lapic_cal_pm1 = pm;
366 lapic_cal_j1 = jiffies;
367 break;
368
369 case LAPIC_CAL_LOOPS:
370 lapic_cal_t2 = tapic;
371 lapic_cal_tsc2 = tsc;
372 if (pm < lapic_cal_pm1)
373 pm += ACPI_PM_OVRRUN;
374 lapic_cal_pm2 = pm;
375 lapic_cal_j2 = jiffies;
376 break;
377 }
378}
379
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400380static int __init calibrate_APIC_clock(void)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800381{
382 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
383 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
384 const long pm_thresh = pm_100ms/100;
385 void (*real_handler)(struct clock_event_device *dev);
386 unsigned long deltaj;
387 long delta, deltapm;
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800388 int pm_referenced = 0;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800389
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800390 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 */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +0100437 res = (((u64) delta) * pm_100ms);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800438 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 */
Akinobu Mita877084f2008-04-19 23:55:16 +0900447 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
448 lapic_clockevent.shift);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800449 lapic_clockevent.max_delta_ns =
450 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
451 lapic_clockevent.min_delta_ns =
452 clockevent_delta2ns(0xF, &lapic_clockevent);
453
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800454 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800455
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800456 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
457 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
458 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
459 calibration_result);
460
461 if (cpu_has_tsc) {
462 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800464 "%ld.%04ld MHz.\n",
465 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
466 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800470 "%u.%04u MHz.\n",
471 calibration_result / (1000000 / HZ),
472 calibration_result % (1000000 / HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100474 /*
475 * Do a sanity check on the APIC calibration result
476 */
477 if (calibration_result < (1000000 / HZ)) {
478 local_irq_enable();
479 printk(KERN_WARNING
480 "APIC frequency too slow, disabling apic timer\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400481 return -1;
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100482 }
483
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400484 local_apic_timer_verify_ok = 1;
485
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800486 /* We trust the pm timer based calibration */
487 if (!pm_referenced) {
488 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800489
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800490 /*
491 * Setup the apic timer manually
492 */
493 levt->event_handler = lapic_cal_handler;
494 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
495 lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800496
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800497 /* Let the interrupts run */
498 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800499
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200500 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800501 cpu_relax();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800502
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800503 local_irq_disable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800504
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800505 /* Stop the lapic timer */
506 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800507
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800508 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800509
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800510 /* Jiffies delta */
511 deltaj = lapic_cal_j2 - lapic_cal_j1;
512 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800513
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800514 /* Check, if the jiffies result is consistent */
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800515 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800516 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800517 else
518 local_apic_timer_verify_ok = 0;
Ingo Molnar4edc5db2007-03-22 10:31:19 +0100519 } else
520 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800521
522 if (!local_apic_timer_verify_ok) {
523 printk(KERN_WARNING
524 "APIC timer disabled due to verification failure.\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400525 return -1;
Thomas Gleixnera5f5e432007-03-05 00:30:45 -0800526 }
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800527
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400528 return 0;
529}
530
531/*
532 * Setup the boot APIC
533 *
534 * Calibrate and verify the result.
535 */
536void __init setup_boot_APIC_clock(void)
537{
538 /*
539 * The local apic timer can be disabled via the kernel
540 * commandline or from the CPU detection code. Register the lapic
541 * timer as a dummy clock event source on SMP systems, so the
542 * broadcast mechanism is used. On UP systems simply ignore it.
543 */
544 if (local_apic_timer_disabled) {
545 /* No broadcast on UP ! */
546 if (num_possible_cpus() > 1) {
547 lapic_clockevent.mult = 1;
548 setup_APIC_timer();
549 }
550 return;
551 }
552
553 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
554 "calibrating APIC timer ...\n");
555
556 if (calibrate_APIC_clock()) {
557 /* No broadcast on UP ! */
558 if (num_possible_cpus() > 1)
559 setup_APIC_timer();
560 return;
561 }
562
563 /*
564 * If nmi_watchdog is set to IO_APIC, we need the
565 * PIT/HPET going. Otherwise register lapic as a dummy
566 * device.
567 */
568 if (nmi_watchdog != NMI_IO_APIC)
569 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
570 else
571 printk(KERN_WARNING "APIC timer registered as dummy,"
572 " due to nmi_watchdog=%d!\n", nmi_watchdog);
573
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800574 /* Setup the lapic or request the broadcast */
575 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Li Shaohua0bb31842005-06-25 14:54:55 -0700578void __devinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800580 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800584 * The guts of the apic timer interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800586static void local_apic_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800588 int cpu = smp_processor_id();
589 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800592 * Normally we should not be here till LAPIC has been initialized but
593 * in some cases like kdump, its possible that there is a pending LAPIC
594 * timer interrupt from previous kernel's context and is delivered in
595 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800597 * Interrupts are enabled early and LAPIC is setup much later, hence
598 * its possible that when we get here evt->event_handler is NULL.
599 * Check for event_handler being NULL and discard the interrupt as
600 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800602 if (!evt->event_handler) {
603 printk(KERN_WARNING
604 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
605 /* Switch it off */
606 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
607 return;
608 }
609
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100610 /*
611 * the NMI deadlock-detector uses this.
612 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800613 per_cpu(irq_stat, cpu).apic_timer_irqs++;
614
615 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618/*
619 * Local APIC timer interrupt. This is the most natural way for doing
620 * local interrupts, but local timer interrupts can be emulated by
621 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
622 *
623 * [ if a single-CPU system runs an SMP kernel then we call the local
624 * interrupt as well. Thus we cannot inline the local irq ... ]
625 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100626void smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
David Howells7d12e782006-10-05 14:55:46 +0100628 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /*
631 * NOTE! We'd better ACK the irq immediately,
632 * because timer handling can be slow.
633 */
634 ack_APIC_irq();
635 /*
636 * update_process_times() expects us to have done irq_enter().
637 * Besides, if we don't timer interrupts ignore the global
638 * interrupt lock, which is the WrongThing (tm) to do.
639 */
640 irq_enter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800641 local_apic_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 irq_exit();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800643
David Howells7d12e782006-10-05 14:55:46 +0100644 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +0100647int setup_profiling_timer(unsigned int multiplier)
648{
649 return -EINVAL;
650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652/*
Robert Richtere319e762008-02-13 16:19:36 +0100653 * Setup extended LVT, AMD specific (K8, family 10h)
654 *
655 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
656 * MCE interrupts are supported. Thus MCE offset must be set to 0.
657 */
658
659#define APIC_EILVT_LVTOFF_MCE 0
660#define APIC_EILVT_LVTOFF_IBS 1
661
662static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
663{
664 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
665 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
666 apic_write(reg, v);
667}
668
669u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
670{
671 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
672 return APIC_EILVT_LVTOFF_MCE;
673}
674
675u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
676{
677 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
678 return APIC_EILVT_LVTOFF_IBS;
679}
680
681/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800682 * Local APIC start and shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800684
685/**
686 * clear_local_APIC - shutdown the local APIC
687 *
688 * This is called, when a CPU is disabled and before rebooting, so the state of
689 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
690 * leftovers during boot.
691 */
692void clear_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Andi Kleend3432892008-01-30 13:33:17 +0100694 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100695 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Andi Kleend3432892008-01-30 13:33:17 +0100697 /* APIC hasn't been mapped yet */
698 if (!apic_phys)
699 return;
700
701 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800703 * Masking an LVT entry can trigger a local APIC error
704 * if the vector is zero. Mask LVTERR first to prevent this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800706 if (maxlvt >= 3) {
707 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100708 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800709 }
710 /*
711 * Careful: we have to set masks only first to deassert
712 * any level-triggered sources.
713 */
714 v = apic_read(APIC_LVTT);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100715 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800716 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100717 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800718 v = apic_read(APIC_LVT1);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100719 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800720 if (maxlvt >= 4) {
721 v = apic_read(APIC_LVTPC);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100722 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800725 /* lets not touch this if we didn't frob it */
726#ifdef CONFIG_X86_MCE_P4THERMAL
727 if (maxlvt >= 5) {
728 v = apic_read(APIC_LVTTHMR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100729 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800730 }
731#endif
732 /*
733 * Clean APIC state for other OSs:
734 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100735 apic_write(APIC_LVTT, APIC_LVT_MASKED);
736 apic_write(APIC_LVT0, APIC_LVT_MASKED);
737 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800738 if (maxlvt >= 3)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100739 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800740 if (maxlvt >= 4)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100741 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800742
743#ifdef CONFIG_X86_MCE_P4THERMAL
744 if (maxlvt >= 5)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100745 apic_write(APIC_LVTTHMR, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800746#endif
747 /* Integrated APIC (!82489DX) ? */
748 if (lapic_is_integrated()) {
749 if (maxlvt > 3)
750 /* Clear ESR due to Pentium errata 3AP and 11AP */
751 apic_write(APIC_ESR, 0);
752 apic_read(APIC_ESR);
753 }
754}
755
756/**
757 * disable_local_APIC - clear and disable the local APIC
758 */
759void disable_local_APIC(void)
760{
761 unsigned long value;
762
763 clear_local_APIC();
764
765 /*
766 * Disable APIC (implies clearing of registers
767 * for 82489DX!).
768 */
769 value = apic_read(APIC_SPIV);
770 value &= ~APIC_SPIV_APIC_ENABLED;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100771 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800772
773 /*
774 * When LAPIC was disabled by the BIOS and enabled by the kernel,
775 * restore the disabled state.
776 */
777 if (enabled_via_apicbase) {
778 unsigned int l, h;
779
780 rdmsr(MSR_IA32_APICBASE, l, h);
781 l &= ~MSR_IA32_APICBASE_ENABLE;
782 wrmsr(MSR_IA32_APICBASE, l, h);
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
786/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800787 * If Linux enabled the LAPIC against the BIOS default disable it down before
788 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
789 * not power-off. Additionally clear all LVT entries before disable_local_APIC
790 * for the case where Linux didn't enable the LAPIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800792void lapic_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800794 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800796 if (!cpu_has_apic)
797 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800799 local_irq_save(flags);
800 clear_local_APIC();
801
802 if (enabled_via_apicbase)
803 disable_local_APIC();
804
805 local_irq_restore(flags);
806}
807
808/*
809 * This is to verify that we're looking at a real local APIC.
810 * Check these against your board if the CPUs aren't getting
811 * started for no apparent reason.
812 */
813int __init verify_local_APIC(void)
814{
815 unsigned int reg0, reg1;
816
817 /*
818 * The version register is read-only in a real APIC.
819 */
820 reg0 = apic_read(APIC_LVR);
821 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
822 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
823 reg1 = apic_read(APIC_LVR);
824 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
825
826 /*
827 * The two version reads above should print the same
828 * numbers. If the second one is different, then we
829 * poke at a non-APIC.
830 */
831 if (reg1 != reg0)
832 return 0;
833
834 /*
835 * Check if the version looks reasonably.
836 */
837 reg1 = GET_APIC_VERSION(reg0);
838 if (reg1 == 0x00 || reg1 == 0xff)
839 return 0;
840 reg1 = lapic_get_maxlvt();
841 if (reg1 < 0x02 || reg1 == 0xff)
842 return 0;
843
844 /*
845 * The ID register is read/write in a real APIC.
846 */
847 reg0 = apic_read(APIC_ID);
848 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
849
850 /*
851 * The next two are just to see if we have sane values.
852 * They're only really relevant if we're in Virtual Wire
853 * compatibility mode, but most boxes are anymore.
854 */
855 reg0 = apic_read(APIC_LVT0);
856 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
857 reg1 = apic_read(APIC_LVT1);
858 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
859
860 return 1;
861}
862
863/**
864 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
865 */
866void __init sync_Arb_IDs(void)
867{
868 /*
869 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
870 * needed on AMD.
871 */
Ingo Molnarf44d9ef2007-11-26 20:42:20 +0100872 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800873 return;
874 /*
875 * Wait for idle.
876 */
877 apic_wait_icr_idle();
878
879 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100880 apic_write(APIC_ICR,
881 APIC_DEST_ALLINC | APIC_INT_LEVELTRIG | APIC_DM_INIT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800882}
883
884/*
885 * An initial setup of the virtual wire mode.
886 */
887void __init init_bsp_APIC(void)
888{
889 unsigned long value;
890
891 /*
892 * Don't do the setup now if we have a SMP BIOS as the
893 * through-I/O-APIC virtual wire mode might be active.
894 */
895 if (smp_found_config || !cpu_has_apic)
896 return;
897
898 /*
899 * Do not trust the local APIC being empty at bootup.
900 */
901 clear_local_APIC();
902
903 /*
904 * Enable APIC.
905 */
906 value = apic_read(APIC_SPIV);
907 value &= ~APIC_VECTOR_MASK;
908 value |= APIC_SPIV_APIC_ENABLED;
909
910 /* This bit is reserved on P4/Xeon and should be cleared */
911 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
912 (boot_cpu_data.x86 == 15))
913 value &= ~APIC_SPIV_FOCUS_DISABLED;
914 else
915 value |= APIC_SPIV_FOCUS_DISABLED;
916 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100917 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800918
919 /*
920 * Set up the virtual wire mode.
921 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100922 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800923 value = APIC_DM_NMI;
924 if (!lapic_is_integrated()) /* 82489DX */
925 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100926 apic_write(APIC_LVT1, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800927}
928
Ingo Molnara4928cf2008-04-23 13:20:56 +0200929static void __cpuinit lapic_setup_esr(void)
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300930{
931 unsigned long oldvalue, value, maxlvt;
932 if (lapic_is_integrated() && !esr_disable) {
933 /* !82489DX */
934 maxlvt = lapic_get_maxlvt();
935 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
936 apic_write(APIC_ESR, 0);
937 oldvalue = apic_read(APIC_ESR);
938
939 /* enables sending errors */
940 value = ERROR_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100941 apic_write(APIC_LVTERR, value);
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300942 /*
943 * spec says clear errors after enabling vector.
944 */
945 if (maxlvt > 3)
946 apic_write(APIC_ESR, 0);
947 value = apic_read(APIC_ESR);
948 if (value != oldvalue)
949 apic_printk(APIC_VERBOSE, "ESR value before enabling "
950 "vector: 0x%08lx after: 0x%08lx\n",
951 oldvalue, value);
952 } else {
953 if (esr_disable)
954 /*
955 * Something untraceable is creating bad interrupts on
956 * secondary quads ... for the moment, just leave the
957 * ESR disabled - we can't do anything useful with the
958 * errors anyway - mbligh
959 */
960 printk(KERN_INFO "Leaving ESR disabled.\n");
961 else
962 printk(KERN_INFO "No ESR for 82489DX.\n");
963 }
964}
965
966
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800967/**
968 * setup_local_APIC - setup the local APIC
969 */
Adrian Bunkd5337982007-12-19 23:20:18 +0100970void __cpuinit setup_local_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800971{
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300972 unsigned long value, integrated;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800973 int i, j;
974
975 /* Pound the ESR really hard over the head with a big hammer - mbligh */
976 if (esr_disable) {
977 apic_write(APIC_ESR, 0);
978 apic_write(APIC_ESR, 0);
979 apic_write(APIC_ESR, 0);
980 apic_write(APIC_ESR, 0);
981 }
982
983 integrated = lapic_is_integrated();
984
985 /*
986 * Double-check whether this APIC is really registered.
987 */
988 if (!apic_id_registered())
Ingo Molnar22d5c672008-07-10 16:29:28 +0200989 WARN_ON_ONCE(1);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800990
991 /*
992 * Intel recommends to set DFR, LDR and TPR before enabling
993 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
994 * document number 292116). So here it goes...
995 */
996 init_apic_ldr();
997
998 /*
999 * Set Task Priority to 'accept all'. We never change this
1000 * later on.
1001 */
1002 value = apic_read(APIC_TASKPRI);
1003 value &= ~APIC_TPRI_MASK;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001004 apic_write(APIC_TASKPRI, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001005
1006 /*
1007 * After a crash, we no longer service the interrupts and a pending
1008 * interrupt from previous kernel might still have ISR bit set.
1009 *
1010 * Most probably by now CPU has serviced that pending interrupt and
1011 * it might not have done the ack_APIC_irq() because it thought,
1012 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1013 * does not clear the ISR bit and cpu thinks it has already serivced
1014 * the interrupt. Hence a vector might get locked. It was noticed
1015 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1016 */
1017 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1018 value = apic_read(APIC_ISR + i*0x10);
1019 for (j = 31; j >= 0; j--) {
1020 if (value & (1<<j))
1021 ack_APIC_irq();
1022 }
1023 }
1024
1025 /*
1026 * Now that we are all set up, enable the APIC
1027 */
1028 value = apic_read(APIC_SPIV);
1029 value &= ~APIC_VECTOR_MASK;
1030 /*
1031 * Enable APIC
1032 */
1033 value |= APIC_SPIV_APIC_ENABLED;
1034
1035 /*
1036 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1037 * certain networking cards. If high frequency interrupts are
1038 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1039 * entry is masked/unmasked at a high rate as well then sooner or
1040 * later IOAPIC line gets 'stuck', no more interrupts are received
1041 * from the device. If focus CPU is disabled then the hang goes
1042 * away, oh well :-(
1043 *
1044 * [ This bug can be reproduced easily with a level-triggered
1045 * PCI Ne2000 networking cards and PII/PIII processors, dual
1046 * BX chipset. ]
1047 */
1048 /*
1049 * Actually disabling the focus CPU check just makes the hang less
1050 * frequent as it makes the interrupt distributon model be more
1051 * like LRU than MRU (the short-term load is more even across CPUs).
1052 * See also the comment in end_level_ioapic_irq(). --macro
1053 */
1054
1055 /* Enable focus processor (bit==0) */
1056 value &= ~APIC_SPIV_FOCUS_DISABLED;
1057
1058 /*
1059 * Set spurious IRQ vector
1060 */
1061 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001062 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001063
1064 /*
1065 * Set up LVT0, LVT1:
1066 *
1067 * set up through-local-APIC on the BP's LINT0. This is not
Simon Arlott27b46d72007-10-20 01:13:56 +02001068 * strictly necessary in pure symmetric-IO mode, but sometimes
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001069 * we delegate interrupts to the 8259A.
1070 */
1071 /*
1072 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1073 */
1074 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1075 if (!smp_processor_id() && (pic_mode || !value)) {
1076 value = APIC_DM_EXTINT;
1077 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
1078 smp_processor_id());
1079 } else {
1080 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1081 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1082 smp_processor_id());
1083 }
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001084 apic_write(APIC_LVT0, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001085
1086 /*
1087 * only the BP should see the LINT1 NMI signal, obviously.
1088 */
1089 if (!smp_processor_id())
1090 value = APIC_DM_NMI;
1091 else
1092 value = APIC_DM_NMI | APIC_LVT_MASKED;
1093 if (!integrated) /* 82489DX */
1094 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001095 apic_write(APIC_LVT1, value);
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001096}
1097
1098void __cpuinit end_local_APIC_setup(void)
1099{
1100 unsigned long value;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001101
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001102 lapic_setup_esr();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001103 /* Disable the local apic timer */
1104 value = apic_read(APIC_LVTT);
1105 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001106 apic_write(APIC_LVTT, value);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001107
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001108 setup_apic_nmi_watchdog(NULL);
1109 apic_pm_activate();
1110}
1111
1112/*
1113 * Detect and initialize APIC
1114 */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001115static int __init detect_init_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001116{
1117 u32 h, l, features;
1118
1119 /* Disabled by kernel option? */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001120 if (disable_apic)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001121 return -1;
1122
1123 switch (boot_cpu_data.x86_vendor) {
1124 case X86_VENDOR_AMD:
1125 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1126 (boot_cpu_data.x86 == 15))
1127 break;
1128 goto no_apic;
1129 case X86_VENDOR_INTEL:
1130 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1131 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1132 break;
1133 goto no_apic;
1134 default:
1135 goto no_apic;
1136 }
1137
1138 if (!cpu_has_apic) {
1139 /*
1140 * Over-ride BIOS and try to enable the local APIC only if
1141 * "lapic" specified.
1142 */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001143 if (!force_enable_local_apic) {
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001144 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1145 "you can enable it with \"lapic\"\n");
1146 return -1;
1147 }
1148 /*
1149 * Some BIOSes disable the local APIC in the APIC_BASE
1150 * MSR. This can only be done in software for Intel P6 or later
1151 * and AMD K7 (Model > 1) or later.
1152 */
1153 rdmsr(MSR_IA32_APICBASE, l, h);
1154 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1155 printk(KERN_INFO
1156 "Local APIC disabled by BIOS -- reenabling.\n");
1157 l &= ~MSR_IA32_APICBASE_BASE;
1158 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1159 wrmsr(MSR_IA32_APICBASE, l, h);
1160 enabled_via_apicbase = 1;
1161 }
1162 }
1163 /*
1164 * The APIC feature bit should now be enabled
1165 * in `cpuid'
1166 */
1167 features = cpuid_edx(1);
1168 if (!(features & (1 << X86_FEATURE_APIC))) {
1169 printk(KERN_WARNING "Could not enable APIC!\n");
1170 return -1;
1171 }
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001172 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001173 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1174
1175 /* The BIOS may have set up the APIC at some other address */
1176 rdmsr(MSR_IA32_APICBASE, l, h);
1177 if (l & MSR_IA32_APICBASE_ENABLE)
1178 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1179
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001180 printk(KERN_INFO "Found and enabled local APIC!\n");
1181
1182 apic_pm_activate();
1183
1184 return 0;
1185
1186no_apic:
1187 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1188 return -1;
1189}
1190
1191/**
1192 * init_apic_mappings - initialize APIC mappings
1193 */
1194void __init init_apic_mappings(void)
1195{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001196 /*
1197 * If no local APIC can be found then set up a fake all
1198 * zeroes page to simulate the local APIC and another
1199 * one for the IO-APIC.
1200 */
1201 if (!smp_found_config && detect_init_APIC()) {
1202 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1203 apic_phys = __pa(apic_phys);
1204 } else
1205 apic_phys = mp_lapic_addr;
1206
1207 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1208 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1209 apic_phys);
1210
1211 /*
1212 * Fetch the APIC ID of the BSP in case we have a
1213 * default configuration (or the MP table is broken).
1214 */
1215 if (boot_cpu_physical_apicid == -1U)
Jack Steiner05f2d122008-03-28 14:12:02 -05001216 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220/*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001221 * This initializes the IO-APIC and APIC hardware if this is
1222 * a UP kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
Alexey Starikovskiye81b2c62008-03-27 23:54:31 +03001224
1225int apic_version[MAX_APICS];
1226
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001227int __init APIC_init_uniprocessor(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001229 if (!smp_found_config && !cpu_has_apic)
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001230 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001233 * Complain if the BIOS pretends there is one.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001235 if (!cpu_has_apic &&
1236 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001238 boot_cpu_physical_apicid);
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001239 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return -1;
1241 }
1242
1243 verify_local_APIC();
1244
1245 connect_bsp_APIC();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001246
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001247 /*
1248 * Hack: In case of kdump, after a crash, kernel might be booting
1249 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1250 * might be zero if read from MP tables. Get it from LAPIC.
1251 */
1252#ifdef CONFIG_CRASH_DUMP
Jack Steiner05f2d122008-03-28 14:12:02 -05001253 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001254#endif
Jack Steinerb6df1b82008-06-19 21:51:05 -05001255 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 setup_local_APIC();
1258
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001259#ifdef CONFIG_X86_IO_APIC
1260 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1261#endif
1262 localise_nmi_watchdog();
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001263 end_local_APIC_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001265 if (smp_found_config)
1266 if (!skip_ioapic_setup && nr_ioapics)
1267 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268#endif
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001269 setup_boot_clock();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001270
1271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001273
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001274/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001275 * Local APIC interrupts
1276 */
1277
1278/*
1279 * This interrupt should _never_ happen with our APIC/SMP architecture
1280 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001281void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001282{
1283 unsigned long v;
1284
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001285 irq_enter();
1286 /*
1287 * Check if this really is a spurious interrupt and ACK it
1288 * if it is a vectored one. Just in case...
1289 * Spurious interrupts should not be ACKed.
1290 */
1291 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1292 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1293 ack_APIC_irq();
1294
1295 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1296 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1297 "should never happen.\n", smp_processor_id());
Joe Korty38e760a2007-10-17 18:04:40 +02001298 __get_cpu_var(irq_stat).irq_spurious_count++;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001299 irq_exit();
1300}
1301
1302/*
1303 * This interrupt should never happen with our APIC/SMP architecture
1304 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001305void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001306{
1307 unsigned long v, v1;
1308
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001309 irq_enter();
1310 /* First tickle the hardware, only then report what went on. -- REW */
1311 v = apic_read(APIC_ESR);
1312 apic_write(APIC_ESR, 0);
1313 v1 = apic_read(APIC_ESR);
1314 ack_APIC_irq();
1315 atomic_inc(&irq_err_count);
1316
1317 /* Here is what the APIC error bits mean:
1318 0: Send CS error
1319 1: Receive CS error
1320 2: Send accept error
1321 3: Receive accept error
1322 4: Reserved
1323 5: Send illegal vector
1324 6: Received illegal vector
1325 7: Illegal register address
1326 */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +01001327 printk(KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001328 smp_processor_id(), v , v1);
1329 irq_exit();
1330}
1331
Glauber de Oliveira Costa17c9ab12008-03-19 14:25:33 -03001332#ifdef CONFIG_SMP
1333void __init smp_intr_init(void)
1334{
1335 /*
1336 * IRQ0 must be given a fixed assignment and initialized,
1337 * because it's used before the IO-APIC is set up.
1338 */
1339 set_intr_gate(FIRST_DEVICE_VECTOR, interrupt[0]);
1340
1341 /*
1342 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
1343 * IPI, driven by wakeup.
1344 */
Alan Mayer305b92a2008-04-15 15:36:56 -05001345 alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
Glauber de Oliveira Costa17c9ab12008-03-19 14:25:33 -03001346
1347 /* IPI for invalidation */
Alan Mayer305b92a2008-04-15 15:36:56 -05001348 alloc_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
Glauber de Oliveira Costa17c9ab12008-03-19 14:25:33 -03001349
1350 /* IPI for generic function call */
Alan Mayer305b92a2008-04-15 15:36:56 -05001351 alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
Jens Axboe3b16cf82008-06-26 11:21:54 +02001352
1353 /* IPI for single call function */
1354 set_intr_gate(CALL_FUNCTION_SINGLE_VECTOR,
1355 call_function_single_interrupt);
Glauber de Oliveira Costa17c9ab12008-03-19 14:25:33 -03001356}
1357#endif
1358
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001359/*
1360 * Initialize APIC interrupts
1361 */
1362void __init apic_intr_init(void)
1363{
1364#ifdef CONFIG_SMP
1365 smp_intr_init();
1366#endif
1367 /* self generated IPI for local APIC timer */
Alan Mayer305b92a2008-04-15 15:36:56 -05001368 alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001369
1370 /* IPI vectors for APIC spurious and error interrupts */
Alan Mayer305b92a2008-04-15 15:36:56 -05001371 alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
1372 alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001373
1374 /* thermal monitor LVT interrupt */
1375#ifdef CONFIG_X86_MCE_P4THERMAL
Alan Mayer305b92a2008-04-15 15:36:56 -05001376 alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001377#endif
1378}
1379
1380/**
1381 * connect_bsp_APIC - attach the APIC to the interrupt system
1382 */
1383void __init connect_bsp_APIC(void)
1384{
1385 if (pic_mode) {
1386 /*
1387 * Do not trust the local APIC being empty at bootup.
1388 */
1389 clear_local_APIC();
1390 /*
1391 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1392 * local APIC to INT and NMI lines.
1393 */
1394 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1395 "enabling APIC mode.\n");
1396 outb(0x70, 0x22);
1397 outb(0x01, 0x23);
1398 }
1399 enable_apic_mode();
1400}
1401
1402/**
1403 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1404 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1405 *
1406 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1407 * APIC is disabled.
1408 */
1409void disconnect_bsp_APIC(int virt_wire_setup)
1410{
1411 if (pic_mode) {
1412 /*
1413 * Put the board back into PIC mode (has an effect only on
1414 * certain older boards). Note that APIC interrupts, including
1415 * IPIs, won't work beyond this point! The only exception are
1416 * INIT IPIs.
1417 */
1418 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1419 "entering PIC mode.\n");
1420 outb(0x70, 0x22);
1421 outb(0x00, 0x23);
1422 } else {
1423 /* Go back to Virtual Wire compatibility mode */
1424 unsigned long value;
1425
1426 /* For the spurious interrupt use vector F, and enable it */
1427 value = apic_read(APIC_SPIV);
1428 value &= ~APIC_VECTOR_MASK;
1429 value |= APIC_SPIV_APIC_ENABLED;
1430 value |= 0xf;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001431 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001432
1433 if (!virt_wire_setup) {
1434 /*
1435 * For LVT0 make it edge triggered, active high,
1436 * external and enabled
1437 */
1438 value = apic_read(APIC_LVT0);
1439 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1440 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +01001441 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001442 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1443 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001444 apic_write(APIC_LVT0, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001445 } else {
1446 /* Disable LVT0 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001447 apic_write(APIC_LVT0, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001448 }
1449
1450 /*
1451 * For LVT1 make it edge triggered, active high, nmi and
1452 * enabled
1453 */
1454 value = apic_read(APIC_LVT1);
1455 value &= ~(
1456 APIC_MODE_MASK | APIC_SEND_PENDING |
1457 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1458 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1459 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1460 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001461 apic_write(APIC_LVT1, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001462 }
1463}
1464
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001465unsigned int __cpuinitdata maxcpus = NR_CPUS;
1466
1467void __cpuinit generic_processor_info(int apicid, int version)
1468{
1469 int cpu;
1470 cpumask_t tmp_map;
1471 physid_mask_t phys_cpu;
1472
1473 /*
1474 * Validate version
1475 */
1476 if (version == 0x0) {
1477 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1478 "fixing up to 0x10. (tell your hw vendor)\n",
1479 version);
1480 version = 0x10;
1481 }
1482 apic_version[apicid] = version;
1483
1484 phys_cpu = apicid_to_cpu_present(apicid);
1485 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
1486
1487 if (num_processors >= NR_CPUS) {
1488 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1489 " Processor ignored.\n", NR_CPUS);
1490 return;
1491 }
1492
1493 if (num_processors >= maxcpus) {
1494 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1495 " Processor ignored.\n", maxcpus);
1496 return;
1497 }
1498
1499 num_processors++;
1500 cpus_complement(tmp_map, cpu_present_map);
1501 cpu = first_cpu(tmp_map);
1502
1503 if (apicid == boot_cpu_physical_apicid)
1504 /*
1505 * x86_bios_cpu_apicid is required to have processors listed
1506 * in same order as logical cpu numbers. Hence the first
1507 * entry is BSP, and so on.
1508 */
1509 cpu = 0;
1510
Yinghai Lue0da3362008-06-08 18:29:22 -07001511 if (apicid > max_physical_apicid)
1512 max_physical_apicid = apicid;
1513
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001514 /*
1515 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1516 * but we need to work other dependencies like SMP_SUSPEND etc
1517 * before this can be done without some confusion.
1518 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1519 * - Ashok Raj <ashok.raj@intel.com>
1520 */
Yinghai Lue0da3362008-06-08 18:29:22 -07001521 if (max_physical_apicid >= 8) {
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001522 switch (boot_cpu_data.x86_vendor) {
1523 case X86_VENDOR_INTEL:
1524 if (!APIC_XAPIC(version)) {
1525 def_to_bigsmp = 0;
1526 break;
1527 }
1528 /* If P4 and above fall through */
1529 case X86_VENDOR_AMD:
1530 def_to_bigsmp = 1;
1531 }
1532 }
1533#ifdef CONFIG_SMP
1534 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001535 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1536 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1537 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001538
1539 cpu_to_apicid[cpu] = apicid;
1540 bios_cpu_apicid[cpu] = apicid;
1541 } else {
1542 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1543 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1544 }
1545#endif
1546 cpu_set(cpu, cpu_possible_map);
1547 cpu_set(cpu, cpu_present_map);
1548}
1549
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001550/*
1551 * Power management
1552 */
1553#ifdef CONFIG_PM
1554
1555static struct {
1556 int active;
1557 /* r/w apic fields */
1558 unsigned int apic_id;
1559 unsigned int apic_taskpri;
1560 unsigned int apic_ldr;
1561 unsigned int apic_dfr;
1562 unsigned int apic_spiv;
1563 unsigned int apic_lvtt;
1564 unsigned int apic_lvtpc;
1565 unsigned int apic_lvt0;
1566 unsigned int apic_lvt1;
1567 unsigned int apic_lvterr;
1568 unsigned int apic_tmict;
1569 unsigned int apic_tdcr;
1570 unsigned int apic_thmr;
1571} apic_pm_state;
1572
1573static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1574{
1575 unsigned long flags;
1576 int maxlvt;
1577
1578 if (!apic_pm_state.active)
1579 return 0;
1580
1581 maxlvt = lapic_get_maxlvt();
1582
1583 apic_pm_state.apic_id = apic_read(APIC_ID);
1584 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1585 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1586 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1587 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1588 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1589 if (maxlvt >= 4)
1590 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1591 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1592 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1593 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1594 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1595 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1596#ifdef CONFIG_X86_MCE_P4THERMAL
1597 if (maxlvt >= 5)
1598 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1599#endif
1600
1601 local_irq_save(flags);
1602 disable_local_APIC();
1603 local_irq_restore(flags);
1604 return 0;
1605}
1606
1607static int lapic_resume(struct sys_device *dev)
1608{
1609 unsigned int l, h;
1610 unsigned long flags;
1611 int maxlvt;
1612
1613 if (!apic_pm_state.active)
1614 return 0;
1615
1616 maxlvt = lapic_get_maxlvt();
1617
1618 local_irq_save(flags);
1619
1620 /*
1621 * Make sure the APICBASE points to the right address
1622 *
1623 * FIXME! This will be wrong if we ever support suspend on
1624 * SMP! We'll need to do this as part of the CPU restore!
1625 */
1626 rdmsr(MSR_IA32_APICBASE, l, h);
1627 l &= ~MSR_IA32_APICBASE_BASE;
1628 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1629 wrmsr(MSR_IA32_APICBASE, l, h);
1630
1631 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1632 apic_write(APIC_ID, apic_pm_state.apic_id);
1633 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1634 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1635 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1636 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1637 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1638 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1639#ifdef CONFIG_X86_MCE_P4THERMAL
1640 if (maxlvt >= 5)
1641 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1642#endif
1643 if (maxlvt >= 4)
1644 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1645 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1646 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1647 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1648 apic_write(APIC_ESR, 0);
1649 apic_read(APIC_ESR);
1650 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1651 apic_write(APIC_ESR, 0);
1652 apic_read(APIC_ESR);
1653 local_irq_restore(flags);
1654 return 0;
1655}
1656
1657/*
1658 * This device has no shutdown method - fully functioning local APICs
1659 * are needed on every CPU up until machine_halt/restart/poweroff.
1660 */
1661
1662static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001663 .name = "lapic",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001664 .resume = lapic_resume,
1665 .suspend = lapic_suspend,
1666};
1667
1668static struct sys_device device_lapic = {
1669 .id = 0,
1670 .cls = &lapic_sysclass,
1671};
1672
1673static void __devinit apic_pm_activate(void)
1674{
1675 apic_pm_state.active = 1;
1676}
1677
1678static int __init init_lapic_sysfs(void)
1679{
1680 int error;
1681
1682 if (!cpu_has_apic)
1683 return 0;
1684 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1685
1686 error = sysdev_class_register(&lapic_sysclass);
1687 if (!error)
1688 error = sysdev_register(&device_lapic);
1689 return error;
1690}
1691device_initcall(init_lapic_sysfs);
1692
1693#else /* CONFIG_PM */
1694
1695static void apic_pm_activate(void) { }
1696
1697#endif /* CONFIG_PM */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001698
1699/*
1700 * APIC command line parameters
1701 */
1702static int __init parse_lapic(char *arg)
1703{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001704 force_enable_local_apic = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001705 return 0;
1706}
1707early_param("lapic", parse_lapic);
1708
1709static int __init parse_nolapic(char *arg)
1710{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001711 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001712 setup_clear_cpu_cap(X86_FEATURE_APIC);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001713 return 0;
1714}
1715early_param("nolapic", parse_nolapic);
1716
1717static int __init parse_disable_lapic_timer(char *arg)
1718{
1719 local_apic_timer_disabled = 1;
1720 return 0;
1721}
1722early_param("nolapic_timer", parse_disable_lapic_timer);
1723
1724static int __init parse_lapic_timer_c2_ok(char *arg)
1725{
1726 local_apic_timer_c2_ok = 1;
1727 return 0;
1728}
1729early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1730
1731static int __init apic_set_verbosity(char *str)
1732{
1733 if (strcmp("debug", str) == 0)
1734 apic_verbosity = APIC_DEBUG;
1735 else if (strcmp("verbose", str) == 0)
1736 apic_verbosity = APIC_VERBOSE;
1737 return 1;
1738}
1739__setup("apic=", apic_set_verbosity);
1740
Cyrill Gorcunov746f2eb2008-07-01 21:43:52 +04001741static int __init lapic_insert_resource(void)
1742{
1743 if (!apic_phys)
1744 return -1;
1745
1746 /* Put local APIC into the resource map. */
1747 lapic_resource.start = apic_phys;
1748 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1749 insert_resource(&iomem_resource, &lapic_resource);
1750
1751 return 0;
1752}
1753
1754/*
1755 * need call insert after e820_reserve_resources()
1756 * that is using request_resource
1757 */
1758late_initcall(lapic_insert_resource);