]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/SmbiosPlatformDxe/XenSmbiosPlatformDxe.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / OvmfPkg / SmbiosPlatformDxe / XenSmbiosPlatformDxe.h
1 /** @file
2 This driver installs SMBIOS information for OVMF on Xen
3
4 Copyright (C) 2021, Red Hat, Inc.
5 Copyright (c) 2011, Bei Guan <gbtju85@gmail.com>
6 Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
7
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9
10 **/
11
12 #ifndef XEN_SMBIOS_PLATFORM_DXE_H_
13 #define XEN_SMBIOS_PLATFORM_DXE_H_
14
15 #include <IndustryStandard/SmBios.h> // SMBIOS_TABLE_ENTRY_POINT
16
17 /**
18 Locates the Xen SMBIOS data if it exists
19
20 @return SMBIOS_TABLE_ENTRY_POINT Address of Xen SMBIOS data
21
22 **/
23 SMBIOS_TABLE_ENTRY_POINT *
24 GetXenSmbiosTables (
25 VOID
26 );
27
28 #endif