blob: 28b0c1b77d2472e1b3f97eead4e152d5a1311ad4 [file] [log] [blame]
Stefan Reinauer155e9b52012-04-27 23:19:58 +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 Reinauer155e9b52012-04-27 23:19:58 +020015 */
16
17DefinitionBlock(
18 "dsdt.aml",
19 "DSDT",
20 0x02, // DSDT revision: ACPI v2.0
21 "COREv4", // OEM id
Martin Roth73d5d4c2014-08-11 11:59:30 -060022 "COREBOOT", // OEM table id
Stefan Reinauer155e9b52012-04-27 23:19:58 +020023 0x20110725 // OEM revision
24)
25{
Vladimir Serbinenkoe2887582015-05-17 00:20:52 +020026 #include <southbridge/intel/bd82x6x/acpi/platform.asl>
27
Stefan Reinauer155e9b52012-04-27 23:19:58 +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 // mainboard specific devices
38 #include "acpi/mainboard.asl"
39
40 #include <cpu/intel/model_206ax/acpi/cpu.asl>
41
42 #include "acpi/thermal.asl"
43
44 Scope (\_SB) {
45 Device (PCI0)
46 {
47 #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
48 #include <southbridge/intel/bd82x6x/acpi/pch.asl>
Kyösti Mälkki6f499062015-06-06 11:52:24 +030049 #include "acpi/sandybridge_pci_irqs.asl"
Nico Huber954a55b2015-08-27 13:31:46 +020050
51 #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
Stefan Reinauer155e9b52012-04-27 23:19:58 +020052 }
53 }
54
Stefan Reinauer2198c582012-06-07 15:38:44 -070055 #include <vendorcode/google/chromeos/acpi/chromeos.asl>
Stefan Reinauer155e9b52012-04-27 23:19:58 +020056
57 /* Chipset specific sleep states */
58 #include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>
59}