AcpiPlatform.h 537 B

123456789101112131415161718192021222324252627
  1. /** @file
  2. OVMF ACPI Platform Driver for Xen guests
  3. Copyright (C) 2021, Red Hat, Inc.
  4. Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR>
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #ifndef ACPI_PLATFORM_H_
  8. #define ACPI_PLATFORM_H_
  9. #include <Protocol/AcpiTable.h> // EFI_ACPI_TABLE_PROTOCOL
  10. EFI_STATUS
  11. EFIAPI
  12. InstallXenTables (
  13. IN EFI_ACPI_TABLE_PROTOCOL *AcpiProtocol
  14. );
  15. EFI_STATUS
  16. EFIAPI
  17. InstallAcpiTables (
  18. IN EFI_ACPI_TABLE_PROTOCOL *AcpiTable
  19. );
  20. #endif