blob: 274ebabf49a22c5481b9493e39206118637a4f0d [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 Gleixnerfb79d222007-10-12 23:04:07 +020046int 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
Aaron Durbin39928722006-12-07 02:14:01 +010059static struct resource lapic_resource = {
60 .name = "Local APIC",
61 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
62};
63
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020064static unsigned int calibration_result;
65
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020066static int lapic_next_event(unsigned long delta,
67 struct clock_event_device *evt);
68static void lapic_timer_setup(enum clock_event_mode mode,
69 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020070static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +010071static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020072
73static struct clock_event_device lapic_clockevent = {
74 .name = "lapic",
75 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
76 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
77 .shift = 32,
78 .set_mode = lapic_timer_setup,
79 .set_next_event = lapic_next_event,
80 .broadcast = lapic_timer_broadcast,
81 .rating = 100,
82 .irq = -1,
83};
84static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
85
Andi Kleend3432892008-01-30 13:33:17 +010086static unsigned long apic_phys;
87
Alexey Starikovskiy3f530702008-03-27 23:55:47 +030088unsigned long mp_lapic_addr;
89
Alexey Starikovskiy86cc0d92008-03-27 23:56:12 +030090/* Processor that is doing the boot up */
91unsigned int boot_cpu_physical_apicid = -1U;
92EXPORT_SYMBOL(boot_cpu_physical_apicid);
93
Alexey Starikovskiyaf926a52008-04-04 23:40:32 +040094DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
95EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
96
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +030097unsigned int __cpuinitdata maxcpus = NR_CPUS;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010098/*
99 * Get the LAPIC version
100 */
101static inline int lapic_get_version(void)
102{
103 return GET_APIC_VERSION(apic_read(APIC_LVR));
104}
105
106/*
107 * Check, if the APIC is integrated or a seperate chip
108 */
109static inline int lapic_is_integrated(void)
110{
111 return 1;
112}
113
114/*
115 * Check, whether this is a modern or a first generation APIC
116 */
117static int modern_apic(void)
118{
119 /* AMD systems use old APIC versions, so check the CPU */
120 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
121 boot_cpu_data.x86 >= 0xf)
122 return 1;
123 return lapic_get_version() >= 0x14;
124}
125
126void apic_wait_icr_idle(void)
127{
128 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
129 cpu_relax();
130}
131
132u32 safe_apic_wait_icr_idle(void)
133{
134 u32 send_status;
135 int timeout;
136
137 timeout = 0;
138 do {
139 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
140 if (!send_status)
141 break;
142 udelay(100);
143 } while (timeout++ < 1000);
144
145 return send_status;
146}
147
148/**
149 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
150 */
Jan Beuliche9427102008-01-30 13:31:24 +0100151void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100152{
153 unsigned int v;
154
155 /* unmask and set to NMI */
156 v = APIC_DM_NMI;
157 apic_write(APIC_LVT0, v);
158}
159
160/**
161 * lapic_get_maxlvt - get the maximum number of local vector table entries
162 */
163int lapic_get_maxlvt(void)
164{
165 unsigned int v, maxlvt;
166
167 v = apic_read(APIC_LVR);
168 maxlvt = GET_APIC_MAXLVT(v);
169 return maxlvt;
170}
171
172/*
173 * This function sets up the local APIC timer, with a timeout of
174 * 'clocks' APIC bus clock. During calibration we actually call
175 * this function twice on the boot CPU, once with a bogus timeout
176 * value, second time for real. The other (noncalibrating) CPUs
177 * call this function only once, with the real, calibrated value.
178 *
179 * We do reads before writes even if unnecessary, to get around the
180 * P5 APIC double write bug.
181 */
182
183static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
184{
185 unsigned int lvtt_value, tmp_value;
186
187 lvtt_value = LOCAL_TIMER_VECTOR;
188 if (!oneshot)
189 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
190 if (!irqen)
191 lvtt_value |= APIC_LVT_MASKED;
192
193 apic_write(APIC_LVTT, lvtt_value);
194
195 /*
196 * Divide PICLK by 16
197 */
198 tmp_value = apic_read(APIC_TDCR);
199 apic_write(APIC_TDCR, (tmp_value
200 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
201 | APIC_TDR_DIV_16);
202
203 if (!oneshot)
204 apic_write(APIC_TMICT, clocks);
205}
206
207/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100208 * Setup extended LVT, AMD specific (K8, family 10h)
209 *
210 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
211 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100212 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100213
214#define APIC_EILVT_LVTOFF_MCE 0
215#define APIC_EILVT_LVTOFF_IBS 1
216
217static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100218{
Robert Richter7b83dae2008-01-30 13:30:40 +0100219 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100220 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
221
222 apic_write(reg, v);
223}
224
Robert Richter7b83dae2008-01-30 13:30:40 +0100225u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
226{
227 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
228 return APIC_EILVT_LVTOFF_MCE;
229}
230
231u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
232{
233 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
234 return APIC_EILVT_LVTOFF_IBS;
235}
236
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
321static void __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 */
367 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC, 32);
368 lapic_clockevent.max_delta_ns =
369 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
370 lapic_clockevent.min_delta_ns =
371 clockevent_delta2ns(0xF, &lapic_clockevent);
372
373 calibration_result = result / HZ;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200374}
375
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100376/*
377 * Setup the boot APIC
378 *
379 * Calibrate and verify the result.
380 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100381void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100383 /*
384 * The local apic timer can be disabled via the kernel commandline.
385 * Register the lapic timer as a dummy clock event source on SMP
386 * systems, so the broadcast mechanism is used. On UP systems simply
387 * ignore it.
388 */
389 if (disable_apic_timer) {
390 printk(KERN_INFO "Disabling APIC timer\n");
391 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100392 if (num_possible_cpus() > 1) {
393 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100394 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100395 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100396 return;
397 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200398
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100399 printk(KERN_INFO "Using local APIC timer interrupts.\n");
400 calibrate_APIC_clock();
401
402 /*
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100403 * Do a sanity check on the APIC calibration result
404 */
405 if (calibration_result < (1000000 / HZ)) {
406 printk(KERN_WARNING
407 "APIC frequency too slow, disabling apic timer\n");
408 /* No broadcast on UP ! */
409 if (num_possible_cpus() > 1)
410 setup_APIC_timer();
411 return;
412 }
413
414 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100415 * If nmi_watchdog is set to IO_APIC, we need the
416 * PIT/HPET going. Otherwise register lapic as a dummy
417 * device.
418 */
419 if (nmi_watchdog != NMI_IO_APIC)
420 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
421 else
422 printk(KERN_WARNING "APIC timer registered as dummy,"
423 " due to nmi_watchdog=1!\n");
424
425 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100428/*
429 * AMD C1E enabled CPUs have a real nasty problem: Some BIOSes set the
430 * C1E flag only in the secondary CPU, so when we detect the wreckage
431 * we already have enabled the boot CPU local apic timer. Check, if
432 * disable_apic_timer is set and the DUMMY flag is cleared. If yes,
433 * set the DUMMY flag again and force the broadcast mode in the
434 * clockevents layer.
435 */
436void __cpuinit check_boot_apic_timer_broadcast(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100438 if (!disable_apic_timer ||
439 (lapic_clockevent.features & CLOCK_EVT_FEAT_DUMMY))
440 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100442 printk(KERN_INFO "AMD C1E detected late. Force timer broadcast.\n");
443 lapic_clockevent.features |= CLOCK_EVT_FEAT_DUMMY;
444
445 local_irq_enable();
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300446 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_FORCE,
447 &boot_cpu_physical_apicid);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100448 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100451void __cpuinit setup_secondary_APIC_clock(void)
452{
453 check_boot_apic_timer_broadcast();
454 setup_APIC_timer();
455}
456
457/*
458 * The guts of the apic timer interrupt
459 */
460static void local_apic_timer_interrupt(void)
461{
462 int cpu = smp_processor_id();
463 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
464
465 /*
466 * Normally we should not be here till LAPIC has been initialized but
467 * in some cases like kdump, its possible that there is a pending LAPIC
468 * timer interrupt from previous kernel's context and is delivered in
469 * new kernel the moment interrupts are enabled.
470 *
471 * Interrupts are enabled early and LAPIC is setup much later, hence
472 * its possible that when we get here evt->event_handler is NULL.
473 * Check for event_handler being NULL and discard the interrupt as
474 * spurious.
475 */
476 if (!evt->event_handler) {
477 printk(KERN_WARNING
478 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
479 /* Switch it off */
480 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
481 return;
482 }
483
484 /*
485 * the NMI deadlock-detector uses this.
486 */
487 add_pda(apic_timer_irqs, 1);
488
489 evt->event_handler(evt);
490}
491
492/*
493 * Local APIC timer interrupt. This is the most natural way for doing
494 * local interrupts, but local timer interrupts can be emulated by
495 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
496 *
497 * [ if a single-CPU system runs an SMP kernel then we call the local
498 * interrupt as well. Thus we cannot inline the local irq ... ]
499 */
500void smp_apic_timer_interrupt(struct pt_regs *regs)
501{
502 struct pt_regs *old_regs = set_irq_regs(regs);
503
504 /*
505 * NOTE! We'd better ACK the irq immediately,
506 * because timer handling can be slow.
507 */
508 ack_APIC_irq();
509 /*
510 * update_process_times() expects us to have done irq_enter().
511 * Besides, if we don't timer interrupts ignore the global
512 * interrupt lock, which is the WrongThing (tm) to do.
513 */
514 exit_idle();
515 irq_enter();
516 local_apic_timer_interrupt();
517 irq_exit();
518 set_irq_regs(old_regs);
519}
520
521int setup_profiling_timer(unsigned int multiplier)
522{
523 return -EINVAL;
524}
525
526
527/*
528 * Local APIC start and shutdown
529 */
530
531/**
532 * clear_local_APIC - shutdown the local APIC
533 *
534 * This is called, when a CPU is disabled and before rebooting, so the state of
535 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
536 * leftovers during boot.
537 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538void clear_local_APIC(void)
539{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100540 int maxlvt = lapic_get_maxlvt();
541 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Andi Kleend3432892008-01-30 13:33:17 +0100543 /* APIC hasn't been mapped yet */
544 if (!apic_phys)
545 return;
546
547 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200549 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * if the vector is zero. Mask LVTERR first to prevent this.
551 */
552 if (maxlvt >= 3) {
553 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100554 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 /*
557 * Careful: we have to set masks only first to deassert
558 * any level-triggered sources.
559 */
560 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100561 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100563 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100565 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (maxlvt >= 4) {
567 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100568 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
571 /*
572 * Clean APIC state for other OSs:
573 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100574 apic_write(APIC_LVTT, APIC_LVT_MASKED);
575 apic_write(APIC_LVT0, APIC_LVT_MASKED);
576 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100578 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100580 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200581 apic_write(APIC_ESR, 0);
582 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100585/**
586 * disable_local_APIC - clear and disable the local APIC
587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588void disable_local_APIC(void)
589{
590 unsigned int value;
591
592 clear_local_APIC();
593
594 /*
595 * Disable APIC (implies clearing of registers
596 * for 82489DX!).
597 */
598 value = apic_read(APIC_SPIV);
599 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100600 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700603void lapic_shutdown(void)
604{
605 unsigned long flags;
606
607 if (!cpu_has_apic)
608 return;
609
610 local_irq_save(flags);
611
612 disable_local_APIC();
613
614 local_irq_restore(flags);
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*
618 * This is to verify that we're looking at a real local APIC.
619 * Check these against your board if the CPUs aren't getting
620 * started for no apparent reason.
621 */
622int __init verify_local_APIC(void)
623{
624 unsigned int reg0, reg1;
625
626 /*
627 * The version register is read-only in a real APIC.
628 */
629 reg0 = apic_read(APIC_LVR);
630 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
631 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
632 reg1 = apic_read(APIC_LVR);
633 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
634
635 /*
636 * The two version reads above should print the same
637 * numbers. If the second one is different, then we
638 * poke at a non-APIC.
639 */
640 if (reg1 != reg0)
641 return 0;
642
643 /*
644 * Check if the version looks reasonably.
645 */
646 reg1 = GET_APIC_VERSION(reg0);
647 if (reg1 == 0x00 || reg1 == 0xff)
648 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100649 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (reg1 < 0x02 || reg1 == 0xff)
651 return 0;
652
653 /*
654 * The ID register is read/write in a real APIC.
655 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500656 reg0 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
658 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Jack Steiner05f2d122008-03-28 14:12:02 -0500659 reg1 = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
661 apic_write(APIC_ID, reg0);
662 if (reg1 != (reg0 ^ APIC_ID_MASK))
663 return 0;
664
665 /*
666 * The next two are just to see if we have sane values.
667 * They're only really relevant if we're in Virtual Wire
668 * compatibility mode, but most boxes are anymore.
669 */
670 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100671 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 reg1 = apic_read(APIC_LVT1);
673 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
674
675 return 1;
676}
677
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100678/**
679 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
680 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681void __init sync_Arb_IDs(void)
682{
683 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100684 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return;
686
687 /*
688 * Wait for idle.
689 */
690 apic_wait_icr_idle();
691
692 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100693 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 | APIC_DM_INIT);
695}
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697/*
698 * An initial setup of the virtual wire mode.
699 */
700void __init init_bsp_APIC(void)
701{
Andi Kleen11a8e772006-01-11 22:46:51 +0100702 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 /*
705 * Don't do the setup now if we have a SMP BIOS as the
706 * through-I/O-APIC virtual wire mode might be active.
707 */
708 if (smp_found_config || !cpu_has_apic)
709 return;
710
711 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /*
714 * Do not trust the local APIC being empty at bootup.
715 */
716 clear_local_APIC();
717
718 /*
719 * Enable APIC.
720 */
721 value = apic_read(APIC_SPIV);
722 value &= ~APIC_VECTOR_MASK;
723 value |= APIC_SPIV_APIC_ENABLED;
724 value |= APIC_SPIV_FOCUS_DISABLED;
725 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100726 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /*
729 * Set up the virtual wire mode.
730 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100731 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100733 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100736/**
737 * setup_local_APIC - setup the local APIC
738 */
739void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Andi Kleen739f33b2008-01-30 13:30:40 +0100741 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100742 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Jack Steinerac23d4e2008-03-28 14:12:16 -0500744 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Andi Kleenfe7414a2006-09-26 10:52:30 +0200747 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 /*
750 * Double-check whether this APIC is really registered.
751 * This is meaningless in clustered apic mode, so we skip it.
752 */
753 if (!apic_id_registered())
754 BUG();
755
756 /*
757 * Intel recommends to set DFR, LDR and TPR before enabling
758 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
759 * document number 292116). So here it goes...
760 */
761 init_apic_ldr();
762
763 /*
764 * Set Task Priority to 'accept all'. We never change this
765 * later on.
766 */
767 value = apic_read(APIC_TASKPRI);
768 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100769 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100772 * After a crash, we no longer service the interrupts and a pending
773 * interrupt from previous kernel might still have ISR bit set.
774 *
775 * Most probably by now CPU has serviced that pending interrupt and
776 * it might not have done the ack_APIC_irq() because it thought,
777 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
778 * does not clear the ISR bit and cpu thinks it has already serivced
779 * the interrupt. Hence a vector might get locked. It was noticed
780 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
781 */
782 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
783 value = apic_read(APIC_ISR + i*0x10);
784 for (j = 31; j >= 0; j--) {
785 if (value & (1<<j))
786 ack_APIC_irq();
787 }
788 }
789
790 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * Now that we are all set up, enable the APIC
792 */
793 value = apic_read(APIC_SPIV);
794 value &= ~APIC_VECTOR_MASK;
795 /*
796 * Enable APIC
797 */
798 value |= APIC_SPIV_APIC_ENABLED;
799
Andi Kleen3f14c742006-09-26 10:52:29 +0200800 /* We always use processor focus */
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /*
803 * Set spurious IRQ vector
804 */
805 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100806 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /*
809 * Set up LVT0, LVT1:
810 *
811 * set up through-local-APIC on the BP's LINT0. This is not
812 * strictly necessary in pure symmetric-IO mode, but sometimes
813 * we delegate interrupts to the 8259A.
814 */
815 /*
816 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
817 */
818 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200819 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200821 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
822 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 } else {
824 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200825 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
826 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100828 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 /*
831 * only the BP should see the LINT1 NMI signal, obviously.
832 */
833 if (!smp_processor_id())
834 value = APIC_DM_NMI;
835 else
836 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100837 apic_write(APIC_LVT1, value);
Jack Steinerac23d4e2008-03-28 14:12:16 -0500838 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +0100839}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Andi Kleen739f33b2008-01-30 13:30:40 +0100841void __cpuinit lapic_setup_esr(void)
842{
843 unsigned maxlvt = lapic_get_maxlvt();
844
845 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100846 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100847 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100848 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100849 if (maxlvt > 3)
850 apic_write(APIC_ESR, 0);
851}
Yinghai Lu1c695242008-01-30 13:30:39 +0100852
Andi Kleen739f33b2008-01-30 13:30:40 +0100853void __cpuinit end_local_APIC_setup(void)
854{
855 lapic_setup_esr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 nmi_watchdog_default();
Don Zickusf2802e72006-09-26 10:52:26 +0200857 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 apic_pm_activate();
859}
860
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100861/*
862 * Detect and enable local APICs on non-SMP boards.
863 * Original code written by Keir Fraser.
864 * On AMD64 we trust the BIOS - if it says no APIC it is likely
865 * not correctly set up (usually the APIC timer won't work etc.)
866 */
867static int __init detect_init_APIC(void)
868{
869 if (!cpu_has_apic) {
870 printk(KERN_INFO "No local APIC present\n");
871 return -1;
872 }
873
874 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300875 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100876 return 0;
877}
878
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800879void __init early_init_lapic_mapping(void)
880{
881 unsigned long apic_phys;
882
883 /*
884 * If no local APIC can be found then go out
885 * : it means there is no mpatable and MADT
886 */
887 if (!smp_found_config)
888 return;
889
890 apic_phys = mp_lapic_addr;
891
892 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
893 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
894 APIC_BASE, apic_phys);
895
896 /*
897 * Fetch the APIC ID of the BSP in case we have a
898 * default configuration (or the MP table is broken).
899 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500900 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800901}
902
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100903/**
904 * init_apic_mappings - initialize APIC mappings
905 */
906void __init init_apic_mappings(void)
907{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100908 /*
909 * If no local APIC can be found then set up a fake all
910 * zeroes page to simulate the local APIC and another
911 * one for the IO-APIC.
912 */
913 if (!smp_found_config && detect_init_APIC()) {
914 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
915 apic_phys = __pa(apic_phys);
916 } else
917 apic_phys = mp_lapic_addr;
918
919 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
920 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
921 APIC_BASE, apic_phys);
922
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100923 /*
924 * Fetch the APIC ID of the BSP in case we have a
925 * default configuration (or the MP table is broken).
926 */
Jack Steiner05f2d122008-03-28 14:12:02 -0500927 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100928}
929
930/*
931 * This initializes the IO-APIC and APIC hardware if this is
932 * a UP kernel.
933 */
934int __init APIC_init_uniprocessor(void)
935{
936 if (disable_apic) {
937 printk(KERN_INFO "Apic disabled\n");
938 return -1;
939 }
940 if (!cpu_has_apic) {
941 disable_apic = 1;
942 printk(KERN_INFO "Apic disabled by BIOS\n");
943 return -1;
944 }
945
946 verify_local_APIC();
947
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300948 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
949 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100950
951 setup_local_APIC();
952
Andi Kleen739f33b2008-01-30 13:30:40 +0100953 /*
954 * Now enable IO-APICs, actually call clear_IO_APIC
955 * We need clear_IO_APIC before enabling vector on BP
956 */
957 if (!skip_ioapic_setup && nr_ioapics)
958 enable_IO_APIC();
959
960 end_local_APIC_setup();
961
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100962 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
963 setup_IO_APIC();
964 else
965 nr_ioapics = 0;
966 setup_boot_APIC_clock();
967 check_nmi_watchdog();
968 return 0;
969}
970
971/*
972 * Local APIC interrupts
973 */
974
975/*
976 * This interrupt should _never_ happen with our APIC/SMP architecture
977 */
978asmlinkage void smp_spurious_interrupt(void)
979{
980 unsigned int v;
981 exit_idle();
982 irq_enter();
983 /*
984 * Check if this really is a spurious interrupt and ACK it
985 * if it is a vectored one. Just in case...
986 * Spurious interrupts should not be ACKed.
987 */
988 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
989 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
990 ack_APIC_irq();
991
992 add_pda(irq_spurious_count, 1);
993 irq_exit();
994}
995
996/*
997 * This interrupt should never happen with our APIC/SMP architecture
998 */
999asmlinkage void smp_error_interrupt(void)
1000{
1001 unsigned int v, v1;
1002
1003 exit_idle();
1004 irq_enter();
1005 /* First tickle the hardware, only then report what went on. -- REW */
1006 v = apic_read(APIC_ESR);
1007 apic_write(APIC_ESR, 0);
1008 v1 = apic_read(APIC_ESR);
1009 ack_APIC_irq();
1010 atomic_inc(&irq_err_count);
1011
1012 /* Here is what the APIC error bits mean:
1013 0: Send CS error
1014 1: Receive CS error
1015 2: Send accept error
1016 3: Receive accept error
1017 4: Reserved
1018 5: Send illegal vector
1019 6: Received illegal vector
1020 7: Illegal register address
1021 */
1022 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1023 smp_processor_id(), v , v1);
1024 irq_exit();
1025}
1026
1027void disconnect_bsp_APIC(int virt_wire_setup)
1028{
1029 /* Go back to Virtual Wire compatibility mode */
1030 unsigned long value;
1031
1032 /* For the spurious interrupt use vector F, and enable it */
1033 value = apic_read(APIC_SPIV);
1034 value &= ~APIC_VECTOR_MASK;
1035 value |= APIC_SPIV_APIC_ENABLED;
1036 value |= 0xf;
1037 apic_write(APIC_SPIV, value);
1038
1039 if (!virt_wire_setup) {
1040 /*
1041 * For LVT0 make it edge triggered, active high,
1042 * external and enabled
1043 */
1044 value = apic_read(APIC_LVT0);
1045 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1046 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1047 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1048 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1049 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1050 apic_write(APIC_LVT0, value);
1051 } else {
1052 /* Disable LVT0 */
1053 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1054 }
1055
1056 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1057 value = apic_read(APIC_LVT1);
1058 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1059 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1060 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1061 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1062 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1063 apic_write(APIC_LVT1, value);
1064}
1065
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001066void __cpuinit generic_processor_info(int apicid, int version)
1067{
1068 int cpu;
1069 cpumask_t tmp_map;
1070
1071 if (num_processors >= NR_CPUS) {
1072 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1073 " Processor ignored.\n", NR_CPUS);
1074 return;
1075 }
1076
1077 if (num_processors >= maxcpus) {
1078 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1079 " Processor ignored.\n", maxcpus);
1080 return;
1081 }
1082
1083 num_processors++;
1084 cpus_complement(tmp_map, cpu_present_map);
1085 cpu = first_cpu(tmp_map);
1086
1087 physid_set(apicid, phys_cpu_present_map);
1088 if (apicid == boot_cpu_physical_apicid) {
1089 /*
1090 * x86_bios_cpu_apicid is required to have processors listed
1091 * in same order as logical cpu numbers. Hence the first
1092 * entry is BSP, and so on.
1093 */
1094 cpu = 0;
1095 }
1096 /* are we being called early in kernel startup? */
1097 if (x86_cpu_to_apicid_early_ptr) {
1098 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
1099 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
1100
1101 cpu_to_apicid[cpu] = apicid;
1102 bios_cpu_apicid[cpu] = apicid;
1103 } else {
1104 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1105 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1106 }
1107
1108 cpu_set(cpu, cpu_possible_map);
1109 cpu_set(cpu, cpu_present_map);
1110}
1111
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001112/*
1113 * Power management
1114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115#ifdef CONFIG_PM
1116
1117static struct {
1118 /* 'active' is true if the local APIC was enabled by us and
1119 not the BIOS; this signifies that we are also responsible
1120 for disabling it before entering apm/acpi suspend */
1121 int active;
1122 /* r/w apic fields */
1123 unsigned int apic_id;
1124 unsigned int apic_taskpri;
1125 unsigned int apic_ldr;
1126 unsigned int apic_dfr;
1127 unsigned int apic_spiv;
1128 unsigned int apic_lvtt;
1129 unsigned int apic_lvtpc;
1130 unsigned int apic_lvt0;
1131 unsigned int apic_lvt1;
1132 unsigned int apic_lvterr;
1133 unsigned int apic_tmict;
1134 unsigned int apic_tdcr;
1135 unsigned int apic_thmr;
1136} apic_pm_state;
1137
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001138static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
1140 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001141 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 if (!apic_pm_state.active)
1144 return 0;
1145
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001146 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001147
Jack Steiner05f2d122008-03-28 14:12:02 -05001148 apic_pm_state.apic_id = read_apic_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1150 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1151 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1152 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1153 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001154 if (maxlvt >= 4)
1155 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1157 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1158 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1159 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1160 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001161#ifdef CONFIG_X86_MCE_INTEL
1162 if (maxlvt >= 5)
1163 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1164#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001165 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 disable_local_APIC();
1167 local_irq_restore(flags);
1168 return 0;
1169}
1170
1171static int lapic_resume(struct sys_device *dev)
1172{
1173 unsigned int l, h;
1174 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001175 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if (!apic_pm_state.active)
1178 return 0;
1179
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001180 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 local_irq_save(flags);
1183 rdmsr(MSR_IA32_APICBASE, l, h);
1184 l &= ~MSR_IA32_APICBASE_BASE;
Shaohua Li5b743572006-01-16 01:56:45 +01001185 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 wrmsr(MSR_IA32_APICBASE, l, h);
1187 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1188 apic_write(APIC_ID, apic_pm_state.apic_id);
1189 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1190 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1191 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1192 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1193 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1194 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001195#ifdef CONFIG_X86_MCE_INTEL
1196 if (maxlvt >= 5)
1197 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1198#endif
1199 if (maxlvt >= 4)
1200 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1202 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1203 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1204 apic_write(APIC_ESR, 0);
1205 apic_read(APIC_ESR);
1206 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1207 apic_write(APIC_ESR, 0);
1208 apic_read(APIC_ESR);
1209 local_irq_restore(flags);
1210 return 0;
1211}
1212
1213static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001214 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 .resume = lapic_resume,
1216 .suspend = lapic_suspend,
1217};
1218
1219static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001220 .id = 0,
1221 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222};
1223
Ashok Raje6982c62005-06-25 14:54:58 -07001224static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 apic_pm_state.active = 1;
1227}
1228
1229static int __init init_lapic_sysfs(void)
1230{
1231 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (!cpu_has_apic)
1234 return 0;
1235 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 error = sysdev_class_register(&lapic_sysclass);
1238 if (!error)
1239 error = sysdev_register(&device_lapic);
1240 return error;
1241}
1242device_initcall(init_lapic_sysfs);
1243
1244#else /* CONFIG_PM */
1245
1246static void apic_pm_activate(void) { }
1247
1248#endif /* CONFIG_PM */
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001251 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 *
1253 * Thus far, the major user of this is IBM's Summit2 series:
1254 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001255 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 * multi-chassis. Use available data to take a good guess.
1257 * If in doubt, go HPET.
1258 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001259__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
1261 int i, clusters, zeros;
1262 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001263 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1265
Yinghai Lu322850a2008-02-23 21:48:42 -08001266 /*
1267 * there is not this kind of box with AMD CPU yet.
1268 * Some AMD box with quadcore cpu and 8 sockets apicid
1269 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001270 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001271 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001272 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001273 return 0;
1274
1275 bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
Suresh Siddha376ec332005-05-16 21:53:32 -07001276 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001279 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001280 if (bios_cpu_apicid) {
1281 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001282 }
1283 else if (i < nr_cpu_ids) {
1284 if (cpu_present(i))
1285 id = per_cpu(x86_bios_cpu_apicid, i);
1286 else
1287 continue;
1288 }
1289 else
1290 break;
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (id != BAD_APICID)
1293 __set_bit(APIC_CLUSTERID(id), clustermap);
1294 }
1295
1296 /* Problem: Partially populated chassis may not have CPUs in some of
1297 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001298 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1299 * Since clusters are allocated sequentially, count zeros only if
1300 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 */
1302 clusters = 0;
1303 zeros = 0;
1304 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1305 if (test_bit(i, clustermap)) {
1306 clusters += 1 + zeros;
1307 zeros = 0;
1308 } else
1309 ++zeros;
1310 }
1311
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001312 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1313 * not guaranteed to be synced between boards
1314 */
1315 if (is_vsmp_box() && clusters > 1)
1316 return 1;
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001319 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 * May have to revisit this when multi-core + hyperthreaded CPUs come
1321 * out, but AFAIK this will work even for them.
1322 */
1323 return (clusters > 2);
1324}
1325
1326/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001327 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001329static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001331 if (str == NULL) {
1332 skip_ioapic_setup = 0;
1333 ioapic_force = 1;
1334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001336 if (strcmp("debug", str) == 0)
1337 apic_verbosity = APIC_DEBUG;
1338 else if (strcmp("verbose", str) == 0)
1339 apic_verbosity = APIC_VERBOSE;
1340 else {
1341 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1342 " use apic=verbose or apic=debug\n", str);
1343 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return 0;
1347}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001348early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001350static __init int setup_disableapic(char *str)
1351{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 disable_apic = 1;
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +01001353 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001354 return 0;
1355}
1356early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001358/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001359static __init int setup_nolapic(char *str)
1360{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001361 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001362}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001363early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001365static int __init parse_lapic_timer_c2_ok(char *arg)
1366{
1367 local_apic_timer_c2_ok = 1;
1368 return 0;
1369}
1370early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1371
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001372static __init int setup_noapictimer(char *str)
1373{
Andi Kleen73dea472006-02-03 21:50:50 +01001374 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001377 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001378}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001379__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001380
Andi Kleen0c3749c2006-02-03 21:51:41 +01001381static __init int setup_apicpmtimer(char *s)
1382{
1383 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001384 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001385 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001386}
1387__setup("apicpmtimer", setup_apicpmtimer);
1388
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001389static int __init lapic_insert_resource(void)
1390{
1391 if (!apic_phys)
1392 return -1;
1393
1394 /* Put local APIC into the resource map. */
1395 lapic_resource.start = apic_phys;
1396 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1397 insert_resource(&iomem_resource, &lapic_resource);
1398
1399 return 0;
1400}
1401
1402/*
1403 * need call insert after e820_reserve_resources()
1404 * that is using request_resource
1405 */
1406late_initcall(lapic_insert_resource);