]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/AcpiTables/Platform.h
336b21156abaaf22e66c5f6c161e68b9d1ccd689
[mirror_edk2.git] / OvmfPkg / AcpiTables / Platform.h
1 /** @file
2 Platform specific defines for constructing ACPI tables
3
4 Copyright (c) 2008, Intel Corporation<BR> All rights
5 reserved. This program and the accompanying materials are
6 licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _Platform_h_INCLUDED_
16 #define _Platform_h_INCLUDED_
17
18 #include <PiDxe.h>
19 #include <IndustryStandard/Acpi.h>
20
21 //
22 // ACPI table information used to initialize tables.
23 //
24 #define EFI_ACPI_OEM_ID 'O','V','M','F',' ',' ' // OEMID 6 bytes long
25 #define EFI_ACPI_OEM_TABLE_ID SIGNATURE_64('O','V','M','F','E','D','K','2') // OEM table id 8 bytes long
26 #define EFI_ACPI_OEM_REVISION 0x02000820
27 #define EFI_ACPI_CREATOR_ID SIGNATURE_32('O','V','M','F')
28 #define EFI_ACPI_CREATOR_REVISION 0x00000097
29
30 #define INT_MODEL 0x01
31 #define SCI_INT_VECTOR 0x0009
32 #define SMI_CMD_IO_PORT 0 // If SMM was supported, then this would be 0xB2
33 #define ACPI_ENABLE 0x0E1
34 #define ACPI_DISABLE 0x01E
35 #define S4BIOS_REQ 0x00
36 #define PM1a_EVT_BLK 0x00000400
37 #define PM1b_EVT_BLK 0x00000000
38 #define PM1a_CNT_BLK 0x00000404
39 #define PM1b_CNT_BLK 0x00000000
40 #define PM2_CNT_BLK 0x00000022
41 #define PM_TMR_BLK 0x00000408
42 #define GPE0_BLK 0x0000040C
43 #define GPE1_BLK 0x00000000
44 #define PM1_EVT_LEN 0x04
45 #define PM1_CNT_LEN 0x02
46 #define PM2_CNT_LEN 0x01
47 #define PM_TM_LEN 0x04
48 #define GPE0_BLK_LEN 0x04
49 #define GPE1_BLK_LEN 0x00
50 #define GPE1_BASE 0x00
51 #define RESERVED 0x00
52 #define P_LVL2_LAT 0x0065
53 #define P_LVL3_LAT 0x03E9
54 #define FLUSH_SIZE 0x0400
55 #define FLUSH_STRIDE 0x0010
56 #define DUTY_OFFSET 0x00
57 #define DUTY_WIDTH 0x00
58 #define DAY_ALRM 0x0D
59 #define MON_ALRM 0x00
60 #define CENTURY 0x00
61 #define FLAG EFI_ACPI_1_0_WBINVD | EFI_ACPI_1_0_PROC_C1 | EFI_ACPI_1_0_SLP_BUTTON | EFI_ACPI_1_0_RTC_S4 | EFI_ACPI_1_0_TMR_VAL_EXT
62
63 #endif
64