blob: fd97836564aac79ef57bf833b3cd87455d42f4e3 [file] [log] [blame]
Angel Pons60ec3652020-04-03 01:22:13 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Tobias Diedrich7a952042017-12-03 10:09:28 +01002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi.h>
Tobias Diedrich7a952042017-12-03 10:09:28 +01004DefinitionBlock(
5 "dsdt.aml",
6 "DSDT",
Elyes HAOUAS90d00de2020-10-05 16:38:53 +02007 ACPI_DSDT_REV_2,
Elyes HAOUAS6d19a202018-11-22 11:15:29 +01008 OEM_ID,
9 ACPI_TABLE_CREATOR,
Tobias Diedrich7a952042017-12-03 10:09:28 +010010 0x20141018 // OEM revision
11)
12{
Kyösti Mälkkicf246d52021-01-21 08:17:00 +020013 #include <acpi/dsdt_top.asl>
Tobias Diedrich7a952042017-12-03 10:09:28 +010014 #include "acpi/platform.asl"
Arthur Heymansaaced4a2018-11-28 13:53:15 +010015 #include <cpu/intel/common/acpi/cpu.asl>
Arthur Heymans6c13b042019-11-02 17:19:26 +010016 #include <southbridge/intel/common/acpi/platform.asl>
Tobias Diedrich7a952042017-12-03 10:09:28 +010017 /* global NVS and variables. */
18 #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
Subrata Banik2715cdb2019-10-30 16:48:19 +053019 #include <southbridge/intel/common/acpi/sleepstates.asl>
Tobias Diedrich7a952042017-12-03 10:09:28 +010020
21 Scope (\_SB) {
22 Device (PCI0)
23 {
24 #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
25 #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
26 #include <southbridge/intel/bd82x6x/acpi/pch.asl>
Tobias Diedrich7a952042017-12-03 10:09:28 +010027 }
28 }
29}