soc/mediatek/mt8196: Initialize SSPM
[coreboot.git] / src / cpu / qemu-x86 / bootblock.c
blob1b46403eb70ef9a5ce7fa027638160e6dadc6760
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootblock_common.h>
4 #include <console/console.h>
5 #include <cpu/x86/bist.h>
7 asmlinkage void bootblock_c_entry_bist(uint64_t base_timestamp, uint32_t bist)
9 post_code(0x05);
11 /* Halt if there was a built in self test failure */
12 if (bist) {
13 console_init();
14 report_bist_failure(bist);
17 /* Call lib/bootblock.c main */
18 bootblock_main_with_basetime(base_timestamp);