2020-04-03 01:21:31 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* This file is part of the coreboot project. */
|
2017-10-28 12:58:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
#define BRIGHTNESS_UP \_SB.PCI0.GFX0.INCB
|
|
|
|
#define BRIGHTNESS_DOWN \_SB.PCI0.GFX0.DECB
|
|
|
|
#define ACPI_VIDEO_DEVICE \_SB.PCI0.GFX0
|
2018-11-22 11:15:29 +01:00
|
|
|
#include <arch/acpi.h>
|
2017-10-28 12:58:08 +02:00
|
|
|
DefinitionBlock(
|
|
|
|
"dsdt.aml",
|
|
|
|
"DSDT",
|
2018-11-13 14:23:29 +01:00
|
|
|
0x02, // DSDT revision: ACPI v2.0 and up
|
2018-11-22 11:15:29 +01:00
|
|
|
OEM_ID,
|
|
|
|
ACPI_TABLE_CREATOR,
|
2017-10-28 12:58:08 +02:00
|
|
|
0x20141018 // OEM revision
|
|
|
|
)
|
|
|
|
{
|
|
|
|
#include "acpi/platform.asl"
|
2018-11-28 13:53:15 +01:00
|
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
2019-11-02 17:19:26 +01:00
|
|
|
#include <southbridge/intel/common/acpi/platform.asl>
|
2017-10-28 12:58:08 +02:00
|
|
|
/* global NVS and variables. */
|
|
|
|
#include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
|
2019-10-30 12:18:19 +01:00
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
2017-10-28 12:58:08 +02:00
|
|
|
|
|
|
|
Scope (\_SB) {
|
|
|
|
Device (PCI0)
|
|
|
|
{
|
|
|
|
#include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
|
|
|
|
#include <drivers/intel/gma/acpi/default_brightness_levels.asl>
|
|
|
|
#include <southbridge/intel/bd82x6x/acpi/pch.asl>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|