blob: ebe417b4d7fc9b9fcec1e11300925fa8a3ee4d78 [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>
Aaron Durbin39928722006-12-07 02:14:01 +010026#include <linux/ioport.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070027#include <linux/cpu.h>
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020028#include <linux/clockchips.h>
Thomas Gleixner70a20022008-01-30 13:30:18 +010029#include <linux/acpi_pmtmr.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010030#include <linux/module.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070031#include <linux/dmi.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070032#include <linux/dmar.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/atomic.h>
35#include <asm/smp.h>
36#include <asm/mtrr.h>
37#include <asm/mpspec.h>
Yinghai Luefa25592008-08-19 20:50:36 -070038#include <asm/desc.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070039#include <asm/arch_hooks.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010040#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/pgalloc.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070042#include <asm/i8253.h>
Andi Kleen75152112005-05-16 21:53:34 -070043#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010044#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010045#include <asm/proto.h>
46#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020047#include <asm/apic.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070048#include <asm/i8259.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Glauber Costadd46e3c2008-03-25 18:10:46 -030050#include <mach_apic.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070051#include <mach_apicdef.h>
52#include <mach_ipi.h>
Glauber Costa5af55732008-03-25 13:28:56 -030053
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070054/*
55 * Sanity check
56 */
57#if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
58# error SPURIOUS_APIC_VECTOR definition error
59#endif
60
Yinghai Lub3c51172008-08-24 02:01:46 -070061#ifdef CONFIG_X86_32
62/*
63 * Knob to control our willingness to enable the local APIC.
64 *
65 * +1=force-enable
66 */
67static int force_enable_local_apic;
68/*
69 * APIC command line parameters
70 */
71static int __init parse_lapic(char *arg)
72{
73 force_enable_local_apic = 1;
74 return 0;
75}
76early_param("lapic", parse_lapic);
Yinghai Luf28c0ae2008-08-24 02:01:49 -070077/* Local APIC was disabled by the BIOS and enabled by the kernel */
78static int enabled_via_apicbase;
79
Yinghai Lub3c51172008-08-24 02:01:46 -070080#endif
81
82#ifdef CONFIG_X86_64
Chris Wrightbc1d99c2007-10-12 23:04:23 +020083static int apic_calibrate_pmtmr __initdata;
Yinghai Lub3c51172008-08-24 02:01:46 -070084static __init int setup_apicpmtimer(char *s)
85{
86 apic_calibrate_pmtmr = 1;
87 notsc_setup(NULL);
88 return 0;
89}
90__setup("apicpmtimer", setup_apicpmtimer);
91#endif
92
Yinghai Lu49899ea2008-08-24 02:01:47 -070093#ifdef CONFIG_X86_64
94#define HAVE_X2APIC
95#endif
96
97#ifdef HAVE_X2APIC
Suresh Siddha89027d32008-07-10 11:16:56 -070098int x2apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -070099/* x2apic enabled before OS handover */
100int x2apic_preenabled;
Yinghai Lu49899ea2008-08-24 02:01:47 -0700101int disable_x2apic;
102static __init int setup_nox2apic(char *str)
103{
104 disable_x2apic = 1;
105 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
106 return 0;
107}
108early_param("nox2apic", setup_nox2apic);
109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Yinghai Lub3c51172008-08-24 02:01:46 -0700111unsigned long mp_lapic_addr;
112int disable_apic;
113/* Disable local APIC timer from the kernel commandline or via dmi quirk */
114static int disable_apic_timer __cpuinitdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100115/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -0700116int local_apic_timer_c2_ok;
117EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
118
Yinghai Luefa25592008-08-19 20:50:36 -0700119int first_system_vector = 0xfe;
120
121char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
122
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100123/*
124 * Debug level, exported for io_apic.c
125 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100126unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100127
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700128int pic_mode;
129
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400130/* Have we found an MP table */
131int smp_found_config;
132
Aaron Durbin39928722006-12-07 02:14:01 +0100133static struct resource lapic_resource = {
134 .name = "Local APIC",
135 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
136};
137
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200138static unsigned int calibration_result;
139
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200140static int lapic_next_event(unsigned long delta,
141 struct clock_event_device *evt);
142static void lapic_timer_setup(enum clock_event_mode mode,
143 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200144static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100145static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200146
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400147/*
148 * The local apic timer can be used for any function which is CPU local.
149 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200150static struct clock_event_device lapic_clockevent = {
151 .name = "lapic",
152 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
153 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
154 .shift = 32,
155 .set_mode = lapic_timer_setup,
156 .set_next_event = lapic_next_event,
157 .broadcast = lapic_timer_broadcast,
158 .rating = 100,
159 .irq = -1,
160};
161static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
162
Andi Kleend3432892008-01-30 13:33:17 +0100163static unsigned long apic_phys;
164
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100165/*
166 * Get the LAPIC version
167 */
168static inline int lapic_get_version(void)
169{
170 return GET_APIC_VERSION(apic_read(APIC_LVR));
171}
172
173/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400174 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100175 */
176static inline int lapic_is_integrated(void)
177{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400178#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100179 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400180#else
181 return APIC_INTEGRATED(lapic_get_version());
182#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100183}
184
185/*
186 * Check, whether this is a modern or a first generation APIC
187 */
188static int modern_apic(void)
189{
190 /* AMD systems use old APIC versions, so check the CPU */
191 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
192 boot_cpu_data.x86 >= 0xf)
193 return 1;
194 return lapic_get_version() >= 0x14;
195}
196
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400197/*
198 * Paravirt kernels also might be using these below ops. So we still
199 * use generic apic_read()/apic_write(), which might be pointing to different
200 * ops in PARAVIRT case.
201 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700202void xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100203{
204 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
205 cpu_relax();
206}
207
Suresh Siddha1b374e42008-07-10 11:16:49 -0700208u32 safe_xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100209{
210 u32 send_status;
211 int timeout;
212
213 timeout = 0;
214 do {
215 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
216 if (!send_status)
217 break;
218 udelay(100);
219 } while (timeout++ < 1000);
220
221 return send_status;
222}
223
Suresh Siddha1b374e42008-07-10 11:16:49 -0700224void xapic_icr_write(u32 low, u32 id)
225{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200226 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700227 apic_write(APIC_ICR, low);
228}
229
230u64 xapic_icr_read(void)
231{
232 u32 icr1, icr2;
233
234 icr2 = apic_read(APIC_ICR2);
235 icr1 = apic_read(APIC_ICR);
236
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400237 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700238}
239
240static struct apic_ops xapic_ops = {
241 .read = native_apic_mem_read,
242 .write = native_apic_mem_write,
Suresh Siddha1b374e42008-07-10 11:16:49 -0700243 .icr_read = xapic_icr_read,
244 .icr_write = xapic_icr_write,
245 .wait_icr_idle = xapic_wait_icr_idle,
246 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
247};
248
249struct apic_ops __read_mostly *apic_ops = &xapic_ops;
Suresh Siddha1b374e42008-07-10 11:16:49 -0700250EXPORT_SYMBOL_GPL(apic_ops);
251
Yinghai Lu49899ea2008-08-24 02:01:47 -0700252#ifdef HAVE_X2APIC
Suresh Siddha13c88fb2008-07-10 11:16:52 -0700253static void x2apic_wait_icr_idle(void)
254{
255 /* no need to wait for icr idle in x2apic */
256 return;
257}
258
259static u32 safe_x2apic_wait_icr_idle(void)
260{
261 /* no need to wait for icr idle in x2apic */
262 return 0;
263}
264
265void x2apic_icr_write(u32 low, u32 id)
266{
267 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
268}
269
270u64 x2apic_icr_read(void)
271{
272 unsigned long val;
273
274 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
275 return val;
276}
277
278static struct apic_ops x2apic_ops = {
279 .read = native_apic_msr_read,
280 .write = native_apic_msr_write,
Suresh Siddha13c88fb2008-07-10 11:16:52 -0700281 .icr_read = x2apic_icr_read,
282 .icr_write = x2apic_icr_write,
283 .wait_icr_idle = x2apic_wait_icr_idle,
284 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
285};
Yinghai Lu49899ea2008-08-24 02:01:47 -0700286#endif
Suresh Siddha13c88fb2008-07-10 11:16:52 -0700287
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100288/**
289 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
290 */
Jan Beuliche9427102008-01-30 13:31:24 +0100291void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100292{
293 unsigned int v;
294
295 /* unmask and set to NMI */
296 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200297
298 /* Level triggered for 82489DX (32bit mode) */
299 if (!lapic_is_integrated())
300 v |= APIC_LVT_LEVEL_TRIGGER;
301
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100302 apic_write(APIC_LVT0, v);
303}
304
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700305#ifdef CONFIG_X86_32
306/**
307 * get_physical_broadcast - Get number of physical broadcast IDs
308 */
309int get_physical_broadcast(void)
310{
311 return modern_apic() ? 0xff : 0xf;
312}
313#endif
314
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100315/**
316 * lapic_get_maxlvt - get the maximum number of local vector table entries
317 */
318int lapic_get_maxlvt(void)
319{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200320 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100321
322 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200323 /*
324 * - we always have APIC integrated on 64bit mode
325 * - 82489DXs do not report # of LVT entries
326 */
327 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100328}
329
330/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400331 * Local APIC timer
332 */
333
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400334/* Clock divisor */
335#ifdef CONFG_X86_64
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200336#define APIC_DIVISOR 1
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400337#else
338#define APIC_DIVISOR 16
339#endif
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200340
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100341/*
342 * This function sets up the local APIC timer, with a timeout of
343 * 'clocks' APIC bus clock. During calibration we actually call
344 * this function twice on the boot CPU, once with a bogus timeout
345 * value, second time for real. The other (noncalibrating) CPUs
346 * call this function only once, with the real, calibrated value.
347 *
348 * We do reads before writes even if unnecessary, to get around the
349 * P5 APIC double write bug.
350 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100351static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
352{
353 unsigned int lvtt_value, tmp_value;
354
355 lvtt_value = LOCAL_TIMER_VECTOR;
356 if (!oneshot)
357 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200358 if (!lapic_is_integrated())
359 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
360
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100361 if (!irqen)
362 lvtt_value |= APIC_LVT_MASKED;
363
364 apic_write(APIC_LVTT, lvtt_value);
365
366 /*
367 * Divide PICLK by 16
368 */
369 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400370 apic_write(APIC_TDCR,
371 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
372 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100373
374 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200375 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100376}
377
378/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100379 * Setup extended LVT, AMD specific (K8, family 10h)
380 *
381 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
382 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200383 *
384 * If mask=1, the LVT entry does not generate interrupts while mask=0
385 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100386 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100387
388#define APIC_EILVT_LVTOFF_MCE 0
389#define APIC_EILVT_LVTOFF_IBS 1
390
391static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100392{
Robert Richter7b83dae2008-01-30 13:30:40 +0100393 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100394 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
395
396 apic_write(reg, v);
397}
398
Robert Richter7b83dae2008-01-30 13:30:40 +0100399u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
400{
401 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
402 return APIC_EILVT_LVTOFF_MCE;
403}
404
405u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
406{
407 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
408 return APIC_EILVT_LVTOFF_IBS;
409}
Robert Richter6aa360e2008-07-23 15:28:14 +0200410EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100411
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100412/*
413 * Program the next event, relative to now
414 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200415static int lapic_next_event(unsigned long delta,
416 struct clock_event_device *evt)
417{
418 apic_write(APIC_TMICT, delta);
419 return 0;
420}
421
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100422/*
423 * Setup the lapic timer in periodic or oneshot mode
424 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200425static void lapic_timer_setup(enum clock_event_mode mode,
426 struct clock_event_device *evt)
427{
428 unsigned long flags;
429 unsigned int v;
430
431 /* Lapic used as dummy for broadcast ? */
432 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
433 return;
434
435 local_irq_save(flags);
436
437 switch (mode) {
438 case CLOCK_EVT_MODE_PERIODIC:
439 case CLOCK_EVT_MODE_ONESHOT:
440 __setup_APIC_LVTT(calibration_result,
441 mode != CLOCK_EVT_MODE_PERIODIC, 1);
442 break;
443 case CLOCK_EVT_MODE_UNUSED:
444 case CLOCK_EVT_MODE_SHUTDOWN:
445 v = apic_read(APIC_LVTT);
446 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
447 apic_write(APIC_LVTT, v);
448 break;
449 case CLOCK_EVT_MODE_RESUME:
450 /* Nothing to do here */
451 break;
452 }
453
454 local_irq_restore(flags);
455}
456
457/*
458 * Local APIC timer broadcast function
459 */
460static void lapic_timer_broadcast(cpumask_t mask)
461{
462#ifdef CONFIG_SMP
463 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
464#endif
465}
466
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100467/*
468 * Setup the local APIC timer for this CPU. Copy the initilized values
469 * of the boot CPU and register the clock event in the framework.
470 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700471static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200472{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100473 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
474
475 memcpy(levt, &lapic_clockevent, sizeof(*levt));
476 levt->cpumask = cpumask_of_cpu(smp_processor_id());
477
478 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200479}
480
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100481/*
482 * In this function we calibrate APIC bus clocks to the external
483 * timer. Unfortunately we cannot use jiffies and the timer irq
484 * to calibrate, since some later bootup code depends on getting
485 * the first irq? Ugh.
486 *
487 * We want to do the calibration only once since we
488 * want to have local timer irqs syncron. CPUs connected
489 * by the same APIC bus have the very same bus frequency.
490 * And we want to have irqs off anyways, no accidental
491 * APIC irq that way.
492 */
493
494#define TICK_COUNT 100000000
495
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400496static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200497{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100498 unsigned apic, apic_start;
499 unsigned long tsc, tsc_start;
500 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200501
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100502 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200503
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100504 /*
505 * Put whatever arbitrary (but long enough) timeout
506 * value into the APIC clock, we just want to get the
507 * counter running for calibration.
508 *
509 * No interrupt enable !
510 */
511 __setup_APIC_LVTT(250000000, 0, 0);
512
513 apic_start = apic_read(APIC_TMCCT);
514#ifdef CONFIG_X86_PM_TIMER
515 if (apic_calibrate_pmtmr && pmtmr_ioport) {
516 pmtimer_wait(5000); /* 5ms wait */
517 apic = apic_read(APIC_TMCCT);
518 result = (apic_start - apic) * 1000L / 5;
519 } else
520#endif
521 {
522 rdtscll(tsc_start);
523
524 do {
525 apic = apic_read(APIC_TMCCT);
526 rdtscll(tsc);
527 } while ((tsc - tsc_start) < TICK_COUNT &&
528 (apic_start - apic) < TICK_COUNT);
529
530 result = (apic_start - apic) * 1000L * tsc_khz /
531 (tsc - tsc_start);
532 }
533
534 local_irq_enable();
535
536 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
537
538 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
539 result / 1000 / 1000, result / 1000 % 1000);
540
541 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900542 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
543 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100544 lapic_clockevent.max_delta_ns =
545 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
546 lapic_clockevent.min_delta_ns =
547 clockevent_delta2ns(0xF, &lapic_clockevent);
548
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200549 calibration_result = (result * APIC_DIVISOR) / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400550
551 /*
552 * Do a sanity check on the APIC calibration result
553 */
554 if (calibration_result < (1000000 / HZ)) {
555 printk(KERN_WARNING
556 "APIC frequency too slow, disabling apic timer\n");
557 return -1;
558 }
559
560 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200561}
562
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100563/*
564 * Setup the boot APIC
565 *
566 * Calibrate and verify the result.
567 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100568void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100570 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400571 * The local apic timer can be disabled via the kernel
572 * commandline or from the CPU detection code. Register the lapic
573 * timer as a dummy clock event source on SMP systems, so the
574 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100575 */
576 if (disable_apic_timer) {
577 printk(KERN_INFO "Disabling APIC timer\n");
578 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100579 if (num_possible_cpus() > 1) {
580 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100581 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100582 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100583 return;
584 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200585
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400586 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
587 "calibrating APIC timer ...\n");
588
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400589 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100590 /* No broadcast on UP ! */
591 if (num_possible_cpus() > 1)
592 setup_APIC_timer();
593 return;
594 }
595
596 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100597 * If nmi_watchdog is set to IO_APIC, we need the
598 * PIT/HPET going. Otherwise register lapic as a dummy
599 * device.
600 */
601 if (nmi_watchdog != NMI_IO_APIC)
602 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
603 else
604 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200605 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100606
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400607 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100608 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100611void __cpuinit setup_secondary_APIC_clock(void)
612{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100613 setup_APIC_timer();
614}
615
616/*
617 * The guts of the apic timer interrupt
618 */
619static void local_apic_timer_interrupt(void)
620{
621 int cpu = smp_processor_id();
622 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
623
624 /*
625 * Normally we should not be here till LAPIC has been initialized but
626 * in some cases like kdump, its possible that there is a pending LAPIC
627 * timer interrupt from previous kernel's context and is delivered in
628 * new kernel the moment interrupts are enabled.
629 *
630 * Interrupts are enabled early and LAPIC is setup much later, hence
631 * its possible that when we get here evt->event_handler is NULL.
632 * Check for event_handler being NULL and discard the interrupt as
633 * spurious.
634 */
635 if (!evt->event_handler) {
636 printk(KERN_WARNING
637 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
638 /* Switch it off */
639 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
640 return;
641 }
642
643 /*
644 * the NMI deadlock-detector uses this.
645 */
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400646#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100647 add_pda(apic_timer_irqs, 1);
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400648#else
649 per_cpu(irq_stat, cpu).apic_timer_irqs++;
650#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100651
652 evt->event_handler(evt);
653}
654
655/*
656 * Local APIC timer interrupt. This is the most natural way for doing
657 * local interrupts, but local timer interrupts can be emulated by
658 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
659 *
660 * [ if a single-CPU system runs an SMP kernel then we call the local
661 * interrupt as well. Thus we cannot inline the local irq ... ]
662 */
663void smp_apic_timer_interrupt(struct pt_regs *regs)
664{
665 struct pt_regs *old_regs = set_irq_regs(regs);
666
667 /*
668 * NOTE! We'd better ACK the irq immediately,
669 * because timer handling can be slow.
670 */
671 ack_APIC_irq();
672 /*
673 * update_process_times() expects us to have done irq_enter().
674 * Besides, if we don't timer interrupts ignore the global
675 * interrupt lock, which is the WrongThing (tm) to do.
676 */
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700677#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100678 exit_idle();
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700679#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100680 irq_enter();
681 local_apic_timer_interrupt();
682 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400683
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100684 set_irq_regs(old_regs);
685}
686
687int setup_profiling_timer(unsigned int multiplier)
688{
689 return -EINVAL;
690}
691
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100692/*
693 * Local APIC start and shutdown
694 */
695
696/**
697 * clear_local_APIC - shutdown the local APIC
698 *
699 * This is called, when a CPU is disabled and before rebooting, so the state of
700 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
701 * leftovers during boot.
702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703void clear_local_APIC(void)
704{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400705 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100706 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Andi Kleend3432892008-01-30 13:33:17 +0100708 /* APIC hasn't been mapped yet */
709 if (!apic_phys)
710 return;
711
712 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200714 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 * if the vector is zero. Mask LVTERR first to prevent this.
716 */
717 if (maxlvt >= 3) {
718 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100719 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721 /*
722 * Careful: we have to set masks only first to deassert
723 * any level-triggered sources.
724 */
725 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100726 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100728 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100730 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (maxlvt >= 4) {
732 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100733 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400736 /* lets not touch this if we didn't frob it */
737#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
738 if (maxlvt >= 5) {
739 v = apic_read(APIC_LVTTHMR);
740 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
741 }
742#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /*
744 * Clean APIC state for other OSs:
745 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100746 apic_write(APIC_LVTT, APIC_LVT_MASKED);
747 apic_write(APIC_LVT0, APIC_LVT_MASKED);
748 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100750 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100752 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400753
754 /* Integrated APIC (!82489DX) ? */
755 if (lapic_is_integrated()) {
756 if (maxlvt > 3)
757 /* Clear ESR due to Pentium errata 3AP and 11AP */
758 apic_write(APIC_ESR, 0);
759 apic_read(APIC_ESR);
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100763/**
764 * disable_local_APIC - clear and disable the local APIC
765 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766void disable_local_APIC(void)
767{
768 unsigned int value;
769
770 clear_local_APIC();
771
772 /*
773 * Disable APIC (implies clearing of registers
774 * for 82489DX!).
775 */
776 value = apic_read(APIC_SPIV);
777 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100778 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400779
780#ifdef CONFIG_X86_32
781 /*
782 * When LAPIC was disabled by the BIOS and enabled by the kernel,
783 * restore the disabled state.
784 */
785 if (enabled_via_apicbase) {
786 unsigned int l, h;
787
788 rdmsr(MSR_IA32_APICBASE, l, h);
789 l &= ~MSR_IA32_APICBASE_ENABLE;
790 wrmsr(MSR_IA32_APICBASE, l, h);
791 }
792#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400795/*
796 * If Linux enabled the LAPIC against the BIOS default disable it down before
797 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
798 * not power-off. Additionally clear all LVT entries before disable_local_APIC
799 * for the case where Linux didn't enable the LAPIC.
800 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700801void lapic_shutdown(void)
802{
803 unsigned long flags;
804
805 if (!cpu_has_apic)
806 return;
807
808 local_irq_save(flags);
809
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400810#ifdef CONFIG_X86_32
811 if (!enabled_via_apicbase)
812 clear_local_APIC();
813 else
814#endif
815 disable_local_APIC();
816
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700817
818 local_irq_restore(flags);
819}
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/*
822 * This is to verify that we're looking at a real local APIC.
823 * Check these against your board if the CPUs aren't getting
824 * started for no apparent reason.
825 */
826int __init verify_local_APIC(void)
827{
828 unsigned int reg0, reg1;
829
830 /*
831 * The version register is read-only in a real APIC.
832 */
833 reg0 = apic_read(APIC_LVR);
834 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
835 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
836 reg1 = apic_read(APIC_LVR);
837 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
838
839 /*
840 * The two version reads above should print the same
841 * numbers. If the second one is different, then we
842 * poke at a non-APIC.
843 */
844 if (reg1 != reg0)
845 return 0;
846
847 /*
848 * Check if the version looks reasonably.
849 */
850 reg1 = GET_APIC_VERSION(reg0);
851 if (reg1 == 0x00 || reg1 == 0xff)
852 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100853 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (reg1 < 0x02 || reg1 == 0xff)
855 return 0;
856
857 /*
858 * The ID register is read/write in a real APIC.
859 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700860 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
862 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700863 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
865 apic_write(APIC_ID, reg0);
866 if (reg1 != (reg0 ^ APIC_ID_MASK))
867 return 0;
868
869 /*
870 * The next two are just to see if we have sane values.
871 * They're only really relevant if we're in Virtual Wire
872 * compatibility mode, but most boxes are anymore.
873 */
874 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100875 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 reg1 = apic_read(APIC_LVT1);
877 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
878
879 return 1;
880}
881
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100882/**
883 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
884 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885void __init sync_Arb_IDs(void)
886{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +0200887 /*
888 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
889 * needed on AMD.
890 */
891 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return;
893
894 /*
895 * Wait for idle.
896 */
897 apic_wait_icr_idle();
898
899 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +0400900 apic_write(APIC_ICR, APIC_DEST_ALLINC |
901 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
905 * An initial setup of the virtual wire mode.
906 */
907void __init init_bsp_APIC(void)
908{
Andi Kleen11a8e772006-01-11 22:46:51 +0100909 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 /*
912 * Don't do the setup now if we have a SMP BIOS as the
913 * through-I/O-APIC virtual wire mode might be active.
914 */
915 if (smp_found_config || !cpu_has_apic)
916 return;
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 /*
919 * Do not trust the local APIC being empty at bootup.
920 */
921 clear_local_APIC();
922
923 /*
924 * Enable APIC.
925 */
926 value = apic_read(APIC_SPIV);
927 value &= ~APIC_VECTOR_MASK;
928 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400929
930#ifdef CONFIG_X86_32
931 /* This bit is reserved on P4/Xeon and should be cleared */
932 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
933 (boot_cpu_data.x86 == 15))
934 value &= ~APIC_SPIV_FOCUS_DISABLED;
935 else
936#endif
937 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100939 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 /*
942 * Set up the virtual wire mode.
943 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100944 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400946 if (!lapic_is_integrated()) /* 82489DX */
947 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +0100948 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +0400951static void __cpuinit lapic_setup_esr(void)
952{
953 unsigned long oldvalue, value, maxlvt;
954 if (lapic_is_integrated() && !esr_disable) {
955 if (esr_disable) {
956 /*
957 * Something untraceable is creating bad interrupts on
958 * secondary quads ... for the moment, just leave the
959 * ESR disabled - we can't do anything useful with the
960 * errors anyway - mbligh
961 */
962 printk(KERN_INFO "Leaving ESR disabled.\n");
963 return;
964 }
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;
973 apic_write(APIC_LVTERR, value);
974 /*
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 printk(KERN_INFO "No ESR for 82489DX.\n");
986 }
987}
988
989
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100990/**
991 * setup_local_APIC - setup the local APIC
992 */
993void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Andi Kleen739f33b2008-01-30 13:30:40 +0100995 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100996 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700998#ifdef CONFIG_X86_32
999 /* Pound the ESR really hard over the head with a big hammer - mbligh */
1000 if (esr_disable) {
1001 apic_write(APIC_ESR, 0);
1002 apic_write(APIC_ESR, 0);
1003 apic_write(APIC_ESR, 0);
1004 apic_write(APIC_ESR, 0);
1005 }
1006#endif
1007
Jack Steinerac23d4e2008-03-28 14:12:16 -05001008 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /*
1011 * Double-check whether this APIC is really registered.
1012 * This is meaningless in clustered apic mode, so we skip it.
1013 */
1014 if (!apic_id_registered())
1015 BUG();
1016
1017 /*
1018 * Intel recommends to set DFR, LDR and TPR before enabling
1019 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1020 * document number 292116). So here it goes...
1021 */
1022 init_apic_ldr();
1023
1024 /*
1025 * Set Task Priority to 'accept all'. We never change this
1026 * later on.
1027 */
1028 value = apic_read(APIC_TASKPRI);
1029 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001030 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001033 * After a crash, we no longer service the interrupts and a pending
1034 * interrupt from previous kernel might still have ISR bit set.
1035 *
1036 * Most probably by now CPU has serviced that pending interrupt and
1037 * it might not have done the ack_APIC_irq() because it thought,
1038 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1039 * does not clear the ISR bit and cpu thinks it has already serivced
1040 * the interrupt. Hence a vector might get locked. It was noticed
1041 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1042 */
1043 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1044 value = apic_read(APIC_ISR + i*0x10);
1045 for (j = 31; j >= 0; j--) {
1046 if (value & (1<<j))
1047 ack_APIC_irq();
1048 }
1049 }
1050
1051 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 * Now that we are all set up, enable the APIC
1053 */
1054 value = apic_read(APIC_SPIV);
1055 value &= ~APIC_VECTOR_MASK;
1056 /*
1057 * Enable APIC
1058 */
1059 value |= APIC_SPIV_APIC_ENABLED;
1060
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001061#ifdef CONFIG_X86_32
1062 /*
1063 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1064 * certain networking cards. If high frequency interrupts are
1065 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1066 * entry is masked/unmasked at a high rate as well then sooner or
1067 * later IOAPIC line gets 'stuck', no more interrupts are received
1068 * from the device. If focus CPU is disabled then the hang goes
1069 * away, oh well :-(
1070 *
1071 * [ This bug can be reproduced easily with a level-triggered
1072 * PCI Ne2000 networking cards and PII/PIII processors, dual
1073 * BX chipset. ]
1074 */
1075 /*
1076 * Actually disabling the focus CPU check just makes the hang less
1077 * frequent as it makes the interrupt distributon model be more
1078 * like LRU than MRU (the short-term load is more even across CPUs).
1079 * See also the comment in end_level_ioapic_irq(). --macro
1080 */
1081
1082 /*
1083 * - enable focus processor (bit==0)
1084 * - 64bit mode always use processor focus
1085 * so no need to set it
1086 */
1087 value &= ~APIC_SPIV_FOCUS_DISABLED;
1088#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /*
1091 * Set spurious IRQ vector
1092 */
1093 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001094 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /*
1097 * Set up LVT0, LVT1:
1098 *
1099 * set up through-local-APIC on the BP's LINT0. This is not
1100 * strictly necessary in pure symmetric-IO mode, but sometimes
1101 * 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;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001107 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001109 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001110 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 } else {
1112 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001113 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001114 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001116 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
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;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001125 if (!lapic_is_integrated()) /* 82489DX */
1126 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001127 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001128
Jack Steinerac23d4e2008-03-28 14:12:16 -05001129 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +01001130}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Andi Kleen739f33b2008-01-30 13:30:40 +01001132void __cpuinit end_local_APIC_setup(void)
1133{
1134 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001135
1136#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001137 {
1138 unsigned int value;
1139 /* Disable the local apic timer */
1140 value = apic_read(APIC_LVTT);
1141 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1142 apic_write(APIC_LVTT, value);
1143 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001144#endif
1145
Don Zickusf2802e72006-09-26 10:52:26 +02001146 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 apic_pm_activate();
1148}
1149
Yinghai Lu49899ea2008-08-24 02:01:47 -07001150#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001151void check_x2apic(void)
1152{
1153 int msr, msr2;
1154
1155 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1156
1157 if (msr & X2APIC_ENABLE) {
1158 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
1159 x2apic_preenabled = x2apic = 1;
1160 apic_ops = &x2apic_ops;
1161 }
1162}
1163
1164void enable_x2apic(void)
1165{
1166 int msr, msr2;
1167
1168 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1169 if (!(msr & X2APIC_ENABLE)) {
1170 printk("Enabling x2apic\n");
1171 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1172 }
1173}
1174
1175void enable_IR_x2apic(void)
1176{
1177#ifdef CONFIG_INTR_REMAP
1178 int ret;
1179 unsigned long flags;
1180
1181 if (!cpu_has_x2apic)
1182 return;
1183
1184 if (!x2apic_preenabled && disable_x2apic) {
1185 printk(KERN_INFO
1186 "Skipped enabling x2apic and Interrupt-remapping "
1187 "because of nox2apic\n");
1188 return;
1189 }
1190
1191 if (x2apic_preenabled && disable_x2apic)
1192 panic("Bios already enabled x2apic, can't enforce nox2apic");
1193
1194 if (!x2apic_preenabled && skip_ioapic_setup) {
1195 printk(KERN_INFO
1196 "Skipped enabling x2apic and Interrupt-remapping "
1197 "because of skipping io-apic setup\n");
1198 return;
1199 }
1200
1201 ret = dmar_table_init();
1202 if (ret) {
1203 printk(KERN_INFO
1204 "dmar_table_init() failed with %d:\n", ret);
1205
1206 if (x2apic_preenabled)
1207 panic("x2apic enabled by bios. But IR enabling failed");
1208 else
1209 printk(KERN_INFO
1210 "Not enabling x2apic,Intr-remapping\n");
1211 return;
1212 }
1213
1214 local_irq_save(flags);
1215 mask_8259A();
1216 save_mask_IO_APIC_setup();
1217
1218 ret = enable_intr_remapping(1);
1219
1220 if (ret && x2apic_preenabled) {
1221 local_irq_restore(flags);
1222 panic("x2apic enabled by bios. But IR enabling failed");
1223 }
1224
1225 if (ret)
1226 goto end;
1227
1228 if (!x2apic) {
1229 x2apic = 1;
1230 apic_ops = &x2apic_ops;
1231 enable_x2apic();
1232 }
1233end:
1234 if (ret)
1235 /*
1236 * IR enabling failed
1237 */
1238 restore_IO_APIC_setup();
1239 else
1240 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1241
1242 unmask_8259A();
1243 local_irq_restore(flags);
1244
1245 if (!ret) {
1246 if (!x2apic_preenabled)
1247 printk(KERN_INFO
1248 "Enabled x2apic and interrupt-remapping\n");
1249 else
1250 printk(KERN_INFO
1251 "Enabled Interrupt-remapping\n");
1252 } else
1253 printk(KERN_ERR
1254 "Failed to enable Interrupt-remapping and x2apic\n");
1255#else
1256 if (!cpu_has_x2apic)
1257 return;
1258
1259 if (x2apic_preenabled)
1260 panic("x2apic enabled prior OS handover,"
1261 " enable CONFIG_INTR_REMAP");
1262
1263 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1264 " and x2apic\n");
1265#endif
1266
1267 return;
1268}
Yinghai Lu49899ea2008-08-24 02:01:47 -07001269#endif /* HAVE_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001270
Yinghai Lube7a6562008-08-24 02:01:51 -07001271#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001272/*
1273 * Detect and enable local APICs on non-SMP boards.
1274 * Original code written by Keir Fraser.
1275 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1276 * not correctly set up (usually the APIC timer won't work etc.)
1277 */
1278static int __init detect_init_APIC(void)
1279{
1280 if (!cpu_has_apic) {
1281 printk(KERN_INFO "No local APIC present\n");
1282 return -1;
1283 }
1284
1285 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001286 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001287 return 0;
1288}
Yinghai Lube7a6562008-08-24 02:01:51 -07001289#else
1290/*
1291 * Detect and initialize APIC
1292 */
1293static int __init detect_init_APIC(void)
1294{
1295 u32 h, l, features;
1296
1297 /* Disabled by kernel option? */
1298 if (disable_apic)
1299 return -1;
1300
1301 switch (boot_cpu_data.x86_vendor) {
1302 case X86_VENDOR_AMD:
1303 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1304 (boot_cpu_data.x86 == 15))
1305 break;
1306 goto no_apic;
1307 case X86_VENDOR_INTEL:
1308 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1309 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1310 break;
1311 goto no_apic;
1312 default:
1313 goto no_apic;
1314 }
1315
1316 if (!cpu_has_apic) {
1317 /*
1318 * Over-ride BIOS and try to enable the local APIC only if
1319 * "lapic" specified.
1320 */
1321 if (!force_enable_local_apic) {
1322 printk(KERN_INFO "Local APIC disabled by BIOS -- "
1323 "you can enable it with \"lapic\"\n");
1324 return -1;
1325 }
1326 /*
1327 * Some BIOSes disable the local APIC in the APIC_BASE
1328 * MSR. This can only be done in software for Intel P6 or later
1329 * and AMD K7 (Model > 1) or later.
1330 */
1331 rdmsr(MSR_IA32_APICBASE, l, h);
1332 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1333 printk(KERN_INFO
1334 "Local APIC disabled by BIOS -- reenabling.\n");
1335 l &= ~MSR_IA32_APICBASE_BASE;
1336 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1337 wrmsr(MSR_IA32_APICBASE, l, h);
1338 enabled_via_apicbase = 1;
1339 }
1340 }
1341 /*
1342 * The APIC feature bit should now be enabled
1343 * in `cpuid'
1344 */
1345 features = cpuid_edx(1);
1346 if (!(features & (1 << X86_FEATURE_APIC))) {
1347 printk(KERN_WARNING "Could not enable APIC!\n");
1348 return -1;
1349 }
1350 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1351 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1352
1353 /* The BIOS may have set up the APIC at some other address */
1354 rdmsr(MSR_IA32_APICBASE, l, h);
1355 if (l & MSR_IA32_APICBASE_ENABLE)
1356 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1357
1358 printk(KERN_INFO "Found and enabled local APIC!\n");
1359
1360 apic_pm_activate();
1361
1362 return 0;
1363
1364no_apic:
1365 printk(KERN_INFO "No local APIC present or hardware disabled\n");
1366 return -1;
1367}
1368#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001369
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001370#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001371void __init early_init_lapic_mapping(void)
1372{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001373 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001374
1375 /*
1376 * If no local APIC can be found then go out
1377 * : it means there is no mpatable and MADT
1378 */
1379 if (!smp_found_config)
1380 return;
1381
Thomas Gleixner431ee792008-05-12 15:43:35 +02001382 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001383
Thomas Gleixner431ee792008-05-12 15:43:35 +02001384 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001385 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001386 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001387
1388 /*
1389 * Fetch the APIC ID of the BSP in case we have a
1390 * default configuration (or the MP table is broken).
1391 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001392 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001393}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001394#endif
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001395
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001396/**
1397 * init_apic_mappings - initialize APIC mappings
1398 */
1399void __init init_apic_mappings(void)
1400{
Yinghai Lu49899ea2008-08-24 02:01:47 -07001401#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001402 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001403 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001404 return;
1405 }
Yinghai Lu49899ea2008-08-24 02:01:47 -07001406#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001407
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001408 /*
1409 * If no local APIC can be found then set up a fake all
1410 * zeroes page to simulate the local APIC and another
1411 * one for the IO-APIC.
1412 */
1413 if (!smp_found_config && detect_init_APIC()) {
1414 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1415 apic_phys = __pa(apic_phys);
1416 } else
1417 apic_phys = mp_lapic_addr;
1418
1419 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1420 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1421 APIC_BASE, apic_phys);
1422
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001423 /*
1424 * Fetch the APIC ID of the BSP in case we have a
1425 * default configuration (or the MP table is broken).
1426 */
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001427 if (boot_cpu_physical_apicid == -1U)
1428 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001429}
1430
1431/*
1432 * This initializes the IO-APIC and APIC hardware if this is
1433 * a UP kernel.
1434 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001435int apic_version[MAX_APICS];
1436
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001437int __init APIC_init_uniprocessor(void)
1438{
Yinghai Lufa2bd352008-08-24 02:01:50 -07001439#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001440 if (disable_apic) {
1441 printk(KERN_INFO "Apic disabled\n");
1442 return -1;
1443 }
1444 if (!cpu_has_apic) {
1445 disable_apic = 1;
1446 printk(KERN_INFO "Apic disabled by BIOS\n");
1447 return -1;
1448 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001449#else
1450 if (!smp_found_config && !cpu_has_apic)
1451 return -1;
1452
1453 /*
1454 * Complain if the BIOS pretends there is one.
1455 */
1456 if (!cpu_has_apic &&
1457 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
1458 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1459 boot_cpu_physical_apicid);
1460 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1461 return -1;
1462 }
1463#endif
1464
Yinghai Lu49899ea2008-08-24 02:01:47 -07001465#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001466 enable_IR_x2apic();
Yinghai Lu49899ea2008-08-24 02:01:47 -07001467#endif
Yinghai Lufa2bd352008-08-24 02:01:50 -07001468#ifdef CONFIG_X86_64
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001469 setup_apic_routing();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001470#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001471
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001472 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001473 connect_bsp_APIC();
1474
Yinghai Lufa2bd352008-08-24 02:01:50 -07001475#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001476 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001477#else
1478 /*
1479 * Hack: In case of kdump, after a crash, kernel might be booting
1480 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1481 * might be zero if read from MP tables. Get it from LAPIC.
1482 */
1483# ifdef CONFIG_CRASH_DUMP
1484 boot_cpu_physical_apicid = read_apic_id();
1485# endif
1486#endif
1487 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001488 setup_local_APIC();
1489
Yinghai Lufa2bd352008-08-24 02:01:50 -07001490#ifdef CONFIG_X86_64
Andi Kleen739f33b2008-01-30 13:30:40 +01001491 /*
1492 * Now enable IO-APICs, actually call clear_IO_APIC
1493 * We need clear_IO_APIC before enabling vector on BP
1494 */
1495 if (!skip_ioapic_setup && nr_ioapics)
1496 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001497#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001498
Yinghai Lufa2bd352008-08-24 02:01:50 -07001499#ifdef CONFIG_X86_IO_APIC
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001500 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
Yinghai Lufa2bd352008-08-24 02:01:50 -07001501#endif
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001502 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +01001503 end_local_APIC_setup();
1504
Yinghai Lufa2bd352008-08-24 02:01:50 -07001505#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001506 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1507 setup_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001508# ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001509 else
1510 nr_ioapics = 0;
Yinghai Lufa2bd352008-08-24 02:01:50 -07001511# endif
1512#endif
1513
1514#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001515 setup_boot_APIC_clock();
1516 check_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001517#else
1518 setup_boot_clock();
1519#endif
1520
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001521 return 0;
1522}
1523
1524/*
1525 * Local APIC interrupts
1526 */
1527
1528/*
1529 * This interrupt should _never_ happen with our APIC/SMP architecture
1530 */
1531asmlinkage void smp_spurious_interrupt(void)
1532{
1533 unsigned int v;
1534 exit_idle();
1535 irq_enter();
1536 /*
1537 * Check if this really is a spurious interrupt and ACK it
1538 * if it is a vectored one. Just in case...
1539 * Spurious interrupts should not be ACKed.
1540 */
1541 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1542 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1543 ack_APIC_irq();
1544
1545 add_pda(irq_spurious_count, 1);
1546 irq_exit();
1547}
1548
1549/*
1550 * This interrupt should never happen with our APIC/SMP architecture
1551 */
1552asmlinkage void smp_error_interrupt(void)
1553{
1554 unsigned int v, v1;
1555
1556 exit_idle();
1557 irq_enter();
1558 /* First tickle the hardware, only then report what went on. -- REW */
1559 v = apic_read(APIC_ESR);
1560 apic_write(APIC_ESR, 0);
1561 v1 = apic_read(APIC_ESR);
1562 ack_APIC_irq();
1563 atomic_inc(&irq_err_count);
1564
1565 /* Here is what the APIC error bits mean:
1566 0: Send CS error
1567 1: Receive CS error
1568 2: Send accept error
1569 3: Receive accept error
1570 4: Reserved
1571 5: Send illegal vector
1572 6: Received illegal vector
1573 7: Illegal register address
1574 */
1575 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1576 smp_processor_id(), v , v1);
1577 irq_exit();
1578}
1579
Glauber Costab5841762008-05-28 13:38:28 -03001580/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001581 * connect_bsp_APIC - attach the APIC to the interrupt system
1582 */
Glauber Costab5841762008-05-28 13:38:28 -03001583void __init connect_bsp_APIC(void)
1584{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001585#ifdef CONFIG_X86_32
1586 if (pic_mode) {
1587 /*
1588 * Do not trust the local APIC being empty at bootup.
1589 */
1590 clear_local_APIC();
1591 /*
1592 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1593 * local APIC to INT and NMI lines.
1594 */
1595 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1596 "enabling APIC mode.\n");
1597 outb(0x70, 0x22);
1598 outb(0x01, 0x23);
1599 }
1600#endif
Glauber Costab5841762008-05-28 13:38:28 -03001601 enable_apic_mode();
1602}
1603
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001604/**
1605 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1606 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1607 *
1608 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1609 * APIC is disabled.
1610 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001611void disconnect_bsp_APIC(int virt_wire_setup)
1612{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001613 unsigned int value;
1614
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001615#ifdef CONFIG_X86_32
1616 if (pic_mode) {
1617 /*
1618 * Put the board back into PIC mode (has an effect only on
1619 * certain older boards). Note that APIC interrupts, including
1620 * IPIs, won't work beyond this point! The only exception are
1621 * INIT IPIs.
1622 */
1623 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1624 "entering PIC mode.\n");
1625 outb(0x70, 0x22);
1626 outb(0x00, 0x23);
1627 return;
1628 }
1629#endif
1630
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001631 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001632
1633 /* For the spurious interrupt use vector F, and enable it */
1634 value = apic_read(APIC_SPIV);
1635 value &= ~APIC_VECTOR_MASK;
1636 value |= APIC_SPIV_APIC_ENABLED;
1637 value |= 0xf;
1638 apic_write(APIC_SPIV, value);
1639
1640 if (!virt_wire_setup) {
1641 /*
1642 * For LVT0 make it edge triggered, active high,
1643 * external and enabled
1644 */
1645 value = apic_read(APIC_LVT0);
1646 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1647 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1648 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1649 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1650 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1651 apic_write(APIC_LVT0, value);
1652 } else {
1653 /* Disable LVT0 */
1654 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1655 }
1656
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001657 /*
1658 * For LVT1 make it edge triggered, active high,
1659 * nmi and enabled
1660 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001661 value = apic_read(APIC_LVT1);
1662 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1663 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1664 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1665 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1666 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1667 apic_write(APIC_LVT1, value);
1668}
1669
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001670void __cpuinit generic_processor_info(int apicid, int version)
1671{
1672 int cpu;
1673 cpumask_t tmp_map;
1674
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001675 /*
1676 * Validate version
1677 */
1678 if (version == 0x0) {
1679 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1680 "fixing up to 0x10. (tell your hw vendor)\n",
1681 version);
1682 version = 0x10;
1683 }
1684 apic_version[apicid] = version;
1685
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001686 if (num_processors >= NR_CPUS) {
1687 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001688 " Processor ignored.\n", NR_CPUS);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001689 return;
1690 }
1691
1692 num_processors++;
1693 cpus_complement(tmp_map, cpu_present_map);
1694 cpu = first_cpu(tmp_map);
1695
1696 physid_set(apicid, phys_cpu_present_map);
1697 if (apicid == boot_cpu_physical_apicid) {
1698 /*
1699 * x86_bios_cpu_apicid is required to have processors listed
1700 * in same order as logical cpu numbers. Hence the first
1701 * entry is BSP, and so on.
1702 */
1703 cpu = 0;
1704 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001705 if (apicid > max_physical_apicid)
1706 max_physical_apicid = apicid;
1707
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001708#ifdef CONFIG_X86_32
1709 /*
1710 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1711 * but we need to work other dependencies like SMP_SUSPEND etc
1712 * before this can be done without some confusion.
1713 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1714 * - Ashok Raj <ashok.raj@intel.com>
1715 */
1716 if (max_physical_apicid >= 8) {
1717 switch (boot_cpu_data.x86_vendor) {
1718 case X86_VENDOR_INTEL:
1719 if (!APIC_XAPIC(version)) {
1720 def_to_bigsmp = 0;
1721 break;
1722 }
1723 /* If P4 and above fall through */
1724 case X86_VENDOR_AMD:
1725 def_to_bigsmp = 1;
1726 }
1727 }
1728#endif
1729
1730#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001731 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001732 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1733 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1734 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001735
1736 cpu_to_apicid[cpu] = apicid;
1737 bios_cpu_apicid[cpu] = apicid;
1738 } else {
1739 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1740 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1741 }
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001742#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001743
1744 cpu_set(cpu, cpu_possible_map);
1745 cpu_set(cpu, cpu_present_map);
1746}
1747
Yinghai Lu34919982008-08-24 02:01:48 -07001748#ifdef CONFIG_X86_64
Suresh Siddha0c81c742008-07-10 11:16:48 -07001749int hard_smp_processor_id(void)
1750{
1751 return read_apic_id();
1752}
Yinghai Lu34919982008-08-24 02:01:48 -07001753#endif
Suresh Siddha0c81c742008-07-10 11:16:48 -07001754
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001755/*
1756 * Power management
1757 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758#ifdef CONFIG_PM
1759
1760static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001761 /*
1762 * 'active' is true if the local APIC was enabled by us and
1763 * not the BIOS; this signifies that we are also responsible
1764 * for disabling it before entering apm/acpi suspend
1765 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 int active;
1767 /* r/w apic fields */
1768 unsigned int apic_id;
1769 unsigned int apic_taskpri;
1770 unsigned int apic_ldr;
1771 unsigned int apic_dfr;
1772 unsigned int apic_spiv;
1773 unsigned int apic_lvtt;
1774 unsigned int apic_lvtpc;
1775 unsigned int apic_lvt0;
1776 unsigned int apic_lvt1;
1777 unsigned int apic_lvterr;
1778 unsigned int apic_tmict;
1779 unsigned int apic_tdcr;
1780 unsigned int apic_thmr;
1781} apic_pm_state;
1782
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001783static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
1785 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001786 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 if (!apic_pm_state.active)
1789 return 0;
1790
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001791 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001792
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001793 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1795 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1796 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1797 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1798 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001799 if (maxlvt >= 4)
1800 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1802 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1803 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1804 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1805 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001806#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001807 if (maxlvt >= 5)
1808 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1809#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001810
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001811 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 disable_local_APIC();
1813 local_irq_restore(flags);
1814 return 0;
1815}
1816
1817static int lapic_resume(struct sys_device *dev)
1818{
1819 unsigned int l, h;
1820 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001821 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 if (!apic_pm_state.active)
1824 return 0;
1825
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001826 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001829
Yinghai Lu49899ea2008-08-24 02:01:47 -07001830#ifdef HAVE_X2APIC
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001831 if (x2apic)
1832 enable_x2apic();
1833 else
1834#endif
Yinghai Lud5e629a2008-08-17 21:12:27 -07001835 {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001836 /*
1837 * Make sure the APICBASE points to the right address
1838 *
1839 * FIXME! This will be wrong if we ever support suspend on
1840 * SMP! We'll need to do this as part of the CPU restore!
1841 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001842 rdmsr(MSR_IA32_APICBASE, l, h);
1843 l &= ~MSR_IA32_APICBASE_BASE;
1844 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1845 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07001846 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1849 apic_write(APIC_ID, apic_pm_state.apic_id);
1850 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1851 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1852 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1853 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1854 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1855 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001856#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001857 if (maxlvt >= 5)
1858 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1859#endif
1860 if (maxlvt >= 4)
1861 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1863 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1864 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1865 apic_write(APIC_ESR, 0);
1866 apic_read(APIC_ESR);
1867 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1868 apic_write(APIC_ESR, 0);
1869 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return 0;
1874}
1875
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001876/*
1877 * This device has no shutdown method - fully functioning local APICs
1878 * are needed on every CPU up until machine_halt/restart/poweroff.
1879 */
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001882 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .resume = lapic_resume,
1884 .suspend = lapic_suspend,
1885};
1886
1887static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001888 .id = 0,
1889 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890};
1891
Ashok Raje6982c62005-06-25 14:54:58 -07001892static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
1894 apic_pm_state.active = 1;
1895}
1896
1897static int __init init_lapic_sysfs(void)
1898{
1899 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (!cpu_has_apic)
1902 return 0;
1903 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 error = sysdev_class_register(&lapic_sysclass);
1906 if (!error)
1907 error = sysdev_register(&device_lapic);
1908 return error;
1909}
1910device_initcall(init_lapic_sysfs);
1911
1912#else /* CONFIG_PM */
1913
1914static void apic_pm_activate(void) { }
1915
1916#endif /* CONFIG_PM */
1917
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001918#ifdef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001920 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 *
1922 * Thus far, the major user of this is IBM's Summit2 series:
1923 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001924 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 * multi-chassis. Use available data to take a good guess.
1926 * If in doubt, go HPET.
1927 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001928__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
1930 int i, clusters, zeros;
1931 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001932 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1934
Yinghai Lu322850a2008-02-23 21:48:42 -08001935 /*
1936 * there is not this kind of box with AMD CPU yet.
1937 * Some AMD box with quadcore cpu and 8 sockets apicid
1938 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001939 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001940 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001941 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001942 return 0;
1943
Mike Travis23ca4bb2008-05-12 21:21:12 +02001944 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001945 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001948 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001949 if (bios_cpu_apicid) {
1950 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001951 }
1952 else if (i < nr_cpu_ids) {
1953 if (cpu_present(i))
1954 id = per_cpu(x86_bios_cpu_apicid, i);
1955 else
1956 continue;
1957 }
1958 else
1959 break;
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (id != BAD_APICID)
1962 __set_bit(APIC_CLUSTERID(id), clustermap);
1963 }
1964
1965 /* Problem: Partially populated chassis may not have CPUs in some of
1966 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001967 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1968 * Since clusters are allocated sequentially, count zeros only if
1969 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 */
1971 clusters = 0;
1972 zeros = 0;
1973 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1974 if (test_bit(i, clustermap)) {
1975 clusters += 1 + zeros;
1976 zeros = 0;
1977 } else
1978 ++zeros;
1979 }
1980
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001981 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1982 * not guaranteed to be synced between boards
1983 */
1984 if (is_vsmp_box() && clusters > 1)
1985 return 1;
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001988 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 * May have to revisit this when multi-core + hyperthreaded CPUs come
1990 * out, but AFAIK this will work even for them.
1991 */
1992 return (clusters > 2);
1993}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001994#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001997 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04001999static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002000{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002002 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002003 return 0;
2004}
2005early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002007/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002008static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002009{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002010 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002011}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002012early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002014static int __init parse_lapic_timer_c2_ok(char *arg)
2015{
2016 local_apic_timer_c2_ok = 1;
2017 return 0;
2018}
2019early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2020
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002021static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002022{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002024 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002025}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002026early_param("noapictimer", parse_disable_apic_timer);
2027
2028static int __init parse_nolapic_timer(char *arg)
2029{
2030 disable_apic_timer = 1;
2031 return 0;
2032}
2033early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002034
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002035static int __init apic_set_verbosity(char *arg)
2036{
2037 if (!arg) {
2038#ifdef CONFIG_X86_64
2039 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002040 return 0;
2041#endif
2042 return -EINVAL;
2043 }
2044
2045 if (strcmp("debug", arg) == 0)
2046 apic_verbosity = APIC_DEBUG;
2047 else if (strcmp("verbose", arg) == 0)
2048 apic_verbosity = APIC_VERBOSE;
2049 else {
2050 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
2051 " use apic=verbose or apic=debug\n", arg);
2052 return -EINVAL;
2053 }
2054
2055 return 0;
2056}
2057early_param("apic", apic_set_verbosity);
2058
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002059static int __init lapic_insert_resource(void)
2060{
2061 if (!apic_phys)
2062 return -1;
2063
2064 /* Put local APIC into the resource map. */
2065 lapic_resource.start = apic_phys;
2066 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2067 insert_resource(&iomem_resource, &lapic_resource);
2068
2069 return 0;
2070}
2071
2072/*
2073 * need call insert after e820_reserve_resources()
2074 * that is using request_resource
2075 */
2076late_initcall(lapic_insert_resource);