2008-10-23 13:26:29 +08:00
|
|
|
#ifndef _ASM_X86_REBOOT_H
|
|
|
|
#define _ASM_X86_REBOOT_H
|
2007-05-03 01:27:11 +08:00
|
|
|
|
2008-11-12 21:34:41 +08:00
|
|
|
#include <linux/kdebug.h>
|
|
|
|
|
2007-05-03 01:27:11 +08:00
|
|
|
struct pt_regs;
|
|
|
|
|
2008-03-23 16:03:18 +08:00
|
|
|
struct machine_ops {
|
2007-05-03 01:27:11 +08: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-18 03:08:38 +08:00
|
|
|
void native_machine_crash_shutdown(struct pt_regs *regs);
|
2008-03-18 03:08:39 +08:00
|
|
|
void native_machine_shutdown(void);
|
2008-05-12 21:43:38 +08:00
|
|
|
void machine_real_restart(const unsigned char *code, int length);
|
2007-05-03 01:27:11 +08:00
|
|
|
|
2008-11-12 21:34:41 +08:00
|
|
|
typedef void (*nmi_shootdown_cb)(int, struct die_args*);
|
|
|
|
void nmi_shootdown_cpus(nmi_shootdown_cb callback);
|
|
|
|
|
2008-10-23 13:26:29 +08:00
|
|
|
#endif /* _ASM_X86_REBOOT_H */
|