blob: 1cce71e588df42e24c0db0074bd11b8590050b93 [file] [log] [blame]
Ritul Guru286c2f62021-02-05 23:53:28 +05301/* SPDX-License-Identifier: GPL-2.0-only */
2
3#define MAINBOARD_HAS_SPEAKER 1
4
5/* DefinitionBlock Statement */
6#include <acpi/acpi.h>
7DefinitionBlock (
8 "dsdt.aml",
9 "DSDT",
10 ACPI_DSDT_REV_2,
11 OEM_ID,
12 ACPI_TABLE_CREATOR,
13 0x00010001 /* OEM Revision */
14 )
15{ /* Start of ASL file */
16 #include <acpi/dsdt_top.asl>
17
18 /* global NVS and variables */
19 #include <globalnvs.asl>
20
21 /* PCI IRQ mapping for the Southbridge */
22 #include <pcie.asl>
23
24 /* Describe the processor tree (\_PR) */
25 #include <cpu.asl>
26
27 /* Contains the supported sleep states for this chipset */
28 #include <sleepstates.asl>
29
30 /* Contains _SWS methods */
31 #include <soc/amd/common/acpi/acpi_wake_source.asl>
32
33 /* System Bus */
34 Scope(\_SB) { /* Start \_SB scope */
35 /* global utility methods expected within the \_SB scope */
36 #include <arch/x86/acpi/globutil.asl>
37
38 /* Describe the SOC */
39 #include <soc.asl>
40
41 } /* End \_SB scope */
42}
43/* End of ASL file */