]> git.proxmox.com Git - mirror_edk2.git/blame - Vlv2DeviceRefCodePkg/AcpiTablesPCAT/DSDT.ASL
Upload BSD-licensed Vlv2TbltDevicePkg and Vlv2DeviceRefCodePkg to
[mirror_edk2.git] / Vlv2DeviceRefCodePkg / AcpiTablesPCAT / DSDT.ASL
CommitLineData
3cbfba02
DW
1/**************************************************************************;\r
2;* *;\r
3;* *;\r
4;* Intel Corporation - ACPI Reference Code for the Sandy Bridge *;\r
5;* Family of Customer Reference Boards. *;\r
6;* *;\r
7;* *;\r
8;* Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved *;\r
9;\r
10; This program and the accompanying materials are licensed and made available under\r
11; the terms and conditions of the BSD License that accompanies this distribution.\r
12; The full text of the license may be found at\r
13; http://opensource.org/licenses/bsd-license.php.\r
14;\r
15; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
16; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
17;\r
18;* *;\r
19;* *;\r
20;**************************************************************************/\r
21\r
22DefinitionBlock (\r
23 "DSDT.aml",\r
24 "DSDT",\r
25 0x02, // DSDT revision.\r
26 "OEMID", // OEM ID (6 byte string)\r
27 "VLV-SOC", // OEM table ID (8 byte string)\r
28 0x0 // OEM version of DSDT table (4 byte Integer)\r
29)\r
30\r
31// BEGIN OF ASL SCOPE\r
32{\r
33 External(MDBG, MethodObj)\r
34\r
35 Method(ADBG, 1, Serialized)\r
36 {\r
37\r
38 If(CondRefOf(MDBG)) //check if SSDT is loaded\r
39 {\r
40 Return(MDBG(Arg0))\r
41 }\r
42\r
43 Return(0)\r
44 }\r
45\r
46\r
47// Miscellaneous services enabled in Project\r
48 include ("token.asl")\r
49 include ("GloblNvs.asl")\r
50 include ("PciTree.asl")\r
51 include ("Pch.asl")\r
52 include ("Vlv.asl")\r
53 include ("CPU.asl")\r
54 include ("Platform.asl")\r
55 include ("THERMAL.ASL")\r
56 include ("PCI_DRC.ASL")\r
57 include ("Video.asl")\r
58 include ("Gpe.asl")\r
59 include ("IoTVirtualDevice.asl")\r
60\r
61 // Sleep states supported by Chipset/Board.\r
62 // SSx - BIOS setup controlled enabled _Sx Sleep state status\r
63 // Values to be written to SLP_TYPE register are provided by SBACPI.SDL (South Bridge ACPI ModulePart)\r
64\r
65 Name(\_S0, Package(4) {0x0,0x0,0,0}) // mandatory System state\r
66 Name(\_S1, Package(4) {0x1,0x0,0,0})\r
67 Name(\_S3, Package(4) {0x5,0x0,0,0})\r
68 Name(\_S4, Package(4) {0x6,0x0,0,0})\r
69 Name(\_S5, Package(4) {0x7,0x0,0,0}) // mandatory System state\r
70\r
71 Method(PTS, 1) // METHOD CALLED FROM _PTS PRIOR TO ENTER ANY SLEEP STATE\r
72 {\r
73 If(Arg0) // entering any sleep state\r
74 {\r
75 }\r
76 }\r
77 Method(WAK, 1) // METHOD CALLED FROM _WAK RIGHT AFTER WAKE UP\r
78 {\r
79 }\r
80\r
81}// End of ASL File\r