blob: 383bb30c35db924aa08647107bb8605059d215f8 [file] [log] [blame]
Sven Schnellee8a7df82011-02-16 15:04:59 +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
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
Vladimir Serbinenkoeb13b6f2013-11-26 10:13:28 +010022#define THINKPAD_EC_GPE 28
23
Sven Schnellee8a7df82011-02-16 15:04:59 +000024DefinitionBlock(
25 "dsdt.aml",
26 "DSDT",
27 0x03, // DSDT revision: ACPI v3.0
28 "COREv4", // OEM id
Paul Menzeld2e0e292013-02-04 10:31:34 +010029 "COREBOOT", // OEM table id
Sven Schnellee8a7df82011-02-16 15:04:59 +000030 0x20090419 // OEM revision
31)
32{
33 // Some generic macros
34 #include "acpi/platform.asl"
35
36 // global NVS and variables
Patrick Georgi91bd3062012-02-16 19:16:14 +010037 #include <southbridge/intel/i82801gx/acpi/globalnvs.asl>
Sven Schnellee8a7df82011-02-16 15:04:59 +000038
39 // General Purpose Events
40 #include "acpi/gpe.asl"
41
42 // mainboard specific devices
43 #include "acpi/mainboard.asl"
44
Sven Schnellee8a7df82011-02-16 15:04:59 +000045 Scope (\_SB) {
46 Device (PCI0)
47 {
Patrick Georgi91bd3062012-02-16 19:16:14 +010048 #include <northbridge/intel/i945/acpi/i945.asl>
49 #include <southbridge/intel/i82801gx/acpi/ich7.asl>
Sven Schnellee8a7df82011-02-16 15:04:59 +000050 }
51 }
52
53 /* Chipset specific sleep states */
Patrick Georgi91bd3062012-02-16 19:16:14 +010054 #include <southbridge/intel/i82801gx/acpi/sleepstates.asl>
Sven Schnelleffcd1432011-04-11 19:43:32 +000055
56 // Dock support code
57 #include "acpi/dock.asl"
Sven Schnellee8a7df82011-02-16 15:04:59 +000058}