blob: ada278c4b3267d9ad10ebbf7dbcb09cd82cfeb97 [file] [log] [blame]
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +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.
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000015 */
16
17#define ENABLE_TPM
18#undef ENABLE_FDC // There is no Floppy for this laptop
19
20DefinitionBlock(
21 "dsdt.aml",
22 "DSDT",
23 0x02, // DSDT revision: ACPI v2.0
24 "COREv4", // OEM id
Paul Menzeld2e0e292013-02-04 10:31:34 +010025 "COREBOOT", // OEM table id
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000026 0x20090419 // OEM revision
27)
28{
Paul Menzel8fc5c642015-10-13 21:19:49 +020029 #include <southbridge/intel/common/acpi/platform.asl>
Vladimir Serbinenko24813c12014-10-16 10:39:06 +020030
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000031 // Some generic macros
32 #include "acpi/platform.asl"
33
34 // global NVS and variables
Patrick Georgi91bd3062012-02-16 19:16:14 +010035 #include <southbridge/intel/i82801gx/acpi/globalnvs.asl>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000036
37 // General Purpose Events
38 #include "acpi/gpe.asl"
39
40 // mainboard specific devices
41 #include "acpi/mainboard.asl"
Patrick Georgi472efa62012-02-16 20:44:20 +010042
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000043 // Thermal Zone
44 #include "acpi/thermal.asl"
45
Paul Menzel469f5932015-10-13 21:07:32 +020046 #include <cpu/intel/common/acpi/cpu.asl>
Vladimir Serbinenko24813c12014-10-16 10:39:06 +020047
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000048 Scope (\_SB) {
49 Device (PCI0)
50 {
Patrick Georgi91bd3062012-02-16 19:16:14 +010051 #include <northbridge/intel/i945/acpi/i945.asl>
52 #include <southbridge/intel/i82801gx/acpi/ich7.asl>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000053 }
54 }
55
56 /* Chipset specific sleep states */
Patrick Georgi91bd3062012-02-16 19:16:14 +010057 #include <southbridge/intel/i82801gx/acpi/sleepstates.asl>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000058}