2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_REBOOT_H
|
|
|
|
#define _ASM_X86_REBOOT_H
|
2007-05-02 17:27:11 +00:00
|
|
|
|
2008-11-12 13:34:41 +00:00
|
|
|
#include <linux/kdebug.h>
|
|
|
|
|
2007-05-02 17:27:11 +00:00
|
|
|
struct pt_regs;
|
|
|
|
|
2008-03-23 08:03:18 +00:00
|
|
|
struct machine_ops {
|
2007-05-02 17:27:11 +00:00
|
|
|
void (*restart)(char *cmd);
|
|
|
|
void (*halt)(void);
|
|
|
|
void (*power_off)(void);
|
|
|
|
void (*shutdown)(void);
|
|
|
|
void (*crash_shutdown)(struct pt_regs *);
|
|
|
|
void (*emergency_restart)(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct machine_ops machine_ops;
|
|
|
|
|
2008-03-17 19:08:38 +00:00
|
|
|
void native_machine_crash_shutdown(struct pt_regs *regs);
|
2008-03-17 19:08:39 +00:00
|
|
|
void native_machine_shutdown(void);
|
2011-02-15 02:36:03 +00:00
|
|
|
void machine_real_restart(unsigned int type);
|
|
|
|
/* These must match dispatch_table in reboot_32.S */
|
|
|
|
#define MRR_BIOS 0
|
|
|
|
#define MRR_APM 1
|
2007-05-02 17:27:11 +00:00
|
|
|
|
2011-09-30 19:06:21 +00:00
|
|
|
typedef void (*nmi_shootdown_cb)(int, struct pt_regs*);
|
2008-11-12 13:34:41 +00:00
|
|
|
void nmi_shootdown_cpus(nmi_shootdown_cb callback);
|
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_REBOOT_H */
|