]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatform.c
OvmfPkg/MemEncryptSevLib: find pages of initial SMRAM save state map
[mirror_edk2.git] / OvmfPkg / AcpiPlatformDxe / QemuFwCfgAcpiPlatform.c
CommitLineData
04951644
LE
1/** @file\r
2 OVMF ACPI Platform Driver using QEMU's fw-cfg interface\r
3\r
4 Copyright (C) 2015, Red Hat, Inc.\r
5 Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR>\r
6\r
7 This program and the accompanying materials are licensed and made available\r
8 under the terms and conditions of the BSD License which accompanies this\r
9 distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
11\r
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT\r
13 WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14**/\r
15\r
16#include "AcpiPlatform.h"\r
17\r
18/**\r
19 Effective entrypoint of QEMU fw-cfg Acpi Platform driver.\r
20\r
21 @param ImageHandle\r
22 @param SystemTable\r
23\r
24 @return EFI_SUCCESS\r
25 @return EFI_LOAD_ERROR\r
26 @return EFI_OUT_OF_RESOURCES\r
27\r
28**/\r
29EFI_STATUS\r
30EFIAPI\r
31InstallAcpiTables (\r
32 IN EFI_ACPI_TABLE_PROTOCOL *AcpiTable\r
33 )\r
34{\r
35 EFI_STATUS Status;\r
36\r
37 Status = InstallQemuFwCfgTables (AcpiTable);\r
38 return Status;\r
39}\r