mirror of https://github.com/acidanthera/audk.git
OvmfPkg: Retrieve SMBIOS from Cloud Hypervisor
Add a fallback on the SMBIOS code to find the SMBIOS table for Cloud Hypervisor if it couldn't be found for Qemu through fw_cfg. Reviewed-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Signed-off-by: Rob Bradford <robert.bradford@intel.com> Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
parent
2ccefa32a6
commit
d8ef774346
|
@ -33,4 +33,9 @@
|
||||||
//
|
//
|
||||||
#define CLOUDHV_MMIO_HOLE_SIZE 0x38000000
|
#define CLOUDHV_MMIO_HOLE_SIZE 0x38000000
|
||||||
|
|
||||||
|
//
|
||||||
|
// SMBIOS address
|
||||||
|
//
|
||||||
|
#define CLOUDHV_SMBIOS_ADDRESS 0xf0000
|
||||||
|
|
||||||
#endif // __CLOUDHV_H__
|
#endif // __CLOUDHV_H__
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
/** @file
|
||||||
|
Find Cloud Hypervisor SMBIOS data.
|
||||||
|
|
||||||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
**/
|
||||||
|
|
||||||
|
#include <IndustryStandard/CloudHv.h> // CLOUDHV_SMBIOS_ADDRESS
|
||||||
|
#include <IndustryStandard/SmBios.h> // SMBIOS_TABLE_3_0_ENTRY_POINT
|
||||||
|
|
||||||
|
/**
|
||||||
|
Locates and extracts Cloud Hypervisor SMBIOS data
|
||||||
|
|
||||||
|
@return Address of extracted Cloud Hypervisor SMBIOS data
|
||||||
|
|
||||||
|
**/
|
||||||
|
UINT8 *
|
||||||
|
GetCloudHvSmbiosTables (
|
||||||
|
VOID
|
||||||
|
)
|
||||||
|
{
|
||||||
|
SMBIOS_TABLE_3_0_ENTRY_POINT *CloudHvTables = (VOID *)CLOUDHV_SMBIOS_ADDRESS;
|
||||||
|
|
||||||
|
if ((CloudHvTables->AnchorString[0] == '_') &&
|
||||||
|
(CloudHvTables->AnchorString[1] == 'S') &&
|
||||||
|
(CloudHvTables->AnchorString[2] == 'M') &&
|
||||||
|
(CloudHvTables->AnchorString[3] == '3') &&
|
||||||
|
(CloudHvTables->AnchorString[4] == '_'))
|
||||||
|
{
|
||||||
|
return (UINT8 *)(UINTN)CloudHvTables->TableAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
|
@ -5,6 +5,7 @@
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#include <Library/MemoryAllocationLib.h> // FreePool()
|
#include <Library/MemoryAllocationLib.h> // FreePool()
|
||||||
|
#include <OvmfPlatforms.h> // CLOUDHV_DEVICE_ID
|
||||||
|
|
||||||
#include "SmbiosPlatformDxe.h"
|
#include "SmbiosPlatformDxe.h"
|
||||||
|
|
||||||
|
@ -27,16 +28,25 @@ SmbiosTablePublishEntry (
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
UINT8 *SmbiosTables;
|
UINT8 *SmbiosTables;
|
||||||
|
UINT16 HostBridgeDevId;
|
||||||
|
|
||||||
Status = EFI_NOT_FOUND;
|
Status = EFI_NOT_FOUND;
|
||||||
//
|
//
|
||||||
// Add QEMU SMBIOS data if found
|
// Add SMBIOS data if found
|
||||||
//
|
//
|
||||||
|
HostBridgeDevId = PcdGet16 (PcdOvmfHostBridgePciDevId);
|
||||||
|
if (HostBridgeDevId == CLOUDHV_DEVICE_ID) {
|
||||||
|
SmbiosTables = GetCloudHvSmbiosTables ();
|
||||||
|
if (SmbiosTables != NULL) {
|
||||||
|
Status = InstallAllStructures (SmbiosTables);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
SmbiosTables = GetQemuSmbiosTables ();
|
SmbiosTables = GetQemuSmbiosTables ();
|
||||||
if (SmbiosTables != NULL) {
|
if (SmbiosTables != NULL) {
|
||||||
Status = InstallAllStructures (SmbiosTables);
|
Status = InstallAllStructures (SmbiosTables);
|
||||||
FreePool (SmbiosTables);
|
FreePool (SmbiosTables);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,4 +33,15 @@ GetQemuSmbiosTables (
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
Locates and extracts Cloud Hypervisor SMBIOS data
|
||||||
|
|
||||||
|
@return Address of extracted Cloud Hypervisor SMBIOS data
|
||||||
|
|
||||||
|
**/
|
||||||
|
UINT8 *
|
||||||
|
GetCloudHvSmbiosTables (
|
||||||
|
VOID
|
||||||
|
);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
[Sources]
|
[Sources]
|
||||||
|
CloudHv.c
|
||||||
EntryPoint.c
|
EntryPoint.c
|
||||||
Qemu.c
|
Qemu.c
|
||||||
SmbiosPlatformDxe.c
|
SmbiosPlatformDxe.c
|
||||||
|
@ -42,6 +43,7 @@
|
||||||
UefiDriverEntryPoint
|
UefiDriverEntryPoint
|
||||||
|
|
||||||
[Pcd]
|
[Pcd]
|
||||||
|
gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId
|
||||||
gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated
|
gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated
|
||||||
|
|
||||||
[Protocols]
|
[Protocols]
|
||||||
|
|
Loading…
Reference in New Issue