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