This patch moves smbus.asl into common block acpi directory to avoid duplicating the same ASL code block across SoC directory. TEST=Able to build and boot TGL, CNL and CML platform. 1) Dump and disassemble DSDT, verify SBUS device present inside common smbus.asl is still there. 2) Verify no ACPI error seen while running 'dmesg` from console. Signed-off-by: Subrata Banik <subrata.banik@intel.com> Change-Id: Ib1ae48f7ece3e521501d92c40cd551287ea2f1ec Reviewed-on: https://review.coreboot.org/c/coreboot/+/45979 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
51 lines
901 B
Plaintext
51 lines
901 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/* PCI IRQ assignment */
|
|
#include "pci_irqs.asl"
|
|
|
|
/* PCR access */
|
|
#include <soc/intel/common/acpi/pcr.asl>
|
|
|
|
/* eMMC, SD Card */
|
|
#include "scs.asl"
|
|
|
|
/* GPIO controller */
|
|
#if CONFIG(SOC_INTEL_CANNONLAKE_PCH_H)
|
|
#include "gpio_cnp_h.asl"
|
|
#else
|
|
#include "gpio.asl"
|
|
#endif
|
|
|
|
/* GFX 00:02.0 */
|
|
#include "gfx.asl"
|
|
|
|
/* LPC 0:1f.0 */
|
|
#include <soc/intel/common/block/acpi/acpi/lpc.asl>
|
|
|
|
/* PCH HDA */
|
|
#include "pch_hda.asl"
|
|
|
|
/* PCIE Ports */
|
|
#include "pcie.asl"
|
|
|
|
/* Serial IO */
|
|
#include "serialio.asl"
|
|
|
|
/* SMBus 0:1f.4 */
|
|
#include <soc/intel/common/block/acpi/acpi/smbus.asl>
|
|
|
|
/* ISH 0:13.0 */
|
|
#include "ish.asl"
|
|
|
|
/* USB XHCI 0:14.0 */
|
|
#include "xhci.asl"
|
|
|
|
/* PCI _OSC */
|
|
#include <soc/intel/common/acpi/pci_osc.asl>
|
|
|
|
/* GbE 0:1f.6 */
|
|
#include <soc/intel/common/block/acpi/acpi/pch_glan.asl>
|
|
|
|
/* PMC Core */
|
|
#include <soc/intel/common/block/acpi/acpi/pmc.asl>
|