mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-01 12:53:27 +01:00
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
|
/** @file
|
||
|
Find and extract SMBIOS data.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
**/
|
||
|
|
||
|
#include <Library/MemoryAllocationLib.h> // FreePool()
|
||
|
#include <OvmfPlatforms.h> // CLOUDHV_DEVICE_ID
|
||
|
|
||
|
#include "SmbiosPlatformDxe.h"
|
||
|
|
||
|
/**
|
||
|
Installs SMBIOS information for OVMF
|
||
|
|
||
|
@param ImageHandle Module's image handle
|
||
|
@param SystemTable Pointer of EFI_SYSTEM_TABLE
|
||
|
|
||
|
@retval EFI_SUCCESS Smbios data successfully installed
|
||
|
@retval Other Smbios data was not installed
|
||
|
|
||
|
**/
|
||
|
EFI_STATUS
|
||
|
EFIAPI
|
||
|
SmbiosTablePublishEntry (
|
||
|
IN EFI_HANDLE ImageHandle,
|
||
|
IN EFI_SYSTEM_TABLE *SystemTable
|
||
|
)
|
||
|
{
|
||
|
EFI_STATUS Status;
|
||
|
UINT8 *SmbiosTables;
|
||
|
UINT16 HostBridgeDevId;
|
||
|
|
||
|
Status = EFI_NOT_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 ();
|
||
|
if (SmbiosTables != NULL) {
|
||
|
Status = InstallAllStructures (SmbiosTables);
|
||
|
FreePool (SmbiosTables);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return Status;
|
||
|
}
|