mainboard/[g-p]*: Remove copyright notices
[coreboot.git] / src / mainboard / gigabyte / ga-945gcm-s2l / dsdt.asl
blobc9d81f523d9e57310fb95e76be0a2979b1b1dc18
1 /*
2  * This file is part of the coreboot project.
3  *
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; version 2 of the License.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
15 #include <arch/acpi.h>
16 DefinitionBlock(
17         "dsdt.aml",
18         "DSDT",
19         0x02,           // DSDT revision: ACPI v2.0 and up
20         OEM_ID,
21         ACPI_TABLE_CREATOR,
22         0x20090419      // OEM revision
25         #include "acpi/platform.asl"
27         // global NVS and variables
28         #include <southbridge/intel/i82801gx/acpi/globalnvs.asl>
29         #include <southbridge/intel/common/acpi/platform.asl>
31         // mainboard specific devices
32         #include "acpi/mainboard.asl"
34         #include <cpu/intel/speedstep/acpi/cpu.asl>
36         Scope (\_SB) {
37                 Device (PCI0)
38                 {
39                         #include <northbridge/intel/i945/acpi/i945.asl>
40                         #include <southbridge/intel/i82801gx/acpi/ich7.asl>
41                 }
42         }
44         #include <southbridge/intel/common/acpi/sleepstates.asl>