]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / OvmfPkg / SmbiosPlatformDxe / SmbiosPlatformDxe.h
1 /** @file
2 This driver installs SMBIOS information for OVMF
3
4 Copyright (c) 2011, Bei Guan <gbtju85@gmail.com>
5 Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
6
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11 #ifndef SMBIOS_PLATFORM_DXE_H_
12 #define SMBIOS_PLATFORM_DXE_H_
13
14 /**
15 Install all structures from the given SMBIOS structures block
16
17 @param TableAddress SMBIOS tables starting address
18
19 **/
20 EFI_STATUS
21 InstallAllStructures (
22 IN UINT8 *TableAddress
23 );
24
25 /**
26 Locates and extracts the QEMU SMBIOS data if present in fw_cfg
27
28 @return Address of extracted QEMU SMBIOS data
29
30 **/
31 UINT8 *
32 GetQemuSmbiosTables (
33 VOID
34 );
35
36 /**
37 Locates and extracts Cloud Hypervisor SMBIOS data
38
39 @return Address of extracted Cloud Hypervisor SMBIOS data
40
41 **/
42 UINT8 *
43 GetCloudHvSmbiosTables (
44 VOID
45 );
46
47 #endif