blob: 782bd9d4d779ac7ec90b4cd48d92857565019c66 [file] [log] [blame]
Raul E Rangel984ecf92021-02-11 10:07:00 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <acpi/acpi.h>
Mathew King1ab35a72021-03-03 15:11:28 -07004#include <variant/ec.h>
5
Raul E Rangel984ecf92021-02-11 10:07:00 -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>
Felix Held8b42a242023-01-20 21:25:07 +010016
17 Name(LIDS, 0)
18
Raul E Rangel984ecf92021-02-11 10:07:00 -070019 #include <soc.asl>
Mathew King1ab35a72021-03-03 15:11:28 -070020
Jon Murphyc4e90452022-06-28 10:36:23 -060021 /* ChromeOS Embedded Controller */
Mathew King1ab35a72021-03-03 15:11:28 -070022 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 }
Raul E Rangel984ecf92021-02-11 10:07:00 -070029}