2012-12-12 01:00:47 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2009 coresystems GmbH
|
|
|
|
* Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
DefinitionBlock(
|
|
|
|
"dsdt.aml",
|
|
|
|
"DSDT",
|
|
|
|
0x02, // DSDT revision: ACPI v2.0
|
|
|
|
"COREv4", // OEM id
|
2013-02-04 10:31:34 +01:00
|
|
|
"COREBOOT", // OEM table id
|
2012-12-12 01:00:47 +01:00
|
|
|
0x20110725 // OEM revision
|
|
|
|
)
|
|
|
|
{
|
2015-05-17 00:20:52 +02:00
|
|
|
#include <southbridge/intel/bd82x6x/acpi/platform.asl>
|
|
|
|
|
2012-12-12 01:00:47 +01:00
|
|
|
// Some generic macros
|
|
|
|
#include "acpi/platform.asl"
|
|
|
|
|
2018-05-07 01:13:19 +02:00
|
|
|
// Thermal handler
|
|
|
|
#include "acpi/thermal.asl"
|
|
|
|
|
2012-12-12 01:00:47 +01:00
|
|
|
// global NVS and variables
|
|
|
|
#include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
|
|
|
|
|
|
|
|
// General Purpose Events
|
|
|
|
//#include "acpi/gpe.asl"
|
|
|
|
|
|
|
|
#include <cpu/intel/model_206ax/acpi/cpu.asl>
|
|
|
|
|
|
|
|
Scope (\_SB) {
|
|
|
|
Device (PCI0)
|
|
|
|
{
|
|
|
|
#include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
|
|
|
|
#include <southbridge/intel/bd82x6x/acpi/pch.asl>
|
2015-08-27 13:31:46 +02:00
|
|
|
|
|
|
|
#include <drivers/intel/gma/acpi/default_brightness_levels.asl>
|
2012-12-12 01:00:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 01:11:08 +02:00
|
|
|
#include "acpi/mainboard.asl"
|
|
|
|
|
2012-12-12 01:00:47 +01:00
|
|
|
#include <vendorcode/google/chromeos/acpi/chromeos.asl>
|
|
|
|
|
|
|
|
/* Chipset specific sleep states */
|
|
|
|
#include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>
|
|
|
|
}
|