blob: 7e26bab43c579c16a6546ab39482bd9374e17ef8 [file] [log] [blame]
Edward O'Callaghan4726a872014-01-25 07:40:39 +11001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Edward O'Callaghan4726a872014-01-25 07:40:39 +110014 */
15
16/* DefinitionBlock Statement */
17DefinitionBlock (
18 "DSDT.AML", /* Output filename */
19 "DSDT", /* Signature */
20 0x02, /* DSDT Revision, needs to be 2 for 64bit */
Edward O'Callaghandbadb0a2014-05-02 03:41:56 +100021 "JETWAY", /* OEMID */
Edward O'Callaghan4726a872014-01-25 07:40:39 +110022 "COREBOOT", /* TABLE ID */
23 0x00010001 /* OEM Revision */
24 )
25{ /* Start of ASL file */
26 /* #include <arch/x86/acpi/debug.asl> */ /* Include global debug methods if needed */
27
28 #include "acpi/mainboard.asl"
29
30 #include <cpu/amd/agesa/family14/acpi/cpu.asl>
31
32 #include "acpi/routing.asl"
33
34 Scope(\_SB) {
35 /* global utility methods expected within the \_SB scope */
36 #include <arch/x86/acpi/globutil.asl>
37
38 Device(PCI0) {
39
40 /* Describe the AMD Northbridge */
41 #include <northbridge/amd/agesa/family14/acpi/northbridge.asl>
42
43 /* Describe the AMD Fusion Controller Hub Southbridge */
44 #include <southbridge/amd/cimx/sb800/acpi/fch.asl>
45
46 }
47 } /* End Scope(_SB) */
48
49 /* Contains the supported sleep states for this chipset */
50 #include <southbridge/amd/cimx/sb800/acpi/sleepstates.asl>
51
52 /* Contains the Sleep methods (WAK, PTS, GTS, etc.) */
53 #include "acpi/sleep.asl"
54
55 #include "acpi/gpe.asl"
Edward O'Callaghanba885062014-03-04 17:07:22 +110056 #include "acpi/superio.asl"
Edward O'Callaghan4726a872014-01-25 07:40:39 +110057}
58/* End of ASL file */