reboot.h 1.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
#ifndef _LINUX_REBOOT_H
#define _LINUX_REBOOT_H


#include <linux/notifier.h>
6
#include <uapi/linux/reboot.h>
L
Linus Torvalds 已提交
7

8 9 10 11 12
#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 */

13 14 15
enum reboot_mode {
	REBOOT_COLD = 0,
	REBOOT_WARM,
16 17
	REBOOT_HARD,
	REBOOT_SOFT,
18
	REBOOT_GPIO,
19 20
};

L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29 30 31 32
extern int register_reboot_notifier(struct notifier_block *);
extern int unregister_reboot_notifier(struct notifier_block *);


/*
 * Architecture-specific implementations of sys_reboot commands.
 */

extern void machine_restart(char *cmd);
extern void machine_halt(void);
extern void machine_power_off(void);

33
extern void machine_shutdown(void);
34 35
struct pt_regs;
extern void machine_crash_shutdown(struct pt_regs *);
36

37
/*
38 39 40
 * Architecture independent implemenations of sys_reboot commands.
 */

41
extern void kernel_restart_prepare(char *cmd);
42 43 44
extern void kernel_restart(char *cmd);
extern void kernel_halt(void);
extern void kernel_power_off(void);
A
Adrian Bunk 已提交
45

D
Dave Young 已提交
46
extern int C_A_D; /* for sysctl */
A
Adrian Bunk 已提交
47
void ctrl_alt_del(void);
48

49 50 51 52 53
#define POWEROFF_CMD_PATH_LEN	256
extern char poweroff_cmd[POWEROFF_CMD_PATH_LEN];

extern int orderly_poweroff(bool force);

54 55 56 57 58 59 60
/*
 * Emergency restart, callable from an interrupt handler.
 */

extern void emergency_restart(void);
#include <asm/emergency-restart.h>

L
Linus Torvalds 已提交
61
#endif /* _LINUX_REBOOT_H */