blob: dfab9f1673662ae9dc9963cf1de216402164877d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/nmi.c
3 *
4 * NMI watchdog support on APIC systems
5 *
6 * Started by Ingo Molnar <mingo@redhat.com>
7 *
8 * Fixes:
9 * Mikael Pettersson : AMD K7 support for local APIC NMI watchdog.
10 * Mikael Pettersson : Power Management for local APIC NMI watchdog.
11 * Pavel Machek and
12 * Mikael Pettersson : PM converted to driver model. Disable/enable API.
13 */
14
Andrew Mortonbb81a092006-12-07 02:14:01 +010015#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/sysctl.h>
Andi Kleeneddb6fb2006-02-03 21:50:41 +010022#include <linux/kprobes.h>
Andrew Mortonbb81a092006-12-07 02:14:01 +010023#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/proto.h>
28#include <asm/kdebug.h>
Andi Kleen553f2652006-04-07 19:49:57 +020029#include <asm/mce.h>
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +020030#include <asm/intel_arch_perfmon.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Andi Kleen29cbc782006-09-30 01:47:55 +020032int unknown_nmi_panic;
33int nmi_watchdog_enabled;
34int panic_on_unrecovered_nmi;
35
Don Zickus828f0af2006-09-26 10:52:26 +020036/* perfctr_nmi_owner tracks the ownership of the perfctr registers:
37 * evtsel_nmi_owner tracks the ownership of the event selection
38 * - different performance counters/ event selection may be reserved for
39 * different subsystems this reservation system just tries to coordinate
40 * things a little
41 */
Andrew Mortonbb81a092006-12-07 02:14:01 +010042
Don Zickus828f0af2006-09-26 10:52:26 +020043/* this number is calculated from Intel's MSR_P4_CRU_ESCR5 register and it's
44 * offset from MSR_P4_BSU_ESCR0. It will be the max for all platforms (for now)
45 */
46#define NMI_MAX_COUNTER_BITS 66
Andi Kleen1714f9b2007-04-16 10:30:27 +020047#define NMI_MAX_COUNTER_LONGS BITS_TO_LONGS(NMI_MAX_COUNTER_BITS)
48
49static DEFINE_PER_CPU(unsigned, perfctr_nmi_owner[NMI_MAX_COUNTER_LONGS]);
50static DEFINE_PER_CPU(unsigned, evntsel_nmi_owner[NMI_MAX_COUNTER_LONGS]);
51
52static cpumask_t backtrace_mask = CPU_MASK_NONE;
Don Zickus828f0af2006-09-26 10:52:26 +020053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* nmi_active:
Don Zickusf2802e72006-09-26 10:52:26 +020055 * >0: the lapic NMI watchdog is active, but can be disabled
56 * <0: the lapic NMI watchdog has not been set up, and cannot
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * be enabled
Don Zickusf2802e72006-09-26 10:52:26 +020058 * 0: the lapic NMI watchdog is disabled, but can be enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 */
Don Zickusf2802e72006-09-26 10:52:26 +020060atomic_t nmi_active = ATOMIC_INIT(0); /* oprofile uses this */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061int panic_on_timeout;
62
63unsigned int nmi_watchdog = NMI_DEFAULT;
64static unsigned int nmi_hz = HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Don Zickusf2802e72006-09-26 10:52:26 +020066struct 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 */
72};
73static DEFINE_PER_CPU(struct nmi_watchdog_ctlblk, nmi_watchdog_ctlblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Don Zickusf2802e72006-09-26 10:52:26 +020075/* local prototypes */
Don Zickusf2802e72006-09-26 10:52:26 +020076static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu);
Andi Kleen75152112005-05-16 21:53:34 -070077
Don Zickus828f0af2006-09-26 10:52:26 +020078/* converts an msr to an appropriate reservation bit */
79static inline unsigned int nmi_perfctr_msr_to_bit(unsigned int msr)
80{
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:
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +020086 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
87 return (msr - MSR_ARCH_PERFMON_PERFCTR0);
88 else
89 return (msr - MSR_P4_BPU_PERFCTR0);
Don Zickus828f0af2006-09-26 10:52:26 +020090 }
91 return 0;
92}
93
94/* converts an msr to an appropriate reservation bit */
95static inline unsigned int nmi_evntsel_msr_to_bit(unsigned int msr)
96{
97 /* returns the bit offset of the event selection register */
98 switch (boot_cpu_data.x86_vendor) {
99 case X86_VENDOR_AMD:
100 return (msr - MSR_K7_EVNTSEL0);
101 case X86_VENDOR_INTEL:
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200102 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
103 return (msr - MSR_ARCH_PERFMON_EVENTSEL0);
104 else
105 return (msr - MSR_P4_BSU_ESCR0);
Don Zickus828f0af2006-09-26 10:52:26 +0200106 }
107 return 0;
108}
109
110/* checks for a bit availability (hack for oprofile) */
111int avail_to_resrv_perfctr_nmi_bit(unsigned int counter)
112{
Andi Kleen89e07562007-04-02 12:14:12 +0200113 int cpu;
Don Zickus828f0af2006-09-26 10:52:26 +0200114 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
Andi Kleen89e07562007-04-02 12:14:12 +0200115 for_each_possible_cpu (cpu) {
116 if (test_bit(counter, &per_cpu(perfctr_nmi_owner, cpu)))
117 return 0;
118 }
119 return 1;
Don Zickus828f0af2006-09-26 10:52:26 +0200120}
121
122/* checks the an msr for availability */
123int avail_to_resrv_perfctr_nmi(unsigned int msr)
124{
125 unsigned int counter;
Andi Kleen89e07562007-04-02 12:14:12 +0200126 int cpu;
Don Zickus828f0af2006-09-26 10:52:26 +0200127
128 counter = nmi_perfctr_msr_to_bit(msr);
129 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
130
Andi Kleen89e07562007-04-02 12:14:12 +0200131 for_each_possible_cpu (cpu) {
132 if (test_bit(counter, &per_cpu(perfctr_nmi_owner, cpu)))
133 return 0;
134 }
135 return 1;
136}
137
138static int __reserve_perfctr_nmi(int cpu, unsigned int msr)
139{
140 unsigned int counter;
141 if (cpu < 0)
142 cpu = smp_processor_id();
143
144 counter = nmi_perfctr_msr_to_bit(msr);
145 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
146
147 if (!test_and_set_bit(counter, &per_cpu(perfctr_nmi_owner, cpu)))
148 return 1;
149 return 0;
150}
151
152static void __release_perfctr_nmi(int cpu, unsigned int msr)
153{
154 unsigned int counter;
155 if (cpu < 0)
156 cpu = smp_processor_id();
157
158 counter = nmi_perfctr_msr_to_bit(msr);
159 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
160
161 clear_bit(counter, &per_cpu(perfctr_nmi_owner, cpu));
Don Zickus828f0af2006-09-26 10:52:26 +0200162}
163
164int reserve_perfctr_nmi(unsigned int msr)
165{
Andi Kleen89e07562007-04-02 12:14:12 +0200166 int cpu, i;
167 for_each_possible_cpu (cpu) {
168 if (!__reserve_perfctr_nmi(cpu, msr)) {
169 for_each_possible_cpu (i) {
170 if (i >= cpu)
171 break;
172 __release_perfctr_nmi(i, msr);
173 }
174 return 0;
175 }
176 }
177 return 1;
Don Zickus828f0af2006-09-26 10:52:26 +0200178}
179
180void release_perfctr_nmi(unsigned int msr)
181{
Andi Kleen89e07562007-04-02 12:14:12 +0200182 int cpu;
183 for_each_possible_cpu (cpu)
184 __release_perfctr_nmi(cpu, msr);
Don Zickus828f0af2006-09-26 10:52:26 +0200185}
186
Andi Kleen89e07562007-04-02 12:14:12 +0200187int __reserve_evntsel_nmi(int cpu, unsigned int msr)
Don Zickus828f0af2006-09-26 10:52:26 +0200188{
189 unsigned int counter;
Andi Kleen89e07562007-04-02 12:14:12 +0200190 if (cpu < 0)
191 cpu = smp_processor_id();
Don Zickus828f0af2006-09-26 10:52:26 +0200192
193 counter = nmi_evntsel_msr_to_bit(msr);
194 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
195
Andi Kleen89e07562007-04-02 12:14:12 +0200196 if (!test_and_set_bit(counter, &per_cpu(evntsel_nmi_owner, cpu)[0]))
Don Zickus828f0af2006-09-26 10:52:26 +0200197 return 1;
198 return 0;
199}
200
Andi Kleen89e07562007-04-02 12:14:12 +0200201static void __release_evntsel_nmi(int cpu, unsigned int msr)
Don Zickus828f0af2006-09-26 10:52:26 +0200202{
203 unsigned int counter;
Andi Kleen89e07562007-04-02 12:14:12 +0200204 if (cpu < 0)
205 cpu = smp_processor_id();
Don Zickus828f0af2006-09-26 10:52:26 +0200206
207 counter = nmi_evntsel_msr_to_bit(msr);
208 BUG_ON(counter > NMI_MAX_COUNTER_BITS);
209
Andi Kleen89e07562007-04-02 12:14:12 +0200210 clear_bit(counter, &per_cpu(evntsel_nmi_owner, cpu)[0]);
211}
212
213int reserve_evntsel_nmi(unsigned int msr)
214{
215 int cpu, i;
216 for_each_possible_cpu (cpu) {
217 if (!__reserve_evntsel_nmi(cpu, msr)) {
218 for_each_possible_cpu (i) {
219 if (i >= cpu)
220 break;
221 __release_evntsel_nmi(i, msr);
222 }
223 return 0;
224 }
225 }
226 return 1;
227}
228
229void release_evntsel_nmi(unsigned int msr)
230{
231 int cpu;
232 for_each_possible_cpu (cpu) {
233 __release_evntsel_nmi(cpu, msr);
234 }
Don Zickus828f0af2006-09-26 10:52:26 +0200235}
236
Ashok Raje6982c62005-06-25 14:54:58 -0700237static __cpuinit inline int nmi_known_cpu(void)
Andi Kleen75152112005-05-16 21:53:34 -0700238{
239 switch (boot_cpu_data.x86_vendor) {
240 case X86_VENDOR_AMD:
Andi Kleen0a4599c2007-02-13 13:26:25 +0100241 return boot_cpu_data.x86 == 15 || boot_cpu_data.x86 == 16;
Andi Kleen75152112005-05-16 21:53:34 -0700242 case X86_VENDOR_INTEL:
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200243 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
244 return 1;
245 else
246 return (boot_cpu_data.x86 == 15);
Andi Kleen75152112005-05-16 21:53:34 -0700247 }
248 return 0;
249}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251/* Run after command line and cpu_init init, but before all other checks */
Don Zickuse33e89a2006-09-26 10:52:27 +0200252void nmi_watchdog_default(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 if (nmi_watchdog != NMI_DEFAULT)
255 return;
Linus Torvalds8ce5e3e2007-03-14 17:50:48 -0700256 nmi_watchdog = NMI_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Ravikiran G Thirumalai92715e22006-12-09 21:33:35 +0100259static int endflag __initdata = 0;
260
Andi Kleen75152112005-05-16 21:53:34 -0700261#ifdef CONFIG_SMP
262/* The performance counters used by NMI_LOCAL_APIC don't trigger when
263 * the CPU is idle. To make sure the NMI watchdog really ticks on all
264 * CPUs during the test make them busy.
265 */
266static __init void nmi_cpu_busy(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Ingo Molnar366c7f52006-07-03 00:25:25 -0700268 local_irq_enable_in_hardirq();
Andi Kleen75152112005-05-16 21:53:34 -0700269 /* Intentionally don't use cpu_relax here. This is
270 to make sure that the performance counter really ticks,
271 even if there is a simulator or similar that catches the
272 pause instruction. On a real HT machine this is fine because
273 all other CPUs are busy with "useless" delay loops and don't
274 care if they get somewhat less cycles. */
Ravikiran G Thirumalai92715e22006-12-09 21:33:35 +0100275 while (endflag == 0)
276 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
Andi Kleen75152112005-05-16 21:53:34 -0700278#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Venkatesh Pallipadi16761932007-02-13 13:26:22 +0100280static unsigned int adjust_for_32bit_ctr(unsigned int hz)
281{
282 unsigned int retval = hz;
283
284 /*
285 * On Intel CPUs with ARCH_PERFMON only 32 bits in the counter
286 * are writable, with higher bits sign extending from bit 31.
287 * So, we can only program the counter with 31 bit values and
288 * 32nd bit should be 1, for 33.. to be 1.
289 * Find the appropriate nmi_hz
290 */
291 if ((((u64)cpu_khz * 1000) / retval) > 0x7fffffffULL) {
292 retval = ((u64)cpu_khz * 1000) / 0x7fffffffUL + 1;
293 }
294 return retval;
295}
296
Andi Kleen75152112005-05-16 21:53:34 -0700297int __init check_nmi_watchdog (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Andi Kleenac6b9312005-05-16 21:53:19 -0700299 int *counts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 int cpu;
301
Don Zickusf2802e72006-09-26 10:52:26 +0200302 if ((nmi_watchdog == NMI_NONE) || (nmi_watchdog == NMI_DEFAULT))
303 return 0;
304
305 if (!atomic_read(&nmi_active))
306 return 0;
307
Andi Kleen75152112005-05-16 21:53:34 -0700308 counts = kmalloc(NR_CPUS * sizeof(int), GFP_KERNEL);
309 if (!counts)
310 return -1;
Jack F Vogel67701ae2005-05-01 08:58:48 -0700311
Andi Kleen75152112005-05-16 21:53:34 -0700312 printk(KERN_INFO "testing NMI watchdog ... ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Andi Kleen7554c3f2006-01-11 22:45:45 +0100314#ifdef CONFIG_SMP
Andi Kleen75152112005-05-16 21:53:34 -0700315 if (nmi_watchdog == NMI_LOCAL_APIC)
316 smp_call_function(nmi_cpu_busy, (void *)&endflag, 0, 0);
Andi Kleen7554c3f2006-01-11 22:45:45 +0100317#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 for (cpu = 0; cpu < NR_CPUS; cpu++)
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100320 counts[cpu] = cpu_pda(cpu)->__nmi_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 local_irq_enable();
Andi Kleen0fb2ebf2007-04-02 12:14:12 +0200322 mdelay((20*1000)/nmi_hz); // wait 20 ticks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Andrew Morton394e3902006-03-23 03:01:05 -0800324 for_each_online_cpu(cpu) {
Don Zickusf2802e72006-09-26 10:52:26 +0200325 if (!per_cpu(nmi_watchdog_ctlblk, cpu).enabled)
326 continue;
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100327 if (cpu_pda(cpu)->__nmi_count - counts[cpu] <= 5) {
Andi Kleen75152112005-05-16 21:53:34 -0700328 printk("CPU#%d: NMI appears to be stuck (%d->%d)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 cpu,
Andi Kleen75152112005-05-16 21:53:34 -0700330 counts[cpu],
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100331 cpu_pda(cpu)->__nmi_count);
Don Zickusf2802e72006-09-26 10:52:26 +0200332 per_cpu(nmi_watchdog_ctlblk, cpu).enabled = 0;
333 atomic_dec(&nmi_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335 }
Don Zickusf2802e72006-09-26 10:52:26 +0200336 if (!atomic_read(&nmi_active)) {
337 kfree(counts);
338 atomic_set(&nmi_active, -1);
Ravikiran G Thirumalai92715e22006-12-09 21:33:35 +0100339 endflag = 1;
Don Zickusf2802e72006-09-26 10:52:26 +0200340 return -1;
341 }
Andi Kleen75152112005-05-16 21:53:34 -0700342 endflag = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 printk("OK.\n");
344
345 /* now that we know it works we can reduce NMI frequency to
346 something more reasonable; makes a difference in some configs */
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200347 if (nmi_watchdog == NMI_LOCAL_APIC) {
348 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 nmi_hz = 1;
Venkatesh Pallipadi16761932007-02-13 13:26:22 +0100351 if (wd->perfctr_msr == MSR_ARCH_PERFMON_PERFCTR0)
352 nmi_hz = adjust_for_32bit_ctr(nmi_hz);
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Andi Kleenac6b9312005-05-16 21:53:19 -0700355 kfree(counts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 0;
357}
358
359int __init setup_nmi_watchdog(char *str)
360{
361 int nmi;
362
363 if (!strncmp(str,"panic",5)) {
364 panic_on_timeout = 1;
365 str = strchr(str, ',');
366 if (!str)
367 return 1;
368 ++str;
369 }
370
371 get_option(&str, &nmi);
372
Don Zickusf2802e72006-09-26 10:52:26 +0200373 if ((nmi >= NMI_INVALID) || (nmi < NMI_NONE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 0;
Don Zickusf2802e72006-09-26 10:52:26 +0200375
Andi Kleen75152112005-05-16 21:53:34 -0700376 nmi_watchdog = nmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 1;
378}
379
380__setup("nmi_watchdog=", setup_nmi_watchdog);
381
382static void disable_lapic_nmi_watchdog(void)
383{
Don Zickusf2802e72006-09-26 10:52:26 +0200384 BUG_ON(nmi_watchdog != NMI_LOCAL_APIC);
385
386 if (atomic_read(&nmi_active) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return;
Don Zickusf2802e72006-09-26 10:52:26 +0200388
389 on_each_cpu(stop_apic_nmi_watchdog, NULL, 0, 1);
390
391 BUG_ON(atomic_read(&nmi_active) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394static void enable_lapic_nmi_watchdog(void)
395{
Don Zickusf2802e72006-09-26 10:52:26 +0200396 BUG_ON(nmi_watchdog != NMI_LOCAL_APIC);
397
398 /* are we already enabled */
399 if (atomic_read(&nmi_active) != 0)
400 return;
401
402 /* are we lapic aware */
403 if (nmi_known_cpu() <= 0)
404 return;
405
406 on_each_cpu(setup_apic_nmi_watchdog, NULL, 0, 1);
407 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410void disable_timer_nmi_watchdog(void)
411{
Don Zickusf2802e72006-09-26 10:52:26 +0200412 BUG_ON(nmi_watchdog != NMI_IO_APIC);
413
414 if (atomic_read(&nmi_active) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return;
416
417 disable_irq(0);
Don Zickusf2802e72006-09-26 10:52:26 +0200418 on_each_cpu(stop_apic_nmi_watchdog, NULL, 0, 1);
419
420 BUG_ON(atomic_read(&nmi_active) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423void enable_timer_nmi_watchdog(void)
424{
Don Zickusf2802e72006-09-26 10:52:26 +0200425 BUG_ON(nmi_watchdog != NMI_IO_APIC);
426
427 if (atomic_read(&nmi_active) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 touch_nmi_watchdog();
Don Zickusf2802e72006-09-26 10:52:26 +0200429 on_each_cpu(setup_apic_nmi_watchdog, NULL, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 enable_irq(0);
431 }
432}
433
Ingo Molnar5d0e6002007-02-13 13:26:24 +0100434static void __acpi_nmi_disable(void *__unused)
435{
436 apic_write(APIC_LVT0, APIC_DM_NMI | APIC_LVT_MASKED);
437}
438
439/*
440 * Disable timer based NMIs on all CPUs:
441 */
442void acpi_nmi_disable(void)
443{
444 if (atomic_read(&nmi_active) && nmi_watchdog == NMI_IO_APIC)
445 on_each_cpu(__acpi_nmi_disable, NULL, 0, 1);
446}
447
448static void __acpi_nmi_enable(void *__unused)
449{
450 apic_write(APIC_LVT0, APIC_DM_NMI);
451}
452
453/*
454 * Enable timer based NMIs on all CPUs:
455 */
456void acpi_nmi_enable(void)
457{
458 if (atomic_read(&nmi_active) && nmi_watchdog == NMI_IO_APIC)
459 on_each_cpu(__acpi_nmi_enable, NULL, 0, 1);
460}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#ifdef CONFIG_PM
462
463static int nmi_pm_active; /* nmi_active before suspend */
464
Pavel Machek829ca9a2005-09-03 15:56:56 -0700465static int lapic_nmi_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Shaohua Li4038f902006-09-26 10:52:27 +0200467 /* only CPU0 goes here, other CPUs should be offline */
Don Zickusf2802e72006-09-26 10:52:26 +0200468 nmi_pm_active = atomic_read(&nmi_active);
Shaohua Li4038f902006-09-26 10:52:27 +0200469 stop_apic_nmi_watchdog(NULL);
470 BUG_ON(atomic_read(&nmi_active) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 0;
472}
473
474static int lapic_nmi_resume(struct sys_device *dev)
475{
Shaohua Li4038f902006-09-26 10:52:27 +0200476 /* only CPU0 goes here, other CPUs should be offline */
477 if (nmi_pm_active > 0) {
478 setup_apic_nmi_watchdog(NULL);
479 touch_nmi_watchdog();
480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return 0;
482}
483
484static struct sysdev_class nmi_sysclass = {
485 set_kset_name("lapic_nmi"),
486 .resume = lapic_nmi_resume,
487 .suspend = lapic_nmi_suspend,
488};
489
490static struct sys_device device_lapic_nmi = {
491 .id = 0,
492 .cls = &nmi_sysclass,
493};
494
495static int __init init_lapic_nmi_sysfs(void)
496{
497 int error;
498
Don Zickusf2802e72006-09-26 10:52:26 +0200499 /* should really be a BUG_ON but b/c this is an
500 * init call, it just doesn't work. -dcz
501 */
502 if (nmi_watchdog != NMI_LOCAL_APIC)
503 return 0;
504
505 if ( atomic_read(&nmi_active) < 0 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return 0;
507
508 error = sysdev_class_register(&nmi_sysclass);
509 if (!error)
510 error = sysdev_register(&device_lapic_nmi);
511 return error;
512}
513/* must come after the local APIC's device_initcall() */
514late_initcall(init_lapic_nmi_sysfs);
515
516#endif /* CONFIG_PM */
517
Don Zickusf2802e72006-09-26 10:52:26 +0200518/*
519 * Activate the NMI watchdog via the local APIC.
520 * Original code written by Keith Owens.
521 */
522
523/* Note that these events don't tick when the CPU idles. This means
524 the frequency varies with CPU load. */
525
526#define K7_EVNTSEL_ENABLE (1 << 22)
527#define K7_EVNTSEL_INT (1 << 20)
528#define K7_EVNTSEL_OS (1 << 17)
529#define K7_EVNTSEL_USR (1 << 16)
530#define K7_EVENT_CYCLES_PROCESSOR_IS_RUNNING 0x76
531#define K7_NMI_EVENT K7_EVENT_CYCLES_PROCESSOR_IS_RUNNING
532
Don Zickus828f0af2006-09-26 10:52:26 +0200533static int setup_k7_watchdog(void)
Andi Kleen75152112005-05-16 21:53:34 -0700534{
Don Zickusf2802e72006-09-26 10:52:26 +0200535 unsigned int perfctr_msr, evntsel_msr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned int evntsel;
Don Zickusf2802e72006-09-26 10:52:26 +0200537 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Don Zickusf2802e72006-09-26 10:52:26 +0200539 perfctr_msr = MSR_K7_PERFCTR0;
540 evntsel_msr = MSR_K7_EVNTSEL0;
Andi Kleen89e07562007-04-02 12:14:12 +0200541 if (!__reserve_perfctr_nmi(-1, perfctr_msr))
Don Zickus828f0af2006-09-26 10:52:26 +0200542 goto fail;
543
Andi Kleen89e07562007-04-02 12:14:12 +0200544 if (!__reserve_evntsel_nmi(-1, evntsel_msr))
Don Zickus828f0af2006-09-26 10:52:26 +0200545 goto fail1;
546
547 /* Simulator may not support it */
Don Zickusf2802e72006-09-26 10:52:26 +0200548 if (checking_wrmsrl(evntsel_msr, 0UL))
Don Zickus828f0af2006-09-26 10:52:26 +0200549 goto fail2;
Don Zickusf2802e72006-09-26 10:52:26 +0200550 wrmsrl(perfctr_msr, 0UL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 evntsel = K7_EVNTSEL_INT
553 | K7_EVNTSEL_OS
554 | K7_EVNTSEL_USR
555 | K7_NMI_EVENT;
556
Don Zickusf2802e72006-09-26 10:52:26 +0200557 /* setup the timer */
558 wrmsr(evntsel_msr, evntsel, 0);
559 wrmsrl(perfctr_msr, -((u64)cpu_khz * 1000 / nmi_hz));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 apic_write(APIC_LVTPC, APIC_DM_NMI);
561 evntsel |= K7_EVNTSEL_ENABLE;
Don Zickusf2802e72006-09-26 10:52:26 +0200562 wrmsr(evntsel_msr, evntsel, 0);
563
564 wd->perfctr_msr = perfctr_msr;
565 wd->evntsel_msr = evntsel_msr;
566 wd->cccr_msr = 0; //unused
567 wd->check_bit = 1ULL<<63;
Don Zickus828f0af2006-09-26 10:52:26 +0200568 return 1;
569fail2:
Andi Kleen89e07562007-04-02 12:14:12 +0200570 __release_evntsel_nmi(-1, evntsel_msr);
Don Zickus828f0af2006-09-26 10:52:26 +0200571fail1:
Andi Kleen89e07562007-04-02 12:14:12 +0200572 __release_perfctr_nmi(-1, perfctr_msr);
Don Zickus828f0af2006-09-26 10:52:26 +0200573fail:
574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Don Zickusf2802e72006-09-26 10:52:26 +0200577static void stop_k7_watchdog(void)
578{
579 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
580
581 wrmsr(wd->evntsel_msr, 0, 0);
582
Andi Kleen89e07562007-04-02 12:14:12 +0200583 __release_evntsel_nmi(-1, wd->evntsel_msr);
584 __release_perfctr_nmi(-1, wd->perfctr_msr);
Don Zickusf2802e72006-09-26 10:52:26 +0200585}
586
587/* Note that these events don't tick when the CPU idles. This means
588 the frequency varies with CPU load. */
589
590#define MSR_P4_MISC_ENABLE_PERF_AVAIL (1<<7)
591#define P4_ESCR_EVENT_SELECT(N) ((N)<<25)
592#define P4_ESCR_OS (1<<3)
593#define P4_ESCR_USR (1<<2)
594#define P4_CCCR_OVF_PMI0 (1<<26)
595#define P4_CCCR_OVF_PMI1 (1<<27)
596#define P4_CCCR_THRESHOLD(N) ((N)<<20)
597#define P4_CCCR_COMPLEMENT (1<<19)
598#define P4_CCCR_COMPARE (1<<18)
599#define P4_CCCR_REQUIRED (3<<16)
600#define P4_CCCR_ESCR_SELECT(N) ((N)<<13)
601#define P4_CCCR_ENABLE (1<<12)
602#define P4_CCCR_OVF (1<<31)
603/* Set up IQ_COUNTER0 to behave like a clock, by having IQ_CCCR0 filter
604 CRU_ESCR0 (with any non-null event selector) through a complemented
605 max threshold. [IA32-Vol3, Section 14.9.9] */
Andi Kleen75152112005-05-16 21:53:34 -0700606
607static int setup_p4_watchdog(void)
608{
Don Zickusf2802e72006-09-26 10:52:26 +0200609 unsigned int perfctr_msr, evntsel_msr, cccr_msr;
610 unsigned int evntsel, cccr_val;
Andi Kleen75152112005-05-16 21:53:34 -0700611 unsigned int misc_enable, dummy;
Don Zickusf2802e72006-09-26 10:52:26 +0200612 unsigned int ht_num;
613 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
Andi Kleen75152112005-05-16 21:53:34 -0700614
Don Zickusf2802e72006-09-26 10:52:26 +0200615 rdmsr(MSR_IA32_MISC_ENABLE, misc_enable, dummy);
Andi Kleen75152112005-05-16 21:53:34 -0700616 if (!(misc_enable & MSR_P4_MISC_ENABLE_PERF_AVAIL))
617 return 0;
618
Andi Kleen75152112005-05-16 21:53:34 -0700619#ifdef CONFIG_SMP
Don Zickusf2802e72006-09-26 10:52:26 +0200620 /* detect which hyperthread we are on */
621 if (smp_num_siblings == 2) {
622 unsigned int ebx, apicid;
Andi Kleen75152112005-05-16 21:53:34 -0700623
Don Zickusf2802e72006-09-26 10:52:26 +0200624 ebx = cpuid_ebx(1);
625 apicid = (ebx >> 24) & 0xff;
626 ht_num = apicid & 1;
627 } else
628#endif
629 ht_num = 0;
630
631 /* performance counters are shared resources
632 * assign each hyperthread its own set
633 * (re-use the ESCR0 register, seems safe
634 * and keeps the cccr_val the same)
635 */
636 if (!ht_num) {
637 /* logical cpu 0 */
638 perfctr_msr = MSR_P4_IQ_PERFCTR0;
639 evntsel_msr = MSR_P4_CRU_ESCR0;
640 cccr_msr = MSR_P4_IQ_CCCR0;
641 cccr_val = P4_CCCR_OVF_PMI0 | P4_CCCR_ESCR_SELECT(4);
642 } else {
643 /* logical cpu 1 */
644 perfctr_msr = MSR_P4_IQ_PERFCTR1;
645 evntsel_msr = MSR_P4_CRU_ESCR0;
646 cccr_msr = MSR_P4_IQ_CCCR1;
647 cccr_val = P4_CCCR_OVF_PMI1 | P4_CCCR_ESCR_SELECT(4);
648 }
649
Andi Kleen89e07562007-04-02 12:14:12 +0200650 if (!__reserve_perfctr_nmi(-1, perfctr_msr))
Don Zickus828f0af2006-09-26 10:52:26 +0200651 goto fail;
652
Andi Kleen89e07562007-04-02 12:14:12 +0200653 if (!__reserve_evntsel_nmi(-1, evntsel_msr))
Don Zickus828f0af2006-09-26 10:52:26 +0200654 goto fail1;
Andi Kleen75152112005-05-16 21:53:34 -0700655
Don Zickusf2802e72006-09-26 10:52:26 +0200656 evntsel = P4_ESCR_EVENT_SELECT(0x3F)
657 | P4_ESCR_OS
658 | P4_ESCR_USR;
659
660 cccr_val |= P4_CCCR_THRESHOLD(15)
661 | P4_CCCR_COMPLEMENT
662 | P4_CCCR_COMPARE
663 | P4_CCCR_REQUIRED;
664
665 wrmsr(evntsel_msr, evntsel, 0);
666 wrmsr(cccr_msr, cccr_val, 0);
667 wrmsrl(perfctr_msr, -((u64)cpu_khz * 1000 / nmi_hz));
Andi Kleen75152112005-05-16 21:53:34 -0700668 apic_write(APIC_LVTPC, APIC_DM_NMI);
Don Zickusf2802e72006-09-26 10:52:26 +0200669 cccr_val |= P4_CCCR_ENABLE;
670 wrmsr(cccr_msr, cccr_val, 0);
671
672 wd->perfctr_msr = perfctr_msr;
673 wd->evntsel_msr = evntsel_msr;
674 wd->cccr_msr = cccr_msr;
675 wd->check_bit = 1ULL<<39;
Andi Kleen75152112005-05-16 21:53:34 -0700676 return 1;
Don Zickus828f0af2006-09-26 10:52:26 +0200677fail1:
Andi Kleen89e07562007-04-02 12:14:12 +0200678 __release_perfctr_nmi(-1, perfctr_msr);
Don Zickus828f0af2006-09-26 10:52:26 +0200679fail:
680 return 0;
Andi Kleen75152112005-05-16 21:53:34 -0700681}
682
Don Zickusf2802e72006-09-26 10:52:26 +0200683static void stop_p4_watchdog(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Don Zickusf2802e72006-09-26 10:52:26 +0200685 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
Andi Kleen75152112005-05-16 21:53:34 -0700686
Don Zickusf2802e72006-09-26 10:52:26 +0200687 wrmsr(wd->cccr_msr, 0, 0);
688 wrmsr(wd->evntsel_msr, 0, 0);
689
Andi Kleen89e07562007-04-02 12:14:12 +0200690 __release_evntsel_nmi(-1, wd->evntsel_msr);
691 __release_perfctr_nmi(-1, wd->perfctr_msr);
Don Zickusf2802e72006-09-26 10:52:26 +0200692}
693
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200694#define ARCH_PERFMON_NMI_EVENT_SEL ARCH_PERFMON_UNHALTED_CORE_CYCLES_SEL
695#define ARCH_PERFMON_NMI_EVENT_UMASK ARCH_PERFMON_UNHALTED_CORE_CYCLES_UMASK
696
697static int setup_intel_arch_watchdog(void)
698{
699 unsigned int ebx;
700 union cpuid10_eax eax;
701 unsigned int unused;
702 unsigned int perfctr_msr, evntsel_msr;
703 unsigned int evntsel;
704 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
705
706 /*
707 * Check whether the Architectural PerfMon supports
708 * Unhalted Core Cycles Event or not.
709 * NOTE: Corresponding bit = 0 in ebx indicates event present.
710 */
711 cpuid(10, &(eax.full), &ebx, &unused, &unused);
712 if ((eax.split.mask_length < (ARCH_PERFMON_UNHALTED_CORE_CYCLES_INDEX+1)) ||
713 (ebx & ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT))
714 goto fail;
715
716 perfctr_msr = MSR_ARCH_PERFMON_PERFCTR0;
717 evntsel_msr = MSR_ARCH_PERFMON_EVENTSEL0;
718
Andi Kleen89e07562007-04-02 12:14:12 +0200719 if (!__reserve_perfctr_nmi(-1, perfctr_msr))
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200720 goto fail;
721
Andi Kleen89e07562007-04-02 12:14:12 +0200722 if (!__reserve_evntsel_nmi(-1, evntsel_msr))
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200723 goto fail1;
724
725 wrmsrl(perfctr_msr, 0UL);
726
727 evntsel = ARCH_PERFMON_EVENTSEL_INT
728 | ARCH_PERFMON_EVENTSEL_OS
729 | ARCH_PERFMON_EVENTSEL_USR
730 | ARCH_PERFMON_NMI_EVENT_SEL
731 | ARCH_PERFMON_NMI_EVENT_UMASK;
732
733 /* setup the timer */
734 wrmsr(evntsel_msr, evntsel, 0);
Venkatesh Pallipadi16761932007-02-13 13:26:22 +0100735
736 nmi_hz = adjust_for_32bit_ctr(nmi_hz);
737 wrmsr(perfctr_msr, (u32)(-((u64)cpu_khz * 1000 / nmi_hz)), 0);
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200738
739 apic_write(APIC_LVTPC, APIC_DM_NMI);
740 evntsel |= ARCH_PERFMON_EVENTSEL0_ENABLE;
741 wrmsr(evntsel_msr, evntsel, 0);
742
743 wd->perfctr_msr = perfctr_msr;
744 wd->evntsel_msr = evntsel_msr;
745 wd->cccr_msr = 0; //unused
746 wd->check_bit = 1ULL << (eax.split.bit_width - 1);
747 return 1;
748fail1:
Andi Kleen89e07562007-04-02 12:14:12 +0200749 __release_perfctr_nmi(-1, perfctr_msr);
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200750fail:
751 return 0;
752}
753
754static void stop_intel_arch_watchdog(void)
755{
756 unsigned int ebx;
757 union cpuid10_eax eax;
758 unsigned int unused;
759 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
760
761 /*
762 * Check whether the Architectural PerfMon supports
763 * Unhalted Core Cycles Event or not.
764 * NOTE: Corresponding bit = 0 in ebx indicates event present.
765 */
766 cpuid(10, &(eax.full), &ebx, &unused, &unused);
767 if ((eax.split.mask_length < (ARCH_PERFMON_UNHALTED_CORE_CYCLES_INDEX+1)) ||
768 (ebx & ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT))
769 return;
770
771 wrmsr(wd->evntsel_msr, 0, 0);
772
Andi Kleen89e07562007-04-02 12:14:12 +0200773 __release_evntsel_nmi(-1, wd->evntsel_msr);
774 __release_perfctr_nmi(-1, wd->perfctr_msr);
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200775}
776
Don Zickusf2802e72006-09-26 10:52:26 +0200777void setup_apic_nmi_watchdog(void *unused)
778{
Shaohua Li4038f902006-09-26 10:52:27 +0200779 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
780
Don Zickusf2802e72006-09-26 10:52:26 +0200781 /* only support LOCAL and IO APICs for now */
782 if ((nmi_watchdog != NMI_LOCAL_APIC) &&
783 (nmi_watchdog != NMI_IO_APIC))
784 return;
785
Shaohua Li4038f902006-09-26 10:52:27 +0200786 if (wd->enabled == 1)
787 return;
788
789 /* cheap hack to support suspend/resume */
790 /* if cpu0 is not active neither should the other cpus */
791 if ((smp_processor_id() != 0) && (atomic_read(&nmi_active) <= 0))
792 return;
793
Don Zickusf2802e72006-09-26 10:52:26 +0200794 if (nmi_watchdog == NMI_LOCAL_APIC) {
795 switch (boot_cpu_data.x86_vendor) {
796 case X86_VENDOR_AMD:
797 if (strstr(boot_cpu_data.x86_model_id, "Screwdriver"))
798 return;
799 if (!setup_k7_watchdog())
800 return;
801 break;
802 case X86_VENDOR_INTEL:
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200803 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON)) {
804 if (!setup_intel_arch_watchdog())
805 return;
806 break;
807 }
Don Zickusf2802e72006-09-26 10:52:26 +0200808 if (!setup_p4_watchdog())
809 return;
810 break;
811 default:
812 return;
813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Shaohua Li4038f902006-09-26 10:52:27 +0200815 wd->enabled = 1;
Don Zickusf2802e72006-09-26 10:52:26 +0200816 atomic_inc(&nmi_active);
817}
818
Shaohua Li4038f902006-09-26 10:52:27 +0200819void stop_apic_nmi_watchdog(void *unused)
Don Zickusf2802e72006-09-26 10:52:26 +0200820{
Shaohua Li4038f902006-09-26 10:52:27 +0200821 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
822
Don Zickusf2802e72006-09-26 10:52:26 +0200823 /* only support LOCAL and IO APICs for now */
824 if ((nmi_watchdog != NMI_LOCAL_APIC) &&
825 (nmi_watchdog != NMI_IO_APIC))
826 return;
827
Shaohua Li4038f902006-09-26 10:52:27 +0200828 if (wd->enabled == 0)
829 return;
830
Don Zickusf2802e72006-09-26 10:52:26 +0200831 if (nmi_watchdog == NMI_LOCAL_APIC) {
832 switch (boot_cpu_data.x86_vendor) {
833 case X86_VENDOR_AMD:
834 if (strstr(boot_cpu_data.x86_model_id, "Screwdriver"))
835 return;
836 stop_k7_watchdog();
837 break;
838 case X86_VENDOR_INTEL:
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200839 if (cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON)) {
840 stop_intel_arch_watchdog();
841 break;
842 }
Don Zickusf2802e72006-09-26 10:52:26 +0200843 stop_p4_watchdog();
844 break;
845 default:
846 return;
847 }
848 }
Shaohua Li4038f902006-09-26 10:52:27 +0200849 wd->enabled = 0;
Don Zickusf2802e72006-09-26 10:52:26 +0200850 atomic_dec(&nmi_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853/*
854 * the best way to detect whether a CPU has a 'hard lockup' problem
855 * is to check it's local APIC timer IRQ counts. If they are not
856 * changing then that CPU has some problem.
857 *
858 * as these watchdog NMI IRQs are generated on every CPU, we only
859 * have to check the current processor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 */
861
Andi Kleen75152112005-05-16 21:53:34 -0700862static DEFINE_PER_CPU(unsigned, last_irq_sum);
863static DEFINE_PER_CPU(local_t, alert_counter);
864static DEFINE_PER_CPU(int, nmi_touch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866void touch_nmi_watchdog (void)
867{
Jan Beulich99019e92006-02-16 23:41:55 +0100868 if (nmi_watchdog > 0) {
869 unsigned cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Jan Beulich99019e92006-02-16 23:41:55 +0100871 /*
872 * Tell other CPUs to reset their alert counters. We cannot
873 * do it ourselves because the alert count increase is not
874 * atomic.
875 */
876 for_each_present_cpu (cpu)
877 per_cpu(nmi_touch, cpu) = 1;
878 }
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700879
880 touch_softlockup_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Don Zickus3adbbcce2006-09-26 10:52:26 +0200883int __kprobes nmi_watchdog_tick(struct pt_regs * regs, unsigned reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Andi Kleen75152112005-05-16 21:53:34 -0700885 int sum;
886 int touched = 0;
Andrew Mortonbb81a092006-12-07 02:14:01 +0100887 int cpu = smp_processor_id();
Don Zickusf2802e72006-09-26 10:52:26 +0200888 struct nmi_watchdog_ctlblk *wd = &__get_cpu_var(nmi_watchdog_ctlblk);
889 u64 dummy;
Don Zickus3adbbcce2006-09-26 10:52:26 +0200890 int rc=0;
Don Zickusf2802e72006-09-26 10:52:26 +0200891
892 /* check for other users first */
893 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT)
894 == NOTIFY_STOP) {
Don Zickus3adbbcce2006-09-26 10:52:26 +0200895 rc = 1;
Don Zickusf2802e72006-09-26 10:52:26 +0200896 touched = 1;
897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 sum = read_pda(apic_timer_irqs);
Andi Kleen75152112005-05-16 21:53:34 -0700900 if (__get_cpu_var(nmi_touch)) {
901 __get_cpu_var(nmi_touch) = 0;
902 touched = 1;
903 }
Don Zickusf2802e72006-09-26 10:52:26 +0200904
Andrew Mortonbb81a092006-12-07 02:14:01 +0100905 if (cpu_isset(cpu, backtrace_mask)) {
906 static DEFINE_SPINLOCK(lock); /* Serialise the printks */
907
908 spin_lock(&lock);
909 printk("NMI backtrace for cpu %d\n", cpu);
910 dump_stack();
911 spin_unlock(&lock);
912 cpu_clear(cpu, backtrace_mask);
913 }
914
Andi Kleen553f2652006-04-07 19:49:57 +0200915#ifdef CONFIG_X86_MCE
916 /* Could check oops_in_progress here too, but it's safer
917 not too */
918 if (atomic_read(&mce_entry) > 0)
919 touched = 1;
920#endif
Don Zickusf2802e72006-09-26 10:52:26 +0200921 /* if the apic timer isn't firing, this cpu isn't doing much */
Andi Kleen75152112005-05-16 21:53:34 -0700922 if (!touched && __get_cpu_var(last_irq_sum) == sum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 /*
924 * Ayiee, looks like this CPU is stuck ...
925 * wait a few IRQs (5 seconds) before doing the oops ...
926 */
Andi Kleen75152112005-05-16 21:53:34 -0700927 local_inc(&__get_cpu_var(alert_counter));
Don Zickusf2802e72006-09-26 10:52:26 +0200928 if (local_read(&__get_cpu_var(alert_counter)) == 5*nmi_hz)
Andi Kleenfac58552006-09-26 10:52:27 +0200929 die_nmi("NMI Watchdog detected LOCKUP on CPU %d\n", regs,
930 panic_on_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 } else {
Andi Kleen75152112005-05-16 21:53:34 -0700932 __get_cpu_var(last_irq_sum) = sum;
933 local_set(&__get_cpu_var(alert_counter), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
Don Zickusf2802e72006-09-26 10:52:26 +0200935
936 /* see if the nmi watchdog went off */
937 if (wd->enabled) {
938 if (nmi_watchdog == NMI_LOCAL_APIC) {
939 rdmsrl(wd->perfctr_msr, dummy);
940 if (dummy & wd->check_bit){
941 /* this wasn't a watchdog timer interrupt */
942 goto done;
943 }
944
945 /* only Intel uses the cccr msr */
946 if (wd->cccr_msr != 0) {
947 /*
948 * P4 quirks:
949 * - An overflown perfctr will assert its interrupt
950 * until the OVF flag in its CCCR is cleared.
951 * - LVTPC is masked on interrupt and must be
952 * unmasked by the LVTPC handler.
953 */
954 rdmsrl(wd->cccr_msr, dummy);
955 dummy &= ~P4_CCCR_OVF;
956 wrmsrl(wd->cccr_msr, dummy);
957 apic_write(APIC_LVTPC, APIC_DM_NMI);
Venkatesh Pallipadi16761932007-02-13 13:26:22 +0100958 /* start the cycle over again */
959 wrmsrl(wd->perfctr_msr,
960 -((u64)cpu_khz * 1000 / nmi_hz));
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200961 } else if (wd->perfctr_msr == MSR_ARCH_PERFMON_PERFCTR0) {
962 /*
963 * ArchPerfom/Core Duo needs to re-unmask
964 * the apic vector
965 */
966 apic_write(APIC_LVTPC, APIC_DM_NMI);
Venkatesh Pallipadi16761932007-02-13 13:26:22 +0100967 /* ARCH_PERFMON has 32 bit counter writes */
968 wrmsr(wd->perfctr_msr,
969 (u32)(-((u64)cpu_khz * 1000 / nmi_hz)), 0);
970 } else {
971 /* start the cycle over again */
972 wrmsrl(wd->perfctr_msr,
973 -((u64)cpu_khz * 1000 / nmi_hz));
Venkatesh Pallipadi248dcb22006-09-26 10:52:27 +0200974 }
Don Zickus3adbbcce2006-09-26 10:52:26 +0200975 rc = 1;
976 } else if (nmi_watchdog == NMI_IO_APIC) {
977 /* don't know how to accurately check for this.
978 * just assume it was a watchdog timer interrupt
979 * This matches the old behaviour.
980 */
981 rc = 1;
982 } else
983 printk(KERN_WARNING "Unknown enabled NMI hardware?!\n");
Andi Kleen75152112005-05-16 21:53:34 -0700984 }
Don Zickusf2802e72006-09-26 10:52:26 +0200985done:
Don Zickus3adbbcce2006-09-26 10:52:26 +0200986 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100989asmlinkage __kprobes void do_nmi(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 nmi_enter();
992 add_pda(__nmi_count,1);
Don Zickus3adbbcce2006-09-26 10:52:26 +0200993 default_do_nmi(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 nmi_exit();
995}
996
Don Zickus3adbbcce2006-09-26 10:52:26 +0200997int do_nmi_callback(struct pt_regs * regs, int cpu)
998{
Don Zickus2fbe7b22006-09-26 10:52:27 +0200999#ifdef CONFIG_SYSCTL
1000 if (unknown_nmi_panic)
1001 return unknown_nmi_panic_callback(regs, cpu);
1002#endif
1003 return 0;
Don Zickus3adbbcce2006-09-26 10:52:26 +02001004}
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006#ifdef CONFIG_SYSCTL
1007
1008static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu)
1009{
1010 unsigned char reason = get_nmi_reason();
1011 char buf[64];
1012
Don Zickus2fbe7b22006-09-26 10:52:27 +02001013 sprintf(buf, "NMI received for unknown reason %02x\n", reason);
Andi Kleenfac58552006-09-26 10:52:27 +02001014 die_nmi(buf, regs, 1); /* Always panic here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return 0;
1016}
1017
Don Zickus407984f2006-09-26 10:52:27 +02001018/*
1019 * proc handler for /proc/sys/kernel/nmi
1020 */
1021int proc_nmi_enabled(struct ctl_table *table, int write, struct file *file,
1022 void __user *buffer, size_t *length, loff_t *ppos)
1023{
1024 int old_state;
1025
1026 nmi_watchdog_enabled = (atomic_read(&nmi_active) > 0) ? 1 : 0;
1027 old_state = nmi_watchdog_enabled;
1028 proc_dointvec(table, write, file, buffer, length, ppos);
1029 if (!!old_state == !!nmi_watchdog_enabled)
1030 return 0;
1031
1032 if (atomic_read(&nmi_active) < 0) {
1033 printk( KERN_WARNING "NMI watchdog is permanently disabled\n");
Don Zickuse33e89a2006-09-26 10:52:27 +02001034 return -EIO;
Don Zickus407984f2006-09-26 10:52:27 +02001035 }
1036
1037 /* if nmi_watchdog is not set yet, then set it */
1038 nmi_watchdog_default();
1039
Don Zickuse33e89a2006-09-26 10:52:27 +02001040 if (nmi_watchdog == NMI_LOCAL_APIC) {
Don Zickus407984f2006-09-26 10:52:27 +02001041 if (nmi_watchdog_enabled)
1042 enable_lapic_nmi_watchdog();
1043 else
1044 disable_lapic_nmi_watchdog();
Don Zickus407984f2006-09-26 10:52:27 +02001045 } else {
Don Zickuse33e89a2006-09-26 10:52:27 +02001046 printk( KERN_WARNING
Don Zickus407984f2006-09-26 10:52:27 +02001047 "NMI watchdog doesn't know what hardware to touch\n");
1048 return -EIO;
1049 }
1050 return 0;
1051}
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053#endif
1054
Andrew Mortonbb81a092006-12-07 02:14:01 +01001055void __trigger_all_cpu_backtrace(void)
1056{
1057 int i;
1058
1059 backtrace_mask = cpu_online_map;
1060 /* Wait for up to 10 seconds for all CPUs to do the backtrace */
1061 for (i = 0; i < 10 * 1000; i++) {
1062 if (cpus_empty(backtrace_mask))
1063 break;
1064 mdelay(1);
1065 }
1066}
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068EXPORT_SYMBOL(nmi_active);
1069EXPORT_SYMBOL(nmi_watchdog);
Don Zickus828f0af2006-09-26 10:52:26 +02001070EXPORT_SYMBOL(avail_to_resrv_perfctr_nmi);
1071EXPORT_SYMBOL(avail_to_resrv_perfctr_nmi_bit);
1072EXPORT_SYMBOL(reserve_perfctr_nmi);
1073EXPORT_SYMBOL(release_perfctr_nmi);
1074EXPORT_SYMBOL(reserve_evntsel_nmi);
1075EXPORT_SYMBOL(release_evntsel_nmi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076EXPORT_SYMBOL(disable_timer_nmi_watchdog);
1077EXPORT_SYMBOL(enable_timer_nmi_watchdog);
1078EXPORT_SYMBOL(touch_nmi_watchdog);