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>
32 lines
744 B
Text
32 lines
744 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,
|
|
0x20141018 // OEM revision
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
#include <southbridge/intel/common/acpi/platform.asl>
|
|
|
|
#include "acpi/mainboard.asl"
|
|
#include "acpi/platform.asl"
|
|
#include "acpi/thermal.asl"
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
|
/* global NVS and variables. */
|
|
#include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
|
|
Scope (\_SB) {
|
|
Device (PCI0)
|
|
{
|
|
#include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
|
|
#include <southbridge/intel/bd82x6x/acpi/pch.asl>
|
|
#include "acpi/pci.asl"
|
|
}
|
|
}
|
|
}
|