blob: 7783c113be249c82822b5570c57da639d89000e0 [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 Gleixneraa276e12008-06-09 19:15:00 +020063/* Disable local APIC timer from the kernel commandline or via dmi quirk */
Cyrill Gorcunov36fef092008-08-15 13:51:20 +020064static int disable_apic_timer __cpuinitdata;
Thomas Gleixnere585bef2007-03-23 16:08:01 +010065/* Local APIC timer works in C2 */
66int local_apic_timer_c2_ok;
67EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080068
Alan Mayerce178332008-04-16 15:17:20 -050069int first_system_vector = 0xfe;
70
71char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
72
Eric W. Biederman9635b472005-06-25 14:57:41 -070073/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -080074 * Debug level, exported for io_apic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010076unsigned int apic_verbosity;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Alexey Starikovskiyf3918352008-05-23 01:54:51 +040078int pic_mode;
79
Alexey Starikovskiybab4b272008-05-19 19:47:03 +040080/* Have we found an MP table */
81int smp_found_config;
82
Cyrill Gorcunov746f2eb2008-07-01 21:43:52 +040083static struct resource lapic_resource = {
84 .name = "Local APIC",
85 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
86};
87
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080088static unsigned int calibration_result;
89
90static int lapic_next_event(unsigned long delta,
91 struct clock_event_device *evt);
92static void lapic_timer_setup(enum clock_event_mode mode,
93 struct clock_event_device *evt);
94static void lapic_timer_broadcast(cpumask_t mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static void apic_pm_activate(void);
96
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080097/*
98 * The local apic timer can be used for any function which is CPU local.
99 */
100static struct clock_event_device lapic_clockevent = {
101 .name = "lapic",
102 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800103 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800104 .shift = 32,
105 .set_mode = lapic_timer_setup,
106 .set_next_event = lapic_next_event,
107 .broadcast = lapic_timer_broadcast,
108 .rating = 100,
109 .irq = -1,
110};
111static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800113/* Local APIC was disabled by the BIOS and enabled by the kernel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static int enabled_via_apicbase;
115
Andi Kleend3432892008-01-30 13:33:17 +0100116static unsigned long apic_phys;
117
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800118/*
119 * Get the LAPIC version
120 */
121static inline int lapic_get_version(void)
122{
123 return GET_APIC_VERSION(apic_read(APIC_LVR));
124}
125
126/*
Joe Perchesab4a5742008-01-30 13:31:42 +0100127 * Check, if the APIC is integrated or a separate chip
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800128 */
129static inline int lapic_is_integrated(void)
130{
131 return APIC_INTEGRATED(lapic_get_version());
132}
133
134/*
135 * Check, whether this is a modern or a first generation APIC
136 */
137static int modern_apic(void)
138{
139 /* AMD systems use old APIC versions, so check the CPU */
140 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
141 boot_cpu_data.x86 >= 0xf)
142 return 1;
143 return lapic_get_version() >= 0x14;
144}
145
Suresh Siddha9a8f0e62008-07-18 09:59:40 -0700146/*
147 * Paravirt kernels also might be using these below ops. So we still
148 * use generic apic_read()/apic_write(), which might be pointing to different
149 * ops in PARAVIRT case.
150 */
Yinghai Luc535b6a2008-07-11 18:41:54 -0700151void xapic_wait_icr_idle(void)
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200152{
153 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
154 cpu_relax();
155}
156
Yinghai Luc535b6a2008-07-11 18:41:54 -0700157u32 safe_xapic_wait_icr_idle(void)
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200158{
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100159 u32 send_status;
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200160 int timeout;
161
162 timeout = 0;
163 do {
164 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
165 if (!send_status)
166 break;
167 udelay(100);
168 } while (timeout++ < 1000);
169
170 return send_status;
171}
172
Yinghai Luc535b6a2008-07-11 18:41:54 -0700173void xapic_icr_write(u32 low, u32 id)
174{
Suresh Siddhaf586bf72008-07-18 15:58:35 -0700175 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
176 apic_write(APIC_ICR, low);
Yinghai Luc535b6a2008-07-11 18:41:54 -0700177}
178
179u64 xapic_icr_read(void)
180{
181 u32 icr1, icr2;
182
183 icr2 = apic_read(APIC_ICR2);
184 icr1 = apic_read(APIC_ICR);
185
186 return icr1 | ((u64)icr2 << 32);
187}
188
189static struct apic_ops xapic_ops = {
190 .read = native_apic_mem_read,
191 .write = native_apic_mem_write,
Yinghai Luc535b6a2008-07-11 18:41:54 -0700192 .icr_read = xapic_icr_read,
193 .icr_write = xapic_icr_write,
194 .wait_icr_idle = xapic_wait_icr_idle,
195 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
196};
197
198struct apic_ops __read_mostly *apic_ops = &xapic_ops;
199EXPORT_SYMBOL_GPL(apic_ops);
200
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800201/**
202 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
203 */
Jan Beuliche9427102008-01-30 13:31:24 +0100204void __cpuinit enable_NMI_through_LVT0(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200206 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200208 /* unmask and set to NMI */
209 v = APIC_DM_NMI;
210
211 /* Level triggered for 82489DX (32bit mode) */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800212 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 v |= APIC_LVT_LEVEL_TRIGGER;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200214
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100215 apic_write(APIC_LVT0, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800218/**
219 * get_physical_broadcast - Get number of physical broadcast IDs
220 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221int get_physical_broadcast(void)
222{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800223 return modern_apic() ? 0xff : 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800226/**
227 * lapic_get_maxlvt - get the maximum number of local vector table entries
228 */
229int lapic_get_maxlvt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200231 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200233 v = apic_read(APIC_LVR);
234 /*
235 * - we always have APIC integrated on 64bit mode
236 * - 82489DXs do not report # of LVT entries
237 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800238 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800242 * Local APIC timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800245/* Clock divisor is set to 16 */
246#define APIC_DIVISOR 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248/*
249 * This function sets up the local APIC timer, with a timeout of
250 * 'clocks' APIC bus clock. During calibration we actually call
251 * this function twice on the boot CPU, once with a bogus timeout
252 * value, second time for real. The other (noncalibrating) CPUs
253 * call this function only once, with the real, calibrated value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800255static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800257 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800259 lvtt_value = LOCAL_TIMER_VECTOR;
260 if (!oneshot)
261 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800262 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100264
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800265 if (!irqen)
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100266 lvtt_value |= APIC_LVT_MASKED;
267
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100268 apic_write(APIC_LVTT, lvtt_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /*
271 * Divide PICLK by 16
272 */
273 tmp_value = apic_read(APIC_TDCR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100274 apic_write(APIC_TDCR,
275 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
276 APIC_TDR_DIV_16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800278 if (!oneshot)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100279 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800282/*
283 * Program the next event, relative to now
284 */
285static int lapic_next_event(unsigned long delta,
286 struct clock_event_device *evt)
287{
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100288 apic_write(APIC_TMICT, delta);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800289 return 0;
290}
291
292/*
293 * Setup the lapic timer in periodic or oneshot mode
294 */
295static void lapic_timer_setup(enum clock_event_mode mode,
296 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800299 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800301 /* Lapic used for broadcast ? */
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200302 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800303 return;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 local_irq_save(flags);
306
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800307 switch (mode) {
308 case CLOCK_EVT_MODE_PERIODIC:
309 case CLOCK_EVT_MODE_ONESHOT:
310 __setup_APIC_LVTT(calibration_result,
311 mode != CLOCK_EVT_MODE_PERIODIC, 1);
312 break;
313 case CLOCK_EVT_MODE_UNUSED:
314 case CLOCK_EVT_MODE_SHUTDOWN:
315 v = apic_read(APIC_LVTT);
316 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100317 apic_write(APIC_LVTT, v);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800318 break;
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700319 case CLOCK_EVT_MODE_RESUME:
320 /* Nothing to do here */
321 break;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 local_irq_restore(flags);
325}
326
327/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800328 * Local APIC timer broadcast function
329 */
330static void lapic_timer_broadcast(cpumask_t mask)
331{
332#ifdef CONFIG_SMP
333 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
334#endif
335}
336
337/*
338 * Setup the local APIC timer for this CPU. Copy the initilized values
339 * of the boot CPU and register the clock event in the framework.
340 */
341static void __devinit setup_APIC_timer(void)
342{
343 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
344
345 memcpy(levt, &lapic_clockevent, sizeof(*levt));
346 levt->cpumask = cpumask_of_cpu(smp_processor_id());
347
348 clockevents_register_device(levt);
349}
350
351/*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800352 * In this functions we calibrate APIC bus clocks to the external timer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800354 * We want to do the calibration only once since we want to have local timer
355 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
356 * frequency.
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800357 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800358 * This was previously done by reading the PIT/HPET and waiting for a wrap
359 * around to find out, that a tick has elapsed. I have a box, where the PIT
360 * readout is broken, so it never gets out of the wait loop again. This was
361 * also reported by others.
362 *
363 * Monitoring the jiffies value is inaccurate and the clockevents
364 * infrastructure allows us to do a simple substitution of the interrupt
365 * handler.
366 *
367 * The calibration routine also uses the pm_timer when possible, as the PIT
368 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
369 * back to normal later in the boot process).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 */
371
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800372#define LAPIC_CAL_LOOPS (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200374static __initdata int lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800375static __initdata long lapic_cal_t1, lapic_cal_t2;
376static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
377static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
378static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
379
380/*
381 * Temporary interrupt handler.
382 */
383static void __init lapic_cal_handler(struct clock_event_device *dev)
384{
385 unsigned long long tsc = 0;
386 long tapic = apic_read(APIC_TMCCT);
387 unsigned long pm = acpi_pm_read_early();
388
389 if (cpu_has_tsc)
390 rdtscll(tsc);
391
392 switch (lapic_cal_loops++) {
393 case 0:
394 lapic_cal_t1 = tapic;
395 lapic_cal_tsc1 = tsc;
396 lapic_cal_pm1 = pm;
397 lapic_cal_j1 = jiffies;
398 break;
399
400 case LAPIC_CAL_LOOPS:
401 lapic_cal_t2 = tapic;
402 lapic_cal_tsc2 = tsc;
403 if (pm < lapic_cal_pm1)
404 pm += ACPI_PM_OVRRUN;
405 lapic_cal_pm2 = pm;
406 lapic_cal_j2 = jiffies;
407 break;
408 }
409}
410
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400411static int __init calibrate_APIC_clock(void)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800412{
413 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
414 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
415 const long pm_thresh = pm_100ms/100;
416 void (*real_handler)(struct clock_event_device *dev);
417 unsigned long deltaj;
418 long delta, deltapm;
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800419 int pm_referenced = 0;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800420
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800421 local_irq_disable();
422
423 /* Replace the global interrupt handler */
424 real_handler = global_clock_event->event_handler;
425 global_clock_event->event_handler = lapic_cal_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800428 * Setup the APIC counter to 1e9. There is no way the lapic
429 * can underflow in the 100ms detection time frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800431 __setup_APIC_LVTT(1000000000, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800433 /* Let the interrupts run */
434 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800436 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
437 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800439 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800441 /* Restore the real event handler */
442 global_clock_event->event_handler = real_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800444 /* Build delta t1-t2 as apic timer counts down */
445 delta = lapic_cal_t1 - lapic_cal_t2;
446 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800448 /* Check, if the PM timer is available */
449 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
450 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800452 if (deltapm) {
453 unsigned long mult;
454 u64 res;
455
456 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
457
458 if (deltapm > (pm_100ms - pm_thresh) &&
459 deltapm < (pm_100ms + pm_thresh)) {
460 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
461 } else {
462 res = (((u64) deltapm) * mult) >> 22;
463 do_div(res, 1000000);
464 printk(KERN_WARNING "APIC calibration not consistent "
465 "with PM Timer: %ldms instead of 100ms\n",
466 (long)res);
467 /* Correct the lapic counter value */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +0100468 res = (((u64) delta) * pm_100ms);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800469 do_div(res, deltapm);
470 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
471 "%lu (%ld)\n", (unsigned long) res, delta);
472 delta = (long) res;
473 }
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800474 pm_referenced = 1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800477 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900478 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
479 lapic_clockevent.shift);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800480 lapic_clockevent.max_delta_ns =
481 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
482 lapic_clockevent.min_delta_ns =
483 clockevent_delta2ns(0xF, &lapic_clockevent);
484
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800485 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800486
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800487 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
488 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
489 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
490 calibration_result);
491
492 if (cpu_has_tsc) {
493 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800495 "%ld.%04ld MHz.\n",
496 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
497 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800501 "%u.%04u MHz.\n",
502 calibration_result / (1000000 / HZ),
503 calibration_result % (1000000 / HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100505 /*
506 * Do a sanity check on the APIC calibration result
507 */
508 if (calibration_result < (1000000 / HZ)) {
509 local_irq_enable();
510 printk(KERN_WARNING
511 "APIC frequency too slow, disabling apic timer\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400512 return -1;
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100513 }
514
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200515 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400516
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800517 /* We trust the pm timer based calibration */
518 if (!pm_referenced) {
519 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800520
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800521 /*
522 * Setup the apic timer manually
523 */
524 levt->event_handler = lapic_cal_handler;
525 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
526 lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800527
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800528 /* Let the interrupts run */
529 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800530
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200531 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800532 cpu_relax();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800533
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800534 local_irq_disable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800535
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800536 /* Stop the lapic timer */
537 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800538
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800539 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800540
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800541 /* Jiffies delta */
542 deltaj = lapic_cal_j2 - lapic_cal_j1;
543 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800544
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800545 /* Check, if the jiffies result is consistent */
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800546 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800547 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800548 else
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200549 levt->features |= CLOCK_EVT_FEAT_DUMMY;
Ingo Molnar4edc5db2007-03-22 10:31:19 +0100550 } else
551 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800552
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200553 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800554 printk(KERN_WARNING
555 "APIC timer disabled due to verification failure.\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400556 return -1;
Thomas Gleixnera5f5e432007-03-05 00:30:45 -0800557 }
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800558
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400559 return 0;
560}
561
562/*
563 * Setup the boot APIC
564 *
565 * Calibrate and verify the result.
566 */
567void __init setup_boot_APIC_clock(void)
568{
569 /*
570 * The local apic timer can be disabled via the kernel
571 * commandline or from the CPU detection code. Register the lapic
572 * timer as a dummy clock event source on SMP systems, so the
573 * broadcast mechanism is used. On UP systems simply ignore it.
574 */
Cyrill Gorcunov36fef092008-08-15 13:51:20 +0200575 if (disable_apic_timer) {
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400576 /* No broadcast on UP ! */
577 if (num_possible_cpus() > 1) {
578 lapic_clockevent.mult = 1;
579 setup_APIC_timer();
580 }
581 return;
582 }
583
584 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
585 "calibrating APIC timer ...\n");
586
587 if (calibrate_APIC_clock()) {
588 /* No broadcast on UP ! */
589 if (num_possible_cpus() > 1)
590 setup_APIC_timer();
591 return;
592 }
593
594 /*
595 * If nmi_watchdog is set to IO_APIC, we need the
596 * PIT/HPET going. Otherwise register lapic as a dummy
597 * device.
598 */
599 if (nmi_watchdog != NMI_IO_APIC)
600 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
601 else
602 printk(KERN_WARNING "APIC timer registered as dummy,"
603 " due to nmi_watchdog=%d!\n", nmi_watchdog);
604
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800605 /* Setup the lapic or request the broadcast */
606 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Li Shaohua0bb31842005-06-25 14:54:55 -0700609void __devinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800611 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800615 * The guts of the apic timer interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800617static void local_apic_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800619 int cpu = smp_processor_id();
620 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800623 * Normally we should not be here till LAPIC has been initialized but
624 * in some cases like kdump, its possible that there is a pending LAPIC
625 * timer interrupt from previous kernel's context and is delivered in
626 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800628 * Interrupts are enabled early and LAPIC is setup much later, hence
629 * its possible that when we get here evt->event_handler is NULL.
630 * Check for event_handler being NULL and discard the interrupt as
631 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800633 if (!evt->event_handler) {
634 printk(KERN_WARNING
635 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
636 /* Switch it off */
637 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
638 return;
639 }
640
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100641 /*
642 * the NMI deadlock-detector uses this.
643 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800644 per_cpu(irq_stat, cpu).apic_timer_irqs++;
645
646 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649/*
650 * Local APIC timer interrupt. This is the most natural way for doing
651 * local interrupts, but local timer interrupts can be emulated by
652 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
653 *
654 * [ if a single-CPU system runs an SMP kernel then we call the local
655 * interrupt as well. Thus we cannot inline the local irq ... ]
656 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100657void smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
David Howells7d12e782006-10-05 14:55:46 +0100659 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 /*
662 * NOTE! We'd better ACK the irq immediately,
663 * because timer handling can be slow.
664 */
665 ack_APIC_irq();
666 /*
667 * update_process_times() expects us to have done irq_enter().
668 * Besides, if we don't timer interrupts ignore the global
669 * interrupt lock, which is the WrongThing (tm) to do.
670 */
671 irq_enter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800672 local_apic_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 irq_exit();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800674
David Howells7d12e782006-10-05 14:55:46 +0100675 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +0100678int setup_profiling_timer(unsigned int multiplier)
679{
680 return -EINVAL;
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683/*
Robert Richtere319e762008-02-13 16:19:36 +0100684 * Setup extended LVT, AMD specific (K8, family 10h)
685 *
686 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
687 * MCE interrupts are supported. Thus MCE offset must be set to 0.
688 */
689
690#define APIC_EILVT_LVTOFF_MCE 0
691#define APIC_EILVT_LVTOFF_IBS 1
692
693static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
694{
695 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
696 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
697 apic_write(reg, v);
698}
699
700u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
701{
702 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
703 return APIC_EILVT_LVTOFF_MCE;
704}
705
706u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
707{
708 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
709 return APIC_EILVT_LVTOFF_IBS;
710}
711
712/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800713 * Local APIC start and shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800715
716/**
717 * clear_local_APIC - shutdown the local APIC
718 *
719 * This is called, when a CPU is disabled and before rebooting, so the state of
720 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
721 * leftovers during boot.
722 */
723void clear_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Andi Kleend3432892008-01-30 13:33:17 +0100725 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100726 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Andi Kleend3432892008-01-30 13:33:17 +0100728 /* APIC hasn't been mapped yet */
729 if (!apic_phys)
730 return;
731
732 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800734 * Masking an LVT entry can trigger a local APIC error
735 * if the vector is zero. Mask LVTERR first to prevent this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800737 if (maxlvt >= 3) {
738 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100739 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800740 }
741 /*
742 * Careful: we have to set masks only first to deassert
743 * any level-triggered sources.
744 */
745 v = apic_read(APIC_LVTT);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100746 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800747 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100748 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800749 v = apic_read(APIC_LVT1);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100750 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800751 if (maxlvt >= 4) {
752 v = apic_read(APIC_LVTPC);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100753 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800756 /* lets not touch this if we didn't frob it */
757#ifdef CONFIG_X86_MCE_P4THERMAL
758 if (maxlvt >= 5) {
759 v = apic_read(APIC_LVTTHMR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100760 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800761 }
762#endif
763 /*
764 * Clean APIC state for other OSs:
765 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100766 apic_write(APIC_LVTT, APIC_LVT_MASKED);
767 apic_write(APIC_LVT0, APIC_LVT_MASKED);
768 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800769 if (maxlvt >= 3)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100770 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800771 if (maxlvt >= 4)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100772 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800773
774#ifdef CONFIG_X86_MCE_P4THERMAL
775 if (maxlvt >= 5)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100776 apic_write(APIC_LVTTHMR, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800777#endif
778 /* Integrated APIC (!82489DX) ? */
779 if (lapic_is_integrated()) {
780 if (maxlvt > 3)
781 /* Clear ESR due to Pentium errata 3AP and 11AP */
782 apic_write(APIC_ESR, 0);
783 apic_read(APIC_ESR);
784 }
785}
786
787/**
788 * disable_local_APIC - clear and disable the local APIC
789 */
790void disable_local_APIC(void)
791{
792 unsigned long value;
793
794 clear_local_APIC();
795
796 /*
797 * Disable APIC (implies clearing of registers
798 * for 82489DX!).
799 */
800 value = apic_read(APIC_SPIV);
801 value &= ~APIC_SPIV_APIC_ENABLED;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100802 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800803
804 /*
805 * When LAPIC was disabled by the BIOS and enabled by the kernel,
806 * restore the disabled state.
807 */
808 if (enabled_via_apicbase) {
809 unsigned int l, h;
810
811 rdmsr(MSR_IA32_APICBASE, l, h);
812 l &= ~MSR_IA32_APICBASE_ENABLE;
813 wrmsr(MSR_IA32_APICBASE, l, h);
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
817/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800818 * If Linux enabled the LAPIC against the BIOS default disable it down before
819 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
820 * not power-off. Additionally clear all LVT entries before disable_local_APIC
821 * for the case where Linux didn't enable the LAPIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800823void lapic_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800825 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800827 if (!cpu_has_apic)
828 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800830 local_irq_save(flags);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800831
832 if (enabled_via_apicbase)
833 disable_local_APIC();
Cyrill Gorcunov9ce122c2008-08-15 13:51:21 +0200834 else
835 clear_local_APIC();
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800836
837 local_irq_restore(flags);
838}
839
840/*
841 * This is to verify that we're looking at a real local APIC.
842 * Check these against your board if the CPUs aren't getting
843 * started for no apparent reason.
844 */
845int __init verify_local_APIC(void)
846{
847 unsigned int reg0, reg1;
848
849 /*
850 * The version register is read-only in a real APIC.
851 */
852 reg0 = apic_read(APIC_LVR);
853 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
854 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
855 reg1 = apic_read(APIC_LVR);
856 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
857
858 /*
859 * The two version reads above should print the same
860 * numbers. If the second one is different, then we
861 * poke at a non-APIC.
862 */
863 if (reg1 != reg0)
864 return 0;
865
866 /*
867 * Check if the version looks reasonably.
868 */
869 reg1 = GET_APIC_VERSION(reg0);
870 if (reg1 == 0x00 || reg1 == 0xff)
871 return 0;
872 reg1 = lapic_get_maxlvt();
873 if (reg1 < 0x02 || reg1 == 0xff)
874 return 0;
875
876 /*
877 * The ID register is read/write in a real APIC.
878 */
879 reg0 = apic_read(APIC_ID);
880 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
881
882 /*
883 * The next two are just to see if we have sane values.
884 * They're only really relevant if we're in Virtual Wire
885 * compatibility mode, but most boxes are anymore.
886 */
887 reg0 = apic_read(APIC_LVT0);
888 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
889 reg1 = apic_read(APIC_LVT1);
890 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
891
892 return 1;
893}
894
895/**
896 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
897 */
898void __init sync_Arb_IDs(void)
899{
900 /*
901 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
902 * needed on AMD.
903 */
Ingo Molnarf44d9ef2007-11-26 20:42:20 +0100904 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800905 return;
906 /*
907 * Wait for idle.
908 */
909 apic_wait_icr_idle();
910
911 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100912 apic_write(APIC_ICR,
913 APIC_DEST_ALLINC | APIC_INT_LEVELTRIG | APIC_DM_INIT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800914}
915
916/*
917 * An initial setup of the virtual wire mode.
918 */
919void __init init_bsp_APIC(void)
920{
921 unsigned long value;
922
923 /*
924 * Don't do the setup now if we have a SMP BIOS as the
925 * through-I/O-APIC virtual wire mode might be active.
926 */
927 if (smp_found_config || !cpu_has_apic)
928 return;
929
930 /*
931 * Do not trust the local APIC being empty at bootup.
932 */
933 clear_local_APIC();
934
935 /*
936 * Enable APIC.
937 */
938 value = apic_read(APIC_SPIV);
939 value &= ~APIC_VECTOR_MASK;
940 value |= APIC_SPIV_APIC_ENABLED;
941
942 /* This bit is reserved on P4/Xeon and should be cleared */
943 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
944 (boot_cpu_data.x86 == 15))
945 value &= ~APIC_SPIV_FOCUS_DISABLED;
946 else
947 value |= APIC_SPIV_FOCUS_DISABLED;
948 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100949 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800950
951 /*
952 * Set up the virtual wire mode.
953 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100954 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800955 value = APIC_DM_NMI;
956 if (!lapic_is_integrated()) /* 82489DX */
957 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100958 apic_write(APIC_LVT1, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800959}
960
Ingo Molnara4928cf2008-04-23 13:20:56 +0200961static void __cpuinit lapic_setup_esr(void)
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300962{
963 unsigned long oldvalue, value, maxlvt;
964 if (lapic_is_integrated() && !esr_disable) {
965 /* !82489DX */
966 maxlvt = lapic_get_maxlvt();
967 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
968 apic_write(APIC_ESR, 0);
969 oldvalue = apic_read(APIC_ESR);
970
971 /* enables sending errors */
972 value = ERROR_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100973 apic_write(APIC_LVTERR, value);
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300974 /*
975 * spec says clear errors after enabling vector.
976 */
977 if (maxlvt > 3)
978 apic_write(APIC_ESR, 0);
979 value = apic_read(APIC_ESR);
980 if (value != oldvalue)
981 apic_printk(APIC_VERBOSE, "ESR value before enabling "
982 "vector: 0x%08lx after: 0x%08lx\n",
983 oldvalue, value);
984 } else {
985 if (esr_disable)
986 /*
987 * Something untraceable is creating bad interrupts on
988 * secondary quads ... for the moment, just leave the
989 * ESR disabled - we can't do anything useful with the
990 * errors anyway - mbligh
991 */
992 printk(KERN_INFO "Leaving ESR disabled.\n");
993 else
994 printk(KERN_INFO "No ESR for 82489DX.\n");
995 }
996}
997
998
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800999/**
1000 * setup_local_APIC - setup the local APIC
1001 */
Adrian Bunkd5337982007-12-19 23:20:18 +01001002void __cpuinit setup_local_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001003{
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001004 unsigned long value, integrated;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001005 int i, j;
1006
1007 /* Pound the ESR really hard over the head with a big hammer - mbligh */
1008 if (esr_disable) {
1009 apic_write(APIC_ESR, 0);
1010 apic_write(APIC_ESR, 0);
1011 apic_write(APIC_ESR, 0);
1012 apic_write(APIC_ESR, 0);
1013 }
1014
1015 integrated = lapic_is_integrated();
1016
1017 /*
1018 * Double-check whether this APIC is really registered.
1019 */
1020 if (!apic_id_registered())
Ingo Molnar22d5c672008-07-10 16:29:28 +02001021 WARN_ON_ONCE(1);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001022
1023 /*
1024 * Intel recommends to set DFR, LDR and TPR before enabling
1025 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1026 * document number 292116). So here it goes...
1027 */
1028 init_apic_ldr();
1029
1030 /*
1031 * Set Task Priority to 'accept all'. We never change this
1032 * later on.
1033 */
1034 value = apic_read(APIC_TASKPRI);
1035 value &= ~APIC_TPRI_MASK;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001036 apic_write(APIC_TASKPRI, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001037
1038 /*
1039 * After a crash, we no longer service the interrupts and a pending
1040 * interrupt from previous kernel might still have ISR bit set.
1041 *
1042 * Most probably by now CPU has serviced that pending interrupt and
1043 * it might not have done the ack_APIC_irq() because it thought,
1044 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1045 * does not clear the ISR bit and cpu thinks it has already serivced
1046 * the interrupt. Hence a vector might get locked. It was noticed
1047 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1048 */
1049 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1050 value = apic_read(APIC_ISR + i*0x10);
1051 for (j = 31; j >= 0; j--) {
1052 if (value & (1<<j))
1053 ack_APIC_irq();
1054 }
1055 }
1056
1057 /*
1058 * Now that we are all set up, enable the APIC
1059 */
1060 value = apic_read(APIC_SPIV);
1061 value &= ~APIC_VECTOR_MASK;
1062 /*
1063 * Enable APIC
1064 */
1065 value |= APIC_SPIV_APIC_ENABLED;
1066
1067 /*
1068 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1069 * certain networking cards. If high frequency interrupts are
1070 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1071 * entry is masked/unmasked at a high rate as well then sooner or
1072 * later IOAPIC line gets 'stuck', no more interrupts are received
1073 * from the device. If focus CPU is disabled then the hang goes
1074 * away, oh well :-(
1075 *
1076 * [ This bug can be reproduced easily with a level-triggered
1077 * PCI Ne2000 networking cards and PII/PIII processors, dual
1078 * BX chipset. ]
1079 */
1080 /*
1081 * Actually disabling the focus CPU check just makes the hang less
1082 * frequent as it makes the interrupt distributon model be more
1083 * like LRU than MRU (the short-term load is more even across CPUs).
1084 * See also the comment in end_level_ioapic_irq(). --macro
1085 */
1086
1087 /* Enable focus processor (bit==0) */
1088 value &= ~APIC_SPIV_FOCUS_DISABLED;
1089
1090 /*
1091 * Set spurious IRQ vector
1092 */
1093 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001094 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001095
1096 /*
1097 * Set up LVT0, LVT1:
1098 *
1099 * set up through-local-APIC on the BP's LINT0. This is not
Simon Arlott27b46d72007-10-20 01:13:56 +02001100 * strictly necessary in pure symmetric-IO mode, but sometimes
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001101 * we delegate interrupts to the 8259A.
1102 */
1103 /*
1104 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1105 */
1106 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1107 if (!smp_processor_id() && (pic_mode || !value)) {
1108 value = APIC_DM_EXTINT;
1109 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
1110 smp_processor_id());
1111 } else {
1112 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1113 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1114 smp_processor_id());
1115 }
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001116 apic_write(APIC_LVT0, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001117
1118 /*
1119 * only the BP should see the LINT1 NMI signal, obviously.
1120 */
1121 if (!smp_processor_id())
1122 value = APIC_DM_NMI;
1123 else
1124 value = APIC_DM_NMI | APIC_LVT_MASKED;
1125 if (!integrated) /* 82489DX */
1126 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001127 apic_write(APIC_LVT1, value);
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001128}
1129
1130void __cpuinit end_local_APIC_setup(void)
1131{
1132 unsigned long value;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001133
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001134 lapic_setup_esr();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001135 /* Disable the local apic timer */
1136 value = apic_read(APIC_LVTT);
1137 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001138 apic_write(APIC_LVTT, value);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001139
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001140 setup_apic_nmi_watchdog(NULL);
1141 apic_pm_activate();
1142}
1143
1144/*
1145 * Detect and initialize APIC
1146 */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001147static int __init detect_init_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001148{
1149 u32 h, l, features;
1150
1151 /* Disabled by kernel option? */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001152 if (disable_apic)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001153 return -1;
1154
1155 switch (boot_cpu_data.x86_vendor) {
1156 case X86_VENDOR_AMD:
1157 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1158 (boot_cpu_data.x86 == 15))
1159 break;
1160 goto no_apic;
1161 case X86_VENDOR_INTEL:
1162 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1163 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1164 break;
1165 goto no_apic;
1166 default:
1167 goto no_apic;
1168 }
1169
1170 if (!cpu_has_apic) {
1171 /*
1172 * Over-ride BIOS and try to enable the local APIC only if
1173 * "lapic" specified.
1174 */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001175 if (!force_enable_local_apic) {
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001176 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1177 "you can enable it with \"lapic\"\n");
1178 return -1;
1179 }
1180 /*
1181 * Some BIOSes disable the local APIC in the APIC_BASE
1182 * MSR. This can only be done in software for Intel P6 or later
1183 * and AMD K7 (Model > 1) or later.
1184 */
1185 rdmsr(MSR_IA32_APICBASE, l, h);
1186 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1187 printk(KERN_INFO
1188 "Local APIC disabled by BIOS -- reenabling.\n");
1189 l &= ~MSR_IA32_APICBASE_BASE;
1190 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1191 wrmsr(MSR_IA32_APICBASE, l, h);
1192 enabled_via_apicbase = 1;
1193 }
1194 }
1195 /*
1196 * The APIC feature bit should now be enabled
1197 * in `cpuid'
1198 */
1199 features = cpuid_edx(1);
1200 if (!(features & (1 << X86_FEATURE_APIC))) {
1201 printk(KERN_WARNING "Could not enable APIC!\n");
1202 return -1;
1203 }
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001204 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001205 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1206
1207 /* The BIOS may have set up the APIC at some other address */
1208 rdmsr(MSR_IA32_APICBASE, l, h);
1209 if (l & MSR_IA32_APICBASE_ENABLE)
1210 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1211
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001212 printk(KERN_INFO "Found and enabled local APIC!\n");
1213
1214 apic_pm_activate();
1215
1216 return 0;
1217
1218no_apic:
1219 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1220 return -1;
1221}
1222
1223/**
1224 * init_apic_mappings - initialize APIC mappings
1225 */
1226void __init init_apic_mappings(void)
1227{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001228 /*
1229 * If no local APIC can be found then set up a fake all
1230 * zeroes page to simulate the local APIC and another
1231 * one for the IO-APIC.
1232 */
1233 if (!smp_found_config && detect_init_APIC()) {
1234 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1235 apic_phys = __pa(apic_phys);
1236 } else
1237 apic_phys = mp_lapic_addr;
1238
1239 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1240 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1241 apic_phys);
1242
1243 /*
1244 * Fetch the APIC ID of the BSP in case we have a
1245 * default configuration (or the MP table is broken).
1246 */
1247 if (boot_cpu_physical_apicid == -1U)
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001248 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
1252/*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001253 * This initializes the IO-APIC and APIC hardware if this is
1254 * a UP kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
Alexey Starikovskiye81b2c62008-03-27 23:54:31 +03001256
1257int apic_version[MAX_APICS];
1258
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001259int __init APIC_init_uniprocessor(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001261 if (!smp_found_config && !cpu_has_apic)
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001262 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001265 * Complain if the BIOS pretends there is one.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001267 if (!cpu_has_apic &&
1268 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001270 boot_cpu_physical_apicid);
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001271 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return -1;
1273 }
1274
1275 verify_local_APIC();
1276
1277 connect_bsp_APIC();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001278
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001279 /*
1280 * Hack: In case of kdump, after a crash, kernel might be booting
1281 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1282 * might be zero if read from MP tables. Get it from LAPIC.
1283 */
1284#ifdef CONFIG_CRASH_DUMP
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001285 boot_cpu_physical_apicid = read_apic_id();
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001286#endif
Jack Steinerb6df1b82008-06-19 21:51:05 -05001287 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 setup_local_APIC();
1290
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001291#ifdef CONFIG_X86_IO_APIC
1292 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1293#endif
1294 localise_nmi_watchdog();
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001295 end_local_APIC_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001297 if (smp_found_config)
1298 if (!skip_ioapic_setup && nr_ioapics)
1299 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300#endif
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001301 setup_boot_clock();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001302
1303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001305
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001306/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001307 * Local APIC interrupts
1308 */
1309
1310/*
1311 * This interrupt should _never_ happen with our APIC/SMP architecture
1312 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001313void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001314{
1315 unsigned long v;
1316
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001317 irq_enter();
1318 /*
1319 * Check if this really is a spurious interrupt and ACK it
1320 * if it is a vectored one. Just in case...
1321 * Spurious interrupts should not be ACKed.
1322 */
1323 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1324 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1325 ack_APIC_irq();
1326
1327 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1328 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1329 "should never happen.\n", smp_processor_id());
Joe Korty38e760a2007-10-17 18:04:40 +02001330 __get_cpu_var(irq_stat).irq_spurious_count++;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001331 irq_exit();
1332}
1333
1334/*
1335 * This interrupt should never happen with our APIC/SMP architecture
1336 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001337void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001338{
1339 unsigned long v, v1;
1340
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001341 irq_enter();
1342 /* First tickle the hardware, only then report what went on. -- REW */
1343 v = apic_read(APIC_ESR);
1344 apic_write(APIC_ESR, 0);
1345 v1 = apic_read(APIC_ESR);
1346 ack_APIC_irq();
1347 atomic_inc(&irq_err_count);
1348
1349 /* Here is what the APIC error bits mean:
1350 0: Send CS error
1351 1: Receive CS error
1352 2: Send accept error
1353 3: Receive accept error
1354 4: Reserved
1355 5: Send illegal vector
1356 6: Received illegal vector
1357 7: Illegal register address
1358 */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +01001359 printk(KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001360 smp_processor_id(), v , v1);
1361 irq_exit();
1362}
1363
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001364/**
1365 * connect_bsp_APIC - attach the APIC to the interrupt system
1366 */
1367void __init connect_bsp_APIC(void)
1368{
1369 if (pic_mode) {
1370 /*
1371 * Do not trust the local APIC being empty at bootup.
1372 */
1373 clear_local_APIC();
1374 /*
1375 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1376 * local APIC to INT and NMI lines.
1377 */
1378 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1379 "enabling APIC mode.\n");
1380 outb(0x70, 0x22);
1381 outb(0x01, 0x23);
1382 }
1383 enable_apic_mode();
1384}
1385
1386/**
1387 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1388 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1389 *
1390 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1391 * APIC is disabled.
1392 */
1393void disconnect_bsp_APIC(int virt_wire_setup)
1394{
1395 if (pic_mode) {
1396 /*
1397 * Put the board back into PIC mode (has an effect only on
1398 * certain older boards). Note that APIC interrupts, including
1399 * IPIs, won't work beyond this point! The only exception are
1400 * INIT IPIs.
1401 */
1402 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1403 "entering PIC mode.\n");
1404 outb(0x70, 0x22);
1405 outb(0x00, 0x23);
1406 } else {
1407 /* Go back to Virtual Wire compatibility mode */
1408 unsigned long value;
1409
1410 /* For the spurious interrupt use vector F, and enable it */
1411 value = apic_read(APIC_SPIV);
1412 value &= ~APIC_VECTOR_MASK;
1413 value |= APIC_SPIV_APIC_ENABLED;
1414 value |= 0xf;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001415 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001416
1417 if (!virt_wire_setup) {
1418 /*
1419 * For LVT0 make it edge triggered, active high,
1420 * external and enabled
1421 */
1422 value = apic_read(APIC_LVT0);
1423 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1424 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +01001425 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001426 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1427 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001428 apic_write(APIC_LVT0, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001429 } else {
1430 /* Disable LVT0 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001431 apic_write(APIC_LVT0, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001432 }
1433
1434 /*
1435 * For LVT1 make it edge triggered, active high, nmi and
1436 * enabled
1437 */
1438 value = apic_read(APIC_LVT1);
1439 value &= ~(
1440 APIC_MODE_MASK | APIC_SEND_PENDING |
1441 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1442 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1443 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1444 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001445 apic_write(APIC_LVT1, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001446 }
1447}
1448
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001449unsigned int __cpuinitdata maxcpus = NR_CPUS;
1450
1451void __cpuinit generic_processor_info(int apicid, int version)
1452{
1453 int cpu;
1454 cpumask_t tmp_map;
1455 physid_mask_t phys_cpu;
1456
1457 /*
1458 * Validate version
1459 */
1460 if (version == 0x0) {
1461 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1462 "fixing up to 0x10. (tell your hw vendor)\n",
1463 version);
1464 version = 0x10;
1465 }
1466 apic_version[apicid] = version;
1467
1468 phys_cpu = apicid_to_cpu_present(apicid);
1469 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
1470
1471 if (num_processors >= NR_CPUS) {
1472 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1473 " Processor ignored.\n", NR_CPUS);
1474 return;
1475 }
1476
1477 if (num_processors >= maxcpus) {
1478 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1479 " Processor ignored.\n", maxcpus);
1480 return;
1481 }
1482
1483 num_processors++;
1484 cpus_complement(tmp_map, cpu_present_map);
1485 cpu = first_cpu(tmp_map);
1486
1487 if (apicid == boot_cpu_physical_apicid)
1488 /*
1489 * x86_bios_cpu_apicid is required to have processors listed
1490 * in same order as logical cpu numbers. Hence the first
1491 * entry is BSP, and so on.
1492 */
1493 cpu = 0;
1494
Yinghai Lue0da3362008-06-08 18:29:22 -07001495 if (apicid > max_physical_apicid)
1496 max_physical_apicid = apicid;
1497
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001498 /*
1499 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1500 * but we need to work other dependencies like SMP_SUSPEND etc
1501 * before this can be done without some confusion.
1502 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1503 * - Ashok Raj <ashok.raj@intel.com>
1504 */
Yinghai Lue0da3362008-06-08 18:29:22 -07001505 if (max_physical_apicid >= 8) {
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001506 switch (boot_cpu_data.x86_vendor) {
1507 case X86_VENDOR_INTEL:
1508 if (!APIC_XAPIC(version)) {
1509 def_to_bigsmp = 0;
1510 break;
1511 }
1512 /* If P4 and above fall through */
1513 case X86_VENDOR_AMD:
1514 def_to_bigsmp = 1;
1515 }
1516 }
1517#ifdef CONFIG_SMP
1518 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001519 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1520 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1521 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001522
1523 cpu_to_apicid[cpu] = apicid;
1524 bios_cpu_apicid[cpu] = apicid;
1525 } else {
1526 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1527 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1528 }
1529#endif
1530 cpu_set(cpu, cpu_possible_map);
1531 cpu_set(cpu, cpu_present_map);
1532}
1533
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001534/*
1535 * Power management
1536 */
1537#ifdef CONFIG_PM
1538
1539static struct {
1540 int active;
1541 /* r/w apic fields */
1542 unsigned int apic_id;
1543 unsigned int apic_taskpri;
1544 unsigned int apic_ldr;
1545 unsigned int apic_dfr;
1546 unsigned int apic_spiv;
1547 unsigned int apic_lvtt;
1548 unsigned int apic_lvtpc;
1549 unsigned int apic_lvt0;
1550 unsigned int apic_lvt1;
1551 unsigned int apic_lvterr;
1552 unsigned int apic_tmict;
1553 unsigned int apic_tdcr;
1554 unsigned int apic_thmr;
1555} apic_pm_state;
1556
1557static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1558{
1559 unsigned long flags;
1560 int maxlvt;
1561
1562 if (!apic_pm_state.active)
1563 return 0;
1564
1565 maxlvt = lapic_get_maxlvt();
1566
1567 apic_pm_state.apic_id = apic_read(APIC_ID);
1568 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1569 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1570 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1571 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1572 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1573 if (maxlvt >= 4)
1574 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1575 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1576 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1577 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1578 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1579 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1580#ifdef CONFIG_X86_MCE_P4THERMAL
1581 if (maxlvt >= 5)
1582 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1583#endif
1584
1585 local_irq_save(flags);
1586 disable_local_APIC();
1587 local_irq_restore(flags);
1588 return 0;
1589}
1590
1591static int lapic_resume(struct sys_device *dev)
1592{
1593 unsigned int l, h;
1594 unsigned long flags;
1595 int maxlvt;
1596
1597 if (!apic_pm_state.active)
1598 return 0;
1599
1600 maxlvt = lapic_get_maxlvt();
1601
1602 local_irq_save(flags);
1603
1604 /*
1605 * Make sure the APICBASE points to the right address
1606 *
1607 * FIXME! This will be wrong if we ever support suspend on
1608 * SMP! We'll need to do this as part of the CPU restore!
1609 */
1610 rdmsr(MSR_IA32_APICBASE, l, h);
1611 l &= ~MSR_IA32_APICBASE_BASE;
1612 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1613 wrmsr(MSR_IA32_APICBASE, l, h);
1614
1615 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1616 apic_write(APIC_ID, apic_pm_state.apic_id);
1617 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1618 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1619 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1620 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1621 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1622 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1623#ifdef CONFIG_X86_MCE_P4THERMAL
1624 if (maxlvt >= 5)
1625 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1626#endif
1627 if (maxlvt >= 4)
1628 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1629 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1630 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1631 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1632 apic_write(APIC_ESR, 0);
1633 apic_read(APIC_ESR);
1634 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1635 apic_write(APIC_ESR, 0);
1636 apic_read(APIC_ESR);
1637 local_irq_restore(flags);
1638 return 0;
1639}
1640
1641/*
1642 * This device has no shutdown method - fully functioning local APICs
1643 * are needed on every CPU up until machine_halt/restart/poweroff.
1644 */
1645
1646static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001647 .name = "lapic",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001648 .resume = lapic_resume,
1649 .suspend = lapic_suspend,
1650};
1651
1652static struct sys_device device_lapic = {
1653 .id = 0,
1654 .cls = &lapic_sysclass,
1655};
1656
1657static void __devinit apic_pm_activate(void)
1658{
1659 apic_pm_state.active = 1;
1660}
1661
1662static int __init init_lapic_sysfs(void)
1663{
1664 int error;
1665
1666 if (!cpu_has_apic)
1667 return 0;
1668 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1669
1670 error = sysdev_class_register(&lapic_sysclass);
1671 if (!error)
1672 error = sysdev_register(&device_lapic);
1673 return error;
1674}
1675device_initcall(init_lapic_sysfs);
1676
1677#else /* CONFIG_PM */
1678
1679static void apic_pm_activate(void) { }
1680
1681#endif /* CONFIG_PM */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001682
1683/*
1684 * APIC command line parameters
1685 */
1686static int __init parse_lapic(char *arg)
1687{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001688 force_enable_local_apic = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001689 return 0;
1690}
1691early_param("lapic", parse_lapic);
1692
1693static int __init parse_nolapic(char *arg)
1694{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001695 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001696 setup_clear_cpu_cap(X86_FEATURE_APIC);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001697 return 0;
1698}
1699early_param("nolapic", parse_nolapic);
1700
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001701static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001702{
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001703 disable_apic_timer = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001704 return 0;
1705}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001706early_param("noapictimer", parse_disable_apic_timer);
1707
1708static int __init parse_nolapic_timer(char *arg)
1709{
1710 disable_apic_timer = 1;
1711 return 0;
1712}
1713early_param("nolapic_timer", parse_nolapic_timer);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001714
1715static int __init parse_lapic_timer_c2_ok(char *arg)
1716{
1717 local_apic_timer_c2_ok = 1;
1718 return 0;
1719}
1720early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1721
Rene Herman48d97cb2008-08-11 19:20:17 +02001722static int __init apic_set_verbosity(char *arg)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001723{
Rene Herman48d97cb2008-08-11 19:20:17 +02001724 if (!arg)
1725 return -EINVAL;
1726
1727 if (strcmp(arg, "debug") == 0)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001728 apic_verbosity = APIC_DEBUG;
Rene Herman48d97cb2008-08-11 19:20:17 +02001729 else if (strcmp(arg, "verbose") == 0)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001730 apic_verbosity = APIC_VERBOSE;
Rene Herman48d97cb2008-08-11 19:20:17 +02001731
Rene Hermanfb6bef82008-08-11 17:45:53 +02001732 return 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001733}
Rene Hermanfb6bef82008-08-11 17:45:53 +02001734early_param("apic", apic_set_verbosity);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001735
Cyrill Gorcunov746f2eb2008-07-01 21:43:52 +04001736static int __init lapic_insert_resource(void)
1737{
1738 if (!apic_phys)
1739 return -1;
1740
1741 /* Put local APIC into the resource map. */
1742 lapic_resource.start = apic_phys;
1743 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1744 insert_resource(&iomem_resource, &lapic_resource);
1745
1746 return 0;
1747}
1748
1749/*
1750 * need call insert after e820_reserve_resources()
1751 * that is using request_resource
1752 */
1753late_initcall(lapic_insert_resource);