]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Include / IndustryStandard / HighPrecisionEventTimerTable.h
CommitLineData
42eedea9 1/** @file\r
000f6a28 2 ACPI high precision event timer table definition, at www.intel.com\r
568eb0cb 3 Specification name is IA-PC HPET (High Precision Event Timers) Specification.\r
568eb0cb 4\r
9095d37b 5 Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>\r
9344f092 6 SPDX-License-Identifier: BSD-2-Clause-Patent\r
568eb0cb 7**/\r
8\r
9#ifndef _HIGH_PRECISION_EVENT_TIMER_TABLE_H_\r
10#define _HIGH_PRECISION_EVENT_TIMER_TABLE_H_\r
11\r
ecc40942 12#include <IndustryStandard/Acpi.h>\r
13\r
568eb0cb 14//\r
15// Ensure proper structure formats\r
16//\r
17#pragma pack(1)\r
1bc5d021 18\r
c9734786
MH
19///\r
20/// HPET Event Timer Block ID described in IA-PC HPET Specification, 3.2.4.\r
21///\r
22typedef union {\r
23 struct {\r
24 UINT32 Revision : 8;\r
25 UINT32 NumberOfTimers : 5;\r
26 UINT32 CounterSize : 1;\r
27 UINT32 Reserved : 1;\r
28 UINT32 LegacyRoute : 1;\r
29 UINT32 VendorId : 16;\r
30 } Bits;\r
31 UINT32 Uint32;\r
32} EFI_ACPI_HIGH_PRECISION_EVENT_TIMER_BLOCK_ID;\r
33\r
34\r
1bc5d021 35///\r
36/// High Precision Event Timer Table header definition.\r
37///\r
568eb0cb 38typedef struct {\r
39 EFI_ACPI_DESCRIPTION_HEADER Header;\r
40 UINT32 EventTimerBlockId;\r
41 EFI_ACPI_2_0_GENERIC_ADDRESS_STRUCTURE BaseAddressLower32Bit;\r
42 UINT8 HpetNumber;\r
43 UINT16 MainCounterMinimumClockTickInPeriodicMode;\r
44 UINT8 PageProtectionAndOemAttribute;\r
45} EFI_ACPI_HIGH_PRECISION_EVENT_TIMER_TABLE_HEADER;\r
46\r
1bc5d021 47///\r
48/// HPET Revision (defined in spec)\r
49///\r
568eb0cb 50#define EFI_ACPI_HIGH_PRECISION_EVENT_TIMER_TABLE_REVISION 0x01\r
51\r
52//\r
53// Page protection setting\r
54// Values 3 through 15 are reserved for use by the specification\r
55//\r
56#define EFI_ACPI_NO_PAGE_PROTECTION 0\r
57#define EFI_ACPI_4KB_PAGE_PROTECTION 1\r
58#define EFI_ACPI_64KB_PAGE_PROTECTION 2\r
59\r
766f4bc1 60#pragma pack()\r
61\r
568eb0cb 62#endif\r