1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3#include <variant/ec.h> 4 5/* DefinitionBlock Statement */ 6#include <acpi/acpi.h> 7 8DefinitionBlock ( 9 "dsdt.aml", 10 "DSDT", 11 ACPI_DSDT_REV_2, 12 OEM_ID, 13 ACPI_TABLE_CREATOR, 14 0x00010001 /* OEM Revision */ 15 ) 16{ /* Start of ASL file */ 17 #include <acpi/dsdt_top.asl> 18 19 Name(LIDS, 0) 20 21 #include <soc.asl> 22 23 /* Thermal handler */ 24 #include <variant/acpi/thermal.asl> 25 26 /* ChromeOS Embedded Controller */ 27 Scope (\_SB.PCI0.LPCB) 28 { 29 /* ACPI code for EC SuperIO functions */ 30 #include <ec/google/chromeec/acpi/superio.asl> 31 /* ACPI code for EC functions */ 32 #include <ec/google/chromeec/acpi/ec.asl> 33 } 34} 35/* End of ASL file */ 36