/* SPDX-License-Identifier: GPL-2.0-only */ #include #include "globalnvs.asl" /* Power state notification to ALIB */ #include "pnot.asl" /* Contains the supported sleep states for this chipset */ #include /* Contains _SWS methods */ #include /* System Bus */ Scope(\_SB) { /* Start \_SB scope */ /* global utility methods expected within the \_SB scope */ #include ROOT_BRIDGE(PCI0) Scope(PCI0) { /* Describe the AMD Northbridge */ #include "northbridge.asl" /* Describe the AMD Fusion Controller Hub */ #include #include } /* PCI IRQ mapping for the Southbridge */ #include "pci_int_defs.asl" /* Describe PCI INT[A-H] for the Southbridge */ #include /* Describe the MMIO devices in the FCH */ #include "mmio.asl" /* Add GPIO library */ #include #if CONFIG(SOC_AMD_COMMON_BLOCK_ACPI_DPTC) #include #endif } /* End \_SB scope */