diff options
author | Jonathan Zhang <jonzhang@fb.com> | 2020-05-20 10:13:12 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-26 15:09:25 +0000 |
commit | f381d97856854a4b43c0acdae9aaff991837ce64 (patch) | |
tree | 17e894033c24d45f6fde918627cdad0703fea6be /src/drivers/intel/fsp2_0 | |
parent | 2adb50d32e8cd9c61773b1d60de545255c6a4049 (diff) |
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>
Diffstat (limited to 'src/drivers/intel/fsp2_0')
-rw-r--r-- | src/drivers/intel/fsp2_0/hob_display.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/drivers/intel/fsp2_0/hob_display.c b/src/drivers/intel/fsp2_0/hob_display.c index 5c5e48d958..f21ebfeb5f 100644 --- a/src/drivers/intel/fsp2_0/hob_display.c +++ b/src/drivers/intel/fsp2_0/hob_display.c @@ -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) |