blob: 118830cba1ae4ed0b6aab59f219364c8b677d639 [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>
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +010026#include <linux/module.h>
Aaron Durbin39928722006-12-07 02:14:01 +010027#include <linux/ioport.h>
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020028#include <linux/clockchips.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <asm/atomic.h>
31#include <asm/smp.h>
32#include <asm/mtrr.h>
33#include <asm/mpspec.h>
34#include <asm/pgalloc.h>
35#include <asm/mach_apic.h>
Andi Kleen75152112005-05-16 21:53:34 -070036#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010037#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010038#include <asm/proto.h>
39#include <asm/timex.h>
john stultz2d0c87c2007-02-16 01:28:18 -080040#include <asm/hpet.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020041#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43int apic_verbosity;
Andi Kleen73dea472006-02-03 21:50:50 +010044int apic_runs_main_timer;
Andi Kleen0c3749c2006-02-03 21:51:41 +010045int apic_calibrate_pmtmr __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Thomas Gleixnerfb79d222007-10-12 23:04:07 +020047int disable_apic_timer __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds2e7c2832007-03-23 11:32:31 -070049/* Local APIC timer works in C2? */
50int local_apic_timer_c2_ok;
51EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
52
Aaron Durbin39928722006-12-07 02:14:01 +010053static struct resource *ioapic_resources;
54static struct resource lapic_resource = {
55 .name = "Local APIC",
56 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
57};
58
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020059static unsigned int calibration_result;
60
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020061static int lapic_next_event(unsigned long delta,
62 struct clock_event_device *evt);
63static void lapic_timer_setup(enum clock_event_mode mode,
64 struct clock_event_device *evt);
65
66static void lapic_timer_broadcast(cpumask_t mask);
67
68static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen);
69
70static struct clock_event_device lapic_clockevent = {
71 .name = "lapic",
72 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
73 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
74 .shift = 32,
75 .set_mode = lapic_timer_setup,
76 .set_next_event = lapic_next_event,
77 .broadcast = lapic_timer_broadcast,
78 .rating = 100,
79 .irq = -1,
80};
81static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
82
83static int lapic_next_event(unsigned long delta,
84 struct clock_event_device *evt)
85{
86 apic_write(APIC_TMICT, delta);
87 return 0;
88}
89
90static void lapic_timer_setup(enum clock_event_mode mode,
91 struct clock_event_device *evt)
92{
93 unsigned long flags;
94 unsigned int v;
95
96 /* Lapic used as dummy for broadcast ? */
97 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
98 return;
99
100 local_irq_save(flags);
101
102 switch (mode) {
103 case CLOCK_EVT_MODE_PERIODIC:
104 case CLOCK_EVT_MODE_ONESHOT:
105 __setup_APIC_LVTT(calibration_result,
106 mode != CLOCK_EVT_MODE_PERIODIC, 1);
107 break;
108 case CLOCK_EVT_MODE_UNUSED:
109 case CLOCK_EVT_MODE_SHUTDOWN:
110 v = apic_read(APIC_LVTT);
111 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
112 apic_write(APIC_LVTT, v);
113 break;
114 case CLOCK_EVT_MODE_RESUME:
115 /* Nothing to do here */
116 break;
117 }
118
119 local_irq_restore(flags);
120}
121
122/*
123 * Local APIC timer broadcast function
124 */
125static void lapic_timer_broadcast(cpumask_t mask)
126{
127#ifdef CONFIG_SMP
128 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
129#endif
130}
131
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +0100132/*
133 * cpu_mask that denotes the CPUs that needs timer interrupt coming in as
134 * IPIs in place of local APIC timers
135 */
136static cpumask_t timer_interrupt_broadcast_ipi_mask;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/* Using APIC to generate smp_local_timer_interrupt? */
Andreas Mohracae9d32006-06-23 02:04:25 -0700139int using_apic_timer __read_mostly = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static void apic_pm_activate(void);
142
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200143void apic_wait_icr_idle(void)
144{
145 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
146 cpu_relax();
147}
148
149unsigned int safe_apic_wait_icr_idle(void)
150{
151 unsigned int send_status;
152 int timeout;
153
154 timeout = 0;
155 do {
156 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
157 if (!send_status)
158 break;
159 udelay(100);
160 } while (timeout++ < 1000);
161
162 return send_status;
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165void enable_NMI_through_LVT0 (void * dummy)
166{
Andi Kleen11a8e772006-01-11 22:46:51 +0100167 unsigned int v;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200168
169 /* unmask and set to NMI */
170 v = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100171 apic_write(APIC_LVT0, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174int get_maxlvt(void)
175{
Andi Kleen11a8e772006-01-11 22:46:51 +0100176 unsigned int v, maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 v = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 maxlvt = GET_APIC_MAXLVT(v);
180 return maxlvt;
181}
182
Andi Kleen3777a952006-02-03 21:51:53 +0100183/*
184 * 'what should we do if we get a hw irq event on an illegal vector'.
185 * each architecture has to answer this themselves.
186 */
187void ack_bad_irq(unsigned int irq)
188{
189 printk("unexpected IRQ trap at vector %02x\n", irq);
190 /*
191 * Currently unexpected vectors happen only on SMP and APIC.
192 * We _must_ ack these because every local APIC has only N
193 * irq slots per priority level, and a 'hanging, unacked' IRQ
194 * holds up an irq slot - in excessive cases (when multiple
195 * unexpected vectors occur) that might lock up the APIC
196 * completely.
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200197 * But don't ack when the APIC is disabled. -AK
Andi Kleen3777a952006-02-03 21:51:53 +0100198 */
199 if (!disable_apic)
200 ack_APIC_irq();
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203void clear_local_APIC(void)
204{
205 int maxlvt;
206 unsigned int v;
207
208 maxlvt = get_maxlvt();
209
210 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200211 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 * if the vector is zero. Mask LVTERR first to prevent this.
213 */
214 if (maxlvt >= 3) {
215 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100216 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218 /*
219 * Careful: we have to set masks only first to deassert
220 * any level-triggered sources.
221 */
222 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100223 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100225 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100227 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (maxlvt >= 4) {
229 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100230 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
233 /*
234 * Clean APIC state for other OSs:
235 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100236 apic_write(APIC_LVTT, APIC_LVT_MASKED);
237 apic_write(APIC_LVT0, APIC_LVT_MASKED);
238 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100240 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100242 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200243 apic_write(APIC_ESR, 0);
244 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Eric W. Biederman208fb932005-06-25 14:57:45 -0700247void disconnect_bsp_APIC(int virt_wire_setup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200249 /* Go back to Virtual Wire compatibility mode */
250 unsigned long value;
251
252 /* For the spurious interrupt use vector F, and enable it */
253 value = apic_read(APIC_SPIV);
254 value &= ~APIC_VECTOR_MASK;
255 value |= APIC_SPIV_APIC_ENABLED;
256 value |= 0xf;
257 apic_write(APIC_SPIV, value);
258
259 if (!virt_wire_setup) {
260 /* For LVT0 make it edge triggered, active high, external and enabled */
261 value = apic_read(APIC_LVT0);
262 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
263 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
264 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED );
265 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
266 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
267 apic_write(APIC_LVT0, value);
268 } else {
269 /* Disable LVT0 */
270 apic_write(APIC_LVT0, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
Eric W. Biederman208fb932005-06-25 14:57:45 -0700272
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200273 /* For LVT1 make it edge triggered, active high, nmi and enabled */
274 value = apic_read(APIC_LVT1);
275 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
Eric W. Biederman208fb932005-06-25 14:57:45 -0700276 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
277 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200278 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
279 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
280 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283void disable_local_APIC(void)
284{
285 unsigned int value;
286
287 clear_local_APIC();
288
289 /*
290 * Disable APIC (implies clearing of registers
291 * for 82489DX!).
292 */
293 value = apic_read(APIC_SPIV);
294 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100295 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298/*
299 * This is to verify that we're looking at a real local APIC.
300 * Check these against your board if the CPUs aren't getting
301 * started for no apparent reason.
302 */
303int __init verify_local_APIC(void)
304{
305 unsigned int reg0, reg1;
306
307 /*
308 * The version register is read-only in a real APIC.
309 */
310 reg0 = apic_read(APIC_LVR);
311 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
312 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
313 reg1 = apic_read(APIC_LVR);
314 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
315
316 /*
317 * The two version reads above should print the same
318 * numbers. If the second one is different, then we
319 * poke at a non-APIC.
320 */
321 if (reg1 != reg0)
322 return 0;
323
324 /*
325 * Check if the version looks reasonably.
326 */
327 reg1 = GET_APIC_VERSION(reg0);
328 if (reg1 == 0x00 || reg1 == 0xff)
329 return 0;
330 reg1 = get_maxlvt();
331 if (reg1 < 0x02 || reg1 == 0xff)
332 return 0;
333
334 /*
335 * The ID register is read/write in a real APIC.
336 */
337 reg0 = apic_read(APIC_ID);
338 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
339 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
340 reg1 = apic_read(APIC_ID);
341 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
342 apic_write(APIC_ID, reg0);
343 if (reg1 != (reg0 ^ APIC_ID_MASK))
344 return 0;
345
346 /*
347 * The next two are just to see if we have sane values.
348 * They're only really relevant if we're in Virtual Wire
349 * compatibility mode, but most boxes are anymore.
350 */
351 reg0 = apic_read(APIC_LVT0);
352 apic_printk(APIC_DEBUG,"Getting LVT0: %x\n", reg0);
353 reg1 = apic_read(APIC_LVT1);
354 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
355
356 return 1;
357}
358
359void __init sync_Arb_IDs(void)
360{
361 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
362 unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));
363 if (ver >= 0x14) /* P4 or higher */
364 return;
365
366 /*
367 * Wait for idle.
368 */
369 apic_wait_icr_idle();
370
371 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100372 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 | APIC_DM_INIT);
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * An initial setup of the virtual wire mode.
378 */
379void __init init_bsp_APIC(void)
380{
Andi Kleen11a8e772006-01-11 22:46:51 +0100381 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /*
384 * Don't do the setup now if we have a SMP BIOS as the
385 * through-I/O-APIC virtual wire mode might be active.
386 */
387 if (smp_found_config || !cpu_has_apic)
388 return;
389
390 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 /*
393 * Do not trust the local APIC being empty at bootup.
394 */
395 clear_local_APIC();
396
397 /*
398 * Enable APIC.
399 */
400 value = apic_read(APIC_SPIV);
401 value &= ~APIC_VECTOR_MASK;
402 value |= APIC_SPIV_APIC_ENABLED;
403 value |= APIC_SPIV_FOCUS_DISABLED;
404 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100405 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /*
408 * Set up the virtual wire mode.
409 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100410 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100412 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Ashok Raje6982c62005-06-25 14:54:58 -0700415void __cpuinit setup_local_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Andi Kleen11a8e772006-01-11 22:46:51 +0100417 unsigned int value, maxlvt;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100418 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Andi Kleenfe7414a2006-09-26 10:52:30 +0200422 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 /*
425 * Double-check whether this APIC is really registered.
426 * This is meaningless in clustered apic mode, so we skip it.
427 */
428 if (!apic_id_registered())
429 BUG();
430
431 /*
432 * Intel recommends to set DFR, LDR and TPR before enabling
433 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
434 * document number 292116). So here it goes...
435 */
436 init_apic_ldr();
437
438 /*
439 * Set Task Priority to 'accept all'. We never change this
440 * later on.
441 */
442 value = apic_read(APIC_TASKPRI);
443 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100444 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100447 * After a crash, we no longer service the interrupts and a pending
448 * interrupt from previous kernel might still have ISR bit set.
449 *
450 * Most probably by now CPU has serviced that pending interrupt and
451 * it might not have done the ack_APIC_irq() because it thought,
452 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
453 * does not clear the ISR bit and cpu thinks it has already serivced
454 * the interrupt. Hence a vector might get locked. It was noticed
455 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
456 */
457 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
458 value = apic_read(APIC_ISR + i*0x10);
459 for (j = 31; j >= 0; j--) {
460 if (value & (1<<j))
461 ack_APIC_irq();
462 }
463 }
464
465 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * Now that we are all set up, enable the APIC
467 */
468 value = apic_read(APIC_SPIV);
469 value &= ~APIC_VECTOR_MASK;
470 /*
471 * Enable APIC
472 */
473 value |= APIC_SPIV_APIC_ENABLED;
474
Andi Kleen3f14c742006-09-26 10:52:29 +0200475 /* We always use processor focus */
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 /*
478 * Set spurious IRQ vector
479 */
480 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100481 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /*
484 * Set up LVT0, LVT1:
485 *
486 * set up through-local-APIC on the BP's LINT0. This is not
487 * strictly necessary in pure symmetric-IO mode, but sometimes
488 * we delegate interrupts to the 8259A.
489 */
490 /*
491 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
492 */
493 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200494 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 value = APIC_DM_EXTINT;
496 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", smp_processor_id());
497 } else {
498 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
499 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", smp_processor_id());
500 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100501 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 /*
504 * only the BP should see the LINT1 NMI signal, obviously.
505 */
506 if (!smp_processor_id())
507 value = APIC_DM_NMI;
508 else
509 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100510 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Andi Kleen61c11342005-09-12 18:49:23 +0200512 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 unsigned oldvalue;
514 maxlvt = get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 oldvalue = apic_read(APIC_ESR);
516 value = ERROR_APIC_VECTOR; // enables sending errors
Andi Kleen11a8e772006-01-11 22:46:51 +0100517 apic_write(APIC_LVTERR, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /*
519 * spec says clear errors after enabling vector.
520 */
521 if (maxlvt > 3)
522 apic_write(APIC_ESR, 0);
523 value = apic_read(APIC_ESR);
524 if (value != oldvalue)
525 apic_printk(APIC_VERBOSE,
526 "ESR value after enabling vector: %08x, after %08x\n",
527 oldvalue, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
530 nmi_watchdog_default();
Don Zickusf2802e72006-09-26 10:52:26 +0200531 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 apic_pm_activate();
533}
534
535#ifdef CONFIG_PM
536
537static struct {
538 /* 'active' is true if the local APIC was enabled by us and
539 not the BIOS; this signifies that we are also responsible
540 for disabling it before entering apm/acpi suspend */
541 int active;
542 /* r/w apic fields */
543 unsigned int apic_id;
544 unsigned int apic_taskpri;
545 unsigned int apic_ldr;
546 unsigned int apic_dfr;
547 unsigned int apic_spiv;
548 unsigned int apic_lvtt;
549 unsigned int apic_lvtpc;
550 unsigned int apic_lvt0;
551 unsigned int apic_lvt1;
552 unsigned int apic_lvterr;
553 unsigned int apic_tmict;
554 unsigned int apic_tdcr;
555 unsigned int apic_thmr;
556} apic_pm_state;
557
Pavel Machek0b9c33a2005-04-16 15:25:31 -0700558static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +0100561 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 if (!apic_pm_state.active)
564 return 0;
565
Karsten Wiesef990fff2006-12-07 02:14:11 +0100566 maxlvt = get_maxlvt();
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 apic_pm_state.apic_id = apic_read(APIC_ID);
569 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
570 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
571 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
572 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
573 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +0100574 if (maxlvt >= 4)
575 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
577 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
578 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
579 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
580 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +0100581#ifdef CONFIG_X86_MCE_INTEL
582 if (maxlvt >= 5)
583 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
584#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +0200585 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 disable_local_APIC();
587 local_irq_restore(flags);
588 return 0;
589}
590
591static int lapic_resume(struct sys_device *dev)
592{
593 unsigned int l, h;
594 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +0100595 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (!apic_pm_state.active)
598 return 0;
599
Karsten Wiesef990fff2006-12-07 02:14:11 +0100600 maxlvt = get_maxlvt();
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 local_irq_save(flags);
603 rdmsr(MSR_IA32_APICBASE, l, h);
604 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +0100605 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 wrmsr(MSR_IA32_APICBASE, l, h);
607 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
608 apic_write(APIC_ID, apic_pm_state.apic_id);
609 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
610 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
611 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
612 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
613 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
614 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +0100615#ifdef CONFIG_X86_MCE_INTEL
616 if (maxlvt >= 5)
617 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
618#endif
619 if (maxlvt >= 4)
620 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
622 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
623 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
624 apic_write(APIC_ESR, 0);
625 apic_read(APIC_ESR);
626 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
627 apic_write(APIC_ESR, 0);
628 apic_read(APIC_ESR);
629 local_irq_restore(flags);
630 return 0;
631}
632
633static struct sysdev_class lapic_sysclass = {
634 set_kset_name("lapic"),
635 .resume = lapic_resume,
636 .suspend = lapic_suspend,
637};
638
639static struct sys_device device_lapic = {
640 .id = 0,
641 .cls = &lapic_sysclass,
642};
643
Ashok Raje6982c62005-06-25 14:54:58 -0700644static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 apic_pm_state.active = 1;
647}
648
649static int __init init_lapic_sysfs(void)
650{
651 int error;
652 if (!cpu_has_apic)
653 return 0;
654 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
655 error = sysdev_class_register(&lapic_sysclass);
656 if (!error)
657 error = sysdev_register(&device_lapic);
658 return error;
659}
660device_initcall(init_lapic_sysfs);
661
662#else /* CONFIG_PM */
663
664static void apic_pm_activate(void) { }
665
666#endif /* CONFIG_PM */
667
668static int __init apic_set_verbosity(char *str)
669{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200670 if (str == NULL) {
671 skip_ioapic_setup = 0;
672 ioapic_force = 1;
673 return 0;
674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (strcmp("debug", str) == 0)
676 apic_verbosity = APIC_DEBUG;
677 else if (strcmp("verbose", str) == 0)
678 apic_verbosity = APIC_VERBOSE;
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200679 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200681 " use apic=verbose or apic=debug\n", str);
682 return -EINVAL;
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200685 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200687early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689/*
690 * Detect and enable local APICs on non-SMP boards.
691 * Original code written by Keir Fraser.
692 * On AMD64 we trust the BIOS - if it says no APIC it is likely
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200693 * not correctly set up (usually the APIC timer won't work etc.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 */
695
696static int __init detect_init_APIC (void)
697{
698 if (!cpu_has_apic) {
699 printk(KERN_INFO "No local APIC present\n");
700 return -1;
701 }
702
703 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
704 boot_cpu_id = 0;
705 return 0;
706}
707
Aaron Durbin39928722006-12-07 02:14:01 +0100708#ifdef CONFIG_X86_IO_APIC
709static struct resource * __init ioapic_setup_resources(void)
710{
711#define IOAPIC_RESOURCE_NAME_SIZE 11
712 unsigned long n;
713 struct resource *res;
714 char *mem;
715 int i;
716
717 if (nr_ioapics <= 0)
718 return NULL;
719
720 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
721 n *= nr_ioapics;
722
723 mem = alloc_bootmem(n);
724 res = (void *)mem;
725
726 if (mem != NULL) {
727 memset(mem, 0, n);
728 mem += sizeof(struct resource) * nr_ioapics;
729
730 for (i = 0; i < nr_ioapics; i++) {
731 res[i].name = mem;
732 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
733 sprintf(mem, "IOAPIC %u", i);
734 mem += IOAPIC_RESOURCE_NAME_SIZE;
735 }
736 }
737
738 ioapic_resources = res;
739
740 return res;
741}
742
743static int __init ioapic_insert_resources(void)
744{
745 int i;
746 struct resource *r = ioapic_resources;
747
748 if (!r) {
749 printk("IO APIC resources could be not be allocated.\n");
750 return -1;
751 }
752
753 for (i = 0; i < nr_ioapics; i++) {
754 insert_resource(&iomem_resource, r);
755 r++;
756 }
757
758 return 0;
759}
760
761/* Insert the IO APIC resources after PCI initialization has occured to handle
762 * IO APICS that are mapped in on a BAR in PCI space. */
763late_initcall(ioapic_insert_resources);
764#endif
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766void __init init_apic_mappings(void)
767{
768 unsigned long apic_phys;
769
770 /*
771 * If no local APIC can be found then set up a fake all
772 * zeroes page to simulate the local APIC and another
773 * one for the IO-APIC.
774 */
775 if (!smp_found_config && detect_init_APIC()) {
776 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
777 apic_phys = __pa(apic_phys);
778 } else
779 apic_phys = mp_lapic_addr;
780
781 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
Yinghai Lu7ffeeb12007-10-12 23:04:06 +0200782 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
783 APIC_BASE, apic_phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Aaron Durbin39928722006-12-07 02:14:01 +0100785 /* Put local APIC into the resource map. */
786 lapic_resource.start = apic_phys;
787 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
788 insert_resource(&iomem_resource, &lapic_resource);
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
791 * Fetch the APIC ID of the BSP in case we have a
792 * default configuration (or the MP table is broken).
793 */
Andi Kleen1d3fbbf2005-09-12 18:49:24 +0200794 boot_cpu_id = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 {
797 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
798 int i;
Aaron Durbin39928722006-12-07 02:14:01 +0100799 struct resource *ioapic_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Aaron Durbin39928722006-12-07 02:14:01 +0100801 ioapic_res = ioapic_setup_resources();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 for (i = 0; i < nr_ioapics; i++) {
803 if (smp_found_config) {
804 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
805 } else {
806 ioapic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
807 ioapic_phys = __pa(ioapic_phys);
808 }
809 set_fixmap_nocache(idx, ioapic_phys);
810 apic_printk(APIC_VERBOSE,"mapped IOAPIC to %016lx (%016lx)\n",
811 __fix_to_virt(idx), ioapic_phys);
812 idx++;
Aaron Durbin39928722006-12-07 02:14:01 +0100813
814 if (ioapic_res != NULL) {
815 ioapic_res->start = ioapic_phys;
816 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
817 ioapic_res++;
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823/*
824 * This function sets up the local APIC timer, with a timeout of
825 * 'clocks' APIC bus clock. During calibration we actually call
826 * this function twice on the boot CPU, once with a bogus timeout
827 * value, second time for real. The other (noncalibrating) CPUs
828 * call this function only once, with the real, calibrated value.
829 *
830 * We do reads before writes even if unnecessary, to get around the
831 * P5 APIC double write bug.
832 */
833
Thomas Gleixner80174092007-10-12 23:04:06 +0200834static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
David Rientjes86bd58b2006-12-07 02:14:11 +0100836 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Thomas Gleixner80174092007-10-12 23:04:06 +0200838 lvtt_value = LOCAL_TIMER_VECTOR;
839 if (!oneshot)
840 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
841 if (!irqen)
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +0100842 lvtt_value |= APIC_LVT_MASKED;
843
Andi Kleen11a8e772006-01-11 22:46:51 +0100844 apic_write(APIC_LVTT, lvtt_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /*
847 * Divide PICLK by 16
848 */
849 tmp_value = apic_read(APIC_TDCR);
Andi Kleen11a8e772006-01-11 22:46:51 +0100850 apic_write(APIC_TDCR, (tmp_value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
852 | APIC_TDR_DIV_16);
853
Thomas Gleixner80174092007-10-12 23:04:06 +0200854 if (!oneshot)
Thomas Gleixnerb58eb002007-10-12 23:04:06 +0200855 apic_write(APIC_TMICT, clocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Thomas Gleixnerabc63fc2007-10-12 23:04:07 +0200858static void setup_APIC_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200860 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200862 memcpy(levt, &lapic_clockevent, sizeof(*levt));
863 levt->cpumask = cpumask_of_cpu(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200865 clockevents_register_device(levt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
868/*
869 * In this function we calibrate APIC bus clocks to the external
870 * timer. Unfortunately we cannot use jiffies and the timer irq
871 * to calibrate, since some later bootup code depends on getting
872 * the first irq? Ugh.
873 *
874 * We want to do the calibration only once since we
875 * want to have local timer irqs syncron. CPUs connected
876 * by the same APIC bus have the very same bus frequency.
877 * And we want to have irqs off anyways, no accidental
878 * APIC irq that way.
879 */
880
881#define TICK_COUNT 100000000
882
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200883static void __init calibrate_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
David P. Reed4637a742007-05-02 19:27:20 +0200885 unsigned apic, apic_start;
886 unsigned long tsc, tsc_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 int result;
Thomas Gleixnerc4d58cb2007-10-12 23:04:07 +0200888
889 local_irq_disable();
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /*
892 * Put whatever arbitrary (but long enough) timeout
893 * value into the APIC clock, we just want to get the
894 * counter running for calibration.
Thomas Gleixner80174092007-10-12 23:04:06 +0200895 *
896 * No interrupt enable !
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 */
Thomas Gleixnerb58eb002007-10-12 23:04:06 +0200898 __setup_APIC_LVTT(250000000, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 apic_start = apic_read(APIC_TMCCT);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100901#ifdef CONFIG_X86_PM_TIMER
902 if (apic_calibrate_pmtmr && pmtmr_ioport) {
903 pmtimer_wait(5000); /* 5ms wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 apic = apic_read(APIC_TMCCT);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100905 result = (apic_start - apic) * 1000L / 5;
906 } else
907#endif
908 {
David P. Reed4637a742007-05-02 19:27:20 +0200909 rdtscll(tsc_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Andi Kleen0c3749c2006-02-03 21:51:41 +0100911 do {
912 apic = apic_read(APIC_TMCCT);
David P. Reed4637a742007-05-02 19:27:20 +0200913 rdtscll(tsc);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100914 } while ((tsc - tsc_start) < TICK_COUNT &&
David P. Reed4637a742007-05-02 19:27:20 +0200915 (apic_start - apic) < TICK_COUNT);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100916
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200917 result = (apic_start - apic) * 1000L * tsc_khz /
Andi Kleen0c3749c2006-02-03 21:51:41 +0100918 (tsc - tsc_start);
919 }
Thomas Gleixnerc4d58cb2007-10-12 23:04:07 +0200920
921 local_irq_enable();
922
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200923 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
926 result / 1000 / 1000, result / 1000 % 1000);
927
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200928 /* Calculate the scaled math multiplication factor */
929 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC, 32);
930 lapic_clockevent.max_delta_ns =
931 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
932 lapic_clockevent.min_delta_ns =
933 clockevent_delta2ns(0xF, &lapic_clockevent);
934
Thomas Gleixnerb58eb002007-10-12 23:04:06 +0200935 calibration_result = result / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938void __init setup_boot_APIC_clock (void)
939{
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200940 /*
941 * The local apic timer can be disabled via the kernel commandline.
942 * Register the lapic timer as a dummy clock event source on SMP
943 * systems, so the broadcast mechanism is used. On UP systems simply
944 * ignore it.
945 */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200946 if (disable_apic_timer) {
947 printk(KERN_INFO "Disabling APIC timer\n");
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200948 /* No broadcast on UP ! */
949 if (num_possible_cpus() > 1)
950 setup_APIC_timer();
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200951 return;
952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 printk(KERN_INFO "Using local APIC timer interrupts.\n");
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200955 calibrate_APIC_clock();
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 /*
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200958 * If nmi_watchdog is set to IO_APIC, we need the
959 * PIT/HPET going. Otherwise register lapic as a dummy
960 * device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 */
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200962 if (nmi_watchdog != NMI_IO_APIC)
963 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
964 else
965 printk(KERN_WARNING "APIC timer registered as dummy,"
966 " due to nmi_watchdog=1!\n");
967
Thomas Gleixnerabc63fc2007-10-12 23:04:07 +0200968 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Ashok Raje6982c62005-06-25 14:54:58 -0700971void __cpuinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Thomas Gleixnerabc63fc2007-10-12 23:04:07 +0200973 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +0100976void disable_APIC_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 if (using_apic_timer) {
979 unsigned long v;
980
981 v = apic_read(APIC_LVTT);
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200982 /*
983 * When an illegal vector value (0-15) is written to an LVT
984 * entry and delivery mode is Fixed, the APIC may signal an
985 * illegal vector error, with out regard to whether the mask
986 * bit is set or whether an interrupt is actually seen on input.
987 *
988 * Boot sequence might call this function when the LVTT has
989 * '0' vector value. So make sure vector field is set to
990 * valid value.
991 */
992 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
993 apic_write(APIC_LVTT, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995}
996
997void enable_APIC_timer(void)
998{
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +0100999 int cpu = smp_processor_id();
1000
1001 if (using_apic_timer &&
1002 !cpu_isset(cpu, timer_interrupt_broadcast_ipi_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 unsigned long v;
1004
1005 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +01001006 apic_write(APIC_LVTT, v & ~APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008}
1009
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +01001010void switch_APIC_timer_to_ipi(void *cpumask)
1011{
1012 cpumask_t mask = *(cpumask_t *)cpumask;
1013 int cpu = smp_processor_id();
1014
1015 if (cpu_isset(cpu, mask) &&
1016 !cpu_isset(cpu, timer_interrupt_broadcast_ipi_mask)) {
1017 disable_APIC_timer();
1018 cpu_set(cpu, timer_interrupt_broadcast_ipi_mask);
1019 }
1020}
1021EXPORT_SYMBOL(switch_APIC_timer_to_ipi);
1022
1023void smp_send_timer_broadcast_ipi(void)
1024{
Thomas Gleixnerf33bc552007-03-23 17:14:37 -07001025 int cpu = smp_processor_id();
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +01001026 cpumask_t mask;
1027
1028 cpus_and(mask, cpu_online_map, timer_interrupt_broadcast_ipi_mask);
Thomas Gleixnerf33bc552007-03-23 17:14:37 -07001029
1030 if (cpu_isset(cpu, mask)) {
1031 cpu_clear(cpu, mask);
1032 add_pda(apic_timer_irqs, 1);
1033 smp_local_timer_interrupt();
1034 }
1035
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +01001036 if (!cpus_empty(mask)) {
1037 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
1038 }
1039}
1040
1041void switch_ipi_to_APIC_timer(void *cpumask)
1042{
1043 cpumask_t mask = *(cpumask_t *)cpumask;
1044 int cpu = smp_processor_id();
1045
1046 if (cpu_isset(cpu, mask) &&
1047 cpu_isset(cpu, timer_interrupt_broadcast_ipi_mask)) {
1048 cpu_clear(cpu, timer_interrupt_broadcast_ipi_mask);
1049 enable_APIC_timer();
1050 }
1051}
1052EXPORT_SYMBOL(switch_ipi_to_APIC_timer);
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054int setup_profiling_timer(unsigned int multiplier)
1055{
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +01001056 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Thomas Gleixnerf40f31b2007-07-21 17:10:14 +02001059void setup_APIC_extended_lvt(unsigned char lvt_off, unsigned char vector,
1060 unsigned char msg_type, unsigned char mask)
Jacob Shin89b831e2005-11-05 17:25:53 +01001061{
Jacob Shin17fc14f2006-06-26 13:58:47 +02001062 unsigned long reg = (lvt_off << 4) + K8_APIC_EXT_LVT_BASE;
1063 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
Jacob Shin89b831e2005-11-05 17:25:53 +01001064 apic_write(reg, v);
1065}
Jacob Shin89b831e2005-11-05 17:25:53 +01001066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067/*
1068 * Local timer interrupt handler. It does both profiling and
1069 * process statistics/rescheduling.
1070 *
1071 * We do profiling in every local tick, statistics/rescheduling
1072 * happen only every 'profiling multiplier' ticks. The default
1073 * multiplier is 1 and it can be changed by writing the new multiplier
1074 * value into /proc/profile.
1075 */
1076
David Howells7d12e782006-10-05 14:55:46 +01001077void smp_local_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001079 int cpu = smp_processor_id();
1080 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /*
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001083 * Normally we should not be here till LAPIC has been initialized but
1084 * in some cases like kdump, its possible that there is a pending LAPIC
1085 * timer interrupt from previous kernel's context and is delivered in
1086 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 *
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001088 * Interrupts are enabled early and LAPIC is setup much later, hence
1089 * its possible that when we get here evt->event_handler is NULL.
1090 * Check for event_handler being NULL and discard the interrupt as
1091 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 */
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001093 if (!evt->event_handler) {
1094 printk(KERN_WARNING
1095 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
1096 /* Switch it off */
1097 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
1098 return;
1099 }
1100
1101 /*
1102 * the NMI deadlock-detector uses this.
1103 */
1104 add_pda(apic_timer_irqs, 1);
1105
1106 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
1109/*
1110 * Local APIC timer interrupt. This is the most natural way for doing
1111 * local interrupts, but local timer interrupts can be emulated by
1112 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
1113 *
1114 * [ if a single-CPU system runs an SMP kernel then we call the local
1115 * interrupt as well. Thus we cannot inline the local irq ... ]
1116 */
Andrew Mortond150ad72006-10-06 13:28:09 -07001117void smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Andrew Mortond150ad72006-10-06 13:28:09 -07001119 struct pt_regs *old_regs = set_irq_regs(regs);
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 * NOTE! We'd better ACK the irq immediately,
1123 * because timer handling can be slow.
1124 */
1125 ack_APIC_irq();
1126 /*
1127 * update_process_times() expects us to have done irq_enter().
1128 * Besides, if we don't timer interrupts ignore the global
1129 * interrupt lock, which is the WrongThing (tm) to do.
1130 */
Andi Kleen95833c82006-01-11 22:44:36 +01001131 exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 irq_enter();
David Howells7d12e782006-10-05 14:55:46 +01001133 smp_local_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 irq_exit();
Andrew Mortond150ad72006-10-06 13:28:09 -07001135 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
1138/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001139 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 *
1141 * Thus far, the major user of this is IBM's Summit2 series:
1142 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001143 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 * multi-chassis. Use available data to take a good guess.
1145 * If in doubt, go HPET.
1146 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001147__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 int i, clusters, zeros;
1150 unsigned id;
1151 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1152
Suresh Siddha376ec33f2005-05-16 21:53:32 -07001153 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 for (i = 0; i < NR_CPUS; i++) {
1156 id = bios_cpu_apicid[i];
1157 if (id != BAD_APICID)
1158 __set_bit(APIC_CLUSTERID(id), clustermap);
1159 }
1160
1161 /* Problem: Partially populated chassis may not have CPUs in some of
1162 * the APIC clusters they have been allocated. Only present CPUs have
1163 * bios_cpu_apicid entries, thus causing zeroes in the bitmap. Since
1164 * clusters are allocated sequentially, count zeros only if they are
1165 * bounded by ones.
1166 */
1167 clusters = 0;
1168 zeros = 0;
1169 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1170 if (test_bit(i, clustermap)) {
1171 clusters += 1 + zeros;
1172 zeros = 0;
1173 } else
1174 ++zeros;
1175 }
1176
1177 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001178 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 * May have to revisit this when multi-core + hyperthreaded CPUs come
1180 * out, but AFAIK this will work even for them.
1181 */
1182 return (clusters > 2);
1183}
1184
1185/*
1186 * This interrupt should _never_ happen with our APIC/SMP architecture
1187 */
1188asmlinkage void smp_spurious_interrupt(void)
1189{
1190 unsigned int v;
Andi Kleen95833c82006-01-11 22:44:36 +01001191 exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 irq_enter();
1193 /*
1194 * Check if this really is a spurious interrupt and ACK it
1195 * if it is a vectored one. Just in case...
1196 * Spurious interrupts should not be ACKed.
1197 */
1198 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1199 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1200 ack_APIC_irq();
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 irq_exit();
1203}
1204
1205/*
1206 * This interrupt should never happen with our APIC/SMP architecture
1207 */
1208
1209asmlinkage void smp_error_interrupt(void)
1210{
1211 unsigned int v, v1;
1212
Andi Kleen95833c82006-01-11 22:44:36 +01001213 exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 irq_enter();
1215 /* First tickle the hardware, only then report what went on. -- REW */
1216 v = apic_read(APIC_ESR);
1217 apic_write(APIC_ESR, 0);
1218 v1 = apic_read(APIC_ESR);
1219 ack_APIC_irq();
1220 atomic_inc(&irq_err_count);
1221
1222 /* Here is what the APIC error bits mean:
1223 0: Send CS error
1224 1: Receive CS error
1225 2: Send accept error
1226 3: Receive accept error
1227 4: Reserved
1228 5: Send illegal vector
1229 6: Received illegal vector
1230 7: Illegal register address
1231 */
1232 printk (KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001233 smp_processor_id(), v , v1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 irq_exit();
1235}
1236
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001237int disable_apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239/*
1240 * This initializes the IO-APIC and APIC hardware if this is
1241 * a UP kernel.
1242 */
1243int __init APIC_init_uniprocessor (void)
1244{
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001245 if (disable_apic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 printk(KERN_INFO "Apic disabled\n");
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001247 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001249 if (!cpu_has_apic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 disable_apic = 1;
1251 printk(KERN_INFO "Apic disabled by BIOS\n");
1252 return -1;
1253 }
1254
1255 verify_local_APIC();
1256
Andi Kleen357e11d2005-09-12 18:49:24 +02001257 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_id);
Andi Kleen11a8e772006-01-11 22:46:51 +01001258 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 setup_local_APIC();
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
Andi Kleen7f11d8a2006-09-26 10:52:29 +02001263 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 else
1265 nr_ioapics = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 setup_boot_APIC_clock();
Andi Kleen75152112005-05-16 21:53:34 -07001267 check_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return 0;
1269}
1270
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001271static __init int setup_disableapic(char *str)
1272{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 disable_apic = 1;
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001274 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1275 return 0;
1276}
1277early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001279/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001280static __init int setup_nolapic(char *str)
1281{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001282 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001283}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001284early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001286static int __init parse_lapic_timer_c2_ok(char *arg)
1287{
1288 local_apic_timer_c2_ok = 1;
1289 return 0;
1290}
1291early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1292
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001293static __init int setup_noapictimer(char *str)
1294{
Andi Kleen73dea472006-02-03 21:50:50 +01001295 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001298 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001299}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Andi Kleen73dea472006-02-03 21:50:50 +01001301static __init int setup_apicmaintimer(char *str)
1302{
1303 apic_runs_main_timer = 1;
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001304
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001305 return 1;
Andi Kleen73dea472006-02-03 21:50:50 +01001306}
1307__setup("apicmaintimer", setup_apicmaintimer);
1308
1309static __init int setup_noapicmaintimer(char *str)
1310{
1311 apic_runs_main_timer = -1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001312 return 1;
Andi Kleen73dea472006-02-03 21:50:50 +01001313}
1314__setup("noapicmaintimer", setup_noapicmaintimer);
1315
Andi Kleen0c3749c2006-02-03 21:51:41 +01001316static __init int setup_apicpmtimer(char *s)
1317{
1318 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001319 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001320 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001321}
1322__setup("apicpmtimer", setup_apicpmtimer);
1323
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001324__setup("noapictimer", setup_noapictimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325