From 49342cd6880b3f2a8e20957d976914cd4ee7b43d Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Thu, 5 Jan 2017 10:07:19 -0600 Subject: arch/x86: fix cmos post logging in non romcc bootblock cmos_post_init() is called in src/arch/x86/bootblock_simple.c, and that function is reponsible for bootstrapping the cmos post register contents. Without this function being called none of the cmos post functionality works correctly. Therefore, add a call to lib/bootblock.c which the C_ENVIRONMENT_BOOTBLOCK SoCs use. BUG=chrome-os-partner:61546 Change-Id: I2e3519f2f3f2c28e5cba26b5811f1eb0c2a90572 Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/18043 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh --- src/lib/bootblock.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib/bootblock.c') diff --git a/src/lib/bootblock.c b/src/lib/bootblock.c index 9dece0c373..a560152332 100644 --- a/src/lib/bootblock.c +++ b/src/lib/bootblock.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include @@ -35,6 +36,8 @@ void asmlinkage bootblock_main_with_timestamp(uint64_t base_timestamp) if (IS_ENABLED(CONFIG_COLLECT_TIMESTAMPS) && _timestamp_size > 0) timestamp_init(base_timestamp); + cmos_post_init(); + bootblock_soc_early_init(); bootblock_mainboard_early_init(); -- cgit v1.2.3