90d00dea55
Change-Id: I5a5f4e7067948c5cc7a715a08f7a5a3e9b391191 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45904 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
24 lines
527 B
Text
24 lines
527 B
Text
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <acpi/acpi.h>
|
|
DefinitionBlock(
|
|
"dsdt.aml",
|
|
"DSDT",
|
|
ACPI_DSDT_REV_2,
|
|
OEM_ID,
|
|
ACPI_TABLE_CREATOR,
|
|
0x20110725 /* OEM revision */
|
|
)
|
|
{
|
|
#include <soc/intel/common/block/acpi/acpi/platform.asl>
|
|
#include <soc/intel/skylake/acpi/globalnvs.asl>
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
|
|
Device (\_SB.PCI0)
|
|
{
|
|
#include <soc/intel/skylake/acpi/systemagent.asl>
|
|
#include <soc/intel/skylake/acpi/pch.asl>
|
|
}
|
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
}
|