DSDT.ASL 1.0 KB

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