blob: bd9dff2f56a5f8ef53fb6b99ad6fb3a8a2461fff [file] [log] [blame]
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
Kyösti Mälkki8c190f32014-11-14 16:20:22 +02005 * Copyright (C) 2013-2014 Sage Electronic Engineering, LLC
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +02006 *
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.
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +020015 */
16
17/* DefinitionBlock Statement */
18DefinitionBlock (
19 "DSDT.AML", /* Output filename */
20 "DSDT", /* Signature */
21 0x02, /* DSDT Revision, needs to be 2 for 64bit */
Kyösti Mälkki8c190f32014-11-14 16:20:22 +020022 "PCENG ", /* OEMID */
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +020023 "COREBOOT", /* TABLE ID */
24 0x00010001 /* OEM Revision */
25 )
26{ /* Start of ASL file */
27 /* #include <arch/x86/acpi/debug.asl> */ /* Include global debug methods if needed */
28
29 #include "acpi/mainboard.asl"
30
31 #include <cpu/amd/agesa/family14/acpi/cpu.asl>
32
33 #include "acpi/routing.asl"
34
35 Scope(\_SB) {
36 /* global utility methods expected within the \_SB scope */
37 #include <arch/x86/acpi/globutil.asl>
38
39 Device(PCI0) {
40
41 /* Describe the AMD Northbridge */
42 #include <northbridge/amd/agesa/family14/acpi/northbridge.asl>
43
44 /* Describe the AMD Fusion Controller Hub Southbridge */
45 #include <southbridge/amd/cimx/sb800/acpi/fch.asl>
46
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +020047 }
48 } /* End Scope(_SB) */
49
50 /* Contains the supported sleep states for this chipset */
51 #include <southbridge/amd/cimx/sb800/acpi/sleepstates.asl>
52
53 /* Contains the Sleep methods (WAK, PTS, GTS, etc.) */
54 #include "acpi/sleep.asl"
55
56 #include "acpi/gpe.asl"
Tobias Diedrich2a385512015-06-13 13:29:50 +020057
58 /* Contains the GPIO led and button setup for this board */
59 #include "acpi/buttons.asl"
60 #include "acpi/gpio.asl"
61 #include "acpi/leds.asl"
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +020062}
63/* End of ASL file */