blob: dd4260816265079c2b24baba1b403a15e97e3968 [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>
Ritul Guru286c2f62021-02-05 23:53:28 +053017 #include <globalnvs.asl>
18
Felix Heldebb67232022-03-02 15:04:27 +010019 /* Power state notification to ALIB */
20 #include <pnot.asl>
Ritul Guru286c2f62021-02-05 23:53:28 +053021
22 /* Contains the supported sleep states for this chipset */
Raul E Rangel8e6059d2021-03-03 17:01:46 -070023 #include <soc/amd/common/acpi/sleepstates.asl>
Ritul Guru286c2f62021-02-05 23:53:28 +053024
25 /* Contains _SWS methods */
26 #include <soc/amd/common/acpi/acpi_wake_source.asl>
27
28 /* System Bus */
29 Scope(\_SB) { /* Start \_SB scope */
30 /* global utility methods expected within the \_SB scope */
31 #include <arch/x86/acpi/globutil.asl>
32
33 /* Describe the SOC */
34 #include <soc.asl>
35
36 } /* End \_SB scope */
37}
38/* End of ASL file */