blob: bf57e74b21d8bd47e3a337bc64c371f981ef05cb [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
24 "COREv2", // OEM id
25 "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
33 #include "../../../southbridge/intel/i82801gx/acpi/globalnvs.asl"
34
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 {
47 #include "../../../northbridge/intel/i945/acpi/i945.asl"
48 #include "../../../southbridge/intel/i82801gx/acpi/ich7.asl"
49 }
50 }
51
52 /* Chipset specific sleep states */
53 #include "../../../southbridge/intel/i82801gx/acpi/sleepstates.asl"
54}