1 /** @file 2 This file describes the contents of the ACPI Firmware ACPI Control Structure (FACS) 3 . Some additional ACPI values are defined in Acpi10.h, Acpi20.h, and Acpi30.h 4 All changes to the FACS contents should be done in this file. 5 6 Copyright (c) 2013-2015 Intel Corporation. 7 8 This program and the accompanying materials 9 are licensed and made available under the terms and conditions of the BSD License 10 which accompanies this distribution. The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php 12 13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15 16 **/ 17 18 #ifndef _FACS_H_ 19 #define _FACS_H_ 20 21 // 22 // Statements that include other files 23 // 24 #include <IndustryStandard/Acpi.h> 25 26 // 27 // FACS Definitions 28 // 29 #define EFI_ACPI_FIRMWARE_WAKING_VECTOR 0x00000000 30 #define EFI_ACPI_GLOBAL_LOCK 0x00000000 31 32 #define EFI_ACPI_FIRMWARE_CONTROL_STRUCTURE_FLAGS 0x00000000 33 #define EFI_ACPI_X_FIRMWARE_WAKING_VECTOR 0x0000000000000000 34 35 #endif 36