blob: 723cc718a3ae09e32672c6c10fa51a65e06bc74c [file] [log] [blame]
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
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.
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070015 */
16
17DefinitionBlock(
18 "dsdt.aml",
19 "DSDT",
20 0x02, // DSDT revision: ACPI v2.0
21 "COREv4", // OEM id
22 "COREBOOT", // OEM table id
23 0x20110725 // OEM revision
24)
25{
Vladimir Serbinenkoe2887582015-05-17 00:20:52 +020026 #include <southbridge/intel/bd82x6x/acpi/platform.asl>
27
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070028 // Some generic macros
29 #include "acpi/platform.asl"
30 #include "acpi/mainboard.asl"
31
32 // global NVS and variables
33 #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
34
35 // General Purpose Events
36 //#include "acpi/gpe.asl"
37
38 #include "acpi/thermal.asl"
39
40 #include <cpu/intel/model_206ax/acpi/cpu.asl>
41
42 Scope (\_SB) {
43 Device (PCI0)
44 {
45 #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
46 #include <southbridge/intel/bd82x6x/acpi/pch.asl>
Kyösti Mälkki6f499062015-06-06 11:52:24 +030047 #include "acpi/sandybridge_pci_irqs.asl"
Nico Huber954a55b2015-08-27 13:31:46 +020048
49 #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
Stefan Reinauerb7ecf6d2013-03-13 17:13:32 -070050 }
51 }
52
53 #include "acpi/chromeos.asl"
54 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
55
56 /* Chipset specific sleep states */
57 #include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>
58}