blob: b434727ec80fa377abfd008f9e9272d8f32666b4 [file] [log] [blame]
Patrick Georgi04746fc2015-06-05 18:53:43 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2014 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.
Patrick Georgi04746fc2015-06-05 18:53:43 +020015 */
16
17DefinitionBlock(
18 "dsdt.aml",
19 "DSDT",
20 0x02, // DSDT revision: ACPI v2.0
21 "COREv4", // OEM id
22 "COREBOOT", // OEM table id
23 0x20110725 // OEM revision
24)
25{
26 // Some generic macros
27 #include "acpi/platform.asl"
28
29 // global NVS and variables
30 #include <soc/intel/broadwell/acpi/globalnvs.asl>
31
32 // General Purpose Events
33 //#include "acpi/gpe.asl"
34
35 // CPU
36 #include <soc/intel/broadwell/acpi/cpu.asl>
37
38 Scope (\_SB) {
39 Device (PCI0)
40 {
41 #include <soc/intel/broadwell/acpi/systemagent.asl>
42 #include <soc/intel/broadwell/acpi/pch.asl>
43 }
44 }
45
46 // Thermal handler
47 #include "acpi/thermal.asl"
48
49 // Chrome OS specific
50 #include "acpi/chromeos.asl"
51 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
52
53 // Chipset specific sleep states
54 #include <soc/intel/broadwell/acpi/sleepstates.asl>
55
56 // Mainboard specific
57 #include "acpi/mainboard.asl"
58}