mirror of https://github.com/acidanthera/audk.git
Add WDAT ACPI table
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4823 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
14f7d6c89a
commit
c8c92c8d2f
|
@ -1,8 +1,8 @@
|
|||
/**
|
||||
@file
|
||||
ACPI 3.0 definitions from the ACPI Specification Revision 3.0 September 2, 2004
|
||||
@file
|
||||
ACPI 3.0 definitions from the ACPI Specification Revision 3.0 September 2, 2004
|
||||
|
||||
Copyright (c) 2006 - 2007, Intel Corporation
|
||||
Copyright (c) 2006 - 2008, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -665,6 +665,11 @@ typedef struct {
|
|||
//
|
||||
#define EFI_ACPI_3_0_WATCHDOG_RESOURCE_TABLE_SIGNATURE 0x54524457
|
||||
|
||||
//
|
||||
// "WDAT" Watchdog Action Table
|
||||
//
|
||||
#define EFI_ACPI_3_0_WATCHDOG_ACTION_TABLE_SIGNATURE 0x54414457
|
||||
|
||||
//
|
||||
// "iBFT" iSCSI Boot Firmware Table
|
||||
//
|
||||
|
|
|
@ -0,0 +1,94 @@
|
|||
/**
|
||||
@file
|
||||
ACPI Watchdog Action Table as defined at
|
||||
Microsoft Hardware Watchdog Timer Specification.
|
||||
|
||||
Copyright (c) 2008, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
**/
|
||||
|
||||
|
||||
#ifndef _WATCHDOG_ACTION_TABLE_H_
|
||||
#define _WATCHDOG_ACTION_TABLE_H_
|
||||
|
||||
#include <IndustryStandard/Acpi.h>
|
||||
|
||||
//
|
||||
// Ensure proper structure formats
|
||||
//
|
||||
#pragma pack(1)
|
||||
//
|
||||
// Watchdog Action Table definition.
|
||||
//
|
||||
typedef struct {
|
||||
EFI_ACPI_DESCRIPTION_HEADER Header;
|
||||
UINT32 WatchdogHeaderLength;
|
||||
UINT16 PCISegment;
|
||||
UINT8 PCIBusNumber;
|
||||
UINT8 PCIDeviceNumber;
|
||||
UINT8 PCIFunctionNumber;
|
||||
UINT8 Reserved_45[3];
|
||||
UINT32 TimerPeriod;
|
||||
UINT32 MaxCount;
|
||||
UINT32 MinCount;
|
||||
UINT8 WatchdogFlags;
|
||||
UINT8 Reserved_61[3];
|
||||
UINT32 NumberWatchdogInstructionEntries;
|
||||
} EFI_ACPI_WATCHDOG_ACTION_1_0_TABLE;
|
||||
|
||||
typedef struct {
|
||||
UINT8 WatchdogAction;
|
||||
UINT8 InstructionFlags;
|
||||
UINT8 Reserved_2[2];
|
||||
EFI_ACPI_2_0_GENERIC_ADDRESS_STRUCTURE RegisterRegion;
|
||||
UINT32 Value;
|
||||
UINT32 Mask;
|
||||
} EFI_ACPI_WATCHDOG_ACTION_1_0_WATCHDOG_ACTION_INSTRUCTION_ENTRY;
|
||||
|
||||
#pragma pack()
|
||||
|
||||
//
|
||||
// WDAT Revision (defined in spec)
|
||||
//
|
||||
#define EFI_ACPI_WATCHDOG_ACTION_1_0_TABLE_REVISION 0x01
|
||||
|
||||
//
|
||||
// WDAT 1.0 Flags
|
||||
//
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ENABLED 0x1
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_STOPPED_IN_SLEEP_STATE 0x80
|
||||
|
||||
//
|
||||
// WDAT 1.0 Watchdog Actions
|
||||
//
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_RESET 0x1
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_QUERY_CURRENT_COUNTDOWN_PERIOD 0x4
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_QUERY_COUNTDOWN_PERIOD 0x5
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_SET_COUNTDOWN_PERIOD 0x6
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_QUERY_RUNNING_STATE 0x8
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_SET_RUNNING_STATE 0x9
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_QUERY_STOPPED_STATE 0xA
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_SET_STOPPED_STATE 0xB
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_QUERY_REBOOT 0x10
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_SET_REBOOT 0x11
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_QUERY_SHUTDOWN 0x12
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_SET_SHUTDOWN 0x13
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_QUERY_WATCHDOG_STATUS 0x20
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_ACTION_SET_WATCHDOG_STATUS 0x21
|
||||
|
||||
//
|
||||
// WDAT 1.0 Watchdog Action Entry Instruction Flags
|
||||
//
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_INSTRUCTION_READ_VALUE 0x0
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_INSTRUCTION_READ_COUNTDOWN 0x1
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_INSTRUCTION_WRITE_VALUE 0x2
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_INSTRUCTION_WRITE_COUNTDOWN 0x3
|
||||
#define EFI_ACPI_WDAT_1_0_WATCHDOG_INSTRUCTION_PRESERVE_REGISTER 0x80
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue