b27e7db0dc
Desktop boards do not have any backlight control. Change-Id: Ie9f5f4d7e6ae09b3d664d53e4c03157fd4ed088e Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50501 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
28 lines
525 B
Text
28 lines
525 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,
|
|
0x20090419 // OEM revision
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
|
|
OSYS = 2002
|
|
// global NVS and variables
|
|
#include <southbridge/intel/common/acpi/platform.asl>
|
|
|
|
Scope (\_SB) {
|
|
Device (PCI0)
|
|
{
|
|
#include <northbridge/intel/x4x/acpi/x4x.asl>
|
|
#include <southbridge/intel/i82801jx/acpi/ich10.asl>
|
|
}
|
|
}
|
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
}
|