summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Gautier <yann.gautier@foss.st.com>2023-04-24 11:44:51 +0200
committerYann Gautier <yann.gautier@st.com>2023-05-03 13:32:15 +0200
commite0e2d64f47654e4d86d0e400977eab0e4a01523e (patch)
treed27b03e2b969782f46b2bf97dfe97a4d4c66858b
parent231a0adb6abc35c125d4177749af37042575eca2 (diff)
downloadarm-trusted-firmware-e0e2d64f47654e4d86d0e400977eab0e4a01523e.tar.gz
fix(stm32mp1): always define PKA algos flags
The flags to set PKA algo are set to 0 when TRUSTED_BOARD_BOOT is not set. Signed-off-by: Yann Gautier <yann.gautier@foss.st.com> Change-Id: Ib70a2bc51451a2047d7a50a8307e9063d4a2a0ee
-rw-r--r--plat/st/stm32mp1/platform.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/plat/st/stm32mp1/platform.mk b/plat/st/stm32mp1/platform.mk
index 75c23833e..55423aebb 100644
--- a/plat/st/stm32mp1/platform.mk
+++ b/plat/st/stm32mp1/platform.mk
@@ -73,6 +73,9 @@ $(error "DECRYPTION_SUPPORT not supported on STM32MP15")
endif
endif
+PKA_USE_NIST_P256 ?= 0
+PKA_USE_BRAINPOOL_P256T1 ?= 0
+
ifeq ($(AARCH32_SP),sp_min)
# Disable Neon support: sp_min runtime may conflict with non-secure world
TF_CFLAGS += -mfloat-abi=soft