]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/kernel/apic_32.c
6d230e9d0a7dcb5f23f5be9426c16558f0861981
[linux-2.6-omap-h63xx.git] / arch / x86 / kernel / apic_32.c
1 /*
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
17 #include <linux/init.h>
18
19 #include <linux/mm.h>
20 #include <linux/delay.h>
21 #include <linux/bootmem.h>
22 #include <linux/interrupt.h>
23 #include <linux/mc146818rtc.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/sysdev.h>
26 #include <linux/cpu.h>
27 #include <linux/clockchips.h>
28 #include <linux/acpi_pmtmr.h>
29 #include <linux/module.h>
30 #include <linux/dmi.h>
31
32 #include <asm/atomic.h>
33 #include <asm/smp.h>
34 #include <asm/mtrr.h>
35 #include <asm/mpspec.h>
36 #include <asm/desc.h>
37 #include <asm/arch_hooks.h>
38 #include <asm/hpet.h>
39 #include <asm/i8253.h>
40 #include <asm/nmi.h>
41
42 #include <mach_apic.h>
43 #include <mach_apicdef.h>
44 #include <mach_ipi.h>
45
46 /*
47  * Sanity check
48  */
49 #if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
50 # error SPURIOUS_APIC_VECTOR definition error
51 #endif
52
53 unsigned long mp_lapic_addr;
54
55 /*
56  * Knob to control our willingness to enable the local APIC.
57  *
58  * +1=force-enable
59  */
60 static int force_enable_local_apic;
61 int disable_apic;
62
63 /* Disable local APIC timer from the kernel commandline or via dmi quirk */
64 static int disable_apic_timer __cpuinitdata;
65 /* Local APIC timer works in C2 */
66 int local_apic_timer_c2_ok;
67 EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
68
69 int first_system_vector = 0xfe;
70
71 char system_vectors[NR_VECTORS] = { [0 ... NR_VECTORS-1] = SYS_VECTOR_FREE};
72
73 /*
74  * Debug level, exported for io_apic.c
75  */
76 unsigned int apic_verbosity;
77
78 int pic_mode;
79
80 /* Have we found an MP table */
81 int smp_found_config;
82
83 static struct resource lapic_resource = {
84         .name = "Local APIC",
85         .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
86 };
87
88 static unsigned int calibration_result;
89
90 static int lapic_next_event(unsigned long delta,
91                             struct clock_event_device *evt);
92 static void lapic_timer_setup(enum clock_event_mode mode,
93                               struct clock_event_device *evt);
94 static void lapic_timer_broadcast(cpumask_t mask);
95 static void apic_pm_activate(void);
96
97 /*
98  * The local apic timer can be used for any function which is CPU local.
99  */
100 static struct clock_event_device lapic_clockevent = {
101         .name           = "lapic",
102         .features       = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT
103                         | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY,
104         .shift          = 32,
105         .set_mode       = lapic_timer_setup,
106         .set_next_event = lapic_next_event,
107         .broadcast      = lapic_timer_broadcast,
108         .rating         = 100,
109         .irq            = -1,
110 };
111 static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
112
113 /* Local APIC was disabled by the BIOS and enabled by the kernel */
114 static int enabled_via_apicbase;
115
116 static unsigned long apic_phys;
117 unsigned int __cpuinitdata maxcpus = NR_CPUS;
118
119
120 /*
121  * Get the LAPIC version
122  */
123 static inline int lapic_get_version(void)
124 {
125         return GET_APIC_VERSION(apic_read(APIC_LVR));
126 }
127
128 /*
129  * Check, if the APIC is integrated or a separate chip
130  */
131 static inline int lapic_is_integrated(void)
132 {
133 #ifdef CONFIG_X86_64
134         return 1;
135 #else
136         return APIC_INTEGRATED(lapic_get_version());
137 #endif
138 }
139
140 /*
141  * Check, whether this is a modern or a first generation APIC
142  */
143 static int modern_apic(void)
144 {
145         /* AMD systems use old APIC versions, so check the CPU */
146         if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
147             boot_cpu_data.x86 >= 0xf)
148                 return 1;
149         return lapic_get_version() >= 0x14;
150 }
151
152 /*
153  * Paravirt kernels also might be using these below ops. So we still
154  * use generic apic_read()/apic_write(), which might be pointing to different
155  * ops in PARAVIRT case.
156  */
157 void xapic_wait_icr_idle(void)
158 {
159         while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
160                 cpu_relax();
161 }
162
163 u32 safe_xapic_wait_icr_idle(void)
164 {
165         u32 send_status;
166         int timeout;
167
168         timeout = 0;
169         do {
170                 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
171                 if (!send_status)
172                         break;
173                 udelay(100);
174         } while (timeout++ < 1000);
175
176         return send_status;
177 }
178
179 void xapic_icr_write(u32 low, u32 id)
180 {
181         apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
182         apic_write(APIC_ICR, low);
183 }
184
185 u64 xapic_icr_read(void)
186 {
187         u32 icr1, icr2;
188
189         icr2 = apic_read(APIC_ICR2);
190         icr1 = apic_read(APIC_ICR);
191
192         return icr1 | ((u64)icr2 << 32);
193 }
194
195 static struct apic_ops xapic_ops = {
196         .read = native_apic_mem_read,
197         .write = native_apic_mem_write,
198         .icr_read = xapic_icr_read,
199         .icr_write = xapic_icr_write,
200         .wait_icr_idle = xapic_wait_icr_idle,
201         .safe_wait_icr_idle = safe_xapic_wait_icr_idle,
202 };
203
204 struct apic_ops __read_mostly *apic_ops = &xapic_ops;
205 EXPORT_SYMBOL_GPL(apic_ops);
206
207 /**
208  * enable_NMI_through_LVT0 - enable NMI through local vector table 0
209  */
210 void __cpuinit enable_NMI_through_LVT0(void)
211 {
212         unsigned int v;
213
214         /* unmask and set to NMI */
215         v = APIC_DM_NMI;
216
217         /* Level triggered for 82489DX (32bit mode) */
218         if (!lapic_is_integrated())
219                 v |= APIC_LVT_LEVEL_TRIGGER;
220
221         apic_write(APIC_LVT0, v);
222 }
223
224 /**
225  * get_physical_broadcast - Get number of physical broadcast IDs
226  */
227 int get_physical_broadcast(void)
228 {
229         return modern_apic() ? 0xff : 0xf;
230 }
231
232 /**
233  * lapic_get_maxlvt - get the maximum number of local vector table entries
234  */
235 int lapic_get_maxlvt(void)
236 {
237         unsigned int v;
238
239         v = apic_read(APIC_LVR);
240         /*
241          * - we always have APIC integrated on 64bit mode
242          * - 82489DXs do not report # of LVT entries
243          */
244         return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
245 }
246
247 /*
248  * Local APIC timer
249  */
250
251 /* Clock divisor is set to 16 */
252 #define APIC_DIVISOR 16
253
254 /*
255  * This function sets up the local APIC timer, with a timeout of
256  * 'clocks' APIC bus clock. During calibration we actually call
257  * this function twice on the boot CPU, once with a bogus timeout
258  * value, second time for real. The other (noncalibrating) CPUs
259  * call this function only once, with the real, calibrated value.
260  *
261  * We do reads before writes even if unnecessary, to get around the
262  * P5 APIC double write bug.
263  */
264 static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
265 {
266         unsigned int lvtt_value, tmp_value;
267
268         lvtt_value = LOCAL_TIMER_VECTOR;
269         if (!oneshot)
270                 lvtt_value |= APIC_LVT_TIMER_PERIODIC;
271         if (!lapic_is_integrated())
272                 lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
273
274         if (!irqen)
275                 lvtt_value |= APIC_LVT_MASKED;
276
277         apic_write(APIC_LVTT, lvtt_value);
278
279         /*
280          * Divide PICLK by 16
281          */
282         tmp_value = apic_read(APIC_TDCR);
283         apic_write(APIC_TDCR,
284                    (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
285                    APIC_TDR_DIV_16);
286
287         if (!oneshot)
288                 apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
289 }
290
291 /*
292  * Setup extended LVT, AMD specific (K8, family 10h)
293  *
294  * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and
295  * MCE interrupts are supported. Thus MCE offset must be set to 0.
296  */
297
298 #define APIC_EILVT_LVTOFF_MCE 0
299 #define APIC_EILVT_LVTOFF_IBS 1
300
301 static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask)
302 {
303         unsigned long reg = (lvt_off << 4) + APIC_EILVT0;
304         unsigned int  v   = (mask << 16) | (msg_type << 8) | vector;
305
306         apic_write(reg, v);
307 }
308
309 u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask)
310 {
311         setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask);
312         return APIC_EILVT_LVTOFF_MCE;
313 }
314
315 u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask)
316 {
317         setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask);
318         return APIC_EILVT_LVTOFF_IBS;
319 }
320
321 /*
322  * Program the next event, relative to now
323  */
324 static int lapic_next_event(unsigned long delta,
325                             struct clock_event_device *evt)
326 {
327         apic_write(APIC_TMICT, delta);
328         return 0;
329 }
330
331 /*
332  * Setup the lapic timer in periodic or oneshot mode
333  */
334 static void lapic_timer_setup(enum clock_event_mode mode,
335                               struct clock_event_device *evt)
336 {
337         unsigned long flags;
338         unsigned int v;
339
340         /* Lapic used as dummy for broadcast ? */
341         if (evt->features & CLOCK_EVT_FEAT_DUMMY)
342                 return;
343
344         local_irq_save(flags);
345
346         switch (mode) {
347         case CLOCK_EVT_MODE_PERIODIC:
348         case CLOCK_EVT_MODE_ONESHOT:
349                 __setup_APIC_LVTT(calibration_result,
350                                   mode != CLOCK_EVT_MODE_PERIODIC, 1);
351                 break;
352         case CLOCK_EVT_MODE_UNUSED:
353         case CLOCK_EVT_MODE_SHUTDOWN:
354                 v = apic_read(APIC_LVTT);
355                 v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
356                 apic_write(APIC_LVTT, v);
357                 break;
358         case CLOCK_EVT_MODE_RESUME:
359                 /* Nothing to do here */
360                 break;
361         }
362
363         local_irq_restore(flags);
364 }
365
366 /*
367  * Local APIC timer broadcast function
368  */
369 static void lapic_timer_broadcast(cpumask_t mask)
370 {
371 #ifdef CONFIG_SMP
372         send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
373 #endif
374 }
375
376 /*
377  * Setup the local APIC timer for this CPU. Copy the initilized values
378  * of the boot CPU and register the clock event in the framework.
379  */
380 static void __devinit setup_APIC_timer(void)
381 {
382         struct clock_event_device *levt = &__get_cpu_var(lapic_events);
383
384         memcpy(levt, &lapic_clockevent, sizeof(*levt));
385         levt->cpumask = cpumask_of_cpu(smp_processor_id());
386
387         clockevents_register_device(levt);
388 }
389
390 /*
391  * In this functions we calibrate APIC bus clocks to the external timer.
392  *
393  * We want to do the calibration only once since we want to have local timer
394  * irqs syncron. CPUs connected by the same APIC bus have the very same bus
395  * frequency.
396  *
397  * This was previously done by reading the PIT/HPET and waiting for a wrap
398  * around to find out, that a tick has elapsed. I have a box, where the PIT
399  * readout is broken, so it never gets out of the wait loop again. This was
400  * also reported by others.
401  *
402  * Monitoring the jiffies value is inaccurate and the clockevents
403  * infrastructure allows us to do a simple substitution of the interrupt
404  * handler.
405  *
406  * The calibration routine also uses the pm_timer when possible, as the PIT
407  * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
408  * back to normal later in the boot process).
409  */
410
411 #define LAPIC_CAL_LOOPS         (HZ/10)
412
413 static __initdata int lapic_cal_loops = -1;
414 static __initdata long lapic_cal_t1, lapic_cal_t2;
415 static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
416 static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
417 static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
418
419 /*
420  * Temporary interrupt handler.
421  */
422 static void __init lapic_cal_handler(struct clock_event_device *dev)
423 {
424         unsigned long long tsc = 0;
425         long tapic = apic_read(APIC_TMCCT);
426         unsigned long pm = acpi_pm_read_early();
427
428         if (cpu_has_tsc)
429                 rdtscll(tsc);
430
431         switch (lapic_cal_loops++) {
432         case 0:
433                 lapic_cal_t1 = tapic;
434                 lapic_cal_tsc1 = tsc;
435                 lapic_cal_pm1 = pm;
436                 lapic_cal_j1 = jiffies;
437                 break;
438
439         case LAPIC_CAL_LOOPS:
440                 lapic_cal_t2 = tapic;
441                 lapic_cal_tsc2 = tsc;
442                 if (pm < lapic_cal_pm1)
443                         pm += ACPI_PM_OVRRUN;
444                 lapic_cal_pm2 = pm;
445                 lapic_cal_j2 = jiffies;
446                 break;
447         }
448 }
449
450 static int __init calibrate_APIC_clock(void)
451 {
452         struct clock_event_device *levt = &__get_cpu_var(lapic_events);
453         const long pm_100ms = PMTMR_TICKS_PER_SEC/10;
454         const long pm_thresh = pm_100ms/100;
455         void (*real_handler)(struct clock_event_device *dev);
456         unsigned long deltaj;
457         long delta, deltapm;
458         int pm_referenced = 0;
459
460         local_irq_disable();
461
462         /* Replace the global interrupt handler */
463         real_handler = global_clock_event->event_handler;
464         global_clock_event->event_handler = lapic_cal_handler;
465
466         /*
467          * Setup the APIC counter to 1e9. There is no way the lapic
468          * can underflow in the 100ms detection time frame
469          */
470         __setup_APIC_LVTT(1000000000, 0, 0);
471
472         /* Let the interrupts run */
473         local_irq_enable();
474
475         while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
476                 cpu_relax();
477
478         local_irq_disable();
479
480         /* Restore the real event handler */
481         global_clock_event->event_handler = real_handler;
482
483         /* Build delta t1-t2 as apic timer counts down */
484         delta = lapic_cal_t1 - lapic_cal_t2;
485         apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
486
487         /* Check, if the PM timer is available */
488         deltapm = lapic_cal_pm2 - lapic_cal_pm1;
489         apic_printk(APIC_VERBOSE, "... PM timer delta = %ld\n", deltapm);
490
491         if (deltapm) {
492                 unsigned long mult;
493                 u64 res;
494
495                 mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
496
497                 if (deltapm > (pm_100ms - pm_thresh) &&
498                     deltapm < (pm_100ms + pm_thresh)) {
499                         apic_printk(APIC_VERBOSE, "... PM timer result ok\n");
500                 } else {
501                         res = (((u64) deltapm) *  mult) >> 22;
502                         do_div(res, 1000000);
503                         printk(KERN_WARNING "APIC calibration not consistent "
504                                "with PM Timer: %ldms instead of 100ms\n",
505                                (long)res);
506                         /* Correct the lapic counter value */
507                         res = (((u64) delta) * pm_100ms);
508                         do_div(res, deltapm);
509                         printk(KERN_INFO "APIC delta adjusted to PM-Timer: "
510                                "%lu (%ld)\n", (unsigned long) res, delta);
511                         delta = (long) res;
512                 }
513                 pm_referenced = 1;
514         }
515
516         /* Calculate the scaled math multiplication factor */
517         lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
518                                        lapic_clockevent.shift);
519         lapic_clockevent.max_delta_ns =
520                 clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
521         lapic_clockevent.min_delta_ns =
522                 clockevent_delta2ns(0xF, &lapic_clockevent);
523
524         calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
525
526         apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
527         apic_printk(APIC_VERBOSE, "..... mult: %ld\n", lapic_clockevent.mult);
528         apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
529                     calibration_result);
530
531         if (cpu_has_tsc) {
532                 delta = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
533                 apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
534                             "%ld.%04ld MHz.\n",
535                             (delta / LAPIC_CAL_LOOPS) / (1000000 / HZ),
536                             (delta / LAPIC_CAL_LOOPS) % (1000000 / HZ));
537         }
538
539         apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
540                     "%u.%04u MHz.\n",
541                     calibration_result / (1000000 / HZ),
542                     calibration_result % (1000000 / HZ));
543
544         /*
545          * Do a sanity check on the APIC calibration result
546          */
547         if (calibration_result < (1000000 / HZ)) {
548                 local_irq_enable();
549                 printk(KERN_WARNING
550                        "APIC frequency too slow, disabling apic timer\n");
551                 return -1;
552         }
553
554         levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
555
556         /* We trust the pm timer based calibration */
557         if (!pm_referenced) {
558                 apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
559
560                 /*
561                  * Setup the apic timer manually
562                  */
563                 levt->event_handler = lapic_cal_handler;
564                 lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt);
565                 lapic_cal_loops = -1;
566
567                 /* Let the interrupts run */
568                 local_irq_enable();
569
570                 while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
571                         cpu_relax();
572
573                 local_irq_disable();
574
575                 /* Stop the lapic timer */
576                 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt);
577
578                 local_irq_enable();
579
580                 /* Jiffies delta */
581                 deltaj = lapic_cal_j2 - lapic_cal_j1;
582                 apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
583
584                 /* Check, if the jiffies result is consistent */
585                 if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
586                         apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
587                 else
588                         levt->features |= CLOCK_EVT_FEAT_DUMMY;
589         } else
590                 local_irq_enable();
591
592         if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
593                 printk(KERN_WARNING
594                        "APIC timer disabled due to verification failure.\n");
595                         return -1;
596         }
597
598         return 0;
599 }
600
601 /*
602  * Setup the boot APIC
603  *
604  * Calibrate and verify the result.
605  */
606 void __init setup_boot_APIC_clock(void)
607 {
608         /*
609          * The local apic timer can be disabled via the kernel
610          * commandline or from the CPU detection code. Register the lapic
611          * timer as a dummy clock event source on SMP systems, so the
612          * broadcast mechanism is used. On UP systems simply ignore it.
613          */
614         if (disable_apic_timer) {
615                 printk(KERN_INFO "Disabling APIC timer\n");
616                 /* No broadcast on UP ! */
617                 if (num_possible_cpus() > 1) {
618                         lapic_clockevent.mult = 1;
619                         setup_APIC_timer();
620                 }
621                 return;
622         }
623
624         apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
625                     "calibrating APIC timer ...\n");
626
627         if (calibrate_APIC_clock()) {
628                 /* No broadcast on UP ! */
629                 if (num_possible_cpus() > 1)
630                         setup_APIC_timer();
631                 return;
632         }
633
634         /*
635          * If nmi_watchdog is set to IO_APIC, we need the
636          * PIT/HPET going.  Otherwise register lapic as a dummy
637          * device.
638          */
639         if (nmi_watchdog != NMI_IO_APIC)
640                 lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
641         else
642                 printk(KERN_WARNING "APIC timer registered as dummy,"
643                         " due to nmi_watchdog=%d!\n", nmi_watchdog);
644
645         /* Setup the lapic or request the broadcast */
646         setup_APIC_timer();
647 }
648
649 void __devinit setup_secondary_APIC_clock(void)
650 {
651         setup_APIC_timer();
652 }
653
654 /*
655  * The guts of the apic timer interrupt
656  */
657 static void local_apic_timer_interrupt(void)
658 {
659         int cpu = smp_processor_id();
660         struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
661
662         /*
663          * Normally we should not be here till LAPIC has been initialized but
664          * in some cases like kdump, its possible that there is a pending LAPIC
665          * timer interrupt from previous kernel's context and is delivered in
666          * new kernel the moment interrupts are enabled.
667          *
668          * Interrupts are enabled early and LAPIC is setup much later, hence
669          * its possible that when we get here evt->event_handler is NULL.
670          * Check for event_handler being NULL and discard the interrupt as
671          * spurious.
672          */
673         if (!evt->event_handler) {
674                 printk(KERN_WARNING
675                        "Spurious LAPIC timer interrupt on cpu %d\n", cpu);
676                 /* Switch it off */
677                 lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt);
678                 return;
679         }
680
681         /*
682          * the NMI deadlock-detector uses this.
683          */
684         per_cpu(irq_stat, cpu).apic_timer_irqs++;
685
686         evt->event_handler(evt);
687 }
688
689 /*
690  * Local APIC timer interrupt. This is the most natural way for doing
691  * local interrupts, but local timer interrupts can be emulated by
692  * broadcast interrupts too. [in case the hw doesn't support APIC timers]
693  *
694  * [ if a single-CPU system runs an SMP kernel then we call the local
695  *   interrupt as well. Thus we cannot inline the local irq ... ]
696  */
697 void smp_apic_timer_interrupt(struct pt_regs *regs)
698 {
699         struct pt_regs *old_regs = set_irq_regs(regs);
700
701         /*
702          * NOTE! We'd better ACK the irq immediately,
703          * because timer handling can be slow.
704          */
705         ack_APIC_irq();
706         /*
707          * update_process_times() expects us to have done irq_enter().
708          * Besides, if we don't timer interrupts ignore the global
709          * interrupt lock, which is the WrongThing (tm) to do.
710          */
711         irq_enter();
712         local_apic_timer_interrupt();
713         irq_exit();
714
715         set_irq_regs(old_regs);
716 }
717
718 int setup_profiling_timer(unsigned int multiplier)
719 {
720         return -EINVAL;
721 }
722
723 /*
724  * Local APIC start and shutdown
725  */
726
727 /**
728  * clear_local_APIC - shutdown the local APIC
729  *
730  * This is called, when a CPU is disabled and before rebooting, so the state of
731  * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
732  * leftovers during boot.
733  */
734 void clear_local_APIC(void)
735 {
736         int maxlvt;
737         u32 v;
738
739         /* APIC hasn't been mapped yet */
740         if (!apic_phys)
741                 return;
742
743         maxlvt = lapic_get_maxlvt();
744         /*
745          * Masking an LVT entry can trigger a local APIC error
746          * if the vector is zero. Mask LVTERR first to prevent this.
747          */
748         if (maxlvt >= 3) {
749                 v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
750                 apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
751         }
752         /*
753          * Careful: we have to set masks only first to deassert
754          * any level-triggered sources.
755          */
756         v = apic_read(APIC_LVTT);
757         apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
758         v = apic_read(APIC_LVT0);
759         apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
760         v = apic_read(APIC_LVT1);
761         apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
762         if (maxlvt >= 4) {
763                 v = apic_read(APIC_LVTPC);
764                 apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
765         }
766
767         /* lets not touch this if we didn't frob it */
768 #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
769         if (maxlvt >= 5) {
770                 v = apic_read(APIC_LVTTHMR);
771                 apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
772         }
773 #endif
774         /*
775          * Clean APIC state for other OSs:
776          */
777         apic_write(APIC_LVTT, APIC_LVT_MASKED);
778         apic_write(APIC_LVT0, APIC_LVT_MASKED);
779         apic_write(APIC_LVT1, APIC_LVT_MASKED);
780         if (maxlvt >= 3)
781                 apic_write(APIC_LVTERR, APIC_LVT_MASKED);
782         if (maxlvt >= 4)
783                 apic_write(APIC_LVTPC, APIC_LVT_MASKED);
784
785         /* Integrated APIC (!82489DX) ? */
786         if (lapic_is_integrated()) {
787                 if (maxlvt > 3)
788                         /* Clear ESR due to Pentium errata 3AP and 11AP */
789                         apic_write(APIC_ESR, 0);
790                 apic_read(APIC_ESR);
791         }
792 }
793
794 /**
795  * disable_local_APIC - clear and disable the local APIC
796  */
797 void disable_local_APIC(void)
798 {
799         unsigned int value;
800
801         clear_local_APIC();
802
803         /*
804          * Disable APIC (implies clearing of registers
805          * for 82489DX!).
806          */
807         value = apic_read(APIC_SPIV);
808         value &= ~APIC_SPIV_APIC_ENABLED;
809         apic_write(APIC_SPIV, value);
810
811 #ifdef CONFIG_X86_32
812         /*
813          * When LAPIC was disabled by the BIOS and enabled by the kernel,
814          * restore the disabled state.
815          */
816         if (enabled_via_apicbase) {
817                 unsigned int l, h;
818
819                 rdmsr(MSR_IA32_APICBASE, l, h);
820                 l &= ~MSR_IA32_APICBASE_ENABLE;
821                 wrmsr(MSR_IA32_APICBASE, l, h);
822         }
823 #endif
824 }
825
826 /*
827  * If Linux enabled the LAPIC against the BIOS default disable it down before
828  * re-entering the BIOS on shutdown.  Otherwise the BIOS may get confused and
829  * not power-off.  Additionally clear all LVT entries before disable_local_APIC
830  * for the case where Linux didn't enable the LAPIC.
831  */
832 void lapic_shutdown(void)
833 {
834         unsigned long flags;
835
836         if (!cpu_has_apic)
837                 return;
838
839         local_irq_save(flags);
840
841 #ifdef CONFIG_X86_32
842         if (!enabled_via_apicbase)
843                 clear_local_APIC();
844         else
845 #endif
846                 disable_local_APIC();
847
848
849         local_irq_restore(flags);
850 }
851
852 /*
853  * This is to verify that we're looking at a real local APIC.
854  * Check these against your board if the CPUs aren't getting
855  * started for no apparent reason.
856  */
857 int __init verify_local_APIC(void)
858 {
859         unsigned int reg0, reg1;
860
861         /*
862          * The version register is read-only in a real APIC.
863          */
864         reg0 = apic_read(APIC_LVR);
865         apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
866         apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
867         reg1 = apic_read(APIC_LVR);
868         apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
869
870         /*
871          * The two version reads above should print the same
872          * numbers.  If the second one is different, then we
873          * poke at a non-APIC.
874          */
875         if (reg1 != reg0)
876                 return 0;
877
878         /*
879          * Check if the version looks reasonably.
880          */
881         reg1 = GET_APIC_VERSION(reg0);
882         if (reg1 == 0x00 || reg1 == 0xff)
883                 return 0;
884         reg1 = lapic_get_maxlvt();
885         if (reg1 < 0x02 || reg1 == 0xff)
886                 return 0;
887
888         /*
889          * The ID register is read/write in a real APIC.
890          */
891         reg0 = apic_read(APIC_ID);
892         apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
893         apic_write(APIC_ID, reg0 ^ APIC_ID_MASK);
894         reg1 = apic_read(APIC_ID);
895         apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
896         apic_write(APIC_ID, reg0);
897         if (reg1 != (reg0 ^ APIC_ID_MASK))
898                 return 0;
899
900         /*
901          * The next two are just to see if we have sane values.
902          * They're only really relevant if we're in Virtual Wire
903          * compatibility mode, but most boxes are anymore.
904          */
905         reg0 = apic_read(APIC_LVT0);
906         apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
907         reg1 = apic_read(APIC_LVT1);
908         apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
909
910         return 1;
911 }
912
913 /**
914  * sync_Arb_IDs - synchronize APIC bus arbitration IDs
915  */
916 void __init sync_Arb_IDs(void)
917 {
918         /*
919          * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
920          * needed on AMD.
921          */
922         if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
923                 return;
924
925         /*
926          * Wait for idle.
927          */
928         apic_wait_icr_idle();
929
930         apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
931         apic_write(APIC_ICR, APIC_DEST_ALLINC |
932                         APIC_INT_LEVELTRIG | APIC_DM_INIT);
933 }
934
935 /*
936  * An initial setup of the virtual wire mode.
937  */
938 void __init init_bsp_APIC(void)
939 {
940         unsigned int value;
941
942         /*
943          * Don't do the setup now if we have a SMP BIOS as the
944          * through-I/O-APIC virtual wire mode might be active.
945          */
946         if (smp_found_config || !cpu_has_apic)
947                 return;
948
949         /*
950          * Do not trust the local APIC being empty at bootup.
951          */
952         clear_local_APIC();
953
954         /*
955          * Enable APIC.
956          */
957         value = apic_read(APIC_SPIV);
958         value &= ~APIC_VECTOR_MASK;
959         value |= APIC_SPIV_APIC_ENABLED;
960
961 #ifdef CONFIG_X86_32
962         /* This bit is reserved on P4/Xeon and should be cleared */
963         if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
964             (boot_cpu_data.x86 == 15))
965                 value &= ~APIC_SPIV_FOCUS_DISABLED;
966         else
967 #endif
968                 value |= APIC_SPIV_FOCUS_DISABLED;
969         value |= SPURIOUS_APIC_VECTOR;
970         apic_write(APIC_SPIV, value);
971
972         /*
973          * Set up the virtual wire mode.
974          */
975         apic_write(APIC_LVT0, APIC_DM_EXTINT);
976         value = APIC_DM_NMI;
977         if (!lapic_is_integrated())             /* 82489DX */
978                 value |= APIC_LVT_LEVEL_TRIGGER;
979         apic_write(APIC_LVT1, value);
980 }
981
982 static void __cpuinit lapic_setup_esr(void)
983 {
984         unsigned long oldvalue, value, maxlvt;
985         if (lapic_is_integrated() && !esr_disable) {
986                 /* !82489DX */
987                 maxlvt = lapic_get_maxlvt();
988                 if (maxlvt > 3)         /* Due to the Pentium erratum 3AP. */
989                         apic_write(APIC_ESR, 0);
990                 oldvalue = apic_read(APIC_ESR);
991
992                 /* enables sending errors */
993                 value = ERROR_APIC_VECTOR;
994                 apic_write(APIC_LVTERR, value);
995                 /*
996                  * spec says clear errors after enabling vector.
997                  */
998                 if (maxlvt > 3)
999                         apic_write(APIC_ESR, 0);
1000                 value = apic_read(APIC_ESR);
1001                 if (value != oldvalue)
1002                         apic_printk(APIC_VERBOSE, "ESR value before enabling "
1003                                 "vector: 0x%08lx  after: 0x%08lx\n",
1004                                 oldvalue, value);
1005         } else {
1006                 if (esr_disable)
1007                         /*
1008                          * Something untraceable is creating bad interrupts on
1009                          * secondary quads ... for the moment, just leave the
1010                          * ESR disabled - we can't do anything useful with the
1011                          * errors anyway - mbligh
1012                          */
1013                         printk(KERN_INFO "Leaving ESR disabled.\n");
1014                 else
1015                         printk(KERN_INFO "No ESR for 82489DX.\n");
1016         }
1017 }
1018
1019
1020 /**
1021  * setup_local_APIC - setup the local APIC
1022  */
1023 void __cpuinit setup_local_APIC(void)
1024 {
1025         unsigned long value, integrated;
1026         int i, j;
1027
1028         /* Pound the ESR really hard over the head with a big hammer - mbligh */
1029         if (esr_disable) {
1030                 apic_write(APIC_ESR, 0);
1031                 apic_write(APIC_ESR, 0);
1032                 apic_write(APIC_ESR, 0);
1033                 apic_write(APIC_ESR, 0);
1034         }
1035
1036         integrated = lapic_is_integrated();
1037
1038         /*
1039          * Double-check whether this APIC is really registered.
1040          */
1041         if (!apic_id_registered())
1042                 WARN_ON_ONCE(1);
1043
1044         /*
1045          * Intel recommends to set DFR, LDR and TPR before enabling
1046          * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
1047          * document number 292116).  So here it goes...
1048          */
1049         init_apic_ldr();
1050
1051         /*
1052          * Set Task Priority to 'accept all'. We never change this
1053          * later on.
1054          */
1055         value = apic_read(APIC_TASKPRI);
1056         value &= ~APIC_TPRI_MASK;
1057         apic_write(APIC_TASKPRI, value);
1058
1059         /*
1060          * After a crash, we no longer service the interrupts and a pending
1061          * interrupt from previous kernel might still have ISR bit set.
1062          *
1063          * Most probably by now CPU has serviced that pending interrupt and
1064          * it might not have done the ack_APIC_irq() because it thought,
1065          * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
1066          * does not clear the ISR bit and cpu thinks it has already serivced
1067          * the interrupt. Hence a vector might get locked. It was noticed
1068          * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
1069          */
1070         for (i = APIC_ISR_NR - 1; i >= 0; i--) {
1071                 value = apic_read(APIC_ISR + i*0x10);
1072                 for (j = 31; j >= 0; j--) {
1073                         if (value & (1<<j))
1074                                 ack_APIC_irq();
1075                 }
1076         }
1077
1078         /*
1079          * Now that we are all set up, enable the APIC
1080          */
1081         value = apic_read(APIC_SPIV);
1082         value &= ~APIC_VECTOR_MASK;
1083         /*
1084          * Enable APIC
1085          */
1086         value |= APIC_SPIV_APIC_ENABLED;
1087
1088         /*
1089          * Some unknown Intel IO/APIC (or APIC) errata is biting us with
1090          * certain networking cards. If high frequency interrupts are
1091          * happening on a particular IOAPIC pin, plus the IOAPIC routing
1092          * entry is masked/unmasked at a high rate as well then sooner or
1093          * later IOAPIC line gets 'stuck', no more interrupts are received
1094          * from the device. If focus CPU is disabled then the hang goes
1095          * away, oh well :-(
1096          *
1097          * [ This bug can be reproduced easily with a level-triggered
1098          *   PCI Ne2000 networking cards and PII/PIII processors, dual
1099          *   BX chipset. ]
1100          */
1101         /*
1102          * Actually disabling the focus CPU check just makes the hang less
1103          * frequent as it makes the interrupt distributon model be more
1104          * like LRU than MRU (the short-term load is more even across CPUs).
1105          * See also the comment in end_level_ioapic_irq().  --macro
1106          */
1107
1108         /* Enable focus processor (bit==0) */
1109         value &= ~APIC_SPIV_FOCUS_DISABLED;
1110
1111         /*
1112          * Set spurious IRQ vector
1113          */
1114         value |= SPURIOUS_APIC_VECTOR;
1115         apic_write(APIC_SPIV, value);
1116
1117         /*
1118          * Set up LVT0, LVT1:
1119          *
1120          * set up through-local-APIC on the BP's LINT0. This is not
1121          * strictly necessary in pure symmetric-IO mode, but sometimes
1122          * we delegate interrupts to the 8259A.
1123          */
1124         /*
1125          * TODO: set up through-local-APIC from through-I/O-APIC? --macro
1126          */
1127         value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
1128         if (!smp_processor_id() && (pic_mode || !value)) {
1129                 value = APIC_DM_EXTINT;
1130                 apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
1131                                 smp_processor_id());
1132         } else {
1133                 value = APIC_DM_EXTINT | APIC_LVT_MASKED;
1134                 apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
1135                                 smp_processor_id());
1136         }
1137         apic_write(APIC_LVT0, value);
1138
1139         /*
1140          * only the BP should see the LINT1 NMI signal, obviously.
1141          */
1142         if (!smp_processor_id())
1143                 value = APIC_DM_NMI;
1144         else
1145                 value = APIC_DM_NMI | APIC_LVT_MASKED;
1146         if (!integrated)                /* 82489DX */
1147                 value |= APIC_LVT_LEVEL_TRIGGER;
1148         apic_write(APIC_LVT1, value);
1149 }
1150
1151 void __cpuinit end_local_APIC_setup(void)
1152 {
1153         unsigned long value;
1154
1155         lapic_setup_esr();
1156         /* Disable the local apic timer */
1157         value = apic_read(APIC_LVTT);
1158         value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
1159         apic_write(APIC_LVTT, value);
1160
1161         setup_apic_nmi_watchdog(NULL);
1162         apic_pm_activate();
1163 }
1164
1165 /*
1166  * Detect and initialize APIC
1167  */
1168 static int __init detect_init_APIC(void)
1169 {
1170         u32 h, l, features;
1171
1172         /* Disabled by kernel option? */
1173         if (disable_apic)
1174                 return -1;
1175
1176         switch (boot_cpu_data.x86_vendor) {
1177         case X86_VENDOR_AMD:
1178                 if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
1179                     (boot_cpu_data.x86 == 15))
1180                         break;
1181                 goto no_apic;
1182         case X86_VENDOR_INTEL:
1183                 if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
1184                     (boot_cpu_data.x86 == 5 && cpu_has_apic))
1185                         break;
1186                 goto no_apic;
1187         default:
1188                 goto no_apic;
1189         }
1190
1191         if (!cpu_has_apic) {
1192                 /*
1193                  * Over-ride BIOS and try to enable the local APIC only if
1194                  * "lapic" specified.
1195                  */
1196                 if (!force_enable_local_apic) {
1197                         printk(KERN_INFO "Local APIC disabled by BIOS -- "
1198                                "you can enable it with \"lapic\"\n");
1199                         return -1;
1200                 }
1201                 /*
1202                  * Some BIOSes disable the local APIC in the APIC_BASE
1203                  * MSR. This can only be done in software for Intel P6 or later
1204                  * and AMD K7 (Model > 1) or later.
1205                  */
1206                 rdmsr(MSR_IA32_APICBASE, l, h);
1207                 if (!(l & MSR_IA32_APICBASE_ENABLE)) {
1208                         printk(KERN_INFO
1209                                "Local APIC disabled by BIOS -- reenabling.\n");
1210                         l &= ~MSR_IA32_APICBASE_BASE;
1211                         l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
1212                         wrmsr(MSR_IA32_APICBASE, l, h);
1213                         enabled_via_apicbase = 1;
1214                 }
1215         }
1216         /*
1217          * The APIC feature bit should now be enabled
1218          * in `cpuid'
1219          */
1220         features = cpuid_edx(1);
1221         if (!(features & (1 << X86_FEATURE_APIC))) {
1222                 printk(KERN_WARNING "Could not enable APIC!\n");
1223                 return -1;
1224         }
1225         set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1226         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
1227
1228         /* The BIOS may have set up the APIC at some other address */
1229         rdmsr(MSR_IA32_APICBASE, l, h);
1230         if (l & MSR_IA32_APICBASE_ENABLE)
1231                 mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
1232
1233         printk(KERN_INFO "Found and enabled local APIC!\n");
1234
1235         apic_pm_activate();
1236
1237         return 0;
1238
1239 no_apic:
1240         printk(KERN_INFO "No local APIC present or hardware disabled\n");
1241         return -1;
1242 }
1243
1244 /**
1245  * init_apic_mappings - initialize APIC mappings
1246  */
1247 void __init init_apic_mappings(void)
1248 {
1249         /*
1250          * If no local APIC can be found then set up a fake all
1251          * zeroes page to simulate the local APIC and another
1252          * one for the IO-APIC.
1253          */
1254         if (!smp_found_config && detect_init_APIC()) {
1255                 apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
1256                 apic_phys = __pa(apic_phys);
1257         } else
1258                 apic_phys = mp_lapic_addr;
1259
1260         set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
1261         printk(KERN_DEBUG "mapped APIC to %08lx (%08lx)\n", APIC_BASE,
1262                apic_phys);
1263
1264         /*
1265          * Fetch the APIC ID of the BSP in case we have a
1266          * default configuration (or the MP table is broken).
1267          */
1268         if (boot_cpu_physical_apicid == -1U)
1269                 boot_cpu_physical_apicid = read_apic_id();
1270
1271 }
1272
1273 /*
1274  * This initializes the IO-APIC and APIC hardware if this is
1275  * a UP kernel.
1276  */
1277
1278 int apic_version[MAX_APICS];
1279
1280 int __init APIC_init_uniprocessor(void)
1281 {
1282         if (!smp_found_config && !cpu_has_apic)
1283                 return -1;
1284
1285         /*
1286          * Complain if the BIOS pretends there is one.
1287          */
1288         if (!cpu_has_apic &&
1289             APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
1290                 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1291                        boot_cpu_physical_apicid);
1292                 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
1293                 return -1;
1294         }
1295
1296         verify_local_APIC();
1297
1298         connect_bsp_APIC();
1299
1300         /*
1301          * Hack: In case of kdump, after a crash, kernel might be booting
1302          * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
1303          * might be zero if read from MP tables. Get it from LAPIC.
1304          */
1305 #ifdef CONFIG_CRASH_DUMP
1306         boot_cpu_physical_apicid = read_apic_id();
1307 #endif
1308         physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
1309
1310         setup_local_APIC();
1311
1312 #ifdef CONFIG_X86_IO_APIC
1313         if (!smp_found_config || skip_ioapic_setup || !nr_ioapics)
1314 #endif
1315                 localise_nmi_watchdog();
1316         end_local_APIC_setup();
1317 #ifdef CONFIG_X86_IO_APIC
1318         if (smp_found_config)
1319                 if (!skip_ioapic_setup && nr_ioapics)
1320                         setup_IO_APIC();
1321 #endif
1322         setup_boot_clock();
1323
1324         return 0;
1325 }
1326
1327 /*
1328  * Local APIC interrupts
1329  */
1330
1331 /*
1332  * This interrupt should _never_ happen with our APIC/SMP architecture
1333  */
1334 void smp_spurious_interrupt(struct pt_regs *regs)
1335 {
1336         unsigned long v;
1337
1338         irq_enter();
1339         /*
1340          * Check if this really is a spurious interrupt and ACK it
1341          * if it is a vectored one.  Just in case...
1342          * Spurious interrupts should not be ACKed.
1343          */
1344         v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
1345         if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
1346                 ack_APIC_irq();
1347
1348         /* see sw-dev-man vol 3, chapter 7.4.13.5 */
1349         printk(KERN_INFO "spurious APIC interrupt on CPU#%d, "
1350                "should never happen.\n", smp_processor_id());
1351         __get_cpu_var(irq_stat).irq_spurious_count++;
1352         irq_exit();
1353 }
1354
1355 /*
1356  * This interrupt should never happen with our APIC/SMP architecture
1357  */
1358 void smp_error_interrupt(struct pt_regs *regs)
1359 {
1360         unsigned long v, v1;
1361
1362         irq_enter();
1363         /* First tickle the hardware, only then report what went on. -- REW */
1364         v = apic_read(APIC_ESR);
1365         apic_write(APIC_ESR, 0);
1366         v1 = apic_read(APIC_ESR);
1367         ack_APIC_irq();
1368         atomic_inc(&irq_err_count);
1369
1370         /* Here is what the APIC error bits mean:
1371            0: Send CS error
1372            1: Receive CS error
1373            2: Send accept error
1374            3: Receive accept error
1375            4: Reserved
1376            5: Send illegal vector
1377            6: Received illegal vector
1378            7: Illegal register address
1379         */
1380         printk(KERN_DEBUG "APIC error on CPU%d: %02lx(%02lx)\n",
1381                 smp_processor_id(), v , v1);
1382         irq_exit();
1383 }
1384
1385 /**
1386  * connect_bsp_APIC - attach the APIC to the interrupt system
1387  */
1388 void __init connect_bsp_APIC(void)
1389 {
1390 #ifdef CONFIG_X86_32
1391         if (pic_mode) {
1392                 /*
1393                  * Do not trust the local APIC being empty at bootup.
1394                  */
1395                 clear_local_APIC();
1396                 /*
1397                  * PIC mode, enable APIC mode in the IMCR, i.e.  connect BSP's
1398                  * local APIC to INT and NMI lines.
1399                  */
1400                 apic_printk(APIC_VERBOSE, "leaving PIC mode, "
1401                                 "enabling APIC mode.\n");
1402                 outb(0x70, 0x22);
1403                 outb(0x01, 0x23);
1404         }
1405 #endif
1406         enable_apic_mode();
1407 }
1408
1409 /**
1410  * disconnect_bsp_APIC - detach the APIC from the interrupt system
1411  * @virt_wire_setup:    indicates, whether virtual wire mode is selected
1412  *
1413  * Virtual wire mode is necessary to deliver legacy interrupts even when the
1414  * APIC is disabled.
1415  */
1416 void disconnect_bsp_APIC(int virt_wire_setup)
1417 {
1418         if (pic_mode) {
1419                 /*
1420                  * Put the board back into PIC mode (has an effect only on
1421                  * certain older boards).  Note that APIC interrupts, including
1422                  * IPIs, won't work beyond this point!  The only exception are
1423                  * INIT IPIs.
1424                  */
1425                 apic_printk(APIC_VERBOSE, "disabling APIC mode, "
1426                                 "entering PIC mode.\n");
1427                 outb(0x70, 0x22);
1428                 outb(0x00, 0x23);
1429         } else {
1430                 /* Go back to Virtual Wire compatibility mode */
1431                 unsigned long value;
1432
1433                 /* For the spurious interrupt use vector F, and enable it */
1434                 value = apic_read(APIC_SPIV);
1435                 value &= ~APIC_VECTOR_MASK;
1436                 value |= APIC_SPIV_APIC_ENABLED;
1437                 value |= 0xf;
1438                 apic_write(APIC_SPIV, value);
1439
1440                 if (!virt_wire_setup) {
1441                         /*
1442                          * For LVT0 make it edge triggered, active high,
1443                          * external and enabled
1444                          */
1445                         value = apic_read(APIC_LVT0);
1446                         value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
1447                                 APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1448                                 APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1449                         value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1450                         value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
1451                         apic_write(APIC_LVT0, value);
1452                 } else {
1453                         /* Disable LVT0 */
1454                         apic_write(APIC_LVT0, APIC_LVT_MASKED);
1455                 }
1456
1457                 /*
1458                  * For LVT1 make it edge triggered, active high, nmi and
1459                  * enabled
1460                  */
1461                 value = apic_read(APIC_LVT1);
1462                 value &= ~(
1463                         APIC_MODE_MASK | APIC_SEND_PENDING |
1464                         APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
1465                         APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
1466                 value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
1467                 value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
1468                 apic_write(APIC_LVT1, value);
1469         }
1470 }
1471
1472 void __cpuinit generic_processor_info(int apicid, int version)
1473 {
1474         int cpu;
1475         cpumask_t tmp_map;
1476         physid_mask_t phys_cpu;
1477
1478         /*
1479          * Validate version
1480          */
1481         if (version == 0x0) {
1482                 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
1483                                 "fixing up to 0x10. (tell your hw vendor)\n",
1484                                 version);
1485                 version = 0x10;
1486         }
1487         apic_version[apicid] = version;
1488
1489         phys_cpu = apicid_to_cpu_present(apicid);
1490         physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
1491
1492         if (num_processors >= NR_CPUS) {
1493                 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
1494                         "  Processor ignored.\n", NR_CPUS);
1495                 return;
1496         }
1497
1498         if (num_processors >= maxcpus) {
1499                 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
1500                         " Processor ignored.\n", maxcpus);
1501                 return;
1502         }
1503
1504         num_processors++;
1505         cpus_complement(tmp_map, cpu_present_map);
1506         cpu = first_cpu(tmp_map);
1507
1508         if (apicid == boot_cpu_physical_apicid)
1509                 /*
1510                  * x86_bios_cpu_apicid is required to have processors listed
1511                  * in same order as logical cpu numbers. Hence the first
1512                  * entry is BSP, and so on.
1513                  */
1514                 cpu = 0;
1515
1516         if (apicid > max_physical_apicid)
1517                 max_physical_apicid = apicid;
1518
1519         /*
1520          * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
1521          * but we need to work other dependencies like SMP_SUSPEND etc
1522          * before this can be done without some confusion.
1523          * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
1524          *       - Ashok Raj <ashok.raj@intel.com>
1525          */
1526         if (max_physical_apicid >= 8) {
1527                 switch (boot_cpu_data.x86_vendor) {
1528                 case X86_VENDOR_INTEL:
1529                         if (!APIC_XAPIC(version)) {
1530                                 def_to_bigsmp = 0;
1531                                 break;
1532                         }
1533                         /* If P4 and above fall through */
1534                 case X86_VENDOR_AMD:
1535                         def_to_bigsmp = 1;
1536                 }
1537         }
1538 #ifdef CONFIG_SMP
1539         /* are we being called early in kernel startup? */
1540         if (early_per_cpu_ptr(x86_cpu_to_apicid)) {
1541                 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
1542                 u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
1543
1544                 cpu_to_apicid[cpu] = apicid;
1545                 bios_cpu_apicid[cpu] = apicid;
1546         } else {
1547                 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
1548                 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
1549         }
1550 #endif
1551         cpu_set(cpu, cpu_possible_map);
1552         cpu_set(cpu, cpu_present_map);
1553 }
1554
1555 /*
1556  * Power management
1557  */
1558 #ifdef CONFIG_PM
1559
1560 static struct {
1561         /*
1562          * 'active' is true if the local APIC was enabled by us and
1563          * not the BIOS; this signifies that we are also responsible
1564          * for disabling it before entering apm/acpi suspend
1565          */
1566         int active;
1567         /* r/w apic fields */
1568         unsigned int apic_id;
1569         unsigned int apic_taskpri;
1570         unsigned int apic_ldr;
1571         unsigned int apic_dfr;
1572         unsigned int apic_spiv;
1573         unsigned int apic_lvtt;
1574         unsigned int apic_lvtpc;
1575         unsigned int apic_lvt0;
1576         unsigned int apic_lvt1;
1577         unsigned int apic_lvterr;
1578         unsigned int apic_tmict;
1579         unsigned int apic_tdcr;
1580         unsigned int apic_thmr;
1581 } apic_pm_state;
1582
1583 static int lapic_suspend(struct sys_device *dev, pm_message_t state)
1584 {
1585         unsigned long flags;
1586         int maxlvt;
1587
1588         if (!apic_pm_state.active)
1589                 return 0;
1590
1591         maxlvt = lapic_get_maxlvt();
1592
1593         apic_pm_state.apic_id = apic_read(APIC_ID);
1594         apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
1595         apic_pm_state.apic_ldr = apic_read(APIC_LDR);
1596         apic_pm_state.apic_dfr = apic_read(APIC_DFR);
1597         apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
1598         apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
1599         if (maxlvt >= 4)
1600                 apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
1601         apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
1602         apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
1603         apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
1604         apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
1605         apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
1606 #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
1607         if (maxlvt >= 5)
1608                 apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
1609 #endif
1610
1611         local_irq_save(flags);
1612         disable_local_APIC();
1613         local_irq_restore(flags);
1614         return 0;
1615 }
1616
1617 static int lapic_resume(struct sys_device *dev)
1618 {
1619         unsigned int l, h;
1620         unsigned long flags;
1621         int maxlvt;
1622
1623         if (!apic_pm_state.active)
1624                 return 0;
1625
1626         maxlvt = lapic_get_maxlvt();
1627
1628         local_irq_save(flags);
1629
1630 #ifdef CONFIG_X86_64
1631         if (x2apic)
1632                 enable_x2apic();
1633         else
1634 #endif
1635                 /*
1636                  * Make sure the APICBASE points to the right address
1637                  *
1638                  * FIXME! This will be wrong if we ever support suspend on
1639                  * SMP! We'll need to do this as part of the CPU restore!
1640                  */
1641                 rdmsr(MSR_IA32_APICBASE, l, h);
1642                 l &= ~MSR_IA32_APICBASE_BASE;
1643                 l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
1644                 wrmsr(MSR_IA32_APICBASE, l, h);
1645
1646         apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
1647         apic_write(APIC_ID, apic_pm_state.apic_id);
1648         apic_write(APIC_DFR, apic_pm_state.apic_dfr);
1649         apic_write(APIC_LDR, apic_pm_state.apic_ldr);
1650         apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
1651         apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
1652         apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
1653         apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
1654 #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
1655         if (maxlvt >= 5)
1656                 apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
1657 #endif
1658         if (maxlvt >= 4)
1659                 apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
1660         apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
1661         apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
1662         apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
1663         apic_write(APIC_ESR, 0);
1664         apic_read(APIC_ESR);
1665         apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
1666         apic_write(APIC_ESR, 0);
1667         apic_read(APIC_ESR);
1668
1669         local_irq_restore(flags);
1670
1671         return 0;
1672 }
1673
1674 /*
1675  * This device has no shutdown method - fully functioning local APICs
1676  * are needed on every CPU up until machine_halt/restart/poweroff.
1677  */
1678
1679 static struct sysdev_class lapic_sysclass = {
1680         .name           = "lapic",
1681         .resume         = lapic_resume,
1682         .suspend        = lapic_suspend,
1683 };
1684
1685 static struct sys_device device_lapic = {
1686         .id     = 0,
1687         .cls    = &lapic_sysclass,
1688 };
1689
1690 static void __devinit apic_pm_activate(void)
1691 {
1692         apic_pm_state.active = 1;
1693 }
1694
1695 static int __init init_lapic_sysfs(void)
1696 {
1697         int error;
1698
1699         if (!cpu_has_apic)
1700                 return 0;
1701         /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
1702
1703         error = sysdev_class_register(&lapic_sysclass);
1704         if (!error)
1705                 error = sysdev_register(&device_lapic);
1706         return error;
1707 }
1708 device_initcall(init_lapic_sysfs);
1709
1710 #else   /* CONFIG_PM */
1711
1712 static void apic_pm_activate(void) { }
1713
1714 #endif  /* CONFIG_PM */
1715
1716 /*
1717  * APIC command line parameters
1718  */
1719 static int __init parse_lapic(char *arg)
1720 {
1721         force_enable_local_apic = 1;
1722         return 0;
1723 }
1724 early_param("lapic", parse_lapic);
1725
1726 static int __init parse_nolapic(char *arg)
1727 {
1728         disable_apic = 1;
1729         setup_clear_cpu_cap(X86_FEATURE_APIC);
1730         return 0;
1731 }
1732 early_param("nolapic", parse_nolapic);
1733
1734 static int __init parse_disable_apic_timer(char *arg)
1735 {
1736         disable_apic_timer = 1;
1737         return 0;
1738 }
1739 early_param("noapictimer", parse_disable_apic_timer);
1740
1741 static int __init parse_nolapic_timer(char *arg)
1742 {
1743         disable_apic_timer = 1;
1744         return 0;
1745 }
1746 early_param("nolapic_timer", parse_nolapic_timer);
1747
1748 static int __init parse_lapic_timer_c2_ok(char *arg)
1749 {
1750         local_apic_timer_c2_ok = 1;
1751         return 0;
1752 }
1753 early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
1754
1755 static int __init apic_set_verbosity(char *arg)
1756 {
1757         if (!arg)
1758                 return -EINVAL;
1759
1760         if (strcmp(arg, "debug") == 0)
1761                 apic_verbosity = APIC_DEBUG;
1762         else if (strcmp(arg, "verbose") == 0)
1763                 apic_verbosity = APIC_VERBOSE;
1764
1765         return 0;
1766 }
1767 early_param("apic", apic_set_verbosity);
1768
1769 static int __init lapic_insert_resource(void)
1770 {
1771         if (!apic_phys)
1772                 return -1;
1773
1774         /* Put local APIC into the resource map. */
1775         lapic_resource.start = apic_phys;
1776         lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
1777         insert_resource(&iomem_resource, &lapic_resource);
1778
1779         return 0;
1780 }
1781
1782 /*
1783  * need call insert after e820_reserve_resources()
1784  * that is using request_resource
1785  */
1786 late_initcall(lapic_insert_resource);