Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_REBOOT_H |
| 2 | #define _LINUX_REBOOT_H |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | #include <linux/notifier.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 6 | #include <uapi/linux/reboot.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
Amerigo Wang | c5f4175 | 2011-07-25 17:13:10 -0700 | [diff] [blame] | 8 | #define SYS_DOWN 0x0001 /* Notify of system down */ |
| 9 | #define SYS_RESTART SYS_DOWN |
| 10 | #define SYS_HALT 0x0002 /* Notify of system halt */ |
| 11 | #define SYS_POWER_OFF 0x0003 /* Notify of system power off */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | extern int register_reboot_notifier(struct notifier_block *); |
| 14 | extern int unregister_reboot_notifier(struct notifier_block *); |
| 15 | |
| 16 | |
| 17 | /* |
| 18 | * Architecture-specific implementations of sys_reboot commands. |
| 19 | */ |
| 20 | |
| 21 | extern void machine_restart(char *cmd); |
| 22 | extern void machine_halt(void); |
| 23 | extern void machine_power_off(void); |
| 24 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 25 | extern void machine_shutdown(void); |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 26 | struct pt_regs; |
| 27 | extern void machine_crash_shutdown(struct pt_regs *); |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 28 | |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 29 | /* |
| 30 | * Architecture independent implemenations of sys_reboot commands. |
| 31 | */ |
| 32 | |
Huang Ying | ca195b7 | 2008-08-15 00:40:24 -0700 | [diff] [blame] | 33 | extern void kernel_restart_prepare(char *cmd); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 34 | extern void kernel_restart(char *cmd); |
| 35 | extern void kernel_halt(void); |
| 36 | extern void kernel_power_off(void); |
Adrian Bunk | 83cc5ed | 2006-06-25 05:47:41 -0700 | [diff] [blame] | 37 | |
Dave Young | eb5572f | 2010-03-10 15:23:59 -0800 | [diff] [blame] | 38 | extern int C_A_D; /* for sysctl */ |
Adrian Bunk | 83cc5ed | 2006-06-25 05:47:41 -0700 | [diff] [blame] | 39 | void ctrl_alt_del(void); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 40 | |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 41 | #define POWEROFF_CMD_PATH_LEN 256 |
| 42 | extern char poweroff_cmd[POWEROFF_CMD_PATH_LEN]; |
| 43 | |
| 44 | extern int orderly_poweroff(bool force); |
| 45 | |
Eric W. Biederman | 7c90347 | 2005-07-26 11:29:55 -0600 | [diff] [blame] | 46 | /* |
| 47 | * Emergency restart, callable from an interrupt handler. |
| 48 | */ |
| 49 | |
| 50 | extern void emergency_restart(void); |
| 51 | #include <asm/emergency-restart.h> |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #endif /* _LINUX_REBOOT_H */ |