blob: 73ba53998da5ef0747dadc95f400cc69e5ed80da [file] [log] [blame]
Marc Jones3b0a6262015-09-15 23:05:00 -06001/*
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 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc.
19 */
20
21DefinitionBlock(
22 "dsdt.aml",
23 "DSDT",
24 0x02, // DSDT revision: ACPI v2.0
25 "COREv4", // OEM id
26 "COREBOOT", // OEM table id
27 0x20110725 // OEM revision
28)
29{
30 #include <southbridge/intel/fsp_i89xx/acpi/platform.asl>
31
32 // Some generic macros
33 #include "acpi/platform.asl"
34
35 // global NVS and variables
36 #include <southbridge/intel/fsp_i89xx/acpi/globalnvs.asl>
37
38 // General Purpose Events
39 //#include "acpi/gpe.asl"
40
41 #include <cpu/intel/fsp_model_206ax/acpi/cpu.asl>
42
43 Scope (\_SB) {
44 Device (PCI0)
45 {
46 #include <northbridge/intel/fsp_sandybridge/acpi/sandybridge.asl>
47 #include <southbridge/intel/fsp_i89xx/acpi/pch.asl>
48 #include <drivers/intel/gma/acpi/default_brightness_levels.asl>
49 }
50 }
51
52 /* Chipset specific sleep states */
53 #include <southbridge/intel/fsp_i89xx/acpi/sleepstates.asl>
54}