blob: 2e109119f64721713e0cc5036e02b80743bf0a31 [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
Cyrill Gorcunov36fef092008-08-15 13:51:20 +020056/* Disable local APIC timer from the kernel commandline or via dmi quirk */
Thomas Gleixneraa276e12008-06-09 19:15:00 +020057static int disable_apic_timer __cpuinitdata;
Chris Wrightbc1d99c2007-10-12 23:04:23 +020058static int apic_calibrate_pmtmr __initdata;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010059int disable_apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -070060int disable_x2apic;
Suresh Siddha89027d32008-07-10 11:16:56 -070061int x2apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Suresh Siddha6e1cb382008-07-10 11:16:58 -070063/* x2apic enabled before OS handover */
64int x2apic_preenabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010066/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -070067int local_apic_timer_c2_ok;
68EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
69
Yinghai Luefa25592008-08-19 20:50:36 -070070int first_system_vector = 0xfe;
71
72char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
73
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010074/*
75 * Debug level, exported for io_apic.c
76 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010077unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010078
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -070079int pic_mode;
80
Alexey Starikovskiybab4b272008-05-19 19:47:03 +040081/* Have we found an MP table */
82int smp_found_config;
83
Aaron Durbin39928722006-12-07 02:14:01 +010084static struct resource lapic_resource = {
85 .name = "Local APIC",
86 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
87};
88
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020089static unsigned int calibration_result;
90
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020091static int lapic_next_event(unsigned long delta,
92 struct clock_event_device *evt);
93static void lapic_timer_setup(enum clock_event_mode mode,
94 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020095static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +010096static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020097
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +040098/*
99 * The local apic timer can be used for any function which is CPU local.
100 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200101static struct clock_event_device lapic_clockevent = {
102 .name = "lapic",
103 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
104 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
105 .shift = 32,
106 .set_mode = lapic_timer_setup,
107 .set_next_event = lapic_next_event,
108 .broadcast = lapic_timer_broadcast,
109 .rating = 100,
110 .irq = -1,
111};
112static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
113
Andi Kleend3432892008-01-30 13:33:17 +0100114static unsigned long apic_phys;
115
Alexey Starikovskiy3f530702008-03-27 23:55:47 +0300116unsigned long mp_lapic_addr;
117
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100118/*
119 * Get the LAPIC version
120 */
121static inline int lapic_get_version(void)
122{
123 return GET_APIC_VERSION(apic_read(APIC_LVR));
124}
125
126/*
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400127 * Check, if the APIC is integrated or a separate chip
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100128 */
129static inline int lapic_is_integrated(void)
130{
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400131#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100132 return 1;
Cyrill Gorcunov9c803862008-08-16 23:21:54 +0400133#else
134 return APIC_INTEGRATED(lapic_get_version());
135#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100136}
137
138/*
139 * Check, whether this is a modern or a first generation APIC
140 */
141static int modern_apic(void)
142{
143 /* AMD systems use old APIC versions, so check the CPU */
144 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
145 boot_cpu_data.x86 >= 0xf)
146 return 1;
147 return lapic_get_version() >= 0x14;
148}
149
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400150/*
151 * Paravirt kernels also might be using these below ops. So we still
152 * use generic apic_read()/apic_write(), which might be pointing to different
153 * ops in PARAVIRT case.
154 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700155void xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100156{
157 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
158 cpu_relax();
159}
160
Suresh Siddha1b374e42008-07-10 11:16:49 -0700161u32 safe_xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100162{
163 u32 send_status;
164 int timeout;
165
166 timeout = 0;
167 do {
168 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
169 if (!send_status)
170 break;
171 udelay(100);
172 } while (timeout++ < 1000);
173
174 return send_status;
175}
176
Suresh Siddha1b374e42008-07-10 11:16:49 -0700177void xapic_icr_write(u32 low, u32 id)
178{
Cyrill Gorcunoved4e5ec2008-08-15 13:51:20 +0200179 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
Suresh Siddha1b374e42008-07-10 11:16:49 -0700180 apic_write(APIC_ICR, low);
181}
182
183u64 xapic_icr_read(void)
184{
185 u32 icr1, icr2;
186
187 icr2 = apic_read(APIC_ICR2);
188 icr1 = apic_read(APIC_ICR);
189
Cyrill Gorcunovcf9768d72008-08-16 23:21:55 +0400190 return icr1 | ((u64)icr2 << 32);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700191}
192
193static struct apic_ops xapic_ops = {
194 .read = native_apic_mem_read,
195 .write = native_apic_mem_write,
Suresh Siddha1b374e42008-07-10 11:16:49 -0700196 .icr_read = xapic_icr_read,
197 .icr_write = xapic_icr_write,
198 .wait_icr_idle = xapic_wait_icr_idle,
199 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
200};
201
202struct apic_ops __read_mostly *apic_ops = &xapic_ops;
Suresh Siddha1b374e42008-07-10 11:16:49 -0700203EXPORT_SYMBOL_GPL(apic_ops);
204
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700205static void x2apic_wait_icr_idle(void)
206{
207 /* no need to wait for icr idle in x2apic */
208 return;
209}
210
211static u32 safe_x2apic_wait_icr_idle(void)
212{
213 /* no need to wait for icr idle in x2apic */
214 return 0;
215}
216
217void x2apic_icr_write(u32 low, u32 id)
218{
219 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
220}
221
222u64 x2apic_icr_read(void)
223{
224 unsigned long val;
225
226 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
227 return val;
228}
229
230static struct apic_ops x2apic_ops = {
231 .read = native_apic_msr_read,
232 .write = native_apic_msr_write,
Suresh Siddha13c88fb52008-07-10 11:16:52 -0700233 .icr_read = x2apic_icr_read,
234 .icr_write = x2apic_icr_write,
235 .wait_icr_idle = x2apic_wait_icr_idle,
236 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
237};
238
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100239/**
240 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
241 */
Jan Beuliche9427102008-01-30 13:31:24 +0100242void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100243{
244 unsigned int v;
245
246 /* unmask and set to NMI */
247 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200248
249 /* Level triggered for 82489DX (32bit mode) */
250 if (!lapic_is_integrated())
251 v |= APIC_LVT_LEVEL_TRIGGER;
252
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100253 apic_write(APIC_LVT0, v);
254}
255
Cyrill Gorcunov7c37e482008-08-24 02:01:40 -0700256#ifdef CONFIG_X86_32
257/**
258 * get_physical_broadcast - Get number of physical broadcast IDs
259 */
260int get_physical_broadcast(void)
261{
262 return modern_apic() ? 0xff : 0xf;
263}
264#endif
265
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100266/**
267 * lapic_get_maxlvt - get the maximum number of local vector table entries
268 */
269int lapic_get_maxlvt(void)
270{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200271 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100272
273 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200274 /*
275 * - we always have APIC integrated on 64bit mode
276 * - 82489DXs do not report # of LVT entries
277 */
278 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100279}
280
281/*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400282 * Local APIC timer
283 */
284
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400285/* Clock divisor */
286#ifdef CONFG_X86_64
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200287#define APIC_DIVISOR 1
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400288#else
289#define APIC_DIVISOR 16
290#endif
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200291
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100292/*
293 * This function sets up the local APIC timer, with a timeout of
294 * 'clocks' APIC bus clock. During calibration we actually call
295 * this function twice on the boot CPU, once with a bogus timeout
296 * value, second time for real. The other (noncalibrating) CPUs
297 * call this function only once, with the real, calibrated value.
298 *
299 * We do reads before writes even if unnecessary, to get around the
300 * P5 APIC double write bug.
301 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100302static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
303{
304 unsigned int lvtt_value, tmp_value;
305
306 lvtt_value = LOCAL_TIMER_VECTOR;
307 if (!oneshot)
308 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200309 if (!lapic_is_integrated())
310 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
311
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100312 if (!irqen)
313 lvtt_value |= APIC_LVT_MASKED;
314
315 apic_write(APIC_LVTT, lvtt_value);
316
317 /*
318 * Divide PICLK by 16
319 */
320 tmp_value = apic_read(APIC_TDCR);
Cyrill Gorcunovc40aaec2008-08-18 20:45:55 +0400321 apic_write(APIC_TDCR,
322 (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
323 APIC_TDR_DIV_16);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100324
325 if (!oneshot)
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200326 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100327}
328
329/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100330 * Setup extended LVT, AMD specific (K8, family 10h)
331 *
332 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
333 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200334 *
335 * If mask=1, the LVT entry does not generate interrupts while mask=0
336 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100337 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100338
339#define APIC_EILVT_LVTOFF_MCE 0
340#define APIC_EILVT_LVTOFF_IBS 1
341
342static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100343{
Robert Richter7b83dae2008-01-30 13:30:40 +0100344 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100345 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
346
347 apic_write(reg, v);
348}
349
Robert Richter7b83dae2008-01-30 13:30:40 +0100350u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
351{
352 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
353 return APIC_EILVT_LVTOFF_MCE;
354}
355
356u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
357{
358 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
359 return APIC_EILVT_LVTOFF_IBS;
360}
Robert Richter6aa360e2008-07-23 15:28:14 +0200361EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100362
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100363/*
364 * Program the next event, relative to now
365 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200366static int lapic_next_event(unsigned long delta,
367 struct clock_event_device *evt)
368{
369 apic_write(APIC_TMICT, delta);
370 return 0;
371}
372
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100373/*
374 * Setup the lapic timer in periodic or oneshot mode
375 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200376static void lapic_timer_setup(enum clock_event_mode mode,
377 struct clock_event_device *evt)
378{
379 unsigned long flags;
380 unsigned int v;
381
382 /* Lapic used as dummy for broadcast ? */
383 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
384 return;
385
386 local_irq_save(flags);
387
388 switch (mode) {
389 case CLOCK_EVT_MODE_PERIODIC:
390 case CLOCK_EVT_MODE_ONESHOT:
391 __setup_APIC_LVTT(calibration_result,
392 mode != CLOCK_EVT_MODE_PERIODIC, 1);
393 break;
394 case CLOCK_EVT_MODE_UNUSED:
395 case CLOCK_EVT_MODE_SHUTDOWN:
396 v = apic_read(APIC_LVTT);
397 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
398 apic_write(APIC_LVTT, v);
399 break;
400 case CLOCK_EVT_MODE_RESUME:
401 /* Nothing to do here */
402 break;
403 }
404
405 local_irq_restore(flags);
406}
407
408/*
409 * Local APIC timer broadcast function
410 */
411static void lapic_timer_broadcast(cpumask_t mask)
412{
413#ifdef CONFIG_SMP
414 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
415#endif
416}
417
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100418/*
419 * Setup the local APIC timer for this CPU. Copy the initilized values
420 * of the boot CPU and register the clock event in the framework.
421 */
Cyrill Gorcunovdb4b5522008-08-24 02:01:39 -0700422static void __cpuinit setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200423{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100424 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
425
426 memcpy(levt, &lapic_clockevent, sizeof(*levt));
427 levt->cpumask = cpumask_of_cpu(smp_processor_id());
428
429 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200430}
431
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100432/*
433 * In this function we calibrate APIC bus clocks to the external
434 * timer. Unfortunately we cannot use jiffies and the timer irq
435 * to calibrate, since some later bootup code depends on getting
436 * the first irq? Ugh.
437 *
438 * We want to do the calibration only once since we
439 * want to have local timer irqs syncron. CPUs connected
440 * by the same APIC bus have the very same bus frequency.
441 * And we want to have irqs off anyways, no accidental
442 * APIC irq that way.
443 */
444
445#define TICK_COUNT 100000000
446
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400447static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200448{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100449 unsigned apic, apic_start;
450 unsigned long tsc, tsc_start;
451 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200452
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100453 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200454
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100455 /*
456 * Put whatever arbitrary (but long enough) timeout
457 * value into the APIC clock, we just want to get the
458 * counter running for calibration.
459 *
460 * No interrupt enable !
461 */
462 __setup_APIC_LVTT(250000000, 0, 0);
463
464 apic_start = apic_read(APIC_TMCCT);
465#ifdef CONFIG_X86_PM_TIMER
466 if (apic_calibrate_pmtmr && pmtmr_ioport) {
467 pmtimer_wait(5000); /* 5ms wait */
468 apic = apic_read(APIC_TMCCT);
469 result = (apic_start - apic) * 1000L / 5;
470 } else
471#endif
472 {
473 rdtscll(tsc_start);
474
475 do {
476 apic = apic_read(APIC_TMCCT);
477 rdtscll(tsc);
478 } while ((tsc - tsc_start) < TICK_COUNT &&
479 (apic_start - apic) < TICK_COUNT);
480
481 result = (apic_start - apic) * 1000L * tsc_khz /
482 (tsc - tsc_start);
483 }
484
485 local_irq_enable();
486
487 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
488
489 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
490 result / 1000 / 1000, result / 1000 % 1000);
491
492 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900493 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
494 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100495 lapic_clockevent.max_delta_ns =
496 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
497 lapic_clockevent.min_delta_ns =
498 clockevent_delta2ns(0xF, &lapic_clockevent);
499
Cyrill Gorcunovf07f4f92008-08-15 13:51:21 +0200500 calibration_result = (result * APIC_DIVISOR) / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400501
502 /*
503 * Do a sanity check on the APIC calibration result
504 */
505 if (calibration_result < (1000000 / HZ)) {
506 printk(KERN_WARNING
507 "APIC frequency too slow, disabling apic timer\n");
508 return -1;
509 }
510
511 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200512}
513
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100514/*
515 * Setup the boot APIC
516 *
517 * Calibrate and verify the result.
518 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100519void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100521 /*
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400522 * The local apic timer can be disabled via the kernel
523 * commandline or from the CPU detection code. Register the lapic
524 * timer as a dummy clock event source on SMP systems, so the
525 * broadcast mechanism is used. On UP systems simply ignore it.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100526 */
527 if (disable_apic_timer) {
528 printk(KERN_INFO "Disabling APIC timer\n");
529 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100530 if (num_possible_cpus() > 1) {
531 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100532 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100533 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100534 return;
535 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200536
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400537 apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
538 "calibrating APIC timer ...\n");
539
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400540 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100541 /* No broadcast on UP ! */
542 if (num_possible_cpus() > 1)
543 setup_APIC_timer();
544 return;
545 }
546
547 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100548 * If nmi_watchdog is set to IO_APIC, we need the
549 * PIT/HPET going. Otherwise register lapic as a dummy
550 * device.
551 */
552 if (nmi_watchdog != NMI_IO_APIC)
553 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
554 else
555 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200556 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100557
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400558 /* Setup the lapic or request the broadcast */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100559 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100562void __cpuinit setup_secondary_APIC_clock(void)
563{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100564 setup_APIC_timer();
565}
566
567/*
568 * The guts of the apic timer interrupt
569 */
570static void local_apic_timer_interrupt(void)
571{
572 int cpu = smp_processor_id();
573 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
574
575 /*
576 * Normally we should not be here till LAPIC has been initialized but
577 * in some cases like kdump, its possible that there is a pending LAPIC
578 * timer interrupt from previous kernel's context and is delivered in
579 * new kernel the moment interrupts are enabled.
580 *
581 * Interrupts are enabled early and LAPIC is setup much later, hence
582 * its possible that when we get here evt->event_handler is NULL.
583 * Check for event_handler being NULL and discard the interrupt as
584 * spurious.
585 */
586 if (!evt->event_handler) {
587 printk(KERN_WARNING
588 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
589 /* Switch it off */
590 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
591 return;
592 }
593
594 /*
595 * the NMI deadlock-detector uses this.
596 */
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400597#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100598 add_pda(apic_timer_irqs, 1);
Cyrill Gorcunov0b23e8c2008-08-18 20:45:59 +0400599#else
600 per_cpu(irq_stat, cpu).apic_timer_irqs++;
601#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100602
603 evt->event_handler(evt);
604}
605
606/*
607 * Local APIC timer interrupt. This is the most natural way for doing
608 * local interrupts, but local timer interrupts can be emulated by
609 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
610 *
611 * [ if a single-CPU system runs an SMP kernel then we call the local
612 * interrupt as well. Thus we cannot inline the local irq ... ]
613 */
614void smp_apic_timer_interrupt(struct pt_regs *regs)
615{
616 struct pt_regs *old_regs = set_irq_regs(regs);
617
618 /*
619 * NOTE! We'd better ACK the irq immediately,
620 * because timer handling can be slow.
621 */
622 ack_APIC_irq();
623 /*
624 * update_process_times() expects us to have done irq_enter().
625 * Besides, if we don't timer interrupts ignore the global
626 * interrupt lock, which is the WrongThing (tm) to do.
627 */
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700628#ifdef CONFIG_X86_64
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100629 exit_idle();
Cyrill Gorcunov6460bc72008-08-24 02:01:45 -0700630#endif
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100631 irq_enter();
632 local_apic_timer_interrupt();
633 irq_exit();
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +0400634
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100635 set_irq_regs(old_regs);
636}
637
638int setup_profiling_timer(unsigned int multiplier)
639{
640 return -EINVAL;
641}
642
643
644/*
645 * Local APIC start and shutdown
646 */
647
648/**
649 * clear_local_APIC - shutdown the local APIC
650 *
651 * This is called, when a CPU is disabled and before rebooting, so the state of
652 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
653 * leftovers during boot.
654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655void clear_local_APIC(void)
656{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400657 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100658 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Andi Kleend3432892008-01-30 13:33:17 +0100660 /* APIC hasn't been mapped yet */
661 if (!apic_phys)
662 return;
663
664 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200666 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 * if the vector is zero. Mask LVTERR first to prevent this.
668 */
669 if (maxlvt >= 3) {
670 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100671 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673 /*
674 * Careful: we have to set masks only first to deassert
675 * any level-triggered sources.
676 */
677 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100678 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100680 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100682 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (maxlvt >= 4) {
684 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100685 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400688 /* lets not touch this if we didn't frob it */
689#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
690 if (maxlvt >= 5) {
691 v = apic_read(APIC_LVTTHMR);
692 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
693 }
694#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /*
696 * Clean APIC state for other OSs:
697 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100698 apic_write(APIC_LVTT, APIC_LVT_MASKED);
699 apic_write(APIC_LVT0, APIC_LVT_MASKED);
700 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100702 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100704 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Cyrill Gorcunov67640142008-08-16 23:21:50 +0400705
706 /* Integrated APIC (!82489DX) ? */
707 if (lapic_is_integrated()) {
708 if (maxlvt > 3)
709 /* Clear ESR due to Pentium errata 3AP and 11AP */
710 apic_write(APIC_ESR, 0);
711 apic_read(APIC_ESR);
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100715/**
716 * disable_local_APIC - clear and disable the local APIC
717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718void disable_local_APIC(void)
719{
720 unsigned int value;
721
722 clear_local_APIC();
723
724 /*
725 * Disable APIC (implies clearing of registers
726 * for 82489DX!).
727 */
728 value = apic_read(APIC_SPIV);
729 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100730 apic_write(APIC_SPIV, value);
Cyrill Gorcunov990b1832008-08-18 20:45:51 +0400731
732#ifdef CONFIG_X86_32
733 /*
734 * When LAPIC was disabled by the BIOS and enabled by the kernel,
735 * restore the disabled state.
736 */
737 if (enabled_via_apicbase) {
738 unsigned int l, h;
739
740 rdmsr(MSR_IA32_APICBASE, l, h);
741 l &= ~MSR_IA32_APICBASE_ENABLE;
742 wrmsr(MSR_IA32_APICBASE, l, h);
743 }
744#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400747/*
748 * If Linux enabled the LAPIC against the BIOS default disable it down before
749 * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
750 * not power-off. Additionally clear all LVT entries before disable_local_APIC
751 * for the case where Linux didn't enable the LAPIC.
752 */
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700753void lapic_shutdown(void)
754{
755 unsigned long flags;
756
757 if (!cpu_has_apic)
758 return;
759
760 local_irq_save(flags);
761
Cyrill Gorcunovfe4024d2008-08-18 20:45:52 +0400762#ifdef CONFIG_X86_32
763 if (!enabled_via_apicbase)
764 clear_local_APIC();
765 else
766#endif
767 disable_local_APIC();
768
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700769
770 local_irq_restore(flags);
771}
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773/*
774 * This is to verify that we're looking at a real local APIC.
775 * Check these against your board if the CPUs aren't getting
776 * started for no apparent reason.
777 */
778int __init verify_local_APIC(void)
779{
780 unsigned int reg0, reg1;
781
782 /*
783 * The version register is read-only in a real APIC.
784 */
785 reg0 = apic_read(APIC_LVR);
786 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
787 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
788 reg1 = apic_read(APIC_LVR);
789 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
790
791 /*
792 * The two version reads above should print the same
793 * numbers. If the second one is different, then we
794 * poke at a non-APIC.
795 */
796 if (reg1 != reg0)
797 return 0;
798
799 /*
800 * Check if the version looks reasonably.
801 */
802 reg1 = GET_APIC_VERSION(reg0);
803 if (reg1 == 0x00 || reg1 == 0xff)
804 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100805 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (reg1 < 0x02 || reg1 == 0xff)
807 return 0;
808
809 /*
810 * The ID register is read/write in a real APIC.
811 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700812 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
814 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700815 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
817 apic_write(APIC_ID, reg0);
818 if (reg1 != (reg0 ^ APIC_ID_MASK))
819 return 0;
820
821 /*
822 * The next two are just to see if we have sane values.
823 * They're only really relevant if we're in Virtual Wire
824 * compatibility mode, but most boxes are anymore.
825 */
826 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100827 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 reg1 = apic_read(APIC_LVT1);
829 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
830
831 return 1;
832}
833
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100834/**
835 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
836 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837void __init sync_Arb_IDs(void)
838{
Cyrill Gorcunov296cb952008-08-15 13:51:23 +0200839 /*
840 * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
841 * needed on AMD.
842 */
843 if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return;
845
846 /*
847 * Wait for idle.
848 */
849 apic_wait_icr_idle();
850
851 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Cyrill Gorcunov6f6da972008-08-15 23:05:19 +0400852 apic_write(APIC_ICR, APIC_DEST_ALLINC |
853 APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/*
857 * An initial setup of the virtual wire mode.
858 */
859void __init init_bsp_APIC(void)
860{
Andi Kleen11a8e772006-01-11 22:46:51 +0100861 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 /*
864 * Don't do the setup now if we have a SMP BIOS as the
865 * through-I/O-APIC virtual wire mode might be active.
866 */
867 if (smp_found_config || !cpu_has_apic)
868 return;
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /*
871 * Do not trust the local APIC being empty at bootup.
872 */
873 clear_local_APIC();
874
875 /*
876 * Enable APIC.
877 */
878 value = apic_read(APIC_SPIV);
879 value &= ~APIC_VECTOR_MASK;
880 value |= APIC_SPIV_APIC_ENABLED;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400881
882#ifdef CONFIG_X86_32
883 /* This bit is reserved on P4/Xeon and should be cleared */
884 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
885 (boot_cpu_data.x86 == 15))
886 value &= ~APIC_SPIV_FOCUS_DISABLED;
887 else
888#endif
889 value |= APIC_SPIV_FOCUS_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100891 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /*
894 * Set up the virtual wire mode.
895 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100896 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 value = APIC_DM_NMI;
Cyrill Gorcunov638c0412008-08-15 23:05:18 +0400898 if (!lapic_is_integrated()) /* 82489DX */
899 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +0100900 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Cyrill Gorcunovc43da2f2008-08-18 20:45:54 +0400903static void __cpuinit lapic_setup_esr(void)
904{
905 unsigned long oldvalue, value, maxlvt;
906 if (lapic_is_integrated() && !esr_disable) {
907 if (esr_disable) {
908 /*
909 * Something untraceable is creating bad interrupts on
910 * secondary quads ... for the moment, just leave the
911 * ESR disabled - we can't do anything useful with the
912 * errors anyway - mbligh
913 */
914 printk(KERN_INFO "Leaving ESR disabled.\n");
915 return;
916 }
917 /* !82489DX */
918 maxlvt = lapic_get_maxlvt();
919 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
920 apic_write(APIC_ESR, 0);
921 oldvalue = apic_read(APIC_ESR);
922
923 /* enables sending errors */
924 value = ERROR_APIC_VECTOR;
925 apic_write(APIC_LVTERR, value);
926 /*
927 * spec says clear errors after enabling vector.
928 */
929 if (maxlvt > 3)
930 apic_write(APIC_ESR, 0);
931 value = apic_read(APIC_ESR);
932 if (value != oldvalue)
933 apic_printk(APIC_VERBOSE, "ESR value before enabling "
934 "vector: 0x%08lx after: 0x%08lx\n",
935 oldvalue, value);
936 } else {
937 printk(KERN_INFO "No ESR for 82489DX.\n");
938 }
939}
940
941
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100942/**
943 * setup_local_APIC - setup the local APIC
944 */
945void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Andi Kleen739f33b2008-01-30 13:30:40 +0100947 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100948 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -0700950#ifdef CONFIG_X86_32
951 /* Pound the ESR really hard over the head with a big hammer - mbligh */
952 if (esr_disable) {
953 apic_write(APIC_ESR, 0);
954 apic_write(APIC_ESR, 0);
955 apic_write(APIC_ESR, 0);
956 apic_write(APIC_ESR, 0);
957 }
958#endif
959
Jack Steinerac23d4e2008-03-28 14:12:16 -0500960 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 /*
963 * Double-check whether this APIC is really registered.
964 * This is meaningless in clustered apic mode, so we skip it.
965 */
966 if (!apic_id_registered())
967 BUG();
968
969 /*
970 * Intel recommends to set DFR, LDR and TPR before enabling
971 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
972 * document number 292116). So here it goes...
973 */
974 init_apic_ldr();
975
976 /*
977 * Set Task Priority to 'accept all'. We never change this
978 * later on.
979 */
980 value = apic_read(APIC_TASKPRI);
981 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100982 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100985 * After a crash, we no longer service the interrupts and a pending
986 * interrupt from previous kernel might still have ISR bit set.
987 *
988 * Most probably by now CPU has serviced that pending interrupt and
989 * it might not have done the ack_APIC_irq() because it thought,
990 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
991 * does not clear the ISR bit and cpu thinks it has already serivced
992 * the interrupt. Hence a vector might get locked. It was noticed
993 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
994 */
995 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
996 value = apic_read(APIC_ISR + i*0x10);
997 for (j = 31; j >= 0; j--) {
998 if (value & (1<<j))
999 ack_APIC_irq();
1000 }
1001 }
1002
1003 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 * Now that we are all set up, enable the APIC
1005 */
1006 value = apic_read(APIC_SPIV);
1007 value &= ~APIC_VECTOR_MASK;
1008 /*
1009 * Enable APIC
1010 */
1011 value |= APIC_SPIV_APIC_ENABLED;
1012
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001013#ifdef CONFIG_X86_32
1014 /*
1015 * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1016 * certain networking cards. If high frequency interrupts are
1017 * happening on a particular IOAPIC pin, plus the IOAPIC routing
1018 * entry is masked/unmasked at a high rate as well then sooner or
1019 * later IOAPIC line gets 'stuck', no more interrupts are received
1020 * from the device. If focus CPU is disabled then the hang goes
1021 * away, oh well :-(
1022 *
1023 * [ This bug can be reproduced easily with a level-triggered
1024 * PCI Ne2000 networking cards and PII/PIII processors, dual
1025 * BX chipset. ]
1026 */
1027 /*
1028 * Actually disabling the focus CPU check just makes the hang less
1029 * frequent as it makes the interrupt distributon model be more
1030 * like LRU than MRU (the short-term load is more even across CPUs).
1031 * See also the comment in end_level_ioapic_irq(). --macro
1032 */
1033
1034 /*
1035 * - enable focus processor (bit==0)
1036 * - 64bit mode always use processor focus
1037 * so no need to set it
1038 */
1039 value &= ~APIC_SPIV_FOCUS_DISABLED;
1040#endif
Andi Kleen3f14c742006-09-26 10:52:29 +02001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 /*
1043 * Set spurious IRQ vector
1044 */
1045 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +01001046 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 /*
1049 * Set up LVT0, LVT1:
1050 *
1051 * set up through-local-APIC on the BP's LINT0. This is not
1052 * strictly necessary in pure symmetric-IO mode, but sometimes
1053 * we delegate interrupts to the 8259A.
1054 */
1055 /*
1056 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1057 */
1058 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001059 if (!smp_processor_id() && (pic_mode || !value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001061 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001062 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 } else {
1064 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +02001065 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001066 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
Andi Kleen11a8e772006-01-11 22:46:51 +01001068 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 /*
1071 * only the BP should see the LINT1 NMI signal, obviously.
1072 */
1073 if (!smp_processor_id())
1074 value = APIC_DM_NMI;
1075 else
1076 value = APIC_DM_NMI | APIC_LVT_MASKED;
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001077 if (!lapic_is_integrated()) /* 82489DX */
1078 value |= APIC_LVT_LEVEL_TRIGGER;
Andi Kleen11a8e772006-01-11 22:46:51 +01001079 apic_write(APIC_LVT1, value);
Cyrill Gorcunov89c38c22008-08-24 02:01:43 -07001080
Jack Steinerac23d4e2008-03-28 14:12:16 -05001081 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +01001082}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Andi Kleen739f33b2008-01-30 13:30:40 +01001084void __cpuinit end_local_APIC_setup(void)
1085{
1086 lapic_setup_esr();
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001087
1088#ifdef CONFIG_X86_32
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001089 {
1090 unsigned int value;
1091 /* Disable the local apic timer */
1092 value = apic_read(APIC_LVTT);
1093 value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1094 apic_write(APIC_LVTT, value);
1095 }
Cyrill Gorcunovfa6b95f2008-08-18 20:45:58 +04001096#endif
1097
Don Zickusf2802e72006-09-26 10:52:26 +02001098 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 apic_pm_activate();
1100}
1101
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001102void check_x2apic(void)
1103{
1104 int msr, msr2;
1105
1106 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1107
1108 if (msr & X2APIC_ENABLE) {
1109 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
1110 x2apic_preenabled = x2apic = 1;
1111 apic_ops = &x2apic_ops;
1112 }
1113}
1114
1115void enable_x2apic(void)
1116{
1117 int msr, msr2;
1118
1119 rdmsr(MSR_IA32_APICBASE, msr, msr2);
1120 if (!(msr & X2APIC_ENABLE)) {
1121 printk("Enabling x2apic\n");
1122 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
1123 }
1124}
1125
1126void enable_IR_x2apic(void)
1127{
1128#ifdef CONFIG_INTR_REMAP
1129 int ret;
1130 unsigned long flags;
1131
1132 if (!cpu_has_x2apic)
1133 return;
1134
1135 if (!x2apic_preenabled && disable_x2apic) {
1136 printk(KERN_INFO
1137 "Skipped enabling x2apic and Interrupt-remapping "
1138 "because of nox2apic\n");
1139 return;
1140 }
1141
1142 if (x2apic_preenabled && disable_x2apic)
1143 panic("Bios already enabled x2apic, can't enforce nox2apic");
1144
1145 if (!x2apic_preenabled && skip_ioapic_setup) {
1146 printk(KERN_INFO
1147 "Skipped enabling x2apic and Interrupt-remapping "
1148 "because of skipping io-apic setup\n");
1149 return;
1150 }
1151
1152 ret = dmar_table_init();
1153 if (ret) {
1154 printk(KERN_INFO
1155 "dmar_table_init() failed with %d:\n", ret);
1156
1157 if (x2apic_preenabled)
1158 panic("x2apic enabled by bios. But IR enabling failed");
1159 else
1160 printk(KERN_INFO
1161 "Not enabling x2apic,Intr-remapping\n");
1162 return;
1163 }
1164
1165 local_irq_save(flags);
1166 mask_8259A();
1167 save_mask_IO_APIC_setup();
1168
1169 ret = enable_intr_remapping(1);
1170
1171 if (ret && x2apic_preenabled) {
1172 local_irq_restore(flags);
1173 panic("x2apic enabled by bios. But IR enabling failed");
1174 }
1175
1176 if (ret)
1177 goto end;
1178
1179 if (!x2apic) {
1180 x2apic = 1;
1181 apic_ops = &x2apic_ops;
1182 enable_x2apic();
1183 }
1184end:
1185 if (ret)
1186 /*
1187 * IR enabling failed
1188 */
1189 restore_IO_APIC_setup();
1190 else
1191 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1192
1193 unmask_8259A();
1194 local_irq_restore(flags);
1195
1196 if (!ret) {
1197 if (!x2apic_preenabled)
1198 printk(KERN_INFO
1199 "Enabled x2apic and interrupt-remapping\n");
1200 else
1201 printk(KERN_INFO
1202 "Enabled Interrupt-remapping\n");
1203 } else
1204 printk(KERN_ERR
1205 "Failed to enable Interrupt-remapping and x2apic\n");
1206#else
1207 if (!cpu_has_x2apic)
1208 return;
1209
1210 if (x2apic_preenabled)
1211 panic("x2apic enabled prior OS handover,"
1212 " enable CONFIG_INTR_REMAP");
1213
1214 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1215 " and x2apic\n");
1216#endif
1217
1218 return;
1219}
1220
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001221/*
1222 * Detect and enable local APICs on non-SMP boards.
1223 * Original code written by Keir Fraser.
1224 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1225 * not correctly set up (usually the APIC timer won't work etc.)
1226 */
1227static int __init detect_init_APIC(void)
1228{
1229 if (!cpu_has_apic) {
1230 printk(KERN_INFO "No local APIC present\n");
1231 return -1;
1232 }
1233
1234 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001235 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001236 return 0;
1237}
1238
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001239void __init early_init_lapic_mapping(void)
1240{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001241 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001242
1243 /*
1244 * If no local APIC can be found then go out
1245 * : it means there is no mpatable and MADT
1246 */
1247 if (!smp_found_config)
1248 return;
1249
Thomas Gleixner431ee792008-05-12 15:43:35 +02001250 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001251
Thomas Gleixner431ee792008-05-12 15:43:35 +02001252 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001253 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001254 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001255
1256 /*
1257 * Fetch the APIC ID of the BSP in case we have a
1258 * default configuration (or the MP table is broken).
1259 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001260 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001261}
1262
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001263/**
1264 * init_apic_mappings - initialize APIC mappings
1265 */
1266void __init init_apic_mappings(void)
1267{
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001268 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001269 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001270 return;
1271 }
1272
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001273 /*
1274 * If no local APIC can be found then set up a fake all
1275 * zeroes page to simulate the local APIC and another
1276 * one for the IO-APIC.
1277 */
1278 if (!smp_found_config && detect_init_APIC()) {
1279 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1280 apic_phys = __pa(apic_phys);
1281 } else
1282 apic_phys = mp_lapic_addr;
1283
1284 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1285 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1286 APIC_BASE, apic_phys);
1287
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001288 /*
1289 * Fetch the APIC ID of the BSP in case we have a
1290 * default configuration (or the MP table is broken).
1291 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001292 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001293}
1294
1295/*
1296 * This initializes the IO-APIC and APIC hardware if this is
1297 * a UP kernel.
1298 */
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001299int apic_version[MAX_APICS];
1300
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001301int __init APIC_init_uniprocessor(void)
1302{
1303 if (disable_apic) {
1304 printk(KERN_INFO "Apic disabled\n");
1305 return -1;
1306 }
1307 if (!cpu_has_apic) {
1308 disable_apic = 1;
1309 printk(KERN_INFO "Apic disabled by BIOS\n");
1310 return -1;
1311 }
1312
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001313 enable_IR_x2apic();
1314 setup_apic_routing();
1315
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001316 verify_local_APIC();
1317
Glauber Costab5841762008-05-28 13:38:28 -03001318 connect_bsp_APIC();
1319
Jack Steinerb6df1b82008-06-19 21:51:05 -05001320 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001321 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001322
1323 setup_local_APIC();
1324
Andi Kleen739f33b2008-01-30 13:30:40 +01001325 /*
1326 * Now enable IO-APICs, actually call clear_IO_APIC
1327 * We need clear_IO_APIC before enabling vector on BP
1328 */
1329 if (!skip_ioapic_setup && nr_ioapics)
1330 enable_IO_APIC();
1331
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001332 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1333 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +01001334 end_local_APIC_setup();
1335
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001336 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1337 setup_IO_APIC();
1338 else
1339 nr_ioapics = 0;
1340 setup_boot_APIC_clock();
1341 check_nmi_watchdog();
1342 return 0;
1343}
1344
1345/*
1346 * Local APIC interrupts
1347 */
1348
1349/*
1350 * This interrupt should _never_ happen with our APIC/SMP architecture
1351 */
1352asmlinkage void smp_spurious_interrupt(void)
1353{
1354 unsigned int v;
1355 exit_idle();
1356 irq_enter();
1357 /*
1358 * Check if this really is a spurious interrupt and ACK it
1359 * if it is a vectored one. Just in case...
1360 * Spurious interrupts should not be ACKed.
1361 */
1362 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1363 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1364 ack_APIC_irq();
1365
1366 add_pda(irq_spurious_count, 1);
1367 irq_exit();
1368}
1369
1370/*
1371 * This interrupt should never happen with our APIC/SMP architecture
1372 */
1373asmlinkage void smp_error_interrupt(void)
1374{
1375 unsigned int v, v1;
1376
1377 exit_idle();
1378 irq_enter();
1379 /* First tickle the hardware, only then report what went on. -- REW */
1380 v = apic_read(APIC_ESR);
1381 apic_write(APIC_ESR, 0);
1382 v1 = apic_read(APIC_ESR);
1383 ack_APIC_irq();
1384 atomic_inc(&irq_err_count);
1385
1386 /* Here is what the APIC error bits mean:
1387 0: Send CS error
1388 1: Receive CS error
1389 2: Send accept error
1390 3: Receive accept error
1391 4: Reserved
1392 5: Send illegal vector
1393 6: Received illegal vector
1394 7: Illegal register address
1395 */
1396 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1397 smp_processor_id(), v , v1);
1398 irq_exit();
1399}
1400
Glauber Costab5841762008-05-28 13:38:28 -03001401/**
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001402 * connect_bsp_APIC - attach the APIC to the interrupt system
1403 */
Glauber Costab5841762008-05-28 13:38:28 -03001404void __init connect_bsp_APIC(void)
1405{
Cyrill Gorcunov36c9d672008-08-18 20:45:53 +04001406#ifdef CONFIG_X86_32
1407 if (pic_mode) {
1408 /*
1409 * Do not trust the local APIC being empty at bootup.
1410 */
1411 clear_local_APIC();
1412 /*
1413 * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
1414 * local APIC to INT and NMI lines.
1415 */
1416 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1417 "enabling APIC mode.\n");
1418 outb(0x70, 0x22);
1419 outb(0x01, 0x23);
1420 }
1421#endif
Glauber Costab5841762008-05-28 13:38:28 -03001422 enable_apic_mode();
1423}
1424
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001425/**
1426 * disconnect_bsp_APIC - detach the APIC from the interrupt system
1427 * @virt_wire_setup: indicates, whether virtual wire mode is selected
1428 *
1429 * Virtual wire mode is necessary to deliver legacy interrupts even when the
1430 * APIC is disabled.
1431 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001432void disconnect_bsp_APIC(int virt_wire_setup)
1433{
Cyrill Gorcunov1b4ee4e2008-08-18 23:12:33 +04001434 unsigned int value;
1435
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001436#ifdef CONFIG_X86_32
1437 if (pic_mode) {
1438 /*
1439 * Put the board back into PIC mode (has an effect only on
1440 * certain older boards). Note that APIC interrupts, including
1441 * IPIs, won't work beyond this point! The only exception are
1442 * INIT IPIs.
1443 */
1444 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1445 "entering PIC mode.\n");
1446 outb(0x70, 0x22);
1447 outb(0x00, 0x23);
1448 return;
1449 }
1450#endif
1451
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001452 /* Go back to Virtual Wire compatibility mode */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001453
1454 /* For the spurious interrupt use vector F, and enable it */
1455 value = apic_read(APIC_SPIV);
1456 value &= ~APIC_VECTOR_MASK;
1457 value |= APIC_SPIV_APIC_ENABLED;
1458 value |= 0xf;
1459 apic_write(APIC_SPIV, value);
1460
1461 if (!virt_wire_setup) {
1462 /*
1463 * For LVT0 make it edge triggered, active high,
1464 * external and enabled
1465 */
1466 value = apic_read(APIC_LVT0);
1467 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1468 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1469 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1470 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1471 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1472 apic_write(APIC_LVT0, value);
1473 } else {
1474 /* Disable LVT0 */
1475 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1476 }
1477
Cyrill Gorcunovc177b0b2008-08-18 20:45:56 +04001478 /*
1479 * For LVT1 make it edge triggered, active high,
1480 * nmi and enabled
1481 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001482 value = apic_read(APIC_LVT1);
1483 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1484 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1485 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1486 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1487 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1488 apic_write(APIC_LVT1, value);
1489}
1490
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001491void __cpuinit generic_processor_info(int apicid, int version)
1492{
1493 int cpu;
1494 cpumask_t tmp_map;
1495
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001496 /*
1497 * Validate version
1498 */
1499 if (version == 0x0) {
1500 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1501 "fixing up to 0x10. (tell your hw vendor)\n",
1502 version);
1503 version = 0x10;
1504 }
1505 apic_version[apicid] = version;
1506
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001507 if (num_processors >= NR_CPUS) {
1508 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001509 " Processor ignored.\n", NR_CPUS);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001510 return;
1511 }
1512
1513 num_processors++;
1514 cpus_complement(tmp_map, cpu_present_map);
1515 cpu = first_cpu(tmp_map);
1516
1517 physid_set(apicid, phys_cpu_present_map);
1518 if (apicid == boot_cpu_physical_apicid) {
1519 /*
1520 * x86_bios_cpu_apicid is required to have processors listed
1521 * in same order as logical cpu numbers. Hence the first
1522 * entry is BSP, and so on.
1523 */
1524 cpu = 0;
1525 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001526 if (apicid > max_physical_apicid)
1527 max_physical_apicid = apicid;
1528
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001529#ifdef CONFIG_X86_32
1530 /*
1531 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1532 * but we need to work other dependencies like SMP_SUSPEND etc
1533 * before this can be done without some confusion.
1534 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1535 * - Ashok Raj <ashok.raj@intel.com>
1536 */
1537 if (max_physical_apicid >= 8) {
1538 switch (boot_cpu_data.x86_vendor) {
1539 case X86_VENDOR_INTEL:
1540 if (!APIC_XAPIC(version)) {
1541 def_to_bigsmp = 0;
1542 break;
1543 }
1544 /* If P4 and above fall through */
1545 case X86_VENDOR_AMD:
1546 def_to_bigsmp = 1;
1547 }
1548 }
1549#endif
1550
1551#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001552 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001553 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1554 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1555 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001556
1557 cpu_to_apicid[cpu] = apicid;
1558 bios_cpu_apicid[cpu] = apicid;
1559 } else {
1560 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1561 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1562 }
Cyrill Gorcunov1b313f42008-08-18 20:45:57 +04001563#endif
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001564
1565 cpu_set(cpu, cpu_possible_map);
1566 cpu_set(cpu, cpu_present_map);
1567}
1568
Suresh Siddha0c81c742008-07-10 11:16:48 -07001569int hard_smp_processor_id(void)
1570{
1571 return read_apic_id();
1572}
1573
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001574/*
1575 * Power management
1576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577#ifdef CONFIG_PM
1578
1579static struct {
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001580 /*
1581 * 'active' is true if the local APIC was enabled by us and
1582 * not the BIOS; this signifies that we are also responsible
1583 * for disabling it before entering apm/acpi suspend
1584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 int active;
1586 /* r/w apic fields */
1587 unsigned int apic_id;
1588 unsigned int apic_taskpri;
1589 unsigned int apic_ldr;
1590 unsigned int apic_dfr;
1591 unsigned int apic_spiv;
1592 unsigned int apic_lvtt;
1593 unsigned int apic_lvtpc;
1594 unsigned int apic_lvt0;
1595 unsigned int apic_lvt1;
1596 unsigned int apic_lvterr;
1597 unsigned int apic_tmict;
1598 unsigned int apic_tdcr;
1599 unsigned int apic_thmr;
1600} apic_pm_state;
1601
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001602static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
1604 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001605 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 if (!apic_pm_state.active)
1608 return 0;
1609
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001610 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001611
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001612 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1614 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1615 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1616 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1617 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001618 if (maxlvt >= 4)
1619 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1621 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1622 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1623 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1624 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001625#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001626 if (maxlvt >= 5)
1627 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1628#endif
Cyrill Gorcunov24968cf2008-08-16 23:21:52 +04001629
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001630 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 disable_local_APIC();
1632 local_irq_restore(flags);
1633 return 0;
1634}
1635
1636static int lapic_resume(struct sys_device *dev)
1637{
1638 unsigned int l, h;
1639 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001640 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642 if (!apic_pm_state.active)
1643 return 0;
1644
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001645 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 local_irq_save(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001648
1649#ifdef CONFIG_X86_64
1650 if (x2apic)
1651 enable_x2apic();
1652 else
1653#endif
Yinghai Lud5e629a2008-08-17 21:12:27 -07001654 {
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001655 /*
1656 * Make sure the APICBASE points to the right address
1657 *
1658 * FIXME! This will be wrong if we ever support suspend on
1659 * SMP! We'll need to do this as part of the CPU restore!
1660 */
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001661 rdmsr(MSR_IA32_APICBASE, l, h);
1662 l &= ~MSR_IA32_APICBASE_BASE;
1663 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1664 wrmsr(MSR_IA32_APICBASE, l, h);
Yinghai Lud5e629a2008-08-17 21:12:27 -07001665 }
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1668 apic_write(APIC_ID, apic_pm_state.apic_id);
1669 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1670 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1671 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1672 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1673 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1674 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001675#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
Karsten Wiesef990fff2006-12-07 02:14:11 +01001676 if (maxlvt >= 5)
1677 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1678#endif
1679 if (maxlvt >= 4)
1680 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1682 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1683 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1684 apic_write(APIC_ESR, 0);
1685 apic_read(APIC_ESR);
1686 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1687 apic_write(APIC_ESR, 0);
1688 apic_read(APIC_ESR);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 local_irq_restore(flags);
Cyrill Gorcunov92206c92008-08-16 23:21:51 +04001691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return 0;
1693}
1694
Cyrill Gorcunov274cfe52008-08-16 23:21:53 +04001695/*
1696 * This device has no shutdown method - fully functioning local APICs
1697 * are needed on every CPU up until machine_halt/restart/poweroff.
1698 */
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001701 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 .resume = lapic_resume,
1703 .suspend = lapic_suspend,
1704};
1705
1706static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001707 .id = 0,
1708 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709};
1710
Ashok Raje6982c62005-06-25 14:54:58 -07001711static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
1713 apic_pm_state.active = 1;
1714}
1715
1716static int __init init_lapic_sysfs(void)
1717{
1718 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (!cpu_has_apic)
1721 return 0;
1722 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 error = sysdev_class_register(&lapic_sysclass);
1725 if (!error)
1726 error = sysdev_register(&device_lapic);
1727 return error;
1728}
1729device_initcall(init_lapic_sysfs);
1730
1731#else /* CONFIG_PM */
1732
1733static void apic_pm_activate(void) { }
1734
1735#endif /* CONFIG_PM */
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001738 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 *
1740 * Thus far, the major user of this is IBM's Summit2 series:
1741 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001742 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 * multi-chassis. Use available data to take a good guess.
1744 * If in doubt, go HPET.
1745 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001746__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
1748 int i, clusters, zeros;
1749 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001750 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1752
Yinghai Lu322850a2008-02-23 21:48:42 -08001753 /*
1754 * there is not this kind of box with AMD CPU yet.
1755 * Some AMD box with quadcore cpu and 8 sockets apicid
1756 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001757 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001758 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001759 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001760 return 0;
1761
Mike Travis23ca4bb2008-05-12 21:21:12 +02001762 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001763 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001766 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001767 if (bios_cpu_apicid) {
1768 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001769 }
1770 else if (i < nr_cpu_ids) {
1771 if (cpu_present(i))
1772 id = per_cpu(x86_bios_cpu_apicid, i);
1773 else
1774 continue;
1775 }
1776 else
1777 break;
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (id != BAD_APICID)
1780 __set_bit(APIC_CLUSTERID(id), clustermap);
1781 }
1782
1783 /* Problem: Partially populated chassis may not have CPUs in some of
1784 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001785 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1786 * Since clusters are allocated sequentially, count zeros only if
1787 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 */
1789 clusters = 0;
1790 zeros = 0;
1791 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1792 if (test_bit(i, clustermap)) {
1793 clusters += 1 + zeros;
1794 zeros = 0;
1795 } else
1796 ++zeros;
1797 }
1798
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001799 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1800 * not guaranteed to be synced between boards
1801 */
1802 if (is_vsmp_box() && clusters > 1)
1803 return 1;
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001806 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 * May have to revisit this when multi-core + hyperthreaded CPUs come
1808 * out, but AFAIK this will work even for them.
1809 */
1810 return (clusters > 2);
1811}
1812
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001813static __init int setup_nox2apic(char *str)
1814{
1815 disable_x2apic = 1;
1816 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_X2APIC);
1817 return 0;
1818}
1819early_param("nox2apic", setup_nox2apic);
1820
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001823 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04001825static int __init setup_disableapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001826{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001828 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001829 return 0;
1830}
1831early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001833/* same as disableapic, for compatibility */
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04001834static int __init setup_nolapic(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001835{
Cyrill Gorcunov789fa732008-08-18 20:46:01 +04001836 return setup_disableapic(arg);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001837}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001838early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001840static int __init parse_lapic_timer_c2_ok(char *arg)
1841{
1842 local_apic_timer_c2_ok = 1;
1843 return 0;
1844}
1845early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1846
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001847static int __init parse_disable_apic_timer(char *arg)
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001848{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 disable_apic_timer = 1;
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001850 return 0;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001851}
Cyrill Gorcunov36fef092008-08-15 13:51:20 +02001852early_param("noapictimer", parse_disable_apic_timer);
1853
1854static int __init parse_nolapic_timer(char *arg)
1855{
1856 disable_apic_timer = 1;
1857 return 0;
1858}
1859early_param("nolapic_timer", parse_nolapic_timer);
Andi Kleen73dea472006-02-03 21:50:50 +01001860
Cyrill Gorcunov920fa7a2008-08-24 02:01:41 -07001861#ifdef CONFIG_X86_64
Andi Kleen0c3749c2006-02-03 21:51:41 +01001862static __init int setup_apicpmtimer(char *s)
1863{
1864 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001865 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001866 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001867}
1868__setup("apicpmtimer", setup_apicpmtimer);
Cyrill Gorcunov920fa7a2008-08-24 02:01:41 -07001869#endif
Andi Kleen0c3749c2006-02-03 21:51:41 +01001870
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04001871static int __init apic_set_verbosity(char *arg)
1872{
1873 if (!arg) {
1874#ifdef CONFIG_X86_64
1875 skip_ioapic_setup = 0;
Cyrill Gorcunov79af9be2008-08-18 20:46:00 +04001876 return 0;
1877#endif
1878 return -EINVAL;
1879 }
1880
1881 if (strcmp("debug", arg) == 0)
1882 apic_verbosity = APIC_DEBUG;
1883 else if (strcmp("verbose", arg) == 0)
1884 apic_verbosity = APIC_VERBOSE;
1885 else {
1886 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1887 " use apic=verbose or apic=debug\n", arg);
1888 return -EINVAL;
1889 }
1890
1891 return 0;
1892}
1893early_param("apic", apic_set_verbosity);
1894
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001895static int __init lapic_insert_resource(void)
1896{
1897 if (!apic_phys)
1898 return -1;
1899
1900 /* Put local APIC into the resource map. */
1901 lapic_resource.start = apic_phys;
1902 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1903 insert_resource(&iomem_resource, &lapic_resource);
1904
1905 return 0;
1906}
1907
1908/*
1909 * need call insert after e820_reserve_resources()
1910 * that is using request_resource
1911 */
1912late_initcall(lapic_insert_resource);