reboot.h 2.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3 4 5 6
#ifndef _LINUX_REBOOT_H
#define _LINUX_REBOOT_H


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

9 10
struct device;

11 12 13 14 15
#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 */

16
enum reboot_mode {
17
	REBOOT_UNDEFINED = -1,
18 19
	REBOOT_COLD = 0,
	REBOOT_WARM,
20 21
	REBOOT_HARD,
	REBOOT_SOFT,
22
	REBOOT_GPIO,
23
};
24
extern enum reboot_mode reboot_mode;
25
extern enum reboot_mode panic_reboot_mode;
26 27

enum reboot_type {
28 29 30 31 32 33 34
	BOOT_TRIPLE	= 't',
	BOOT_KBD	= 'k',
	BOOT_BIOS	= 'b',
	BOOT_ACPI	= 'a',
	BOOT_EFI	= 'e',
	BOOT_CF9_FORCE	= 'p',
	BOOT_CF9_SAFE	= 'q',
35 36 37 38 39 40 41
};
extern enum reboot_type reboot_type;

extern int reboot_default;
extern int reboot_cpu;
extern int reboot_force;

42

L
Linus Torvalds 已提交
43 44 45
extern int register_reboot_notifier(struct notifier_block *);
extern int unregister_reboot_notifier(struct notifier_block *);

46 47
extern int devm_register_reboot_notifier(struct device *, struct notifier_block *);

48 49 50
extern int register_restart_handler(struct notifier_block *);
extern int unregister_restart_handler(struct notifier_block *);
extern void do_kernel_restart(char *cmd);
L
Linus Torvalds 已提交
51 52 53 54 55

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

V
Vivek Goyal 已提交
56
extern void migrate_to_reboot_cpu(void);
L
Linus Torvalds 已提交
57 58 59 60
extern void machine_restart(char *cmd);
extern void machine_halt(void);
extern void machine_power_off(void);

61
extern void machine_shutdown(void);
62 63
struct pt_regs;
extern void machine_crash_shutdown(struct pt_regs *);
64

65
/*
66 67 68
 * Architecture independent implemenations of sys_reboot commands.
 */

69
extern void kernel_restart_prepare(char *cmd);
70 71 72
extern void kernel_restart(char *cmd);
extern void kernel_halt(void);
extern void kernel_power_off(void);
A
Adrian Bunk 已提交
73

D
Dave Young 已提交
74
extern int C_A_D; /* for sysctl */
A
Adrian Bunk 已提交
75
void ctrl_alt_del(void);
76

77 78 79
#define POWEROFF_CMD_PATH_LEN	256
extern char poweroff_cmd[POWEROFF_CMD_PATH_LEN];

80 81
extern void orderly_poweroff(bool force);
extern void orderly_reboot(void);
82

83 84 85 86 87 88 89
/*
 * Emergency restart, callable from an interrupt handler.
 */

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

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