49b6033cbead6a22e0e8856f6f5112db34bed839
[coreboot.git] / src / mainboard / intel / d945gclf / dsdt.asl
1 /*
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
8  * published by the Free Software Foundation; version 2 of the License.
9  *
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
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 DefinitionBlock(
21         "dsdt.aml",
22         "DSDT",
23         0x02,           // DSDT revision: ACPI v2.0
24         "COREv4",       // 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"
37
38         // 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 }