2009-03-13 01:44:09 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2009 coresystems GmbH
|
|
|
|
*
|
2010-03-01 18:19:55 +01:00
|
|
|
* 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.
|
2009-03-13 01:44:09 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2010-03-01 18:19:55 +01:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2009-03-13 01:44:09 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
DefinitionBlock(
|
|
|
|
"dsdt.aml",
|
|
|
|
"DSDT",
|
|
|
|
0x02, // DSDT revision: ACPI v2.0
|
2010-05-16 16:22:43 +02:00
|
|
|
"COREv4", // OEM id
|
2009-03-13 01:44:09 +01:00
|
|
|
"COREBOOT", // OEM table id
|
2009-07-21 23:58:20 +02:00
|
|
|
0x20090419 // OEM revision
|
2009-03-13 01:44:09 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// Some generic macros
|
2009-10-26 18:12:21 +01:00
|
|
|
#include "acpi/platform.asl"
|
2009-03-13 01:44:09 +01:00
|
|
|
|
|
|
|
// global NVS and variables
|
2009-10-26 18:12:21 +01:00
|
|
|
#include "../../../southbridge/intel/i82801gx/acpi/globalnvs.asl"
|
2009-03-13 01:44:09 +01:00
|
|
|
|
|
|
|
// General Purpose Events
|
2009-10-26 18:12:21 +01:00
|
|
|
//#include "acpi/gpe.asl"
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2009-10-26 18:12:21 +01:00
|
|
|
//#include "acpi/thermal.asl"
|
2009-03-13 01:44:09 +01:00
|
|
|
|
|
|
|
Scope (\_SB) {
|
|
|
|
Device (PCI0)
|
|
|
|
{
|
2009-10-26 18:12:21 +01:00
|
|
|
#include "../../../northbridge/intel/i945/acpi/i945.asl"
|
|
|
|
#include "../../../southbridge/intel/i82801gx/acpi/ich7.asl"
|
2009-03-13 01:44:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-21 23:58:20 +02:00
|
|
|
/* Chipset specific sleep states */
|
2009-10-26 18:12:21 +01:00
|
|
|
#include "../../../southbridge/intel/i82801gx/acpi/sleepstates.asl"
|
2009-03-13 01:44:09 +01:00
|
|
|
}
|