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