2008-10-22 22:26:29 -07:00
|
|
|
#ifndef _ASM_X86_REBOOT_H
|
|
|
|
#define _ASM_X86_REBOOT_H
|
2007-05-02 19:27:11 +02:00
|
|
|
|
2008-11-12 11:34:41 -02:00
|
|
|
#include <linux/kdebug.h>
|
|
|
|
|
2007-05-02 19:27:11 +02:00
|
|
|
struct pt_regs;
|
|
|
|
|
2008-03-23 01:03:18 -07:00
|
|
|
struct machine_ops {
|
2007-05-02 19:27:11 +02: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 16:08:38 -03:00
|
|
|
void native_machine_crash_shutdown(struct pt_regs *regs);
|
2008-03-17 16:08:39 -03:00
|
|
|
void native_machine_shutdown(void);
|
2011-02-14 18:36:03 -08: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 19:27:11 +02:00
|
|
|
|
2011-09-30 15:06:21 -04:00
|
|
|
typedef void (*nmi_shootdown_cb)(int, struct pt_regs*);
|
2008-11-12 11:34:41 -02:00
|
|
|
void nmi_shootdown_cpus(nmi_shootdown_cb callback);
|
|
|
|
|
2008-10-22 22:26:29 -07:00
|
|
|
#endif /* _ASM_X86_REBOOT_H */
|