blob: 09b82093bc759e5aa9eb1f9003bf7d4c822d0679 [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;
Thomas Gleixnerfb79d222007-10-12 23:04:07 +020044int disable_apic_timer __cpuinitdata;
Chris Wrightbc1d99c2007-10-12 23:04:23 +020045static int apic_calibrate_pmtmr __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds2e7c2832007-03-23 11:32:31 -070047/* Local APIC timer works in C2? */
48int local_apic_timer_c2_ok;
49EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
50
Aaron Durbin39928722006-12-07 02:14:01 +010051static struct resource *ioapic_resources;
52static struct resource lapic_resource = {
53 .name = "Local APIC",
54 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
55};
56
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020057static unsigned int calibration_result;
58
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020059static int lapic_next_event(unsigned long delta,
60 struct clock_event_device *evt);
61static void lapic_timer_setup(enum clock_event_mode mode,
62 struct clock_event_device *evt);
63
64static void lapic_timer_broadcast(cpumask_t mask);
65
66static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen);
67
68static struct clock_event_device lapic_clockevent = {
69 .name = "lapic",
70 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
71 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
72 .shift = 32,
73 .set_mode = lapic_timer_setup,
74 .set_next_event = lapic_next_event,
75 .broadcast = lapic_timer_broadcast,
76 .rating = 100,
77 .irq = -1,
78};
79static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
80
81static int lapic_next_event(unsigned long delta,
82 struct clock_event_device *evt)
83{
84 apic_write(APIC_TMICT, delta);
85 return 0;
86}
87
88static void lapic_timer_setup(enum clock_event_mode mode,
89 struct clock_event_device *evt)
90{
91 unsigned long flags;
92 unsigned int v;
93
94 /* Lapic used as dummy for broadcast ? */
95 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
96 return;
97
98 local_irq_save(flags);
99
100 switch (mode) {
101 case CLOCK_EVT_MODE_PERIODIC:
102 case CLOCK_EVT_MODE_ONESHOT:
103 __setup_APIC_LVTT(calibration_result,
104 mode != CLOCK_EVT_MODE_PERIODIC, 1);
105 break;
106 case CLOCK_EVT_MODE_UNUSED:
107 case CLOCK_EVT_MODE_SHUTDOWN:
108 v = apic_read(APIC_LVTT);
109 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
110 apic_write(APIC_LVTT, v);
111 break;
112 case CLOCK_EVT_MODE_RESUME:
113 /* Nothing to do here */
114 break;
115 }
116
117 local_irq_restore(flags);
118}
119
120/*
121 * Local APIC timer broadcast function
122 */
123static void lapic_timer_broadcast(cpumask_t mask)
124{
125#ifdef CONFIG_SMP
126 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
127#endif
128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void apic_pm_activate(void);
131
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200132void apic_wait_icr_idle(void)
133{
134 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
135 cpu_relax();
136}
137
138unsigned int safe_apic_wait_icr_idle(void)
139{
140 unsigned int send_status;
141 int timeout;
142
143 timeout = 0;
144 do {
145 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
146 if (!send_status)
147 break;
148 udelay(100);
149 } while (timeout++ < 1000);
150
151 return send_status;
152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154void enable_NMI_through_LVT0 (void * dummy)
155{
Andi Kleen11a8e772006-01-11 22:46:51 +0100156 unsigned int v;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200157
158 /* unmask and set to NMI */
159 v = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100160 apic_write(APIC_LVT0, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163int get_maxlvt(void)
164{
Andi Kleen11a8e772006-01-11 22:46:51 +0100165 unsigned int v, maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 v = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 maxlvt = GET_APIC_MAXLVT(v);
169 return maxlvt;
170}
171
Andi Kleen3777a952006-02-03 21:51:53 +0100172/*
173 * 'what should we do if we get a hw irq event on an illegal vector'.
174 * each architecture has to answer this themselves.
175 */
176void ack_bad_irq(unsigned int irq)
177{
178 printk("unexpected IRQ trap at vector %02x\n", irq);
179 /*
180 * Currently unexpected vectors happen only on SMP and APIC.
181 * We _must_ ack these because every local APIC has only N
182 * irq slots per priority level, and a 'hanging, unacked' IRQ
183 * holds up an irq slot - in excessive cases (when multiple
184 * unexpected vectors occur) that might lock up the APIC
185 * completely.
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200186 * But don't ack when the APIC is disabled. -AK
Andi Kleen3777a952006-02-03 21:51:53 +0100187 */
188 if (!disable_apic)
189 ack_APIC_irq();
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192void clear_local_APIC(void)
193{
194 int maxlvt;
195 unsigned int v;
196
197 maxlvt = get_maxlvt();
198
199 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200200 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * if the vector is zero. Mask LVTERR first to prevent this.
202 */
203 if (maxlvt >= 3) {
204 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100205 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207 /*
208 * Careful: we have to set masks only first to deassert
209 * any level-triggered sources.
210 */
211 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100212 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100214 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100216 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (maxlvt >= 4) {
218 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100219 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
222 /*
223 * Clean APIC state for other OSs:
224 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100225 apic_write(APIC_LVTT, APIC_LVT_MASKED);
226 apic_write(APIC_LVT0, APIC_LVT_MASKED);
227 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100229 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100231 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200232 apic_write(APIC_ESR, 0);
233 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Eric W. Biederman208fb932005-06-25 14:57:45 -0700236void disconnect_bsp_APIC(int virt_wire_setup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200238 /* Go back to Virtual Wire compatibility mode */
239 unsigned long value;
240
241 /* For the spurious interrupt use vector F, and enable it */
242 value = apic_read(APIC_SPIV);
243 value &= ~APIC_VECTOR_MASK;
244 value |= APIC_SPIV_APIC_ENABLED;
245 value |= 0xf;
246 apic_write(APIC_SPIV, value);
247
248 if (!virt_wire_setup) {
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200249 /*
250 * For LVT0 make it edge triggered, active high,
251 * external and enabled
252 */
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200253 value = apic_read(APIC_LVT0);
254 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
255 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
256 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED );
257 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
258 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
259 apic_write(APIC_LVT0, value);
260 } else {
261 /* Disable LVT0 */
262 apic_write(APIC_LVT0, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Eric W. Biederman208fb932005-06-25 14:57:45 -0700264
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200265 /* For LVT1 make it edge triggered, active high, nmi and enabled */
266 value = apic_read(APIC_LVT1);
267 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
Eric W. Biederman208fb932005-06-25 14:57:45 -0700268 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
269 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200270 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
271 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
272 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
275void disable_local_APIC(void)
276{
277 unsigned int value;
278
279 clear_local_APIC();
280
281 /*
282 * Disable APIC (implies clearing of registers
283 * for 82489DX!).
284 */
285 value = apic_read(APIC_SPIV);
286 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100287 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290/*
291 * This is to verify that we're looking at a real local APIC.
292 * Check these against your board if the CPUs aren't getting
293 * started for no apparent reason.
294 */
295int __init verify_local_APIC(void)
296{
297 unsigned int reg0, reg1;
298
299 /*
300 * The version register is read-only in a real APIC.
301 */
302 reg0 = apic_read(APIC_LVR);
303 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
304 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
305 reg1 = apic_read(APIC_LVR);
306 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
307
308 /*
309 * The two version reads above should print the same
310 * numbers. If the second one is different, then we
311 * poke at a non-APIC.
312 */
313 if (reg1 != reg0)
314 return 0;
315
316 /*
317 * Check if the version looks reasonably.
318 */
319 reg1 = GET_APIC_VERSION(reg0);
320 if (reg1 == 0x00 || reg1 == 0xff)
321 return 0;
322 reg1 = get_maxlvt();
323 if (reg1 < 0x02 || reg1 == 0xff)
324 return 0;
325
326 /*
327 * The ID register is read/write in a real APIC.
328 */
329 reg0 = apic_read(APIC_ID);
330 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
331 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
332 reg1 = apic_read(APIC_ID);
333 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
334 apic_write(APIC_ID, reg0);
335 if (reg1 != (reg0 ^ APIC_ID_MASK))
336 return 0;
337
338 /*
339 * The next two are just to see if we have sane values.
340 * They're only really relevant if we're in Virtual Wire
341 * compatibility mode, but most boxes are anymore.
342 */
343 reg0 = apic_read(APIC_LVT0);
344 apic_printk(APIC_DEBUG,"Getting LVT0: %x\n", reg0);
345 reg1 = apic_read(APIC_LVT1);
346 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
347
348 return 1;
349}
350
351void __init sync_Arb_IDs(void)
352{
353 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
354 unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));
355 if (ver >= 0x14) /* P4 or higher */
356 return;
357
358 /*
359 * Wait for idle.
360 */
361 apic_wait_icr_idle();
362
363 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100364 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 | APIC_DM_INIT);
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/*
369 * An initial setup of the virtual wire mode.
370 */
371void __init init_bsp_APIC(void)
372{
Andi Kleen11a8e772006-01-11 22:46:51 +0100373 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /*
376 * Don't do the setup now if we have a SMP BIOS as the
377 * through-I/O-APIC virtual wire mode might be active.
378 */
379 if (smp_found_config || !cpu_has_apic)
380 return;
381
382 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /*
385 * Do not trust the local APIC being empty at bootup.
386 */
387 clear_local_APIC();
388
389 /*
390 * Enable APIC.
391 */
392 value = apic_read(APIC_SPIV);
393 value &= ~APIC_VECTOR_MASK;
394 value |= APIC_SPIV_APIC_ENABLED;
395 value |= APIC_SPIV_FOCUS_DISABLED;
396 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100397 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /*
400 * Set up the virtual wire mode.
401 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100402 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100404 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Ashok Raje6982c62005-06-25 14:54:58 -0700407void __cpuinit setup_local_APIC (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Andi Kleen11a8e772006-01-11 22:46:51 +0100409 unsigned int value, maxlvt;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100410 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Andi Kleenfe7414a2006-09-26 10:52:30 +0200414 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /*
417 * Double-check whether this APIC is really registered.
418 * This is meaningless in clustered apic mode, so we skip it.
419 */
420 if (!apic_id_registered())
421 BUG();
422
423 /*
424 * Intel recommends to set DFR, LDR and TPR before enabling
425 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
426 * document number 292116). So here it goes...
427 */
428 init_apic_ldr();
429
430 /*
431 * Set Task Priority to 'accept all'. We never change this
432 * later on.
433 */
434 value = apic_read(APIC_TASKPRI);
435 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100436 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100439 * After a crash, we no longer service the interrupts and a pending
440 * interrupt from previous kernel might still have ISR bit set.
441 *
442 * Most probably by now CPU has serviced that pending interrupt and
443 * it might not have done the ack_APIC_irq() because it thought,
444 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
445 * does not clear the ISR bit and cpu thinks it has already serivced
446 * the interrupt. Hence a vector might get locked. It was noticed
447 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
448 */
449 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
450 value = apic_read(APIC_ISR + i*0x10);
451 for (j = 31; j >= 0; j--) {
452 if (value & (1<<j))
453 ack_APIC_irq();
454 }
455 }
456
457 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * Now that we are all set up, enable the APIC
459 */
460 value = apic_read(APIC_SPIV);
461 value &= ~APIC_VECTOR_MASK;
462 /*
463 * Enable APIC
464 */
465 value |= APIC_SPIV_APIC_ENABLED;
466
Andi Kleen3f14c742006-09-26 10:52:29 +0200467 /* We always use processor focus */
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /*
470 * Set spurious IRQ vector
471 */
472 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100473 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /*
476 * Set up LVT0, LVT1:
477 *
478 * set up through-local-APIC on the BP's LINT0. This is not
479 * strictly necessary in pure symmetric-IO mode, but sometimes
480 * we delegate interrupts to the 8259A.
481 */
482 /*
483 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
484 */
485 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200486 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200488 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
489 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 } else {
491 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200492 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
493 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100495 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /*
498 * only the BP should see the LINT1 NMI signal, obviously.
499 */
500 if (!smp_processor_id())
501 value = APIC_DM_NMI;
502 else
503 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100504 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Andi Kleen61c11342005-09-12 18:49:23 +0200506 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 unsigned oldvalue;
508 maxlvt = get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 oldvalue = apic_read(APIC_ESR);
510 value = ERROR_APIC_VECTOR; // enables sending errors
Andi Kleen11a8e772006-01-11 22:46:51 +0100511 apic_write(APIC_LVTERR, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /*
513 * spec says clear errors after enabling vector.
514 */
515 if (maxlvt > 3)
516 apic_write(APIC_ESR, 0);
517 value = apic_read(APIC_ESR);
518 if (value != oldvalue)
519 apic_printk(APIC_VERBOSE,
520 "ESR value after enabling vector: %08x, after %08x\n",
521 oldvalue, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523
524 nmi_watchdog_default();
Don Zickusf2802e72006-09-26 10:52:26 +0200525 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 apic_pm_activate();
527}
528
529#ifdef CONFIG_PM
530
531static struct {
532 /* 'active' is true if the local APIC was enabled by us and
533 not the BIOS; this signifies that we are also responsible
534 for disabling it before entering apm/acpi suspend */
535 int active;
536 /* r/w apic fields */
537 unsigned int apic_id;
538 unsigned int apic_taskpri;
539 unsigned int apic_ldr;
540 unsigned int apic_dfr;
541 unsigned int apic_spiv;
542 unsigned int apic_lvtt;
543 unsigned int apic_lvtpc;
544 unsigned int apic_lvt0;
545 unsigned int apic_lvt1;
546 unsigned int apic_lvterr;
547 unsigned int apic_tmict;
548 unsigned int apic_tdcr;
549 unsigned int apic_thmr;
550} apic_pm_state;
551
Pavel Machek0b9c33a2005-04-16 15:25:31 -0700552static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +0100555 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 if (!apic_pm_state.active)
558 return 0;
559
Karsten Wiesef990fff2006-12-07 02:14:11 +0100560 maxlvt = get_maxlvt();
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 apic_pm_state.apic_id = apic_read(APIC_ID);
563 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
564 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
565 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
566 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
567 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +0100568 if (maxlvt >= 4)
569 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
571 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
572 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
573 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
574 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +0100575#ifdef CONFIG_X86_MCE_INTEL
576 if (maxlvt >= 5)
577 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
578#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +0200579 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 disable_local_APIC();
581 local_irq_restore(flags);
582 return 0;
583}
584
585static int lapic_resume(struct sys_device *dev)
586{
587 unsigned int l, h;
588 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +0100589 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 if (!apic_pm_state.active)
592 return 0;
593
Karsten Wiesef990fff2006-12-07 02:14:11 +0100594 maxlvt = get_maxlvt();
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 local_irq_save(flags);
597 rdmsr(MSR_IA32_APICBASE, l, h);
598 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +0100599 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 wrmsr(MSR_IA32_APICBASE, l, h);
601 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
602 apic_write(APIC_ID, apic_pm_state.apic_id);
603 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
604 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
605 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
606 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
607 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
608 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +0100609#ifdef CONFIG_X86_MCE_INTEL
610 if (maxlvt >= 5)
611 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
612#endif
613 if (maxlvt >= 4)
614 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
616 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
617 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
618 apic_write(APIC_ESR, 0);
619 apic_read(APIC_ESR);
620 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
621 apic_write(APIC_ESR, 0);
622 apic_read(APIC_ESR);
623 local_irq_restore(flags);
624 return 0;
625}
626
627static struct sysdev_class lapic_sysclass = {
628 set_kset_name("lapic"),
629 .resume = lapic_resume,
630 .suspend = lapic_suspend,
631};
632
633static struct sys_device device_lapic = {
634 .id = 0,
635 .cls = &lapic_sysclass,
636};
637
Ashok Raje6982c62005-06-25 14:54:58 -0700638static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 apic_pm_state.active = 1;
641}
642
643static int __init init_lapic_sysfs(void)
644{
645 int error;
646 if (!cpu_has_apic)
647 return 0;
648 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
649 error = sysdev_class_register(&lapic_sysclass);
650 if (!error)
651 error = sysdev_register(&device_lapic);
652 return error;
653}
654device_initcall(init_lapic_sysfs);
655
656#else /* CONFIG_PM */
657
658static void apic_pm_activate(void) { }
659
660#endif /* CONFIG_PM */
661
662static int __init apic_set_verbosity(char *str)
663{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200664 if (str == NULL) {
665 skip_ioapic_setup = 0;
666 ioapic_force = 1;
667 return 0;
668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (strcmp("debug", str) == 0)
670 apic_verbosity = APIC_DEBUG;
671 else if (strcmp("verbose", str) == 0)
672 apic_verbosity = APIC_VERBOSE;
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200673 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200675 " use apic=verbose or apic=debug\n", str);
676 return -EINVAL;
677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200679 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200681early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683/*
684 * Detect and enable local APICs on non-SMP boards.
685 * Original code written by Keir Fraser.
686 * On AMD64 we trust the BIOS - if it says no APIC it is likely
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200687 * not correctly set up (usually the APIC timer won't work etc.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 */
689
690static int __init detect_init_APIC (void)
691{
692 if (!cpu_has_apic) {
693 printk(KERN_INFO "No local APIC present\n");
694 return -1;
695 }
696
697 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
698 boot_cpu_id = 0;
699 return 0;
700}
701
Aaron Durbin39928722006-12-07 02:14:01 +0100702#ifdef CONFIG_X86_IO_APIC
703static struct resource * __init ioapic_setup_resources(void)
704{
705#define IOAPIC_RESOURCE_NAME_SIZE 11
706 unsigned long n;
707 struct resource *res;
708 char *mem;
709 int i;
710
711 if (nr_ioapics <= 0)
712 return NULL;
713
714 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
715 n *= nr_ioapics;
716
717 mem = alloc_bootmem(n);
718 res = (void *)mem;
719
720 if (mem != NULL) {
721 memset(mem, 0, n);
722 mem += sizeof(struct resource) * nr_ioapics;
723
724 for (i = 0; i < nr_ioapics; i++) {
725 res[i].name = mem;
726 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
727 sprintf(mem, "IOAPIC %u", i);
728 mem += IOAPIC_RESOURCE_NAME_SIZE;
729 }
730 }
731
732 ioapic_resources = res;
733
734 return res;
735}
736
737static int __init ioapic_insert_resources(void)
738{
739 int i;
740 struct resource *r = ioapic_resources;
741
742 if (!r) {
743 printk("IO APIC resources could be not be allocated.\n");
744 return -1;
745 }
746
747 for (i = 0; i < nr_ioapics; i++) {
748 insert_resource(&iomem_resource, r);
749 r++;
750 }
751
752 return 0;
753}
754
755/* Insert the IO APIC resources after PCI initialization has occured to handle
756 * IO APICS that are mapped in on a BAR in PCI space. */
757late_initcall(ioapic_insert_resources);
758#endif
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760void __init init_apic_mappings(void)
761{
762 unsigned long apic_phys;
763
764 /*
765 * If no local APIC can be found then set up a fake all
766 * zeroes page to simulate the local APIC and another
767 * one for the IO-APIC.
768 */
769 if (!smp_found_config && detect_init_APIC()) {
770 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
771 apic_phys = __pa(apic_phys);
772 } else
773 apic_phys = mp_lapic_addr;
774
775 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
Yinghai Lu7ffeeb12007-10-12 23:04:06 +0200776 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
777 APIC_BASE, apic_phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Aaron Durbin39928722006-12-07 02:14:01 +0100779 /* Put local APIC into the resource map. */
780 lapic_resource.start = apic_phys;
781 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
782 insert_resource(&iomem_resource, &lapic_resource);
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /*
785 * Fetch the APIC ID of the BSP in case we have a
786 * default configuration (or the MP table is broken).
787 */
Andi Kleen1d3fbbf2005-09-12 18:49:24 +0200788 boot_cpu_id = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 {
791 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
792 int i;
Aaron Durbin39928722006-12-07 02:14:01 +0100793 struct resource *ioapic_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Aaron Durbin39928722006-12-07 02:14:01 +0100795 ioapic_res = ioapic_setup_resources();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 for (i = 0; i < nr_ioapics; i++) {
797 if (smp_found_config) {
798 ioapic_phys = mp_ioapics[i].mpc_apicaddr;
799 } else {
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200800 ioapic_phys = (unsigned long)
801 alloc_bootmem_pages(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 ioapic_phys = __pa(ioapic_phys);
803 }
804 set_fixmap_nocache(idx, ioapic_phys);
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200805 apic_printk(APIC_VERBOSE,
806 "mapped IOAPIC to %016lx (%016lx)\n",
807 __fix_to_virt(idx), ioapic_phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 idx++;
Aaron Durbin39928722006-12-07 02:14:01 +0100809
810 if (ioapic_res != NULL) {
811 ioapic_res->start = ioapic_phys;
812 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
813 ioapic_res++;
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819/*
820 * This function sets up the local APIC timer, with a timeout of
821 * 'clocks' APIC bus clock. During calibration we actually call
822 * this function twice on the boot CPU, once with a bogus timeout
823 * value, second time for real. The other (noncalibrating) CPUs
824 * call this function only once, with the real, calibrated value.
825 *
826 * We do reads before writes even if unnecessary, to get around the
827 * P5 APIC double write bug.
828 */
829
Thomas Gleixner80174092007-10-12 23:04:06 +0200830static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
David Rientjes86bd58b2006-12-07 02:14:11 +0100832 unsigned int lvtt_value, tmp_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Thomas Gleixner80174092007-10-12 23:04:06 +0200834 lvtt_value = LOCAL_TIMER_VECTOR;
835 if (!oneshot)
836 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
837 if (!irqen)
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +0100838 lvtt_value |= APIC_LVT_MASKED;
839
Andi Kleen11a8e772006-01-11 22:46:51 +0100840 apic_write(APIC_LVTT, lvtt_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /*
843 * Divide PICLK by 16
844 */
845 tmp_value = apic_read(APIC_TDCR);
Andi Kleen11a8e772006-01-11 22:46:51 +0100846 apic_write(APIC_TDCR, (tmp_value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
848 | APIC_TDR_DIV_16);
849
Thomas Gleixner80174092007-10-12 23:04:06 +0200850 if (!oneshot)
Thomas Gleixnerb58eb002007-10-12 23:04:06 +0200851 apic_write(APIC_TMICT, clocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Thomas Gleixnerabc63fc2007-10-12 23:04:07 +0200854static void setup_APIC_timer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200856 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200858 memcpy(levt, &lapic_clockevent, sizeof(*levt));
859 levt->cpumask = cpumask_of_cpu(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200861 clockevents_register_device(levt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
864/*
865 * In this function we calibrate APIC bus clocks to the external
866 * timer. Unfortunately we cannot use jiffies and the timer irq
867 * to calibrate, since some later bootup code depends on getting
868 * the first irq? Ugh.
869 *
870 * We want to do the calibration only once since we
871 * want to have local timer irqs syncron. CPUs connected
872 * by the same APIC bus have the very same bus frequency.
873 * And we want to have irqs off anyways, no accidental
874 * APIC irq that way.
875 */
876
877#define TICK_COUNT 100000000
878
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200879static void __init calibrate_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
David P. Reed4637a742007-05-02 19:27:20 +0200881 unsigned apic, apic_start;
882 unsigned long tsc, tsc_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 int result;
Thomas Gleixnerc4d58cb2007-10-12 23:04:07 +0200884
885 local_irq_disable();
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /*
888 * Put whatever arbitrary (but long enough) timeout
889 * value into the APIC clock, we just want to get the
890 * counter running for calibration.
Thomas Gleixner80174092007-10-12 23:04:06 +0200891 *
892 * No interrupt enable !
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
Thomas Gleixnerb58eb002007-10-12 23:04:06 +0200894 __setup_APIC_LVTT(250000000, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 apic_start = apic_read(APIC_TMCCT);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100897#ifdef CONFIG_X86_PM_TIMER
898 if (apic_calibrate_pmtmr && pmtmr_ioport) {
899 pmtimer_wait(5000); /* 5ms wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 apic = apic_read(APIC_TMCCT);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100901 result = (apic_start - apic) * 1000L / 5;
902 } else
903#endif
904 {
David P. Reed4637a742007-05-02 19:27:20 +0200905 rdtscll(tsc_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Andi Kleen0c3749c2006-02-03 21:51:41 +0100907 do {
908 apic = apic_read(APIC_TMCCT);
David P. Reed4637a742007-05-02 19:27:20 +0200909 rdtscll(tsc);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100910 } while ((tsc - tsc_start) < TICK_COUNT &&
David P. Reed4637a742007-05-02 19:27:20 +0200911 (apic_start - apic) < TICK_COUNT);
Andi Kleen0c3749c2006-02-03 21:51:41 +0100912
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200913 result = (apic_start - apic) * 1000L * tsc_khz /
Andi Kleen0c3749c2006-02-03 21:51:41 +0100914 (tsc - tsc_start);
915 }
Thomas Gleixnerc4d58cb2007-10-12 23:04:07 +0200916
917 local_irq_enable();
918
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200919 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
922 result / 1000 / 1000, result / 1000 % 1000);
923
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200924 /* Calculate the scaled math multiplication factor */
925 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC, 32);
926 lapic_clockevent.max_delta_ns =
927 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
928 lapic_clockevent.min_delta_ns =
929 clockevent_delta2ns(0xF, &lapic_clockevent);
930
Thomas Gleixnerb58eb002007-10-12 23:04:06 +0200931 calibration_result = result / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934void __init setup_boot_APIC_clock (void)
935{
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200936 /*
937 * The local apic timer can be disabled via the kernel commandline.
938 * Register the lapic timer as a dummy clock event source on SMP
939 * systems, so the broadcast mechanism is used. On UP systems simply
940 * ignore it.
941 */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200942 if (disable_apic_timer) {
943 printk(KERN_INFO "Disabling APIC timer\n");
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200944 /* No broadcast on UP ! */
945 if (num_possible_cpus() > 1)
946 setup_APIC_timer();
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200947 return;
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 printk(KERN_INFO "Using local APIC timer interrupts.\n");
Thomas Gleixnerd03030e2007-10-12 23:04:06 +0200951 calibrate_APIC_clock();
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /*
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200954 * If nmi_watchdog is set to IO_APIC, we need the
955 * PIT/HPET going. Otherwise register lapic as a dummy
956 * device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 */
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +0200958 if (nmi_watchdog != NMI_IO_APIC)
959 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
960 else
961 printk(KERN_WARNING "APIC timer registered as dummy,"
962 " due to nmi_watchdog=1!\n");
963
Thomas Gleixnerabc63fc2007-10-12 23:04:07 +0200964 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
Thomas Gleixner89039b32007-10-14 22:57:45 +0200967/*
968 * AMD C1E enabled CPUs have a real nasty problem: Some BIOSes set the
969 * C1E flag only in the secondary CPU, so when we detect the wreckage
970 * we already have enabled the boot CPU local apic timer. Check, if
971 * disable_apic_timer is set and the DUMMY flag is cleared. If yes,
972 * set the DUMMY flag again and force the broadcast mode in the
973 * clockevents layer.
974 */
975void __cpuinit check_boot_apic_timer_broadcast(void)
976{
977 struct clock_event_device *levt = &per_cpu(lapic_events, boot_cpu_id);
978
979 if (!disable_apic_timer ||
980 (lapic_clockevent.features & CLOCK_EVT_FEAT_DUMMY))
981 return;
982
983 printk(KERN_INFO "AMD C1E detected late. Force timer broadcast.\n");
984 lapic_clockevent.features |= CLOCK_EVT_FEAT_DUMMY;
985 levt->features |= CLOCK_EVT_FEAT_DUMMY;
986
987 local_irq_enable();
988 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE, &boot_cpu_id);
989 local_irq_disable();
990}
991
Ashok Raje6982c62005-06-25 14:54:58 -0700992void __cpuinit setup_secondary_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Thomas Gleixner89039b32007-10-14 22:57:45 +0200994 check_boot_apic_timer_broadcast();
Thomas Gleixnerabc63fc2007-10-12 23:04:07 +0200995 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998int setup_profiling_timer(unsigned int multiplier)
999{
Venkatesh Pallipadi5a07a302006-01-11 22:44:18 +01001000 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
Thomas Gleixnerf40f31b2007-07-21 17:10:14 +02001003void setup_APIC_extended_lvt(unsigned char lvt_off, unsigned char vector,
1004 unsigned char msg_type, unsigned char mask)
Jacob Shin89b831e2005-11-05 17:25:53 +01001005{
Jacob Shin17fc14f2006-06-26 13:58:47 +02001006 unsigned long reg = (lvt_off << 4) + K8_APIC_EXT_LVT_BASE;
1007 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
Jacob Shin89b831e2005-11-05 17:25:53 +01001008 apic_write(reg, v);
1009}
Jacob Shin89b831e2005-11-05 17:25:53 +01001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/*
1012 * Local timer interrupt handler. It does both profiling and
1013 * process statistics/rescheduling.
1014 *
1015 * We do profiling in every local tick, statistics/rescheduling
1016 * happen only every 'profiling multiplier' ticks. The default
1017 * multiplier is 1 and it can be changed by writing the new multiplier
1018 * value into /proc/profile.
1019 */
1020
David Howells7d12e782006-10-05 14:55:46 +01001021void smp_local_timer_interrupt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001023 int cpu = smp_processor_id();
1024 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /*
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001027 * Normally we should not be here till LAPIC has been initialized but
1028 * in some cases like kdump, its possible that there is a pending LAPIC
1029 * timer interrupt from previous kernel's context and is delivered in
1030 * new kernel the moment interrupts are enabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 *
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001032 * Interrupts are enabled early and LAPIC is setup much later, hence
1033 * its possible that when we get here evt->event_handler is NULL.
1034 * Check for event_handler being NULL and discard the interrupt as
1035 * spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001037 if (!evt->event_handler) {
1038 printk(KERN_WARNING
1039 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
1040 /* Switch it off */
1041 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
1042 return;
1043 }
1044
1045 /*
1046 * the NMI deadlock-detector uses this.
1047 */
1048 add_pda(apic_timer_irqs, 1);
1049
1050 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
1053/*
1054 * Local APIC timer interrupt. This is the most natural way for doing
1055 * local interrupts, but local timer interrupts can be emulated by
1056 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
1057 *
1058 * [ if a single-CPU system runs an SMP kernel then we call the local
1059 * interrupt as well. Thus we cannot inline the local irq ... ]
1060 */
Andrew Mortond150ad72006-10-06 13:28:09 -07001061void smp_apic_timer_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Andrew Mortond150ad72006-10-06 13:28:09 -07001063 struct pt_regs *old_regs = set_irq_regs(regs);
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 * NOTE! We'd better ACK the irq immediately,
1067 * because timer handling can be slow.
1068 */
1069 ack_APIC_irq();
1070 /*
1071 * update_process_times() expects us to have done irq_enter().
1072 * Besides, if we don't timer interrupts ignore the global
1073 * interrupt lock, which is the WrongThing (tm) to do.
1074 */
Andi Kleen95833c82006-01-11 22:44:36 +01001075 exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 irq_enter();
David Howells7d12e782006-10-05 14:55:46 +01001077 smp_local_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 irq_exit();
Andrew Mortond150ad72006-10-06 13:28:09 -07001079 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001083 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 *
1085 * Thus far, the major user of this is IBM's Summit2 series:
1086 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001087 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 * multi-chassis. Use available data to take a good guess.
1089 * If in doubt, go HPET.
1090 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001091__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 int i, clusters, zeros;
1094 unsigned id;
1095 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1096
Suresh Siddha376ec332005-05-16 21:53:32 -07001097 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 for (i = 0; i < NR_CPUS; i++) {
1100 id = bios_cpu_apicid[i];
1101 if (id != BAD_APICID)
1102 __set_bit(APIC_CLUSTERID(id), clustermap);
1103 }
1104
1105 /* Problem: Partially populated chassis may not have CPUs in some of
1106 * the APIC clusters they have been allocated. Only present CPUs have
1107 * bios_cpu_apicid entries, thus causing zeroes in the bitmap. Since
1108 * clusters are allocated sequentially, count zeros only if they are
1109 * bounded by ones.
1110 */
1111 clusters = 0;
1112 zeros = 0;
1113 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1114 if (test_bit(i, clustermap)) {
1115 clusters += 1 + zeros;
1116 zeros = 0;
1117 } else
1118 ++zeros;
1119 }
1120
1121 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001122 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 * May have to revisit this when multi-core + hyperthreaded CPUs come
1124 * out, but AFAIK this will work even for them.
1125 */
1126 return (clusters > 2);
1127}
1128
1129/*
1130 * This interrupt should _never_ happen with our APIC/SMP architecture
1131 */
1132asmlinkage void smp_spurious_interrupt(void)
1133{
1134 unsigned int v;
Andi Kleen95833c82006-01-11 22:44:36 +01001135 exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 irq_enter();
1137 /*
1138 * Check if this really is a spurious interrupt and ACK it
1139 * if it is a vectored one. Just in case...
1140 * Spurious interrupts should not be ACKed.
1141 */
1142 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1143 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1144 ack_APIC_irq();
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 irq_exit();
1147}
1148
1149/*
1150 * This interrupt should never happen with our APIC/SMP architecture
1151 */
1152
1153asmlinkage void smp_error_interrupt(void)
1154{
1155 unsigned int v, v1;
1156
Andi Kleen95833c82006-01-11 22:44:36 +01001157 exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 irq_enter();
1159 /* First tickle the hardware, only then report what went on. -- REW */
1160 v = apic_read(APIC_ESR);
1161 apic_write(APIC_ESR, 0);
1162 v1 = apic_read(APIC_ESR);
1163 ack_APIC_irq();
1164 atomic_inc(&irq_err_count);
1165
1166 /* Here is what the APIC error bits mean:
1167 0: Send CS error
1168 1: Receive CS error
1169 2: Send accept error
1170 3: Receive accept error
1171 4: Reserved
1172 5: Send illegal vector
1173 6: Received illegal vector
1174 7: Illegal register address
1175 */
1176 printk (KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001177 smp_processor_id(), v , v1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 irq_exit();
1179}
1180
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001181int disable_apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183/*
1184 * This initializes the IO-APIC and APIC hardware if this is
1185 * a UP kernel.
1186 */
1187int __init APIC_init_uniprocessor (void)
1188{
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001189 if (disable_apic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 printk(KERN_INFO "Apic disabled\n");
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001191 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001193 if (!cpu_has_apic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 disable_apic = 1;
1195 printk(KERN_INFO "Apic disabled by BIOS\n");
1196 return -1;
1197 }
1198
1199 verify_local_APIC();
1200
Andi Kleen357e11d2005-09-12 18:49:24 +02001201 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_id);
Andi Kleen11a8e772006-01-11 22:46:51 +01001202 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 setup_local_APIC();
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
Andi Kleen7f11d8a2006-09-26 10:52:29 +02001207 setup_IO_APIC();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 else
1209 nr_ioapics = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 setup_boot_APIC_clock();
Andi Kleen75152112005-05-16 21:53:34 -07001211 check_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return 0;
1213}
1214
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001215static __init int setup_disableapic(char *str)
1216{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 disable_apic = 1;
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001218 clear_bit(X86_FEATURE_APIC, boot_cpu_data.x86_capability);
1219 return 0;
1220}
1221early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001223/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001224static __init int setup_nolapic(char *str)
1225{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001226 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001227}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001228early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001230static int __init parse_lapic_timer_c2_ok(char *arg)
1231{
1232 local_apic_timer_c2_ok = 1;
1233 return 0;
1234}
1235early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1236
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001237static __init int setup_noapictimer(char *str)
1238{
Andi Kleen73dea472006-02-03 21:50:50 +01001239 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001242 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001243}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001244__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001245
Andi Kleen0c3749c2006-02-03 21:51:41 +01001246static __init int setup_apicpmtimer(char *s)
1247{
1248 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001249 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001250 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001251}
1252__setup("apicpmtimer", setup_apicpmtimer);
1253