The southbridge ASL already includes this file. Change-Id: I492d4c860a50ac98acbcb3a51fa4d47c94baade3 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50500 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
28 lines
673 B
Plaintext
28 lines
673 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 <southbridge/intel/common/acpi/platform.asl>
|
|
#include <southbridge/intel/lynxpoint/acpi/globalnvs.asl>
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
|
|
Device (\_SB.PCI0)
|
|
{
|
|
#include <northbridge/intel/haswell/acpi/hostbridge.asl>
|
|
#include <southbridge/intel/lynxpoint/acpi/pch.asl>
|
|
#include <drivers/intel/gma/acpi/default_brightness_levels.asl>
|
|
}
|
|
}
|