1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| /** @file
| ACPI DSDT table
|
|
| Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
|
| #include "PlatformBoardId.h"
|
| DefinitionBlock (
| "DSDT.aml",
| "DSDT",
| 0x02, // DSDT revision.
| // A Revision field value greater than or equal to 2 signifies that integers
| // declared within the Definition Block are to be evaluated as 64-bit values
| "INTEL", // OEM ID (6 byte string)
| "CML ",// OEM table ID (8 byte string)
| 0x0 // OEM version of DSDT table (4 byte Integer)
| )
|
| // BEGIN OF ASL SCOPE
| {
| // Miscellaneous services enabled in Project
| Include ("AMLUPD.asl")
| Include ("PciTree.asl")
| Include ("Platform.asl")
|
| Name(\_S0, Package(4){0x0,0x0,0,0}) // mandatory System state
| if(SS1) { Name(\_S1, Package(4){0x1,0x0,0,0})}
| if(SS3) { Name(\_S3, Package(4){0x5,0x0,0,0})}
| if(SS4) { Name(\_S4, Package(4){0x6,0x0,0,0})}
| Name(\_S5, Package(4){0x7,0x0,0,0}) // mandatory System state
|
| }// End of ASL File
|
|
|
|