1 /* This file is part of the coreboot project. */
2 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 #ifndef _INTEL_COMMON_RESET_H_
5 #define _INTEL_COMMON_RESET_H_
8 * Implement SoC specific global reset (i.e. a reset of both host and
9 * ME partitions). Usually the ME is asked to perform the reset first.
10 * If that doesn't work out, fall back to a manual global reset.
12 void do_global_reset(void);
14 /* Prepare for reset, run do_global_reset(), halt. */
15 __noreturn
void global_reset(void);
17 #endif /* _INTEL_COMMON_RESET_H_ */