1PLATFORM_FLAVOR ?= sc9860 2PLATFORM_FLAVOR_$(PLATFORM_FLAVOR) := y 3 4# 32-bit flags 5arm32-platform-cpuarch := cortex-a15 6arm32-platform-cflags += -mcpu=$(arm32-platform-cpuarch) 7arm32-platform-aflags += -mcpu=$(arm32-platform-cpuarch) 8arm32-platform-aflags += -mfpu=neon 9 10$(call force,CFG_WITH_ARM_TRUSTED_FW,y) 11 12ta-targets = ta_arm32 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 21$(call force,CFG_GENERIC_BOOT,y) 22$(call force,CFG_GIC,y) 23$(call force,CFG_SPRD_UART,y) 24$(call force,CFG_PM_STUBS,y) 25$(call force,CFG_SECURE_TIME_SOURCE_CNTPCT,y) 26 27CFG_WITH_STACK_CANARIES ?= y 28