[PATCH] i386: Remove unneeded externs in nmi.c
[pv_ops_mirror.git] / arch / i386 / kernel / nmi.c
blob2dec1b10573719d9f852d560bff67c265d4e1f30
1 /*
2 * linux/arch/i386/nmi.c
4 * NMI watchdog support on APIC systems
6 * Started by Ingo Molnar <mingo@redhat.com>
8 * Fixes:
9 * Mikael Pettersson : AMD K7 support for local APIC NMI watchdog.
10 * Mikael Pettersson : Power Management for local APIC NMI watchdog.
11 * Mikael Pettersson : Pentium 4 support for local APIC NMI watchdog.
12 * Pavel Machek and
13 * Mikael Pettersson : PM converted to driver model. Disable/enable API.
16 #include <linux/delay.h>
17 #include <linux/interrupt.h>
18 #include <linux/module.h>
19 #include <linux/nmi.h>
20 #include <linux/sysdev.h>
21 #include <linux/sysctl.h>
22 #include <linux/percpu.h>
23 #include <linux/dmi.h>
24 #include <linux/kprobes.h>
25 #include <linux/cpumask.h>
26 #include <linux/kernel_stat.h>
28 #include <asm/smp.h>
29 #include <asm/nmi.h>
30 #include <asm/kdebug.h>
31 #include <asm/intel_arch_perfmon.h>
33 #include "mach_traps.h"
35 int unknown_nmi_panic;
36 int nmi_watchdog_enabled;
38 /* perfctr_nmi_owner tracks the ownership of the perfctr registers:
39 * evtsel_nmi_owner tracks the ownership of the event selection
40 * - different performance counters/ event selection may be reserved for
41 * different subsystems this reservation system just tries to coordinate
42 * things a little
45 /* this number is calculated from Intel's MSR_P4_CRU_ESCR5 register and it's
46 * offset from MSR_P4_BSU_ESCR0. It will be the max for all platforms (for now)
48 #define NMI_MAX_COUNTER_BITS 66
49 #define NMI_MAX_COUNTER_LONGS BITS_TO_LONGS(NMI_MAX_COUNTER_BITS)
51 static DEFINE_PER_CPU(unsigned long, perfctr_nmi_owner[NMI_MAX_COUNTER_LONGS]);
52 static DEFINE_PER_CPU(unsigned long, evntsel_nmi_owner[NMI_MAX_COUNTER_LONGS]);
54 static cpumask_t backtrace_mask = CPU_MASK_NONE;
55 /* nmi_active:
56 * >0: the lapic NMI watchdog is active, but can be disabled
57 * <0: the lapic NMI watchdog has not been set up, and cannot
58 * be enabled
59 * 0: the lapic NMI watchdog is disabled, but can be enabled
61 atomic_t nmi_active = ATOMIC_INIT(0); /* oprofile uses this */
63 unsigned int nmi_watchdog = NMI_DEFAULT;
64 static unsigned int nmi_hz = HZ;
66 struct nmi_watchdog_ctlblk {
67 int enabled;
68 u64 check_bit;
69 unsigned int cccr_msr;
70 unsigned int perfctr_msr; /* the MSR to reset in NMI handler */
71 unsigned int evntsel_msr; /* the MSR to select the events to handle */
73 static DEFINE_PER_CPU(struct nmi_watchdog_ctlblk, nmi_watchdog_ctlblk);
75 /* local prototypes */
76 static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu);
78 /* converts an msr to an appropriate reservation bit */
79 static inline unsigned int nmi_perfctr_msr_to_bit(unsigned int msr)
81 /* returns the bit offset of the performance counter register */
82 switch (boot_cpu_data.x86_vendor) {
83 case X86_VENDOR_AMD:
84 return (msr - MSR_K7_PERFCTR0);
85 case X86_VENDOR_INTEL:
86 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
87 return (msr - MSR_ARCH_PERFMON_PERFCTR0);
89 switch (boot_cpu_data.x86) {
90 case 6:
91 return (msr - MSR_P6_PERFCTR0);
92 case 15:
93 return (msr - MSR_P4_BPU_PERFCTR0);
96 return 0;
99 /* converts an msr to an appropriate reservation bit */
100 static inline unsigned int nmi_evntsel_msr_to_bit(unsigned int msr)
102 /* returns the bit offset of the event selection register */
103 switch (boot_cpu_data.x86_vendor) {
104 case X86_VENDOR_AMD:
105 return (msr - MSR_K7_EVNTSEL0);
106 case X86_VENDOR_INTEL:
107 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
108 return (msr - MSR_ARCH_PERFMON_EVENTSEL0);
110 switch (boot_cpu_data.x86) {
111 case 6:
112 return (msr - MSR_P6_EVNTSEL0);
113 case 15:
114 return (msr - MSR_P4_BSU_ESCR0);
117 return 0;
120 /* checks for a bit availability (hack for oprofile) */
121 int avail_to_resrv_perfctr_nmi_bit(unsigned int counter)
123 int cpu;
124 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
125 for_each_possible_cpu (cpu) {
126 if (test_bit(counter, &per_cpu(perfctr_nmi_owner, cpu)[0]))
127 return 0;
129 return 1;
132 /* checks the an msr for availability */
133 int avail_to_resrv_perfctr_nmi(unsigned int msr)
135 unsigned int counter;
136 int cpu;
138 counter = nmi_perfctr_msr_to_bit(msr);
139 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
141 for_each_possible_cpu (cpu) {
142 if (test_bit(counter, &per_cpu(perfctr_nmi_owner, cpu)[0]))
143 return 0;
145 return 1;
148 static int __reserve_perfctr_nmi(int cpu, unsigned int msr)
150 unsigned int counter;
151 if (cpu < 0)
152 cpu = smp_processor_id();
154 counter = nmi_perfctr_msr_to_bit(msr);
155 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
157 if (!test_and_set_bit(counter, &per_cpu(perfctr_nmi_owner, cpu)[0]))
158 return 1;
159 return 0;
162 static void __release_perfctr_nmi(int cpu, unsigned int msr)
164 unsigned int counter;
165 if (cpu < 0)
166 cpu = smp_processor_id();
168 counter = nmi_perfctr_msr_to_bit(msr);
169 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
171 clear_bit(counter, &per_cpu(perfctr_nmi_owner, cpu)[0]);
174 int reserve_perfctr_nmi(unsigned int msr)
176 int cpu, i;
177 for_each_possible_cpu (cpu) {
178 if (!__reserve_perfctr_nmi(cpu, msr)) {
179 for_each_possible_cpu (i) {
180 if (i >= cpu)
181 break;
182 __release_perfctr_nmi(i, msr);
184 return 0;
187 return 1;
190 void release_perfctr_nmi(unsigned int msr)
192 int cpu;
193 for_each_possible_cpu (cpu) {
194 __release_perfctr_nmi(cpu, msr);
198 int __reserve_evntsel_nmi(int cpu, unsigned int msr)
200 unsigned int counter;
201 if (cpu < 0)
202 cpu = smp_processor_id();
204 counter = nmi_evntsel_msr_to_bit(msr);
205 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
207 if (!test_and_set_bit(counter, &per_cpu(evntsel_nmi_owner, cpu)[0]))
208 return 1;
209 return 0;
212 static void __release_evntsel_nmi(int cpu, unsigned int msr)
214 unsigned int counter;
215 if (cpu < 0)
216 cpu = smp_processor_id();
218 counter = nmi_evntsel_msr_to_bit(msr);
219 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
221 clear_bit(counter, &per_cpu(evntsel_nmi_owner, cpu)[0]);
224 int reserve_evntsel_nmi(unsigned int msr)
226 int cpu, i;
227 for_each_possible_cpu (cpu) {
228 if (!__reserve_evntsel_nmi(cpu, msr)) {
229 for_each_possible_cpu (i) {
230 if (i >= cpu)
231 break;
232 __release_evntsel_nmi(i, msr);
234 return 0;
237 return 1;
240 void release_evntsel_nmi(unsigned int msr)
242 int cpu;
243 for_each_possible_cpu (cpu) {
244 __release_evntsel_nmi(cpu, msr);
248 static __cpuinit inline int nmi_known_cpu(void)
250 switch (boot_cpu_data.x86_vendor) {
251 case X86_VENDOR_AMD:
252 return ((boot_cpu_data.x86 == 15) || (boot_cpu_data.x86 == 6)
253 || (boot_cpu_data.x86 == 16));
254 case X86_VENDOR_INTEL:
255 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
256 return 1;
257 else
258 return ((boot_cpu_data.x86 == 15) || (boot_cpu_data.x86 == 6));
260 return 0;
263 static int endflag __initdata = 0;
265 #ifdef CONFIG_SMP
266 /* The performance counters used by NMI_LOCAL_APIC don't trigger when
267 * the CPU is idle. To make sure the NMI watchdog really ticks on all
268 * CPUs during the test make them busy.
270 static __init void nmi_cpu_busy(void *data)
272 local_irq_enable_in_hardirq();
273 /* Intentionally don't use cpu_relax here. This is
274 to make sure that the performance counter really ticks,
275 even if there is a simulator or similar that catches the
276 pause instruction. On a real HT machine this is fine because
277 all other CPUs are busy with "useless" delay loops and don't
278 care if they get somewhat less cycles. */
279 while (endflag == 0)
280 mb();
282 #endif
284 static unsigned int adjust_for_32bit_ctr(unsigned int hz)
286 u64 counter_val;
287 unsigned int retval = hz;
290 * On Intel CPUs with P6/ARCH_PERFMON only 32 bits in the counter
291 * are writable, with higher bits sign extending from bit 31.
292 * So, we can only program the counter with 31 bit values and
293 * 32nd bit should be 1, for 33.. to be 1.
294 * Find the appropriate nmi_hz
296 counter_val = (u64)cpu_khz * 1000;
297 do_div(counter_val, retval);
298 if (counter_val > 0x7fffffffULL) {
299 u64 count = (u64)cpu_khz * 1000;
300 do_div(count, 0x7fffffffUL);
301 retval = count + 1;
303 return retval;
306 static int __init check_nmi_watchdog(void)
308 unsigned int *prev_nmi_count;
309 int cpu;
311 if ((nmi_watchdog == NMI_NONE) || (nmi_watchdog == NMI_DEFAULT))
312 return 0;
314 if (!atomic_read(&nmi_active))
315 return 0;
317 prev_nmi_count = kmalloc(NR_CPUS * sizeof(int), GFP_KERNEL);
318 if (!prev_nmi_count)
319 return -1;
321 printk(KERN_INFO "Testing NMI watchdog ... ");
323 if (nmi_watchdog == NMI_LOCAL_APIC)
324 smp_call_function(nmi_cpu_busy, (void *)&endflag, 0, 0);
326 for_each_possible_cpu(cpu)
327 prev_nmi_count[cpu] = per_cpu(irq_stat, cpu).__nmi_count;
328 local_irq_enable();
329 mdelay((20*1000)/nmi_hz); // wait 20 ticks
331 for_each_possible_cpu(cpu) {
332 #ifdef CONFIG_SMP
333 /* Check cpu_callin_map here because that is set
334 after the timer is started. */
335 if (!cpu_isset(cpu, cpu_callin_map))
336 continue;
337 #endif
338 if (!per_cpu(nmi_watchdog_ctlblk, cpu).enabled)
339 continue;
340 if (nmi_count(cpu) - prev_nmi_count[cpu] <= 5) {
341 printk("CPU#%d: NMI appears to be stuck (%d->%d)!\n",
342 cpu,
343 prev_nmi_count[cpu],
344 nmi_count(cpu));
345 per_cpu(nmi_watchdog_ctlblk, cpu).enabled = 0;
346 atomic_dec(&nmi_active);
349 if (!atomic_read(&nmi_active)) {
350 kfree(prev_nmi_count);
351 atomic_set(&nmi_active, -1);
352 return -1;
354 endflag = 1;
355 printk("OK.\n");
357 /* now that we know it works we can reduce NMI frequency to
358 something more reasonable; makes a difference in some configs */
359 if (nmi_watchdog == NMI_LOCAL_APIC) {
360 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
362 nmi_hz = 1;
364 if (wd->perfctr_msr == MSR_P6_PERFCTR0 ||
365 wd->perfctr_msr == MSR_ARCH_PERFMON_PERFCTR1) {
366 nmi_hz = adjust_for_32bit_ctr(nmi_hz);
370 kfree(prev_nmi_count);
371 return 0;
373 /* This needs to happen later in boot so counters are working */
374 late_initcall(check_nmi_watchdog);
376 static int __init setup_nmi_watchdog(char *str)
378 int nmi;
380 get_option(&str, &nmi);
382 if ((nmi >= NMI_INVALID) || (nmi < NMI_NONE))
383 return 0;
385 nmi_watchdog = nmi;
386 return 1;
389 __setup("nmi_watchdog=", setup_nmi_watchdog);
391 static void disable_lapic_nmi_watchdog(void)
393 BUG_ON(nmi_watchdog != NMI_LOCAL_APIC);
395 if (atomic_read(&nmi_active) <= 0)
396 return;
398 on_each_cpu(stop_apic_nmi_watchdog, NULL, 0, 1);
400 BUG_ON(atomic_read(&nmi_active) != 0);
403 static void enable_lapic_nmi_watchdog(void)
405 BUG_ON(nmi_watchdog != NMI_LOCAL_APIC);
407 /* are we already enabled */
408 if (atomic_read(&nmi_active) != 0)
409 return;
411 /* are we lapic aware */
412 if (nmi_known_cpu() <= 0)
413 return;
415 on_each_cpu(setup_apic_nmi_watchdog, NULL, 0, 1);
416 touch_nmi_watchdog();
419 void disable_timer_nmi_watchdog(void)
421 BUG_ON(nmi_watchdog != NMI_IO_APIC);
423 if (atomic_read(&nmi_active) <= 0)
424 return;
426 disable_irq(0);
427 on_each_cpu(stop_apic_nmi_watchdog, NULL, 0, 1);
429 BUG_ON(atomic_read(&nmi_active) != 0);
432 void enable_timer_nmi_watchdog(void)
434 BUG_ON(nmi_watchdog != NMI_IO_APIC);
436 if (atomic_read(&nmi_active) == 0) {
437 touch_nmi_watchdog();
438 on_each_cpu(setup_apic_nmi_watchdog, NULL, 0, 1);
439 enable_irq(0);
443 static void __acpi_nmi_disable(void *__unused)
445 apic_write_around(APIC_LVT0, APIC_DM_NMI | APIC_LVT_MASKED);
449 * Disable timer based NMIs on all CPUs:
451 void acpi_nmi_disable(void)
453 if (atomic_read(&nmi_active) && nmi_watchdog == NMI_IO_APIC)
454 on_each_cpu(__acpi_nmi_disable, NULL, 0, 1);
457 static void __acpi_nmi_enable(void *__unused)
459 apic_write_around(APIC_LVT0, APIC_DM_NMI);
463 * Enable timer based NMIs on all CPUs:
465 void acpi_nmi_enable(void)
467 if (atomic_read(&nmi_active) && nmi_watchdog == NMI_IO_APIC)
468 on_each_cpu(__acpi_nmi_enable, NULL, 0, 1);
471 #ifdef CONFIG_PM
473 static int nmi_pm_active; /* nmi_active before suspend */
475 static int lapic_nmi_suspend(struct sys_device *dev, pm_message_t state)
477 /* only CPU0 goes here, other CPUs should be offline */
478 nmi_pm_active = atomic_read(&nmi_active);
479 stop_apic_nmi_watchdog(NULL);
480 BUG_ON(atomic_read(&nmi_active) != 0);
481 return 0;
484 static int lapic_nmi_resume(struct sys_device *dev)
486 /* only CPU0 goes here, other CPUs should be offline */
487 if (nmi_pm_active > 0) {
488 setup_apic_nmi_watchdog(NULL);
489 touch_nmi_watchdog();
491 return 0;
495 static struct sysdev_class nmi_sysclass = {
496 set_kset_name("lapic_nmi"),
497 .resume = lapic_nmi_resume,
498 .suspend = lapic_nmi_suspend,
501 static struct sys_device device_lapic_nmi = {
502 .id = 0,
503 .cls = &nmi_sysclass,
506 static int __init init_lapic_nmi_sysfs(void)
508 int error;
510 /* should really be a BUG_ON but b/c this is an
511 * init call, it just doesn't work. -dcz
513 if (nmi_watchdog != NMI_LOCAL_APIC)
514 return 0;
516 if ( atomic_read(&nmi_active) < 0 )
517 return 0;
519 error = sysdev_class_register(&nmi_sysclass);
520 if (!error)
521 error = sysdev_register(&device_lapic_nmi);
522 return error;
524 /* must come after the local APIC's device_initcall() */
525 late_initcall(init_lapic_nmi_sysfs);
527 #endif /* CONFIG_PM */
530 * Activate the NMI watchdog via the local APIC.
531 * Original code written by Keith Owens.
534 static void write_watchdog_counter(unsigned int perfctr_msr, const char *descr)
536 u64 count = (u64)cpu_khz * 1000;
538 do_div(count, nmi_hz);
539 if(descr)
540 Dprintk("setting %s to -0x%08Lx\n", descr, count);
541 wrmsrl(perfctr_msr, 0 - count);
544 static void write_watchdog_counter32(unsigned int perfctr_msr,
545 const char *descr)
547 u64 count = (u64)cpu_khz * 1000;
549 do_div(count, nmi_hz);
550 if(descr)
551 Dprintk("setting %s to -0x%08Lx\n", descr, count);
552 wrmsr(perfctr_msr, (u32)(-count), 0);
555 /* Note that these events don't tick when the CPU idles. This means
556 the frequency varies with CPU load. */
558 #define K7_EVNTSEL_ENABLE (1 << 22)
559 #define K7_EVNTSEL_INT (1 << 20)
560 #define K7_EVNTSEL_OS (1 << 17)
561 #define K7_EVNTSEL_USR (1 << 16)
562 #define K7_EVENT_CYCLES_PROCESSOR_IS_RUNNING 0x76
563 #define K7_NMI_EVENT K7_EVENT_CYCLES_PROCESSOR_IS_RUNNING
565 static int setup_k7_watchdog(void)
567 unsigned int perfctr_msr, evntsel_msr;
568 unsigned int evntsel;
569 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
571 perfctr_msr = MSR_K7_PERFCTR0;
572 evntsel_msr = MSR_K7_EVNTSEL0;
573 if (!__reserve_perfctr_nmi(-1, perfctr_msr))
574 goto fail;
576 if (!__reserve_evntsel_nmi(-1, evntsel_msr))
577 goto fail1;
579 wrmsrl(perfctr_msr, 0UL);
581 evntsel = K7_EVNTSEL_INT
582 | K7_EVNTSEL_OS
583 | K7_EVNTSEL_USR
584 | K7_NMI_EVENT;
586 /* setup the timer */
587 wrmsr(evntsel_msr, evntsel, 0);
588 write_watchdog_counter(perfctr_msr, "K7_PERFCTR0");
589 apic_write(APIC_LVTPC, APIC_DM_NMI);
590 evntsel |= K7_EVNTSEL_ENABLE;
591 wrmsr(evntsel_msr, evntsel, 0);
593 wd->perfctr_msr = perfctr_msr;
594 wd->evntsel_msr = evntsel_msr;
595 wd->cccr_msr = 0; //unused
596 wd->check_bit = 1ULL<<63;
597 return 1;
598 fail1:
599 __release_perfctr_nmi(-1, perfctr_msr);
600 fail:
601 return 0;
604 static void stop_k7_watchdog(void)
606 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
608 wrmsr(wd->evntsel_msr, 0, 0);
610 __release_evntsel_nmi(-1, wd->evntsel_msr);
611 __release_perfctr_nmi(-1, wd->perfctr_msr);
614 #define P6_EVNTSEL0_ENABLE (1 << 22)
615 #define P6_EVNTSEL_INT (1 << 20)
616 #define P6_EVNTSEL_OS (1 << 17)
617 #define P6_EVNTSEL_USR (1 << 16)
618 #define P6_EVENT_CPU_CLOCKS_NOT_HALTED 0x79
619 #define P6_NMI_EVENT P6_EVENT_CPU_CLOCKS_NOT_HALTED
621 static int setup_p6_watchdog(void)
623 unsigned int perfctr_msr, evntsel_msr;
624 unsigned int evntsel;
625 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
627 perfctr_msr = MSR_P6_PERFCTR0;
628 evntsel_msr = MSR_P6_EVNTSEL0;
629 if (!__reserve_perfctr_nmi(-1, perfctr_msr))
630 goto fail;
632 if (!__reserve_evntsel_nmi(-1, evntsel_msr))
633 goto fail1;
635 wrmsrl(perfctr_msr, 0UL);
637 evntsel = P6_EVNTSEL_INT
638 | P6_EVNTSEL_OS
639 | P6_EVNTSEL_USR
640 | P6_NMI_EVENT;
642 /* setup the timer */
643 wrmsr(evntsel_msr, evntsel, 0);
644 nmi_hz = adjust_for_32bit_ctr(nmi_hz);
645 write_watchdog_counter32(perfctr_msr, "P6_PERFCTR0");
646 apic_write(APIC_LVTPC, APIC_DM_NMI);
647 evntsel |= P6_EVNTSEL0_ENABLE;
648 wrmsr(evntsel_msr, evntsel, 0);
650 wd->perfctr_msr = perfctr_msr;
651 wd->evntsel_msr = evntsel_msr;
652 wd->cccr_msr = 0; //unused
653 wd->check_bit = 1ULL<<39;
654 return 1;
655 fail1:
656 __release_perfctr_nmi(-1, perfctr_msr);
657 fail:
658 return 0;
661 static void stop_p6_watchdog(void)
663 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
665 wrmsr(wd->evntsel_msr, 0, 0);
667 __release_evntsel_nmi(-1, wd->evntsel_msr);
668 __release_perfctr_nmi(-1, wd->perfctr_msr);
671 /* Note that these events don't tick when the CPU idles. This means
672 the frequency varies with CPU load. */
674 #define MSR_P4_MISC_ENABLE_PERF_AVAIL (1<<7)
675 #define P4_ESCR_EVENT_SELECT(N) ((N)<<25)
676 #define P4_ESCR_OS (1<<3)
677 #define P4_ESCR_USR (1<<2)
678 #define P4_CCCR_OVF_PMI0 (1<<26)
679 #define P4_CCCR_OVF_PMI1 (1<<27)
680 #define P4_CCCR_THRESHOLD(N) ((N)<<20)
681 #define P4_CCCR_COMPLEMENT (1<<19)
682 #define P4_CCCR_COMPARE (1<<18)
683 #define P4_CCCR_REQUIRED (3<<16)
684 #define P4_CCCR_ESCR_SELECT(N) ((N)<<13)
685 #define P4_CCCR_ENABLE (1<<12)
686 #define P4_CCCR_OVF (1<<31)
687 /* Set up IQ_COUNTER0 to behave like a clock, by having IQ_CCCR0 filter
688 CRU_ESCR0 (with any non-null event selector) through a complemented
689 max threshold. [IA32-Vol3, Section 14.9.9] */
691 static int setup_p4_watchdog(void)
693 unsigned int perfctr_msr, evntsel_msr, cccr_msr;
694 unsigned int evntsel, cccr_val;
695 unsigned int misc_enable, dummy;
696 unsigned int ht_num;
697 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
699 rdmsr(MSR_IA32_MISC_ENABLE, misc_enable, dummy);
700 if (!(misc_enable & MSR_P4_MISC_ENABLE_PERF_AVAIL))
701 return 0;
703 #ifdef CONFIG_SMP
704 /* detect which hyperthread we are on */
705 if (smp_num_siblings == 2) {
706 unsigned int ebx, apicid;
708 ebx = cpuid_ebx(1);
709 apicid = (ebx >> 24) & 0xff;
710 ht_num = apicid & 1;
711 } else
712 #endif
713 ht_num = 0;
715 /* performance counters are shared resources
716 * assign each hyperthread its own set
717 * (re-use the ESCR0 register, seems safe
718 * and keeps the cccr_val the same)
720 if (!ht_num) {
721 /* logical cpu 0 */
722 perfctr_msr = MSR_P4_IQ_PERFCTR0;
723 evntsel_msr = MSR_P4_CRU_ESCR0;
724 cccr_msr = MSR_P4_IQ_CCCR0;
725 cccr_val = P4_CCCR_OVF_PMI0 | P4_CCCR_ESCR_SELECT(4);
726 } else {
727 /* logical cpu 1 */
728 perfctr_msr = MSR_P4_IQ_PERFCTR1;
729 evntsel_msr = MSR_P4_CRU_ESCR0;
730 cccr_msr = MSR_P4_IQ_CCCR1;
731 cccr_val = P4_CCCR_OVF_PMI1 | P4_CCCR_ESCR_SELECT(4);
734 if (!__reserve_perfctr_nmi(-1, perfctr_msr))
735 goto fail;
737 if (!__reserve_evntsel_nmi(-1, evntsel_msr))
738 goto fail1;
740 evntsel = P4_ESCR_EVENT_SELECT(0x3F)
741 | P4_ESCR_OS
742 | P4_ESCR_USR;
744 cccr_val |= P4_CCCR_THRESHOLD(15)
745 | P4_CCCR_COMPLEMENT
746 | P4_CCCR_COMPARE
747 | P4_CCCR_REQUIRED;
749 wrmsr(evntsel_msr, evntsel, 0);
750 wrmsr(cccr_msr, cccr_val, 0);
751 write_watchdog_counter(perfctr_msr, "P4_IQ_COUNTER0");
752 apic_write(APIC_LVTPC, APIC_DM_NMI);
753 cccr_val |= P4_CCCR_ENABLE;
754 wrmsr(cccr_msr, cccr_val, 0);
755 wd->perfctr_msr = perfctr_msr;
756 wd->evntsel_msr = evntsel_msr;
757 wd->cccr_msr = cccr_msr;
758 wd->check_bit = 1ULL<<39;
759 return 1;
760 fail1:
761 __release_perfctr_nmi(-1, perfctr_msr);
762 fail:
763 return 0;
766 static void stop_p4_watchdog(void)
768 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
770 wrmsr(wd->cccr_msr, 0, 0);
771 wrmsr(wd->evntsel_msr, 0, 0);
773 __release_evntsel_nmi(-1, wd->evntsel_msr);
774 __release_perfctr_nmi(-1, wd->perfctr_msr);
777 #define ARCH_PERFMON_NMI_EVENT_SEL ARCH_PERFMON_UNHALTED_CORE_CYCLES_SEL
778 #define ARCH_PERFMON_NMI_EVENT_UMASK ARCH_PERFMON_UNHALTED_CORE_CYCLES_UMASK
780 static int setup_intel_arch_watchdog(void)
782 unsigned int ebx;
783 union cpuid10_eax eax;
784 unsigned int unused;
785 unsigned int perfctr_msr, evntsel_msr;
786 unsigned int evntsel;
787 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
790 * Check whether the Architectural PerfMon supports
791 * Unhalted Core Cycles Event or not.
792 * NOTE: Corresponding bit = 0 in ebx indicates event present.
794 cpuid(10, &(eax.full), &ebx, &unused, &unused);
795 if ((eax.split.mask_length < (ARCH_PERFMON_UNHALTED_CORE_CYCLES_INDEX+1)) ||
796 (ebx & ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT))
797 goto fail;
799 perfctr_msr = MSR_ARCH_PERFMON_PERFCTR1;
800 evntsel_msr = MSR_ARCH_PERFMON_EVENTSEL1;
802 if (!__reserve_perfctr_nmi(-1, perfctr_msr))
803 goto fail;
805 if (!__reserve_evntsel_nmi(-1, evntsel_msr))
806 goto fail1;
808 wrmsrl(perfctr_msr, 0UL);
810 evntsel = ARCH_PERFMON_EVENTSEL_INT
811 | ARCH_PERFMON_EVENTSEL_OS
812 | ARCH_PERFMON_EVENTSEL_USR
813 | ARCH_PERFMON_NMI_EVENT_SEL
814 | ARCH_PERFMON_NMI_EVENT_UMASK;
816 /* setup the timer */
817 wrmsr(evntsel_msr, evntsel, 0);
818 nmi_hz = adjust_for_32bit_ctr(nmi_hz);
819 write_watchdog_counter32(perfctr_msr, "INTEL_ARCH_PERFCTR0");
820 apic_write(APIC_LVTPC, APIC_DM_NMI);
821 evntsel |= ARCH_PERFMON_EVENTSEL0_ENABLE;
822 wrmsr(evntsel_msr, evntsel, 0);
824 wd->perfctr_msr = perfctr_msr;
825 wd->evntsel_msr = evntsel_msr;
826 wd->cccr_msr = 0; //unused
827 wd->check_bit = 1ULL << (eax.split.bit_width - 1);
828 return 1;
829 fail1:
830 __release_perfctr_nmi(-1, perfctr_msr);
831 fail:
832 return 0;
835 static void stop_intel_arch_watchdog(void)
837 unsigned int ebx;
838 union cpuid10_eax eax;
839 unsigned int unused;
840 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
843 * Check whether the Architectural PerfMon supports
844 * Unhalted Core Cycles Event or not.
845 * NOTE: Corresponding bit = 0 in ebx indicates event present.
847 cpuid(10, &(eax.full), &ebx, &unused, &unused);
848 if ((eax.split.mask_length < (ARCH_PERFMON_UNHALTED_CORE_CYCLES_INDEX+1)) ||
849 (ebx & ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT))
850 return;
852 wrmsr(wd->evntsel_msr, 0, 0);
853 __release_evntsel_nmi(-1, wd->evntsel_msr);
854 __release_perfctr_nmi(-1, wd->perfctr_msr);
857 void setup_apic_nmi_watchdog (void *unused)
859 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
861 /* only support LOCAL and IO APICs for now */
862 if ((nmi_watchdog != NMI_LOCAL_APIC) &&
863 (nmi_watchdog != NMI_IO_APIC))
864 return;
866 if (wd->enabled == 1)
867 return;
869 /* cheap hack to support suspend/resume */
870 /* if cpu0 is not active neither should the other cpus */
871 if ((smp_processor_id() != 0) && (atomic_read(&nmi_active) <= 0))
872 return;
874 if (nmi_watchdog == NMI_LOCAL_APIC) {
875 switch (boot_cpu_data.x86_vendor) {
876 case X86_VENDOR_AMD:
877 if (boot_cpu_data.x86 != 6 && boot_cpu_data.x86 != 15 &&
878 boot_cpu_data.x86 != 16)
879 return;
880 if (!setup_k7_watchdog())
881 return;
882 break;
883 case X86_VENDOR_INTEL:
884 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON)) {
885 if (!setup_intel_arch_watchdog())
886 return;
887 break;
889 switch (boot_cpu_data.x86) {
890 case 6:
891 if (boot_cpu_data.x86_model > 0xd)
892 return;
894 if (!setup_p6_watchdog())
895 return;
896 break;
897 case 15:
898 if (boot_cpu_data.x86_model > 0x4)
899 return;
901 if (!setup_p4_watchdog())
902 return;
903 break;
904 default:
905 return;
907 break;
908 default:
909 return;
912 wd->enabled = 1;
913 atomic_inc(&nmi_active);
916 void stop_apic_nmi_watchdog(void *unused)
918 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
920 /* only support LOCAL and IO APICs for now */
921 if ((nmi_watchdog != NMI_LOCAL_APIC) &&
922 (nmi_watchdog != NMI_IO_APIC))
923 return;
925 if (wd->enabled == 0)
926 return;
928 if (nmi_watchdog == NMI_LOCAL_APIC) {
929 switch (boot_cpu_data.x86_vendor) {
930 case X86_VENDOR_AMD:
931 stop_k7_watchdog();
932 break;
933 case X86_VENDOR_INTEL:
934 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON)) {
935 stop_intel_arch_watchdog();
936 break;
938 switch (boot_cpu_data.x86) {
939 case 6:
940 if (boot_cpu_data.x86_model > 0xd)
941 break;
942 stop_p6_watchdog();
943 break;
944 case 15:
945 if (boot_cpu_data.x86_model > 0x4)
946 break;
947 stop_p4_watchdog();
948 break;
950 break;
951 default:
952 return;
955 wd->enabled = 0;
956 atomic_dec(&nmi_active);
960 * the best way to detect whether a CPU has a 'hard lockup' problem
961 * is to check it's local APIC timer IRQ counts. If they are not
962 * changing then that CPU has some problem.
964 * as these watchdog NMI IRQs are generated on every CPU, we only
965 * have to check the current processor.
967 * since NMIs don't listen to _any_ locks, we have to be extremely
968 * careful not to rely on unsafe variables. The printk might lock
969 * up though, so we have to break up any console locks first ...
970 * [when there will be more tty-related locks, break them up
971 * here too!]
974 static unsigned int
975 last_irq_sums [NR_CPUS],
976 alert_counter [NR_CPUS];
978 void touch_nmi_watchdog (void)
980 if (nmi_watchdog > 0) {
981 unsigned cpu;
984 * Just reset the alert counters, (other CPUs might be
985 * spinning on locks we hold):
987 for_each_present_cpu (cpu)
988 alert_counter[cpu] = 0;
992 * Tickle the softlockup detector too:
994 touch_softlockup_watchdog();
996 EXPORT_SYMBOL(touch_nmi_watchdog);
998 extern void die_nmi(struct pt_regs *, const char *msg);
1000 __kprobes int nmi_watchdog_tick(struct pt_regs * regs, unsigned reason)
1004 * Since current_thread_info()-> is always on the stack, and we
1005 * always switch the stack NMI-atomically, it's safe to use
1006 * smp_processor_id().
1008 unsigned int sum;
1009 int touched = 0;
1010 int cpu = smp_processor_id();
1011 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
1012 u64 dummy;
1013 int rc=0;
1015 /* check for other users first */
1016 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT)
1017 == NOTIFY_STOP) {
1018 rc = 1;
1019 touched = 1;
1022 if (cpu_isset(cpu, backtrace_mask)) {
1023 static DEFINE_SPINLOCK(lock); /* Serialise the printks */
1025 spin_lock(&lock);
1026 printk("NMI backtrace for cpu %d\n", cpu);
1027 dump_stack();
1028 spin_unlock(&lock);
1029 cpu_clear(cpu, backtrace_mask);
1033 * Take the local apic timer and PIT/HPET into account. We don't
1034 * know which one is active, when we have highres/dyntick on
1036 sum = per_cpu(irq_stat, cpu).apic_timer_irqs + kstat_irqs(0);
1038 /* if the none of the timers isn't firing, this cpu isn't doing much */
1039 if (!touched && last_irq_sums[cpu] == sum) {
1041 * Ayiee, looks like this CPU is stuck ...
1042 * wait a few IRQs (5 seconds) before doing the oops ...
1044 alert_counter[cpu]++;
1045 if (alert_counter[cpu] == 5*nmi_hz)
1047 * die_nmi will return ONLY if NOTIFY_STOP happens..
1049 die_nmi(regs, "BUG: NMI Watchdog detected LOCKUP");
1050 } else {
1051 last_irq_sums[cpu] = sum;
1052 alert_counter[cpu] = 0;
1054 /* see if the nmi watchdog went off */
1055 if (wd->enabled) {
1056 if (nmi_watchdog == NMI_LOCAL_APIC) {
1057 rdmsrl(wd->perfctr_msr, dummy);
1058 if (dummy & wd->check_bit){
1059 /* this wasn't a watchdog timer interrupt */
1060 goto done;
1063 /* only Intel P4 uses the cccr msr */
1064 if (wd->cccr_msr != 0) {
1066 * P4 quirks:
1067 * - An overflown perfctr will assert its interrupt
1068 * until the OVF flag in its CCCR is cleared.
1069 * - LVTPC is masked on interrupt and must be
1070 * unmasked by the LVTPC handler.
1072 rdmsrl(wd->cccr_msr, dummy);
1073 dummy &= ~P4_CCCR_OVF;
1074 wrmsrl(wd->cccr_msr, dummy);
1075 apic_write(APIC_LVTPC, APIC_DM_NMI);
1076 /* start the cycle over again */
1077 write_watchdog_counter(wd->perfctr_msr, NULL);
1079 else if (wd->perfctr_msr == MSR_P6_PERFCTR0 ||
1080 wd->perfctr_msr == MSR_ARCH_PERFMON_PERFCTR1) {
1081 /* P6 based Pentium M need to re-unmask
1082 * the apic vector but it doesn't hurt
1083 * other P6 variant.
1084 * ArchPerfom/Core Duo also needs this */
1085 apic_write(APIC_LVTPC, APIC_DM_NMI);
1086 /* P6/ARCH_PERFMON has 32 bit counter write */
1087 write_watchdog_counter32(wd->perfctr_msr, NULL);
1088 } else {
1089 /* start the cycle over again */
1090 write_watchdog_counter(wd->perfctr_msr, NULL);
1092 rc = 1;
1093 } else if (nmi_watchdog == NMI_IO_APIC) {
1094 /* don't know how to accurately check for this.
1095 * just assume it was a watchdog timer interrupt
1096 * This matches the old behaviour.
1098 rc = 1;
1101 done:
1102 return rc;
1105 int do_nmi_callback(struct pt_regs * regs, int cpu)
1107 #ifdef CONFIG_SYSCTL
1108 if (unknown_nmi_panic)
1109 return unknown_nmi_panic_callback(regs, cpu);
1110 #endif
1111 return 0;
1114 #ifdef CONFIG_SYSCTL
1116 static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu)
1118 unsigned char reason = get_nmi_reason();
1119 char buf[64];
1121 sprintf(buf, "NMI received for unknown reason %02x\n", reason);
1122 die_nmi(regs, buf);
1123 return 0;
1127 * proc handler for /proc/sys/kernel/nmi
1129 int proc_nmi_enabled(struct ctl_table *table, int write, struct file *file,
1130 void __user *buffer, size_t *length, loff_t *ppos)
1132 int old_state;
1134 nmi_watchdog_enabled = (atomic_read(&nmi_active) > 0) ? 1 : 0;
1135 old_state = nmi_watchdog_enabled;
1136 proc_dointvec(table, write, file, buffer, length, ppos);
1137 if (!!old_state == !!nmi_watchdog_enabled)
1138 return 0;
1140 if (atomic_read(&nmi_active) < 0) {
1141 printk( KERN_WARNING "NMI watchdog is permanently disabled\n");
1142 return -EIO;
1145 if (nmi_watchdog == NMI_DEFAULT) {
1146 if (nmi_known_cpu() > 0)
1147 nmi_watchdog = NMI_LOCAL_APIC;
1148 else
1149 nmi_watchdog = NMI_IO_APIC;
1152 if (nmi_watchdog == NMI_LOCAL_APIC) {
1153 if (nmi_watchdog_enabled)
1154 enable_lapic_nmi_watchdog();
1155 else
1156 disable_lapic_nmi_watchdog();
1157 } else {
1158 printk( KERN_WARNING
1159 "NMI watchdog doesn't know what hardware to touch\n");
1160 return -EIO;
1162 return 0;
1165 #endif
1167 void __trigger_all_cpu_backtrace(void)
1169 int i;
1171 backtrace_mask = cpu_online_map;
1172 /* Wait for up to 10 seconds for all CPUs to do the backtrace */
1173 for (i = 0; i < 10 * 1000; i++) {
1174 if (cpus_empty(backtrace_mask))
1175 break;
1176 mdelay(1);
1180 EXPORT_SYMBOL(nmi_active);
1181 EXPORT_SYMBOL(nmi_watchdog);
1182 EXPORT_SYMBOL(avail_to_resrv_perfctr_nmi);
1183 EXPORT_SYMBOL(avail_to_resrv_perfctr_nmi_bit);
1184 EXPORT_SYMBOL(reserve_perfctr_nmi);
1185 EXPORT_SYMBOL(release_perfctr_nmi);
1186 EXPORT_SYMBOL(reserve_evntsel_nmi);
1187 EXPORT_SYMBOL(release_evntsel_nmi);
1188 EXPORT_SYMBOL(disable_timer_nmi_watchdog);
1189 EXPORT_SYMBOL(enable_timer_nmi_watchdog);