Get ready to squash all Asus Z77 boards together, so as to factor out some redundant code. Tested with BUILD_TIMELESS=1, coreboot.rom for the Asus P8Z77-V LX2 remains identical when not adding the .config file in it. Change-Id: I701ec4adbc65732ffc0a60d311bf07bf7f414ebf Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54409 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
27 lines
608 B
Plaintext
27 lines
608 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
DefinitionBlock(
|
|
"dsdt.aml",
|
|
"DSDT",
|
|
ACPI_DSDT_REV_2,
|
|
OEM_ID,
|
|
ACPI_TABLE_CREATOR,
|
|
0x20141018 /* OEM revision */
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
#include "acpi/platform.asl"
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
#include <southbridge/intel/common/acpi/platform.asl>
|
|
#include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
|
|
Device (\_SB.PCI0)
|
|
{
|
|
#include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
|
|
#include <southbridge/intel/bd82x6x/acpi/pch.asl>
|
|
}
|
|
}
|