blob: 8d9e281defb8b289f95222fe53ec2c13baf9d798 [file] [log] [blame]
Stefan Reinauer6651da32012-04-27 23:16:30 +02001/*
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 Reinauer6651da32012-04-27 23:16:30 +020015 */
16
17DefinitionBlock(
18 "dsdt.aml",
19 "DSDT",
20 0x02, // DSDT revision: ACPI v2.0
21 "COREv4", // OEM id
Paul Menzeld2e0e292013-02-04 10:31:34 +010022 "COREBOOT", // OEM table id
Stefan Reinauer6651da32012-04-27 23:16:30 +020023 0x20110725 // OEM revision
24)
25{
Vladimir Serbinenkoe2887582015-05-17 00:20:52 +020026 #include <southbridge/intel/bd82x6x/acpi/platform.asl>
27
Stefan Reinauer6651da32012-04-27 23:16:30 +020028 // Some generic macros
29 #include "acpi/platform.asl"
30
31 // global NVS and variables
32 #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
33
34 // General Purpose Events
35 //#include "acpi/gpe.asl"
36
37 #include "acpi/thermal.asl"
38
39 #include "../../../cpu/intel/model_206ax/acpi/cpu.asl"
40
41 Scope (\_SB) {
42 Device (PCI0)
43 {
44 #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
45 #include <southbridge/intel/bd82x6x/acpi/pch.asl>
Kyösti Mälkkia4823222015-06-06 11:03:12 +030046 #include <southbridge/intel/bd82x6x/acpi/default_irq_route.asl>
Nico Huber954a55b2015-08-27 13:31:46 +020047
48 #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
Stefan Reinauer6651da32012-04-27 23:16:30 +020049 }
50 }
51
52 #include "acpi/chromeos.asl"
Stefan Reinauer2198c582012-06-07 15:38:44 -070053 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
Stefan Reinauer6651da32012-04-27 23:16:30 +020054
55 /* Chipset specific sleep states */
56 #include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>
57}