Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Thomas Petazzoni | 89bbc03 | 2006-09-30 23:27:54 -0700 | [diff] [blame] | 14 | #ifndef _LINUX_SYSRQ_H |
| 15 | #define _LINUX_SYSRQ_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Tobias Doerffel | 82e3310 | 2009-07-05 12:08:23 -0700 | [diff] [blame] | 17 | #include <linux/errno.h> |
Dmitry Torokhov | f335397 | 2010-08-17 21:15:47 -0700 | [diff] [blame] | 18 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Andy Whitcroft | 8c6a98b | 2011-01-24 09:31:38 -0800 | [diff] [blame] | 20 | /* Enable/disable SYSRQ support by default (0==no, 1==yes). */ |
| 21 | #define SYSRQ_DEFAULT_ENABLE 1 |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 34 | struct sysrq_key_op { |
Dmitry Torokhov | 1495cc9 | 2010-08-17 21:15:46 -0700 | [diff] [blame] | 35 | void (*handler)(int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | char *help_msg; |
| 37 | char *action_msg; |
| 38 | int enable_mask; |
| 39 | }; |
| 40 | |
| 41 | #ifdef CONFIG_MAGIC_SYSRQ |
| 42 | |
| 43 | /* Generic SysRq interface -- you may call it from any device driver, supplying |
| 44 | * ASCII code of the key, pointer to registers and kbd/tty structs (if they |
| 45 | * are available -- else NULL's). |
| 46 | */ |
| 47 | |
Dmitry Torokhov | f335397 | 2010-08-17 21:15:47 -0700 | [diff] [blame] | 48 | void handle_sysrq(int key); |
| 49 | void __handle_sysrq(int key, bool check_mask); |
Ingo Molnar | 5d6f647 | 2006-12-13 00:34:36 -0800 | [diff] [blame] | 50 | int register_sysrq_key(int key, struct sysrq_key_op *op); |
| 51 | int unregister_sysrq_key(int key, struct sysrq_key_op *op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | struct sysrq_key_op *__sysrq_get_key_op(int key); |
| 53 | |
Dmitry Torokhov | 97f5f0c | 2010-03-21 22:31:26 -0700 | [diff] [blame] | 54 | int sysrq_toggle_support(int enable_mask); |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #else |
| 57 | |
Dmitry Torokhov | f335397 | 2010-08-17 21:15:47 -0700 | [diff] [blame] | 58 | static inline void handle_sysrq(int key) |
Ingo Molnar | 5d6f647 | 2006-12-13 00:34:36 -0800 | [diff] [blame] | 59 | { |
| 60 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Dmitry Torokhov | f335397 | 2010-08-17 21:15:47 -0700 | [diff] [blame] | 62 | static inline void __handle_sysrq(int key, bool check_mask) |
Dmitry Torokhov | 1495cc9 | 2010-08-17 21:15:46 -0700 | [diff] [blame] | 63 | { |
| 64 | } |
| 65 | |
Dmitry Torokhov | 97f5f0c | 2010-03-21 22:31:26 -0700 | [diff] [blame] | 66 | static inline int register_sysrq_key(int key, struct sysrq_key_op *op) |
| 67 | { |
| 68 | return -EINVAL; |
| 69 | } |
| 70 | |
| 71 | static inline int unregister_sysrq_key(int key, struct sysrq_key_op *op) |
| 72 | { |
| 73 | return -EINVAL; |
| 74 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | #endif |
Thomas Petazzoni | 89bbc03 | 2006-09-30 23:27:54 -0700 | [diff] [blame] | 77 | |
| 78 | #endif /* _LINUX_SYSRQ_H */ |