/* SPDX-License-Identifier: GPL-2.0-only */ /* This file is part of the coreboot project. */ #define ENABLE_TPM #undef ENABLE_FDC // There is no Floppy for this laptop #include DefinitionBlock( "dsdt.aml", "DSDT", 0x02, // DSDT revision: ACPI v2.0 and up OEM_ID, ACPI_TABLE_CREATOR, 0x20090419 // OEM revision ) { #include #include "acpi/platform.asl" // global NVS and variables #include // General Purpose Events #include "acpi/gpe.asl" // mainboard specific devices #include "acpi/mainboard.asl" // Thermal Zone #include "acpi/thermal.asl" #include Scope (\_SB) { Device (PCI0) { #include #include } } #include }