Use hostbridge.asl from Haswell instead of Broadwell. Both files are equivalent. Then, drop the now-unused hostbridge.asl from Broadwell. Tested with BUILD_TIMELESS=1, Purism Librem 13 v1 remains identical. Change-Id: I87d51727b75a9c59e2f5f3ba8d48c575ce93c78c Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55484 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
35 lines
686 B
Plaintext
35 lines
686 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,
|
|
0x20160115 /* OEM revision */
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
#include <soc/intel/broadwell/acpi/platform.asl>
|
|
|
|
/* Global NVS and variables */
|
|
#include <soc/intel/broadwell/pch/acpi/globalnvs.asl>
|
|
|
|
/* CPU */
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
|
|
Scope (\_SB) {
|
|
Device (PCI0)
|
|
{
|
|
#include <northbridge/intel/haswell/acpi/hostbridge.asl>
|
|
#include <soc/intel/broadwell/pch/acpi/pch.asl>
|
|
}
|
|
}
|
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
|
|
/* Mainboard specific */
|
|
#include "acpi/mainboard.asl"
|
|
}
|