blob: c40a900e155bb71c9f69ca0c50e748af1732645c [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>
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020027#include <linux/clockchips.h>
Thomas Gleixner70a20022008-01-30 13:30:18 +010028#include <linux/acpi_pmtmr.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010029#include <linux/module.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070030#include <linux/dmar.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/atomic.h>
33#include <asm/smp.h>
34#include <asm/mtrr.h>
35#include <asm/mpspec.h>
Yinghai Luefa25592008-08-19 20:50:36 -070036#include <asm/desc.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010037#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/pgalloc.h>
Andi Kleen75152112005-05-16 21:53:34 -070039#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010040#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010041#include <asm/proto.h>
42#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020043#include <asm/apic.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070044#include <asm/i8259.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Glauber Costa5af55732008-03-25 13:28:56 -030046#include <mach_ipi.h>
Glauber Costadd46e3c2008-03-25 18:10:46 -030047#include <mach_apic.h>
Glauber Costa5af55732008-03-25 13:28:56 -030048
Cyrill Gorcunov80e56092008-08-24 02:01:42 -070049/*
50 * Sanity check
51 */
52#if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
53# error SPURIOUS_APIC_VECTOR definition error
54#endif
55
Yinghai Lub3c51172008-08-24 02:01:46 -070056#ifdef CONFIG_X86_32
57/*
58 * Knob to control our willingness to enable the local APIC.
59 *
60 * +1=force-enable
61 */
62static int force_enable_local_apic;
63/*
64 * APIC command line parameters
65 */
66static int __init parse_lapic(char *arg)
67{
68 force_enable_local_apic = 1;
69 return 0;
70}
71early_param("lapic", parse_lapic);
72#endif
73
74#ifdef CONFIG_X86_64
Chris Wrightbc1d99c2007-10-12 23:04:23 +020075static int apic_calibrate_pmtmr __initdata;
Yinghai Lub3c51172008-08-24 02:01:46 -070076static __init int setup_apicpmtimer(char *s)
77{
78 apic_calibrate_pmtmr = 1;
79 notsc_setup(NULL);
80 return 0;
81}
82__setup("apicpmtimer", setup_apicpmtimer);
83#endif
84
Suresh Siddha6e1cb382008-07-10 11:16:58 -070085int disable_x2apic;
Suresh Siddha89027d32008-07-10 11:16:56 -070086int x2apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -070087/* x2apic enabled before OS handover */
88int x2apic_preenabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Yinghai Lub3c51172008-08-24 02:01:46 -070090unsigned long mp_lapic_addr;
91int disable_apic;
92/* Disable local APIC timer from the kernel commandline or via dmi quirk */
93static int disable_apic_timer __cpuinitdata;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010094/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -070095int local_apic_timer_c2_ok;
96EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
97
Yinghai Luefa25592008-08-19 20:50:36 -070098int first_system_vector = 0xfe;
99
100char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
101
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100102/*
103 * Debug level, exported for io_apic.c
104 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +0100105unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100106
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700107int pic_mode;
108
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400109/* Have we found an MP table */
110int smp_found_config;
111
Aaron Durbin39928722006-12-07 02:14:01 +0100112static struct resource lapic_resource = {
113 .name = "Local APIC",
114 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
115};
116
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200117static unsigned int calibration_result;
118
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200119static int lapic_next_event(unsigned long delta,
120 struct clock_event_device *evt);
121static void lapic_timer_setup(enum clock_event_mode mode,
122 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200123static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100124static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200125
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400126/*
127 * The local apic timer can be used for any function which is CPU local.
128 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200129static struct clock_event_device lapic_clockevent = {
130 .name = "lapic",
131 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
132 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
133 .shift = 32,
134 .set_mode = lapic_timer_setup,
135 .set_next_event = lapic_next_event,
136 .broadcast = lapic_timer_broadcast,
137 .rating = 100,
138 .irq = -1,
139};
140static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
141
Andi Kleend3432892008-01-30 13:33:17 +0100142static unsigned long apic_phys;
143
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100144/*
145 * Get the LAPIC version
146 */
147static inline int lapic_get_version(void)
148{
149 return GET_APIC_VERSION(apic_read(APIC_LVR));
150}
151
152/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400153 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100154 */
155static inline int lapic_is_integrated(void)
156{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400157#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100158 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400159#else
160 return APIC_INTEGRATED(lapic_get_version());
161#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100162}
163
164/*
165 * Check, whether this is a modern or a first generation APIC
166 */
167static int modern_apic(void)
168{
169 /* AMD systems use old APIC versions, so check the CPU */
170 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
171 boot_cpu_data.x86 >= 0xf)
172 return 1;
173 return lapic_get_version() >= 0x14;
174}
175
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400176/*
177 * Paravirt kernels also might be using these below ops. So we still
178 * use generic apic_read()/apic_write(), which might be pointing to different
179 * ops in PARAVIRT case.
180 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700181void xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100182{
183 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
184 cpu_relax();
185}
186
Suresh Siddha1b374e42008-07-10 11:16:49 -0700187u32 safe_xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100188{
189 u32 send_status;
190 int timeout;
191
192 timeout = 0;
193 do {
194 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
195 if (!send_status)
196 break;
197 udelay(100);
198 } while (timeout++ < 1000);
199
200 return send_status;
201}
202
Suresh Siddha1b374e42008-07-10 11:16:49 -0700203void xapic_icr_write(u32 low, u32 id)
204{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200205 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700206 apic_write(APIC_ICR, low);
207}
208
209u64 xapic_icr_read(void)
210{
211 u32 icr1, icr2;
212
213 icr2 = apic_read(APIC_ICR2);
214 icr1 = apic_read(APIC_ICR);
215
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400216 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700217}
218
219static struct apic_ops xapic_ops = {
220 .read = native_apic_mem_read,
221 .write = native_apic_mem_write,
Suresh Siddha1b374e42008-07-10 11:16:49 -0700222 .icr_read = xapic_icr_read,
223 .icr_write = xapic_icr_write,
224 .wait_icr_idle = xapic_wait_icr_idle,
225 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
226};
227
228struct apic_ops __read_mostly *apic_ops = &xapic_ops;
Suresh Siddha1b374e42008-07-10 11:16:49 -0700229EXPORT_SYMBOL_GPL(apic_ops);
230
Suresh Siddha13c88fb2008-07-10 11:16:52 -0700231static void x2apic_wait_icr_idle(void)
232{
233 /* no need to wait for icr idle in x2apic */
234 return;
235}
236
237static u32 safe_x2apic_wait_icr_idle(void)
238{
239 /* no need to wait for icr idle in x2apic */
240 return 0;
241}
242
243void x2apic_icr_write(u32 low, u32 id)
244{
245 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
246}
247
248u64 x2apic_icr_read(void)
249{
250 unsigned long val;
251
252 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
253 return val;
254}
255
256static struct apic_ops x2apic_ops = {
257 .read = native_apic_msr_read,
258 .write = native_apic_msr_write,
Suresh Siddha13c88fb2008-07-10 11:16:52 -0700259 .icr_read = x2apic_icr_read,
260 .icr_write = x2apic_icr_write,
261 .wait_icr_idle = x2apic_wait_icr_idle,
262 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
263};
264
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100265/**
266 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
267 */
Jan Beuliche9427102008-01-30 13:31:24 +0100268void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100269{
270 unsigned int v;
271
272 /* unmask and set to NMI */
273 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200274
275 /* Level triggered for 82489DX (32bit mode) */
276 if (!lapic_is_integrated())
277 v |= APIC_LVT_LEVEL_TRIGGER;
278
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100279 apic_write(APIC_LVT0, v);
280}
281
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700282#ifdef CONFIG_X86_32
283/**
284 * get_physical_broadcast - Get number of physical broadcast IDs
285 */
286int get_physical_broadcast(void)
287{
288 return modern_apic() ? 0xff : 0xf;
289}
290#endif
291
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100292/**
293 * lapic_get_maxlvt - get the maximum number of local vector table entries
294 */
295int lapic_get_maxlvt(void)
296{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200297 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100298
299 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200300 /*
301 * - we always have APIC integrated on 64bit mode
302 * - 82489DXs do not report # of LVT entries
303 */
304 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100305}
306
307/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400308 * Local APIC timer
309 */
310
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400311/* Clock divisor */
312#ifdef CONFG_X86_64
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200313#define APIC_DIVISOR 1
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400314#else
315#define APIC_DIVISOR 16
316#endif
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200317
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100318/*
319 * This function sets up the local APIC timer, with a timeout of
320 * 'clocks' APIC bus clock. During calibration we actually call
321 * this function twice on the boot CPU, once with a bogus timeout
322 * value, second time for real. The other (noncalibrating) CPUs
323 * call this function only once, with the real, calibrated value.
324 *
325 * We do reads before writes even if unnecessary, to get around the
326 * P5 APIC double write bug.
327 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100328static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
329{
330 unsigned int lvtt_value, tmp_value;
331
332 lvtt_value = LOCAL_TIMER_VECTOR;
333 if (!oneshot)
334 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200335 if (!lapic_is_integrated())
336 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
337
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100338 if (!irqen)
339 lvtt_value |= APIC_LVT_MASKED;
340
341 apic_write(APIC_LVTT, lvtt_value);
342
343 /*
344 * Divide PICLK by 16
345 */
346 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400347 apic_write(APIC_TDCR,
348 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
349 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100350
351 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200352 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100353}
354
355/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100356 * Setup extended LVT, AMD specific (K8, family 10h)
357 *
358 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
359 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200360 *
361 * If mask=1, the LVT entry does not generate interrupts while mask=0
362 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100363 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100364
365#define APIC_EILVT_LVTOFF_MCE 0
366#define APIC_EILVT_LVTOFF_IBS 1
367
368static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100369{
Robert Richter7b83dae2008-01-30 13:30:40 +0100370 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100371 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
372
373 apic_write(reg, v);
374}
375
Robert Richter7b83dae2008-01-30 13:30:40 +0100376u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
377{
378 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
379 return APIC_EILVT_LVTOFF_MCE;
380}
381
382u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
383{
384 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
385 return APIC_EILVT_LVTOFF_IBS;
386}
Robert Richter6aa360e2008-07-23 15:28:14 +0200387EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100388
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100389/*
390 * Program the next event, relative to now
391 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200392static int lapic_next_event(unsigned long delta,
393 struct clock_event_device *evt)
394{
395 apic_write(APIC_TMICT, delta);
396 return 0;
397}
398
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100399/*
400 * Setup the lapic timer in periodic or oneshot mode
401 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200402static void lapic_timer_setup(enum clock_event_mode mode,
403 struct clock_event_device *evt)
404{
405 unsigned long flags;
406 unsigned int v;
407
408 /* Lapic used as dummy for broadcast ? */
409 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
410 return;
411
412 local_irq_save(flags);
413
414 switch (mode) {
415 case CLOCK_EVT_MODE_PERIODIC:
416 case CLOCK_EVT_MODE_ONESHOT:
417 __setup_APIC_LVTT(calibration_result,
418 mode != CLOCK_EVT_MODE_PERIODIC, 1);
419 break;
420 case CLOCK_EVT_MODE_UNUSED:
421 case CLOCK_EVT_MODE_SHUTDOWN:
422 v = apic_read(APIC_LVTT);
423 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
424 apic_write(APIC_LVTT, v);
425 break;
426 case CLOCK_EVT_MODE_RESUME:
427 /* Nothing to do here */
428 break;
429 }
430
431 local_irq_restore(flags);
432}
433
434/*
435 * Local APIC timer broadcast function
436 */
437static void lapic_timer_broadcast(cpumask_t mask)
438{
439#ifdef CONFIG_SMP
440 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
441#endif
442}
443
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100444/*
445 * Setup the local APIC timer for this CPU. Copy the initilized values
446 * of the boot CPU and register the clock event in the framework.
447 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700448static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200449{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100450 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
451
452 memcpy(levt, &lapic_clockevent, sizeof(*levt));
453 levt->cpumask = cpumask_of_cpu(smp_processor_id());
454
455 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200456}
457
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100458/*
459 * In this function we calibrate APIC bus clocks to the external
460 * timer. Unfortunately we cannot use jiffies and the timer irq
461 * to calibrate, since some later bootup code depends on getting
462 * the first irq? Ugh.
463 *
464 * We want to do the calibration only once since we
465 * want to have local timer irqs syncron. CPUs connected
466 * by the same APIC bus have the very same bus frequency.
467 * And we want to have irqs off anyways, no accidental
468 * APIC irq that way.
469 */
470
471#define TICK_COUNT 100000000
472
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400473static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200474{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100475 unsigned apic, apic_start;
476 unsigned long tsc, tsc_start;
477 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200478
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100479 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200480
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100481 /*
482 * Put whatever arbitrary (but long enough) timeout
483 * value into the APIC clock, we just want to get the
484 * counter running for calibration.
485 *
486 * No interrupt enable !
487 */
488 __setup_APIC_LVTT(250000000, 0, 0);
489
490 apic_start = apic_read(APIC_TMCCT);
491#ifdef CONFIG_X86_PM_TIMER
492 if (apic_calibrate_pmtmr && pmtmr_ioport) {
493 pmtimer_wait(5000); /* 5ms wait */
494 apic = apic_read(APIC_TMCCT);
495 result = (apic_start - apic) * 1000L / 5;
496 } else
497#endif
498 {
499 rdtscll(tsc_start);
500
501 do {
502 apic = apic_read(APIC_TMCCT);
503 rdtscll(tsc);
504 } while ((tsc - tsc_start) < TICK_COUNT &&
505 (apic_start - apic) < TICK_COUNT);
506
507 result = (apic_start - apic) * 1000L * tsc_khz /
508 (tsc - tsc_start);
509 }
510
511 local_irq_enable();
512
513 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
514
515 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
516 result / 1000 / 1000, result / 1000 % 1000);
517
518 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900519 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
520 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100521 lapic_clockevent.max_delta_ns =
522 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
523 lapic_clockevent.min_delta_ns =
524 clockevent_delta2ns(0xF, &lapic_clockevent);
525
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200526 calibration_result = (result * APIC_DIVISOR) / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400527
528 /*
529 * Do a sanity check on the APIC calibration result
530 */
531 if (calibration_result < (1000000 / HZ)) {
532 printk(KERN_WARNING
533 "APIC frequency too slow, disabling apic timer\n");
534 return -1;
535 }
536
537 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200538}
539
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100540/*
541 * Setup the boot APIC
542 *
543 * Calibrate and verify the result.
544 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100545void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100547 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400548 * The local apic timer can be disabled via the kernel
549 * commandline or from the CPU detection code. Register the lapic
550 * timer as a dummy clock event source on SMP systems, so the
551 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100552 */
553 if (disable_apic_timer) {
554 printk(KERN_INFO "Disabling APIC timer\n");
555 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100556 if (num_possible_cpus() > 1) {
557 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100558 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100559 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100560 return;
561 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200562
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400563 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
564 "calibrating APIC timer ...\n");
565
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400566 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100567 /* No broadcast on UP ! */
568 if (num_possible_cpus() > 1)
569 setup_APIC_timer();
570 return;
571 }
572
573 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100574 * If nmi_watchdog is set to IO_APIC, we need the
575 * PIT/HPET going. Otherwise register lapic as a dummy
576 * device.
577 */
578 if (nmi_watchdog != NMI_IO_APIC)
579 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
580 else
581 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200582 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100583
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400584 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100585 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100588void __cpuinit setup_secondary_APIC_clock(void)
589{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100590 setup_APIC_timer();
591}
592
593/*
594 * The guts of the apic timer interrupt
595 */
596static void local_apic_timer_interrupt(void)
597{
598 int cpu = smp_processor_id();
599 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
600
601 /*
602 * Normally we should not be here till LAPIC has been initialized but
603 * in some cases like kdump, its possible that there is a pending LAPIC
604 * timer interrupt from previous kernel's context and is delivered in
605 * new kernel the moment interrupts are enabled.
606 *
607 * Interrupts are enabled early and LAPIC is setup much later, hence
608 * its possible that when we get here evt->event_handler is NULL.
609 * Check for event_handler being NULL and discard the interrupt as
610 * spurious.
611 */
612 if (!evt->event_handler) {
613 printk(KERN_WARNING
614 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
615 /* Switch it off */
616 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
617 return;
618 }
619
620 /*
621 * the NMI deadlock-detector uses this.
622 */
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400623#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100624 add_pda(apic_timer_irqs, 1);
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400625#else
626 per_cpu(irq_stat, cpu).apic_timer_irqs++;
627#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100628
629 evt->event_handler(evt);
630}
631
632/*
633 * Local APIC timer interrupt. This is the most natural way for doing
634 * local interrupts, but local timer interrupts can be emulated by
635 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
636 *
637 * [ if a single-CPU system runs an SMP kernel then we call the local
638 * interrupt as well. Thus we cannot inline the local irq ... ]
639 */
640void smp_apic_timer_interrupt(struct pt_regs *regs)
641{
642 struct pt_regs *old_regs = set_irq_regs(regs);
643
644 /*
645 * NOTE! We'd better ACK the irq immediately,
646 * because timer handling can be slow.
647 */
648 ack_APIC_irq();
649 /*
650 * update_process_times() expects us to have done irq_enter().
651 * Besides, if we don't timer interrupts ignore the global
652 * interrupt lock, which is the WrongThing (tm) to do.
653 */
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700654#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100655 exit_idle();
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700656#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100657 irq_enter();
658 local_apic_timer_interrupt();
659 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400660
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100661 set_irq_regs(old_regs);
662}
663
664int setup_profiling_timer(unsigned int multiplier)
665{
666 return -EINVAL;
667}
668
669
670/*
671 * Local APIC start and shutdown
672 */
673
674/**
675 * clear_local_APIC - shutdown the local APIC
676 *
677 * This is called, when a CPU is disabled and before rebooting, so the state of
678 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
679 * leftovers during boot.
680 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681void clear_local_APIC(void)
682{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400683 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100684 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Andi Kleend3432892008-01-30 13:33:17 +0100686 /* APIC hasn't been mapped yet */
687 if (!apic_phys)
688 return;
689
690 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200692 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 * if the vector is zero. Mask LVTERR first to prevent this.
694 */
695 if (maxlvt >= 3) {
696 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100697 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699 /*
700 * Careful: we have to set masks only first to deassert
701 * any level-triggered sources.
702 */
703 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100704 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100706 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100708 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (maxlvt >= 4) {
710 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100711 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400714 /* lets not touch this if we didn't frob it */
715#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
716 if (maxlvt >= 5) {
717 v = apic_read(APIC_LVTTHMR);
718 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
719 }
720#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /*
722 * Clean APIC state for other OSs:
723 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100724 apic_write(APIC_LVTT, APIC_LVT_MASKED);
725 apic_write(APIC_LVT0, APIC_LVT_MASKED);
726 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100728 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100730 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400731
732 /* Integrated APIC (!82489DX) ? */
733 if (lapic_is_integrated()) {
734 if (maxlvt > 3)
735 /* Clear ESR due to Pentium errata 3AP and 11AP */
736 apic_write(APIC_ESR, 0);
737 apic_read(APIC_ESR);
738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100741/**
742 * disable_local_APIC - clear and disable the local APIC
743 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744void disable_local_APIC(void)
745{
746 unsigned int value;
747
748 clear_local_APIC();
749
750 /*
751 * Disable APIC (implies clearing of registers
752 * for 82489DX!).
753 */
754 value = apic_read(APIC_SPIV);
755 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100756 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400757
758#ifdef CONFIG_X86_32
759 /*
760 * When LAPIC was disabled by the BIOS and enabled by the kernel,
761 * restore the disabled state.
762 */
763 if (enabled_via_apicbase) {
764 unsigned int l, h;
765
766 rdmsr(MSR_IA32_APICBASE, l, h);
767 l &= ~MSR_IA32_APICBASE_ENABLE;
768 wrmsr(MSR_IA32_APICBASE, l, h);
769 }
770#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400773/*
774 * If Linux enabled the LAPIC against the BIOS default disable it down before
775 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
776 * not power-off. Additionally clear all LVT entries before disable_local_APIC
777 * for the case where Linux didn't enable the LAPIC.
778 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700779void lapic_shutdown(void)
780{
781 unsigned long flags;
782
783 if (!cpu_has_apic)
784 return;
785
786 local_irq_save(flags);
787
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400788#ifdef CONFIG_X86_32
789 if (!enabled_via_apicbase)
790 clear_local_APIC();
791 else
792#endif
793 disable_local_APIC();
794
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700795
796 local_irq_restore(flags);
797}
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799/*
800 * This is to verify that we're looking at a real local APIC.
801 * Check these against your board if the CPUs aren't getting
802 * started for no apparent reason.
803 */
804int __init verify_local_APIC(void)
805{
806 unsigned int reg0, reg1;
807
808 /*
809 * The version register is read-only in a real APIC.
810 */
811 reg0 = apic_read(APIC_LVR);
812 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
813 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
814 reg1 = apic_read(APIC_LVR);
815 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
816
817 /*
818 * The two version reads above should print the same
819 * numbers. If the second one is different, then we
820 * poke at a non-APIC.
821 */
822 if (reg1 != reg0)
823 return 0;
824
825 /*
826 * Check if the version looks reasonably.
827 */
828 reg1 = GET_APIC_VERSION(reg0);
829 if (reg1 == 0x00 || reg1 == 0xff)
830 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100831 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (reg1 < 0x02 || reg1 == 0xff)
833 return 0;
834
835 /*
836 * The ID register is read/write in a real APIC.
837 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700838 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
840 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700841 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
843 apic_write(APIC_ID, reg0);
844 if (reg1 != (reg0 ^ APIC_ID_MASK))
845 return 0;
846
847 /*
848 * The next two are just to see if we have sane values.
849 * They're only really relevant if we're in Virtual Wire
850 * compatibility mode, but most boxes are anymore.
851 */
852 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100853 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 reg1 = apic_read(APIC_LVT1);
855 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
856
857 return 1;
858}
859
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100860/**
861 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
862 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863void __init sync_Arb_IDs(void)
864{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +0200865 /*
866 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
867 * needed on AMD.
868 */
869 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return;
871
872 /*
873 * Wait for idle.
874 */
875 apic_wait_icr_idle();
876
877 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +0400878 apic_write(APIC_ICR, APIC_DEST_ALLINC |
879 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
883 * An initial setup of the virtual wire mode.
884 */
885void __init init_bsp_APIC(void)
886{
Andi Kleen11a8e772006-01-11 22:46:51 +0100887 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /*
890 * Don't do the setup now if we have a SMP BIOS as the
891 * through-I/O-APIC virtual wire mode might be active.
892 */
893 if (smp_found_config || !cpu_has_apic)
894 return;
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 /*
897 * Do not trust the local APIC being empty at bootup.
898 */
899 clear_local_APIC();
900
901 /*
902 * Enable APIC.
903 */
904 value = apic_read(APIC_SPIV);
905 value &= ~APIC_VECTOR_MASK;
906 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400907
908#ifdef CONFIG_X86_32
909 /* This bit is reserved on P4/Xeon and should be cleared */
910 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
911 (boot_cpu_data.x86 == 15))
912 value &= ~APIC_SPIV_FOCUS_DISABLED;
913 else
914#endif
915 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100917 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 /*
920 * Set up the virtual wire mode.
921 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100922 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400924 if (!lapic_is_integrated()) /* 82489DX */
925 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +0100926 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +0400929static void __cpuinit lapic_setup_esr(void)
930{
931 unsigned long oldvalue, value, maxlvt;
932 if (lapic_is_integrated() && !esr_disable) {
933 if (esr_disable) {
934 /*
935 * Something untraceable is creating bad interrupts on
936 * secondary quads ... for the moment, just leave the
937 * ESR disabled - we can't do anything useful with the
938 * errors anyway - mbligh
939 */
940 printk(KERN_INFO "Leaving ESR disabled.\n");
941 return;
942 }
943 /* !82489DX */
944 maxlvt = lapic_get_maxlvt();
945 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
946 apic_write(APIC_ESR, 0);
947 oldvalue = apic_read(APIC_ESR);
948
949 /* enables sending errors */
950 value = ERROR_APIC_VECTOR;
951 apic_write(APIC_LVTERR, value);
952 /*
953 * spec says clear errors after enabling vector.
954 */
955 if (maxlvt > 3)
956 apic_write(APIC_ESR, 0);
957 value = apic_read(APIC_ESR);
958 if (value != oldvalue)
959 apic_printk(APIC_VERBOSE, "ESR value before enabling "
960 "vector: 0x%08lx after: 0x%08lx\n",
961 oldvalue, value);
962 } else {
963 printk(KERN_INFO "No ESR for 82489DX.\n");
964 }
965}
966
967
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100968/**
969 * setup_local_APIC - setup the local APIC
970 */
971void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Andi Kleen739f33b2008-01-30 13:30:40 +0100973 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100974 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700976#ifdef CONFIG_X86_32
977 /* Pound the ESR really hard over the head with a big hammer - mbligh */
978 if (esr_disable) {
979 apic_write(APIC_ESR, 0);
980 apic_write(APIC_ESR, 0);
981 apic_write(APIC_ESR, 0);
982 apic_write(APIC_ESR, 0);
983 }
984#endif
985
Jack Steinerac23d4e2008-03-28 14:12:16 -0500986 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 /*
989 * Double-check whether this APIC is really registered.
990 * This is meaningless in clustered apic mode, so we skip it.
991 */
992 if (!apic_id_registered())
993 BUG();
994
995 /*
996 * Intel recommends to set DFR, LDR and TPR before enabling
997 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
998 * document number 292116). So here it goes...
999 */
1000 init_apic_ldr();
1001
1002 /*
1003 * Set Task Priority to 'accept all'. We never change this
1004 * later on.
1005 */
1006 value = apic_read(APIC_TASKPRI);
1007 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +01001008 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +01001011 * After a crash, we no longer service the interrupts and a pending
1012 * interrupt from previous kernel might still have ISR bit set.
1013 *
1014 * Most probably by now CPU has serviced that pending interrupt and
1015 * it might not have done the ack_APIC_irq() because it thought,
1016 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1017 * does not clear the ISR bit and cpu thinks it has already serivced
1018 * the interrupt. Hence a vector might get locked. It was noticed
1019 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1020 */
1021 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1022 value = apic_read(APIC_ISR + i*0x10);
1023 for (j = 31; j >= 0; j--) {
1024 if (value & (1<<j))
1025 ack_APIC_irq();
1026 }
1027 }
1028
1029 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 * Now that we are all set up, enable the APIC
1031 */
1032 value = apic_read(APIC_SPIV);
1033 value &= ~APIC_VECTOR_MASK;
1034 /*
1035 * Enable APIC
1036 */
1037 value |= APIC_SPIV_APIC_ENABLED;
1038
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001039#ifdef CONFIG_X86_32
1040 /*
1041 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1042 * certain networking cards. If high frequency interrupts are
1043 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1044 * entry is masked/unmasked at a high rate as well then sooner or
1045 * later IOAPIC line gets 'stuck', no more interrupts are received
1046 * from the device. If focus CPU is disabled then the hang goes
1047 * away, oh well :-(
1048 *
1049 * [ This bug can be reproduced easily with a level-triggered
1050 * PCI Ne2000 networking cards and PII/PIII processors, dual
1051 * BX chipset. ]
1052 */
1053 /*
1054 * Actually disabling the focus CPU check just makes the hang less
1055 * frequent as it makes the interrupt distributon model be more
1056 * like LRU than MRU (the short-term load is more even across CPUs).
1057 * See also the comment in end_level_ioapic_irq(). --macro
1058 */
1059
1060 /*
1061 * - enable focus processor (bit==0)
1062 * - 64bit mode always use processor focus
1063 * so no need to set it
1064 */
1065 value &= ~APIC_SPIV_FOCUS_DISABLED;
1066#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /*
1069 * Set spurious IRQ vector
1070 */
1071 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001072 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /*
1075 * Set up LVT0, LVT1:
1076 *
1077 * set up through-local-APIC on the BP's LINT0. This is not
1078 * strictly necessary in pure symmetric-IO mode, but sometimes
1079 * we delegate interrupts to the 8259A.
1080 */
1081 /*
1082 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1083 */
1084 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001085 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001087 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001088 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 } else {
1090 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001091 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001092 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001094 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /*
1097 * only the BP should see the LINT1 NMI signal, obviously.
1098 */
1099 if (!smp_processor_id())
1100 value = APIC_DM_NMI;
1101 else
1102 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001103 if (!lapic_is_integrated()) /* 82489DX */
1104 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001105 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001106
Jack Steinerac23d4e2008-03-28 14:12:16 -05001107 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +01001108}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Andi Kleen739f33b2008-01-30 13:30:40 +01001110void __cpuinit end_local_APIC_setup(void)
1111{
1112 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001113
1114#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001115 {
1116 unsigned int value;
1117 /* Disable the local apic timer */
1118 value = apic_read(APIC_LVTT);
1119 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1120 apic_write(APIC_LVTT, value);
1121 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001122#endif
1123
Don Zickusf2802e72006-09-26 10:52:26 +02001124 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 apic_pm_activate();
1126}
1127
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001128void check_x2apic(void)
1129{
1130 int msr, msr2;
1131
1132 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1133
1134 if (msr & X2APIC_ENABLE) {
1135 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
1136 x2apic_preenabled = x2apic = 1;
1137 apic_ops = &x2apic_ops;
1138 }
1139}
1140
1141void enable_x2apic(void)
1142{
1143 int msr, msr2;
1144
1145 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1146 if (!(msr & X2APIC_ENABLE)) {
1147 printk("Enabling x2apic\n");
1148 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1149 }
1150}
1151
1152void enable_IR_x2apic(void)
1153{
1154#ifdef CONFIG_INTR_REMAP
1155 int ret;
1156 unsigned long flags;
1157
1158 if (!cpu_has_x2apic)
1159 return;
1160
1161 if (!x2apic_preenabled && disable_x2apic) {
1162 printk(KERN_INFO
1163 "Skipped enabling x2apic and Interrupt-remapping "
1164 "because of nox2apic\n");
1165 return;
1166 }
1167
1168 if (x2apic_preenabled && disable_x2apic)
1169 panic("Bios already enabled x2apic, can't enforce nox2apic");
1170
1171 if (!x2apic_preenabled && skip_ioapic_setup) {
1172 printk(KERN_INFO
1173 "Skipped enabling x2apic and Interrupt-remapping "
1174 "because of skipping io-apic setup\n");
1175 return;
1176 }
1177
1178 ret = dmar_table_init();
1179 if (ret) {
1180 printk(KERN_INFO
1181 "dmar_table_init() failed with %d:\n", ret);
1182
1183 if (x2apic_preenabled)
1184 panic("x2apic enabled by bios. But IR enabling failed");
1185 else
1186 printk(KERN_INFO
1187 "Not enabling x2apic,Intr-remapping\n");
1188 return;
1189 }
1190
1191 local_irq_save(flags);
1192 mask_8259A();
1193 save_mask_IO_APIC_setup();
1194
1195 ret = enable_intr_remapping(1);
1196
1197 if (ret && x2apic_preenabled) {
1198 local_irq_restore(flags);
1199 panic("x2apic enabled by bios. But IR enabling failed");
1200 }
1201
1202 if (ret)
1203 goto end;
1204
1205 if (!x2apic) {
1206 x2apic = 1;
1207 apic_ops = &x2apic_ops;
1208 enable_x2apic();
1209 }
1210end:
1211 if (ret)
1212 /*
1213 * IR enabling failed
1214 */
1215 restore_IO_APIC_setup();
1216 else
1217 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1218
1219 unmask_8259A();
1220 local_irq_restore(flags);
1221
1222 if (!ret) {
1223 if (!x2apic_preenabled)
1224 printk(KERN_INFO
1225 "Enabled x2apic and interrupt-remapping\n");
1226 else
1227 printk(KERN_INFO
1228 "Enabled Interrupt-remapping\n");
1229 } else
1230 printk(KERN_ERR
1231 "Failed to enable Interrupt-remapping and x2apic\n");
1232#else
1233 if (!cpu_has_x2apic)
1234 return;
1235
1236 if (x2apic_preenabled)
1237 panic("x2apic enabled prior OS handover,"
1238 " enable CONFIG_INTR_REMAP");
1239
1240 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1241 " and x2apic\n");
1242#endif
1243
1244 return;
1245}
1246
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001247/*
1248 * Detect and enable local APICs on non-SMP boards.
1249 * Original code written by Keir Fraser.
1250 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1251 * not correctly set up (usually the APIC timer won't work etc.)
1252 */
1253static int __init detect_init_APIC(void)
1254{
1255 if (!cpu_has_apic) {
1256 printk(KERN_INFO "No local APIC present\n");
1257 return -1;
1258 }
1259
1260 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001261 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001262 return 0;
1263}
1264
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001265void __init early_init_lapic_mapping(void)
1266{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001267 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001268
1269 /*
1270 * If no local APIC can be found then go out
1271 * : it means there is no mpatable and MADT
1272 */
1273 if (!smp_found_config)
1274 return;
1275
Thomas Gleixner431ee792008-05-12 15:43:35 +02001276 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001277
Thomas Gleixner431ee792008-05-12 15:43:35 +02001278 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001279 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001280 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001281
1282 /*
1283 * Fetch the APIC ID of the BSP in case we have a
1284 * default configuration (or the MP table is broken).
1285 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001286 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001287}
1288
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001289/**
1290 * init_apic_mappings - initialize APIC mappings
1291 */
1292void __init init_apic_mappings(void)
1293{
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001294 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001295 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001296 return;
1297 }
1298
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001299 /*
1300 * If no local APIC can be found then set up a fake all
1301 * zeroes page to simulate the local APIC and another
1302 * one for the IO-APIC.
1303 */
1304 if (!smp_found_config && detect_init_APIC()) {
1305 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1306 apic_phys = __pa(apic_phys);
1307 } else
1308 apic_phys = mp_lapic_addr;
1309
1310 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1311 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1312 APIC_BASE, apic_phys);
1313
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001314 /*
1315 * Fetch the APIC ID of the BSP in case we have a
1316 * default configuration (or the MP table is broken).
1317 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001318 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001319}
1320
1321/*
1322 * This initializes the IO-APIC and APIC hardware if this is
1323 * a UP kernel.
1324 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001325int apic_version[MAX_APICS];
1326
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001327int __init APIC_init_uniprocessor(void)
1328{
1329 if (disable_apic) {
1330 printk(KERN_INFO "Apic disabled\n");
1331 return -1;
1332 }
1333 if (!cpu_has_apic) {
1334 disable_apic = 1;
1335 printk(KERN_INFO "Apic disabled by BIOS\n");
1336 return -1;
1337 }
1338
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001339 enable_IR_x2apic();
1340 setup_apic_routing();
1341
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001342 verify_local_APIC();
1343
Glauber Costab5841762008-05-28 13:38:28 -03001344 connect_bsp_APIC();
1345
Jack Steinerb6df1b82008-06-19 21:51:05 -05001346 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001347 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001348
1349 setup_local_APIC();
1350
Andi Kleen739f33b2008-01-30 13:30:40 +01001351 /*
1352 * Now enable IO-APICs, actually call clear_IO_APIC
1353 * We need clear_IO_APIC before enabling vector on BP
1354 */
1355 if (!skip_ioapic_setup && nr_ioapics)
1356 enable_IO_APIC();
1357
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001358 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1359 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +01001360 end_local_APIC_setup();
1361
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001362 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1363 setup_IO_APIC();
1364 else
1365 nr_ioapics = 0;
1366 setup_boot_APIC_clock();
1367 check_nmi_watchdog();
1368 return 0;
1369}
1370
1371/*
1372 * Local APIC interrupts
1373 */
1374
1375/*
1376 * This interrupt should _never_ happen with our APIC/SMP architecture
1377 */
1378asmlinkage void smp_spurious_interrupt(void)
1379{
1380 unsigned int v;
1381 exit_idle();
1382 irq_enter();
1383 /*
1384 * Check if this really is a spurious interrupt and ACK it
1385 * if it is a vectored one. Just in case...
1386 * Spurious interrupts should not be ACKed.
1387 */
1388 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1389 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1390 ack_APIC_irq();
1391
1392 add_pda(irq_spurious_count, 1);
1393 irq_exit();
1394}
1395
1396/*
1397 * This interrupt should never happen with our APIC/SMP architecture
1398 */
1399asmlinkage void smp_error_interrupt(void)
1400{
1401 unsigned int v, v1;
1402
1403 exit_idle();
1404 irq_enter();
1405 /* First tickle the hardware, only then report what went on. -- REW */
1406 v = apic_read(APIC_ESR);
1407 apic_write(APIC_ESR, 0);
1408 v1 = apic_read(APIC_ESR);
1409 ack_APIC_irq();
1410 atomic_inc(&irq_err_count);
1411
1412 /* Here is what the APIC error bits mean:
1413 0: Send CS error
1414 1: Receive CS error
1415 2: Send accept error
1416 3: Receive accept error
1417 4: Reserved
1418 5: Send illegal vector
1419 6: Received illegal vector
1420 7: Illegal register address
1421 */
1422 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1423 smp_processor_id(), v , v1);
1424 irq_exit();
1425}
1426
Glauber Costab5841762008-05-28 13:38:28 -03001427/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001428 * connect_bsp_APIC - attach the APIC to the interrupt system
1429 */
Glauber Costab5841762008-05-28 13:38:28 -03001430void __init connect_bsp_APIC(void)
1431{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001432#ifdef CONFIG_X86_32
1433 if (pic_mode) {
1434 /*
1435 * Do not trust the local APIC being empty at bootup.
1436 */
1437 clear_local_APIC();
1438 /*
1439 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1440 * local APIC to INT and NMI lines.
1441 */
1442 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1443 "enabling APIC mode.\n");
1444 outb(0x70, 0x22);
1445 outb(0x01, 0x23);
1446 }
1447#endif
Glauber Costab5841762008-05-28 13:38:28 -03001448 enable_apic_mode();
1449}
1450
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001451/**
1452 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1453 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1454 *
1455 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1456 * APIC is disabled.
1457 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001458void disconnect_bsp_APIC(int virt_wire_setup)
1459{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001460 unsigned int value;
1461
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001462#ifdef CONFIG_X86_32
1463 if (pic_mode) {
1464 /*
1465 * Put the board back into PIC mode (has an effect only on
1466 * certain older boards). Note that APIC interrupts, including
1467 * IPIs, won't work beyond this point! The only exception are
1468 * INIT IPIs.
1469 */
1470 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1471 "entering PIC mode.\n");
1472 outb(0x70, 0x22);
1473 outb(0x00, 0x23);
1474 return;
1475 }
1476#endif
1477
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001478 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001479
1480 /* For the spurious interrupt use vector F, and enable it */
1481 value = apic_read(APIC_SPIV);
1482 value &= ~APIC_VECTOR_MASK;
1483 value |= APIC_SPIV_APIC_ENABLED;
1484 value |= 0xf;
1485 apic_write(APIC_SPIV, value);
1486
1487 if (!virt_wire_setup) {
1488 /*
1489 * For LVT0 make it edge triggered, active high,
1490 * external and enabled
1491 */
1492 value = apic_read(APIC_LVT0);
1493 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1494 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1495 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1496 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1497 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1498 apic_write(APIC_LVT0, value);
1499 } else {
1500 /* Disable LVT0 */
1501 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1502 }
1503
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001504 /*
1505 * For LVT1 make it edge triggered, active high,
1506 * nmi and enabled
1507 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001508 value = apic_read(APIC_LVT1);
1509 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1510 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1511 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1512 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1513 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1514 apic_write(APIC_LVT1, value);
1515}
1516
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001517void __cpuinit generic_processor_info(int apicid, int version)
1518{
1519 int cpu;
1520 cpumask_t tmp_map;
1521
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001522 /*
1523 * Validate version
1524 */
1525 if (version == 0x0) {
1526 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1527 "fixing up to 0x10. (tell your hw vendor)\n",
1528 version);
1529 version = 0x10;
1530 }
1531 apic_version[apicid] = version;
1532
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001533 if (num_processors >= NR_CPUS) {
1534 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001535 " Processor ignored.\n", NR_CPUS);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001536 return;
1537 }
1538
1539 num_processors++;
1540 cpus_complement(tmp_map, cpu_present_map);
1541 cpu = first_cpu(tmp_map);
1542
1543 physid_set(apicid, phys_cpu_present_map);
1544 if (apicid == boot_cpu_physical_apicid) {
1545 /*
1546 * x86_bios_cpu_apicid is required to have processors listed
1547 * in same order as logical cpu numbers. Hence the first
1548 * entry is BSP, and so on.
1549 */
1550 cpu = 0;
1551 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001552 if (apicid > max_physical_apicid)
1553 max_physical_apicid = apicid;
1554
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001555#ifdef CONFIG_X86_32
1556 /*
1557 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1558 * but we need to work other dependencies like SMP_SUSPEND etc
1559 * before this can be done without some confusion.
1560 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1561 * - Ashok Raj <ashok.raj@intel.com>
1562 */
1563 if (max_physical_apicid >= 8) {
1564 switch (boot_cpu_data.x86_vendor) {
1565 case X86_VENDOR_INTEL:
1566 if (!APIC_XAPIC(version)) {
1567 def_to_bigsmp = 0;
1568 break;
1569 }
1570 /* If P4 and above fall through */
1571 case X86_VENDOR_AMD:
1572 def_to_bigsmp = 1;
1573 }
1574 }
1575#endif
1576
1577#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001578 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001579 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1580 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1581 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001582
1583 cpu_to_apicid[cpu] = apicid;
1584 bios_cpu_apicid[cpu] = apicid;
1585 } else {
1586 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1587 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1588 }
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001589#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001590
1591 cpu_set(cpu, cpu_possible_map);
1592 cpu_set(cpu, cpu_present_map);
1593}
1594
Suresh Siddha0c81c742008-07-10 11:16:48 -07001595int hard_smp_processor_id(void)
1596{
1597 return read_apic_id();
1598}
1599
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001600/*
1601 * Power management
1602 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603#ifdef CONFIG_PM
1604
1605static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001606 /*
1607 * 'active' is true if the local APIC was enabled by us and
1608 * not the BIOS; this signifies that we are also responsible
1609 * for disabling it before entering apm/acpi suspend
1610 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int active;
1612 /* r/w apic fields */
1613 unsigned int apic_id;
1614 unsigned int apic_taskpri;
1615 unsigned int apic_ldr;
1616 unsigned int apic_dfr;
1617 unsigned int apic_spiv;
1618 unsigned int apic_lvtt;
1619 unsigned int apic_lvtpc;
1620 unsigned int apic_lvt0;
1621 unsigned int apic_lvt1;
1622 unsigned int apic_lvterr;
1623 unsigned int apic_tmict;
1624 unsigned int apic_tdcr;
1625 unsigned int apic_thmr;
1626} apic_pm_state;
1627
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001628static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001631 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 if (!apic_pm_state.active)
1634 return 0;
1635
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001636 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001637
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001638 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1640 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1641 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1642 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1643 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001644 if (maxlvt >= 4)
1645 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1647 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1648 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1649 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1650 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001651#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001652 if (maxlvt >= 5)
1653 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1654#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001655
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001656 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 disable_local_APIC();
1658 local_irq_restore(flags);
1659 return 0;
1660}
1661
1662static int lapic_resume(struct sys_device *dev)
1663{
1664 unsigned int l, h;
1665 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001666 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 if (!apic_pm_state.active)
1669 return 0;
1670
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001671 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001674
1675#ifdef CONFIG_X86_64
1676 if (x2apic)
1677 enable_x2apic();
1678 else
1679#endif
Yinghai Lud5e629a2008-08-17 21:12:27 -07001680 {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001681 /*
1682 * Make sure the APICBASE points to the right address
1683 *
1684 * FIXME! This will be wrong if we ever support suspend on
1685 * SMP! We'll need to do this as part of the CPU restore!
1686 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001687 rdmsr(MSR_IA32_APICBASE, l, h);
1688 l &= ~MSR_IA32_APICBASE_BASE;
1689 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1690 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07001691 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1694 apic_write(APIC_ID, apic_pm_state.apic_id);
1695 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1696 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1697 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1698 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1699 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1700 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001701#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001702 if (maxlvt >= 5)
1703 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1704#endif
1705 if (maxlvt >= 4)
1706 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1708 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1709 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1710 apic_write(APIC_ESR, 0);
1711 apic_read(APIC_ESR);
1712 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1713 apic_write(APIC_ESR, 0);
1714 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return 0;
1719}
1720
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001721/*
1722 * This device has no shutdown method - fully functioning local APICs
1723 * are needed on every CPU up until machine_halt/restart/poweroff.
1724 */
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001727 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 .resume = lapic_resume,
1729 .suspend = lapic_suspend,
1730};
1731
1732static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001733 .id = 0,
1734 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735};
1736
Ashok Raje6982c62005-06-25 14:54:58 -07001737static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
1739 apic_pm_state.active = 1;
1740}
1741
1742static int __init init_lapic_sysfs(void)
1743{
1744 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (!cpu_has_apic)
1747 return 0;
1748 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 error = sysdev_class_register(&lapic_sysclass);
1751 if (!error)
1752 error = sysdev_register(&device_lapic);
1753 return error;
1754}
1755device_initcall(init_lapic_sysfs);
1756
1757#else /* CONFIG_PM */
1758
1759static void apic_pm_activate(void) { }
1760
1761#endif /* CONFIG_PM */
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001764 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 *
1766 * Thus far, the major user of this is IBM's Summit2 series:
1767 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001768 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 * multi-chassis. Use available data to take a good guess.
1770 * If in doubt, go HPET.
1771 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001772__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
1774 int i, clusters, zeros;
1775 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001776 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1778
Yinghai Lu322850a2008-02-23 21:48:42 -08001779 /*
1780 * there is not this kind of box with AMD CPU yet.
1781 * Some AMD box with quadcore cpu and 8 sockets apicid
1782 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001783 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001784 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001785 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001786 return 0;
1787
Mike Travis23ca4bb2008-05-12 21:21:12 +02001788 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001789 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001792 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001793 if (bios_cpu_apicid) {
1794 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001795 }
1796 else if (i < nr_cpu_ids) {
1797 if (cpu_present(i))
1798 id = per_cpu(x86_bios_cpu_apicid, i);
1799 else
1800 continue;
1801 }
1802 else
1803 break;
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (id != BAD_APICID)
1806 __set_bit(APIC_CLUSTERID(id), clustermap);
1807 }
1808
1809 /* Problem: Partially populated chassis may not have CPUs in some of
1810 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001811 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1812 * Since clusters are allocated sequentially, count zeros only if
1813 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 */
1815 clusters = 0;
1816 zeros = 0;
1817 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1818 if (test_bit(i, clustermap)) {
1819 clusters += 1 + zeros;
1820 zeros = 0;
1821 } else
1822 ++zeros;
1823 }
1824
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001825 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1826 * not guaranteed to be synced between boards
1827 */
1828 if (is_vsmp_box() && clusters > 1)
1829 return 1;
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001832 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 * May have to revisit this when multi-core + hyperthreaded CPUs come
1834 * out, but AFAIK this will work even for them.
1835 */
1836 return (clusters > 2);
1837}
1838
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001839static __init int setup_nox2apic(char *str)
1840{
1841 disable_x2apic = 1;
1842 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_X2APIC);
1843 return 0;
1844}
1845early_param("nox2apic", setup_nox2apic);
1846
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001849 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04001851static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001852{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001854 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001855 return 0;
1856}
1857early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001859/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04001860static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001861{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04001862 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001863}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001864early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001866static int __init parse_lapic_timer_c2_ok(char *arg)
1867{
1868 local_apic_timer_c2_ok = 1;
1869 return 0;
1870}
1871early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1872
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001873static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001876 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001877}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001878early_param("noapictimer", parse_disable_apic_timer);
1879
1880static int __init parse_nolapic_timer(char *arg)
1881{
1882 disable_apic_timer = 1;
1883 return 0;
1884}
1885early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01001886
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04001887static int __init apic_set_verbosity(char *arg)
1888{
1889 if (!arg) {
1890#ifdef CONFIG_X86_64
1891 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04001892 return 0;
1893#endif
1894 return -EINVAL;
1895 }
1896
1897 if (strcmp("debug", arg) == 0)
1898 apic_verbosity = APIC_DEBUG;
1899 else if (strcmp("verbose", arg) == 0)
1900 apic_verbosity = APIC_VERBOSE;
1901 else {
1902 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1903 " use apic=verbose or apic=debug\n", arg);
1904 return -EINVAL;
1905 }
1906
1907 return 0;
1908}
1909early_param("apic", apic_set_verbosity);
1910
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001911static int __init lapic_insert_resource(void)
1912{
1913 if (!apic_phys)
1914 return -1;
1915
1916 /* Put local APIC into the resource map. */
1917 lapic_resource.start = apic_phys;
1918 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1919 insert_resource(&iomem_resource, &lapic_resource);
1920
1921 return 0;
1922}
1923
1924/*
1925 * need call insert after e820_reserve_resources()
1926 * that is using request_resource
1927 */
1928late_initcall(lapic_insert_resource);