CHROMIUM: sysrq: Added Chrome OS specific 'x' key
[cascardo/linux.git] / include / linux / sysrq.h
1 /* -*- linux-c -*-
2  *
3  *      $Id: sysrq.h,v 1.3 1997/07/17 11:54:33 mj Exp $
4  *
5  *      Linux Magic System Request Key Hacks
6  *
7  *      (c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
8  *
9  *      (c) 2000 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
10  *      overhauled to use key registration
11  *      based upon discusions in irc://irc.openprojects.net/#kernelnewbies
12  */
13
14 #ifndef _LINUX_SYSRQ_H
15 #define _LINUX_SYSRQ_H
16
17 #include <linux/errno.h>
18 #include <linux/types.h>
19
20 /* Enable/disable SYSRQ support by default (0==no, 1==yes). */
21 #define SYSRQ_DEFAULT_ENABLE    0
22
23 /* Possible values of bitmask for enabling sysrq functions */
24 /* 0x0001 is reserved for enable everything */
25 #define SYSRQ_ENABLE_LOG        0x0002
26 #define SYSRQ_ENABLE_KEYBOARD   0x0004
27 #define SYSRQ_ENABLE_DUMP       0x0008
28 #define SYSRQ_ENABLE_SYNC       0x0010
29 #define SYSRQ_ENABLE_REMOUNT    0x0020
30 #define SYSRQ_ENABLE_SIGNAL     0x0040
31 #define SYSRQ_ENABLE_BOOT       0x0080
32 #define SYSRQ_ENABLE_RTNICE     0x0100
33 #define SYSRQ_ENABLE_CROS_XKEY  0x1000
34
35 struct sysrq_key_op {
36         void (*handler)(int);
37         char *help_msg;
38         char *action_msg;
39         int enable_mask;
40 };
41
42 #ifdef CONFIG_MAGIC_SYSRQ
43
44 /* Generic SysRq interface -- you may call it from any device driver, supplying
45  * ASCII code of the key, pointer to registers and kbd/tty structs (if they
46  * are available -- else NULL's).
47  */
48
49 void handle_sysrq(int key);
50 void __handle_sysrq(int key, bool check_mask);
51 int register_sysrq_key(int key, struct sysrq_key_op *op);
52 int unregister_sysrq_key(int key, struct sysrq_key_op *op);
53 struct sysrq_key_op *__sysrq_get_key_op(int key);
54
55 int sysrq_toggle_support(int enable_mask);
56
57 #else
58
59 static inline void handle_sysrq(int key)
60 {
61 }
62
63 static inline void __handle_sysrq(int key, bool check_mask)
64 {
65 }
66
67 static inline int register_sysrq_key(int key, struct sysrq_key_op *op)
68 {
69         return -EINVAL;
70 }
71
72 static inline int unregister_sysrq_key(int key, struct sysrq_key_op *op)
73 {
74         return -EINVAL;
75 }
76
77 #endif
78
79 #endif /* _LINUX_SYSRQ_H */