1PLATFORM_FLAVOR ?= 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 14ifeq ($(CFG_ARM64_core),y) 15$(call force,CFG_WITH_LPAE,y) 16ta-targets += ta_arm64 17else 18$(call force,CFG_ARM32_core,y) 19endif 20 21ifeq ($(CFG_ARM32_core),y) 22ta-targets = ta_arm32 23endif 24 25CFG_WITH_STACK_CANARIES ?= y 26