mb/*/*/acpi_tables: Remove unnecessary function call
[coreboot.git] / src / mainboard / intel / wtm2 / dsdt.asl
blob7245983ba0d80abc64a390774e28abaf1c7fa239
1 /*
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.
15  */
17 #define ENABLE_TPM
19 #include <arch/acpi.h>
20 DefinitionBlock(
21         "dsdt.aml",
22         "DSDT",
23         0x02,           // DSDT revision: ACPI v2.0 and up
24         OEM_ID,
25         ACPI_TABLE_CREATOR,
26         0x20110725      // OEM revision
29         #include <southbridge/intel/common/acpi/platform.asl>
31         #include "acpi/platform.asl"
33         // global NVS and variables
34         #include <soc/intel/broadwell/acpi/globalnvs.asl>
36         // General Purpose Events
37         //#include "acpi/gpe.asl"
39         // CPU
40         #include <cpu/intel/common/acpi/cpu.asl>
42         Scope (\_SB) {
43                 Device (PCI0)
44                 {
45                         #include <soc/intel/broadwell/acpi/systemagent.asl>
46                         #include <soc/intel/broadwell/acpi/pch.asl>
47                 }
48         }
50         // Thermal handler
51         #include "acpi/thermal.asl"
53         // Chrome OS specific
54         #include <vendorcode/google/chromeos/acpi/chromeos.asl>
56         // Chipset specific sleep states
57         #include <southbridge/intel/common/acpi/sleepstates.asl>
59         // Mainboard specific
60         #include "acpi/mainboard.asl"