1PLATFORM_FLAVOR ?= mt8173 2 3include core/arch/arm/cpu/cortex-armv8-0.mk 4 5$(call force,CFG_8250_UART,y) 6$(call force,CFG_GENERIC_BOOT,y) 7$(call force,CFG_PM_STUBS,y) 8$(call force,CFG_SECURE_TIME_SOURCE_CNTPCT,y) 9$(call force,CFG_WITH_ARM_TRUSTED_FW,y) 10 11ta-targets = ta_arm32 12 13ifeq ($(CFG_ARM64_core),y) 14$(call force,CFG_WITH_LPAE,y) 15ta-targets += ta_arm64 16else 17$(call force,CFG_ARM32_core,y) 18endif 19 20CFG_WITH_STACK_CANARIES ?= y 21 22ifeq ($(PLATFORM_FLAVOR),mt8173) 23# 2**1 = 2 cores per cluster 24$(call force,CFG_CORE_CLUSTER_SHIFT,1) 25endif 26