2 * Copyright (C) 2007 Atmel Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 #include <linux/delay.h>
9 #include <linux/kdebug.h>
10 #include <linux/notifier.h>
11 #include <linux/sched.h>
16 NMI_SHOW_STATE
= 1 << 0,
17 NMI_SHOW_REGS
= 1 << 1,
19 NMI_DEBOUNCE
= 1 << 3,
22 static unsigned long nmi_actions
;
24 static int nmi_debug_notify(struct notifier_block
*self
,
25 unsigned long val
, void *data
)
27 struct die_args
*args
= data
;
29 if (likely(val
!= DIE_NMI
))
32 if (nmi_actions
& NMI_SHOW_STATE
)
34 if (nmi_actions
& NMI_SHOW_REGS
)
35 show_regs(args
->regs
);
36 if (nmi_actions
& NMI_DEBOUNCE
)
38 if (nmi_actions
& NMI_DIE
)
44 static struct notifier_block nmi_debug_nb
= {
45 .notifier_call
= nmi_debug_notify
,
48 static int __init
nmi_debug_setup(char *str
)
52 register_die_notifier(&nmi_debug_nb
);
54 printk(KERN_WARNING
"Unable to enable NMI.\n");
61 for (p
= str
+ 1; *p
; p
= sep
+ 1) {
65 if (strcmp(p
, "state") == 0)
66 nmi_actions
|= NMI_SHOW_STATE
;
67 else if (strcmp(p
, "regs") == 0)
68 nmi_actions
|= NMI_SHOW_REGS
;
69 else if (strcmp(p
, "debounce") == 0)
70 nmi_actions
|= NMI_DEBOUNCE
;
71 else if (strcmp(p
, "die") == 0)
72 nmi_actions
|= NMI_DIE
;
74 printk(KERN_WARNING
"NMI: Unrecognized action `%s'\n",
82 __setup("nmi_debug", nmi_debug_setup
);