1PLATFORM_FLAVOR ?= sama5d27_som1_ek 2 3flavor_dts_file-sama5d2xult = at91-sama5d2_xplained.dts 4flavor_dts_file-sama5d27_som1_ek = at91-sama5d27_som1_ek.dts 5 6ifeq ($(flavor_dts_file-$(PLATFORM_FLAVOR)),) 7$(error Invalid platform flavor $(PLATFORM_FLAVOR)) 8endif 9CFG_EMBED_DTB_SOURCE_FILE ?= $(flavor_dts_file-$(PLATFORM_FLAVOR)) 10 11include core/arch/arm/cpu/cortex-a5.mk 12 13$(call force,CFG_TEE_CORE_NB_CORE,1) 14$(call force,CFG_ATMEL_UART,y) 15$(call force,CFG_SECURE_TIME_SOURCE_REE,y) 16$(call force,CFG_NO_SMP,y) 17$(call force,CFG_PL310,y) 18$(call force,CFG_PL310_LOCKED,y) 19$(call force,CFG_AT91_MATRIX,y) 20 21# These values are forced because of matrix configuration for secure area. 22# When modifying these, always update matrix settings in 23# matrix_configure_slave_h64mx(). 24$(call force,CFG_TZDRAM_START,0x20000000) 25$(call force,CFG_TZDRAM_SIZE,0x800000) 26 27CFG_SHMEM_START ?= 0x21000000 28CFG_SHMEM_SIZE ?= 0x400000 29 30CFG_TEE_RAM_VA_SIZE ?= 0x100000 31 32CFG_DRAM_SIZE ?= 0x20000000 33