summaryrefslogtreecommitdiff
path: root/CorebootModulePkg/CbSupportPei/CbSupportPei.c
diff options
context:
space:
mode:
Diffstat (limited to 'CorebootModulePkg/CbSupportPei/CbSupportPei.c')
-rwxr-xr-xCorebootModulePkg/CbSupportPei/CbSupportPei.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/CorebootModulePkg/CbSupportPei/CbSupportPei.c b/CorebootModulePkg/CbSupportPei/CbSupportPei.c
index 9d5803449e..80fd611bc8 100755
--- a/CorebootModulePkg/CbSupportPei/CbSupportPei.c
+++ b/CorebootModulePkg/CbSupportPei/CbSupportPei.c
@@ -388,6 +388,15 @@ CbPeiEntryPoint (
}
//
+ // Parse platform specific information from coreboot.
+ //
+ Status = CbParsePlatformInfo ();
+ if (EFI_ERROR (Status)) {
+ DEBUG ((EFI_D_ERROR, "Error when parsing platform info, Status = %r\n", Status));
+ return Status;
+ }
+
+ //
// Mask off all legacy 8259 interrupt sources
//
IoWrite8 (LEGACY_8259_MASK_REGISTER_MASTER, 0xFF);