blob: 187481a1e2e57b09bd12235155e47080a4dc28bb [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.
Stefan Reinauer1a08f582009-10-28 16:52:48 +000014 */
15
16DefinitionBlock(
17 "dsdt.aml",
18 "DSDT",
19 0x02, // DSDT revision: ACPI v2.0
Stefan Reinauer09e0c492010-05-16 14:22:43 +000020 "COREv4", // OEM id
Paul Menzeld2e0e292013-02-04 10:31:34 +010021 "COREBOOT", // OEM table id
Stefan Reinauer1a08f582009-10-28 16:52:48 +000022 0x20090419 // OEM revision
23)
24{
25 // Some generic macros
26 #include "acpi/platform.asl"
27
28 // global NVS and variables
Patrick Georgi91bd3062012-02-16 19:16:14 +010029 #include <southbridge/intel/i82801gx/acpi/globalnvs.asl>
Paul Menzel8fc5c642015-10-13 21:19:49 +020030 #include <southbridge/intel/common/acpi/platform.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000031
32 // General Purpose Events
33 //#include "acpi/gpe.asl"
Stefan Reinauer14e22772010-04-27 06:56:47 +000034
Stefan Reinauer1a08f582009-10-28 16:52:48 +000035 // mainboard specific devices
36 #include "acpi/mainboard.asl"
37
38 // Thermal Zone
39 //#include "acpi/thermal.asl"
40
Paul Menzel469f5932015-10-13 21:07:32 +020041 #include <cpu/intel/common/acpi/cpu.asl>
Vladimir Serbinenko24813c12014-10-16 10:39:06 +020042
Stefan Reinauer1a08f582009-10-28 16:52:48 +000043 Scope (\_SB) {
44 Device (PCI0)
45 {
Patrick Georgi91bd3062012-02-16 19:16:14 +010046 #include <northbridge/intel/i945/acpi/i945.asl>
47 #include <southbridge/intel/i82801gx/acpi/ich7.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000048 }
49 }
50
51 /* Chipset specific sleep states */
Patrick Georgi91bd3062012-02-16 19:16:14 +010052 #include <southbridge/intel/i82801gx/acpi/sleepstates.asl>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000053}