/** @file Override ACPI Tables for L05 Feature ;****************************************************************************** ;* Copyright (c) 2019, Insyde Software Corporation. All Rights Reserved. ;* ;* You may not reproduce, distribute, publish, display, perform, modify, adapt, ;* transmit, broadcast, present, recite, release, license or otherwise exploit ;* any part of this publication in any form, by any means, without the prior ;* written permission of Insyde Software Corporation. ;* ;****************************************************************************** */ #ifndef _ACPI_OVERRIDE_H_ #define _ACPI_OVERRIDE_H_ #include // // Libraries // #include #include #include #include #include #include #include #include #include #include #include // // UEFI Driver Model Protocols // // // Consumed Protocols // #include #include #include // // Produced Protocols // // // Guids // #include // // Driver Version // // // Protocol instances // // // Include files with function prototypes // #include #include #include "L05Config.h" #include "L05Project.h" #pragma pack(1) typedef struct { EFI_ACPI_DESCRIPTION_HEADER *Table; EFI_ACPI_TABLE_VERSION Version; UINTN Handle; } ACPI_TABLE_INFO; typedef struct { UINT8 SmbiosType03Type; UINT8 PreferredPmProfile; } PREFERRED_PM_PROFILE_CONVERT_TABLE; #pragma pack() #endif