ade4f3520b
Change-Id: I4356a8bda71e84afe8c348d366479c5006bf2459 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49796 Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
37 lines
711 B
Text
37 lines
711 B
Text
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpi.h>
|
|
DefinitionBlock(
|
|
"dsdt.aml",
|
|
"DSDT",
|
|
ACPI_DSDT_REV_2,
|
|
OEM_ID,
|
|
ACPI_TABLE_CREATOR,
|
|
0x20110725 // OEM revision
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
#include "acpi/platform.asl"
|
|
|
|
// Thermal handler
|
|
#include "acpi/thermal.asl"
|
|
|
|
// global NVS and variables
|
|
#include <southbridge/intel/lynxpoint/acpi/globalnvs.asl>
|
|
|
|
// CPU
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
|
|
Scope (\_SB) {
|
|
Device (PCI0)
|
|
{
|
|
#include <northbridge/intel/haswell/acpi/hostbridge.asl>
|
|
#include <southbridge/intel/lynxpoint/acpi/pch.asl>
|
|
}
|
|
}
|
|
|
|
// Mainboard devices
|
|
#include "acpi/mainboard.asl"
|
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
}
|