# SPDX-License-Identifier: GPL-2.0-or-later bootblock-y += bootblock.c romstage-y += port_descriptors.c ramstage-y += ec.c ramstage-y += mainboard.c ramstage-y += port_descriptors.c ramstage-$(CONFIG_CHROMEOS) += chromeos.c verstage-$(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK) += verstage.c subdirs-y += variants/baseboard subdirs-y += variants/$(VARIANT_DIR) CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/include CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/include APCB_NAME=APCB_PHX_D5 ifneq ($(wildcard $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin),) $(info APCB sources present.) APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin # The SPD is currently built directly into the APCB. # Add the below section back in after the apcbtool is updated to handle the # Phoenix APCB SPD configuration. ifneq ($(wildcard $(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/memory/Makefile.mk),) LIB_SPD_DEPS = $(SPD_SOURCES) APCB_SOURCES = $(obj)/$(APCB_NAME).gen $(obj)/$(APCB_NAME).gen: $(SPD_SOURCES) \ $(APCB_V3A_EDIT_TOOL) \ $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin $(APCB_V3A_EDIT_TOOL) $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin \ $(obj)/$(APCB_NAME).gen \ --spd_sources $(SPD_SOURCES) else $(info SPD sources not found. Skipping APCB.) show_notices:: die_no_apcb endif else $(info APCB sources not found. Skipping APCB.) show_notices:: warn_no_apcb endif