1PLATFORM_FLAVOR ?= qemu_virt 2 3ifeq ($(PLATFORM_FLAVOR),qemu_virt) 4include core/arch/arm/cpu/cortex-a15.mk 5endif 6ifeq ($(PLATFORM_FLAVOR),fvp) 7include core/arch/arm/cpu/cortex-armv8-0.mk 8platform-debugger-arm := 1 9endif 10ifeq ($(PLATFORM_FLAVOR),juno) 11include core/arch/arm/cpu/cortex-armv8-0.mk 12platform-debugger-arm := 1 13# Workaround 808870: Unconditional VLDM instructions might cause an 14# alignment fault even though the address is aligned 15# Either hard float must be disabled for AArch32 or strict alignment checks 16# must be disabled 17ifeq ($(CFG_SCTLR_ALIGNMENT_CHECK),y) 18$(call force,CFG_TA_ARM32_NO_HARD_FLOAT_SUPPORT,y) 19else 20$(call force,CFG_SCTLR_ALIGNMENT_CHECK,n) 21endif 22endif #juno 23ifeq ($(PLATFORM_FLAVOR),qemu_armv8a) 24include core/arch/arm/cpu/cortex-armv8-0.mk 25CFG_ARM64_core ?= y 26endif 27 28 29ifeq ($(platform-debugger-arm),1) 30# ARM debugger needs this 31platform-cflags-debug-info = -gdwarf-2 32platform-aflags-debug-info = -gdwarf-2 33endif 34 35ifeq ($(platform-flavor-armv8),1) 36$(call force,CFG_WITH_ARM_TRUSTED_FW,y) 37endif 38 39$(call force,CFG_GIC,y) 40$(call force,CFG_PL011,y) 41$(call force,CFG_SECURE_TIME_SOURCE_CNTPCT,y) 42 43ifeq ($(CFG_CORE_TPM_EVENT_LOG),y) 44# NOTE: Below values for the TPM event log are implementation 45# dependent and used mostly for debugging purposes. 46# Care must be taken to properly configure them if used. 47CFG_TPM_LOG_BASE_ADDR ?= 0x402c951 48CFG_TPM_MAX_LOG_SIZE ?= 0x200 49endif 50 51ifneq ($(CFG_ARM64_core),y) 52$(call force,CFG_ARM32_core,y) 53endif 54 55CFG_WITH_STATS ?= y 56CFG_ENABLE_EMBEDDED_TESTS ?= y 57 58ifeq ($(PLATFORM_FLAVOR),fvp) 59CFG_TEE_CORE_NB_CORE = 8 60ifeq ($(CFG_CORE_SEL2_SPMC),y) 61CFG_TZDRAM_START ?= 0x06281000 62CFG_TZDRAM_SIZE ?= 0x01D80000 63else 64CFG_TZDRAM_START ?= 0x06000000 65CFG_TZDRAM_SIZE ?= 0x02000000 66endif 67CFG_SHMEM_START ?= 0x83000000 68CFG_SHMEM_SIZE ?= 0x00200000 69# DRAM1 is defined above 4G 70$(call force,CFG_CORE_LARGE_PHYS_ADDR,y) 71$(call force,CFG_CORE_ARM64_PA_BITS,36) 72endif 73 74ifeq ($(PLATFORM_FLAVOR),juno) 75CFG_TEE_CORE_NB_CORE = 6 76CFG_TZDRAM_START ?= 0xff000000 77CFG_TZDRAM_SIZE ?= 0x00ff8000 78CFG_SHMEM_START ?= 0xfee00000 79CFG_SHMEM_SIZE ?= 0x00200000 80# DRAM1 is defined above 4G 81$(call force,CFG_CORE_LARGE_PHYS_ADDR,y) 82$(call force,CFG_CORE_ARM64_PA_BITS,36) 83CFG_CRYPTO_WITH_CE ?= y 84endif 85 86ifeq ($(PLATFORM_FLAVOR),qemu_virt) 87CFG_TEE_CORE_NB_CORE = 4 88# [0e00.0000 0e0f.ffff] is reserved to early boot 89CFG_TZDRAM_START ?= 0x0e100000 90CFG_TZDRAM_SIZE ?= 0x00f00000 91CFG_SHMEM_START ?= 0x7fe00000 92CFG_SHMEM_SIZE ?= 0x00200000 93# When Secure Data Path is enable, last MByte of TZDRAM is SDP test memory. 94CFG_TEE_SDP_MEM_SIZE ?= 0x00400000 95# Set VA space to 2MB for Kasan offset to match LPAE and 32bit MMU configs 96CFG_TEE_RAM_VA_SIZE ?= 0x00200000 97ifeq ($(CFG_CORE_SANITIZE_KADDRESS),y) 98# CFG_ASAN_SHADOW_OFFSET is calculated as: 99# (&__asan_shadow_start - (TEE_RAM_VA_START / 8) 100# This is unfortunately currently not possible to do in make so we have to 101# calculate it offline, there's some asserts in 102# core/arch/arm/kernel/generic_boot.c to check that we got it right 103CFG_ASAN_SHADOW_OFFSET = 0xc6a71c0 104endif 105$(call force,CFG_BOOT_SECONDARY_REQUEST,y) 106$(call force,CFG_PSCI_ARM32,y) 107$(call force,CFG_DT,y) 108CFG_DTB_MAX_SIZE ?= 0x100000 109CFG_CORE_ASYNC_NOTIF ?= y 110CFG_CORE_ASYNC_NOTIF_GIC_INTID ?= 219 111endif 112 113ifeq ($(PLATFORM_FLAVOR),qemu_armv8a) 114CFG_TEE_CORE_NB_CORE = 4 115# [0e00.0000 0e0f.ffff] is reserved to early boot 116CFG_TZDRAM_START ?= 0x0e100000 117CFG_TZDRAM_SIZE ?= 0x00f00000 118# SHM chosen arbitrary, in a way that it does not interfere 119# with initial location of linux kernel, dtb and initrd. 120CFG_SHMEM_START ?= 0x42000000 121CFG_SHMEM_SIZE ?= 0x00200000 122# When Secure Data Path is enable, last MByte of TZDRAM is SDP test memory. 123CFG_TEE_SDP_MEM_SIZE ?= 0x00400000 124$(call force,CFG_DT,y) 125CFG_DTB_MAX_SIZE ?= 0x100000 126endif 127 128ifneq (,$(filter $(PLATFORM_FLAVOR),qemu_virt qemu_armv8a)) 129CFG_DT_DRIVER_EMBEDDED_TEST ?= y 130ifeq ($(CFG_DT_DRIVER_EMBEDDED_TEST),y) 131$(call force,CFG_EMBED_DTB_SOURCE_FILE,embedded_dtb_test.dts,Mandated for DT tests) 132endif 133endif 134