Add support to run SMM handler in TSEG instead of ASEG
[coreboot.git] / src / include / reset.h
1 #ifndef RESET_H
2 #define RESET_H
3
4 #if !defined( __ROMCC__ )
5 /* ROMCC can't do function prototypes... */
6
7 #if CONFIG_HAVE_HARD_RESET == 1
8 void hard_reset(void);
9 #else
10 #define hard_reset() do {} while(0)
11 #endif
12 void soft_reset(void);
13
14 #endif
15 #endif