blob: 3d7589a1262056a7395e21d11be8791f12b689cb [file] [log] [blame]
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +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 modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
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.
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +000014 */
15
16DefinitionBlock(
17 "dsdt.aml",
18 "DSDT",
19 0x02, // DSDT revision: ACPI v2.0
20 "COREv2", // OEM id
Paul Menzeld2e0e292013-02-04 10:31:34 +010021 "COREBOOT", // OEM table id
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +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>
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +000030
Paul Menzel8fc5c642015-10-13 21:19:49 +020031 #include <southbridge/intel/common/acpi/platform.asl>
Vladimir Serbinenko24813c12014-10-16 10:39:06 +020032
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +000033 // General Purpose Events
34 //#include "acpi/gpe.asl"
35
36 //#include "acpi/thermal.asl"
37
Paul Menzel469f5932015-10-13 21:07:32 +020038 #include <cpu/intel/common/acpi/cpu.asl>
Vladimir Serbinenko24813c12014-10-16 10:39:06 +020039
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +000040 Scope (\_SB) {
41 Device (PCI0)
42 {
Patrick Georgi91bd3062012-02-16 19:16:14 +010043 #include <northbridge/intel/i945/acpi/i945.asl>
44 #include <southbridge/intel/i82801gx/acpi/ich7.asl>
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +000045 }
46 }
47
48 /* Chipset specific sleep states */
Patrick Georgi91bd3062012-02-16 19:16:14 +010049 #include <southbridge/intel/i82801gx/acpi/sleepstates.asl>
Bernhard M. Wiedemann6e554de2010-05-30 12:56:17 +000050}