blob: 05876c05f17b9fdd81105f6dba7bcf5ed96343ab [file] [log] [blame]
Aaron Durbine065bb42016-05-10 15:09:44 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Google Inc.
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.
14 */
15
16DefinitionBlock(
17 "dsdt.aml",
18 "DSDT",
19 0x05, // DSDT revision: ACPI v5.0
20 "COREv4", // OEM id
21 "COREBOOT", // OEM table id
22 0x20110725 // OEM revision
23)
24{
25 /* global NVS and variables */
Furquan Shaikh579fdb42016-06-13 22:29:00 -070026 #include <soc/intel/apollolake/acpi/globalnvs.asl>
Aaron Durbine065bb42016-05-10 15:09:44 -050027
Shaunak Sahaf6118c62016-06-03 17:11:12 -070028 /* CPU */
29 #include <soc/intel/apollolake/acpi/cpu.asl>
30
Aaron Durbine065bb42016-05-10 15:09:44 -050031 Scope (\_SB) {
32 Device (PCI0)
33 {
34 #include <soc/intel/apollolake/acpi/northbridge.asl>
35 #include <soc/intel/apollolake/acpi/southbridge.asl>
Saurabh Satijaaf9f35a2016-06-26 18:25:34 -070036 #include <soc/intel/apollolake/acpi/pch_hda.asl>
Aaron Durbine065bb42016-05-10 15:09:44 -050037 }
38 }
39
40 /* Chrome OS specific */
Aaron Durbine065bb42016-05-10 15:09:44 -050041 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
42
43 /* Chipset specific sleep states */
44 #include <soc/intel/apollolake/acpi/sleepstates.asl>
45
46 /* Mainboard Specific devices */
47 #include "acpi/mainboard.asl"
Shaunak Saha57f221e2016-07-12 16:03:29 -070048
49 Scope (\_SB) {
50 /* Dynamic Platform Thermal Framework */
51 #include "acpi/dptf.asl"
52 }
Aaron Durbine065bb42016-05-10 15:09:44 -050053}