blob: 8cd9c14f1610109d6c00b176c2f67aafe2612c92 [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
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Stefan Reinauer1a08f582009-10-28 16:52:48 +000018 */
19
20DefinitionBlock(
21 "dsdt.aml",
22 "DSDT",
23 0x02, // DSDT revision: ACPI v2.0
Stefan Reinauer09e0c492010-05-16 14:22:43 +000024 "COREv4", // OEM id
Paul Menzeld2e0e292013-02-04 10:31:34 +010025 "COREBOOT", // OEM table id
Stefan Reinauer1a08f582009-10-28 16:52:48 +000026 0x20090419 // OEM revision
27)
28{
29 // Some generic macros
30 #include "acpi/platform.asl"
31
32 // global NVS and variables
Patrick Georgi91bd3062012-02-16 19:16:14 +010033 #include <southbridge/intel/i82801gx/acpi/globalnvs.asl>
Vladimir Serbinenko24813c12014-10-16 10:39:06 +020034 #include <southbridge/intel/i82801gx/acpi/platform.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000035
36 // General Purpose Events
37 //#include "acpi/gpe.asl"
Stefan Reinauer14e22772010-04-27 06:56:47 +000038
Stefan Reinauer1a08f582009-10-28 16:52:48 +000039 // mainboard specific devices
40 #include "acpi/mainboard.asl"
41
42 // Thermal Zone
43 //#include "acpi/thermal.asl"
44
Paul Menzel469f5932015-10-13 21:07:32 +020045 #include <cpu/intel/common/acpi/cpu.asl>
Vladimir Serbinenko24813c12014-10-16 10:39:06 +020046
Stefan Reinauer1a08f582009-10-28 16:52:48 +000047 Scope (\_SB) {
48 Device (PCI0)
49 {
Patrick Georgi91bd3062012-02-16 19:16:14 +010050 #include <northbridge/intel/i945/acpi/i945.asl>
51 #include <southbridge/intel/i82801gx/acpi/ich7.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000052 }
53 }
54
55 /* Chipset specific sleep states */
Patrick Georgi91bd3062012-02-16 19:16:14 +010056 #include <southbridge/intel/i82801gx/acpi/sleepstates.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000057}