tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / mainboard / google / lars / dsdt.asl
blobc9e13e7e45d23e63e00c60a48a6d43ce1555c15d
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
5  * Copyright (C) 2015 Google Inc.
6  * Copyright (C) 2015 Intel Corporation
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; version 2 of the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
18 DefinitionBlock(
19         "dsdt.aml",
20         "DSDT",
21         0x05,           // DSDT revision: ACPI v5.0
22         "COREv4",       // OEM id
23         "COREBOOT",     // OEM table id
24         0x20110725      // OEM revision
27         // Some generic macros
28         #include <soc/intel/skylake/acpi/platform.asl>
30         // global NVS and variables
31         #include <soc/intel/skylake/acpi/globalnvs.asl>
33         // CPU
34         #include <soc/intel/skylake/acpi/cpu.asl>
36         Scope (\_SB) {
37                 Device (PCI0)
38                 {
39                         #include <soc/intel/skylake/acpi/systemagent.asl>
40                         #include <soc/intel/skylake/acpi/pch.asl>
41                 }
43                 // Dynamic Platform Thermal Framework
44                 #include "acpi/dptf.asl"
45         }
47         // Chrome OS specific
48         #include "acpi/chromeos.asl"
49         #include <vendorcode/google/chromeos/acpi/chromeos.asl>
51         // Chipset specific sleep states
52         #include <soc/intel/skylake/acpi/sleepstates.asl>
54         // Mainboard specific
55         #include "acpi/mainboard.asl"