From 7ebdddde35b20fc2bead3c50c461b79050ce0d71 Mon Sep 17 00:00:00 2001 From: Kangheui Won Date: Fri, 7 May 2021 17:14:45 +1000 Subject: [PATCH] psp_verstage: remove not-implemented files for cezanne Cezanne PSP is missing implementations for some svc apis. Do not include files related to missing svc apis. This CL should be reverted after the cezanne PSP supports these functions. BUG=b:187906425 Signed-off-by: Kangheui Won Change-Id: Ibaab4e8435624d403ef18e980146ebfd1598b61b Reviewed-on: https://review.coreboot.org/c/coreboot/+/53905 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/soc/amd/common/psp_verstage/Makefile.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/soc/amd/common/psp_verstage/Makefile.inc b/src/soc/amd/common/psp_verstage/Makefile.inc index a913a5ba56..7272de4b69 100644 --- a/src/soc/amd/common/psp_verstage/Makefile.inc +++ b/src/soc/amd/common/psp_verstage/Makefile.inc @@ -14,9 +14,12 @@ verstage-y += post.c verstage-y += printk.c verstage-y += psp_verstage.c verstage-y += psp.c +ifneq ($(CONFIG_SOC_AMD_CEZANNE),y) +# cezanne PSP does not support these functions yet (b/187906425) verstage-y += reset.c verstage-y += timer.c verstage-y += vboot_crypto.c +endif $(obj)/psp_verstage.bin: $(objcbfs)/verstage.elf $(OBJCOPY_verstage) -O binary $^ $@