blob: 1a6011855af305cd2956f990040c17e9f313653e [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>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070030#include <linux/dmar.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/atomic.h>
33#include <asm/smp.h>
34#include <asm/mtrr.h>
35#include <asm/mpspec.h>
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010036#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/pgalloc.h>
Andi Kleen75152112005-05-16 21:53:34 -070038#include <asm/nmi.h>
Andi Kleen95833c82006-01-11 22:44:36 +010039#include <asm/idle.h>
Andi Kleen73dea472006-02-03 21:50:50 +010040#include <asm/proto.h>
41#include <asm/timex.h>
Andi Kleen2c8c0e62006-09-26 10:52:32 +020042#include <asm/apic.h>
Suresh Siddha6e1cb382008-07-10 11:16:58 -070043#include <asm/i8259.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Glauber Costa5af55732008-03-25 13:28:56 -030045#include <mach_ipi.h>
Glauber Costadd46e3c2008-03-25 18:10:46 -030046#include <mach_apic.h>
Glauber Costa5af55732008-03-25 13:28:56 -030047
Thomas Gleixneraa276e12008-06-09 19:15:00 +020048static int disable_apic_timer __cpuinitdata;
Chris Wrightbc1d99c2007-10-12 23:04:23 +020049static int apic_calibrate_pmtmr __initdata;
Thomas Gleixner0e078e22008-01-30 13:30:20 +010050int disable_apic;
Suresh Siddha6e1cb382008-07-10 11:16:58 -070051int disable_x2apic;
Suresh Siddha89027d32008-07-10 11:16:56 -070052int x2apic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Suresh Siddha6e1cb382008-07-10 11:16:58 -070054/* x2apic enabled before OS handover */
55int x2apic_preenabled;
56
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010057/* Local APIC timer works in C2 */
Linus Torvalds2e7c2832007-03-23 11:32:31 -070058int local_apic_timer_c2_ok;
59EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
60
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010061/*
62 * Debug level, exported for io_apic.c
63 */
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010064unsigned int apic_verbosity;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +010065
Alexey Starikovskiybab4b272008-05-19 19:47:03 +040066/* Have we found an MP table */
67int smp_found_config;
68
Aaron Durbin39928722006-12-07 02:14:01 +010069static struct resource lapic_resource = {
70 .name = "Local APIC",
71 .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
72};
73
Thomas Gleixnerd03030e2007-10-12 23:04:06 +020074static unsigned int calibration_result;
75
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020076static int lapic_next_event(unsigned long delta,
77 struct clock_event_device *evt);
78static void lapic_timer_setup(enum clock_event_mode mode,
79 struct clock_event_device *evt);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020080static void lapic_timer_broadcast(cpumask_t mask);
Thomas Gleixner0e078e22008-01-30 13:30:20 +010081static void apic_pm_activate(void);
Thomas Gleixnerba7eda42007-10-12 23:04:07 +020082
83static struct clock_event_device lapic_clockevent = {
84 .name = "lapic",
85 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
86 | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
87 .shift = 32,
88 .set_mode = lapic_timer_setup,
89 .set_next_event = lapic_next_event,
90 .broadcast = lapic_timer_broadcast,
91 .rating = 100,
92 .irq = -1,
93};
94static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
95
Andi Kleend3432892008-01-30 13:33:17 +010096static unsigned long apic_phys;
97
Alexey Starikovskiy3f530702008-03-27 23:55:47 +030098unsigned long mp_lapic_addr;
99
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100100/*
101 * Get the LAPIC version
102 */
103static inline int lapic_get_version(void)
104{
105 return GET_APIC_VERSION(apic_read(APIC_LVR));
106}
107
108/*
109 * Check, if the APIC is integrated or a seperate chip
110 */
111static inline int lapic_is_integrated(void)
112{
113 return 1;
114}
115
116/*
117 * Check, whether this is a modern or a first generation APIC
118 */
119static int modern_apic(void)
120{
121 /* AMD systems use old APIC versions, so check the CPU */
122 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
123 boot_cpu_data.x86 >= 0xf)
124 return 1;
125 return lapic_get_version() >= 0x14;
126}
127
Suresh Siddha1b374e42008-07-10 11:16:49 -0700128void xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100129{
130 while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
131 cpu_relax();
132}
133
Suresh Siddha1b374e42008-07-10 11:16:49 -0700134u32 safe_xapic_wait_icr_idle(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100135{
136 u32 send_status;
137 int timeout;
138
139 timeout = 0;
140 do {
141 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
142 if (!send_status)
143 break;
144 udelay(100);
145 } while (timeout++ < 1000);
146
147 return send_status;
148}
149
Suresh Siddha1b374e42008-07-10 11:16:49 -0700150void xapic_icr_write(u32 low, u32 id)
151{
152 apic_write(APIC_ICR2, id << 24);
153 apic_write(APIC_ICR, low);
154}
155
156u64 xapic_icr_read(void)
157{
158 u32 icr1, icr2;
159
160 icr2 = apic_read(APIC_ICR2);
161 icr1 = apic_read(APIC_ICR);
162
163 return (icr1 | ((u64)icr2 << 32));
164}
165
166static struct apic_ops xapic_ops = {
167 .read = native_apic_mem_read,
168 .write = native_apic_mem_write,
Suresh Siddha1b374e42008-07-10 11:16:49 -0700169 .icr_read = xapic_icr_read,
170 .icr_write = xapic_icr_write,
171 .wait_icr_idle = xapic_wait_icr_idle,
172 .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
173};
174
175struct apic_ops __read_mostly *apic_ops = &xapic_ops;
176
177EXPORT_SYMBOL_GPL(apic_ops);
178
Suresh Siddha13c88fb2008-07-10 11:16:52 -0700179static void x2apic_wait_icr_idle(void)
180{
181 /* no need to wait for icr idle in x2apic */
182 return;
183}
184
185static u32 safe_x2apic_wait_icr_idle(void)
186{
187 /* no need to wait for icr idle in x2apic */
188 return 0;
189}
190
191void x2apic_icr_write(u32 low, u32 id)
192{
193 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
194}
195
196u64 x2apic_icr_read(void)
197{
198 unsigned long val;
199
200 rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
201 return val;
202}
203
204static struct apic_ops x2apic_ops = {
205 .read = native_apic_msr_read,
206 .write = native_apic_msr_write,
Suresh Siddha13c88fb2008-07-10 11:16:52 -0700207 .icr_read = x2apic_icr_read,
208 .icr_write = x2apic_icr_write,
209 .wait_icr_idle = x2apic_wait_icr_idle,
210 .safe_wait_icr_idle = safe_x2apic_wait_icr_idle,
211};
212
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100213/**
214 * enable_NMI_through_LVT0 - enable NMI through local vector table 0
215 */
Jan Beuliche9427102008-01-30 13:31:24 +0100216void __cpuinit enable_NMI_through_LVT0(void)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100217{
218 unsigned int v;
219
220 /* unmask and set to NMI */
221 v = APIC_DM_NMI;
Cyrill Gorcunovd4c63ec2008-07-24 13:52:29 +0200222
223 /* Level triggered for 82489DX (32bit mode) */
224 if (!lapic_is_integrated())
225 v |= APIC_LVT_LEVEL_TRIGGER;
226
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100227 apic_write(APIC_LVT0, v);
228}
229
230/**
231 * lapic_get_maxlvt - get the maximum number of local vector table entries
232 */
233int lapic_get_maxlvt(void)
234{
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200235 unsigned int v;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100236
237 v = apic_read(APIC_LVR);
Cyrill Gorcunov36a028d2008-07-24 13:52:28 +0200238 /*
239 * - we always have APIC integrated on 64bit mode
240 * - 82489DXs do not report # of LVT entries
241 */
242 return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100243}
244
245/*
246 * This function sets up the local APIC timer, with a timeout of
247 * 'clocks' APIC bus clock. During calibration we actually call
248 * this function twice on the boot CPU, once with a bogus timeout
249 * value, second time for real. The other (noncalibrating) CPUs
250 * call this function only once, with the real, calibrated value.
251 *
252 * We do reads before writes even if unnecessary, to get around the
253 * P5 APIC double write bug.
254 */
255
256static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
257{
258 unsigned int lvtt_value, tmp_value;
259
260 lvtt_value = LOCAL_TIMER_VECTOR;
261 if (!oneshot)
262 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
263 if (!irqen)
264 lvtt_value |= APIC_LVT_MASKED;
265
266 apic_write(APIC_LVTT, lvtt_value);
267
268 /*
269 * Divide PICLK by 16
270 */
271 tmp_value = apic_read(APIC_TDCR);
272 apic_write(APIC_TDCR, (tmp_value
273 & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE))
274 | APIC_TDR_DIV_16);
275
276 if (!oneshot)
277 apic_write(APIC_TMICT, clocks);
278}
279
280/*
Robert Richter7b83dae2008-01-30 13:30:40 +0100281 * Setup extended LVT, AMD specific (K8, family 10h)
282 *
283 * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
284 * MCE interrupts are supported. Thus MCE offset must be set to 0.
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100285 */
Robert Richter7b83dae2008-01-30 13:30:40 +0100286
287#define APIC_EILVT_LVTOFF_MCE 0
288#define APIC_EILVT_LVTOFF_IBS 1
289
290static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100291{
Robert Richter7b83dae2008-01-30 13:30:40 +0100292 unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100293 unsigned int v = (mask << 16) | (msg_type << 8) | vector;
294
295 apic_write(reg, v);
296}
297
Robert Richter7b83dae2008-01-30 13:30:40 +0100298u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
299{
300 setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
301 return APIC_EILVT_LVTOFF_MCE;
302}
303
304u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
305{
306 setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
307 return APIC_EILVT_LVTOFF_IBS;
308}
309
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100310/*
311 * Program the next event, relative to now
312 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200313static int lapic_next_event(unsigned long delta,
314 struct clock_event_device *evt)
315{
316 apic_write(APIC_TMICT, delta);
317 return 0;
318}
319
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100320/*
321 * Setup the lapic timer in periodic or oneshot mode
322 */
Thomas Gleixnerba7eda42007-10-12 23:04:07 +0200323static void lapic_timer_setup(enum clock_event_mode mode,
324 struct clock_event_device *evt)
325{
326 unsigned long flags;
327 unsigned int v;
328
329 /* Lapic used as dummy for broadcast ? */
330 if (evt->features & CLOCK_EVT_FEAT_DUMMY)
331 return;
332
333 local_irq_save(flags);
334
335 switch (mode) {
336 case CLOCK_EVT_MODE_PERIODIC:
337 case CLOCK_EVT_MODE_ONESHOT:
338 __setup_APIC_LVTT(calibration_result,
339 mode != CLOCK_EVT_MODE_PERIODIC, 1);
340 break;
341 case CLOCK_EVT_MODE_UNUSED:
342 case CLOCK_EVT_MODE_SHUTDOWN:
343 v = apic_read(APIC_LVTT);
344 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
345 apic_write(APIC_LVTT, v);
346 break;
347 case CLOCK_EVT_MODE_RESUME:
348 /* Nothing to do here */
349 break;
350 }
351
352 local_irq_restore(flags);
353}
354
355/*
356 * Local APIC timer broadcast function
357 */
358static void lapic_timer_broadcast(cpumask_t mask)
359{
360#ifdef CONFIG_SMP
361 send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
362#endif
363}
364
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100365/*
366 * Setup the local APIC timer for this CPU. Copy the initilized values
367 * of the boot CPU and register the clock event in the framework.
368 */
369static void setup_APIC_timer(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200370{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100371 struct clock_event_device *levt = &__get_cpu_var(lapic_events);
372
373 memcpy(levt, &lapic_clockevent, sizeof(*levt));
374 levt->cpumask = cpumask_of_cpu(smp_processor_id());
375
376 clockevents_register_device(levt);
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200377}
378
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100379/*
380 * In this function we calibrate APIC bus clocks to the external
381 * timer. Unfortunately we cannot use jiffies and the timer irq
382 * to calibrate, since some later bootup code depends on getting
383 * the first irq? Ugh.
384 *
385 * We want to do the calibration only once since we
386 * want to have local timer irqs syncron. CPUs connected
387 * by the same APIC bus have the very same bus frequency.
388 * And we want to have irqs off anyways, no accidental
389 * APIC irq that way.
390 */
391
392#define TICK_COUNT 100000000
393
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400394static int __init calibrate_APIC_clock(void)
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200395{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100396 unsigned apic, apic_start;
397 unsigned long tsc, tsc_start;
398 int result;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200399
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100400 local_irq_disable();
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200401
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100402 /*
403 * Put whatever arbitrary (but long enough) timeout
404 * value into the APIC clock, we just want to get the
405 * counter running for calibration.
406 *
407 * No interrupt enable !
408 */
409 __setup_APIC_LVTT(250000000, 0, 0);
410
411 apic_start = apic_read(APIC_TMCCT);
412#ifdef CONFIG_X86_PM_TIMER
413 if (apic_calibrate_pmtmr && pmtmr_ioport) {
414 pmtimer_wait(5000); /* 5ms wait */
415 apic = apic_read(APIC_TMCCT);
416 result = (apic_start - apic) * 1000L / 5;
417 } else
418#endif
419 {
420 rdtscll(tsc_start);
421
422 do {
423 apic = apic_read(APIC_TMCCT);
424 rdtscll(tsc);
425 } while ((tsc - tsc_start) < TICK_COUNT &&
426 (apic_start - apic) < TICK_COUNT);
427
428 result = (apic_start - apic) * 1000L * tsc_khz /
429 (tsc - tsc_start);
430 }
431
432 local_irq_enable();
433
434 printk(KERN_DEBUG "APIC timer calibration result %d\n", result);
435
436 printk(KERN_INFO "Detected %d.%03d MHz APIC timer.\n",
437 result / 1000 / 1000, result / 1000 % 1000);
438
439 /* Calculate the scaled math multiplication factor */
Akinobu Mita877084f2008-04-19 23:55:16 +0900440 lapic_clockevent.mult = div_sc(result, NSEC_PER_SEC,
441 lapic_clockevent.shift);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100442 lapic_clockevent.max_delta_ns =
443 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
444 lapic_clockevent.min_delta_ns =
445 clockevent_delta2ns(0xF, &lapic_clockevent);
446
447 calibration_result = result / HZ;
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400448
449 /*
450 * Do a sanity check on the APIC calibration result
451 */
452 if (calibration_result < (1000000 / HZ)) {
453 printk(KERN_WARNING
454 "APIC frequency too slow, disabling apic timer\n");
455 return -1;
456 }
457
458 return 0;
Fernando Luis VazquezCao8339e9f2007-05-02 19:27:17 +0200459}
460
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +0100461/*
462 * Setup the boot APIC
463 *
464 * Calibrate and verify the result.
465 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100466void __init setup_boot_APIC_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100468 /*
469 * The local apic timer can be disabled via the kernel commandline.
470 * Register the lapic timer as a dummy clock event source on SMP
471 * systems, so the broadcast mechanism is used. On UP systems simply
472 * ignore it.
473 */
474 if (disable_apic_timer) {
475 printk(KERN_INFO "Disabling APIC timer\n");
476 /* No broadcast on UP ! */
Thomas Gleixner9d099512008-01-30 13:33:04 +0100477 if (num_possible_cpus() > 1) {
478 lapic_clockevent.mult = 1;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100479 setup_APIC_timer();
Thomas Gleixner9d099512008-01-30 13:33:04 +0100480 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100481 return;
482 }
Thomas Gleixner6935d1f2007-07-21 17:10:17 +0200483
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100484 printk(KERN_INFO "Using local APIC timer interrupts.\n");
Cyrill Gorcunov89b3b1f2008-07-15 21:02:54 +0400485 if (calibrate_APIC_clock()) {
Thomas Gleixnerc2b84b32008-01-30 13:33:04 +0100486 /* No broadcast on UP ! */
487 if (num_possible_cpus() > 1)
488 setup_APIC_timer();
489 return;
490 }
491
492 /*
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100493 * If nmi_watchdog is set to IO_APIC, we need the
494 * PIT/HPET going. Otherwise register lapic as a dummy
495 * device.
496 */
497 if (nmi_watchdog != NMI_IO_APIC)
498 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
499 else
500 printk(KERN_WARNING "APIC timer registered as dummy,"
Cyrill Gorcunov116f5702008-06-24 22:52:04 +0200501 " due to nmi_watchdog=%d!\n", nmi_watchdog);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100502
503 setup_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100506void __cpuinit setup_secondary_APIC_clock(void)
507{
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100508 setup_APIC_timer();
509}
510
511/*
512 * The guts of the apic timer interrupt
513 */
514static void local_apic_timer_interrupt(void)
515{
516 int cpu = smp_processor_id();
517 struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
518
519 /*
520 * Normally we should not be here till LAPIC has been initialized but
521 * in some cases like kdump, its possible that there is a pending LAPIC
522 * timer interrupt from previous kernel's context and is delivered in
523 * new kernel the moment interrupts are enabled.
524 *
525 * Interrupts are enabled early and LAPIC is setup much later, hence
526 * its possible that when we get here evt->event_handler is NULL.
527 * Check for event_handler being NULL and discard the interrupt as
528 * spurious.
529 */
530 if (!evt->event_handler) {
531 printk(KERN_WARNING
532 "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
533 /* Switch it off */
534 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
535 return;
536 }
537
538 /*
539 * the NMI deadlock-detector uses this.
540 */
541 add_pda(apic_timer_irqs, 1);
542
543 evt->event_handler(evt);
544}
545
546/*
547 * Local APIC timer interrupt. This is the most natural way for doing
548 * local interrupts, but local timer interrupts can be emulated by
549 * broadcast interrupts too. [in case the hw doesn't support APIC timers]
550 *
551 * [ if a single-CPU system runs an SMP kernel then we call the local
552 * interrupt as well. Thus we cannot inline the local irq ... ]
553 */
554void smp_apic_timer_interrupt(struct pt_regs *regs)
555{
556 struct pt_regs *old_regs = set_irq_regs(regs);
557
558 /*
559 * NOTE! We'd better ACK the irq immediately,
560 * because timer handling can be slow.
561 */
562 ack_APIC_irq();
563 /*
564 * update_process_times() expects us to have done irq_enter().
565 * Besides, if we don't timer interrupts ignore the global
566 * interrupt lock, which is the WrongThing (tm) to do.
567 */
568 exit_idle();
569 irq_enter();
570 local_apic_timer_interrupt();
571 irq_exit();
572 set_irq_regs(old_regs);
573}
574
575int setup_profiling_timer(unsigned int multiplier)
576{
577 return -EINVAL;
578}
579
580
581/*
582 * Local APIC start and shutdown
583 */
584
585/**
586 * clear_local_APIC - shutdown the local APIC
587 *
588 * This is called, when a CPU is disabled and before rebooting, so the state of
589 * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
590 * leftovers during boot.
591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592void clear_local_APIC(void)
593{
Chuck Ebbert2584a822008-05-20 18:18:12 -0400594 int maxlvt;
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100595 u32 v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Andi Kleend3432892008-01-30 13:33:17 +0100597 /* APIC hasn't been mapped yet */
598 if (!apic_phys)
599 return;
600
601 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /*
Siddha, Suresh B704fc592006-06-26 13:59:53 +0200603 * Masking an LVT entry can trigger a local APIC error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * if the vector is zero. Mask LVTERR first to prevent this.
605 */
606 if (maxlvt >= 3) {
607 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
Andi Kleen11a8e772006-01-11 22:46:51 +0100608 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610 /*
611 * Careful: we have to set masks only first to deassert
612 * any level-triggered sources.
613 */
614 v = apic_read(APIC_LVTT);
Andi Kleen11a8e772006-01-11 22:46:51 +0100615 apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 v = apic_read(APIC_LVT0);
Andi Kleen11a8e772006-01-11 22:46:51 +0100617 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 v = apic_read(APIC_LVT1);
Andi Kleen11a8e772006-01-11 22:46:51 +0100619 apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (maxlvt >= 4) {
621 v = apic_read(APIC_LVTPC);
Andi Kleen11a8e772006-01-11 22:46:51 +0100622 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624
625 /*
626 * Clean APIC state for other OSs:
627 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100628 apic_write(APIC_LVTT, APIC_LVT_MASKED);
629 apic_write(APIC_LVT0, APIC_LVT_MASKED);
630 apic_write(APIC_LVT1, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (maxlvt >= 3)
Andi Kleen11a8e772006-01-11 22:46:51 +0100632 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (maxlvt >= 4)
Andi Kleen11a8e772006-01-11 22:46:51 +0100634 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200635 apic_write(APIC_ESR, 0);
636 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100639/**
640 * disable_local_APIC - clear and disable the local APIC
641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642void disable_local_APIC(void)
643{
644 unsigned int value;
645
646 clear_local_APIC();
647
648 /*
649 * Disable APIC (implies clearing of registers
650 * for 82489DX!).
651 */
652 value = apic_read(APIC_SPIV);
653 value &= ~APIC_SPIV_APIC_ENABLED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100654 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Hiroshi Shimamoto9b7711f2007-10-19 18:21:11 -0700657void lapic_shutdown(void)
658{
659 unsigned long flags;
660
661 if (!cpu_has_apic)
662 return;
663
664 local_irq_save(flags);
665
666 disable_local_APIC();
667
668 local_irq_restore(flags);
669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671/*
672 * This is to verify that we're looking at a real local APIC.
673 * Check these against your board if the CPUs aren't getting
674 * started for no apparent reason.
675 */
676int __init verify_local_APIC(void)
677{
678 unsigned int reg0, reg1;
679
680 /*
681 * The version register is read-only in a real APIC.
682 */
683 reg0 = apic_read(APIC_LVR);
684 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
685 apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
686 reg1 = apic_read(APIC_LVR);
687 apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
688
689 /*
690 * The two version reads above should print the same
691 * numbers. If the second one is different, then we
692 * poke at a non-APIC.
693 */
694 if (reg1 != reg0)
695 return 0;
696
697 /*
698 * Check if the version looks reasonably.
699 */
700 reg1 = GET_APIC_VERSION(reg0);
701 if (reg1 == 0x00 || reg1 == 0xff)
702 return 0;
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100703 reg1 = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (reg1 < 0x02 || reg1 == 0xff)
705 return 0;
706
707 /*
708 * The ID register is read/write in a real APIC.
709 */
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700710 reg0 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
712 apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
Suresh Siddha2d7a66d2008-07-11 14:24:19 -0700713 reg1 = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
715 apic_write(APIC_ID, reg0);
716 if (reg1 != (reg0 ^ APIC_ID_MASK))
717 return 0;
718
719 /*
720 * The next two are just to see if we have sane values.
721 * They're only really relevant if we're in Virtual Wire
722 * compatibility mode, but most boxes are anymore.
723 */
724 reg0 = apic_read(APIC_LVT0);
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100725 apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 reg1 = apic_read(APIC_LVT1);
727 apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
728
729 return 1;
730}
731
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100732/**
733 * sync_Arb_IDs - synchronize APIC bus arbitration IDs
734 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735void __init sync_Arb_IDs(void)
736{
737 /* Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100738 if (modern_apic())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return;
740
741 /*
742 * Wait for idle.
743 */
744 apic_wait_icr_idle();
745
746 apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
Andi Kleen11a8e772006-01-11 22:46:51 +0100747 apic_write(APIC_ICR, APIC_DEST_ALLINC | APIC_INT_LEVELTRIG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 | APIC_DM_INIT);
749}
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751/*
752 * An initial setup of the virtual wire mode.
753 */
754void __init init_bsp_APIC(void)
755{
Andi Kleen11a8e772006-01-11 22:46:51 +0100756 unsigned int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 /*
759 * Don't do the setup now if we have a SMP BIOS as the
760 * through-I/O-APIC virtual wire mode might be active.
761 */
762 if (smp_found_config || !cpu_has_apic)
763 return;
764
765 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /*
768 * Do not trust the local APIC being empty at bootup.
769 */
770 clear_local_APIC();
771
772 /*
773 * Enable APIC.
774 */
775 value = apic_read(APIC_SPIV);
776 value &= ~APIC_VECTOR_MASK;
777 value |= APIC_SPIV_APIC_ENABLED;
778 value |= APIC_SPIV_FOCUS_DISABLED;
779 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100780 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 /*
783 * Set up the virtual wire mode.
784 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100785 apic_write(APIC_LVT0, APIC_DM_EXTINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 value = APIC_DM_NMI;
Andi Kleen11a8e772006-01-11 22:46:51 +0100787 apic_write(APIC_LVT1, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Thomas Gleixner0e078e22008-01-30 13:30:20 +0100790/**
791 * setup_local_APIC - setup the local APIC
792 */
793void __cpuinit setup_local_APIC(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Andi Kleen739f33b2008-01-30 13:30:40 +0100795 unsigned int value;
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100796 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Jack Steinerac23d4e2008-03-28 14:12:16 -0500798 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 value = apic_read(APIC_LVR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Andi Kleenfe7414a2006-09-26 10:52:30 +0200801 BUILD_BUG_ON((SPURIOUS_APIC_VECTOR & 0x0f) != 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /*
804 * Double-check whether this APIC is really registered.
805 * This is meaningless in clustered apic mode, so we skip it.
806 */
807 if (!apic_id_registered())
808 BUG();
809
810 /*
811 * Intel recommends to set DFR, LDR and TPR before enabling
812 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
813 * document number 292116). So here it goes...
814 */
815 init_apic_ldr();
816
817 /*
818 * Set Task Priority to 'accept all'. We never change this
819 * later on.
820 */
821 value = apic_read(APIC_TASKPRI);
822 value &= ~APIC_TPRI_MASK;
Andi Kleen11a8e772006-01-11 22:46:51 +0100823 apic_write(APIC_TASKPRI, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 /*
Vivek Goyalda7ed9f2006-03-25 16:31:16 +0100826 * After a crash, we no longer service the interrupts and a pending
827 * interrupt from previous kernel might still have ISR bit set.
828 *
829 * Most probably by now CPU has serviced that pending interrupt and
830 * it might not have done the ack_APIC_irq() because it thought,
831 * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
832 * does not clear the ISR bit and cpu thinks it has already serivced
833 * the interrupt. Hence a vector might get locked. It was noticed
834 * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
835 */
836 for (i = APIC_ISR_NR - 1; i >= 0; i--) {
837 value = apic_read(APIC_ISR + i*0x10);
838 for (j = 31; j >= 0; j--) {
839 if (value & (1<<j))
840 ack_APIC_irq();
841 }
842 }
843
844 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * Now that we are all set up, enable the APIC
846 */
847 value = apic_read(APIC_SPIV);
848 value &= ~APIC_VECTOR_MASK;
849 /*
850 * Enable APIC
851 */
852 value |= APIC_SPIV_APIC_ENABLED;
853
Andi Kleen3f14c742006-09-26 10:52:29 +0200854 /* We always use processor focus */
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 /*
857 * Set spurious IRQ vector
858 */
859 value |= SPURIOUS_APIC_VECTOR;
Andi Kleen11a8e772006-01-11 22:46:51 +0100860 apic_write(APIC_SPIV, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 /*
863 * Set up LVT0, LVT1:
864 *
865 * set up through-local-APIC on the BP's LINT0. This is not
866 * strictly necessary in pure symmetric-IO mode, but sometimes
867 * we delegate interrupts to the 8259A.
868 */
869 /*
870 * TODO: set up through-local-APIC from through-I/O-APIC? --macro
871 */
872 value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
Andi Kleena8fcf1a2006-09-26 10:52:30 +0200873 if (!smp_processor_id() && !value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 value = APIC_DM_EXTINT;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200875 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
876 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 } else {
878 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
Chris Wrightbc1d99c2007-10-12 23:04:23 +0200879 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
880 smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
Andi Kleen11a8e772006-01-11 22:46:51 +0100882 apic_write(APIC_LVT0, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 /*
885 * only the BP should see the LINT1 NMI signal, obviously.
886 */
887 if (!smp_processor_id())
888 value = APIC_DM_NMI;
889 else
890 value = APIC_DM_NMI | APIC_LVT_MASKED;
Andi Kleen11a8e772006-01-11 22:46:51 +0100891 apic_write(APIC_LVT1, value);
Jack Steinerac23d4e2008-03-28 14:12:16 -0500892 preempt_enable();
Andi Kleen739f33b2008-01-30 13:30:40 +0100893}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Ingo Molnara4928cf2008-04-23 13:20:56 +0200895static void __cpuinit lapic_setup_esr(void)
Andi Kleen739f33b2008-01-30 13:30:40 +0100896{
897 unsigned maxlvt = lapic_get_maxlvt();
898
899 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR);
Yinghai Lu1c695242008-01-30 13:30:39 +0100900 /*
Andi Kleen739f33b2008-01-30 13:30:40 +0100901 * spec says clear errors after enabling vector.
Yinghai Lu1c695242008-01-30 13:30:39 +0100902 */
Andi Kleen739f33b2008-01-30 13:30:40 +0100903 if (maxlvt > 3)
904 apic_write(APIC_ESR, 0);
905}
Yinghai Lu1c695242008-01-30 13:30:39 +0100906
Andi Kleen739f33b2008-01-30 13:30:40 +0100907void __cpuinit end_local_APIC_setup(void)
908{
909 lapic_setup_esr();
Don Zickusf2802e72006-09-26 10:52:26 +0200910 setup_apic_nmi_watchdog(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 apic_pm_activate();
912}
913
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700914void check_x2apic(void)
915{
916 int msr, msr2;
917
918 rdmsr(MSR_IA32_APICBASE, msr, msr2);
919
920 if (msr & X2APIC_ENABLE) {
921 printk("x2apic enabled by BIOS, switching to x2apic ops\n");
922 x2apic_preenabled = x2apic = 1;
923 apic_ops = &x2apic_ops;
924 }
925}
926
927void enable_x2apic(void)
928{
929 int msr, msr2;
930
931 rdmsr(MSR_IA32_APICBASE, msr, msr2);
932 if (!(msr & X2APIC_ENABLE)) {
933 printk("Enabling x2apic\n");
934 wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
935 }
936}
937
938void enable_IR_x2apic(void)
939{
940#ifdef CONFIG_INTR_REMAP
941 int ret;
942 unsigned long flags;
943
944 if (!cpu_has_x2apic)
945 return;
946
947 if (!x2apic_preenabled && disable_x2apic) {
948 printk(KERN_INFO
949 "Skipped enabling x2apic and Interrupt-remapping "
950 "because of nox2apic\n");
951 return;
952 }
953
954 if (x2apic_preenabled && disable_x2apic)
955 panic("Bios already enabled x2apic, can't enforce nox2apic");
956
957 if (!x2apic_preenabled && skip_ioapic_setup) {
958 printk(KERN_INFO
959 "Skipped enabling x2apic and Interrupt-remapping "
960 "because of skipping io-apic setup\n");
961 return;
962 }
963
964 ret = dmar_table_init();
965 if (ret) {
966 printk(KERN_INFO
967 "dmar_table_init() failed with %d:\n", ret);
968
969 if (x2apic_preenabled)
970 panic("x2apic enabled by bios. But IR enabling failed");
971 else
972 printk(KERN_INFO
973 "Not enabling x2apic,Intr-remapping\n");
974 return;
975 }
976
977 local_irq_save(flags);
978 mask_8259A();
979 save_mask_IO_APIC_setup();
980
981 ret = enable_intr_remapping(1);
982
983 if (ret && x2apic_preenabled) {
984 local_irq_restore(flags);
985 panic("x2apic enabled by bios. But IR enabling failed");
986 }
987
988 if (ret)
989 goto end;
990
991 if (!x2apic) {
992 x2apic = 1;
993 apic_ops = &x2apic_ops;
994 enable_x2apic();
995 }
996end:
997 if (ret)
998 /*
999 * IR enabling failed
1000 */
1001 restore_IO_APIC_setup();
1002 else
1003 reinit_intr_remapped_IO_APIC(x2apic_preenabled);
1004
1005 unmask_8259A();
1006 local_irq_restore(flags);
1007
1008 if (!ret) {
1009 if (!x2apic_preenabled)
1010 printk(KERN_INFO
1011 "Enabled x2apic and interrupt-remapping\n");
1012 else
1013 printk(KERN_INFO
1014 "Enabled Interrupt-remapping\n");
1015 } else
1016 printk(KERN_ERR
1017 "Failed to enable Interrupt-remapping and x2apic\n");
1018#else
1019 if (!cpu_has_x2apic)
1020 return;
1021
1022 if (x2apic_preenabled)
1023 panic("x2apic enabled prior OS handover,"
1024 " enable CONFIG_INTR_REMAP");
1025
1026 printk(KERN_INFO "Enable CONFIG_INTR_REMAP for enabling intr-remapping "
1027 " and x2apic\n");
1028#endif
1029
1030 return;
1031}
1032
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001033/*
1034 * Detect and enable local APICs on non-SMP boards.
1035 * Original code written by Keir Fraser.
1036 * On AMD64 we trust the BIOS - if it says no APIC it is likely
1037 * not correctly set up (usually the APIC timer won't work etc.)
1038 */
1039static int __init detect_init_APIC(void)
1040{
1041 if (!cpu_has_apic) {
1042 printk(KERN_INFO "No local APIC present\n");
1043 return -1;
1044 }
1045
1046 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001047 boot_cpu_physical_apicid = 0;
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001048 return 0;
1049}
1050
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001051void __init early_init_lapic_mapping(void)
1052{
Thomas Gleixner431ee792008-05-12 15:43:35 +02001053 unsigned long phys_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001054
1055 /*
1056 * If no local APIC can be found then go out
1057 * : it means there is no mpatable and MADT
1058 */
1059 if (!smp_found_config)
1060 return;
1061
Thomas Gleixner431ee792008-05-12 15:43:35 +02001062 phys_addr = mp_lapic_addr;
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001063
Thomas Gleixner431ee792008-05-12 15:43:35 +02001064 set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001065 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
Thomas Gleixner431ee792008-05-12 15:43:35 +02001066 APIC_BASE, phys_addr);
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001067
1068 /*
1069 * Fetch the APIC ID of the BSP in case we have a
1070 * default configuration (or the MP table is broken).
1071 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001072 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lu8643f9d2008-02-19 03:21:06 -08001073}
1074
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001075/**
1076 * init_apic_mappings - initialize APIC mappings
1077 */
1078void __init init_apic_mappings(void)
1079{
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001080 if (x2apic) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001081 boot_cpu_physical_apicid = read_apic_id();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001082 return;
1083 }
1084
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001085 /*
1086 * If no local APIC can be found then set up a fake all
1087 * zeroes page to simulate the local APIC and another
1088 * one for the IO-APIC.
1089 */
1090 if (!smp_found_config && detect_init_APIC()) {
1091 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1092 apic_phys = __pa(apic_phys);
1093 } else
1094 apic_phys = mp_lapic_addr;
1095
1096 set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1097 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1098 APIC_BASE, apic_phys);
1099
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001100 /*
1101 * Fetch the APIC ID of the BSP in case we have a
1102 * default configuration (or the MP table is broken).
1103 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001104 boot_cpu_physical_apicid = read_apic_id();
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001105}
1106
1107/*
1108 * This initializes the IO-APIC and APIC hardware if this is
1109 * a UP kernel.
1110 */
1111int __init APIC_init_uniprocessor(void)
1112{
1113 if (disable_apic) {
1114 printk(KERN_INFO "Apic disabled\n");
1115 return -1;
1116 }
1117 if (!cpu_has_apic) {
1118 disable_apic = 1;
1119 printk(KERN_INFO "Apic disabled by BIOS\n");
1120 return -1;
1121 }
1122
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001123 enable_IR_x2apic();
1124 setup_apic_routing();
1125
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001126 verify_local_APIC();
1127
Glauber Costab5841762008-05-28 13:38:28 -03001128 connect_bsp_APIC();
1129
Jack Steinerb6df1b82008-06-19 21:51:05 -05001130 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -03001131 apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001132
1133 setup_local_APIC();
1134
Andi Kleen739f33b2008-01-30 13:30:40 +01001135 /*
1136 * Now enable IO-APICs, actually call clear_IO_APIC
1137 * We need clear_IO_APIC before enabling vector on BP
1138 */
1139 if (!skip_ioapic_setup && nr_ioapics)
1140 enable_IO_APIC();
1141
Maciej W. Rozyckiacae7d92008-06-06 03:27:49 +01001142 if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1143 localise_nmi_watchdog();
Andi Kleen739f33b2008-01-30 13:30:40 +01001144 end_local_APIC_setup();
1145
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001146 if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
1147 setup_IO_APIC();
1148 else
1149 nr_ioapics = 0;
1150 setup_boot_APIC_clock();
1151 check_nmi_watchdog();
1152 return 0;
1153}
1154
1155/*
1156 * Local APIC interrupts
1157 */
1158
1159/*
1160 * This interrupt should _never_ happen with our APIC/SMP architecture
1161 */
1162asmlinkage void smp_spurious_interrupt(void)
1163{
1164 unsigned int v;
1165 exit_idle();
1166 irq_enter();
1167 /*
1168 * Check if this really is a spurious interrupt and ACK it
1169 * if it is a vectored one. Just in case...
1170 * Spurious interrupts should not be ACKed.
1171 */
1172 v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1173 if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1174 ack_APIC_irq();
1175
1176 add_pda(irq_spurious_count, 1);
1177 irq_exit();
1178}
1179
1180/*
1181 * This interrupt should never happen with our APIC/SMP architecture
1182 */
1183asmlinkage void smp_error_interrupt(void)
1184{
1185 unsigned int v, v1;
1186
1187 exit_idle();
1188 irq_enter();
1189 /* First tickle the hardware, only then report what went on. -- REW */
1190 v = apic_read(APIC_ESR);
1191 apic_write(APIC_ESR, 0);
1192 v1 = apic_read(APIC_ESR);
1193 ack_APIC_irq();
1194 atomic_inc(&irq_err_count);
1195
1196 /* Here is what the APIC error bits mean:
1197 0: Send CS error
1198 1: Receive CS error
1199 2: Send accept error
1200 3: Receive accept error
1201 4: Reserved
1202 5: Send illegal vector
1203 6: Received illegal vector
1204 7: Illegal register address
1205 */
1206 printk(KERN_DEBUG "APIC error on CPU%d: %02x(%02x)\n",
1207 smp_processor_id(), v , v1);
1208 irq_exit();
1209}
1210
Glauber Costab5841762008-05-28 13:38:28 -03001211/**
1212 * * connect_bsp_APIC - attach the APIC to the interrupt system
1213 * */
1214void __init connect_bsp_APIC(void)
1215{
1216 enable_apic_mode();
1217}
1218
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001219void disconnect_bsp_APIC(int virt_wire_setup)
1220{
1221 /* Go back to Virtual Wire compatibility mode */
1222 unsigned long value;
1223
1224 /* For the spurious interrupt use vector F, and enable it */
1225 value = apic_read(APIC_SPIV);
1226 value &= ~APIC_VECTOR_MASK;
1227 value |= APIC_SPIV_APIC_ENABLED;
1228 value |= 0xf;
1229 apic_write(APIC_SPIV, value);
1230
1231 if (!virt_wire_setup) {
1232 /*
1233 * For LVT0 make it edge triggered, active high,
1234 * external and enabled
1235 */
1236 value = apic_read(APIC_LVT0);
1237 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1238 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1239 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1240 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1241 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1242 apic_write(APIC_LVT0, value);
1243 } else {
1244 /* Disable LVT0 */
1245 apic_write(APIC_LVT0, APIC_LVT_MASKED);
1246 }
1247
1248 /* For LVT1 make it edge triggered, active high, nmi and enabled */
1249 value = apic_read(APIC_LVT1);
1250 value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1251 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1252 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1253 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1254 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1255 apic_write(APIC_LVT1, value);
1256}
1257
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001258void __cpuinit generic_processor_info(int apicid, int version)
1259{
1260 int cpu;
1261 cpumask_t tmp_map;
1262
1263 if (num_processors >= NR_CPUS) {
1264 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1265 " Processor ignored.\n", NR_CPUS);
1266 return;
1267 }
1268
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001269 num_processors++;
1270 cpus_complement(tmp_map, cpu_present_map);
1271 cpu = first_cpu(tmp_map);
1272
1273 physid_set(apicid, phys_cpu_present_map);
1274 if (apicid == boot_cpu_physical_apicid) {
1275 /*
1276 * x86_bios_cpu_apicid is required to have processors listed
1277 * in same order as logical cpu numbers. Hence the first
1278 * entry is BSP, and so on.
1279 */
1280 cpu = 0;
1281 }
Yinghai Lue0da3362008-06-08 18:29:22 -07001282 if (apicid > max_physical_apicid)
1283 max_physical_apicid = apicid;
1284
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001285 /* are we being called early in kernel startup? */
Mike Travis23ca4bb2008-05-12 21:21:12 +02001286 if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1287 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1288 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Alexey Starikovskiybe8a5682008-03-27 23:56:19 +03001289
1290 cpu_to_apicid[cpu] = apicid;
1291 bios_cpu_apicid[cpu] = apicid;
1292 } else {
1293 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1294 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1295 }
1296
1297 cpu_set(cpu, cpu_possible_map);
1298 cpu_set(cpu, cpu_present_map);
1299}
1300
Suresh Siddha0c81c742008-07-10 11:16:48 -07001301int hard_smp_processor_id(void)
1302{
1303 return read_apic_id();
1304}
1305
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001306/*
1307 * Power management
1308 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309#ifdef CONFIG_PM
1310
1311static struct {
1312 /* 'active' is true if the local APIC was enabled by us and
1313 not the BIOS; this signifies that we are also responsible
1314 for disabling it before entering apm/acpi suspend */
1315 int active;
1316 /* r/w apic fields */
1317 unsigned int apic_id;
1318 unsigned int apic_taskpri;
1319 unsigned int apic_ldr;
1320 unsigned int apic_dfr;
1321 unsigned int apic_spiv;
1322 unsigned int apic_lvtt;
1323 unsigned int apic_lvtpc;
1324 unsigned int apic_lvt0;
1325 unsigned int apic_lvt1;
1326 unsigned int apic_lvterr;
1327 unsigned int apic_tmict;
1328 unsigned int apic_tdcr;
1329 unsigned int apic_thmr;
1330} apic_pm_state;
1331
Pavel Machek0b9c33a2005-04-16 15:25:31 -07001332static int lapic_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001335 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 if (!apic_pm_state.active)
1338 return 0;
1339
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001340 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001341
Suresh Siddha2d7a66d2008-07-11 14:24:19 -07001342 apic_pm_state.apic_id = apic_read(APIC_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1344 apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1345 apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1346 apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1347 apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001348 if (maxlvt >= 4)
1349 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1351 apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1352 apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1353 apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1354 apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001355#ifdef CONFIG_X86_MCE_INTEL
1356 if (maxlvt >= 5)
1357 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1358#endif
Fernando Luis Vázquez Cao2b94ab22006-09-26 10:52:33 +02001359 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 disable_local_APIC();
1361 local_irq_restore(flags);
1362 return 0;
1363}
1364
1365static int lapic_resume(struct sys_device *dev)
1366{
1367 unsigned int l, h;
1368 unsigned long flags;
Karsten Wiesef990fff2006-12-07 02:14:11 +01001369 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 if (!apic_pm_state.active)
1372 return 0;
1373
Thomas Gleixner37e650c2008-01-30 13:30:14 +01001374 maxlvt = lapic_get_maxlvt();
Karsten Wiesef990fff2006-12-07 02:14:11 +01001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 local_irq_save(flags);
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001377 if (!x2apic) {
1378 rdmsr(MSR_IA32_APICBASE, l, h);
1379 l &= ~MSR_IA32_APICBASE_BASE;
1380 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1381 wrmsr(MSR_IA32_APICBASE, l, h);
1382 } else
1383 enable_x2apic();
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1386 apic_write(APIC_ID, apic_pm_state.apic_id);
1387 apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1388 apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1389 apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1390 apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1391 apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1392 apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
Karsten Wiesef990fff2006-12-07 02:14:11 +01001393#ifdef CONFIG_X86_MCE_INTEL
1394 if (maxlvt >= 5)
1395 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1396#endif
1397 if (maxlvt >= 4)
1398 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1400 apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1401 apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1402 apic_write(APIC_ESR, 0);
1403 apic_read(APIC_ESR);
1404 apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1405 apic_write(APIC_ESR, 0);
1406 apic_read(APIC_ESR);
1407 local_irq_restore(flags);
1408 return 0;
1409}
1410
1411static struct sysdev_class lapic_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001412 .name = "lapic",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 .resume = lapic_resume,
1414 .suspend = lapic_suspend,
1415};
1416
1417static struct sys_device device_lapic = {
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001418 .id = 0,
1419 .cls = &lapic_sysclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420};
1421
Ashok Raje6982c62005-06-25 14:54:58 -07001422static void __cpuinit apic_pm_activate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 apic_pm_state.active = 1;
1425}
1426
1427static int __init init_lapic_sysfs(void)
1428{
1429 int error;
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (!cpu_has_apic)
1432 return 0;
1433 /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
Hiroshi Shimamotoe83a5fd2008-01-30 13:32:35 +01001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 error = sysdev_class_register(&lapic_sysclass);
1436 if (!error)
1437 error = sysdev_register(&device_lapic);
1438 return error;
1439}
1440device_initcall(init_lapic_sysfs);
1441
1442#else /* CONFIG_PM */
1443
1444static void apic_pm_activate(void) { }
1445
1446#endif /* CONFIG_PM */
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448/*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001449 * apic_is_clustered_box() -- Check if we can expect good TSC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 *
1451 * Thus far, the major user of this is IBM's Summit2 series:
1452 *
Linus Torvalds637029c2006-02-27 20:41:56 -08001453 * Clustered boxes may have unsynced TSC problems if they are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 * multi-chassis. Use available data to take a good guess.
1455 * If in doubt, go HPET.
1456 */
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001457__cpuinit int apic_is_clustered_box(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 int i, clusters, zeros;
1460 unsigned id;
Yinghai Lu322850a2008-02-23 21:48:42 -08001461 u16 *bios_cpu_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
1463
Yinghai Lu322850a2008-02-23 21:48:42 -08001464 /*
1465 * there is not this kind of box with AMD CPU yet.
1466 * Some AMD box with quadcore cpu and 8 sockets apicid
1467 * will be [4, 0x23] or [8, 0x27] could be thought to
Yinghai Luf8fffa42008-02-24 21:36:28 -08001468 * vsmp box still need checking...
Yinghai Lu322850a2008-02-23 21:48:42 -08001469 */
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001470 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
Yinghai Lu322850a2008-02-23 21:48:42 -08001471 return 0;
1472
Mike Travis23ca4bb2008-05-12 21:21:12 +02001473 bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
Suresh Siddha376ec332005-05-16 21:53:32 -07001474 bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001477 /* are we being called early in kernel startup? */
Mike Travis693e3c52008-01-30 13:33:14 +01001478 if (bios_cpu_apicid) {
1479 id = bios_cpu_apicid[i];
travis@sgi.come8c10ef2008-01-30 13:33:12 +01001480 }
1481 else if (i < nr_cpu_ids) {
1482 if (cpu_present(i))
1483 id = per_cpu(x86_bios_cpu_apicid, i);
1484 else
1485 continue;
1486 }
1487 else
1488 break;
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (id != BAD_APICID)
1491 __set_bit(APIC_CLUSTERID(id), clustermap);
1492 }
1493
1494 /* Problem: Partially populated chassis may not have CPUs in some of
1495 * the APIC clusters they have been allocated. Only present CPUs have
travis@sgi.com602a54a2008-01-30 13:33:21 +01001496 * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
1497 * Since clusters are allocated sequentially, count zeros only if
1498 * they are bounded by ones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 */
1500 clusters = 0;
1501 zeros = 0;
1502 for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
1503 if (test_bit(i, clustermap)) {
1504 clusters += 1 + zeros;
1505 zeros = 0;
1506 } else
1507 ++zeros;
1508 }
1509
Ravikiran G Thirumalai1cb68482008-03-20 00:45:08 -07001510 /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
1511 * not guaranteed to be synced between boards
1512 */
1513 if (is_vsmp_box() && clusters > 1)
1514 return 1;
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 /*
Vojtech Pavlikf8bf3c62006-06-26 13:58:23 +02001517 * If clusters > 2, then should be multi-chassis.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 * May have to revisit this when multi-core + hyperthreaded CPUs come
1519 * out, but AFAIK this will work even for them.
1520 */
1521 return (clusters > 2);
1522}
1523
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001524static __init int setup_nox2apic(char *str)
1525{
1526 disable_x2apic = 1;
1527 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_X2APIC);
1528 return 0;
1529}
1530early_param("nox2apic", setup_nox2apic);
1531
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533/*
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001534 * APIC command line parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001536static int __init apic_set_verbosity(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001538 if (str == NULL) {
1539 skip_ioapic_setup = 0;
1540 ioapic_force = 1;
1541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 }
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001543 if (strcmp("debug", str) == 0)
1544 apic_verbosity = APIC_DEBUG;
1545 else if (strcmp("verbose", str) == 0)
1546 apic_verbosity = APIC_VERBOSE;
1547 else {
1548 printk(KERN_WARNING "APIC Verbosity level %s not recognised"
1549 " use apic=verbose or apic=debug\n", str);
1550 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return 0;
1554}
Thomas Gleixner0e078e22008-01-30 13:30:20 +01001555early_param("apic", apic_set_verbosity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001557static __init int setup_disableapic(char *str)
1558{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 disable_apic = 1;
Yinghai Lu9175fc02008-07-21 01:38:14 -07001560 setup_clear_cpu_cap(X86_FEATURE_APIC);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001561 return 0;
1562}
1563early_param("disableapic", setup_disableapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001565/* same as disableapic, for compatibility */
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001566static __init int setup_nolapic(char *str)
1567{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001568 return setup_disableapic(str);
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001569}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001570early_param("nolapic", setup_nolapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Linus Torvalds2e7c2832007-03-23 11:32:31 -07001572static int __init parse_lapic_timer_c2_ok(char *arg)
1573{
1574 local_apic_timer_c2_ok = 1;
1575 return 0;
1576}
1577early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1578
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001579static __init int setup_noapictimer(char *str)
1580{
Andi Kleen73dea472006-02-03 21:50:50 +01001581 if (str[0] != ' ' && str[0] != 0)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 disable_apic_timer = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001584 return 1;
Thomas Gleixner6935d1f2007-07-21 17:10:17 +02001585}
Thomas Gleixner9f75e9b2007-10-12 23:04:23 +02001586__setup("noapictimer", setup_noapictimer);
Andi Kleen73dea472006-02-03 21:50:50 +01001587
Andi Kleen0c3749c2006-02-03 21:51:41 +01001588static __init int setup_apicpmtimer(char *s)
1589{
1590 apic_calibrate_pmtmr = 1;
Andi Kleen7fd67842006-02-16 23:42:07 +01001591 notsc_setup(NULL);
Thomas Gleixnerb8ce3352007-10-12 23:04:07 +02001592 return 0;
Andi Kleen0c3749c2006-02-03 21:51:41 +01001593}
1594__setup("apicpmtimer", setup_apicpmtimer);
1595
Yinghai Lu1e934dd2008-02-22 13:37:26 -08001596static int __init lapic_insert_resource(void)
1597{
1598 if (!apic_phys)
1599 return -1;
1600
1601 /* Put local APIC into the resource map. */
1602 lapic_resource.start = apic_phys;
1603 lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1604 insert_resource(&iomem_resource, &lapic_resource);
1605
1606 return 0;
1607}
1608
1609/*
1610 * need call insert after e820_reserve_resources()
1611 * that is using request_resource
1612 */
1613late_initcall(lapic_insert_resource);