blob: 410f6d20aa7073aa1db3a0a1b38dcacf315fbdd4 [file] [log] [blame]
Duncan Laurieafad0562013-01-14 08:50:03 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 Google Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of 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.
Duncan Laurieafad0562013-01-14 08:50:03 -080015 */
16
Duncan Laurief6763db2013-03-22 11:01:37 -070017#define ENABLE_TPM
18
Duncan Laurieafad0562013-01-14 08:50:03 -080019DefinitionBlock(
20 "dsdt.aml",
21 "DSDT",
22 0x02, // DSDT revision: ACPI v2.0
23 "COREv4", // OEM id
24 "COREBOOT", // OEM table id
25 0x20110725 // OEM revision
26)
27{
28 // Some generic macros
29 #include "acpi/platform.asl"
30
31 // global NVS and variables
Duncan Laurie0aa06cb2014-05-14 17:03:15 -070032 #include <soc/intel/broadwell/acpi/globalnvs.asl>
Duncan Laurieafad0562013-01-14 08:50:03 -080033
34 // General Purpose Events
35 //#include "acpi/gpe.asl"
36
Duncan Laurie0aa06cb2014-05-14 17:03:15 -070037 // CPU
38 #include <soc/intel/broadwell/acpi/cpu.asl>
Duncan Laurieafad0562013-01-14 08:50:03 -080039
40 Scope (\_SB) {
41 Device (PCI0)
42 {
Duncan Laurie0aa06cb2014-05-14 17:03:15 -070043 #include <soc/intel/broadwell/acpi/systemagent.asl>
44 #include <soc/intel/broadwell/acpi/pch.asl>
Duncan Laurieafad0562013-01-14 08:50:03 -080045 }
46 }
47
Duncan Laurie0aa06cb2014-05-14 17:03:15 -070048 // Thermal handler
49 #include "acpi/thermal.asl"
50
51 // Chrome OS specific
Duncan Laurieafad0562013-01-14 08:50:03 -080052 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
53
Duncan Laurie0aa06cb2014-05-14 17:03:15 -070054 // Chipset specific sleep states
55 #include <soc/intel/broadwell/acpi/sleepstates.asl>
56
57 // Mainboard specific
58 #include "acpi/mainboard.asl"
Duncan Laurieafad0562013-01-14 08:50:03 -080059}