2 * local apic based NMI watchdog for various CPUs.
4 * This file also handles reservation of performance counters for coordination
5 * with other users (like oprofile).
7 * Note that these events normally don't tick when the CPU idles. This means
8 * the frequency varies with CPU load.
10 * Original code for K7/P6 written by Keith Owens
14 #include <linux/percpu.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/bitops.h>
18 #include <linux/smp.h>
19 #include <linux/nmi.h>
21 #include <asm/intel_arch_perfmon.h>
23 struct nmi_watchdog_ctlblk {
24 unsigned int cccr_msr;
25 unsigned int perfctr_msr; /* the MSR to reset in NMI handler */
26 unsigned int evntsel_msr; /* the MSR to select the events to handle */
29 /* Interface defining a CPU specific perfctr watchdog */
32 void (*unreserve)(void);
33 int (*setup)(unsigned nmi_hz);
34 void (*rearm)(struct nmi_watchdog_ctlblk *wd, unsigned nmi_hz);
41 static const struct wd_ops *wd_ops;
44 * this number is calculated from Intel's MSR_P4_CRU_ESCR5 register and it's
45 * offset from MSR_P4_BSU_ESCR0.
47 * It will be the max for all platforms (for now)
49 #define NMI_MAX_COUNTER_BITS 66
52 * perfctr_nmi_owner tracks the ownership of the perfctr registers:
53 * evtsel_nmi_owner tracks the ownership of the event selection
54 * - different performance counters/ event selection may be reserved for
55 * different subsystems this reservation system just tries to coordinate
58 static DECLARE_BITMAP(perfctr_nmi_owner, NMI_MAX_COUNTER_BITS);
59 static DECLARE_BITMAP(evntsel_nmi_owner, NMI_MAX_COUNTER_BITS);
61 static DEFINE_PER_CPU(struct nmi_watchdog_ctlblk, nmi_watchdog_ctlblk);
63 /* converts an msr to an appropriate reservation bit */
64 static inline unsigned int nmi_perfctr_msr_to_bit(unsigned int msr)
66 /* returns the bit offset of the performance counter register */
67 switch (boot_cpu_data.x86_vendor) {
69 return (msr - MSR_K7_PERFCTR0);
70 case X86_VENDOR_INTEL:
71 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
72 return (msr - MSR_ARCH_PERFMON_PERFCTR0);
74 switch (boot_cpu_data.x86) {
76 return (msr - MSR_P6_PERFCTR0);
78 return (msr - MSR_P4_BPU_PERFCTR0);
85 * converts an msr to an appropriate reservation bit
86 * returns the bit offset of the event selection register
88 static inline unsigned int nmi_evntsel_msr_to_bit(unsigned int msr)
90 /* returns the bit offset of the event selection register */
91 switch (boot_cpu_data.x86_vendor) {
93 return (msr - MSR_K7_EVNTSEL0);
94 case X86_VENDOR_INTEL:
95 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
96 return (msr - MSR_ARCH_PERFMON_EVENTSEL0);
98 switch (boot_cpu_data.x86) {
100 return (msr - MSR_P6_EVNTSEL0);
102 return (msr - MSR_P4_BSU_ESCR0);
109 /* checks for a bit availability (hack for oprofile) */
110 int avail_to_resrv_perfctr_nmi_bit(unsigned int counter)
112 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
114 return (!test_bit(counter, perfctr_nmi_owner));
117 /* checks the an msr for availability */
118 int avail_to_resrv_perfctr_nmi(unsigned int msr)
120 unsigned int counter;
122 counter = nmi_perfctr_msr_to_bit(msr);
123 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
125 return (!test_bit(counter, perfctr_nmi_owner));
127 EXPORT_SYMBOL(avail_to_resrv_perfctr_nmi_bit);
129 int reserve_perfctr_nmi(unsigned int msr)
131 unsigned int counter;
133 counter = nmi_perfctr_msr_to_bit(msr);
134 /* register not managed by the allocator? */
135 if (counter > NMI_MAX_COUNTER_BITS)
138 if (!test_and_set_bit(counter, perfctr_nmi_owner))
142 EXPORT_SYMBOL(reserve_perfctr_nmi);
144 void release_perfctr_nmi(unsigned int msr)
146 unsigned int counter;
148 counter = nmi_perfctr_msr_to_bit(msr);
149 /* register not managed by the allocator? */
150 if (counter > NMI_MAX_COUNTER_BITS)
153 clear_bit(counter, perfctr_nmi_owner);
155 EXPORT_SYMBOL(release_perfctr_nmi);
157 int reserve_evntsel_nmi(unsigned int msr)
159 unsigned int counter;
161 counter = nmi_evntsel_msr_to_bit(msr);
162 /* register not managed by the allocator? */
163 if (counter > NMI_MAX_COUNTER_BITS)
166 if (!test_and_set_bit(counter, evntsel_nmi_owner))
170 EXPORT_SYMBOL(reserve_evntsel_nmi);
172 void release_evntsel_nmi(unsigned int msr)
174 unsigned int counter;
176 counter = nmi_evntsel_msr_to_bit(msr);
177 /* register not managed by the allocator? */
178 if (counter > NMI_MAX_COUNTER_BITS)
181 clear_bit(counter, evntsel_nmi_owner);
183 EXPORT_SYMBOL(release_evntsel_nmi);
185 void disable_lapic_nmi_watchdog(void)
187 BUG_ON(nmi_watchdog != NMI_LOCAL_APIC);
189 if (atomic_read(&nmi_active) <= 0)
192 on_each_cpu(stop_apic_nmi_watchdog, NULL, 1);
197 BUG_ON(atomic_read(&nmi_active) != 0);
200 void enable_lapic_nmi_watchdog(void)
202 BUG_ON(nmi_watchdog != NMI_LOCAL_APIC);
204 /* are we already enabled */
205 if (atomic_read(&nmi_active) != 0)
208 /* are we lapic aware */
211 if (!wd_ops->reserve()) {
212 printk(KERN_ERR "NMI watchdog: cannot reserve perfctrs\n");
216 on_each_cpu(setup_apic_nmi_watchdog, NULL, 1);
217 touch_nmi_watchdog();
221 * Activate the NMI watchdog via the local APIC.
224 static unsigned int adjust_for_32bit_ctr(unsigned int hz)
227 unsigned int retval = hz;
230 * On Intel CPUs with P6/ARCH_PERFMON only 32 bits in the counter
231 * are writable, with higher bits sign extending from bit 31.
232 * So, we can only program the counter with 31 bit values and
233 * 32nd bit should be 1, for 33.. to be 1.
234 * Find the appropriate nmi_hz
236 counter_val = (u64)cpu_khz * 1000;
237 do_div(counter_val, retval);
238 if (counter_val > 0x7fffffffULL) {
239 u64 count = (u64)cpu_khz * 1000;
240 do_div(count, 0x7fffffffUL);
246 static void write_watchdog_counter(unsigned int perfctr_msr,
247 const char *descr, unsigned nmi_hz)
249 u64 count = (u64)cpu_khz * 1000;
251 do_div(count, nmi_hz);
253 pr_debug("setting %s to -0x%08Lx\n", descr, count);
254 wrmsrl(perfctr_msr, 0 - count);
257 static void write_watchdog_counter32(unsigned int perfctr_msr,
258 const char *descr, unsigned nmi_hz)
260 u64 count = (u64)cpu_khz * 1000;
262 do_div(count, nmi_hz);
264 pr_debug("setting %s to -0x%08Lx\n", descr, count);
265 wrmsr(perfctr_msr, (u32)(-count), 0);
269 * AMD K7/K8/Family10h/Family11h support.
270 * AMD keeps this interface nicely stable so there is not much variety
272 #define K7_EVNTSEL_ENABLE (1 << 22)
273 #define K7_EVNTSEL_INT (1 << 20)
274 #define K7_EVNTSEL_OS (1 << 17)
275 #define K7_EVNTSEL_USR (1 << 16)
276 #define K7_EVENT_CYCLES_PROCESSOR_IS_RUNNING 0x76
277 #define K7_NMI_EVENT K7_EVENT_CYCLES_PROCESSOR_IS_RUNNING
279 static int setup_k7_watchdog(unsigned nmi_hz)
281 unsigned int perfctr_msr, evntsel_msr;
282 unsigned int evntsel;
283 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
285 perfctr_msr = wd_ops->perfctr;
286 evntsel_msr = wd_ops->evntsel;
288 wrmsrl(perfctr_msr, 0UL);
290 evntsel = K7_EVNTSEL_INT
295 /* setup the timer */
296 wrmsr(evntsel_msr, evntsel, 0);
297 write_watchdog_counter(perfctr_msr, "K7_PERFCTR0",nmi_hz);
299 /* initialize the wd struct before enabling */
300 wd->perfctr_msr = perfctr_msr;
301 wd->evntsel_msr = evntsel_msr;
302 wd->cccr_msr = 0; /* unused */
304 /* ok, everything is initialized, announce that we're set */
305 cpu_nmi_set_wd_enabled();
307 apic_write(APIC_LVTPC, APIC_DM_NMI);
308 evntsel |= K7_EVNTSEL_ENABLE;
309 wrmsr(evntsel_msr, evntsel, 0);
314 static void single_msr_stop_watchdog(void)
316 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
318 wrmsr(wd->evntsel_msr, 0, 0);
321 static int single_msr_reserve(void)
323 if (!reserve_perfctr_nmi(wd_ops->perfctr))
326 if (!reserve_evntsel_nmi(wd_ops->evntsel)) {
327 release_perfctr_nmi(wd_ops->perfctr);
333 static void single_msr_unreserve(void)
335 release_evntsel_nmi(wd_ops->evntsel);
336 release_perfctr_nmi(wd_ops->perfctr);
339 static void single_msr_rearm(struct nmi_watchdog_ctlblk *wd, unsigned nmi_hz)
341 /* start the cycle over again */
342 write_watchdog_counter(wd->perfctr_msr, NULL, nmi_hz);
345 static const struct wd_ops k7_wd_ops = {
346 .reserve = single_msr_reserve,
347 .unreserve = single_msr_unreserve,
348 .setup = setup_k7_watchdog,
349 .rearm = single_msr_rearm,
350 .stop = single_msr_stop_watchdog,
351 .perfctr = MSR_K7_PERFCTR0,
352 .evntsel = MSR_K7_EVNTSEL0,
353 .checkbit = 1ULL << 47,
357 * Intel Model 6 (PPro+,P2,P3,P-M,Core1)
359 #define P6_EVNTSEL0_ENABLE (1 << 22)
360 #define P6_EVNTSEL_INT (1 << 20)
361 #define P6_EVNTSEL_OS (1 << 17)
362 #define P6_EVNTSEL_USR (1 << 16)
363 #define P6_EVENT_CPU_CLOCKS_NOT_HALTED 0x79
364 #define P6_NMI_EVENT P6_EVENT_CPU_CLOCKS_NOT_HALTED
366 static int setup_p6_watchdog(unsigned nmi_hz)
368 unsigned int perfctr_msr, evntsel_msr;
369 unsigned int evntsel;
370 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
372 perfctr_msr = wd_ops->perfctr;
373 evntsel_msr = wd_ops->evntsel;
375 /* KVM doesn't implement this MSR */
376 if (wrmsr_safe(perfctr_msr, 0, 0) < 0)
379 evntsel = P6_EVNTSEL_INT
384 /* setup the timer */
385 wrmsr(evntsel_msr, evntsel, 0);
386 nmi_hz = adjust_for_32bit_ctr(nmi_hz);
387 write_watchdog_counter32(perfctr_msr, "P6_PERFCTR0",nmi_hz);
389 /* initialize the wd struct before enabling */
390 wd->perfctr_msr = perfctr_msr;
391 wd->evntsel_msr = evntsel_msr;
392 wd->cccr_msr = 0; /* unused */
394 /* ok, everything is initialized, announce that we're set */
395 cpu_nmi_set_wd_enabled();
397 apic_write(APIC_LVTPC, APIC_DM_NMI);
398 evntsel |= P6_EVNTSEL0_ENABLE;
399 wrmsr(evntsel_msr, evntsel, 0);
404 static void p6_rearm(struct nmi_watchdog_ctlblk *wd, unsigned nmi_hz)
407 * P6 based Pentium M need to re-unmask
408 * the apic vector but it doesn't hurt
410 * ArchPerfom/Core Duo also needs this
412 apic_write(APIC_LVTPC, APIC_DM_NMI);
414 /* P6/ARCH_PERFMON has 32 bit counter write */
415 write_watchdog_counter32(wd->perfctr_msr, NULL,nmi_hz);
418 static const struct wd_ops p6_wd_ops = {
419 .reserve = single_msr_reserve,
420 .unreserve = single_msr_unreserve,
421 .setup = setup_p6_watchdog,
423 .stop = single_msr_stop_watchdog,
424 .perfctr = MSR_P6_PERFCTR0,
425 .evntsel = MSR_P6_EVNTSEL0,
426 .checkbit = 1ULL << 39,
430 * Intel P4 performance counters.
431 * By far the most complicated of all.
433 #define MSR_P4_MISC_ENABLE_PERF_AVAIL (1 << 7)
434 #define P4_ESCR_EVENT_SELECT(N) ((N) << 25)
435 #define P4_ESCR_OS (1 << 3)
436 #define P4_ESCR_USR (1 << 2)
437 #define P4_CCCR_OVF_PMI0 (1 << 26)
438 #define P4_CCCR_OVF_PMI1 (1 << 27)
439 #define P4_CCCR_THRESHOLD(N) ((N) << 20)
440 #define P4_CCCR_COMPLEMENT (1 << 19)
441 #define P4_CCCR_COMPARE (1 << 18)
442 #define P4_CCCR_REQUIRED (3 << 16)
443 #define P4_CCCR_ESCR_SELECT(N) ((N) << 13)
444 #define P4_CCCR_ENABLE (1 << 12)
445 #define P4_CCCR_OVF (1 << 31)
447 #define P4_CONTROLS 18
448 static unsigned int p4_controls[18] = {
469 * Set up IQ_COUNTER0 to behave like a clock, by having IQ_CCCR0 filter
470 * CRU_ESCR0 (with any non-null event selector) through a complemented
471 * max threshold. [IA32-Vol3, Section 14.9.9]
473 static int setup_p4_watchdog(unsigned nmi_hz)
475 unsigned int perfctr_msr, evntsel_msr, cccr_msr;
476 unsigned int evntsel, cccr_val;
477 unsigned int misc_enable, dummy;
479 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
481 rdmsr(MSR_IA32_MISC_ENABLE, misc_enable, dummy);
482 if (!(misc_enable & MSR_P4_MISC_ENABLE_PERF_AVAIL))
486 /* detect which hyperthread we are on */
487 if (smp_num_siblings == 2) {
488 unsigned int ebx, apicid;
491 apicid = (ebx >> 24) & 0xff;
498 * performance counters are shared resources
499 * assign each hyperthread its own set
500 * (re-use the ESCR0 register, seems safe
501 * and keeps the cccr_val the same)
505 perfctr_msr = MSR_P4_IQ_PERFCTR0;
506 evntsel_msr = MSR_P4_CRU_ESCR0;
507 cccr_msr = MSR_P4_IQ_CCCR0;
508 cccr_val = P4_CCCR_OVF_PMI0 | P4_CCCR_ESCR_SELECT(4);
511 * If we're on the kdump kernel or other situation, we may
512 * still have other performance counter registers set to
513 * interrupt and they'll keep interrupting forever because
514 * of the P4_CCCR_OVF quirk. So we need to ACK all the
515 * pending interrupts and disable all the registers here,
516 * before reenabling the NMI delivery. Refer to p4_rearm()
517 * about the P4_CCCR_OVF quirk.
520 unsigned int low, high;
523 for (i = 0; i < P4_CONTROLS; i++) {
524 rdmsr(p4_controls[i], low, high);
525 low &= ~(P4_CCCR_ENABLE | P4_CCCR_OVF);
526 wrmsr(p4_controls[i], low, high);
531 perfctr_msr = MSR_P4_IQ_PERFCTR1;
532 evntsel_msr = MSR_P4_CRU_ESCR0;
533 cccr_msr = MSR_P4_IQ_CCCR1;
535 /* Pentium 4 D processors don't support P4_CCCR_OVF_PMI1 */
536 if (boot_cpu_data.x86_model == 4 && boot_cpu_data.x86_mask == 4)
537 cccr_val = P4_CCCR_OVF_PMI0;
539 cccr_val = P4_CCCR_OVF_PMI1;
540 cccr_val |= P4_CCCR_ESCR_SELECT(4);
543 evntsel = P4_ESCR_EVENT_SELECT(0x3F)
547 cccr_val |= P4_CCCR_THRESHOLD(15)
552 wrmsr(evntsel_msr, evntsel, 0);
553 wrmsr(cccr_msr, cccr_val, 0);
554 write_watchdog_counter(perfctr_msr, "P4_IQ_COUNTER0", nmi_hz);
556 wd->perfctr_msr = perfctr_msr;
557 wd->evntsel_msr = evntsel_msr;
558 wd->cccr_msr = cccr_msr;
560 /* ok, everything is initialized, announce that we're set */
561 cpu_nmi_set_wd_enabled();
563 apic_write(APIC_LVTPC, APIC_DM_NMI);
564 cccr_val |= P4_CCCR_ENABLE;
565 wrmsr(cccr_msr, cccr_val, 0);
569 static void stop_p4_watchdog(void)
571 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
572 wrmsr(wd->cccr_msr, 0, 0);
573 wrmsr(wd->evntsel_msr, 0, 0);
576 static int p4_reserve(void)
578 if (!reserve_perfctr_nmi(MSR_P4_IQ_PERFCTR0))
581 if (smp_num_siblings > 1 && !reserve_perfctr_nmi(MSR_P4_IQ_PERFCTR1))
584 if (!reserve_evntsel_nmi(MSR_P4_CRU_ESCR0))
586 /* RED-PEN why is ESCR1 not reserved here? */
590 if (smp_num_siblings > 1)
591 release_perfctr_nmi(MSR_P4_IQ_PERFCTR1);
594 release_perfctr_nmi(MSR_P4_IQ_PERFCTR0);
598 static void p4_unreserve(void)
601 if (smp_num_siblings > 1)
602 release_perfctr_nmi(MSR_P4_IQ_PERFCTR1);
604 release_evntsel_nmi(MSR_P4_CRU_ESCR0);
605 release_perfctr_nmi(MSR_P4_IQ_PERFCTR0);
608 static void p4_rearm(struct nmi_watchdog_ctlblk *wd, unsigned nmi_hz)
613 * - An overflown perfctr will assert its interrupt
614 * until the OVF flag in its CCCR is cleared.
615 * - LVTPC is masked on interrupt and must be
616 * unmasked by the LVTPC handler.
618 rdmsrl(wd->cccr_msr, dummy);
619 dummy &= ~P4_CCCR_OVF;
620 wrmsrl(wd->cccr_msr, dummy);
621 apic_write(APIC_LVTPC, APIC_DM_NMI);
622 /* start the cycle over again */
623 write_watchdog_counter(wd->perfctr_msr, NULL, nmi_hz);
626 static const struct wd_ops p4_wd_ops = {
627 .reserve = p4_reserve,
628 .unreserve = p4_unreserve,
629 .setup = setup_p4_watchdog,
631 .stop = stop_p4_watchdog,
632 /* RED-PEN this is wrong for the other sibling */
633 .perfctr = MSR_P4_BPU_PERFCTR0,
634 .evntsel = MSR_P4_BSU_ESCR0,
635 .checkbit = 1ULL << 39,
639 * Watchdog using the Intel architected PerfMon.
640 * Used for Core2 and hopefully all future Intel CPUs.
642 #define ARCH_PERFMON_NMI_EVENT_SEL ARCH_PERFMON_UNHALTED_CORE_CYCLES_SEL
643 #define ARCH_PERFMON_NMI_EVENT_UMASK ARCH_PERFMON_UNHALTED_CORE_CYCLES_UMASK
645 static struct wd_ops intel_arch_wd_ops;
647 static int setup_intel_arch_watchdog(unsigned nmi_hz)
650 union cpuid10_eax eax;
652 unsigned int perfctr_msr, evntsel_msr;
653 unsigned int evntsel;
654 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
657 * Check whether the Architectural PerfMon supports
658 * Unhalted Core Cycles Event or not.
659 * NOTE: Corresponding bit = 0 in ebx indicates event present.
661 cpuid(10, &(eax.full), &ebx, &unused, &unused);
662 if ((eax.split.mask_length < (ARCH_PERFMON_UNHALTED_CORE_CYCLES_INDEX+1)) ||
663 (ebx & ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT))
666 perfctr_msr = wd_ops->perfctr;
667 evntsel_msr = wd_ops->evntsel;
669 wrmsrl(perfctr_msr, 0UL);
671 evntsel = ARCH_PERFMON_EVENTSEL_INT
672 | ARCH_PERFMON_EVENTSEL_OS
673 | ARCH_PERFMON_EVENTSEL_USR
674 | ARCH_PERFMON_NMI_EVENT_SEL
675 | ARCH_PERFMON_NMI_EVENT_UMASK;
677 /* setup the timer */
678 wrmsr(evntsel_msr, evntsel, 0);
679 nmi_hz = adjust_for_32bit_ctr(nmi_hz);
680 write_watchdog_counter32(perfctr_msr, "INTEL_ARCH_PERFCTR0", nmi_hz);
682 wd->perfctr_msr = perfctr_msr;
683 wd->evntsel_msr = evntsel_msr;
684 wd->cccr_msr = 0; /* unused */
686 /* ok, everything is initialized, announce that we're set */
687 cpu_nmi_set_wd_enabled();
689 apic_write(APIC_LVTPC, APIC_DM_NMI);
690 evntsel |= ARCH_PERFMON_EVENTSEL0_ENABLE;
691 wrmsr(evntsel_msr, evntsel, 0);
692 intel_arch_wd_ops.checkbit = 1ULL << (eax.split.bit_width - 1);
696 static struct wd_ops intel_arch_wd_ops __read_mostly = {
697 .reserve = single_msr_reserve,
698 .unreserve = single_msr_unreserve,
699 .setup = setup_intel_arch_watchdog,
701 .stop = single_msr_stop_watchdog,
702 .perfctr = MSR_ARCH_PERFMON_PERFCTR1,
703 .evntsel = MSR_ARCH_PERFMON_EVENTSEL1,
706 static void probe_nmi_watchdog(void)
708 switch (boot_cpu_data.x86_vendor) {
710 if (boot_cpu_data.x86 != 6 && boot_cpu_data.x86 != 15 &&
711 boot_cpu_data.x86 != 16)
715 case X86_VENDOR_INTEL:
717 * Work around Core Duo (Yonah) errata AE49 where perfctr1
718 * doesn't have a working enable bit.
720 if (boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model == 14) {
721 intel_arch_wd_ops.perfctr = MSR_ARCH_PERFMON_PERFCTR0;
722 intel_arch_wd_ops.evntsel = MSR_ARCH_PERFMON_EVENTSEL0;
724 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON)) {
725 wd_ops = &intel_arch_wd_ops;
728 switch (boot_cpu_data.x86) {
730 if (boot_cpu_data.x86_model > 13)
745 /* Interface to nmi.c */
747 int lapic_watchdog_init(unsigned nmi_hz)
750 probe_nmi_watchdog();
752 printk(KERN_INFO "NMI watchdog: CPU not supported\n");
756 if (!wd_ops->reserve()) {
758 "NMI watchdog: cannot reserve perfctrs\n");
763 if (!(wd_ops->setup(nmi_hz))) {
764 printk(KERN_ERR "Cannot setup NMI watchdog on CPU %d\n",
765 raw_smp_processor_id());
772 void lapic_watchdog_stop(void)
778 unsigned lapic_adjust_nmi_hz(unsigned hz)
780 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
781 if (wd->perfctr_msr == MSR_P6_PERFCTR0 ||
782 wd->perfctr_msr == MSR_ARCH_PERFMON_PERFCTR1)
783 hz = adjust_for_32bit_ctr(hz);
787 int lapic_wd_event(unsigned nmi_hz)
789 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
792 rdmsrl(wd->perfctr_msr, ctr);
793 if (ctr & wd_ops->checkbit) /* perfctr still running? */
796 wd_ops->rearm(wd, nmi_hz);
800 int lapic_watchdog_ok(void)
802 return wd_ops != NULL;