2020-04-03 01:22:13 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* This file is part of the coreboot project. */
|
2017-05-06 01:39:21 +02:00
|
|
|
|
|
|
|
#include <variant/ec.h>
|
2017-12-06 21:06:38 +01:00
|
|
|
#include <variant/gpio.h>
|
2017-05-06 01:39:21 +02:00
|
|
|
|
2020-05-02 19:24:23 +02:00
|
|
|
#include <acpi/acpi.h>
|
2017-05-06 01:39:21 +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-05-06 01:39:21 +02:00
|
|
|
0x20110725 // OEM revision
|
|
|
|
)
|
|
|
|
{
|
|
|
|
/* global NVS and variables */
|
|
|
|
#include <soc/intel/apollolake/acpi/globalnvs.asl>
|
|
|
|
|
|
|
|
/* CPU */
|
2018-11-28 13:53:15 +01:00
|
|
|
#include <cpu/intel/common/acpi/cpu.asl>
|
2017-05-06 01:39:21 +02:00
|
|
|
|
|
|
|
Scope (\_SB) {
|
|
|
|
Device (PCI0)
|
|
|
|
{
|
|
|
|
#include <soc/intel/apollolake/acpi/northbridge.asl>
|
|
|
|
#include <soc/intel/apollolake/acpi/southbridge.asl>
|
|
|
|
#include <soc/intel/apollolake/acpi/pch_hda.asl>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Chrome OS specific */
|
|
|
|
#include <vendorcode/google/chromeos/acpi/chromeos.asl>
|
|
|
|
|
2019-10-30 12:18:19 +01:00
|
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
2017-05-06 01:39:21 +02:00
|
|
|
|
|
|
|
/* Chrome OS Embedded Controller */
|
|
|
|
Scope (\_SB.PCI0.LPCB)
|
|
|
|
{
|
|
|
|
/* ACPI code for EC SuperIO functions */
|
|
|
|
#include <ec/google/chromeec/acpi/superio.asl>
|
|
|
|
/* ACPI code for EC functions */
|
|
|
|
#include <ec/google/chromeec/acpi/ec.asl>
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dynamic Platform Thermal Framework */
|
|
|
|
Scope (\_SB)
|
|
|
|
{
|
|
|
|
/* Per board variant specific definitions. */
|
|
|
|
#include <variant/acpi/dptf.asl>
|
|
|
|
/* Include soc specific DPTF changes */
|
|
|
|
#include <soc/intel/apollolake/acpi/dptf.asl>
|
|
|
|
/* Include common dptf ASL files */
|
|
|
|
#include <soc/intel/common/acpi/dptf/dptf.asl>
|
|
|
|
}
|
|
|
|
}
|