Tested with BUILD_TIMELESS=1, Google Wolf remains identical. Change-Id: I710581156937b042ba4cf5948c65d0795ad37bbf Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46789 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
50 lines
907 B
Plaintext
50 lines
907 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,
|
|
0x20110725 // OEM revision
|
|
)
|
|
{
|
|
#include "acpi/platform.asl"
|
|
|
|
// Thermal handler
|
|
#include "acpi/thermal.asl"
|
|
|
|
// global NVS and variables
|
|
#include <southbridge/intel/lynxpoint/acpi/globalnvs.asl>
|
|
|
|
// CPU
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
|
|
Scope (\_SB) {
|
|
Device (PCI0)
|
|
{
|
|
#include <northbridge/intel/haswell/acpi/hostbridge.asl>
|
|
#include <southbridge/intel/lynxpoint/acpi/pch.asl>
|
|
|
|
#include <drivers/intel/gma/acpi/default_brightness_levels.asl>
|
|
}
|
|
}
|
|
|
|
Scope (\_SB.PCI0.RP01)
|
|
{
|
|
Device (WLAN)
|
|
{
|
|
Name (_ADR, Zero)
|
|
}
|
|
}
|
|
|
|
// Mainboard specific
|
|
#include "acpi/mainboard.asl"
|
|
|
|
// Chrome OS specific
|
|
#include <vendorcode/google/chromeos/acpi/chromeos.asl>
|
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
}
|