blob: 99589245fd8d9d99ee67c9acc518b41ef2bb965f [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>
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +010033#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/atomic.h>
36#include <asm/smp.h>
37#include <asm/mtrr.h>
38#include <asm/mpspec.h>
Yinghai Luefa25592008-08-19 20:50:36 -070039#include <asm/desc.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070040#include <asm/arch_hooks.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010041#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/pgalloc.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070043#include <asm/i8253.h>
Andi Kleen75152112005-05-16 21:53:34 -070044#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010045#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010046#include <asm/proto.h>
47#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020048#include <asm/apic.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070049#include <asm/i8259.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Glauber Costadd46e3c2008-03-25 18:10:46 -030051#include <mach_apic.h>
Yinghai Lu773763d2008-08-24 02:01:52 -070052#include <mach_apicdef.h>
53#include <mach_ipi.h>
Glauber Costa5af55732008-03-25 13:28:56 -030054
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070055/*
56 * Sanity check
57 */
58#if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
59# error SPURIOUS_APIC_VECTOR definition error
60#endif
61
Yinghai Lub3c51172008-08-24 02:01:46 -070062#ifdef CONFIG_X86_32
63/*
64 * Knob to control our willingness to enable the local APIC.
65 *
66 * +1=force-enable
67 */
68static int force_enable_local_apic;
69/*
70 * APIC command line parameters
71 */
72static int __init parse_lapic(char *arg)
73{
74 force_enable_local_apic = 1;
75 return 0;
76}
77early_param("lapic", parse_lapic);
Yinghai Luf28c0ae2008-08-24 02:01:49 -070078/* Local APIC was disabled by the BIOS and enabled by the kernel */
79static int enabled_via_apicbase;
80
Yinghai Lub3c51172008-08-24 02:01:46 -070081#endif
82
83#ifdef CONFIG_X86_64
Chris Wrightbc1d99c2007-10-12 23:04:23 +020084static int apic_calibrate_pmtmr __initdata;
Yinghai Lub3c51172008-08-24 02:01:46 -070085static __init int setup_apicpmtimer(char *s)
86{
87 apic_calibrate_pmtmr = 1;
88 notsc_setup(NULL);
89 return 0;
90}
91__setup("apicpmtimer", setup_apicpmtimer);
92#endif
93
Yinghai Lu49899ea2008-08-24 02:01:47 -070094#ifdef CONFIG_X86_64
95#define HAVE_X2APIC
96#endif
97
98#ifdef HAVE_X2APIC
Suresh Siddha89027d32008-07-10 11:16:56 -070099int x2apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700100/* x2apic enabled before OS handover */
101int x2apic_preenabled;
Yinghai Lu49899ea2008-08-24 02:01:47 -0700102int disable_x2apic;
103static __init int setup_nox2apic(char *str)
104{
105 disable_x2apic = 1;
106 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
107 return 0;
108}
109early_param("nox2apic", setup_nox2apic);
110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Yinghai Lub3c51172008-08-24 02:01:46 -0700112unsigned long mp_lapic_addr;
113int disable_apic;
114/* Disable local APIC timer from the kernel commandline or via dmi quirk */
115static int disable_apic_timer __cpuinitdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100116/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -0700117int local_apic_timer_c2_ok;
118EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
119
Yinghai Luefa25592008-08-19 20:50:36 -0700120int first_system_vector = 0xfe;
121
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100122/*
123 * Debug level, exported for io_apic.c
124 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100125unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100126
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700127int pic_mode;
128
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400129/* Have we found an MP table */
130int smp_found_config;
131
Aaron Durbin39928722006-12-07 02:14:01 +0100132static struct resource lapic_resource = {
133 .name = "Local APIC",
134 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
135};
136
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200137static unsigned int calibration_result;
138
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200139static int lapic_next_event(unsigned long delta,
140 struct clock_event_device *evt);
141static void lapic_timer_setup(enum clock_event_mode mode,
142 struct clock_event_device *evt);
Mike Travis96289372008-12-31 18:08:46 -0800143static void lapic_timer_broadcast(const struct cpumask *mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100144static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200145
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400146/*
147 * The local apic timer can be used for any function which is CPU local.
148 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200149static struct clock_event_device lapic_clockevent = {
150 .name = "lapic",
151 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
152 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
153 .shift = 32,
154 .set_mode = lapic_timer_setup,
155 .set_next_event = lapic_next_event,
156 .broadcast = lapic_timer_broadcast,
157 .rating = 100,
158 .irq = -1,
159};
160static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
161
Andi Kleend3432892008-01-30 13:33:17 +0100162static unsigned long apic_phys;
163
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100164/*
165 * Get the LAPIC version
166 */
167static inline int lapic_get_version(void)
168{
169 return GET_APIC_VERSION(apic_read(APIC_LVR));
170}
171
172/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400173 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100174 */
175static inline int lapic_is_integrated(void)
176{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400177#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100178 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400179#else
180 return APIC_INTEGRATED(lapic_get_version());
181#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100182}
183
184/*
185 * Check, whether this is a modern or a first generation APIC
186 */
187static int modern_apic(void)
188{
189 /* AMD systems use old APIC versions, so check the CPU */
190 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
191 boot_cpu_data.x86 >= 0xf)
192 return 1;
193 return lapic_get_version() >= 0x14;
194}
195
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400196/*
197 * Paravirt kernels also might be using these below ops. So we still
198 * use generic apic_read()/apic_write(), which might be pointing to different
199 * ops in PARAVIRT case.
200 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700201void xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100202{
203 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
204 cpu_relax();
205}
206
Suresh Siddha1b374e42008-07-10 11:16:49 -0700207u32 safe_xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100208{
209 u32 send_status;
210 int timeout;
211
212 timeout = 0;
213 do {
214 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
215 if (!send_status)
216 break;
217 udelay(100);
218 } while (timeout++ < 1000);
219
220 return send_status;
221}
222
Suresh Siddha1b374e42008-07-10 11:16:49 -0700223void xapic_icr_write(u32 low, u32 id)
224{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200225 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700226 apic_write(APIC_ICR, low);
227}
228
229u64 xapic_icr_read(void)
230{
231 u32 icr1, icr2;
232
233 icr2 = apic_read(APIC_ICR2);
234 icr1 = apic_read(APIC_ICR);
235
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400236 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700237}
238
239static struct apic_ops xapic_ops = {
240 .read = native_apic_mem_read,
241 .write = native_apic_mem_write,
Suresh Siddha1b374e42008-07-10 11:16:49 -0700242 .icr_read = xapic_icr_read,
243 .icr_write = xapic_icr_write,
244 .wait_icr_idle = xapic_wait_icr_idle,
245 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
246};
247
248struct apic_ops __read_mostly *apic_ops = &xapic_ops;
Suresh Siddha1b374e42008-07-10 11:16:49 -0700249EXPORT_SYMBOL_GPL(apic_ops);
250
Yinghai Lu49899ea2008-08-24 02:01:47 -0700251#ifdef HAVE_X2APIC
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700252static void x2apic_wait_icr_idle(void)
253{
254 /* no need to wait for icr idle in x2apic */
255 return;
256}
257
258static u32 safe_x2apic_wait_icr_idle(void)
259{
260 /* no need to wait for icr idle in x2apic */
261 return 0;
262}
263
264void x2apic_icr_write(u32 low, u32 id)
265{
266 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
267}
268
269u64 x2apic_icr_read(void)
270{
271 unsigned long val;
272
273 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
274 return val;
275}
276
277static struct apic_ops x2apic_ops = {
278 .read = native_apic_msr_read,
279 .write = native_apic_msr_write,
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700280 .icr_read = x2apic_icr_read,
281 .icr_write = x2apic_icr_write,
282 .wait_icr_idle = x2apic_wait_icr_idle,
283 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
284};
Yinghai Lu49899ea2008-08-24 02:01:47 -0700285#endif
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700286
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100287/**
288 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
289 */
Jan Beuliche9427102008-01-30 13:31:24 +0100290void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100291{
292 unsigned int v;
293
294 /* unmask and set to NMI */
295 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200296
297 /* Level triggered for 82489DX (32bit mode) */
298 if (!lapic_is_integrated())
299 v |= APIC_LVT_LEVEL_TRIGGER;
300
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100301 apic_write(APIC_LVT0, v);
302}
303
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700304#ifdef CONFIG_X86_32
305/**
306 * get_physical_broadcast - Get number of physical broadcast IDs
307 */
308int get_physical_broadcast(void)
309{
310 return modern_apic() ? 0xff : 0xf;
311}
312#endif
313
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100314/**
315 * lapic_get_maxlvt - get the maximum number of local vector table entries
316 */
317int lapic_get_maxlvt(void)
318{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200319 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100320
321 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200322 /*
323 * - we always have APIC integrated on 64bit mode
324 * - 82489DXs do not report # of LVT entries
325 */
326 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100327}
328
329/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400330 * Local APIC timer
331 */
332
Cyrill Gorcunovc40aaec62008-08-18 20:45:55 +0400333/* Clock divisor */
Cyrill Gorcunovc40aaec62008-08-18 20:45:55 +0400334#define APIC_DIVISOR 16
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200335
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100336/*
337 * This function sets up the local APIC timer, with a timeout of
338 * 'clocks' APIC bus clock. During calibration we actually call
339 * this function twice on the boot CPU, once with a bogus timeout
340 * value, second time for real. The other (noncalibrating) CPUs
341 * call this function only once, with the real, calibrated value.
342 *
343 * We do reads before writes even if unnecessary, to get around the
344 * P5 APIC double write bug.
345 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100346static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
347{
348 unsigned int lvtt_value, tmp_value;
349
350 lvtt_value = LOCAL_TIMER_VECTOR;
351 if (!oneshot)
352 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200353 if (!lapic_is_integrated())
354 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
355
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100356 if (!irqen)
357 lvtt_value |= APIC_LVT_MASKED;
358
359 apic_write(APIC_LVTT, lvtt_value);
360
361 /*
362 * Divide PICLK by 16
363 */
364 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec62008-08-18 20:45:55 +0400365 apic_write(APIC_TDCR,
366 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
367 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100368
369 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200370 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100371}
372
373/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100374 * Setup extended LVT, AMD specific (K8, family 10h)
375 *
376 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
377 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200378 *
379 * If mask=1, the LVT entry does not generate interrupts while mask=0
380 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100381 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100382
383#define APIC_EILVT_LVTOFF_MCE 0
384#define APIC_EILVT_LVTOFF_IBS 1
385
386static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100387{
Robert Richter7b83dae2008-01-30 13:30:40 +0100388 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100389 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
390
391 apic_write(reg, v);
392}
393
Robert Richter7b83dae2008-01-30 13:30:40 +0100394u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
395{
396 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
397 return APIC_EILVT_LVTOFF_MCE;
398}
399
400u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
401{
402 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
403 return APIC_EILVT_LVTOFF_IBS;
404}
Robert Richter6aa360e2008-07-23 15:28:14 +0200405EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100406
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100407/*
408 * Program the next event, relative to now
409 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200410static int lapic_next_event(unsigned long delta,
411 struct clock_event_device *evt)
412{
413 apic_write(APIC_TMICT, delta);
414 return 0;
415}
416
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100417/*
418 * Setup the lapic timer in periodic or oneshot mode
419 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200420static void lapic_timer_setup(enum clock_event_mode mode,
421 struct clock_event_device *evt)
422{
423 unsigned long flags;
424 unsigned int v;
425
426 /* Lapic used as dummy for broadcast ? */
427 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
428 return;
429
430 local_irq_save(flags);
431
432 switch (mode) {
433 case CLOCK_EVT_MODE_PERIODIC:
434 case CLOCK_EVT_MODE_ONESHOT:
435 __setup_APIC_LVTT(calibration_result,
436 mode != CLOCK_EVT_MODE_PERIODIC, 1);
437 break;
438 case CLOCK_EVT_MODE_UNUSED:
439 case CLOCK_EVT_MODE_SHUTDOWN:
440 v = apic_read(APIC_LVTT);
441 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
442 apic_write(APIC_LVTT, v);
Thomas Gleixnera98f8fd2008-11-06 01:13:39 +0100443 apic_write(APIC_TMICT, 0xffffffff);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200444 break;
445 case CLOCK_EVT_MODE_RESUME:
446 /* Nothing to do here */
447 break;
448 }
449
450 local_irq_restore(flags);
451}
452
453/*
454 * Local APIC timer broadcast function
455 */
Mike Travis96289372008-12-31 18:08:46 -0800456static void lapic_timer_broadcast(const struct cpumask *mask)
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200457{
458#ifdef CONFIG_SMP
Mike Travise7986732008-12-16 17:33:52 -0800459 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200460#endif
461}
462
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100463/*
464 * Setup the local APIC timer for this CPU. Copy the initilized values
465 * of the boot CPU and register the clock event in the framework.
466 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700467static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200468{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100469 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
470
471 memcpy(levt, &lapic_clockevent, sizeof(*levt));
Rusty Russell320ab2b2008-12-13 21:20:26 +1030472 levt->cpumask = cpumask_of(smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100473
474 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200475}
476
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700477/*
478 * In this functions we calibrate APIC bus clocks to the external timer.
479 *
480 * We want to do the calibration only once since we want to have local timer
481 * irqs syncron. CPUs connected by the same APIC bus have the very same bus
482 * frequency.
483 *
484 * This was previously done by reading the PIT/HPET and waiting for a wrap
485 * around to find out, that a tick has elapsed. I have a box, where the PIT
486 * readout is broken, so it never gets out of the wait loop again. This was
487 * also reported by others.
488 *
489 * Monitoring the jiffies value is inaccurate and the clockevents
490 * infrastructure allows us to do a simple substitution of the interrupt
491 * handler.
492 *
493 * The calibration routine also uses the pm_timer when possible, as the PIT
494 * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
495 * back to normal later in the boot process).
496 */
497
498#define LAPIC_CAL_LOOPS (HZ/10)
499
500static __initdata int lapic_cal_loops = -1;
501static __initdata long lapic_cal_t1, lapic_cal_t2;
502static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
503static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
504static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
505
506/*
507 * Temporary interrupt handler.
508 */
509static void __init lapic_cal_handler(struct clock_event_device *dev)
510{
511 unsigned long long tsc = 0;
512 long tapic = apic_read(APIC_TMCCT);
513 unsigned long pm = acpi_pm_read_early();
514
515 if (cpu_has_tsc)
516 rdtscll(tsc);
517
518 switch (lapic_cal_loops++) {
519 case 0:
520 lapic_cal_t1 = tapic;
521 lapic_cal_tsc1 = tsc;
522 lapic_cal_pm1 = pm;
523 lapic_cal_j1 = jiffies;
524 break;
525
526 case LAPIC_CAL_LOOPS:
527 lapic_cal_t2 = tapic;
528 lapic_cal_tsc2 = tsc;
529 if (pm < lapic_cal_pm1)
530 pm += ACPI_PM_OVRRUN;
531 lapic_cal_pm2 = pm;
532 lapic_cal_j2 = jiffies;
533 break;
534 }
535}
536
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400537static int __init calibrate_by_pmtimer(long deltapm, long *delta)
538{
539 const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
540 const long pm_thresh = pm_100ms / 100;
541 unsigned long mult;
542 u64 res;
543
544#ifndef CONFIG_X86_PM_TIMER
545 return -1;
546#endif
547
548 apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
549
550 /* Check, if the PM timer is available */
551 if (!deltapm)
552 return -1;
553
554 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
555
556 if (deltapm > (pm_100ms - pm_thresh) &&
557 deltapm < (pm_100ms + pm_thresh)) {
558 apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
559 } else {
560 res = (((u64)deltapm) * mult) >> 22;
561 do_div(res, 1000000);
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100562 pr_warning("APIC calibration not consistent "
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400563 "with PM Timer: %ldms instead of 100ms\n",
564 (long)res);
565 /* Correct the lapic counter value */
566 res = (((u64)(*delta)) * pm_100ms);
567 do_div(res, deltapm);
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100568 pr_info("APIC delta adjusted to PM-Timer: "
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400569 "%lu (%ld)\n", (unsigned long)res, *delta);
570 *delta = (long)res;
571 }
572
573 return 0;
574}
575
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700576static int __init calibrate_APIC_clock(void)
577{
578 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700579 void (*real_handler)(struct clock_event_device *dev);
580 unsigned long deltaj;
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400581 long delta;
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700582 int pm_referenced = 0;
583
584 local_irq_disable();
585
586 /* Replace the global interrupt handler */
587 real_handler = global_clock_event->event_handler;
588 global_clock_event->event_handler = lapic_cal_handler;
589
590 /*
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400591 * Setup the APIC counter to maximum. There is no way the lapic
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700592 * can underflow in the 100ms detection time frame
593 */
Cyrill Gorcunov81608f32008-10-10 19:00:17 +0400594 __setup_APIC_LVTT(0xffffffff, 0, 0);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700595
596 /* Let the interrupts run */
597 local_irq_enable();
598
599 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
600 cpu_relax();
601
602 local_irq_disable();
603
604 /* Restore the real event handler */
605 global_clock_event->event_handler = real_handler;
606
607 /* Build delta t1-t2 as apic timer counts down */
608 delta = lapic_cal_t1 - lapic_cal_t2;
609 apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
610
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400611 /* we trust the PM based calibration if possible */
612 pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
613 &delta);
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700614
615 /* Calculate the scaled math multiplication factor */
616 lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
617 lapic_clockevent.shift);
618 lapic_clockevent.max_delta_ns =
619 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
620 lapic_clockevent.min_delta_ns =
621 clockevent_delta2ns(0xF, &lapic_clockevent);
622
623 calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
624
625 apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
626 apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
627 apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
628 calibration_result);
629
630 if (cpu_has_tsc) {
631 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
632 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
633 "%ld.%04ld MHz.\n",
634 (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
635 (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
636 }
637
638 apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
639 "%u.%04u MHz.\n",
640 calibration_result / (1000000 / HZ),
641 calibration_result % (1000000 / HZ));
642
643 /*
644 * Do a sanity check on the APIC calibration result
645 */
646 if (calibration_result < (1000000 / HZ)) {
647 local_irq_enable();
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100648 pr_warning("APIC frequency too slow, disabling apic timer\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700649 return -1;
650 }
651
652 levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
653
Cyrill Gorcunovb1898922008-09-12 23:58:24 +0400654 /*
655 * PM timer calibration failed or not turned on
656 * so lets try APIC timer based calibration
657 */
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700658 if (!pm_referenced) {
659 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
660
661 /*
662 * Setup the apic timer manually
663 */
664 levt->event_handler = lapic_cal_handler;
665 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
666 lapic_cal_loops = -1;
667
668 /* Let the interrupts run */
669 local_irq_enable();
670
671 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
672 cpu_relax();
673
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700674 /* Stop the lapic timer */
675 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
676
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700677 /* Jiffies delta */
678 deltaj = lapic_cal_j2 - lapic_cal_j1;
679 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
680
681 /* Check, if the jiffies result is consistent */
682 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
683 apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
684 else
685 levt->features |= CLOCK_EVT_FEAT_DUMMY;
686 } else
687 local_irq_enable();
688
689 if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100690 pr_warning("APIC timer disabled due to verification failure.\n");
Yinghai Lu2f04fa82008-08-24 02:01:54 -0700691 return -1;
692 }
693
694 return 0;
695}
696
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100697/*
698 * Setup the boot APIC
699 *
700 * Calibrate and verify the result.
701 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100702void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100704 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400705 * The local apic timer can be disabled via the kernel
706 * commandline or from the CPU detection code. Register the lapic
707 * timer as a dummy clock event source on SMP systems, so the
708 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100709 */
710 if (disable_apic_timer) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100711 pr_info("Disabling APIC timer\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100712 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100713 if (num_possible_cpus() > 1) {
714 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100715 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100716 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100717 return;
718 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200719
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400720 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
721 "calibrating APIC timer ...\n");
722
Cyrill Gorcunov89b3b1f42008-07-15 21:02:54 +0400723 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100724 /* No broadcast on UP ! */
725 if (num_possible_cpus() > 1)
726 setup_APIC_timer();
727 return;
728 }
729
730 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100731 * If nmi_watchdog is set to IO_APIC, we need the
732 * PIT/HPET going. Otherwise register lapic as a dummy
733 * device.
734 */
735 if (nmi_watchdog != NMI_IO_APIC)
736 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
737 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100738 pr_warning("APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200739 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100740
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400741 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100742 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100745void __cpuinit setup_secondary_APIC_clock(void)
746{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100747 setup_APIC_timer();
748}
749
750/*
751 * The guts of the apic timer interrupt
752 */
753static void local_apic_timer_interrupt(void)
754{
755 int cpu = smp_processor_id();
756 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
757
758 /*
759 * Normally we should not be here till LAPIC has been initialized but
760 * in some cases like kdump, its possible that there is a pending LAPIC
761 * timer interrupt from previous kernel's context and is delivered in
762 * new kernel the moment interrupts are enabled.
763 *
764 * Interrupts are enabled early and LAPIC is setup much later, hence
765 * its possible that when we get here evt->event_handler is NULL.
766 * Check for event_handler being NULL and discard the interrupt as
767 * spurious.
768 */
769 if (!evt->event_handler) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +0100770 pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100771 /* Switch it off */
772 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
773 return;
774 }
775
776 /*
777 * the NMI deadlock-detector uses this.
778 */
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -0800779 inc_irq_stat(apic_timer_irqs);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100780
781 evt->event_handler(evt);
782}
783
784/*
785 * Local APIC timer interrupt. This is the most natural way for doing
786 * local interrupts, but local timer interrupts can be emulated by
787 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
788 *
789 * [ if a single-CPU system runs an SMP kernel then we call the local
790 * interrupt as well. Thus we cannot inline the local irq ... ]
791 */
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100792void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100793{
794 struct pt_regs *old_regs = set_irq_regs(regs);
795
796 /*
797 * NOTE! We'd better ACK the irq immediately,
798 * because timer handling can be slow.
799 */
800 ack_APIC_irq();
801 /*
802 * update_process_times() expects us to have done irq_enter().
803 * Besides, if we don't timer interrupts ignore the global
804 * interrupt lock, which is the WrongThing (tm) to do.
805 */
806 exit_idle();
807 irq_enter();
808 local_apic_timer_interrupt();
809 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400810
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100811 set_irq_regs(old_regs);
812}
813
814int setup_profiling_timer(unsigned int multiplier)
815{
816 return -EINVAL;
817}
818
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100819/*
820 * Local APIC start and shutdown
821 */
822
823/**
824 * clear_local_APIC - shutdown the local APIC
825 *
826 * This is called, when a CPU is disabled and before rebooting, so the state of
827 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
828 * leftovers during boot.
829 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830void clear_local_APIC(void)
831{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400832 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100833 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Andi Kleend3432892008-01-30 13:33:17 +0100835 /* APIC hasn't been mapped yet */
836 if (!apic_phys)
837 return;
838
839 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200841 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * if the vector is zero. Mask LVTERR first to prevent this.
843 */
844 if (maxlvt >= 3) {
845 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100846 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 /*
849 * Careful: we have to set masks only first to deassert
850 * any level-triggered sources.
851 */
852 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100853 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100855 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100857 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (maxlvt >= 4) {
859 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100860 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400863 /* lets not touch this if we didn't frob it */
864#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
865 if (maxlvt >= 5) {
866 v = apic_read(APIC_LVTTHMR);
867 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
868 }
869#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /*
871 * Clean APIC state for other OSs:
872 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100873 apic_write(APIC_LVTT, APIC_LVT_MASKED);
874 apic_write(APIC_LVT0, APIC_LVT_MASKED);
875 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100877 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100879 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400880
881 /* Integrated APIC (!82489DX) ? */
882 if (lapic_is_integrated()) {
883 if (maxlvt > 3)
884 /* Clear ESR due to Pentium errata 3AP and 11AP */
885 apic_write(APIC_ESR, 0);
886 apic_read(APIC_ESR);
887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100890/**
891 * disable_local_APIC - clear and disable the local APIC
892 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893void disable_local_APIC(void)
894{
895 unsigned int value;
896
897 clear_local_APIC();
898
899 /*
900 * Disable APIC (implies clearing of registers
901 * for 82489DX!).
902 */
903 value = apic_read(APIC_SPIV);
904 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100905 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400906
907#ifdef CONFIG_X86_32
908 /*
909 * When LAPIC was disabled by the BIOS and enabled by the kernel,
910 * restore the disabled state.
911 */
912 if (enabled_via_apicbase) {
913 unsigned int l, h;
914
915 rdmsr(MSR_IA32_APICBASE, l, h);
916 l &= ~MSR_IA32_APICBASE_ENABLE;
917 wrmsr(MSR_IA32_APICBASE, l, h);
918 }
919#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400922/*
923 * If Linux enabled the LAPIC against the BIOS default disable it down before
924 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
925 * not power-off. Additionally clear all LVT entries before disable_local_APIC
926 * for the case where Linux didn't enable the LAPIC.
927 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700928void lapic_shutdown(void)
929{
930 unsigned long flags;
931
932 if (!cpu_has_apic)
933 return;
934
935 local_irq_save(flags);
936
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400937#ifdef CONFIG_X86_32
938 if (!enabled_via_apicbase)
939 clear_local_APIC();
940 else
941#endif
942 disable_local_APIC();
943
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700944
945 local_irq_restore(flags);
946}
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948/*
949 * This is to verify that we're looking at a real local APIC.
950 * Check these against your board if the CPUs aren't getting
951 * started for no apparent reason.
952 */
953int __init verify_local_APIC(void)
954{
955 unsigned int reg0, reg1;
956
957 /*
958 * The version register is read-only in a real APIC.
959 */
960 reg0 = apic_read(APIC_LVR);
961 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
962 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
963 reg1 = apic_read(APIC_LVR);
964 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
965
966 /*
967 * The two version reads above should print the same
968 * numbers. If the second one is different, then we
969 * poke at a non-APIC.
970 */
971 if (reg1 != reg0)
972 return 0;
973
974 /*
975 * Check if the version looks reasonably.
976 */
977 reg1 = GET_APIC_VERSION(reg0);
978 if (reg1 == 0x00 || reg1 == 0xff)
979 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100980 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (reg1 < 0x02 || reg1 == 0xff)
982 return 0;
983
984 /*
985 * The ID register is read/write in a real APIC.
986 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700987 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
989 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700990 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
992 apic_write(APIC_ID, reg0);
993 if (reg1 != (reg0 ^ APIC_ID_MASK))
994 return 0;
995
996 /*
997 * The next two are just to see if we have sane values.
998 * They're only really relevant if we're in Virtual Wire
999 * compatibility mode, but most boxes are anymore.
1000 */
1001 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001002 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 reg1 = apic_read(APIC_LVT1);
1004 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
1005
1006 return 1;
1007}
1008
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001009/**
1010 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
1011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012void __init sync_Arb_IDs(void)
1013{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +02001014 /*
1015 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
1016 * needed on AMD.
1017 */
1018 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return;
1020
1021 /*
1022 * Wait for idle.
1023 */
1024 apic_wait_icr_idle();
1025
1026 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +04001027 apic_write(APIC_ICR, APIC_DEST_ALLINC |
1028 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031/*
1032 * An initial setup of the virtual wire mode.
1033 */
1034void __init init_bsp_APIC(void)
1035{
Andi Kleen11a8e772006-01-11 22:46:51 +01001036 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 /*
1039 * Don't do the setup now if we have a SMP BIOS as the
1040 * through-I/O-APIC virtual wire mode might be active.
1041 */
1042 if (smp_found_config || !cpu_has_apic)
1043 return;
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /*
1046 * Do not trust the local APIC being empty at bootup.
1047 */
1048 clear_local_APIC();
1049
1050 /*
1051 * Enable APIC.
1052 */
1053 value = apic_read(APIC_SPIV);
1054 value &= ~APIC_VECTOR_MASK;
1055 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001056
1057#ifdef CONFIG_X86_32
1058 /* This bit is reserved on P4/Xeon and should be cleared */
1059 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
1060 (boot_cpu_data.x86 == 15))
1061 value &= ~APIC_SPIV_FOCUS_DISABLED;
1062 else
1063#endif
1064 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001066 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 /*
1069 * Set up the virtual wire mode.
1070 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001071 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +04001073 if (!lapic_is_integrated()) /* 82489DX */
1074 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001075 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001078static void __cpuinit lapic_setup_esr(void)
1079{
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001080 unsigned int oldvalue, value, maxlvt;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001081
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001082 if (!lapic_is_integrated()) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001083 pr_info("No ESR for 82489DX.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001084 return;
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001085 }
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001086
1087 if (esr_disable) {
1088 /*
1089 * Something untraceable is creating bad interrupts on
1090 * secondary quads ... for the moment, just leave the
1091 * ESR disabled - we can't do anything useful with the
1092 * errors anyway - mbligh
1093 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001094 pr_info("Leaving ESR disabled.\n");
Cyrill Gorcunov9df08f12008-09-14 11:55:37 +04001095 return;
1096 }
1097
1098 maxlvt = lapic_get_maxlvt();
1099 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1100 apic_write(APIC_ESR, 0);
1101 oldvalue = apic_read(APIC_ESR);
1102
1103 /* enables sending errors */
1104 value = ERROR_APIC_VECTOR;
1105 apic_write(APIC_LVTERR, value);
1106
1107 /*
1108 * spec says clear errors after enabling vector.
1109 */
1110 if (maxlvt > 3)
1111 apic_write(APIC_ESR, 0);
1112 value = apic_read(APIC_ESR);
1113 if (value != oldvalue)
1114 apic_printk(APIC_VERBOSE, "ESR value before enabling "
1115 "vector: 0x%08x after: 0x%08x\n",
1116 oldvalue, value);
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +04001117}
1118
1119
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001120/**
1121 * setup_local_APIC - setup the local APIC
1122 */
1123void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Andi Kleen739f33b2008-01-30 13:30:40 +01001125 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001126 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001128#ifdef CONFIG_X86_32
1129 /* Pound the ESR really hard over the head with a big hammer - mbligh */
Cyrill Gorcunov08ad7762008-09-14 11:55:38 +04001130 if (lapic_is_integrated() && esr_disable) {
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001131 apic_write(APIC_ESR, 0);
1132 apic_write(APIC_ESR, 0);
1133 apic_write(APIC_ESR, 0);
1134 apic_write(APIC_ESR, 0);
1135 }
1136#endif
1137
Jack Steinerac23d4e2008-03-28 14:12:16 -05001138 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 /*
1141 * Double-check whether this APIC is really registered.
1142 * This is meaningless in clustered apic mode, so we skip it.
1143 */
1144 if (!apic_id_registered())
1145 BUG();
1146
1147 /*
1148 * Intel recommends to set DFR, LDR and TPR before enabling
1149 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
1150 * document number 292116). So here it goes...
1151 */
1152 init_apic_ldr();
1153
1154 /*
1155 * Set Task Priority to 'accept all'. We never change this
1156 * later on.
1157 */
1158 value = apic_read(APIC_TASKPRI);
1159 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001160 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001163 * After a crash, we no longer service the interrupts and a pending
1164 * interrupt from previous kernel might still have ISR bit set.
1165 *
1166 * Most probably by now CPU has serviced that pending interrupt and
1167 * it might not have done the ack_APIC_irq() because it thought,
1168 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1169 * does not clear the ISR bit and cpu thinks it has already serivced
1170 * the interrupt. Hence a vector might get locked. It was noticed
1171 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1172 */
1173 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1174 value = apic_read(APIC_ISR + i*0x10);
1175 for (j = 31; j >= 0; j--) {
1176 if (value & (1<<j))
1177 ack_APIC_irq();
1178 }
1179 }
1180
1181 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 * Now that we are all set up, enable the APIC
1183 */
1184 value = apic_read(APIC_SPIV);
1185 value &= ~APIC_VECTOR_MASK;
1186 /*
1187 * Enable APIC
1188 */
1189 value |= APIC_SPIV_APIC_ENABLED;
1190
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001191#ifdef CONFIG_X86_32
1192 /*
1193 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1194 * certain networking cards. If high frequency interrupts are
1195 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1196 * entry is masked/unmasked at a high rate as well then sooner or
1197 * later IOAPIC line gets 'stuck', no more interrupts are received
1198 * from the device. If focus CPU is disabled then the hang goes
1199 * away, oh well :-(
1200 *
1201 * [ This bug can be reproduced easily with a level-triggered
1202 * PCI Ne2000 networking cards and PII/PIII processors, dual
1203 * BX chipset. ]
1204 */
1205 /*
1206 * Actually disabling the focus CPU check just makes the hang less
1207 * frequent as it makes the interrupt distributon model be more
1208 * like LRU than MRU (the short-term load is more even across CPUs).
1209 * See also the comment in end_level_ioapic_irq(). --macro
1210 */
1211
1212 /*
1213 * - enable focus processor (bit==0)
1214 * - 64bit mode always use processor focus
1215 * so no need to set it
1216 */
1217 value &= ~APIC_SPIV_FOCUS_DISABLED;
1218#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 /*
1221 * Set spurious IRQ vector
1222 */
1223 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001224 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /*
1227 * Set up LVT0, LVT1:
1228 *
1229 * set up through-local-APIC on the BP's LINT0. This is not
1230 * strictly necessary in pure symmetric-IO mode, but sometimes
1231 * we delegate interrupts to the 8259A.
1232 */
1233 /*
1234 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1235 */
1236 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001237 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001239 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001240 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 } else {
1242 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001243 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001244 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001246 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 /*
1249 * only the BP should see the LINT1 NMI signal, obviously.
1250 */
1251 if (!smp_processor_id())
1252 value = APIC_DM_NMI;
1253 else
1254 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001255 if (!lapic_is_integrated()) /* 82489DX */
1256 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001257 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001258
Jack Steinerac23d4e2008-03-28 14:12:16 -05001259 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +01001260}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Andi Kleen739f33b2008-01-30 13:30:40 +01001262void __cpuinit end_local_APIC_setup(void)
1263{
1264 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001265
1266#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001267 {
1268 unsigned int value;
1269 /* Disable the local apic timer */
1270 value = apic_read(APIC_LVTT);
1271 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1272 apic_write(APIC_LVTT, value);
1273 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001274#endif
1275
Don Zickusf2802e72006-09-26 10:52:26 +02001276 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 apic_pm_activate();
1278}
1279
Yinghai Lu49899ea2008-08-24 02:01:47 -07001280#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001281void check_x2apic(void)
1282{
1283 int msr, msr2;
1284
1285 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1286
1287 if (msr & X2APIC_ENABLE) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001288 pr_info("x2apic enabled by BIOS, switching to x2apic ops\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001289 x2apic_preenabled = x2apic = 1;
1290 apic_ops = &x2apic_ops;
1291 }
1292}
1293
1294void enable_x2apic(void)
1295{
1296 int msr, msr2;
1297
1298 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1299 if (!(msr & X2APIC_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001300 pr_info("Enabling x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001301 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1302 }
1303}
1304
Al Viro2236d252008-11-22 17:37:34 +00001305void __init enable_IR_x2apic(void)
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001306{
1307#ifdef CONFIG_INTR_REMAP
1308 int ret;
1309 unsigned long flags;
1310
1311 if (!cpu_has_x2apic)
1312 return;
1313
1314 if (!x2apic_preenabled && disable_x2apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001315 pr_info("Skipped enabling x2apic and Interrupt-remapping "
1316 "because of nox2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001317 return;
1318 }
1319
1320 if (x2apic_preenabled && disable_x2apic)
1321 panic("Bios already enabled x2apic, can't enforce nox2apic");
1322
1323 if (!x2apic_preenabled && skip_ioapic_setup) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001324 pr_info("Skipped enabling x2apic and Interrupt-remapping "
1325 "because of skipping io-apic setup\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001326 return;
1327 }
1328
1329 ret = dmar_table_init();
1330 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001331 pr_info("dmar_table_init() failed with %d:\n", ret);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001332
1333 if (x2apic_preenabled)
1334 panic("x2apic enabled by bios. But IR enabling failed");
1335 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001336 pr_info("Not enabling x2apic,Intr-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001337 return;
1338 }
1339
1340 local_irq_save(flags);
1341 mask_8259A();
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001342
1343 ret = save_mask_IO_APIC_setup();
1344 if (ret) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001345 pr_info("Saving IO-APIC state failed: %d\n", ret);
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001346 goto end;
1347 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001348
1349 ret = enable_intr_remapping(1);
1350
1351 if (ret && x2apic_preenabled) {
1352 local_irq_restore(flags);
1353 panic("x2apic enabled by bios. But IR enabling failed");
1354 }
1355
1356 if (ret)
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001357 goto end_restore;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001358
1359 if (!x2apic) {
1360 x2apic = 1;
1361 apic_ops = &x2apic_ops;
1362 enable_x2apic();
1363 }
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001364
1365end_restore:
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001366 if (ret)
1367 /*
1368 * IR enabling failed
1369 */
1370 restore_IO_APIC_setup();
1371 else
1372 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1373
Cyrill Gorcunov5ffa4eb2008-09-18 23:37:57 +04001374end:
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001375 unmask_8259A();
1376 local_irq_restore(flags);
1377
1378 if (!ret) {
1379 if (!x2apic_preenabled)
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001380 pr_info("Enabled x2apic and interrupt-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001381 else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001382 pr_info("Enabled Interrupt-remapping\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001383 } else
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001384 pr_err("Failed to enable Interrupt-remapping and x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001385#else
1386 if (!cpu_has_x2apic)
1387 return;
1388
1389 if (x2apic_preenabled)
1390 panic("x2apic enabled prior OS handover,"
1391 " enable CONFIG_INTR_REMAP");
1392
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001393 pr_info("Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1394 " and x2apic\n");
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001395#endif
1396
1397 return;
1398}
Yinghai Lu49899ea2008-08-24 02:01:47 -07001399#endif /* HAVE_X2APIC */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001400
Yinghai Lube7a6562008-08-24 02:01:51 -07001401#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001402/*
1403 * Detect and enable local APICs on non-SMP boards.
1404 * Original code written by Keir Fraser.
1405 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1406 * not correctly set up (usually the APIC timer won't work etc.)
1407 */
1408static int __init detect_init_APIC(void)
1409{
1410 if (!cpu_has_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001411 pr_info("No local APIC present\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001412 return -1;
1413 }
1414
1415 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001416 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001417 return 0;
1418}
Yinghai Lube7a6562008-08-24 02:01:51 -07001419#else
1420/*
1421 * Detect and initialize APIC
1422 */
1423static int __init detect_init_APIC(void)
1424{
1425 u32 h, l, features;
1426
1427 /* Disabled by kernel option? */
1428 if (disable_apic)
1429 return -1;
1430
1431 switch (boot_cpu_data.x86_vendor) {
1432 case X86_VENDOR_AMD:
1433 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1434 (boot_cpu_data.x86 == 15))
1435 break;
1436 goto no_apic;
1437 case X86_VENDOR_INTEL:
1438 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1439 (boot_cpu_data.x86 == 5 && cpu_has_apic))
1440 break;
1441 goto no_apic;
1442 default:
1443 goto no_apic;
1444 }
1445
1446 if (!cpu_has_apic) {
1447 /*
1448 * Over-ride BIOS and try to enable the local APIC only if
1449 * "lapic" specified.
1450 */
1451 if (!force_enable_local_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001452 pr_info("Local APIC disabled by BIOS -- "
1453 "you can enable it with \"lapic\"\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001454 return -1;
1455 }
1456 /*
1457 * Some BIOSes disable the local APIC in the APIC_BASE
1458 * MSR. This can only be done in software for Intel P6 or later
1459 * and AMD K7 (Model > 1) or later.
1460 */
1461 rdmsr(MSR_IA32_APICBASE, l, h);
1462 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001463 pr_info("Local APIC disabled by BIOS -- reenabling.\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001464 l &= ~MSR_IA32_APICBASE_BASE;
1465 l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1466 wrmsr(MSR_IA32_APICBASE, l, h);
1467 enabled_via_apicbase = 1;
1468 }
1469 }
1470 /*
1471 * The APIC feature bit should now be enabled
1472 * in `cpuid'
1473 */
1474 features = cpuid_edx(1);
1475 if (!(features & (1 << X86_FEATURE_APIC))) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001476 pr_warning("Could not enable APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001477 return -1;
1478 }
1479 set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1480 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1481
1482 /* The BIOS may have set up the APIC at some other address */
1483 rdmsr(MSR_IA32_APICBASE, l, h);
1484 if (l & MSR_IA32_APICBASE_ENABLE)
1485 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1486
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001487 pr_info("Found and enabled local APIC!\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001488
1489 apic_pm_activate();
1490
1491 return 0;
1492
1493no_apic:
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001494 pr_info("No local APIC present or hardware disabled\n");
Yinghai Lube7a6562008-08-24 02:01:51 -07001495 return -1;
1496}
1497#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001498
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001499#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001500void __init early_init_lapic_mapping(void)
1501{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001502 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001503
1504 /*
1505 * If no local APIC can be found then go out
1506 * : it means there is no mpatable and MADT
1507 */
1508 if (!smp_found_config)
1509 return;
1510
Thomas Gleixner431ee792008-05-12 15:43:35 +02001511 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001512
Thomas Gleixner431ee792008-05-12 15:43:35 +02001513 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001514 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001515 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001516
1517 /*
1518 * Fetch the APIC ID of the BSP in case we have a
1519 * default configuration (or the MP table is broken).
1520 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001521 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001522}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001523#endif
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001524
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001525/**
1526 * init_apic_mappings - initialize APIC mappings
1527 */
1528void __init init_apic_mappings(void)
1529{
Yinghai Lu49899ea2008-08-24 02:01:47 -07001530#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001531 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001532 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001533 return;
1534 }
Yinghai Lu49899ea2008-08-24 02:01:47 -07001535#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001536
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001537 /*
1538 * If no local APIC can be found then set up a fake all
1539 * zeroes page to simulate the local APIC and another
1540 * one for the IO-APIC.
1541 */
1542 if (!smp_found_config && detect_init_APIC()) {
1543 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1544 apic_phys = __pa(apic_phys);
1545 } else
1546 apic_phys = mp_lapic_addr;
1547
1548 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
Yinghai Lu79c09692008-09-07 17:58:57 -07001549 apic_printk(APIC_VERBOSE, "mapped APIC to %08lx (%08lx)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001550 APIC_BASE, apic_phys);
1551
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001552 /*
1553 * Fetch the APIC ID of the BSP in case we have a
1554 * default configuration (or the MP table is broken).
1555 */
Yinghai Luf28c0ae2008-08-24 02:01:49 -07001556 if (boot_cpu_physical_apicid == -1U)
1557 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001558}
1559
1560/*
1561 * This initializes the IO-APIC and APIC hardware if this is
1562 * a UP kernel.
1563 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001564int apic_version[MAX_APICS];
1565
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001566int __init APIC_init_uniprocessor(void)
1567{
Yinghai Lufa2bd352008-08-24 02:01:50 -07001568#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001569 if (disable_apic) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001570 pr_info("Apic disabled\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001571 return -1;
1572 }
1573 if (!cpu_has_apic) {
1574 disable_apic = 1;
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001575 pr_info("Apic disabled by BIOS\n");
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001576 return -1;
1577 }
Yinghai Lufa2bd352008-08-24 02:01:50 -07001578#else
1579 if (!smp_found_config && !cpu_has_apic)
1580 return -1;
1581
1582 /*
1583 * Complain if the BIOS pretends there is one.
1584 */
1585 if (!cpu_has_apic &&
1586 APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001587 pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
1588 boot_cpu_physical_apicid);
Yinghai Lufa2bd352008-08-24 02:01:50 -07001589 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1590 return -1;
1591 }
1592#endif
1593
Yinghai Lu49899ea2008-08-24 02:01:47 -07001594#ifdef HAVE_X2APIC
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001595 enable_IR_x2apic();
Yinghai Lu49899ea2008-08-24 02:01:47 -07001596#endif
Yinghai Lufa2bd352008-08-24 02:01:50 -07001597#ifdef CONFIG_X86_64
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001598 setup_apic_routing();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001599#endif
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001600
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001601 verify_local_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001602 connect_bsp_APIC();
1603
Yinghai Lufa2bd352008-08-24 02:01:50 -07001604#ifdef CONFIG_X86_64
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001605 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Yinghai Lufa2bd352008-08-24 02:01:50 -07001606#else
1607 /*
1608 * Hack: In case of kdump, after a crash, kernel might be booting
1609 * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1610 * might be zero if read from MP tables. Get it from LAPIC.
1611 */
1612# ifdef CONFIG_CRASH_DUMP
1613 boot_cpu_physical_apicid = read_apic_id();
1614# endif
1615#endif
1616 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001617 setup_local_APIC();
1618
Yinghai Lufa2bd352008-08-24 02:01:50 -07001619#ifdef CONFIG_X86_64
Andi Kleen739f33b2008-01-30 13:30:40 +01001620 /*
1621 * Now enable IO-APICs, actually call clear_IO_APIC
1622 * We need clear_IO_APIC before enabling vector on BP
1623 */
1624 if (!skip_ioapic_setup && nr_ioapics)
1625 enable_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001626#endif
Andi Kleen739f33b2008-01-30 13:30:40 +01001627
Yinghai Lufa2bd352008-08-24 02:01:50 -07001628#ifdef CONFIG_X86_IO_APIC
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001629 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
Yinghai Lufa2bd352008-08-24 02:01:50 -07001630#endif
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001631 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +01001632 end_local_APIC_setup();
1633
Yinghai Lufa2bd352008-08-24 02:01:50 -07001634#ifdef CONFIG_X86_IO_APIC
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001635 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1636 setup_IO_APIC();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001637# ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001638 else
1639 nr_ioapics = 0;
Yinghai Lufa2bd352008-08-24 02:01:50 -07001640# endif
1641#endif
1642
1643#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001644 setup_boot_APIC_clock();
1645 check_nmi_watchdog();
Yinghai Lufa2bd352008-08-24 02:01:50 -07001646#else
1647 setup_boot_clock();
1648#endif
1649
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001650 return 0;
1651}
1652
1653/*
1654 * Local APIC interrupts
1655 */
1656
1657/*
1658 * This interrupt should _never_ happen with our APIC/SMP architecture
1659 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001660void smp_spurious_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001661{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001662 u32 v;
1663
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001664 exit_idle();
1665 irq_enter();
1666 /*
1667 * Check if this really is a spurious interrupt and ACK it
1668 * if it is a vectored one. Just in case...
1669 * Spurious interrupts should not be ACKed.
1670 */
1671 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1672 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1673 ack_APIC_irq();
1674
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -08001675 inc_irq_stat(irq_spurious_count);
1676
Yinghai Ludc1528d2008-08-24 02:01:53 -07001677 /* see sw-dev-man vol 3, chapter 7.4.13.5 */
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001678 pr_info("spurious APIC interrupt on CPU#%d, "
1679 "should never happen.\n", smp_processor_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001680 irq_exit();
1681}
1682
1683/*
1684 * This interrupt should never happen with our APIC/SMP architecture
1685 */
Yinghai Ludc1528d2008-08-24 02:01:53 -07001686void smp_error_interrupt(struct pt_regs *regs)
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001687{
Yinghai Ludc1528d2008-08-24 02:01:53 -07001688 u32 v, v1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001689
1690 exit_idle();
1691 irq_enter();
1692 /* First tickle the hardware, only then report what went on. -- REW */
1693 v = apic_read(APIC_ESR);
1694 apic_write(APIC_ESR, 0);
1695 v1 = apic_read(APIC_ESR);
1696 ack_APIC_irq();
1697 atomic_inc(&irq_err_count);
1698
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001699 /*
1700 * Here is what the APIC error bits mean:
1701 * 0: Send CS error
1702 * 1: Receive CS error
1703 * 2: Send accept error
1704 * 3: Receive accept error
1705 * 4: Reserved
1706 * 5: Send illegal vector
1707 * 6: Received illegal vector
1708 * 7: Illegal register address
1709 */
1710 pr_debug("APIC error on CPU%d: %02x(%02x)\n",
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001711 smp_processor_id(), v , v1);
1712 irq_exit();
1713}
1714
Glauber Costab5841762008-05-28 13:38:28 -03001715/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001716 * connect_bsp_APIC - attach the APIC to the interrupt system
1717 */
Glauber Costab5841762008-05-28 13:38:28 -03001718void __init connect_bsp_APIC(void)
1719{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001720#ifdef CONFIG_X86_32
1721 if (pic_mode) {
1722 /*
1723 * Do not trust the local APIC being empty at bootup.
1724 */
1725 clear_local_APIC();
1726 /*
1727 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1728 * local APIC to INT and NMI lines.
1729 */
1730 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1731 "enabling APIC mode.\n");
1732 outb(0x70, 0x22);
1733 outb(0x01, 0x23);
1734 }
1735#endif
Glauber Costab5841762008-05-28 13:38:28 -03001736 enable_apic_mode();
1737}
1738
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001739/**
1740 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1741 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1742 *
1743 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1744 * APIC is disabled.
1745 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001746void disconnect_bsp_APIC(int virt_wire_setup)
1747{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001748 unsigned int value;
1749
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001750#ifdef CONFIG_X86_32
1751 if (pic_mode) {
1752 /*
1753 * Put the board back into PIC mode (has an effect only on
1754 * certain older boards). Note that APIC interrupts, including
1755 * IPIs, won't work beyond this point! The only exception are
1756 * INIT IPIs.
1757 */
1758 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1759 "entering PIC mode.\n");
1760 outb(0x70, 0x22);
1761 outb(0x00, 0x23);
1762 return;
1763 }
1764#endif
1765
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001766 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001767
1768 /* For the spurious interrupt use vector F, and enable it */
1769 value = apic_read(APIC_SPIV);
1770 value &= ~APIC_VECTOR_MASK;
1771 value |= APIC_SPIV_APIC_ENABLED;
1772 value |= 0xf;
1773 apic_write(APIC_SPIV, value);
1774
1775 if (!virt_wire_setup) {
1776 /*
1777 * For LVT0 make it edge triggered, active high,
1778 * external and enabled
1779 */
1780 value = apic_read(APIC_LVT0);
1781 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1782 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1783 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1784 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1785 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1786 apic_write(APIC_LVT0, value);
1787 } else {
1788 /* Disable LVT0 */
1789 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1790 }
1791
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001792 /*
1793 * For LVT1 make it edge triggered, active high,
1794 * nmi and enabled
1795 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001796 value = apic_read(APIC_LVT1);
1797 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1798 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1799 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1800 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1801 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1802 apic_write(APIC_LVT1, value);
1803}
1804
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001805void __cpuinit generic_processor_info(int apicid, int version)
1806{
1807 int cpu;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001808
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001809 /*
1810 * Validate version
1811 */
1812 if (version == 0x0) {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01001813 pr_warning("BIOS bug, APIC version is 0 for CPU#%d! "
Mike Travis3b11ce72008-12-17 15:21:39 -08001814 "fixing up to 0x10. (tell your hw vendor)\n",
1815 version);
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001816 version = 0x10;
1817 }
1818 apic_version[apicid] = version;
1819
Mike Travis3b11ce72008-12-17 15:21:39 -08001820 if (num_processors >= nr_cpu_ids) {
1821 int max = nr_cpu_ids;
1822 int thiscpu = max + disabled_cpus;
1823
1824 pr_warning(
1825 "ACPI: NR_CPUS/possible_cpus limit of %i reached."
1826 " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
1827
1828 disabled_cpus++;
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001829 return;
1830 }
1831
1832 num_processors++;
Mike Travis3b11ce72008-12-17 15:21:39 -08001833 cpu = cpumask_next_zero(-1, cpu_present_mask);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001834
1835 physid_set(apicid, phys_cpu_present_map);
1836 if (apicid == boot_cpu_physical_apicid) {
1837 /*
1838 * x86_bios_cpu_apicid is required to have processors listed
1839 * in same order as logical cpu numbers. Hence the first
1840 * entry is BSP, and so on.
1841 */
1842 cpu = 0;
1843 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001844 if (apicid > max_physical_apicid)
1845 max_physical_apicid = apicid;
1846
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001847#ifdef CONFIG_X86_32
1848 /*
1849 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1850 * but we need to work other dependencies like SMP_SUSPEND etc
1851 * before this can be done without some confusion.
1852 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1853 * - Ashok Raj <ashok.raj@intel.com>
1854 */
1855 if (max_physical_apicid >= 8) {
1856 switch (boot_cpu_data.x86_vendor) {
1857 case X86_VENDOR_INTEL:
1858 if (!APIC_XAPIC(version)) {
1859 def_to_bigsmp = 0;
1860 break;
1861 }
1862 /* If P4 and above fall through */
1863 case X86_VENDOR_AMD:
1864 def_to_bigsmp = 1;
1865 }
1866 }
1867#endif
1868
1869#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001870 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001871 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1872 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1873 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001874
1875 cpu_to_apicid[cpu] = apicid;
1876 bios_cpu_apicid[cpu] = apicid;
1877 } else {
1878 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1879 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1880 }
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001881#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001882
Mike Travis1de88cd2008-12-16 17:34:02 -08001883 set_cpu_possible(cpu, true);
1884 set_cpu_present(cpu, true);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001885}
1886
Yinghai Lu34919982008-08-24 02:01:48 -07001887#ifdef CONFIG_X86_64
Suresh Siddha0c81c742008-07-10 11:16:48 -07001888int hard_smp_processor_id(void)
1889{
1890 return read_apic_id();
1891}
Yinghai Lu34919982008-08-24 02:01:48 -07001892#endif
Suresh Siddha0c81c742008-07-10 11:16:48 -07001893
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001894/*
1895 * Power management
1896 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897#ifdef CONFIG_PM
1898
1899static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001900 /*
1901 * 'active' is true if the local APIC was enabled by us and
1902 * not the BIOS; this signifies that we are also responsible
1903 * for disabling it before entering apm/acpi suspend
1904 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 int active;
1906 /* r/w apic fields */
1907 unsigned int apic_id;
1908 unsigned int apic_taskpri;
1909 unsigned int apic_ldr;
1910 unsigned int apic_dfr;
1911 unsigned int apic_spiv;
1912 unsigned int apic_lvtt;
1913 unsigned int apic_lvtpc;
1914 unsigned int apic_lvt0;
1915 unsigned int apic_lvt1;
1916 unsigned int apic_lvterr;
1917 unsigned int apic_tmict;
1918 unsigned int apic_tdcr;
1919 unsigned int apic_thmr;
1920} apic_pm_state;
1921
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001922static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
1924 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001925 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 if (!apic_pm_state.active)
1928 return 0;
1929
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001930 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001931
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001932 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1934 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1935 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1936 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1937 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001938 if (maxlvt >= 4)
1939 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1941 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1942 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1943 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1944 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001945#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001946 if (maxlvt >= 5)
1947 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1948#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001949
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001950 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 disable_local_APIC();
1952 local_irq_restore(flags);
1953 return 0;
1954}
1955
1956static int lapic_resume(struct sys_device *dev)
1957{
1958 unsigned int l, h;
1959 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001960 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962 if (!apic_pm_state.active)
1963 return 0;
1964
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001965 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001968
Yinghai Lu49899ea2008-08-24 02:01:47 -07001969#ifdef HAVE_X2APIC
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001970 if (x2apic)
1971 enable_x2apic();
1972 else
1973#endif
Yinghai Lud5e629a2008-08-17 21:12:27 -07001974 {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001975 /*
1976 * Make sure the APICBASE points to the right address
1977 *
1978 * FIXME! This will be wrong if we ever support suspend on
1979 * SMP! We'll need to do this as part of the CPU restore!
1980 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001981 rdmsr(MSR_IA32_APICBASE, l, h);
1982 l &= ~MSR_IA32_APICBASE_BASE;
1983 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1984 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07001985 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1988 apic_write(APIC_ID, apic_pm_state.apic_id);
1989 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1990 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1991 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1992 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1993 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1994 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001995#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001996 if (maxlvt >= 5)
1997 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1998#endif
1999 if (maxlvt >= 4)
2000 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
2002 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
2003 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
2004 apic_write(APIC_ESR, 0);
2005 apic_read(APIC_ESR);
2006 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
2007 apic_write(APIC_ESR, 0);
2008 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return 0;
2013}
2014
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04002015/*
2016 * This device has no shutdown method - fully functioning local APICs
2017 * are needed on every CPU up until machine_halt/restart/poweroff.
2018 */
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f42007-12-20 02:09:39 +01002021 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 .resume = lapic_resume,
2023 .suspend = lapic_suspend,
2024};
2025
2026static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002027 .id = 0,
2028 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029};
2030
Ashok Raje6982c62005-06-25 14:54:58 -07002031static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
2033 apic_pm_state.active = 1;
2034}
2035
2036static int __init init_lapic_sysfs(void)
2037{
2038 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (!cpu_has_apic)
2041 return 0;
2042 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 error = sysdev_class_register(&lapic_sysclass);
2045 if (!error)
2046 error = sysdev_register(&device_lapic);
2047 return error;
2048}
2049device_initcall(init_lapic_sysfs);
2050
2051#else /* CONFIG_PM */
2052
2053static void apic_pm_activate(void) { }
2054
2055#endif /* CONFIG_PM */
2056
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002057#ifdef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002059 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 *
2061 * Thus far, the major user of this is IBM's Summit2 series:
2062 *
Linus Torvalds637029c2006-02-27 20:41:56 -08002063 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * multi-chassis. Use available data to take a good guess.
2065 * If in doubt, go HPET.
2066 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002067__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
2069 int i, clusters, zeros;
2070 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08002071 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
2073
Yinghai Lu322850a2008-02-23 21:48:42 -08002074 /*
2075 * there is not this kind of box with AMD CPU yet.
2076 * Some AMD box with quadcore cpu and 8 sockets apicid
2077 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08002078 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08002079 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002080 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08002081 return 0;
2082
Mike Travis23ca4bb2008-05-12 21:21:12 +02002083 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec33f2005-05-16 21:53:32 -07002084 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Mike Travis168ef542008-12-16 17:34:01 -08002086 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002087 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01002088 if (bios_cpu_apicid) {
2089 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01002090 }
2091 else if (i < nr_cpu_ids) {
2092 if (cpu_present(i))
2093 id = per_cpu(x86_bios_cpu_apicid, i);
2094 else
2095 continue;
2096 }
2097 else
2098 break;
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (id != BAD_APICID)
2101 __set_bit(APIC_CLUSTERID(id), clustermap);
2102 }
2103
2104 /* Problem: Partially populated chassis may not have CPUs in some of
2105 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01002106 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
2107 * Since clusters are allocated sequentially, count zeros only if
2108 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 */
2110 clusters = 0;
2111 zeros = 0;
2112 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
2113 if (test_bit(i, clustermap)) {
2114 clusters += 1 + zeros;
2115 zeros = 0;
2116 } else
2117 ++zeros;
2118 }
2119
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07002120 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
2121 * not guaranteed to be synced between boards
2122 */
2123 if (is_vsmp_box() && clusters > 1)
2124 return 1;
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02002127 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 * May have to revisit this when multi-core + hyperthreaded CPUs come
2129 * out, but AFAIK this will work even for them.
2130 */
2131 return (clusters > 2);
2132}
Yinghai Luf28c0ae2008-08-24 02:01:49 -07002133#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01002136 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002138static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002139{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07002141 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002142 return 0;
2143}
2144early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002146/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002147static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002148{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04002149 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002150}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02002151early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Linus Torvalds2e7c2832007-03-23 11:32:31 -07002153static int __init parse_lapic_timer_c2_ok(char *arg)
2154{
2155 local_apic_timer_c2_ok = 1;
2156 return 0;
2157}
2158early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
2159
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002160static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002161{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002163 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02002164}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02002165early_param("noapictimer", parse_disable_apic_timer);
2166
2167static int __init parse_nolapic_timer(char *arg)
2168{
2169 disable_apic_timer = 1;
2170 return 0;
2171}
2172early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01002173
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002174static int __init apic_set_verbosity(char *arg)
2175{
2176 if (!arg) {
2177#ifdef CONFIG_X86_64
2178 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002179 return 0;
2180#endif
2181 return -EINVAL;
2182 }
2183
2184 if (strcmp("debug", arg) == 0)
2185 apic_verbosity = APIC_DEBUG;
2186 else if (strcmp("verbose", arg) == 0)
2187 apic_verbosity = APIC_VERBOSE;
2188 else {
Cyrill Gorcunovba21ebb2008-11-10 09:16:41 +01002189 pr_warning("APIC Verbosity level %s not recognised"
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04002190 " use apic=verbose or apic=debug\n", arg);
2191 return -EINVAL;
2192 }
2193
2194 return 0;
2195}
2196early_param("apic", apic_set_verbosity);
2197
Yinghai Lu1e934dd2008-02-22 13:37:26 -08002198static int __init lapic_insert_resource(void)
2199{
2200 if (!apic_phys)
2201 return -1;
2202
2203 /* Put local APIC into the resource map. */
2204 lapic_resource.start = apic_phys;
2205 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
2206 insert_resource(&iomem_resource, &lapic_resource);
2207
2208 return 0;
2209}
2210
2211/*
2212 * need call insert after e820_reserve_resources()
2213 * that is using request_resource
2214 */
2215late_initcall(lapic_insert_resource);