blob: 62fa0af2e5cf5809c048e4b8cd6e5f5de3983b49 [file] [log] [blame]
Stefan Reinauer1a08f582009-10-28 16:52:48 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Uwe Hermann2d2f0c12009-10-28 17:36:11 +00008 * published by the Free Software Foundation; version 2 of the License.
Stefan Reinauer1a08f582009-10-28 16:52:48 +00009 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Uwe Hermann2d2f0c12009-10-28 17:36:11 +000017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer1a08f582009-10-28 16:52:48 +000018 */
19
20DefinitionBlock(
21 "dsdt.aml",
22 "DSDT",
23 0x02, // DSDT revision: ACPI v2.0
Stefan Reinauer09e0c492010-05-16 14:22:43 +000024 "COREv4", // OEM id
Stefan Reinauer1a08f582009-10-28 16:52:48 +000025 "COREBOOT", // OEM table id
26 0x20090419 // OEM revision
27)
28{
29 // Some generic macros
30 #include "acpi/platform.asl"
31
32 // global NVS and variables
Patrick Georgi91bd3062012-02-16 19:16:14 +010033 #include <southbridge/intel/i82801gx/acpi/globalnvs.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000034
35 // General Purpose Events
36 //#include "acpi/gpe.asl"
Stefan Reinauer14e22772010-04-27 06:56:47 +000037
Stefan Reinauer1a08f582009-10-28 16:52:48 +000038 // mainboard specific devices
39 #include "acpi/mainboard.asl"
40
41 // Thermal Zone
42 //#include "acpi/thermal.asl"
43
44 Scope (\_SB) {
45 Device (PCI0)
46 {
Patrick Georgi91bd3062012-02-16 19:16:14 +010047 #include <northbridge/intel/i945/acpi/i945.asl>
48 #include <southbridge/intel/i82801gx/acpi/ich7.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000049 }
50 }
51
52 /* Chipset specific sleep states */
Patrick Georgi91bd3062012-02-16 19:16:14 +010053 #include <southbridge/intel/i82801gx/acpi/sleepstates.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000054}