Fred Reitberger has submitted this change. ( https://review.coreboot.org/c/coreboot/+/73166 )
Change subject: mb/amd/birman/bootblock.c: Skip EC configuration in SimNow ......................................................................
mb/amd/birman/bootblock.c: Skip EC configuration in SimNow
SimNow does not support the Birman EC, so skip the EC configuration steps when building for SimNow.
Signed-off-by: Fred Reitberger reitbergerfred@gmail.com Change-Id: I6e879a13a119d593674d3403d4e1b32e0e244d9f Reviewed-on: https://review.coreboot.org/c/coreboot/+/73166 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Felix Held felix-coreboot@felixheld.de --- M src/mainboard/amd/birman/bootblock.c 1 file changed, 18 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Felix Held: Looks good to me, approved
diff --git a/src/mainboard/amd/birman/bootblock.c b/src/mainboard/amd/birman/bootblock.c index a6e525d..1c47e6d 100644 --- a/src/mainboard/amd/birman/bootblock.c +++ b/src/mainboard/amd/birman/bootblock.c @@ -14,5 +14,6 @@
void bootblock_mainboard_init(void) { - birman_ec_init(); + if (!CONFIG(SOC_AMD_COMMON_BLOCK_SIMNOW_BUILD)) + birman_ec_init(); }