mb/asus/p5gc-mx: Add mainboard
[coreboot.git] / src / mainboard / google / guado / dsdt.asl
blobc3d1fc9171e924a1a9d0551f1f384dfb4356e850
1 /*
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.
15  */
16 DefinitionBlock(
17         "dsdt.aml",
18         "DSDT",
19         0x02,           // DSDT revision: ACPI v2.0
20         "COREv4",       // OEM id
21         "COREBOOT",     // OEM table id
22         0x20110725      // OEM revision
25         // Some generic macros
26         #include "acpi/platform.asl"
28         // global NVS and variables
29         #include <soc/intel/broadwell/acpi/globalnvs.asl>
31         // General Purpose Events
32         //#include "acpi/gpe.asl"
34         // CPU
35         #include <soc/intel/broadwell/acpi/cpu.asl>
37         Scope (\_SB) {
38                 Device (PCI0)
39                 {
40                         #include <soc/intel/broadwell/acpi/systemagent.asl>
41                         #include <soc/intel/broadwell/acpi/pch.asl>
42                 }
43         }
45         // Thermal handler
46         #include "acpi/thermal.asl"
48         // Chrome OS specific
49         #include <vendorcode/google/chromeos/acpi/chromeos.asl>
51         // Chipset specific sleep states
52         #include <soc/intel/broadwell/acpi/sleepstates.asl>
54         // Mainboard specific
55         #include "acpi/mainboard.asl"