nmi.c 11.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 *  linux/arch/i386/nmi.c
 *
 *  NMI watchdog support on APIC systems
 *
 *  Started by Ingo Molnar <mingo@redhat.com>
 *
 *  Fixes:
 *  Mikael Pettersson	: AMD K7 support for local APIC NMI watchdog.
 *  Mikael Pettersson	: Power Management for local APIC NMI watchdog.
 *  Mikael Pettersson	: Pentium 4 support for local APIC NMI watchdog.
 *  Pavel Machek and
 *  Mikael Pettersson	: PM converted to driver model. Disable/enable API.
 */

#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/nmi.h>
#include <linux/sysdev.h>
#include <linux/sysctl.h>
22
#include <linux/percpu.h>
23
#include <linux/kprobes.h>
A
Andrew Morton 已提交
24
#include <linux/cpumask.h>
25
#include <linux/kernel_stat.h>
26
#include <linux/kdebug.h>
L
Linus Torvalds 已提交
27 28 29 30 31 32

#include <asm/smp.h>
#include <asm/nmi.h>

#include "mach_traps.h"

33 34 35
int unknown_nmi_panic;
int nmi_watchdog_enabled;

36
static cpumask_t backtrace_mask = CPU_MASK_NONE;
37

L
Linus Torvalds 已提交
38
/* nmi_active:
39 40
 * >0: the lapic NMI watchdog is active, but can be disabled
 * <0: the lapic NMI watchdog has not been set up, and cannot
L
Linus Torvalds 已提交
41
 *     be enabled
42
 *  0: the lapic NMI watchdog is disabled, but can be enabled
L
Linus Torvalds 已提交
43
 */
44
atomic_t nmi_active = ATOMIC_INIT(0);		/* oprofile uses this */
L
Linus Torvalds 已提交
45

46 47
unsigned int nmi_watchdog = NMI_DEFAULT;
static unsigned int nmi_hz = HZ;
L
Linus Torvalds 已提交
48

49
static DEFINE_PER_CPU(short, wd_enabled);
L
Linus Torvalds 已提交
50

51 52 53
/* local prototypes */
static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu);

54 55
static int endflag __initdata = 0;

56 57 58 59 60 61 62
#ifdef CONFIG_SMP
/* The performance counters used by NMI_LOCAL_APIC don't trigger when
 * the CPU is idle. To make sure the NMI watchdog really ticks on all
 * CPUs during the test make them busy.
 */
static __init void nmi_cpu_busy(void *data)
{
63
	local_irq_enable_in_hardirq();
64 65 66 67 68 69
	/* Intentionally don't use cpu_relax here. This is
	   to make sure that the performance counter really ticks,
	   even if there is a simulator or similar that catches the
	   pause instruction. On a real HT machine this is fine because
	   all other CPUs are busy with "useless" delay loops and don't
	   care if they get somewhat less cycles. */
70 71
	while (endflag == 0)
		mb();
72 73 74
}
#endif

75
static int __init check_nmi_watchdog(void)
L
Linus Torvalds 已提交
76
{
77
	unsigned int *prev_nmi_count;
L
Linus Torvalds 已提交
78 79
	int cpu;

80
	if ((nmi_watchdog == NMI_NONE) || (nmi_watchdog == NMI_DISABLED))
81 82 83
		return 0;

	if (!atomic_read(&nmi_active))
84 85
		return 0;

86 87 88 89
	prev_nmi_count = kmalloc(NR_CPUS * sizeof(int), GFP_KERNEL);
	if (!prev_nmi_count)
		return -1;

90
	printk(KERN_INFO "Testing NMI watchdog ... ");
L
Linus Torvalds 已提交
91

92 93 94
	if (nmi_watchdog == NMI_LOCAL_APIC)
		smp_call_function(nmi_cpu_busy, (void *)&endflag, 0, 0);

95
	for_each_possible_cpu(cpu)
L
Linus Torvalds 已提交
96 97
		prev_nmi_count[cpu] = per_cpu(irq_stat, cpu).__nmi_count;
	local_irq_enable();
98
	mdelay((20*1000)/nmi_hz); // wait 20 ticks
L
Linus Torvalds 已提交
99

100
	for_each_possible_cpu(cpu) {
L
Linus Torvalds 已提交
101 102 103 104 105 106
#ifdef CONFIG_SMP
		/* Check cpu_callin_map here because that is set
		   after the timer is started. */
		if (!cpu_isset(cpu, cpu_callin_map))
			continue;
#endif
107
		if (!per_cpu(wd_enabled, cpu))
108
			continue;
L
Linus Torvalds 已提交
109
		if (nmi_count(cpu) - prev_nmi_count[cpu] <= 5) {
110 111 112 113
			printk("CPU#%d: NMI appears to be stuck (%d->%d)!\n",
				cpu,
				prev_nmi_count[cpu],
				nmi_count(cpu));
114
			per_cpu(wd_enabled, cpu) = 0;
115
			atomic_dec(&nmi_active);
L
Linus Torvalds 已提交
116 117
		}
	}
118 119 120 121 122
	if (!atomic_read(&nmi_active)) {
		kfree(prev_nmi_count);
		atomic_set(&nmi_active, -1);
		return -1;
	}
123
	endflag = 1;
L
Linus Torvalds 已提交
124 125 126 127
	printk("OK.\n");

	/* now that we know it works we can reduce NMI frequency to
	   something more reasonable; makes a difference in some configs */
128 129
	if (nmi_watchdog == NMI_LOCAL_APIC)
		nmi_hz = lapic_adjust_nmi_hz(1);
L
Linus Torvalds 已提交
130

131
	kfree(prev_nmi_count);
L
Linus Torvalds 已提交
132 133
	return 0;
}
134 135
/* This needs to happen later in boot so counters are working */
late_initcall(check_nmi_watchdog);
L
Linus Torvalds 已提交
136 137 138 139 140 141 142

