blob: 78d9bcacd5417f6e8e20fc734c1eb063d00ea534 [file] [log] [blame]
WANG Siyuanf77f7342013-08-13 17:09:51 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Advanced Micro Devices, Inc.
5 * Copyright (C) 2013 Sage Electronic Engineering, LLC
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21/* DefinitionBlock Statement */
22DefinitionBlock (
23 "DSDT.AML", /* Output filename */
24 "DSDT", /* Signature */
25 0x02, /* DSDT Revision, needs to be 2 for 64bit */
26 "AMD ", /* OEMID */
27 "COREBOOT", /* TABLE ID */
28 0x00010001 /* OEM Revision */
29 )
30{ /* Start of ASL file */
31 /* #include <arch/x86/acpi/debug.asl> */ /* Include global debug methods if needed */
32
33 /* Globals for the platform */
34 #include "acpi/mainboard.asl"
35
36 /* Describe the USB Overcurrent pins */
37 #include "acpi/usb_oc.asl"
38
39 /* PCI IRQ mapping for the Southbridge */
40 #include <southbridge/amd/agesa/hudson/acpi/pcie.asl>
41
42 /* Describe the processor tree (\_PR) */
43 #include <cpu/amd/agesa/family16kb/acpi/cpu.asl>
44
45 /* Contains the supported sleep states for this chipset */
46 #include <southbridge/amd/agesa/hudson/acpi/sleepstates.asl>
47
48 /* Contains the Sleep methods (WAK, PTS, GTS, etc.) */
49 #include "acpi/sleep.asl"
50
51 /* System Bus */
52 Scope(\_SB) { /* Start \_SB scope */
53 /* global utility methods expected within the \_SB scope */
54 #include <arch/x86/acpi/globutil.asl>
55
56 /* Describe IRQ Routing mapping for this platform (within the \_SB scope) */
57 #include "acpi/routing.asl"
58
59 Device(PCI0) {
60 /* Describe the AMD Northbridge */
61 #include <northbridge/amd/agesa/family16kb/acpi/northbridge.asl>
62
63 /* Describe the AMD Fusion Controller Hub Southbridge */
64 #include <southbridge/amd/agesa/hudson/acpi/fch.asl>
65 }
66
67 /* Describe PCI INT[A-H] for the Southbridge */
68 #include <southbridge/amd/agesa/hudson/acpi/pci_int.asl>
69
70 } /* End \_SB scope */
71
72 /* Describe SMBUS for the Southbridge */
73 #include <southbridge/amd/agesa/hudson/acpi/smbus.asl>
74
75 /* Define the General Purpose Events for the platform */
76 #include "acpi/gpe.asl"
77
78 /* Define the Thermal zones and methods for the platform */
79 #include "acpi/thermal.asl"
80
81 /* Define the System Indicators for the platform */
82 #include "acpi/si.asl"
83}
84/* End of ASL file */