soc/intel/xeon_sp/chip_common: Improve the domain ID
[coreboot2.git] / src / soc / intel / meteorlake / bootblock / bootblock.c
blobc7e1826d23c251d82dfa3db6ffc64a77254fa9b7
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootblock_common.h>
4 #include <soc/bootblock.h>
6 asmlinkage void bootblock_c_entry(uint64_t base_timestamp)
8 /* Call lib/bootblock.c main */
9 bootblock_main_with_basetime(base_timestamp);
12 void bootblock_soc_early_init(void)
14 bootblock_soc_die_early_init();
15 bootblock_ioe_die_early_init();
18 void bootblock_soc_init(void)
20 report_platform_info();
21 bootblock_soc_die_init();