UefiPayloadPkg: Remove SystemTableInfo GUID.
SystemTableInfo GUID is not a Spec defined GUID. The latest SBL and CBL produces ACPI and SMBIOS table information. So removing the SystemTableInfo GUID implementation. Cc: Maurice Ma <maurice.ma@intel.com> Cc: Guo Dong <guo.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Benjamin You <benjamin.you@intel.com> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Signed-off-by: Guo Dong <guo.dong@intel.com> Signed-off-by: Thiyagu Kesavan Balakrishnan <thiyagux.kesavan.balakrishnan@intel.com> Reviewed-by: Guo Dong <guo.dong@intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
1bc232aae3
commit
e7663fdd82
@@ -13,8 +13,9 @@
|
||||
#include <Guid/GraphicsInfoHob.h>
|
||||
#include <Guid/MemoryMapInfoGuid.h>
|
||||
#include <Guid/SerialPortInfoGuid.h>
|
||||
#include <Guid/SystemTableInfoGuid.h>
|
||||
#include <Guid/AcpiBoardInfoGuid.h>
|
||||
#include <UniversalPayload/AcpiTable.h>
|
||||
#include <UniversalPayload/SmbiosTable.h>
|
||||
|
||||
#define GET_BOOTLOADER_PARAMETER() PcdGet64 (PcdBootloaderParameter)
|
||||
|
||||
@@ -55,9 +56,9 @@ ParseMemoryInfo (
|
||||
);
|
||||
|
||||
/**
|
||||
Acquire acpi table and smbios table from slim bootloader
|
||||
Acquire SMBIOS table from bootloader.
|
||||
|
||||
@param SystemTableInfo Pointer to the system table info
|
||||
@param SmbiosTable Pointer to the system table info
|
||||
|
||||
@retval RETURN_SUCCESS Successfully find out the tables.
|
||||
@retval RETURN_NOT_FOUND Failed to find the tables.
|
||||
@@ -65,10 +66,24 @@ ParseMemoryInfo (
|
||||
**/
|
||||
RETURN_STATUS
|
||||
EFIAPI
|
||||
ParseSystemTable (
|
||||
OUT SYSTEM_TABLE_INFO *SystemTableInfo
|
||||
ParseSmbiosTable (
|
||||
OUT UNIVERSAL_PAYLOAD_SMBIOS_TABLE *SmbiosTable
|
||||
);
|
||||
|
||||
/**
|
||||
Acquire ACPI table from bootloader.
|
||||
|
||||
@param AcpiTableHob Pointer to the ACPI table info.
|
||||
|
||||
@retval RETURN_SUCCESS Successfully find out the tables.
|
||||
@retval RETURN_NOT_FOUND Failed to find the tables.
|
||||
|
||||
**/
|
||||
RETURN_STATUS
|
||||
EFIAPI
|
||||
ParseAcpiTableInfo (
|
||||
OUT UNIVERSAL_PAYLOAD_ACPI_TABLE *AcpiTableHob
|
||||
);
|
||||
|
||||
/**
|
||||
Find the serial port information
|
||||
|
Reference in New Issue
Block a user