blob: ce294d623e5f05fb11f7f9b23774e7567635b54b [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 */
57int apic_verbosity;
58
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.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100208 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100209
210#define APIC_EILVT_LVTOFF_MCE 0
211#define APIC_EILVT_LVTOFF_IBS 1
212
213static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100214{
Robert Richter7b83dae2008-01-30 13:30:40 +0100215 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100216 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
217
218 apic_write(reg, v);
219}
220
Robert Richter7b83dae2008-01-30 13:30:40 +0100221u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
222{
223 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
224 return APIC_EILVT_LVTOFF_MCE;
225}
226
227u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
228{
229 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
230 return APIC_EILVT_LVTOFF_IBS;
231}
232
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100233/*
234 * Program the next event, relative to now
235 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200236static int lapic_next_event(unsigned long delta,
237 struct clock_event_device *evt)
238{
239 apic_write(APIC_TMICT, delta);
240 return 0;
241}
242
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100243/*
244 * Setup the lapic timer in periodic or oneshot mode
245 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200246static void lapic_timer_setup(enum clock_event_mode mode,
247 struct clock_event_device *evt)
248{
249 unsigned long flags;
250 unsigned int v;
251
252 /* Lapic used as dummy for broadcast ? */
253 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
254 return;
255
256 local_irq_save(flags);
257
258 switch (mode) {
259 case CLOCK_EVT_MODE_PERIODIC:
260 case CLOCK_EVT_MODE_ONESHOT:
261 __setup_APIC_LVTT(calibration_result,
262 mode != CLOCK_EVT_MODE_PERIODIC, 1);
263 break;
264 case CLOCK_EVT_MODE_UNUSED:
265 case CLOCK_EVT_MODE_SHUTDOWN:
266 v = apic_read(APIC_LVTT);
267 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
268 apic_write(APIC_LVTT, v);
269 break;
270 case CLOCK_EVT_MODE_RESUME:
271 /* Nothing to do here */
272 break;
273 }
274
275 local_irq_restore(flags);
276}
277
278/*
279 * Local APIC timer broadcast function
280 */
281static void lapic_timer_broadcast(cpumask_t mask)
282{
283#ifdef CONFIG_SMP
284 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
285#endif
286}
287
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100288/*
289 * Setup the local APIC timer for this CPU. Copy the initilized values
290 * of the boot CPU and register the clock event in the framework.
291 */
292static void setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200293{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100294 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
295
296 memcpy(levt, &lapic_clockevent, sizeof(*levt));
297 levt->cpumask = cpumask_of_cpu(smp_processor_id());
298
299 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200300}
301
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100302/*
303 * In this function we calibrate APIC bus clocks to the external
304 * timer. Unfortunately we cannot use jiffies and the timer irq
305 * to calibrate, since some later bootup code depends on getting
306 * the first irq? Ugh.
307 *
308 * We want to do the calibration only once since we
309 * want to have local timer irqs syncron. CPUs connected
310 * by the same APIC bus have the very same bus frequency.
311 * And we want to have irqs off anyways, no accidental
312 * APIC irq that way.
313 */
314
315#define TICK_COUNT 100000000
316
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400317static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200318{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100319 unsigned apic, apic_start;
320 unsigned long tsc, tsc_start;
321 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200322
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100323 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200324
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100325 /*
326 * Put whatever arbitrary (but long enough) timeout
327 * value into the APIC clock, we just want to get the
328 * counter running for calibration.
329 *
330 * No interrupt enable !
331 */
332 __setup_APIC_LVTT(250000000, 0, 0);
333
334 apic_start = apic_read(APIC_TMCCT);
335#ifdef CONFIG_X86_PM_TIMER
336 if (apic_calibrate_pmtmr && pmtmr_ioport) {
337 pmtimer_wait(5000); /* 5ms wait */
338 apic = apic_read(APIC_TMCCT);
339 result = (apic_start - apic) * 1000L / 5;
340 } else
341#endif
342 {
343 rdtscll(tsc_start);
344
345 do {
346 apic = apic_read(APIC_TMCCT);
347 rdtscll(tsc);
348 } while ((tsc - tsc_start) < TICK_COUNT &&
349 (apic_start - apic) < TICK_COUNT);
350
351 result = (apic_start - apic) * 1000L * tsc_khz /
352 (tsc - tsc_start);
353 }
354
355 local_irq_enable();
356
357 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
358
359 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
360 result / 1000 / 1000, result / 1000 % 1000);
361
362 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900363 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
364 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100365 lapic_clockevent.max_delta_ns =
366 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
367 lapic_clockevent.min_delta_ns =
368 clockevent_delta2ns(0xF, &lapic_clockevent);
369
370 calibration_result = result / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400371
372 /*
373 * Do a sanity check on the APIC calibration result
374 */
375 if (calibration_result < (1000000 / HZ)) {
376 printk(KERN_WARNING
377 "APIC frequency too slow, disabling apic timer\n");
378 return -1;
379 }
380
381 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200382}
383
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100384/*
385 * Setup the boot APIC
386 *
387 * Calibrate and verify the result.
388 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100389void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100391 /*
392 * The local apic timer can be disabled via the kernel commandline.
393 * Register the lapic timer as a dummy clock event source on SMP
394 * systems, so the broadcast mechanism is used. On UP systems simply
395 * ignore it.
396 */
397 if (disable_apic_timer) {
398 printk(KERN_INFO "Disabling APIC timer\n");
399 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100400 if (num_possible_cpus() > 1) {
401 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100402 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100403 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100404 return;
405 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200406
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100407 printk(KERN_INFO "Using local APIC timer interrupts.\n");
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400408 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100409 /* No broadcast on UP ! */
410 if (num_possible_cpus() > 1)
411 setup_APIC_timer();
412 return;
413 }
414
415 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100416 * If nmi_watchdog is set to IO_APIC, we need the
417 * PIT/HPET going. Otherwise register lapic as a dummy
418 * device.
419 */
420 if (nmi_watchdog != NMI_IO_APIC)
421 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
422 else
423 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200424 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100425
426 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100429void __cpuinit setup_secondary_APIC_clock(void)
430{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100431 setup_APIC_timer();
432}
433
434/*
435 * The guts of the apic timer interrupt
436 */
437static void local_apic_timer_interrupt(void)
438{
439 int cpu = smp_processor_id();
440 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
441
442 /*
443 * Normally we should not be here till LAPIC has been initialized but
444 * in some cases like kdump, its possible that there is a pending LAPIC
445 * timer interrupt from previous kernel's context and is delivered in
446 * new kernel the moment interrupts are enabled.
447 *
448 * Interrupts are enabled early and LAPIC is setup much later, hence
449 * its possible that when we get here evt->event_handler is NULL.
450 * Check for event_handler being NULL and discard the interrupt as
451 * spurious.
452 */
453 if (!evt->event_handler) {
454 printk(KERN_WARNING
455 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
456 /* Switch it off */
457 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
458 return;
459 }
460
461 /*
462 * the NMI deadlock-detector uses this.
463 */
464 add_pda(apic_timer_irqs, 1);
465
466 evt->event_handler(evt);
467}
468
469/*
470 * Local APIC timer interrupt. This is the most natural way for doing
471 * local interrupts, but local timer interrupts can be emulated by
472 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
473 *
474 * [ if a single-CPU system runs an SMP kernel then we call the local
475 * interrupt as well. Thus we cannot inline the local irq ... ]
476 */
477void smp_apic_timer_interrupt(struct pt_regs *regs)
478{
479 struct pt_regs *old_regs = set_irq_regs(regs);
480
481 /*
482 * NOTE! We'd better ACK the irq immediately,
483 * because timer handling can be slow.
484 */
485 ack_APIC_irq();
486 /*
487 * update_process_times() expects us to have done irq_enter().
488 * Besides, if we don't timer interrupts ignore the global
489 * interrupt lock, which is the WrongThing (tm) to do.
490 */
491 exit_idle();
492 irq_enter();
493 local_apic_timer_interrupt();
494 irq_exit();
495 set_irq_regs(old_regs);
496}
497
498int setup_profiling_timer(unsigned int multiplier)
499{
500 return -EINVAL;
501}
502
503
504/*
505 * Local APIC start and shutdown
506 */
507
508/**
509 * clear_local_APIC - shutdown the local APIC
510 *
511 * This is called, when a CPU is disabled and before rebooting, so the state of
512 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
513 * leftovers during boot.
514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515void clear_local_APIC(void)
516{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400517 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100518 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Andi Kleend3432892008-01-30 13:33:17 +0100520 /* APIC hasn't been mapped yet */
521 if (!apic_phys)
522 return;
523
524 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200526 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 * if the vector is zero. Mask LVTERR first to prevent this.
528 */
529 if (maxlvt >= 3) {
530 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100531 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533 /*
534 * Careful: we have to set masks only first to deassert
535 * any level-triggered sources.
536 */
537 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100538 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100540 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100542 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (maxlvt >= 4) {
544 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100545 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547
548 /*
549 * Clean APIC state for other OSs:
550 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100551 apic_write(APIC_LVTT, APIC_LVT_MASKED);
552 apic_write(APIC_LVT0, APIC_LVT_MASKED);
553 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100555 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100557 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200558 apic_write(APIC_ESR, 0);
559 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100562/**
563 * disable_local_APIC - clear and disable the local APIC
564 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565void disable_local_APIC(void)
566{
567 unsigned int value;
568
569 clear_local_APIC();
570
571 /*
572 * Disable APIC (implies clearing of registers
573 * for 82489DX!).
574 */
575 value = apic_read(APIC_SPIV);
576 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100577 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700580void lapic_shutdown(void)
581{
582 unsigned long flags;
583
584 if (!cpu_has_apic)
585 return;
586
587 local_irq_save(flags);
588
589 disable_local_APIC();
590
591 local_irq_restore(flags);
592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/*
595 * This is to verify that we're looking at a real local APIC.
596 * Check these against your board if the CPUs aren't getting
597 * started for no apparent reason.
598 */
599int __init verify_local_APIC(void)
600{
601 unsigned int reg0, reg1;
602
603 /*
604 * The version register is read-only in a real APIC.
605 */
606 reg0 = apic_read(APIC_LVR);
607 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
608 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
609 reg1 = apic_read(APIC_LVR);
610 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
611
612 /*
613 * The two version reads above should print the same
614 * numbers. If the second one is different, then we
615 * poke at a non-APIC.
616 */
617 if (reg1 != reg0)
618 return 0;
619
620 /*
621 * Check if the version looks reasonably.
622 */
623 reg1 = GET_APIC_VERSION(reg0);
624 if (reg1 == 0x00 || reg1 == 0xff)
625 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100626 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (reg1 < 0x02 || reg1 == 0xff)
628 return 0;
629
630 /*
631 * The ID register is read/write in a real APIC.
632 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500633 reg0 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
635 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Jack Steiner05f2d122008-03-28 14:12:02 -0500636 reg1 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
638 apic_write(APIC_ID, reg0);
639 if (reg1 != (reg0 ^ APIC_ID_MASK))
640 return 0;
641
642 /*
643 * The next two are just to see if we have sane values.
644 * They're only really relevant if we're in Virtual Wire
645 * compatibility mode, but most boxes are anymore.
646 */
647 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100648 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 reg1 = apic_read(APIC_LVT1);
650 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
651
652 return 1;
653}
654
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100655/**
656 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
657 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658void __init sync_Arb_IDs(void)
659{
660 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100661 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return;
663
664 /*
665 * Wait for idle.
666 */
667 apic_wait_icr_idle();
668
669 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100670 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 | APIC_DM_INIT);
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/*
675 * An initial setup of the virtual wire mode.
676 */
677void __init init_bsp_APIC(void)
678{
Andi Kleen11a8e772006-01-11 22:46:51 +0100679 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 /*
682 * Don't do the setup now if we have a SMP BIOS as the
683 * through-I/O-APIC virtual wire mode might be active.
684 */
685 if (smp_found_config || !cpu_has_apic)
686 return;
687
688 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /*
691 * Do not trust the local APIC being empty at bootup.
692 */
693 clear_local_APIC();
694
695 /*
696 * Enable APIC.
697 */
698 value = apic_read(APIC_SPIV);
699 value &= ~APIC_VECTOR_MASK;
700 value |= APIC_SPIV_APIC_ENABLED;
701 value |= APIC_SPIV_FOCUS_DISABLED;
702 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100703 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /*
706 * Set up the virtual wire mode.
707 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100708 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100710 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100713/**
714 * setup_local_APIC - setup the local APIC
715 */
716void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Andi Kleen739f33b2008-01-30 13:30:40 +0100718 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100719 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Jack Steinerac23d4e2008-03-28 14:12:16 -0500721 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Andi Kleenfe7414a2006-09-26 10:52:30 +0200724 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 /*
727 * Double-check whether this APIC is really registered.
728 * This is meaningless in clustered apic mode, so we skip it.
729 */
730 if (!apic_id_registered())
731 BUG();
732
733 /*
734 * Intel recommends to set DFR, LDR and TPR before enabling
735 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
736 * document number 292116). So here it goes...
737 */
738 init_apic_ldr();
739
740 /*
741 * Set Task Priority to 'accept all'. We never change this
742 * later on.
743 */
744 value = apic_read(APIC_TASKPRI);
745 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100746 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100749 * After a crash, we no longer service the interrupts and a pending
750 * interrupt from previous kernel might still have ISR bit set.
751 *
752 * Most probably by now CPU has serviced that pending interrupt and
753 * it might not have done the ack_APIC_irq() because it thought,
754 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
755 * does not clear the ISR bit and cpu thinks it has already serivced
756 * the interrupt. Hence a vector might get locked. It was noticed
757 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
758 */
759 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
760 value = apic_read(APIC_ISR + i*0x10);
761 for (j = 31; j >= 0; j--) {
762 if (value & (1<<j))
763 ack_APIC_irq();
764 }
765 }
766
767 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * Now that we are all set up, enable the APIC
769 */
770 value = apic_read(APIC_SPIV);
771 value &= ~APIC_VECTOR_MASK;
772 /*
773 * Enable APIC
774 */
775 value |= APIC_SPIV_APIC_ENABLED;
776
Andi Kleen3f14c742006-09-26 10:52:29 +0200777 /* We always use processor focus */
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /*
780 * Set spurious IRQ vector
781 */
782 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100783 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 /*
786 * Set up LVT0, LVT1:
787 *
788 * set up through-local-APIC on the BP's LINT0. This is not
789 * strictly necessary in pure symmetric-IO mode, but sometimes
790 * we delegate interrupts to the 8259A.
791 */
792 /*
793 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
794 */
795 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200796 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200798 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
799 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 } else {
801 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200802 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
803 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100805 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 /*
808 * only the BP should see the LINT1 NMI signal, obviously.
809 */
810 if (!smp_processor_id())
811 value = APIC_DM_NMI;
812 else
813 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100814 apic_write(APIC_LVT1, value);
Jack Steinerac23d4e2008-03-28 14:12:16 -0500815 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +0100816}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Ingo Molnara4928cf2008-04-23 13:20:56 +0200818static void __cpuinit lapic_setup_esr(void)
Andi Kleen739f33b2008-01-30 13:30:40 +0100819{
820 unsigned maxlvt = lapic_get_maxlvt();
821
822 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100823 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100824 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100825 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100826 if (maxlvt > 3)
827 apic_write(APIC_ESR, 0);
828}
Yinghai Lu1c695242008-01-30 13:30:39 +0100829
Andi Kleen739f33b2008-01-30 13:30:40 +0100830void __cpuinit end_local_APIC_setup(void)
831{
832 lapic_setup_esr();
Don Zickusf2802e72006-09-26 10:52:26 +0200833 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 apic_pm_activate();
835}
836
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100837/*
838 * Detect and enable local APICs on non-SMP boards.
839 * Original code written by Keir Fraser.
840 * On AMD64 we trust the BIOS - if it says no APIC it is likely
841 * not correctly set up (usually the APIC timer won't work etc.)
842 */
843static int __init detect_init_APIC(void)
844{
845 if (!cpu_has_apic) {
846 printk(KERN_INFO "No local APIC present\n");
847 return -1;
848 }
849
850 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300851 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100852 return 0;
853}
854
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800855void __init early_init_lapic_mapping(void)
856{
Thomas Gleixner431ee792008-05-12 15:43:35 +0200857 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800858
859 /*
860 * If no local APIC can be found then go out
861 * : it means there is no mpatable and MADT
862 */
863 if (!smp_found_config)
864 return;
865
Thomas Gleixner431ee792008-05-12 15:43:35 +0200866 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800867
Thomas Gleixner431ee792008-05-12 15:43:35 +0200868 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800869 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +0200870 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800871
872 /*
873 * Fetch the APIC ID of the BSP in case we have a
874 * default configuration (or the MP table is broken).
875 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500876 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800877}
878
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100879/**
880 * init_apic_mappings - initialize APIC mappings
881 */
882void __init init_apic_mappings(void)
883{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100884 /*
885 * If no local APIC can be found then set up a fake all
886 * zeroes page to simulate the local APIC and another
887 * one for the IO-APIC.
888 */
889 if (!smp_found_config && detect_init_APIC()) {
890 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
891 apic_phys = __pa(apic_phys);
892 } else
893 apic_phys = mp_lapic_addr;
894
895 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
896 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
897 APIC_BASE, apic_phys);
898
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100899 /*
900 * Fetch the APIC ID of the BSP in case we have a
901 * default configuration (or the MP table is broken).
902 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500903 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100904}
905
906/*
907 * This initializes the IO-APIC and APIC hardware if this is
908 * a UP kernel.
909 */
910int __init APIC_init_uniprocessor(void)
911{
912 if (disable_apic) {
913 printk(KERN_INFO "Apic disabled\n");
914 return -1;
915 }
916 if (!cpu_has_apic) {
917 disable_apic = 1;
918 printk(KERN_INFO "Apic disabled by BIOS\n");
919 return -1;
920 }
921
922 verify_local_APIC();
923
Glauber Costab5841762008-05-28 13:38:28 -0300924 connect_bsp_APIC();
925
Jack Steinerb6df1b82008-06-19 21:51:05 -0500926 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300927 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100928
929 setup_local_APIC();
930
Andi Kleen739f33b2008-01-30 13:30:40 +0100931 /*
932 * Now enable IO-APICs, actually call clear_IO_APIC
933 * We need clear_IO_APIC before enabling vector on BP
934 */
935 if (!skip_ioapic_setup && nr_ioapics)
936 enable_IO_APIC();
937
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +0100938 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
939 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +0100940 end_local_APIC_setup();
941
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100942 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
943 setup_IO_APIC();
944 else
945 nr_ioapics = 0;
946 setup_boot_APIC_clock();
947 check_nmi_watchdog();
948 return 0;
949}
950
951/*
952 * Local APIC interrupts
953 */
954
955/*
956 * This interrupt should _never_ happen with our APIC/SMP architecture
957 */
958asmlinkage void smp_spurious_interrupt(void)
959{
960 unsigned int v;
961 exit_idle();
962 irq_enter();
963 /*
964 * Check if this really is a spurious interrupt and ACK it
965 * if it is a vectored one. Just in case...
966 * Spurious interrupts should not be ACKed.
967 */
968 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
969 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
970 ack_APIC_irq();
971
972 add_pda(irq_spurious_count, 1);
973 irq_exit();
974}
975
976/*
977 * This interrupt should never happen with our APIC/SMP architecture
978 */
979asmlinkage void smp_error_interrupt(void)
980{
981 unsigned int v, v1;
982
983 exit_idle();
984 irq_enter();
985 /* First tickle the hardware, only then report what went on. -- REW */
986 v = apic_read(APIC_ESR);
987 apic_write(APIC_ESR, 0);
988 v1 = apic_read(APIC_ESR);
989 ack_APIC_irq();
990 atomic_inc(&irq_err_count);
991
992 /* Here is what the APIC error bits mean:
993 0: Send CS error
994 1: Receive CS error
995 2: Send accept error
996 3: Receive accept error
997 4: Reserved
998 5: Send illegal vector
999 6: Received illegal vector
1000 7: Illegal register address
1001 */
1002 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1003 smp_processor_id(), v , v1);
1004 irq_exit();
1005}
1006
Glauber Costab5841762008-05-28 13:38:28 -03001007/**
1008 * * connect_bsp_APIC - attach the APIC to the interrupt system
1009 * */
1010void __init connect_bsp_APIC(void)
1011{
1012 enable_apic_mode();
1013}
1014
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001015void disconnect_bsp_APIC(int virt_wire_setup)
1016{
1017 /* Go back to Virtual Wire compatibility mode */
1018 unsigned long value;
1019
1020 /* For the spurious interrupt use vector F, and enable it */
1021 value = apic_read(APIC_SPIV);
1022 value &= ~APIC_VECTOR_MASK;
1023 value |= APIC_SPIV_APIC_ENABLED;
1024 value |= 0xf;
1025 apic_write(APIC_SPIV, value);
1026
1027 if (!virt_wire_setup) {
1028 /*
1029 * For LVT0 make it edge triggered, active high,
1030 * external and enabled
1031 */
1032 value = apic_read(APIC_LVT0);
1033 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1034 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1035 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1036 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1037 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1038 apic_write(APIC_LVT0, value);
1039 } else {
1040 /* Disable LVT0 */
1041 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1042 }
1043
1044 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1045 value = apic_read(APIC_LVT1);
1046 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1047 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1048 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1049 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1050 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1051 apic_write(APIC_LVT1, value);
1052}
1053
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001054void __cpuinit generic_processor_info(int apicid, int version)
1055{
1056 int cpu;
1057 cpumask_t tmp_map;
1058
1059 if (num_processors >= NR_CPUS) {
1060 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1061 " Processor ignored.\n", NR_CPUS);
1062 return;
1063 }
1064
1065 if (num_processors >= maxcpus) {
1066 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1067 " Processor ignored.\n", maxcpus);
1068 return;
1069 }
1070
1071 num_processors++;
1072 cpus_complement(tmp_map, cpu_present_map);
1073 cpu = first_cpu(tmp_map);
1074
1075 physid_set(apicid, phys_cpu_present_map);
1076 if (apicid == boot_cpu_physical_apicid) {
1077 /*
1078 * x86_bios_cpu_apicid is required to have processors listed
1079 * in same order as logical cpu numbers. Hence the first
1080 * entry is BSP, and so on.
1081 */
1082 cpu = 0;
1083 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001084 if (apicid > max_physical_apicid)
1085 max_physical_apicid = apicid;
1086
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001087 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001088 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1089 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1090 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001091
1092 cpu_to_apicid[cpu] = apicid;
1093 bios_cpu_apicid[cpu] = apicid;
1094 } else {
1095 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1096 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1097 }
1098
1099 cpu_set(cpu, cpu_possible_map);
1100 cpu_set(cpu, cpu_present_map);
1101}
1102
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001103/*
1104 * Power management
1105 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106#ifdef CONFIG_PM
1107
1108static struct {
1109 /* 'active' is true if the local APIC was enabled by us and
1110 not the BIOS; this signifies that we are also responsible
1111 for disabling it before entering apm/acpi suspend */
1112 int active;
1113 /* r/w apic fields */
1114 unsigned int apic_id;
1115 unsigned int apic_taskpri;
1116 unsigned int apic_ldr;
1117 unsigned int apic_dfr;
1118 unsigned int apic_spiv;
1119 unsigned int apic_lvtt;
1120 unsigned int apic_lvtpc;
1121 unsigned int apic_lvt0;
1122 unsigned int apic_lvt1;
1123 unsigned int apic_lvterr;
1124 unsigned int apic_tmict;
1125 unsigned int apic_tdcr;
1126 unsigned int apic_thmr;
1127} apic_pm_state;
1128
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001129static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001132 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 if (!apic_pm_state.active)
1135 return 0;
1136
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001137 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001138
Jack Steiner05f2d122008-03-28 14:12:02 -05001139 apic_pm_state.apic_id = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1141 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1142 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1143 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1144 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001145 if (maxlvt >= 4)
1146 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1148 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1149 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1150 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1151 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001152#ifdef CONFIG_X86_MCE_INTEL
1153 if (maxlvt >= 5)
1154 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1155#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001156 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 disable_local_APIC();
1158 local_irq_restore(flags);
1159 return 0;
1160}
1161
1162static int lapic_resume(struct sys_device *dev)
1163{
1164 unsigned int l, h;
1165 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001166 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 if (!apic_pm_state.active)
1169 return 0;
1170
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001171 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 local_irq_save(flags);
1174 rdmsr(MSR_IA32_APICBASE, l, h);
1175 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +01001176 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 wrmsr(MSR_IA32_APICBASE, l, h);
1178 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1179 apic_write(APIC_ID, apic_pm_state.apic_id);
1180 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1181 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1182 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1183 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1184 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1185 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001186#ifdef CONFIG_X86_MCE_INTEL
1187 if (maxlvt >= 5)
1188 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1189#endif
1190 if (maxlvt >= 4)
1191 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1193 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1194 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1195 apic_write(APIC_ESR, 0);
1196 apic_read(APIC_ESR);
1197 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1198 apic_write(APIC_ESR, 0);
1199 apic_read(APIC_ESR);
1200 local_irq_restore(flags);
1201 return 0;
1202}
1203
1204static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001205 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 .resume = lapic_resume,
1207 .suspend = lapic_suspend,
1208};
1209
1210static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001211 .id = 0,
1212 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213};
1214
Ashok Raje6982c62005-06-25 14:54:58 -07001215static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 apic_pm_state.active = 1;
1218}
1219
1220static int __init init_lapic_sysfs(void)
1221{
1222 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (!cpu_has_apic)
1225 return 0;
1226 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 error = sysdev_class_register(&lapic_sysclass);
1229 if (!error)
1230 error = sysdev_register(&device_lapic);
1231 return error;
1232}
1233device_initcall(init_lapic_sysfs);
1234
1235#else /* CONFIG_PM */
1236
1237static void apic_pm_activate(void) { }
1238
1239#endif /* CONFIG_PM */
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001242 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 *
1244 * Thus far, the major user of this is IBM's Summit2 series:
1245 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001246 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 * multi-chassis. Use available data to take a good guess.
1248 * If in doubt, go HPET.
1249 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001250__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 int i, clusters, zeros;
1253 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001254 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1256
Yinghai Lu322850a2008-02-23 21:48:42 -08001257 /*
1258 * there is not this kind of box with AMD CPU yet.
1259 * Some AMD box with quadcore cpu and 8 sockets apicid
1260 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001261 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001262 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001263 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001264 return 0;
1265
Mike Travis23ca4bb2008-05-12 21:21:12 +02001266 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001267 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001270 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001271 if (bios_cpu_apicid) {
1272 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001273 }
1274 else if (i < nr_cpu_ids) {
1275 if (cpu_present(i))
1276 id = per_cpu(x86_bios_cpu_apicid, i);
1277 else
1278 continue;
1279 }
1280 else
1281 break;
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (id != BAD_APICID)
1284 __set_bit(APIC_CLUSTERID(id), clustermap);
1285 }
1286
1287 /* Problem: Partially populated chassis may not have CPUs in some of
1288 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001289 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1290 * Since clusters are allocated sequentially, count zeros only if
1291 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
1293 clusters = 0;
1294 zeros = 0;
1295 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1296 if (test_bit(i, clustermap)) {
1297 clusters += 1 + zeros;
1298 zeros = 0;
1299 } else
1300 ++zeros;
1301 }
1302
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001303 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1304 * not guaranteed to be synced between boards
1305 */
1306 if (is_vsmp_box() && clusters > 1)
1307 return 1;
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001310 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 * May have to revisit this when multi-core + hyperthreaded CPUs come
1312 * out, but AFAIK this will work even for them.
1313 */
1314 return (clusters > 2);
1315}
1316
1317/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001318 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001320static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001322 if (str == NULL) {
1323 skip_ioapic_setup = 0;
1324 ioapic_force = 1;
1325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001327 if (strcmp("debug", str) == 0)
1328 apic_verbosity = APIC_DEBUG;
1329 else if (strcmp("verbose", str) == 0)
1330 apic_verbosity = APIC_VERBOSE;
1331 else {
1332 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1333 " use apic=verbose or apic=debug\n", str);
1334 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return 0;
1338}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001339early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001341static __init int setup_disableapic(char *str)
1342{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 disable_apic = 1;
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001344 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001345 return 0;
1346}
1347early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001349/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001350static __init int setup_nolapic(char *str)
1351{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001352 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001353}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001354early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001356static int __init parse_lapic_timer_c2_ok(char *arg)
1357{
1358 local_apic_timer_c2_ok = 1;
1359 return 0;
1360}
1361early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1362
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001363static __init int setup_noapictimer(char *str)
1364{
Andi Kleen73dea472006-02-03 21:50:50 +01001365 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001368 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001369}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001370__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001371
Andi Kleen0c3749c2006-02-03 21:51:41 +01001372static __init int setup_apicpmtimer(char *s)
1373{
1374 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001375 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001376 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001377}
1378__setup("apicpmtimer", setup_apicpmtimer);
1379
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001380static int __init lapic_insert_resource(void)
1381{
1382 if (!apic_phys)
1383 return -1;
1384
1385 /* Put local APIC into the resource map. */
1386 lapic_resource.start = apic_phys;
1387 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1388 insert_resource(&iomem_resource, &lapic_resource);
1389
1390 return 0;
1391}
1392
1393/*
1394 * need call insert after e820_reserve_resources()
1395 * that is using request_resource
1396 */
1397late_initcall(lapic_insert_resource);