From 10252035cec317565faf76a92f3312a6f52876b6 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 8 Dec 2020 17:34:59 +0100 Subject: soc/amd/cezanne: print APU family and model in bootblock_soc_init Change-Id: I457188c905167affc1ebcea835a36df822ecb23c Signed-off-by: Felix Held Reviewed-on: https://review.coreboot.org/c/coreboot/+/48476 Tested-by: build bot (Jenkins) Reviewed-by: Marshall Dawson --- src/soc/amd/cezanne/bootblock.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/soc') diff --git a/src/soc/amd/cezanne/bootblock.c b/src/soc/amd/cezanne/bootblock.c index 8e1bff0fbf..9fb99bdca2 100644 --- a/src/soc/amd/cezanne/bootblock.c +++ b/src/soc/amd/cezanne/bootblock.c @@ -2,6 +2,7 @@ #include #include +#include #include #include #include @@ -26,5 +27,7 @@ void bootblock_soc_early_init(void) void bootblock_soc_init(void) { + u32 val = cpuid_eax(1); + printk(BIOS_DEBUG, "Family_Model: %08x\n", val); fch_early_init(); } -- cgit v1.2.3