static int __init setup_nmi_watchdog(char *str)
{
	int nmi;

	get_option(&str, &nmi);

143
	if ((nmi >= NMI_INVALID) || (nmi < NMI_NONE))
L
Linus Torvalds 已提交
144
		return 0;
145

146
	nmi_watchdog = nmi;
L
Linus Torvalds 已提交
147 148 149 150 151
	return 1;
}

__setup("nmi_watchdog=", setup_nmi_watchdog);

152

153
/* Suspend/resume support */
154

L
Linus Torvalds 已提交
155 156 157 158
#ifdef CONFIG_PM

static int nmi_pm_active; /* nmi_active before suspend */

159
static int lapic_nmi_suspend(struct sys_device *dev, pm_message_t state)
L
Linus Torvalds 已提交
160
{
161
	/* only CPU0 goes here, other CPUs should be offline */
162
	nmi_pm_active = atomic_read(&nmi_active);
163 164
	stop_apic_nmi_watchdog(NULL);
	BUG_ON(atomic_read(&nmi_active) != 0);
L
Linus Torvalds 已提交
165 166 167 168 169
	return 0;
}

static int lapic_nmi_resume(struct sys_device *dev)
{
170 171 172 173 174
	/* only CPU0 goes here, other CPUs should be offline */
	if (nmi_pm_active > 0) {
		setup_apic_nmi_watchdog(NULL);
		touch_nmi_watchdog();
	}
L
Linus Torvalds 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
	return 0;
}


static struct sysdev_class nmi_sysclass = {
	set_kset_name("lapic_nmi"),
	.resume		= lapic_nmi_resume,
	.suspend	= lapic_nmi_suspend,
};

static struct sys_device device_lapic_nmi = {
	.id	= 0,
	.cls	= &nmi_sysclass,
};

static int __init init_lapic_nmi_sysfs(void)
{
	int error;

194 195 196 197 198 199
	/* should really be a BUG_ON but b/c this is an
	 * init call, it just doesn't work.  -dcz
	 */
	if (nmi_watchdog != NMI_LOCAL_APIC)
		return 0;

200
	if (atomic_read(&nmi_active) < 0)
L
Linus Torvalds 已提交
201 202 203 204 205 206 207 208 209 210 211 212
		return 0;

	error = sysdev_class_register(&nmi_sysclass);
	if (!error)
		error = sysdev_register(&device_lapic_nmi);
	return error;
}
/* must come after the local APIC's device_initcall() */
late_initcall(init_lapic_nmi_sysfs);

#endif	/* CONFIG_PM */

213
static void __acpi_nmi_enable(void *__unused)
L
Linus Torvalds 已提交
214
{
215
	apic_write_around(APIC_LVT0, APIC_DM_NMI);
L
Linus Torvalds 已提交
216 217
}

218 219 220 221
/*
 * Enable timer based NMIs on all CPUs:
 */
void acpi_nmi_enable(void)
L
Linus Torvalds 已提交
222
{
223 224
	if (atomic_read(&nmi_active) && nmi_watchdog == NMI_IO_APIC)
		on_each_cpu(__acpi_nmi_enable, NULL, 0, 1);
225 226
}

227
static void __acpi_nmi_disable(void *__unused)
228
{
229
	apic_write(APIC_LVT0, APIC_DM_NMI | APIC_LVT_MASKED);
230 231
}

232 233 234 235
/*
 * Disable timer based NMIs on all CPUs:
 */
