blob: 6475e1c5cf62fcb38f14c1d4baa352494a30a794 [file] [log] [blame]
Aaron Durbinc625d092013-10-04 16:00:07 -05001/*
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.
Aaron Durbinc625d092013-10-04 16:00:07 -050015 */
16
Aaron Durbinc625d092013-10-04 16:00:07 -050017#define ENABLE_TPM
18
19DefinitionBlock(
20 "dsdt.aml",
21 "DSDT",
Duncan Laurie5a45c952014-01-13 10:15:12 -080022 0x05, // DSDT revision: ACPI v5.0
Aaron Durbinc625d092013-10-04 16:00:07 -050023 "COREv4", // OEM id
24 "COREBOOT", // OEM table id
25 0x20110725 // OEM revision
26)
27{
28 // Some generic macros
Aaron Durbin3bde3d72013-11-04 21:45:52 -060029 #include <soc/intel/baytrail/acpi/platform.asl>
Aaron Durbinc625d092013-10-04 16:00:07 -050030
31 // global NVS and variables
32 #include <soc/intel/baytrail/acpi/globalnvs.asl>
33
Aaron Durbin3bde3d72013-11-04 21:45:52 -060034 #include <soc/intel/baytrail/acpi/cpu.asl>
Aaron Durbinc625d092013-10-04 16:00:07 -050035
36 Scope (\_SB) {
37 Device (PCI0)
38 {
39 //#include <soc/intel/baytrail/acpi/northcluster.asl>
40 #include <soc/intel/baytrail/acpi/southcluster.asl>
41 }
Duncan Laurie4acd3c02013-12-10 07:48:00 -080042
43 /* Dynamic Platform Thermal Framework */
44 #include "acpi/dptf.asl"
Aaron Durbinc625d092013-10-04 16:00:07 -050045 }
46
47 #include "acpi/chromeos.asl"
48 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
49
50 /* Chipset specific sleep states */
51 #include <soc/intel/baytrail/acpi/sleepstates.asl>
Duncan Laurie5a45c952014-01-13 10:15:12 -080052
53 #include "acpi/mainboard.asl"
Aaron Durbinc625d092013-10-04 16:00:07 -050054}