1PLATFORM_FLAVOR ?= salvator_h3 2 3include core/arch/arm/cpu/cortex-armv8-0.mk 4 5# 32-bit flags 6arm32-platform-aflags += -mfpu=neon 7 8$(call force,CFG_GENERIC_BOOT,y) 9$(call force,CFG_PM_STUBS,y) 10$(call force,CFG_SECURE_TIME_SOURCE_CNTPCT,y) 11$(call force,CFG_WITH_ARM_TRUSTED_FW,y) 12$(call force,CFG_SCIF,y) 13$(call force,CFG_CORE_LARGE_PHYS_ADDR,y) 14 15ifeq ($(CFG_ARM64_core),y) 16$(call force,CFG_WITH_LPAE,y) 17ta-targets += ta_arm64 18else 19$(call force,CFG_ARM32_core,y) 20endif 21 22ifeq ($(CFG_ARM32_core),y) 23ta-targets = ta_arm32 24endif 25 26CFG_WITH_STACK_CANARIES ?= y 27