blob: e571351f2a93edb715a593b488a9710e41c09fd2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Local APIC handling, local APIC timers
3 *
4 * (c) 1999, 2000 Ingo Molnar <mingo@redhat.com>
5 *
6 * Fixes
7 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
8 * thanks to Eric Gilmore
9 * and Rolf G. Tews
10 * for testing these extensively.
11 * Maciej W. Rozycki : Various updates and fixes.
12 * Mikael Pettersson : Power Management for UP-APIC.
13 * Pavel Machek and
14 * Mikael Pettersson : PM converted to driver model.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18
19#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h>
21#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/interrupt.h>
23#include <linux/mc146818rtc.h>
24#include <linux/kernel_stat.h>
25#include <linux/sysdev.h>
Aaron Durbin39928722006-12-07 02:14:01 +010026#include <linux/ioport.h>
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020027#include <linux/clockchips.h>
Thomas Gleixner70a20022008-01-30 13:30:18 +010028#include <linux/acpi_pmtmr.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010029#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/atomic.h>
32#include <asm/smp.h>
33#include <asm/mtrr.h>
34#include <asm/mpspec.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010035#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/pgalloc.h>
Andi Kleen75152112005-05-16 21:53:34 -070037#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010038#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010039#include <asm/proto.h>
40#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020041#include <asm/apic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Glauber Costa5af55732008-03-25 13:28:56 -030043#include <mach_ipi.h>
Glauber Costadd46e3c2008-03-25 18:10:46 -030044#include <mach_apic.h>
Glauber Costa5af55732008-03-25 13:28:56 -030045
Thomas Gleixneraa276e12008-06-09 19:15:00 +020046static int disable_apic_timer __cpuinitdata;
Chris Wrightbc1d99c2007-10-12 23:04:23 +020047static int apic_calibrate_pmtmr __initdata;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010048int disable_apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010050/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -070051int local_apic_timer_c2_ok;
52EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
53
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010054/*
55 * Debug level, exported for io_apic.c
56 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010057unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010058
Alexey Starikovskiybab4b272008-05-19 19:47:03 +040059/* Have we found an MP table */
60int smp_found_config;
61
Aaron Durbin39928722006-12-07 02:14:01 +010062static struct resource lapic_resource = {
63 .name = "Local APIC",
64 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
65};
66
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020067static unsigned int calibration_result;
68
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020069static int lapic_next_event(unsigned long delta,
70 struct clock_event_device *evt);
71static void lapic_timer_setup(enum clock_event_mode mode,
72 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020073static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +010074static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020075
76static struct clock_event_device lapic_clockevent = {
77 .name = "lapic",
78 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
79 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
80 .shift = 32,
81 .set_mode = lapic_timer_setup,
82 .set_next_event = lapic_next_event,
83 .broadcast = lapic_timer_broadcast,
84 .rating = 100,
85 .irq = -1,
86};
87static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
88
Andi Kleend3432892008-01-30 13:33:17 +010089static unsigned long apic_phys;
90
Alexey Starikovskiy3f530702008-03-27 23:55:47 +030091unsigned long mp_lapic_addr;
92
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +030093unsigned int __cpuinitdata maxcpus = NR_CPUS;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010094/*
95 * Get the LAPIC version
96 */
97static inline int lapic_get_version(void)
98{
99 return GET_APIC_VERSION(apic_read(APIC_LVR));
100}
101
102/*
103 * Check, if the APIC is integrated or a seperate chip
104 */
105static inline int lapic_is_integrated(void)
106{
107 return 1;
108}
109
110/*
111 * Check, whether this is a modern or a first generation APIC
112 */
113static int modern_apic(void)
114{
115 /* AMD systems use old APIC versions, so check the CPU */
116 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
117 boot_cpu_data.x86 >= 0xf)
118 return 1;
119 return lapic_get_version() >= 0x14;
120}
121
122void apic_wait_icr_idle(void)
123{
124 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
125 cpu_relax();
126}
127
128u32 safe_apic_wait_icr_idle(void)
129{
130 u32 send_status;
131 int timeout;
132
133 timeout = 0;
134 do {
135 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
136 if (!send_status)
137 break;
138 udelay(100);
139 } while (timeout++ < 1000);
140
141 return send_status;
142}
143
144/**
145 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
146 */
Jan Beuliche9427102008-01-30 13:31:24 +0100147void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100148{
149 unsigned int v;
150
151 /* unmask and set to NMI */
152 v = APIC_DM_NMI;
153 apic_write(APIC_LVT0, v);
154}
155
156/**
157 * lapic_get_maxlvt - get the maximum number of local vector table entries
158 */
159int lapic_get_maxlvt(void)
160{
161 unsigned int v, maxlvt;
162
163 v = apic_read(APIC_LVR);
164 maxlvt = GET_APIC_MAXLVT(v);
165 return maxlvt;
166}
167
168/*
169 * This function sets up the local APIC timer, with a timeout of
170 * 'clocks' APIC bus clock. During calibration we actually call
171 * this function twice on the boot CPU, once with a bogus timeout
172 * value, second time for real. The other (noncalibrating) CPUs
173 * call this function only once, with the real, calibrated value.
174 *
175 * We do reads before writes even if unnecessary, to get around the
176 * P5 APIC double write bug.
177 */
178
179static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
180{
181 unsigned int lvtt_value, tmp_value;
182
183 lvtt_value = LOCAL_TIMER_VECTOR;
184 if (!oneshot)
185 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
186 if (!irqen)
187 lvtt_value |= APIC_LVT_MASKED;
188
189 apic_write(APIC_LVTT, lvtt_value);
190
191 /*
192 * Divide PICLK by 16
193 */
194 tmp_value = apic_read(APIC_TDCR);
195 apic_write(APIC_TDCR, (tmp_value
196 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
197 | APIC_TDR_DIV_16);
198
199 if (!oneshot)
200 apic_write(APIC_TMICT, clocks);
201}
202
203/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100204 * Setup extended LVT, AMD specific (K8, family 10h)
205 *
206 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
207 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Robert Richter286f5712008-07-22 21:08:46 +0200208 *
209 * If mask=1, the LVT entry does not generate interrupts while mask=0
210 * enables the vector. See also the BKDGs.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100211 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100212
213#define APIC_EILVT_LVTOFF_MCE 0
214#define APIC_EILVT_LVTOFF_IBS 1
215
216static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100217{
Robert Richter7b83dae2008-01-30 13:30:40 +0100218 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100219 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
220
221 apic_write(reg, v);
222}
223
Robert Richter7b83dae2008-01-30 13:30:40 +0100224u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
225{
226 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
227 return APIC_EILVT_LVTOFF_MCE;
228}
229
230u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
231{
232 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
233 return APIC_EILVT_LVTOFF_IBS;
234}
Robert Richter6aa360e2008-07-23 15:28:14 +0200235EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs);
Robert Richter7b83dae2008-01-30 13:30:40 +0100236
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100237/*
238 * Program the next event, relative to now
239 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200240static int lapic_next_event(unsigned long delta,
241 struct clock_event_device *evt)
242{
243 apic_write(APIC_TMICT, delta);
244 return 0;
245}
246
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100247/*
248 * Setup the lapic timer in periodic or oneshot mode
249 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200250static void lapic_timer_setup(enum clock_event_mode mode,
251 struct clock_event_device *evt)
252{
253 unsigned long flags;
254 unsigned int v;
255
256 /* Lapic used as dummy for broadcast ? */
257 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
258 return;
259
260 local_irq_save(flags);
261
262 switch (mode) {
263 case CLOCK_EVT_MODE_PERIODIC:
264 case CLOCK_EVT_MODE_ONESHOT:
265 __setup_APIC_LVTT(calibration_result,
266 mode != CLOCK_EVT_MODE_PERIODIC, 1);
267 break;
268 case CLOCK_EVT_MODE_UNUSED:
269 case CLOCK_EVT_MODE_SHUTDOWN:
270 v = apic_read(APIC_LVTT);
271 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
272 apic_write(APIC_LVTT, v);
273 break;
274 case CLOCK_EVT_MODE_RESUME:
275 /* Nothing to do here */
276 break;
277 }
278
279 local_irq_restore(flags);
280}
281
282/*
283 * Local APIC timer broadcast function
284 */
285static void lapic_timer_broadcast(cpumask_t mask)
286{
287#ifdef CONFIG_SMP
288 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
289#endif
290}
291
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100292/*
293 * Setup the local APIC timer for this CPU. Copy the initilized values
294 * of the boot CPU and register the clock event in the framework.
295 */
296static void setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200297{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100298 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
299
300 memcpy(levt, &lapic_clockevent, sizeof(*levt));
301 levt->cpumask = cpumask_of_cpu(smp_processor_id());
302
303 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200304}
305
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100306/*
307 * In this function we calibrate APIC bus clocks to the external
308 * timer. Unfortunately we cannot use jiffies and the timer irq
309 * to calibrate, since some later bootup code depends on getting
310 * the first irq? Ugh.
311 *
312 * We want to do the calibration only once since we
313 * want to have local timer irqs syncron. CPUs connected
314 * by the same APIC bus have the very same bus frequency.
315 * And we want to have irqs off anyways, no accidental
316 * APIC irq that way.
317 */
318
319#define TICK_COUNT 100000000
320
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400321static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200322{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100323 unsigned apic, apic_start;
324 unsigned long tsc, tsc_start;
325 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200326
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100327 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200328
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100329 /*
330 * Put whatever arbitrary (but long enough) timeout
331 * value into the APIC clock, we just want to get the
332 * counter running for calibration.
333 *
334 * No interrupt enable !
335 */
336 __setup_APIC_LVTT(250000000, 0, 0);
337
338 apic_start = apic_read(APIC_TMCCT);
339#ifdef CONFIG_X86_PM_TIMER
340 if (apic_calibrate_pmtmr && pmtmr_ioport) {
341 pmtimer_wait(5000); /* 5ms wait */
342 apic = apic_read(APIC_TMCCT);
343 result = (apic_start - apic) * 1000L / 5;
344 } else
345#endif
346 {
347 rdtscll(tsc_start);
348
349 do {
350 apic = apic_read(APIC_TMCCT);
351 rdtscll(tsc);
352 } while ((tsc - tsc_start) < TICK_COUNT &&
353 (apic_start - apic) < TICK_COUNT);
354
355 result = (apic_start - apic) * 1000L * tsc_khz /
356 (tsc - tsc_start);
357 }
358
359 local_irq_enable();
360
361 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
362
363 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
364 result / 1000 / 1000, result / 1000 % 1000);
365
366 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900367 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
368 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100369 lapic_clockevent.max_delta_ns =
370 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
371 lapic_clockevent.min_delta_ns =
372 clockevent_delta2ns(0xF, &lapic_clockevent);
373
374 calibration_result = result / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400375
376 /*
377 * Do a sanity check on the APIC calibration result
378 */
379 if (calibration_result < (1000000 / HZ)) {
380 printk(KERN_WARNING
381 "APIC frequency too slow, disabling apic timer\n");
382 return -1;
383 }
384
385 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200386}
387
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100388/*
389 * Setup the boot APIC
390 *
391 * Calibrate and verify the result.
392 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100393void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100395 /*
396 * The local apic timer can be disabled via the kernel commandline.
397 * Register the lapic timer as a dummy clock event source on SMP
398 * systems, so the broadcast mechanism is used. On UP systems simply
399 * ignore it.
400 */
401 if (disable_apic_timer) {
402 printk(KERN_INFO "Disabling APIC timer\n");
403 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100404 if (num_possible_cpus() > 1) {
405 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100406 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100407 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100408 return;
409 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200410
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100411 printk(KERN_INFO "Using local APIC timer interrupts.\n");
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400412 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100413 /* No broadcast on UP ! */
414 if (num_possible_cpus() > 1)
415 setup_APIC_timer();
416 return;
417 }
418
419 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100420 * If nmi_watchdog is set to IO_APIC, we need the
421 * PIT/HPET going. Otherwise register lapic as a dummy
422 * device.
423 */
424 if (nmi_watchdog != NMI_IO_APIC)
425 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
426 else
427 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200428 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100429
430 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100433void __cpuinit setup_secondary_APIC_clock(void)
434{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100435 setup_APIC_timer();
436}
437
438/*
439 * The guts of the apic timer interrupt
440 */
441static void local_apic_timer_interrupt(void)
442{
443 int cpu = smp_processor_id();
444 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
445
446 /*
447 * Normally we should not be here till LAPIC has been initialized but
448 * in some cases like kdump, its possible that there is a pending LAPIC
449 * timer interrupt from previous kernel's context and is delivered in
450 * new kernel the moment interrupts are enabled.
451 *
452 * Interrupts are enabled early and LAPIC is setup much later, hence
453 * its possible that when we get here evt->event_handler is NULL.
454 * Check for event_handler being NULL and discard the interrupt as
455 * spurious.
456 */
457 if (!evt->event_handler) {
458 printk(KERN_WARNING
459 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
460 /* Switch it off */
461 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
462 return;
463 }
464
465 /*
466 * the NMI deadlock-detector uses this.
467 */
468 add_pda(apic_timer_irqs, 1);
469
470 evt->event_handler(evt);
471}
472
473/*
474 * Local APIC timer interrupt. This is the most natural way for doing
475 * local interrupts, but local timer interrupts can be emulated by
476 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
477 *
478 * [ if a single-CPU system runs an SMP kernel then we call the local
479 * interrupt as well. Thus we cannot inline the local irq ... ]
480 */
481void smp_apic_timer_interrupt(struct pt_regs *regs)
482{
483 struct pt_regs *old_regs = set_irq_regs(regs);
484
485 /*
486 * NOTE! We'd better ACK the irq immediately,
487 * because timer handling can be slow.
488 */
489 ack_APIC_irq();
490 /*
491 * update_process_times() expects us to have done irq_enter().
492 * Besides, if we don't timer interrupts ignore the global
493 * interrupt lock, which is the WrongThing (tm) to do.
494 */
495 exit_idle();
496 irq_enter();
497 local_apic_timer_interrupt();
498 irq_exit();
499 set_irq_regs(old_regs);
500}
501
502int setup_profiling_timer(unsigned int multiplier)
503{
504 return -EINVAL;
505}
506
507
508/*
509 * Local APIC start and shutdown
510 */
511
512/**
513 * clear_local_APIC - shutdown the local APIC
514 *
515 * This is called, when a CPU is disabled and before rebooting, so the state of
516 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
517 * leftovers during boot.
518 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519void clear_local_APIC(void)
520{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400521 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100522 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Andi Kleend3432892008-01-30 13:33:17 +0100524 /* APIC hasn't been mapped yet */
525 if (!apic_phys)
526 return;
527
528 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200530 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * if the vector is zero. Mask LVTERR first to prevent this.
532 */
533 if (maxlvt >= 3) {
534 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100535 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 /*
538 * Careful: we have to set masks only first to deassert
539 * any level-triggered sources.
540 */
541 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100542 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100544 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100546 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (maxlvt >= 4) {
548 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100549 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
552 /*
553 * Clean APIC state for other OSs:
554 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100555 apic_write(APIC_LVTT, APIC_LVT_MASKED);
556 apic_write(APIC_LVT0, APIC_LVT_MASKED);
557 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100559 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100561 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200562 apic_write(APIC_ESR, 0);
563 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100566/**
567 * disable_local_APIC - clear and disable the local APIC
568 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569void disable_local_APIC(void)
570{
571 unsigned int value;
572
573 clear_local_APIC();
574
575 /*
576 * Disable APIC (implies clearing of registers
577 * for 82489DX!).
578 */
579 value = apic_read(APIC_SPIV);
580 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100581 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700584void lapic_shutdown(void)
585{
586 unsigned long flags;
587
588 if (!cpu_has_apic)
589 return;
590
591 local_irq_save(flags);
592
593 disable_local_APIC();
594
595 local_irq_restore(flags);
596}
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598/*
599 * This is to verify that we're looking at a real local APIC.
600 * Check these against your board if the CPUs aren't getting
601 * started for no apparent reason.
602 */
603int __init verify_local_APIC(void)
604{
605 unsigned int reg0, reg1;
606
607 /*
608 * The version register is read-only in a real APIC.
609 */
610 reg0 = apic_read(APIC_LVR);
611 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
612 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
613 reg1 = apic_read(APIC_LVR);
614 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
615
616 /*
617 * The two version reads above should print the same
618 * numbers. If the second one is different, then we
619 * poke at a non-APIC.
620 */
621 if (reg1 != reg0)
622 return 0;
623
624 /*
625 * Check if the version looks reasonably.
626 */
627 reg1 = GET_APIC_VERSION(reg0);
628 if (reg1 == 0x00 || reg1 == 0xff)
629 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100630 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (reg1 < 0x02 || reg1 == 0xff)
632 return 0;
633
634 /*
635 * The ID register is read/write in a real APIC.
636 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500637 reg0 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
639 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Jack Steiner05f2d122008-03-28 14:12:02 -0500640 reg1 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
642 apic_write(APIC_ID, reg0);
643 if (reg1 != (reg0 ^ APIC_ID_MASK))
644 return 0;
645
646 /*
647 * The next two are just to see if we have sane values.
648 * They're only really relevant if we're in Virtual Wire
649 * compatibility mode, but most boxes are anymore.
650 */
651 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100652 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 reg1 = apic_read(APIC_LVT1);
654 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
655
656 return 1;
657}
658
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100659/**
660 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662void __init sync_Arb_IDs(void)
663{
664 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100665 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return;
667
668 /*
669 * Wait for idle.
670 */
671 apic_wait_icr_idle();
672
673 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100674 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 | APIC_DM_INIT);
676}
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678/*
679 * An initial setup of the virtual wire mode.
680 */
681void __init init_bsp_APIC(void)
682{
Andi Kleen11a8e772006-01-11 22:46:51 +0100683 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /*
686 * Don't do the setup now if we have a SMP BIOS as the
687 * through-I/O-APIC virtual wire mode might be active.
688 */
689 if (smp_found_config || !cpu_has_apic)
690 return;
691
692 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /*
695 * Do not trust the local APIC being empty at bootup.
696 */
697 clear_local_APIC();
698
699 /*
700 * Enable APIC.
701 */
702 value = apic_read(APIC_SPIV);
703 value &= ~APIC_VECTOR_MASK;
704 value |= APIC_SPIV_APIC_ENABLED;
705 value |= APIC_SPIV_FOCUS_DISABLED;
706 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100707 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 /*
710 * Set up the virtual wire mode.
711 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100712 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100714 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100717/**
718 * setup_local_APIC - setup the local APIC
719 */
720void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Andi Kleen739f33b2008-01-30 13:30:40 +0100722 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100723 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Jack Steinerac23d4e2008-03-28 14:12:16 -0500725 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Andi Kleenfe7414a2006-09-26 10:52:30 +0200728 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /*
731 * Double-check whether this APIC is really registered.
732 * This is meaningless in clustered apic mode, so we skip it.
733 */
734 if (!apic_id_registered())
735 BUG();
736
737 /*
738 * Intel recommends to set DFR, LDR and TPR before enabling
739 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
740 * document number 292116). So here it goes...
741 */
742 init_apic_ldr();
743
744 /*
745 * Set Task Priority to 'accept all'. We never change this
746 * later on.
747 */
748 value = apic_read(APIC_TASKPRI);
749 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100750 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100753 * After a crash, we no longer service the interrupts and a pending
754 * interrupt from previous kernel might still have ISR bit set.
755 *
756 * Most probably by now CPU has serviced that pending interrupt and
757 * it might not have done the ack_APIC_irq() because it thought,
758 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
759 * does not clear the ISR bit and cpu thinks it has already serivced
760 * the interrupt. Hence a vector might get locked. It was noticed
761 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
762 */
763 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
764 value = apic_read(APIC_ISR + i*0x10);
765 for (j = 31; j >= 0; j--) {
766 if (value & (1<<j))
767 ack_APIC_irq();
768 }
769 }
770
771 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * Now that we are all set up, enable the APIC
773 */
774 value = apic_read(APIC_SPIV);
775 value &= ~APIC_VECTOR_MASK;
776 /*
777 * Enable APIC
778 */
779 value |= APIC_SPIV_APIC_ENABLED;
780
Andi Kleen3f14c742006-09-26 10:52:29 +0200781 /* We always use processor focus */
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /*
784 * Set spurious IRQ vector
785 */
786 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100787 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 /*
790 * Set up LVT0, LVT1:
791 *
792 * set up through-local-APIC on the BP's LINT0. This is not
793 * strictly necessary in pure symmetric-IO mode, but sometimes
794 * we delegate interrupts to the 8259A.
795 */
796 /*
797 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
798 */
799 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200800 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200802 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
803 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 } else {
805 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200806 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
807 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100809 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /*
812 * only the BP should see the LINT1 NMI signal, obviously.
813 */
814 if (!smp_processor_id())
815 value = APIC_DM_NMI;
816 else
817 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100818 apic_write(APIC_LVT1, value);
Jack Steinerac23d4e2008-03-28 14:12:16 -0500819 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +0100820}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Ingo Molnara4928cf2008-04-23 13:20:56 +0200822static void __cpuinit lapic_setup_esr(void)
Andi Kleen739f33b2008-01-30 13:30:40 +0100823{
824 unsigned maxlvt = lapic_get_maxlvt();
825
826 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100827 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100828 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100829 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100830 if (maxlvt > 3)
831 apic_write(APIC_ESR, 0);
832}
Yinghai Lu1c695242008-01-30 13:30:39 +0100833
Andi Kleen739f33b2008-01-30 13:30:40 +0100834void __cpuinit end_local_APIC_setup(void)
835{
836 lapic_setup_esr();
Don Zickusf2802e72006-09-26 10:52:26 +0200837 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 apic_pm_activate();
839}
840
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100841/*
842 * Detect and enable local APICs on non-SMP boards.
843 * Original code written by Keir Fraser.
844 * On AMD64 we trust the BIOS - if it says no APIC it is likely
845 * not correctly set up (usually the APIC timer won't work etc.)
846 */
847static int __init detect_init_APIC(void)
848{
849 if (!cpu_has_apic) {
850 printk(KERN_INFO "No local APIC present\n");
851 return -1;
852 }
853
854 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300855 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100856 return 0;
857}
858
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800859void __init early_init_lapic_mapping(void)
860{
Thomas Gleixner431ee792008-05-12 15:43:35 +0200861 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800862
863 /*
864 * If no local APIC can be found then go out
865 * : it means there is no mpatable and MADT
866 */
867 if (!smp_found_config)
868 return;
869
Thomas Gleixner431ee792008-05-12 15:43:35 +0200870 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800871
Thomas Gleixner431ee792008-05-12 15:43:35 +0200872 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800873 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +0200874 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800875
876 /*
877 * Fetch the APIC ID of the BSP in case we have a
878 * default configuration (or the MP table is broken).
879 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500880 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800881}
882
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100883/**
884 * init_apic_mappings - initialize APIC mappings
885 */
886void __init init_apic_mappings(void)
887{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100888 /*
889 * If no local APIC can be found then set up a fake all
890 * zeroes page to simulate the local APIC and another
891 * one for the IO-APIC.
892 */
893 if (!smp_found_config && detect_init_APIC()) {
894 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
895 apic_phys = __pa(apic_phys);
896 } else
897 apic_phys = mp_lapic_addr;
898
899 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
900 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
901 APIC_BASE, apic_phys);
902
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100903 /*
904 * Fetch the APIC ID of the BSP in case we have a
905 * default configuration (or the MP table is broken).
906 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500907 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100908}
909
910/*
911 * This initializes the IO-APIC and APIC hardware if this is
912 * a UP kernel.
913 */
914int __init APIC_init_uniprocessor(void)
915{
916 if (disable_apic) {
917 printk(KERN_INFO "Apic disabled\n");
918 return -1;
919 }
920 if (!cpu_has_apic) {
921 disable_apic = 1;
922 printk(KERN_INFO "Apic disabled by BIOS\n");
923 return -1;
924 }
925
926 verify_local_APIC();
927
Glauber Costab5841762008-05-28 13:38:28 -0300928 connect_bsp_APIC();
929
Jack Steinerb6df1b82008-06-19 21:51:05 -0500930 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300931 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100932
933 setup_local_APIC();
934
Andi Kleen739f33b2008-01-30 13:30:40 +0100935 /*
936 * Now enable IO-APICs, actually call clear_IO_APIC
937 * We need clear_IO_APIC before enabling vector on BP
938 */
939 if (!skip_ioapic_setup && nr_ioapics)
940 enable_IO_APIC();
941
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +0100942 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
943 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +0100944 end_local_APIC_setup();
945
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100946 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
947 setup_IO_APIC();
948 else
949 nr_ioapics = 0;
950 setup_boot_APIC_clock();
951 check_nmi_watchdog();
952 return 0;
953}
954
955/*
956 * Local APIC interrupts
957 */
958
959/*
960 * This interrupt should _never_ happen with our APIC/SMP architecture
961 */
962asmlinkage void smp_spurious_interrupt(void)
963{
964 unsigned int v;
965 exit_idle();
966 irq_enter();
967 /*
968 * Check if this really is a spurious interrupt and ACK it
969 * if it is a vectored one. Just in case...
970 * Spurious interrupts should not be ACKed.
971 */
972 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
973 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
974 ack_APIC_irq();
975
976 add_pda(irq_spurious_count, 1);
977 irq_exit();
978}
979
980/*
981 * This interrupt should never happen with our APIC/SMP architecture
982 */
983asmlinkage void smp_error_interrupt(void)
984{
985 unsigned int v, v1;
986
987 exit_idle();
988 irq_enter();
989 /* First tickle the hardware, only then report what went on. -- REW */
990 v = apic_read(APIC_ESR);
991 apic_write(APIC_ESR, 0);
992 v1 = apic_read(APIC_ESR);
993 ack_APIC_irq();
994 atomic_inc(&irq_err_count);
995
996 /* Here is what the APIC error bits mean:
997 0: Send CS error
998 1: Receive CS error
999 2: Send accept error
1000 3: Receive accept error
1001 4: Reserved
1002 5: Send illegal vector
1003 6: Received illegal vector
1004 7: Illegal register address
1005 */
1006 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1007 smp_processor_id(), v , v1);
1008 irq_exit();
1009}
1010
Glauber Costab5841762008-05-28 13:38:28 -03001011/**
1012 * * connect_bsp_APIC - attach the APIC to the interrupt system
1013 * */
1014void __init connect_bsp_APIC(void)
1015{
1016 enable_apic_mode();
1017}
1018
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001019void disconnect_bsp_APIC(int virt_wire_setup)
1020{
1021 /* Go back to Virtual Wire compatibility mode */
1022 unsigned long value;
1023
1024 /* For the spurious interrupt use vector F, and enable it */
1025 value = apic_read(APIC_SPIV);
1026 value &= ~APIC_VECTOR_MASK;
1027 value |= APIC_SPIV_APIC_ENABLED;
1028 value |= 0xf;
1029 apic_write(APIC_SPIV, value);
1030
1031 if (!virt_wire_setup) {
1032 /*
1033 * For LVT0 make it edge triggered, active high,
1034 * external and enabled
1035 */
1036 value = apic_read(APIC_LVT0);
1037 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1038 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1039 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1040 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1041 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1042 apic_write(APIC_LVT0, value);
1043 } else {
1044 /* Disable LVT0 */
1045 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1046 }
1047
1048 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1049 value = apic_read(APIC_LVT1);
1050 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1051 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1052 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1053 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1054 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1055 apic_write(APIC_LVT1, value);
1056}
1057
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001058void __cpuinit generic_processor_info(int apicid, int version)
1059{
1060 int cpu;
1061 cpumask_t tmp_map;
1062
1063 if (num_processors >= NR_CPUS) {
1064 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1065 " Processor ignored.\n", NR_CPUS);
1066 return;
1067 }
1068
1069 if (num_processors >= maxcpus) {
1070 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1071 " Processor ignored.\n", maxcpus);
1072 return;
1073 }
1074
1075 num_processors++;
1076 cpus_complement(tmp_map, cpu_present_map);
1077 cpu = first_cpu(tmp_map);
1078
1079 physid_set(apicid, phys_cpu_present_map);
1080 if (apicid == boot_cpu_physical_apicid) {
1081 /*
1082 * x86_bios_cpu_apicid is required to have processors listed
1083 * in same order as logical cpu numbers. Hence the first
1084 * entry is BSP, and so on.
1085 */
1086 cpu = 0;
1087 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001088 if (apicid > max_physical_apicid)
1089 max_physical_apicid = apicid;
1090
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001091 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001092 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1093 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1094 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001095
1096 cpu_to_apicid[cpu] = apicid;
1097 bios_cpu_apicid[cpu] = apicid;
1098 } else {
1099 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1100 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1101 }
1102
1103 cpu_set(cpu, cpu_possible_map);
1104 cpu_set(cpu, cpu_present_map);
1105}
1106
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001107/*
1108 * Power management
1109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110#ifdef CONFIG_PM
1111
1112static struct {
1113 /* 'active' is true if the local APIC was enabled by us and
1114 not the BIOS; this signifies that we are also responsible
1115 for disabling it before entering apm/acpi suspend */
1116 int active;
1117 /* r/w apic fields */
1118 unsigned int apic_id;
1119 unsigned int apic_taskpri;
1120 unsigned int apic_ldr;
1121 unsigned int apic_dfr;
1122 unsigned int apic_spiv;
1123 unsigned int apic_lvtt;
1124 unsigned int apic_lvtpc;
1125 unsigned int apic_lvt0;
1126 unsigned int apic_lvt1;
1127 unsigned int apic_lvterr;
1128 unsigned int apic_tmict;
1129 unsigned int apic_tdcr;
1130 unsigned int apic_thmr;
1131} apic_pm_state;
1132
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001133static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001136 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 if (!apic_pm_state.active)
1139 return 0;
1140
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001141 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001142
Jack Steiner05f2d122008-03-28 14:12:02 -05001143 apic_pm_state.apic_id = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1145 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1146 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1147 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1148 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001149 if (maxlvt >= 4)
1150 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1152 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1153 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1154 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1155 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001156#ifdef CONFIG_X86_MCE_INTEL
1157 if (maxlvt >= 5)
1158 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1159#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001160 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 disable_local_APIC();
1162 local_irq_restore(flags);
1163 return 0;
1164}
1165
1166static int lapic_resume(struct sys_device *dev)
1167{
1168 unsigned int l, h;
1169 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001170 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 if (!apic_pm_state.active)
1173 return 0;
1174
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001175 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 local_irq_save(flags);
1178 rdmsr(MSR_IA32_APICBASE, l, h);
1179 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +01001180 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 wrmsr(MSR_IA32_APICBASE, l, h);
1182 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1183 apic_write(APIC_ID, apic_pm_state.apic_id);
1184 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1185 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1186 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1187 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1188 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1189 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001190#ifdef CONFIG_X86_MCE_INTEL
1191 if (maxlvt >= 5)
1192 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1193#endif
1194 if (maxlvt >= 4)
1195 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1197 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1198 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1199 apic_write(APIC_ESR, 0);
1200 apic_read(APIC_ESR);
1201 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1202 apic_write(APIC_ESR, 0);
1203 apic_read(APIC_ESR);
1204 local_irq_restore(flags);
1205 return 0;
1206}
1207
1208static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001209 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 .resume = lapic_resume,
1211 .suspend = lapic_suspend,
1212};
1213
1214static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001215 .id = 0,
1216 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217};
1218
Ashok Raje6982c62005-06-25 14:54:58 -07001219static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 apic_pm_state.active = 1;
1222}
1223
1224static int __init init_lapic_sysfs(void)
1225{
1226 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (!cpu_has_apic)
1229 return 0;
1230 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 error = sysdev_class_register(&lapic_sysclass);
1233 if (!error)
1234 error = sysdev_register(&device_lapic);
1235 return error;
1236}
1237device_initcall(init_lapic_sysfs);
1238
1239#else /* CONFIG_PM */
1240
1241static void apic_pm_activate(void) { }
1242
1243#endif /* CONFIG_PM */
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001246 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 *
1248 * Thus far, the major user of this is IBM's Summit2 series:
1249 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001250 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 * multi-chassis. Use available data to take a good guess.
1252 * If in doubt, go HPET.
1253 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001254__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 int i, clusters, zeros;
1257 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001258 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1260
Yinghai Lu322850a2008-02-23 21:48:42 -08001261 /*
1262 * there is not this kind of box with AMD CPU yet.
1263 * Some AMD box with quadcore cpu and 8 sockets apicid
1264 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001265 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001266 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001267 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001268 return 0;
1269
Mike Travis23ca4bb2008-05-12 21:21:12 +02001270 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001271 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001274 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001275 if (bios_cpu_apicid) {
1276 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001277 }
1278 else if (i < nr_cpu_ids) {
1279 if (cpu_present(i))
1280 id = per_cpu(x86_bios_cpu_apicid, i);
1281 else
1282 continue;
1283 }
1284 else
1285 break;
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (id != BAD_APICID)
1288 __set_bit(APIC_CLUSTERID(id), clustermap);
1289 }
1290
1291 /* Problem: Partially populated chassis may not have CPUs in some of
1292 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001293 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1294 * Since clusters are allocated sequentially, count zeros only if
1295 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 */
1297 clusters = 0;
1298 zeros = 0;
1299 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1300 if (test_bit(i, clustermap)) {
1301 clusters += 1 + zeros;
1302 zeros = 0;
1303 } else
1304 ++zeros;
1305 }
1306
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001307 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1308 * not guaranteed to be synced between boards
1309 */
1310 if (is_vsmp_box() && clusters > 1)
1311 return 1;
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001314 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 * May have to revisit this when multi-core + hyperthreaded CPUs come
1316 * out, but AFAIK this will work even for them.
1317 */
1318 return (clusters > 2);
1319}
1320
1321/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001322 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001324static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001326 if (str == NULL) {
1327 skip_ioapic_setup = 0;
1328 ioapic_force = 1;
1329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001331 if (strcmp("debug", str) == 0)
1332 apic_verbosity = APIC_DEBUG;
1333 else if (strcmp("verbose", str) == 0)
1334 apic_verbosity = APIC_VERBOSE;
1335 else {
1336 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1337 " use apic=verbose or apic=debug\n", str);
1338 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return 0;
1342}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001343early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001345static __init int setup_disableapic(char *str)
1346{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001348 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001349 return 0;
1350}
1351early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001353/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001354static __init int setup_nolapic(char *str)
1355{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001356 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001357}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001358early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001360static int __init parse_lapic_timer_c2_ok(char *arg)
1361{
1362 local_apic_timer_c2_ok = 1;
1363 return 0;
1364}
1365early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1366
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001367static __init int setup_noapictimer(char *str)
1368{
Andi Kleen73dea472006-02-03 21:50:50 +01001369 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001372 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001373}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001374__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001375
Andi Kleen0c3749c2006-02-03 21:51:41 +01001376static __init int setup_apicpmtimer(char *s)
1377{
1378 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001379 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001380 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001381}
1382__setup("apicpmtimer", setup_apicpmtimer);
1383
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001384static int __init lapic_insert_resource(void)
1385{
1386 if (!apic_phys)
1387 return -1;
1388
1389 /* Put local APIC into the resource map. */
1390 lapic_resource.start = apic_phys;
1391 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1392 insert_resource(&iomem_resource, &lapic_resource);
1393
1394 return 0;
1395}
1396
1397/*
1398 * need call insert after e820_reserve_resources()
1399 * that is using request_resource
1400 */
1401late_initcall(lapic_insert_resource);