blob: 73a2ea5da1364e126239e42028d7a89a8382e5d5 [file] [log] [blame]
Mathew King422501f2020-12-08 11:33:58 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <acpi/acpi.h>
Eric Lai7bbcdc22021-03-18 16:39:49 +08004#include <variant/ec.h>
5
Mathew King422501f2020-12-08 11:33:58 -07006DefinitionBlock (
7 "dsdt.aml",
8 "DSDT",
9 ACPI_DSDT_REV_2,
10 OEM_ID,
11 ACPI_TABLE_CREATOR,
12 0x00010001 /* OEM Revision */
13 )
14{
15 #include <acpi/dsdt_top.asl>
16
17 #include <soc.asl>
Eric Lai7bbcdc22021-03-18 16:39:49 +080018
19 /* Chrome OS Embedded Controller */
20 Scope (\_SB.PCI0.LPCB)
21 {
22 /* ACPI code for EC SuperIO functions */
23 #include <ec/google/chromeec/acpi/superio.asl>
24 /* ACPI code for EC functions */
25 #include <ec/google/chromeec/acpi/ec.asl>
26 }
Mathew King422501f2020-12-08 11:33:58 -070027}