]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.h
OvmfPkg/SmbiosPlatformDxe: locate SMBIOS protocol in InstallAllStructures()
[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 #include <IndustryStandard/SmBios.h> // SMBIOS_TABLE_ENTRY_POINT
15
16 /**
17 Locates the Xen SMBIOS data if it exists
18
19 @return SMBIOS_TABLE_ENTRY_POINT Address of Xen SMBIOS data
20
21 **/
22 SMBIOS_TABLE_ENTRY_POINT *
23 GetXenSmbiosTables (
24 VOID
25 );
26
27
28 /**
29 Locates and extracts the QEMU SMBIOS table data if present in fw_cfg
30
31 @return Address of extracted QEMU SMBIOS data
32
33 **/
34 UINT8 *
35 GetQemuSmbiosTables (
36 VOID
37 );
38
39 #endif