]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/XenAcpiPlatformDxe/AcpiPlatform.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / OvmfPkg / XenAcpiPlatformDxe / AcpiPlatform.h
1 /** @file
2 OVMF ACPI Platform Driver for Xen guests
3
4 Copyright (C) 2021, Red Hat, Inc.
5 Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef ACPI_PLATFORM_H_
11 #define ACPI_PLATFORM_H_
12
13 #include <Protocol/AcpiTable.h> // EFI_ACPI_TABLE_PROTOCOL
14
15 EFI_STATUS
16 EFIAPI
17 InstallXenTables (
18 IN EFI_ACPI_TABLE_PROTOCOL *AcpiProtocol
19 );
20
21 EFI_STATUS
22 EFIAPI
23 InstallAcpiTables (
24 IN EFI_ACPI_TABLE_PROTOCOL *AcpiTable
25 );
26
27 #endif