blob: 80db3e0426c4c176087a993cdd58c0a48a3b7fbb [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;
Cyrill Gorcunovb6c80512008-08-18 20:45:49 +0400117unsigned int __cpuinitdata maxcpus = NR_CPUS;
118
Andi Kleend3432892008-01-30 13:33:17 +0100119
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{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400133#ifdef CONFIG_X86_64
134 return 1;
135#else
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800136 return APIC_INTEGRATED(lapic_get_version());
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400137#endif
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800138}
139
140/*
141 * Check, whether this is a modern or a first generation APIC
142 */
143static int modern_apic(void)
144{
145 /* AMD systems use old APIC versions, so check the CPU */
146 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
147 boot_cpu_data.x86 >= 0xf)
148 return 1;
149 return lapic_get_version() >= 0x14;
150}
151
Suresh Siddha9a8f0e62008-07-18 09:59:40 -0700152/*
153 * Paravirt kernels also might be using these below ops. So we still
154 * use generic apic_read()/apic_write(), which might be pointing to different
155 * ops in PARAVIRT case.
156 */
Yinghai Luc535b6a2008-07-11 18:41:54 -0700157void xapic_wait_icr_idle(void)
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200158{
159 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
160 cpu_relax();
161}
162
Yinghai Luc535b6a2008-07-11 18:41:54 -0700163u32 safe_xapic_wait_icr_idle(void)
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200164{
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100165 u32 send_status;
Fernando Luis VazquezCaof2b218d2007-05-02 19:27:17 +0200166 int timeout;
167
168 timeout = 0;
169 do {
170 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
171 if (!send_status)
172 break;
173 udelay(100);
174 } while (timeout++ < 1000);
175
176 return send_status;
177}
178
Yinghai Luc535b6a2008-07-11 18:41:54 -0700179void xapic_icr_write(u32 low, u32 id)
180{
Suresh Siddhaf586bf72008-07-18 15:58:35 -0700181 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
182 apic_write(APIC_ICR, low);
Yinghai Luc535b6a2008-07-11 18:41:54 -0700183}
184
185u64 xapic_icr_read(void)
186{
187 u32 icr1, icr2;
188
189 icr2 = apic_read(APIC_ICR2);
190 icr1 = apic_read(APIC_ICR);
191
192 return icr1 | ((u64)icr2 << 32);
193}
194
195static struct apic_ops xapic_ops = {
196 .read = native_apic_mem_read,
197 .write = native_apic_mem_write,
Yinghai Luc535b6a2008-07-11 18:41:54 -0700198 .icr_read = xapic_icr_read,
199 .icr_write = xapic_icr_write,
200 .wait_icr_idle = xapic_wait_icr_idle,
201 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
202};
203
204struct apic_ops __read_mostly *apic_ops = &xapic_ops;
205EXPORT_SYMBOL_GPL(apic_ops);
206
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800207/**
208 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
209 */
Jan Beuliche9427102008-01-30 13:31:24 +0100210void __cpuinit enable_NMI_through_LVT0(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200212 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200214 /* unmask and set to NMI */
215 v = APIC_DM_NMI;
216
217 /* Level triggered for 82489DX (32bit mode) */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800218 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 v |= APIC_LVT_LEVEL_TRIGGER;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200220
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100221 apic_write(APIC_LVT0, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800224/**
225 * get_physical_broadcast - Get number of physical broadcast IDs
226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227int get_physical_broadcast(void)
228{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800229 return modern_apic() ? 0xff : 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800232/**
233 * lapic_get_maxlvt - get the maximum number of local vector table entries
234 */
235int lapic_get_maxlvt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200237 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200239 v = apic_read(APIC_LVR);
240 /*
241 * - we always have APIC integrated on 64bit mode
242 * - 82489DXs do not report # of LVT entries
243 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800244 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800248 * Local APIC timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800251/* Clock divisor is set to 16 */
252#define APIC_DIVISOR 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254/*
255 * This function sets up the local APIC timer, with a timeout of
256 * 'clocks' APIC bus clock. During calibration we actually call
257 * this function twice on the boot CPU, once with a bogus timeout
258 * value, second time for real. The other (noncalibrating) CPUs
259 * call this function only once, with the real, calibrated value.
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400260 *
261 * We do reads before writes even if unnecessary, to get around the
262 * P5 APIC double write bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800264static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800266 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800268 lvtt_value = LOCAL_TIMER_VECTOR;
269 if (!oneshot)
270 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800271 if (!lapic_is_integrated())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100273
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800274 if (!irqen)
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100275 lvtt_value |= APIC_LVT_MASKED;
276
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100277 apic_write(APIC_LVTT, lvtt_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 /*
280 * Divide PICLK by 16
281 */
282 tmp_value = apic_read(APIC_TDCR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100283 apic_write(APIC_TDCR,
284 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
285 APIC_TDR_DIV_16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800287 if (!oneshot)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100288 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800291/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400292 * Setup extended LVT, AMD specific (K8, family 10h)
293 *
294 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
295 * MCE interrupts are supported. Thus MCE offset must be set to 0.
296 */
297
298#define APIC_EILVT_LVTOFF_MCE 0
299#define APIC_EILVT_LVTOFF_IBS 1
300
301static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
302{
303 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
304 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
305
306 apic_write(reg, v);
307}
308
309u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
310{
311 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
312 return APIC_EILVT_LVTOFF_MCE;
313}
314
315u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
316{
317 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
318 return APIC_EILVT_LVTOFF_IBS;
319}
320
321/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800322 * Program the next event, relative to now
323 */
324static int lapic_next_event(unsigned long delta,
325 struct clock_event_device *evt)
326{
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100327 apic_write(APIC_TMICT, delta);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800328 return 0;
329}
330
331/*
332 * Setup the lapic timer in periodic or oneshot mode
333 */
334static void lapic_timer_setup(enum clock_event_mode mode,
335 struct clock_event_device *evt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 unsigned long flags;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800338 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400340 /* Lapic used as dummy for broadcast ? */
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200341 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800342 return;
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 local_irq_save(flags);
345
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800346 switch (mode) {
347 case CLOCK_EVT_MODE_PERIODIC:
348 case CLOCK_EVT_MODE_ONESHOT:
349 __setup_APIC_LVTT(calibration_result,
350 mode != CLOCK_EVT_MODE_PERIODIC, 1);
351 break;
352 case CLOCK_EVT_MODE_UNUSED:
353 case CLOCK_EVT_MODE_SHUTDOWN:
354 v = apic_read(APIC_LVTT);
355 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100356 apic_write(APIC_LVTT, v);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800357 break;
Thomas Gleixner18de5bc2007-07-21 04:37:34 -0700358 case CLOCK_EVT_MODE_RESUME:
359 /* Nothing to do here */
360 break;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 local_irq_restore(flags);
364}
365
366/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800367 * Local APIC timer broadcast function
368 */
369static void lapic_timer_broadcast(cpumask_t mask)
370{
371#ifdef CONFIG_SMP
372 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
373#endif
374}
375
376/*
377 * Setup the local APIC timer for this CPU. Copy the initilized values
378 * of the boot CPU and register the clock event in the framework.
379 */
380static void __devinit setup_APIC_timer(void)
381{
382 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
383
384 memcpy(levt, &lapic_clockevent, sizeof(*levt));
385 levt->cpumask = cpumask_of_cpu(smp_processor_id());
386
387 clockevents_register_device(levt);
388}
389
390/*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800391 * In this functions we calibrate APIC bus clocks to the external timer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800393 * We want to do the calibration only once since we want to have local timer
394 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
395 * frequency.
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800396 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800397 * This was previously done by reading the PIT/HPET and waiting for a wrap
398 * around to find out, that a tick has elapsed. I have a box, where the PIT
399 * readout is broken, so it never gets out of the wait loop again. This was
400 * also reported by others.
401 *
402 * Monitoring the jiffies value is inaccurate and the clockevents
403 * infrastructure allows us to do a simple substitution of the interrupt
404 * handler.
405 *
406 * The calibration routine also uses the pm_timer when possible, as the PIT
407 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
408 * back to normal later in the boot process).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
410
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800411#define LAPIC_CAL_LOOPS (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200413static __initdata int lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800414static __initdata long lapic_cal_t1, lapic_cal_t2;
415static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
416static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
417static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
418
419/*
420 * Temporary interrupt handler.
421 */
422static void __init lapic_cal_handler(struct clock_event_device *dev)
423{
424 unsigned long long tsc = 0;
425 long tapic = apic_read(APIC_TMCCT);
426 unsigned long pm = acpi_pm_read_early();
427
428 if (cpu_has_tsc)
429 rdtscll(tsc);
430
431 switch (lapic_cal_loops++) {
432 case 0:
433 lapic_cal_t1 = tapic;
434 lapic_cal_tsc1 = tsc;
435 lapic_cal_pm1 = pm;
436 lapic_cal_j1 = jiffies;
437 break;
438
439 case LAPIC_CAL_LOOPS:
440 lapic_cal_t2 = tapic;
441 lapic_cal_tsc2 = tsc;
442 if (pm < lapic_cal_pm1)
443 pm += ACPI_PM_OVRRUN;
444 lapic_cal_pm2 = pm;
445 lapic_cal_j2 = jiffies;
446 break;
447 }
448}
449
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400450static int __init calibrate_APIC_clock(void)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800451{
452 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
453 const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
454 const long pm_thresh = pm_100ms/100;
455 void (*real_handler)(struct clock_event_device *dev);
456 unsigned long deltaj;
457 long delta, deltapm;
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800458 int pm_referenced = 0;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800459
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800460 local_irq_disable();
461
462 /* Replace the global interrupt handler */
463 real_handler = global_clock_event->event_handler;
464 global_clock_event->event_handler = lapic_cal_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800467 * Setup the APIC counter to 1e9. There is no way the lapic
468 * can underflow in the 100ms detection time frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800470 __setup_APIC_LVTT(1000000000, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800472 /* Let the interrupts run */
473 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800475 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
476 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800478 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800480 /* Restore the real event handler */
481 global_clock_event->event_handler = real_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800483 /* Build delta t1-t2 as apic timer counts down */
484 delta = lapic_cal_t1 - lapic_cal_t2;
485 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800487 /* Check, if the PM timer is available */
488 deltapm = lapic_cal_pm2 - lapic_cal_pm1;
489 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800491 if (deltapm) {
492 unsigned long mult;
493 u64 res;
494
495 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
496
497 if (deltapm > (pm_100ms - pm_thresh) &&
498 deltapm < (pm_100ms + pm_thresh)) {
499 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
500 } else {
501 res = (((u64) deltapm) * mult) >> 22;
502 do_div(res, 1000000);
503 printk(KERN_WARNING "APIC calibration not consistent "
504 "with PM Timer: %ldms instead of 100ms\n",
505 (long)res);
506 /* Correct the lapic counter value */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +0100507 res = (((u64) delta) * pm_100ms);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800508 do_div(res, deltapm);
509 printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
510 "%lu (%ld)\n", (unsigned long) res, delta);
511 delta = (long) res;
512 }
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800513 pm_referenced = 1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800516 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900517 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
518 lapic_clockevent.shift);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800519 lapic_clockevent.max_delta_ns =
520 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
521 lapic_clockevent.min_delta_ns =
522 clockevent_delta2ns(0xF, &lapic_clockevent);
523
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800524 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800525
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800526 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
527 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
528 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
529 calibration_result);
530
531 if (cpu_has_tsc) {
532 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800534 "%ld.%04ld MHz.\n",
535 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
536 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800540 "%u.%04u MHz.\n",
541 calibration_result / (1000000 / HZ),
542 calibration_result % (1000000 / HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100544 /*
545 * Do a sanity check on the APIC calibration result
546 */
547 if (calibration_result < (1000000 / HZ)) {
548 local_irq_enable();
549 printk(KERN_WARNING
550 "APIC frequency too slow, disabling apic timer\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400551 return -1;
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100552 }
553
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200554 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400555
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800556 /* We trust the pm timer based calibration */
557 if (!pm_referenced) {
558 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800559
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800560 /*
561 * Setup the apic timer manually
562 */
563 levt->event_handler = lapic_cal_handler;
564 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
565 lapic_cal_loops = -1;
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800566
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800567 /* Let the interrupts run */
568 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800569
Thomas Gleixnerf5352fd2007-07-21 17:11:32 +0200570 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800571 cpu_relax();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800572
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800573 local_irq_disable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800574
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800575 /* Stop the lapic timer */
576 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800577
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800578 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800579
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800580 /* Jiffies delta */
581 deltaj = lapic_cal_j2 - lapic_cal_j1;
582 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800583
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800584 /* Check, if the jiffies result is consistent */
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800585 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800586 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
Thomas Gleixnerca1b9402007-03-18 01:26:13 -0800587 else
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200588 levt->features |= CLOCK_EVT_FEAT_DUMMY;
Ingo Molnar4edc5db2007-03-22 10:31:19 +0100589 } else
590 local_irq_enable();
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800591
Cyrill Gorcunov64e474d2008-08-15 13:51:22 +0200592 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800593 printk(KERN_WARNING
594 "APIC timer disabled due to verification failure.\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400595 return -1;
Thomas Gleixnera5f5e432007-03-05 00:30:45 -0800596 }
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800597
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400598 return 0;
599}
600
601/*
602 * Setup the boot APIC
603 *
604 * Calibrate and verify the result.
605 */
606void __init setup_boot_APIC_clock(void)
607{
608 /*
609 * The local apic timer can be disabled via the kernel
610 * commandline or from the CPU detection code. Register the lapic
611 * timer as a dummy clock event source on SMP systems, so the
612 * broadcast mechanism is used. On UP systems simply ignore it.
613 */
Cyrill Gorcunov36fef092008-08-15 13:51:20 +0200614 if (disable_apic_timer) {
Cyrill Gorcunovf1ee3782008-08-18 20:45:50 +0400615 printk(KERN_INFO "Disabling APIC timer\n");
Cyrill Gorcunov836c1292008-07-15 21:02:55 +0400616 /* No broadcast on UP ! */
617 if (num_possible_cpus() > 1) {
618 lapic_clockevent.mult = 1;
619 setup_APIC_timer();
620 }
621 return;
622 }
623
624 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
625 "calibrating APIC timer ...\n");
626
627 if (calibrate_APIC_clock()) {
628 /* No broadcast on UP ! */
629 if (num_possible_cpus() > 1)
630 setup_APIC_timer();
631 return;
632 }
633
634 /*
635 * If nmi_watchdog is set to IO_APIC, we need the
636 * PIT/HPET going. Otherwise register lapic as a dummy
637 * device.
638 */
639 if (nmi_watchdog != NMI_IO_APIC)
640 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
641 else
642 printk(KERN_WARNING "APIC timer registered as dummy,"
643 " due to nmi_watchdog=%d!\n", nmi_watchdog);
644
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800645 /* Setup the lapic or request the broadcast */
646 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Li Shaohua0bb31842005-06-25 14:54:55 -0700649void __devinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800651 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/*
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800655 * The guts of the apic timer interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800657static void local_apic_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800659 int cpu = smp_processor_id();
660 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 /*
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800663 * Normally we should not be here till LAPIC has been initialized but
664 * in some cases like kdump, its possible that there is a pending LAPIC
665 * timer interrupt from previous kernel's context and is delivered in
666 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 *
Thomas Gleixnerd36b49b2007-02-16 01:28:06 -0800668 * Interrupts are enabled early and LAPIC is setup much later, hence
669 * its possible that when we get here evt->event_handler is NULL.
670 * Check for event_handler being NULL and discard the interrupt as
671 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800673 if (!evt->event_handler) {
674 printk(KERN_WARNING
675 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
676 /* Switch it off */
677 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
678 return;
679 }
680
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100681 /*
682 * the NMI deadlock-detector uses this.
683 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800684 per_cpu(irq_stat, cpu).apic_timer_irqs++;
685
686 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
689/*
690 * Local APIC timer interrupt. This is the most natural way for doing
691 * local interrupts, but local timer interrupts can be emulated by
692 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
693 *
694 * [ if a single-CPU system runs an SMP kernel then we call the local
695 * interrupt as well. Thus we cannot inline the local irq ... ]
696 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100697void smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
David Howells7d12e782006-10-05 14:55:46 +0100699 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 /*
702 * NOTE! We'd better ACK the irq immediately,
703 * because timer handling can be slow.
704 */
705 ack_APIC_irq();
706 /*
707 * update_process_times() expects us to have done irq_enter().
708 * Besides, if we don't timer interrupts ignore the global
709 * interrupt lock, which is the WrongThing (tm) to do.
710 */
711 irq_enter();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800712 local_apic_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 irq_exit();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800714
David Howells7d12e782006-10-05 14:55:46 +0100715 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +0100718int setup_profiling_timer(unsigned int multiplier)
719{
720 return -EINVAL;
721}
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800724 * Local APIC start and shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800726
727/**
728 * clear_local_APIC - shutdown the local APIC
729 *
730 * This is called, when a CPU is disabled and before rebooting, so the state of
731 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
732 * leftovers during boot.
733 */
734void clear_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Andi Kleend3432892008-01-30 13:33:17 +0100736 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100737 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Andi Kleend3432892008-01-30 13:33:17 +0100739 /* APIC hasn't been mapped yet */
740 if (!apic_phys)
741 return;
742
743 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800745 * Masking an LVT entry can trigger a local APIC error
746 * if the vector is zero. Mask LVTERR first to prevent this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800748 if (maxlvt >= 3) {
749 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100750 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800751 }
752 /*
753 * Careful: we have to set masks only first to deassert
754 * any level-triggered sources.
755 */
756 v = apic_read(APIC_LVTT);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100757 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800758 v = apic_read(APIC_LVT0);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100759 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800760 v = apic_read(APIC_LVT1);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100761 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800762 if (maxlvt >= 4) {
763 v = apic_read(APIC_LVTPC);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100764 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800767 /* lets not touch this if we didn't frob it */
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400768#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800769 if (maxlvt >= 5) {
770 v = apic_read(APIC_LVTTHMR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100771 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800772 }
773#endif
774 /*
775 * Clean APIC state for other OSs:
776 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100777 apic_write(APIC_LVTT, APIC_LVT_MASKED);
778 apic_write(APIC_LVT0, APIC_LVT_MASKED);
779 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800780 if (maxlvt >= 3)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100781 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800782 if (maxlvt >= 4)
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100783 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800784
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800785 /* Integrated APIC (!82489DX) ? */
786 if (lapic_is_integrated()) {
787 if (maxlvt > 3)
788 /* Clear ESR due to Pentium errata 3AP and 11AP */
789 apic_write(APIC_ESR, 0);
790 apic_read(APIC_ESR);
791 }
792}
793
794/**
795 * disable_local_APIC - clear and disable the local APIC
796 */
797void disable_local_APIC(void)
798{
799 unsigned long value;
800
801 clear_local_APIC();
802
803 /*
804 * Disable APIC (implies clearing of registers
805 * for 82489DX!).
806 */
807 value = apic_read(APIC_SPIV);
808 value &= ~APIC_SPIV_APIC_ENABLED;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100809 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800810
811 /*
812 * When LAPIC was disabled by the BIOS and enabled by the kernel,
813 * restore the disabled state.
814 */
815 if (enabled_via_apicbase) {
816 unsigned int l, h;
817
818 rdmsr(MSR_IA32_APICBASE, l, h);
819 l &= ~MSR_IA32_APICBASE_ENABLE;
820 wrmsr(MSR_IA32_APICBASE, l, h);
821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
824/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800825 * If Linux enabled the LAPIC against the BIOS default disable it down before
826 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
827 * not power-off. Additionally clear all LVT entries before disable_local_APIC
828 * for the case where Linux didn't enable the LAPIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800830void lapic_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800832 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800834 if (!cpu_has_apic)
835 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800837 local_irq_save(flags);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800838
839 if (enabled_via_apicbase)
840 disable_local_APIC();
Cyrill Gorcunov9ce122c2008-08-15 13:51:21 +0200841 else
842 clear_local_APIC();
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800843
844 local_irq_restore(flags);
845}
846
847/*
848 * This is to verify that we're looking at a real local APIC.
849 * Check these against your board if the CPUs aren't getting
850 * started for no apparent reason.
851 */
852int __init verify_local_APIC(void)
853{
854 unsigned int reg0, reg1;
855
856 /*
857 * The version register is read-only in a real APIC.
858 */
859 reg0 = apic_read(APIC_LVR);
860 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
861 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
862 reg1 = apic_read(APIC_LVR);
863 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
864
865 /*
866 * The two version reads above should print the same
867 * numbers. If the second one is different, then we
868 * poke at a non-APIC.
869 */
870 if (reg1 != reg0)
871 return 0;
872
873 /*
874 * Check if the version looks reasonably.
875 */
876 reg1 = GET_APIC_VERSION(reg0);
877 if (reg1 == 0x00 || reg1 == 0xff)
878 return 0;
879 reg1 = lapic_get_maxlvt();
880 if (reg1 < 0x02 || reg1 == 0xff)
881 return 0;
882
883 /*
884 * The ID register is read/write in a real APIC.
885 */
886 reg0 = apic_read(APIC_ID);
887 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
Cyrill Gorcunovc93baa12008-08-15 13:51:22 +0200888 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
889 reg1 = apic_read(APIC_ID);
890 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
891 apic_write(APIC_ID, reg0);
892 if (reg1 != (reg0 ^ APIC_ID_MASK))
893 return 0;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800894
895 /*
896 * The next two are just to see if we have sane values.
897 * They're only really relevant if we're in Virtual Wire
898 * compatibility mode, but most boxes are anymore.
899 */
900 reg0 = apic_read(APIC_LVT0);
901 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
902 reg1 = apic_read(APIC_LVT1);
903 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
904
905 return 1;
906}
907
908/**
909 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
910 */
911void __init sync_Arb_IDs(void)
912{
913 /*
914 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
915 * needed on AMD.
916 */
Ingo Molnarf44d9ef2007-11-26 20:42:20 +0100917 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800918 return;
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +0400919
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800920 /*
921 * Wait for idle.
922 */
923 apic_wait_icr_idle();
924
925 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +0400926 apic_write(APIC_ICR, APIC_DEST_ALLINC |
927 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800928}
929
930/*
931 * An initial setup of the virtual wire mode.
932 */
933void __init init_bsp_APIC(void)
934{
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400935 unsigned int value;
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800936
937 /*
938 * Don't do the setup now if we have a SMP BIOS as the
939 * through-I/O-APIC virtual wire mode might be active.
940 */
941 if (smp_found_config || !cpu_has_apic)
942 return;
943
944 /*
945 * Do not trust the local APIC being empty at bootup.
946 */
947 clear_local_APIC();
948
949 /*
950 * Enable APIC.
951 */
952 value = apic_read(APIC_SPIV);
953 value &= ~APIC_VECTOR_MASK;
954 value |= APIC_SPIV_APIC_ENABLED;
955
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400956#ifdef CONFIG_X86_32
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800957 /* This bit is reserved on P4/Xeon and should be cleared */
958 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
959 (boot_cpu_data.x86 == 15))
960 value &= ~APIC_SPIV_FOCUS_DISABLED;
961 else
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400962#endif
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800963 value |= APIC_SPIV_FOCUS_DISABLED;
964 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100965 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800966
967 /*
968 * Set up the virtual wire mode.
969 */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100970 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800971 value = APIC_DM_NMI;
972 if (!lapic_is_integrated()) /* 82489DX */
973 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100974 apic_write(APIC_LVT1, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800975}
976
Ingo Molnara4928cf2008-04-23 13:20:56 +0200977static void __cpuinit lapic_setup_esr(void)
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300978{
979 unsigned long oldvalue, value, maxlvt;
980 if (lapic_is_integrated() && !esr_disable) {
981 /* !82489DX */
982 maxlvt = lapic_get_maxlvt();
983 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
984 apic_write(APIC_ESR, 0);
985 oldvalue = apic_read(APIC_ESR);
986
987 /* enables sending errors */
988 value = ERROR_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100989 apic_write(APIC_LVTERR, value);
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -0300990 /*
991 * spec says clear errors after enabling vector.
992 */
993 if (maxlvt > 3)
994 apic_write(APIC_ESR, 0);
995 value = apic_read(APIC_ESR);
996 if (value != oldvalue)
997 apic_printk(APIC_VERBOSE, "ESR value before enabling "
998 "vector: 0x%08lx after: 0x%08lx\n",
999 oldvalue, value);
1000 } else {
1001 if (esr_disable)
1002 /*
1003 * Something untraceable is creating bad interrupts on
1004 * secondary quads ... for the moment, just leave the
1005 * ESR disabled - we can't do anything useful with the
1006 * errors anyway - mbligh
1007 */
1008 printk(KERN_INFO "Leaving ESR disabled.\n");
1009 else
1010 printk(KERN_INFO "No ESR for 82489DX.\n");
1011 }
1012}
1013
1014
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001015/**
1016 * setup_local_APIC - setup the local APIC
1017 */
Adrian Bunkd5337982007-12-19 23:20:18 +01001018void __cpuinit setup_local_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001019{
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001020 unsigned long value, integrated;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001021 int i, j;
1022
1023 /* Pound the ESR really hard over the head with a big hammer - mbligh */
1024 if (esr_disable) {
1025 apic_write(APIC_ESR, 0);
1026 apic_write(APIC_ESR, 0);
1027 apic_write(APIC_ESR, 0);
1028 apic_write(APIC_ESR, 0);
1029 }
1030
1031 integrated = lapic_is_integrated();
1032
1033 /*
1034 * Double-check whether this APIC is really registered.
1035 */
1036 if (!apic_id_registered())
Ingo Molnar22d5c672008-07-10 16:29:28 +02001037 WARN_ON_ONCE(1);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001038
1039 /*
1040 * Intel recommends to set DFR, LDR and TPR before enabling
1041 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1042 * document number 292116). So here it goes...
1043 */
1044 init_apic_ldr();
1045
1046 /*
1047 * Set Task Priority to 'accept all'. We never change this
1048 * later on.
1049 */
1050 value = apic_read(APIC_TASKPRI);
1051 value &= ~APIC_TPRI_MASK;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001052 apic_write(APIC_TASKPRI, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001053
1054 /*
1055 * After a crash, we no longer service the interrupts and a pending
1056 * interrupt from previous kernel might still have ISR bit set.
1057 *
1058 * Most probably by now CPU has serviced that pending interrupt and
1059 * it might not have done the ack_APIC_irq() because it thought,
1060 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1061 * does not clear the ISR bit and cpu thinks it has already serivced
1062 * the interrupt. Hence a vector might get locked. It was noticed
1063 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1064 */
1065 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1066 value = apic_read(APIC_ISR + i*0x10);
1067 for (j = 31; j >= 0; j--) {
1068 if (value & (1<<j))
1069 ack_APIC_irq();
1070 }
1071 }
1072
1073 /*
1074 * Now that we are all set up, enable the APIC
1075 */
1076 value = apic_read(APIC_SPIV);
1077 value &= ~APIC_VECTOR_MASK;
1078 /*
1079 * Enable APIC
1080 */
1081 value |= APIC_SPIV_APIC_ENABLED;
1082
1083 /*
1084 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1085 * certain networking cards. If high frequency interrupts are
1086 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1087 * entry is masked/unmasked at a high rate as well then sooner or
1088 * later IOAPIC line gets 'stuck', no more interrupts are received
1089 * from the device. If focus CPU is disabled then the hang goes
1090 * away, oh well :-(
1091 *
1092 * [ This bug can be reproduced easily with a level-triggered
1093 * PCI Ne2000 networking cards and PII/PIII processors, dual
1094 * BX chipset. ]
1095 */
1096 /*
1097 * Actually disabling the focus CPU check just makes the hang less
1098 * frequent as it makes the interrupt distributon model be more
1099 * like LRU than MRU (the short-term load is more even across CPUs).
1100 * See also the comment in end_level_ioapic_irq(). --macro
1101 */
1102
1103 /* Enable focus processor (bit==0) */
1104 value &= ~APIC_SPIV_FOCUS_DISABLED;
1105
1106 /*
1107 * Set spurious IRQ vector
1108 */
1109 value |= SPURIOUS_APIC_VECTOR;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001110 apic_write(APIC_SPIV, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001111
1112 /*
1113 * Set up LVT0, LVT1:
1114 *
1115 * set up through-local-APIC on the BP's LINT0. This is not
Simon Arlott27b46d72007-10-20 01:13:56 +02001116 * strictly necessary in pure symmetric-IO mode, but sometimes
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001117 * we delegate interrupts to the 8259A.
1118 */
1119 /*
1120 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1121 */
1122 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1123 if (!smp_processor_id() && (pic_mode || !value)) {
1124 value = APIC_DM_EXTINT;
1125 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
1126 smp_processor_id());
1127 } else {
1128 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1129 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1130 smp_processor_id());
1131 }
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001132 apic_write(APIC_LVT0, value);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001133
1134 /*
1135 * only the BP should see the LINT1 NMI signal, obviously.
1136 */
1137 if (!smp_processor_id())
1138 value = APIC_DM_NMI;
1139 else
1140 value = APIC_DM_NMI | APIC_LVT_MASKED;
1141 if (!integrated) /* 82489DX */
1142 value |= APIC_LVT_LEVEL_TRIGGER;
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001143 apic_write(APIC_LVT1, value);
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001144}
1145
1146void __cpuinit end_local_APIC_setup(void)
1147{
1148 unsigned long value;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001149
Glauber de Oliveira Costadf7939a2008-03-19 14:25:48 -03001150 lapic_setup_esr();
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001151 /* Disable the local apic timer */
1152 value = apic_read(APIC_LVTT);
1153 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01001154 apic_write(APIC_LVTT, value);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001155
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001156 setup_apic_nmi_watchdog(NULL);
1157 apic_pm_activate();
1158}
1159
1160/*
1161 * Detect and initialize APIC
1162 */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001163static int __init detect_init_APIC(void)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001164{
1165 u32 h, l, features;
1166
1167 /* Disabled by kernel option? */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001168 if (disable_apic)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001169 return -1;
1170
1171 switch (boot_cpu_data.x86_vendor) {
1172 case X86_VENDOR_AMD:
1173 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1174 (boot_cpu_data.x86 == 15))
1175 break;
1176 goto no_apic;
1177 case X86_VENDOR_INTEL:
1178 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1179 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1180 break;
1181 goto no_apic;
1182 default:
1183 goto no_apic;
1184 }
1185
1186 if (!cpu_has_apic) {
1187 /*
1188 * Over-ride BIOS and try to enable the local APIC only if
1189 * "lapic" specified.
1190 */
Yinghai Lu914bebf2008-06-29 00:06:37 -07001191 if (!force_enable_local_apic) {
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001192 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1193 "you can enable it with \"lapic\"\n");
1194 return -1;
1195 }
1196 /*
1197 * Some BIOSes disable the local APIC in the APIC_BASE
1198 * MSR. This can only be done in software for Intel P6 or later
1199 * and AMD K7 (Model > 1) or later.
1200 */
1201 rdmsr(MSR_IA32_APICBASE, l, h);
1202 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1203 printk(KERN_INFO
1204 "Local APIC disabled by BIOS -- reenabling.\n");
1205 l &= ~MSR_IA32_APICBASE_BASE;
1206 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1207 wrmsr(MSR_IA32_APICBASE, l, h);
1208 enabled_via_apicbase = 1;
1209 }
1210 }
1211 /*
1212 * The APIC feature bit should now be enabled
1213 * in `cpuid'
1214 */
1215 features = cpuid_edx(1);
1216 if (!(features & (1 << X86_FEATURE_APIC))) {
1217 printk(KERN_WARNING "Could not enable APIC!\n");
1218 return -1;
1219 }
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001220 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001221 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1222
1223 /* The BIOS may have set up the APIC at some other address */
1224 rdmsr(MSR_IA32_APICBASE, l, h);
1225 if (l & MSR_IA32_APICBASE_ENABLE)
1226 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1227
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001228 printk(KERN_INFO "Found and enabled local APIC!\n");
1229
1230 apic_pm_activate();
1231
1232 return 0;
1233
1234no_apic:
1235 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1236 return -1;
1237}
1238
1239/**
1240 * init_apic_mappings - initialize APIC mappings
1241 */
1242void __init init_apic_mappings(void)
1243{
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001244 /*
1245 * If no local APIC can be found then set up a fake all
1246 * zeroes page to simulate the local APIC and another
1247 * one for the IO-APIC.
1248 */
1249 if (!smp_found_config && detect_init_APIC()) {
1250 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1251 apic_phys = __pa(apic_phys);
1252 } else
1253 apic_phys = mp_lapic_addr;
1254
1255 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1256 printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1257 apic_phys);
1258
1259 /*
1260 * Fetch the APIC ID of the BSP in case we have a
1261 * default configuration (or the MP table is broken).
1262 */
1263 if (boot_cpu_physical_apicid == -1U)
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001264 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
1268/*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001269 * This initializes the IO-APIC and APIC hardware if this is
1270 * a UP kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 */
Alexey Starikovskiye81b2c62008-03-27 23:54:31 +03001272
1273int apic_version[MAX_APICS];
1274
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001275int __init APIC_init_uniprocessor(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001277 if (!smp_found_config && !cpu_has_apic)
Eric W. Biedermanf2b36db2005-10-30 14:59:41 -08001278 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001281 * Complain if the BIOS pretends there is one.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001283 if (!cpu_has_apic &&
1284 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001286 boot_cpu_physical_apicid);
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001287 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return -1;
1289 }
1290
1291 verify_local_APIC();
1292
1293 connect_bsp_APIC();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001294
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001295 /*
1296 * Hack: In case of kdump, after a crash, kernel might be booting
1297 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1298 * might be zero if read from MP tables. Get it from LAPIC.
1299 */
1300#ifdef CONFIG_CRASH_DUMP
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001301 boot_cpu_physical_apicid = read_apic_id();
Vivek Goyalbe0d03f2006-05-20 15:00:21 -07001302#endif
Jack Steinerb6df1b82008-06-19 21:51:05 -05001303 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 setup_local_APIC();
1306
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001307#ifdef CONFIG_X86_IO_APIC
1308 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1309#endif
1310 localise_nmi_watchdog();
Glauber de Oliveira Costaac60aae2008-03-19 14:25:49 -03001311 end_local_APIC_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001313 if (smp_found_config)
1314 if (!skip_ioapic_setup && nr_ioapics)
1315 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316#endif
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001317 setup_boot_clock();
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001318
1319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001321
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001322/*
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001323 * Local APIC interrupts
1324 */
1325
1326/*
1327 * This interrupt should _never_ happen with our APIC/SMP architecture
1328 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001329void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001330{
1331 unsigned long v;
1332
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001333 irq_enter();
1334 /*
1335 * Check if this really is a spurious interrupt and ACK it
1336 * if it is a vectored one. Just in case...
1337 * Spurious interrupts should not be ACKed.
1338 */
1339 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1340 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1341 ack_APIC_irq();
1342
1343 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1344 printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1345 "should never happen.\n", smp_processor_id());
Joe Korty38e760a2007-10-17 18:04:40 +02001346 __get_cpu_var(irq_stat).irq_spurious_count++;
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001347 irq_exit();
1348}
1349
1350/*
1351 * This interrupt should never happen with our APIC/SMP architecture
1352 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08001353void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001354{
1355 unsigned long v, v1;
1356
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001357 irq_enter();
1358 /* First tickle the hardware, only then report what went on. -- REW */
1359 v = apic_read(APIC_ESR);
1360 apic_write(APIC_ESR, 0);
1361 v1 = apic_read(APIC_ESR);
1362 ack_APIC_irq();
1363 atomic_inc(&irq_err_count);
1364
1365 /* Here is what the APIC error bits mean:
1366 0: Send CS error
1367 1: Receive CS error
1368 2: Send accept error
1369 3: Receive accept error
1370 4: Reserved
1371 5: Send illegal vector
1372 6: Received illegal vector
1373 7: Illegal register address
1374 */
Hiroshi Shimamotoff8a03a2008-01-30 13:32:36 +01001375 printk(KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001376 smp_processor_id(), v , v1);
1377 irq_exit();
1378}
1379
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001380/**
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 +03001465void __cpuinit generic_processor_info(int apicid, int version)
1466{
1467 int cpu;
1468 cpumask_t tmp_map;
1469 physid_mask_t phys_cpu;
1470
1471 /*
1472 * Validate version
1473 */
1474 if (version == 0x0) {
1475 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1476 "fixing up to 0x10. (tell your hw vendor)\n",
1477 version);
1478 version = 0x10;
1479 }
1480 apic_version[apicid] = version;
1481
1482 phys_cpu = apicid_to_cpu_present(apicid);
1483 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
1484
1485 if (num_processors >= NR_CPUS) {
1486 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1487 " Processor ignored.\n", NR_CPUS);
1488 return;
1489 }
1490
1491 if (num_processors >= maxcpus) {
1492 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1493 " Processor ignored.\n", maxcpus);
1494 return;
1495 }
1496
1497 num_processors++;
1498 cpus_complement(tmp_map, cpu_present_map);
1499 cpu = first_cpu(tmp_map);
1500
1501 if (apicid == boot_cpu_physical_apicid)
1502 /*
1503 * x86_bios_cpu_apicid is required to have processors listed
1504 * in same order as logical cpu numbers. Hence the first
1505 * entry is BSP, and so on.
1506 */
1507 cpu = 0;
1508
Yinghai Lue0da3362008-06-08 18:29:22 -07001509 if (apicid > max_physical_apicid)
1510 max_physical_apicid = apicid;
1511
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001512 /*
1513 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1514 * but we need to work other dependencies like SMP_SUSPEND etc
1515 * before this can be done without some confusion.
1516 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1517 * - Ashok Raj <ashok.raj@intel.com>
1518 */
Yinghai Lue0da3362008-06-08 18:29:22 -07001519 if (max_physical_apicid >= 8) {
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001520 switch (boot_cpu_data.x86_vendor) {
1521 case X86_VENDOR_INTEL:
1522 if (!APIC_XAPIC(version)) {
1523 def_to_bigsmp = 0;
1524 break;
1525 }
1526 /* If P4 and above fall through */
1527 case X86_VENDOR_AMD:
1528 def_to_bigsmp = 1;
1529 }
1530 }
1531#ifdef CONFIG_SMP
1532 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001533 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1534 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1535 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiy903dcb52008-03-27 23:55:22 +03001536
1537 cpu_to_apicid[cpu] = apicid;
1538 bios_cpu_apicid[cpu] = apicid;
1539 } else {
1540 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1541 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1542 }
1543#endif
1544 cpu_set(cpu, cpu_possible_map);
1545 cpu_set(cpu, cpu_present_map);
1546}
1547
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001548/*
1549 * Power management
1550 */
1551#ifdef CONFIG_PM
1552
1553static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001554 /*
1555 * 'active' is true if the local APIC was enabled by us and
1556 * not the BIOS; this signifies that we are also responsible
1557 * for disabling it before entering apm/acpi suspend
1558 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001559 int active;
1560 /* r/w apic fields */
1561 unsigned int apic_id;
1562 unsigned int apic_taskpri;
1563 unsigned int apic_ldr;
1564 unsigned int apic_dfr;
1565 unsigned int apic_spiv;
1566 unsigned int apic_lvtt;
1567 unsigned int apic_lvtpc;
1568 unsigned int apic_lvt0;
1569 unsigned int apic_lvt1;
1570 unsigned int apic_lvterr;
1571 unsigned int apic_tmict;
1572 unsigned int apic_tdcr;
1573 unsigned int apic_thmr;
1574} apic_pm_state;
1575
1576static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1577{
1578 unsigned long flags;
1579 int maxlvt;
1580
1581 if (!apic_pm_state.active)
1582 return 0;
1583
1584 maxlvt = lapic_get_maxlvt();
1585
1586 apic_pm_state.apic_id = apic_read(APIC_ID);
1587 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1588 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1589 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1590 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1591 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1592 if (maxlvt >= 4)
1593 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1594 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1595 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1596 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1597 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1598 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001599#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001600 if (maxlvt >= 5)
1601 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1602#endif
1603
1604 local_irq_save(flags);
1605 disable_local_APIC();
1606 local_irq_restore(flags);
1607 return 0;
1608}
1609
1610static int lapic_resume(struct sys_device *dev)
1611{
1612 unsigned int l, h;
1613 unsigned long flags;
1614 int maxlvt;
1615
1616 if (!apic_pm_state.active)
1617 return 0;
1618
1619 maxlvt = lapic_get_maxlvt();
1620
1621 local_irq_save(flags);
1622
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001623#ifdef CONFIG_X86_64
1624 if (x2apic)
1625 enable_x2apic();
1626 else
1627#endif
1628 /*
1629 * Make sure the APICBASE points to the right address
1630 *
1631 * FIXME! This will be wrong if we ever support suspend on
1632 * SMP! We'll need to do this as part of the CPU restore!
1633 */
1634 rdmsr(MSR_IA32_APICBASE, l, h);
1635 l &= ~MSR_IA32_APICBASE_BASE;
1636 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1637 wrmsr(MSR_IA32_APICBASE, l, h);
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001638
1639 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1640 apic_write(APIC_ID, apic_pm_state.apic_id);
1641 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1642 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1643 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1644 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1645 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1646 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001647#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001648 if (maxlvt >= 5)
1649 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1650#endif
1651 if (maxlvt >= 4)
1652 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1653 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1654 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1655 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1656 apic_write(APIC_ESR, 0);
1657 apic_read(APIC_ESR);
1658 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1659 apic_write(APIC_ESR, 0);
1660 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001661
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001662 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001663
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001664 return 0;
1665}
1666
1667/*
1668 * This device has no shutdown method - fully functioning local APICs
1669 * are needed on every CPU up until machine_halt/restart/poweroff.
1670 */
1671
1672static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001673 .name = "lapic",
Thomas Gleixnere05d7232007-02-16 01:27:58 -08001674 .resume = lapic_resume,
1675 .suspend = lapic_suspend,
1676};
1677
1678static struct sys_device device_lapic = {
1679 .id = 0,
1680 .cls = &lapic_sysclass,
1681};
1682
1683static void __devinit apic_pm_activate(void)
1684{
1685 apic_pm_state.active = 1;
1686}
1687
1688static int __init init_lapic_sysfs(void)
1689{
1690 int error;
1691
1692 if (!cpu_has_apic)
1693 return 0;
1694 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1695
1696 error = sysdev_class_register(&lapic_sysclass);
1697 if (!error)
1698 error = sysdev_register(&device_lapic);
1699 return error;
1700}
1701device_initcall(init_lapic_sysfs);
1702
1703#else /* CONFIG_PM */
1704
1705static void apic_pm_activate(void) { }
1706
1707#endif /* CONFIG_PM */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001708
1709/*
1710 * APIC command line parameters
1711 */
1712static int __init parse_lapic(char *arg)
1713{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001714 force_enable_local_apic = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001715 return 0;
1716}
1717early_param("lapic", parse_lapic);
1718
1719static int __init parse_nolapic(char *arg)
1720{
Yinghai Lu914bebf2008-06-29 00:06:37 -07001721 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001722 setup_clear_cpu_cap(X86_FEATURE_APIC);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001723 return 0;
1724}
1725early_param("nolapic", parse_nolapic);
1726
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001727static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001728{
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001729 disable_apic_timer = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001730 return 0;
1731}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001732early_param("noapictimer", parse_disable_apic_timer);
1733
1734static int __init parse_nolapic_timer(char *arg)
1735{
1736 disable_apic_timer = 1;
1737 return 0;
1738}
1739early_param("nolapic_timer", parse_nolapic_timer);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001740
1741static int __init parse_lapic_timer_c2_ok(char *arg)
1742{
1743 local_apic_timer_c2_ok = 1;
1744 return 0;
1745}
1746early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1747
Rene Herman48d97cb2008-08-11 19:20:17 +02001748static int __init apic_set_verbosity(char *arg)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001749{
Rene Herman48d97cb2008-08-11 19:20:17 +02001750 if (!arg)
1751 return -EINVAL;
1752
1753 if (strcmp(arg, "debug") == 0)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001754 apic_verbosity = APIC_DEBUG;
Rene Herman48d97cb2008-08-11 19:20:17 +02001755 else if (strcmp(arg, "verbose") == 0)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001756 apic_verbosity = APIC_VERBOSE;
Rene Herman48d97cb2008-08-11 19:20:17 +02001757
Rene Hermanfb6bef82008-08-11 17:45:53 +02001758 return 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001759}
Rene Hermanfb6bef82008-08-11 17:45:53 +02001760early_param("apic", apic_set_verbosity);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001761
Cyrill Gorcunov746f2eb2008-07-01 21:43:52 +04001762static int __init lapic_insert_resource(void)
1763{
1764 if (!apic_phys)
1765 return -1;
1766
1767 /* Put local APIC into the resource map. */
1768 lapic_resource.start = apic_phys;
1769 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1770 insert_resource(&iomem_resource, &lapic_resource);
1771
1772 return 0;
1773}
1774
1775/*
1776 * need call insert after e820_reserve_resources()
1777 * that is using request_resource
1778 */
1779late_initcall(lapic_insert_resource);