2013-10-04 23:00:07 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2009 coresystems GmbH
|
|
|
|
* Copyright (C) 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ENABLE_TPM
|
|
|
|
|
|
|
|
DefinitionBlock(
|
|
|
|
"dsdt.aml",
|
|
|
|
"DSDT",
|
2014-01-13 19:15:12 +01:00
|
|
|
0x05, // DSDT revision: ACPI v5.0
|
2013-10-04 23:00:07 +02:00
|
|
|
"COREv4", // OEM id
|
|
|
|
"COREBOOT", // OEM table id
|
|
|
|
0x20110725 // OEM revision
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Some generic macros
|
2013-11-05 04:45:52 +01:00
|
|
|
#include <soc/intel/baytrail/acpi/platform.asl>
|
2013-10-04 23:00:07 +02:00
|
|
|
|
|
|
|
// global NVS and variables
|
|
|
|
#include <soc/intel/baytrail/acpi/globalnvs.asl>
|
|
|
|
|
2013-11-05 04:45:52 +01:00
|
|
|
#include <soc/intel/baytrail/acpi/cpu.asl>
|
2013-10-04 23:00:07 +02:00
|
|
|
|
|
|
|
Scope (\_SB) {
|
|
|
|
Device (PCI0)
|
|
|
|
{
|
|
|
|
//#include <soc/intel/baytrail/acpi/northcluster.asl>
|
|
|
|
#include <soc/intel/baytrail/acpi/southcluster.asl>
|
|
|
|
}
|
2013-12-10 16:48:00 +01:00
|
|
|
|
|
|
|
/* Dynamic Platform Thermal Framework */
|
|
|
|
#include "acpi/dptf.asl"
|
2013-10-04 23:00:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#include <vendorcode/google/chromeos/acpi/chromeos.asl>
|
|
|
|
|
|
|
|
/* Chipset specific sleep states */
|
|
|
|
#include <soc/intel/baytrail/acpi/sleepstates.asl>
|
2014-01-13 19:15:12 +01:00
|
|
|
|
|
|
|
#include "acpi/mainboard.asl"
|
2013-10-04 23:00:07 +02:00
|
|
|
}
|