soc/intel/xeon_sp/chip_common: Improve the domain ID
[coreboot2.git] / src / soc / intel / meteorlake / reset.c
blobbc5815ac7a52ea09d2795226c43a504f37e4bcdc
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <cf9_reset.h>
4 #include <intelblocks/cse.h>
5 #include <intelblocks/pmclib.h>
6 #include <soc/intel/common/reset.h>
8 void do_global_reset(void)
10 /* Ask CSE to do the global reset */
11 if (cse_request_global_reset())
12 return;
14 /* global reset if CSE fail to reset */
15 pmc_global_reset_enable(1);
16 do_full_reset();