cpu/intel/common: Use a common acpi/cpu.asl file
[coreboot.git] / src / mainboard / google / butterfly / dsdt.asl
blobdd18e95ae699baf6cff52d4ab1586d3be9f03e2f
1 /*
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.
15  */
17 #include <arch/acpi.h>
18 DefinitionBlock(
19         "dsdt.aml",
20         "DSDT",
21         0x02,           // DSDT revision: ACPI v2.0 and up
22         OEM_ID,
23         ACPI_TABLE_CREATOR,
24         0x20110725      // OEM revision
27         #include <southbridge/intel/bd82x6x/acpi/platform.asl>
29         // Some generic macros
30         #include "acpi/platform.asl"
31         #include "acpi/mainboard.asl"
33         // Thermal handler
34         #include "acpi/thermal.asl"
36         // global NVS and variables
37         #include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
39         // General Purpose Events
40         //#include "acpi/gpe.asl"
42         #include <cpu/intel/common/acpi/cpu.asl>
44         Scope (\_SB) {
45                 Device (PCI0)
46                 {
47                         #include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
48                         #include <southbridge/intel/bd82x6x/acpi/pch.asl>
50                         #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
51                 }
52         }
54         #include <vendorcode/google/chromeos/acpi/chromeos.asl>
56         /* Chipset specific sleep states */
57         #include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>