63e2a84d59
Use the common block ACPI to further reduce the duplicate code. Change-Id: If28d75cbb2a88363d70e3ae6a2cace46cb6bbbab Signed-off-by: Marc Jones <marcjones@sysproconsulting.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48248 Reviewed-by: Jay Talbott <JayTalbott@sysproconsulting.com> Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
22 lines
832 B
Makefile
22 lines
832 B
Makefile
## SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
ifeq ($(CONFIG_XEON_SP_COMMON_BASE),y)
|
|
|
|
subdirs-$(CONFIG_SOC_INTEL_SKYLAKE_SP) += skx
|
|
subdirs-$(CONFIG_SOC_INTEL_COOPERLAKE_SP) += cpx
|
|
|
|
bootblock-y += bootblock.c spi.c lpc.c gpio.c pch.c
|
|
romstage-y += romstage.c reset.c util.c spi.c gpio.c pmutil.c memmap.c
|
|
romstage-y += ../../../cpu/intel/car/romstage.c
|
|
ramstage-y += uncore.c reset.c util.c lpc.c spi.c gpio.c ramstage.c chip_common.c
|
|
ramstage-y += memmap.c pch.c
|
|
ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC) += pmc.c
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += nb_acpi.c acpi.c
|
|
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c pmc.c
|
|
postcar-y += spi.c
|
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/xeon_sp/include
|
|
CPPFLAGS_common += -I$(CONFIG_FSP_HEADER_PATH)
|
|
|
|
endif ## XEON_SP_COMMON_BASE
|