Alder Lake N SOC has eMMC device. Add ACPI ASL methods for it. Change-Id: I53f04e81584493049d37b46e078d394d3c8a2f09 Signed-off-by: Krishna Prasad Bhat <krishna.p.bhat.d@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61127 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Rizwan Qureshi <rizwan.qureshi@intel.com>
48 lines
893 B
Plaintext
48 lines
893 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <intelblocks/itss.h>
|
|
#include <intelblocks/pcr.h>
|
|
#include <soc/itss.h>
|
|
#include <soc/pcr_ids.h>
|
|
|
|
/* PCR access */
|
|
#include <soc/intel/common/acpi/pcr.asl>
|
|
|
|
/* PCH clock */
|
|
#include "camera_clock_ctl.asl"
|
|
|
|
/* GPIO controller */
|
|
#include "gpio.asl"
|
|
|
|
/* ESPI 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"
|
|
|
|
/* eMMC */
|
|
#if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N)
|
|
#include "scs.asl"
|
|
#endif
|
|
|
|
/* SMBus 0:1f.4 */
|
|
#include <soc/intel/common/block/acpi/acpi/smbus.asl>
|
|
|
|
/* ISH 0:12.0 */
|
|
#include <soc/intel/common/block/acpi/acpi/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>
|