f6c6cf785d95debed33f4a9bf1693b40156d824f
[coreboot.git] / src / mainboard / getac / p470 / 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 #define ENABLE_TPM
23 #undef  ENABLE_FDC      // There is no Floppy for this laptop
24
25 DefinitionBlock(
26         "dsdt.aml",
27         "DSDT",
28         0x02,           // DSDT revision: ACPI v2.0
29         "COREv4",       // OEM id
30         "COREBOOT",     // OEM table id
31         0x20090419      // OEM revision
32 )
33 {
34         // Some generic macros
35         #include "acpi/platform.asl"
36
37         // global NVS and variables
38         #include "../../../southbridge/intel/i82801gx/acpi/globalnvs.asl"
39
40         // General Purpose Events
41         #include "acpi/gpe.asl"
42
43         // mainboard specific devices
44         #include "acpi/mainboard.asl"
45         
46         // Thermal Zone
47         #include "acpi/thermal.asl"
48
49         Scope (\_SB) {
50                 Device (PCI0)
51                 {
52                         #include "../../../northbridge/intel/i945/acpi/i945.asl"
53                         #include "../../../southbridge/intel/i82801gx/acpi/ich7.asl"
54                 }
55         }
56
57         /* Chipset specific sleep states */
58         #include "../../../southbridge/intel/i82801gx/acpi/sleepstates.asl"
59 }