void acpi_nmi_disable(void)
236
{
237 238
	if (atomic_read(&nmi_active) && nmi_watchdog == NMI_IO_APIC)
		on_each_cpu(__acpi_nmi_disable, NULL, 0, 1);
239 240
}

241 242
void setup_apic_nmi_watchdog (void *unused)
{
243 244
	if (__get_cpu_var(wd_enabled))
 		return;
245 246 247 248 249 250

	/* cheap hack to support suspend/resume */
	/* if cpu0 is not active neither should the other cpus */
	if ((smp_processor_id() != 0) && (atomic_read(&nmi_active) <= 0))
		return;

251 252 253 254 255
	switch (nmi_watchdog) {
	case NMI_LOCAL_APIC:
		__get_cpu_var(wd_enabled) = 1; /* enable it before to avoid race with handler */
		if (lapic_watchdog_init(nmi_hz) < 0) {
			__get_cpu_var(wd_enabled) = 0;
256 257
			return;
		}
258 259 260 261
		/* FALL THROUGH */
	case NMI_IO_APIC:
		__get_cpu_var(wd_enabled) = 1;
		atomic_inc(&nmi_active);
262 263 264
	}
}

265
void stop_apic_nmi_watchdog(void *unused)
266 267 268 269 270
{
	/* only support LOCAL and IO APICs for now */
	if ((nmi_watchdog != NMI_LOCAL_APIC) &&
	    (nmi_watchdog != NMI_IO_APIC))
	    	return;
271
	if (__get_cpu_var(wd_enabled) == 0)
272
		return;
273 274 275
	if (nmi_watchdog == NMI_LOCAL_APIC)
		lapic_watchdog_stop();
	__get_cpu_var(wd_enabled) = 0;
276
	atomic_dec(&nmi_active);
L
Linus Torvalds 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
}

/*
 * the best way to detect whether a CPU has a 'hard lockup' problem
 * is to check it's local APIC timer IRQ counts. If they are not
 * changing then that CPU has some problem.
 *
 * as these watchdog NMI IRQs are generated on every CPU, we only
 * have to check the current processor.
 *
 * since NMIs don't listen to _any_ locks, we have to be extremely
 * careful not to rely on unsafe variables. The printk might lock
 * up though, so we have to break up any console locks first ...
 * [when there will be more tty-related locks, break them up
 *  here too!]
 */

static unsigned int
	last_irq_sums [NR_CPUS],
	alert_counter [NR_CPUS];

A
Andrew Morton 已提交
298
void touch_nmi_watchdog(void)
L
Linus Torvalds 已提交
299
{
300 301
	if (nmi_watchdog > 0) {
		unsigned cpu;
L
Linus Torvalds 已提交
302

303 304 305 306
		/*
		 * Just reset the alert counters, (other CPUs might be
		 * spinning on locks we hold):
		 */
A
Andrew Morton 已提交
307 308 309 310
		for_each_present_cpu(cpu) {
			if (alert_counter[cpu])
				alert_counter[cpu] = 0;
		}
311
	}
I
Ingo Molnar 已提交
312 313 314 315 316

	/*
	 * Tickle the softlockup detector too:
	 */
	touch_softlockup_watchdog();
L
Linus Torvalds 已提交
317
}
318
EXPORT_SYMBOL(touch_nmi_watchdog);
L
Linus Torvalds 已提交
319 320 321

extern void die_nmi(struct pt_regs *, const char *msg);

322
__kprobes int nmi_watchdog_tick(struct pt_regs * regs, unsigned reason)
L
Linus Torvalds 已提交
323 324 325 326 327 328 329
{

	/*
	 * Since current_thread_info()-> is always on the stack, and we
	 * always switch the stack NMI-atomically, it's safe to use
	 * smp_processor_id().
	 */
330
	unsigned int sum;
331
	int touched = 0;
332
	int cpu = smp_processor_id();
333
	int rc=0;
334 335 336 337

	/* check for other users first */
	if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT)
			== NOTIFY_STOP) {
338
		rc = 1;
339 340
		touched = 1;
	}
L
Linus Torvalds 已提交
341

A
Andrew Morton 已提交
342 343 344 345 346 347 348 349 350 351
	if (cpu_isset(cpu, backtrace_mask)) {
		static DEFINE_SPINLOCK(lock);	/* Serialise the printks */

		spin_lock(&lock);
		printk("NMI backtrace for cpu %d\n", cpu);
		dump_stack();
		spin_unlock(&lock);
		cpu_clear(cpu, backtrace_mask);
	}

352 353 354 355
	/*
	 * Take the local apic timer and PIT/HPET into account. We don't
	 * know which one is active, when we have highres/dyntick on
	 */
