blob: 95ba60825461737083c98e35d07bda1e677561ee [file] [log] [blame]
#ifndef RESET_H
#define RESET_H
#if CONFIG_HAVE_HARD_RESET
void hard_reset(void);
#else
#define hard_reset() do {} while(0)
#endif
void soft_reset(void);
void cpu_reset(void);
/* Some Intel SoCs use a special reset that is specific to SoC */
void global_reset(void);
#endif