2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _LINUX_REBOOT_H
|
|
|
|
#define _LINUX_REBOOT_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <linux/notifier.h>
|
2012-10-13 09:46:48 +00:00
|
|
|
#include <uapi/linux/reboot.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-07-26 00:13:10 +00:00
|
|
|
#define SYS_DOWN 0x0001 /* Notify of system down */
|
|
|
|
#define SYS_RESTART SYS_DOWN
|
|
|
|
#define SYS_HALT 0x0002 /* Notify of system halt */
|
|
|
|
#define SYS_POWER_OFF 0x0003 /* Notify of system power off */
|
|
|
|
|
2013-07-08 23:01:35 +00:00
|
|
|
enum reboot_mode {
|
|
|
|
REBOOT_COLD = 0,
|
|
|
|
REBOOT_WARM,
|
2013-07-08 23:01:36 +00:00
|
|
|
REBOOT_HARD,
|
|
|
|
REBOOT_SOFT,
|
2013-07-08 23:01:40 +00:00
|
|
|
REBOOT_GPIO,
|
2013-07-08 23:01:35 +00:00
|
|
|
};
|
2013-07-08 23:01:42 +00:00
|
|
|
extern enum reboot_mode reboot_mode;
|
|
|
|
|
|
|
|
enum reboot_type {
|
2014-04-04 06:41:26 +00:00
|
|
|
BOOT_TRIPLE = 't',
|
|
|
|
BOOT_KBD = 'k',
|
|
|
|
BOOT_BIOS = 'b',
|
|
|
|
BOOT_ACPI = 'a',
|
|
|
|
BOOT_EFI = 'e',
|
|
|
|
BOOT_CF9_FORCE = 'p',
|
|
|
|
BOOT_CF9_SAFE = 'q',
|
2013-07-08 23:01:42 +00:00
|
|
|
};
|
|
|
|
extern enum reboot_type reboot_type;
|
|
|
|
|
|
|
|
extern int reboot_default;
|
|
|
|
extern int reboot_cpu;
|
|
|
|
extern int reboot_force;
|
|
|
|
|
2013-07-08 23:01:35 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
extern int register_reboot_notifier(struct notifier_block *);
|
|
|
|
extern int unregister_reboot_notifier(struct notifier_block *);
|
|
|
|
|
2014-09-26 00:03:16 +00:00
|
|
|
extern int register_restart_handler(struct notifier_block *);
|
|
|
|
extern int unregister_restart_handler(struct notifier_block *);
|
|
|
|
extern void do_kernel_restart(char *cmd);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Architecture-specific implementations of sys_reboot commands.
|
|
|
|
*/
|
|
|
|
|
2013-12-19 01:08:31 +00:00
|
|
|
extern void migrate_to_reboot_cpu(void);
|
2005-04-16 22:20:36 +00:00
|
|
|
extern void machine_restart(char *cmd);
|
|
|
|
extern void machine_halt(void);
|
|
|
|
extern void machine_power_off(void);
|
|
|
|
|
2005-06-25 21:57:52 +00:00
|
|
|
extern void machine_shutdown(void);
|
2005-06-25 21:58:26 +00:00
|
|
|
struct pt_regs;
|
|
|
|
extern void machine_crash_shutdown(struct pt_regs *);
|
2005-06-25 21:57:52 +00:00
|
|
|
|
2013-07-08 23:01:34 +00:00
|
|
|
/*
|
2005-07-26 17:24:14 +00:00
|
|
|
* Architecture independent implemenations of sys_reboot commands.
|
|
|
|
*/
|
|
|
|
|
2008-08-15 07:40:24 +00:00
|
|
|
extern void kernel_restart_prepare(char *cmd);
|
2005-07-26 17:24:14 +00:00
|
|
|
extern void kernel_restart(char *cmd);
|
|
|
|
extern void kernel_halt(void);
|
|
|
|
extern void kernel_power_off(void);
|
2006-06-25 12:47:41 +00:00
|
|
|
|
2010-03-10 23:23:59 +00:00
|
|
|
extern int C_A_D; /* for sysctl */
|
2006-06-25 12:47:41 +00:00
|
|
|
void ctrl_alt_del(void);
|
2005-07-26 17:24:14 +00:00
|
|
|
|
2007-07-18 01:37:02 +00:00
|
|
|
#define POWEROFF_CMD_PATH_LEN 256
|
|
|
|
extern char poweroff_cmd[POWEROFF_CMD_PATH_LEN];
|
|
|
|
|
2015-04-15 23:16:53 +00:00
|
|
|
extern void orderly_poweroff(bool force);
|
|
|
|
extern void orderly_reboot(void);
|
2007-07-18 01:37:02 +00:00
|
|
|
|
2005-07-26 17:29:55 +00:00
|
|
|
/*
|
|
|
|
* Emergency restart, callable from an interrupt handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern void emergency_restart(void);
|
|
|
|
#include <asm/emergency-restart.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* _LINUX_REBOOT_H */
|