356
	sum = per_cpu(irq_stat, cpu).apic_timer_irqs + kstat_cpu(cpu).irqs[0];
L
Linus Torvalds 已提交
357

358
	/* if the none of the timers isn't firing, this cpu isn't doing much */
359
	if (!touched && last_irq_sums[cpu] == sum) {
L
Linus Torvalds 已提交
360 361 362 363 364 365
		/*
		 * Ayiee, looks like this CPU is stuck ...
		 * wait a few IRQs (5 seconds) before doing the oops ...
		 */
		alert_counter[cpu]++;
		if (alert_counter[cpu] == 5*nmi_hz)
366 367 368
			/*
			 * die_nmi will return ONLY if NOTIFY_STOP happens..
			 */
369
			die_nmi(regs, "BUG: NMI Watchdog detected LOCKUP");
370
	} else {
L
Linus Torvalds 已提交
371 372 373
		last_irq_sums[cpu] = sum;
		alert_counter[cpu] = 0;
	}
374
	/* see if the nmi watchdog went off */
375 376 377 378 379 380 381 382 383 384 385 386 387
	if (!__get_cpu_var(wd_enabled))
		return rc;
	switch (nmi_watchdog) {
	case NMI_LOCAL_APIC:
		rc |= lapic_wd_event(nmi_hz);
		break;
	case NMI_IO_APIC:
		/* don't know how to accurately check for this.
		 * just assume it was a watchdog timer interrupt
		 * This matches the old behaviour.
		 */
		rc = 1;
		break;
L
Linus Torvalds 已提交
388
	}
389
	return rc;
L
Linus Torvalds 已提交
390 391
}

392 393 394 395 396 397 398 399 400
int do_nmi_callback(struct pt_regs * regs, int cpu)
{
#ifdef CONFIG_SYSCTL
	if (unknown_nmi_panic)
		return unknown_nmi_panic_callback(regs, cpu);
#endif
	return 0;
}

L
Linus Torvalds 已提交
401 402 403 404 405 406 407
#ifdef CONFIG_SYSCTL

static int unknown_nmi_panic_callback(struct pt_regs *regs, int cpu)
{
	unsigned char reason = get_nmi_reason();
	char buf[64];

408 409
	sprintf(buf, "NMI received for unknown reason %02x\n", reason);
	die_nmi(regs, buf);
L
Linus Torvalds 已提交
410 411 412
	return 0;
}

413
/*
414
 * proc handler for /proc/sys/kernel/nmi
415 416 417 418 419 420 421 422 423 424 425 426
 */
int proc_nmi_enabled(struct ctl_table *table, int write, struct file *file,
			void __user *buffer, size_t *length, loff_t *ppos)
{
	int old_state;

	nmi_watchdog_enabled = (atomic_read(&nmi_active) > 0) ? 1 : 0;
	old_state = nmi_watchdog_enabled;
	proc_dointvec(table, write, file, buffer, length, ppos);
	if (!!old_state == !!nmi_watchdog_enabled)
		return 0;

427
	if (atomic_read(&nmi_active) < 0 || nmi_watchdog == NMI_DISABLED) {
428 429
		printk( KERN_WARNING "NMI watchdog is permanently disabled\n");
		return -EIO;
430 431 432
	}

	if (nmi_watchdog == NMI_DEFAULT) {
433
		if (lapic_watchdog_ok())
434 435 436 437 438
			nmi_watchdog = NMI_LOCAL_APIC;
		else
			nmi_watchdog = NMI_IO_APIC;
	}

439
	if (nmi_watchdog == NMI_LOCAL_APIC) {
440 441 442 443 444 445 446 447 448 449 450 451
		if (nmi_watchdog_enabled)
			enable_lapic_nmi_watchdog();
		else
			disable_lapic_nmi_watchdog();
	} else {
		printk( KERN_WARNING
			"NMI watchdog doesn't know what hardware to touch\n");
		return -EIO;
	}
	return 0;
}

L
Linus Torvalds 已提交
452 453
#endif

A
Andrew Morton 已提交
454 455 456 457 458 459 460 461 462 463 464 465 466
void __trigger_all_cpu_backtrace(void)
{
	int i;

	backtrace_mask = cpu_online_map;
	/* Wait for up to 10 seconds for all CPUs to do the backtrace */
	for (i = 0; i < 10 * 1000; i++) {
		if (cpus_empty(backtrace_mask))
			break;
		mdelay(1);
	}
}

L
Linus Torvalds 已提交
467 468
EXPORT_SYMBOL(nmi_active);
EXPORT_SYMBOL(nmi_watchdog);