blob: df7710354f851dc957c497b30a77f4c6468c01df [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_REBOOT_H
2#define _ASM_X86_REBOOT_H
Jeremy Fitzhardinge07f33312007-05-02 19:27:11 +02003
4struct pt_regs;
5
Joe Perches78db4c62008-03-23 01:03:18 -07006struct machine_ops {
Jeremy Fitzhardinge07f33312007-05-02 19:27:11 +02007 void (*restart)(char *cmd);
8 void (*halt)(void);
9 void (*power_off)(void);
10 void (*shutdown)(void);
11 void (*crash_shutdown)(struct pt_regs *);
12 void (*emergency_restart)(void);
13};
14
15extern struct machine_ops machine_ops;
16
Glauber Costaed23dc62008-03-17 16:08:38 -030017void native_machine_crash_shutdown(struct pt_regs *regs);
Glauber Costa3c62c622008-03-17 16:08:39 -030018void native_machine_shutdown(void);
Jan Beulichebdd5612008-05-12 15:43:38 +020019void machine_real_restart(const unsigned char *code, int length);
Jeremy Fitzhardinge07f33312007-05-02 19:27:11 +020020
H. Peter Anvin1965aae2008-10-22 22:26:29 -070021#endif /* _ASM_X86_REBOOT_H */