/* SPDX-License-Identifier: GPL-2.0-or-later */ #include #include DefinitionBlock( "dsdt.aml", "DSDT", ACPI_DSDT_REV_2, OEM_ID, ACPI_TABLE_CREATOR, 0x20110725 // OEM revision ) { #include #include /* global NVS and variables */ #include /* CPU */ #include Scope (\_SB) { #if CONFIG(HAVE_WWAN_POWER_SEQUENCE) #include "wwan_power.asl" #endif Device (PCI0) { #include #include #include } } /* Chipset specific sleep states */ #include /* ChromeOS Embedded Controller */ Scope (\_SB.PCI0.LPCB) { /* ACPI code for EC SuperIO functions */ #include /* ACPI code for EC functions */ #include } #if CONFIG(INCLUDE_NVIDIA_GPU_ASL) #include "acpi/gpu_top.asl" #endif }