mb/google/brya/var/omnigul: Modify NVMe and UFS Storage support
[coreboot.git] / src / mainboard / amd / bilby / dsdt.asl
blobdd4260816265079c2b24baba1b403a15e97e3968
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",
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         #include <globalnvs.asl>
19         /* Power state notification to ALIB */
20         #include <pnot.asl>
22         /* Contains the supported sleep states for this chipset */
23         #include <soc/amd/common/acpi/sleepstates.asl>
25         /* Contains _SWS methods */
26         #include <soc/amd/common/acpi/acpi_wake_source.asl>
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>
33                 /* Describe the SOC */
34                 #include <soc.asl>
36         } /* End \_SB scope */
38 /* End of ASL file */