Was copy-pasted from i82801ix and no mainboard actually needs it. Change-Id: I400424540b52dc5d43aba15720b18ad57ea2ebda Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49279 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
26 lines
506 B
Text
26 lines
506 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,
|
|
0x20090811 // OEM revision
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
|
|
OSYS = 2002
|
|
// global NVS and variables
|
|
#include <southbridge/intel/common/acpi/platform.asl>
|
|
|
|
Device (\_SB.PCI0)
|
|
{
|
|
#include <northbridge/intel/x4x/acpi/x4x.asl>
|
|
#include <southbridge/intel/i82801jx/acpi/ich10.asl>
|
|
}
|
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
}
|