mb/amd/mandolin: Delete sleep.asl
[coreboot.git] / src / mainboard / amd / mandolin / dsdt.asl
blob06612a89040786c69c54a3e1586899b0c0df8d0d
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #define MAINBOARD_HAS_SPEAKER 1
5 /* DefinitionBlock Statement */
6 #include <acpi/acpi.h>
7 DefinitionBlock (
8         "DSDT.AML",     /* Output filename */
9         "DSDT",         /* Signature */
10         0x02,           /* DSDT Revision, needs to be 2 for 64bit */
11         OEM_ID,
12         ACPI_TABLE_CREATOR,
13         0x00010001      /* OEM Revision */
14         )
15 {       /* Start of ASL file */
17         /* global NVS and variables */
18         #include <globalnvs.asl>
20         /* PCI IRQ mapping for the Southbridge */
21         #include <pcie.asl>
23         /* Describe the processor tree (\_PR) */
24         #include <cpu.asl>
26         /* Contains the supported sleep states for this chipset */
27         #include <sleepstates.asl>
29         /* Contains _SWS methods */
30         #include <soc/amd/common/acpi/acpi_wake_source.asl>
32         /* System Bus */
33         Scope(\_SB) { /* Start \_SB scope */
34                 /* global utility methods expected within the \_SB scope */
35                 #include <arch/x86/acpi/globutil.asl>
37                 /* Describe the SOC */
38                 #include <soc.asl>
40         } /* End \_SB scope */
42 /* End of ASL file */