drivers/intel/fsp2_0: print soc specific GUID extension hobs

Some SoC specific hobs are of HOB_TYPE_GUID_EXTENSION.

Call SoC specific soc_display_hob() to display the content as necessary.

Signed-off-by: Jonathan Zhang <jonzhang@fb.com>
Change-Id: Ib4e4abe2d89b04504d1988d8d3c2fde268b5345a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41565
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Jonathan Zhang 2020-05-20 10:13:12 -07:00 committed by Patrick Georgi
parent 2adb50d32e
commit f381d97856
1 changed files with 3 additions and 0 deletions

View File

@ -161,6 +161,9 @@ void fsp_print_guid_extension_hob(const struct hob_header *hob)
printk(BIOS_SPEW, "\t");
fsp_print_guid(res->owner_guid);
printk(BIOS_SPEW, ": %s\n", fsp_get_guid_name(res->owner_guid));
/* Some of the SoC FSP specific hobs are of type HOB_TYPE_GUID_EXTENSION */
soc_display_hob(hob);
}
__weak const char *soc_get_guid_name(const uint8_t *guid)