soc/intel/ptl: Update ME specification version to 21
[coreboot.git] / src / mainboard / google / guybrush / dsdt.asl
blob782bd9d4d779ac7ec90b4cd48d92857565019c66
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <acpi/acpi.h>
4 #include <variant/ec.h>
6 DefinitionBlock (
7         "dsdt.aml",
8         "DSDT",
9         ACPI_DSDT_REV_2,
10         OEM_ID,
11         ACPI_TABLE_CREATOR,
12         0x00010001      /* OEM Revision */
13         )
15         #include <acpi/dsdt_top.asl>
17         Name(LIDS, 0)
19         #include <soc.asl>
21         /* ChromeOS Embedded Controller */
22         Scope (\_SB.PCI0.LPCB)
23         {
24                 /* ACPI code for EC SuperIO functions */
25                 #include <ec/google/chromeec/acpi/superio.asl>
26                 /* ACPI code for EC functions */
27                 #include <ec/google/chromeec/acpi/ec.asl>
28         }