treewide: replace GPLv2 long form headers with SPDX header
[coreboot.git] / src / soc / intel / common / reset.h
blobc34546489b212003d922b7ef060f3d8c86b8c250
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_
7 /*
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_ */