mirror of https://github.com/acidanthera/audk.git
ArmVirtPkg: QemuFwCfgToPcdDxe: set SMBIOS entry point version dynamically
(This patch parallels OvmfPkg commit 37baf06b
(SVN r17676).)
PcdSmbiosVersion controls the version number of the SMBIOS entry point
table (and other, related things) that the universal
"MdeModulePkg/Universal/SmbiosDxe" driver, providing EFI_SMBIOS_PROTOCOL,
installs.
The "virt" machine type of QEMU generates SMBIOS payload for the firmware
to install. The payload includes the entry point table ("anchor" table).
OvmfPkg/SmbiosPlatformDxe cannot install the anchor table (because that is
the jurisdiction of the generic "MdeModulePkg/Universal/SmbiosDxe"
driver); however, we can parse the entry point version from QEMU's anchor
table, and instruct "MdeModulePkg/Universal/SmbiosDxe" to adhere to that
version.
As default for PcdSmbiosVersion we should keep the current 0x0300 value
(ie. SMBIOS 3.0) from "MdeModulePkg/MdeModulePkg.dec"; that spec version
was specifically created for ARM / AARCH64 needs.
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18043 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d2733aa95a
commit
c98da3345a
|
@ -232,6 +232,11 @@
|
|||
gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
|
||||
|
||||
#
|
||||
# SMBIOS entry point version
|
||||
#
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0300
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# Components Section - list of all EDK II Modules needed by this Platform
|
||||
|
|
|
@ -19,9 +19,48 @@
|
|||
#include <Uefi/UefiBaseType.h>
|
||||
#include <Uefi/UefiSpec.h>
|
||||
|
||||
#include <IndustryStandard/SmBios.h>
|
||||
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/PcdLib.h>
|
||||
#include <Library/QemuFwCfgLib.h>
|
||||
|
||||
|
||||
/**
|
||||
Set the SMBIOS entry point version for the generic SmbiosDxe driver.
|
||||
**/
|
||||
STATIC
|
||||
VOID
|
||||
SmbiosVersionInitialization (
|
||||
VOID
|
||||
)
|
||||
{
|
||||
FIRMWARE_CONFIG_ITEM Anchor;
|
||||
UINTN AnchorSize;
|
||||
SMBIOS_TABLE_ENTRY_POINT QemuAnchor;
|
||||
UINT16 SmbiosVersion;
|
||||
|
||||
if (RETURN_ERROR (QemuFwCfgFindFile ("etc/smbios/smbios-anchor", &Anchor,
|
||||
&AnchorSize)) ||
|
||||
AnchorSize != sizeof QemuAnchor) {
|
||||
return;
|
||||
}
|
||||
|
||||
QemuFwCfgSelectItem (Anchor);
|
||||
QemuFwCfgReadBytes (AnchorSize, &QemuAnchor);
|
||||
if (CompareMem (QemuAnchor.AnchorString, "_SM_", 4) != 0 ||
|
||||
CompareMem (QemuAnchor.IntermediateAnchorString, "_DMI_", 5) != 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
SmbiosVersion = (UINT16)(QemuAnchor.MajorVersion << 8 |
|
||||
QemuAnchor.MinorVersion);
|
||||
DEBUG ((EFI_D_INFO, "%a: SMBIOS version from QEMU: 0x%04x\n", __FUNCTION__,
|
||||
SmbiosVersion));
|
||||
PcdSet16 (PcdSmbiosVersion, SmbiosVersion);
|
||||
}
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
ParseQemuFwCfgToPcd (
|
||||
|
@ -29,5 +68,6 @@ ParseQemuFwCfgToPcd (
|
|||
IN EFI_SYSTEM_TABLE *SystemTable
|
||||
)
|
||||
{
|
||||
SmbiosVersionInitialization ();
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -29,14 +29,18 @@
|
|||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
MdeModulePkg/MdeModulePkg.dec
|
||||
OvmfPkg/OvmfPkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
BaseMemoryLib
|
||||
DebugLib
|
||||
PcdLib
|
||||
QemuFwCfgLib
|
||||
UefiDriverEntryPoint
|
||||
|
||||
[Pcd]
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion
|
||||
|
||||
[Depex]
|
||||
TRUE
|
||||
|
|
Loading…
Reference in New Issue