mb/google/brya: Create rull variant
[coreboot2.git] / src / mainboard / google / skyrim / dsdt.asl
blobb55f3ea75bab877662a2b1e2c0d4baf6823b20f5
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         #include <soc.asl>
18 #if CONFIG(FEATURE_DYNAMIC_DPTC)
19         #include <variant/acpi/dtts.asl>
20 #endif
22         /* ChromeOS Embedded Controller */
23         Scope (\_SB.PCI0.LPCB)
24         {
25                 /* ACPI code for EC SuperIO functions */
26                 #include <ec/google/chromeec/acpi/superio.asl>
27                 /* ACPI code for EC functions */
28                 #include <ec/google/chromeec/acpi/ec.asl>
29         }