Kontron 986LCD-M update
[coreboot.git] / src / mainboard / kontron / 986lcd-m / 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
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 DefinitionBlock(
23         "dsdt.aml",
24         "DSDT",
25         0x02,           // DSDT revision: ACPI v2.0
26         "COREv2",       // OEM id
27         "COREBOOT",     // OEM table id
28         0x20090419      // OEM revision
29 )
30 {
31         // Some generic macros
32         #include "acpi/platform.asl"
33
34         // global NVS and variables
35         #include "../../../southbridge/intel/i82801gx/acpi/globalnvs.asl"
36
37         // General Purpose Events
38         //#include "acpi/gpe.asl"
39         
40         //#include "acpi/thermal.asl"
41
42         Scope (\_SB) {
43                 Device (PCI0)
44                 {
45                         #include "../../../northbridge/intel/i945/acpi/i945.asl"
46                         #include "../../../southbridge/intel/i82801gx/acpi/ich7.asl"
47                 }
48         }
49
50         /* Chipset specific sleep states */
51         #include "../../../southbridge/intel/i82801gx/acpi/sleepstates.asl"
52 }