1# 2# Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are met: 6# 7# Redistributions of source code must retain the above copyright notice, this 8# list of conditions and the following disclaimer. 9# 10# Redistributions in binary form must reproduce the above copyright notice, 11# this list of conditions and the following disclaimer in the documentation 12# and/or other materials provided with the distribution. 13# 14# Neither the name of ARM nor the names of its contributors may be used 15# to endorse or promote products derived from this software without specific 16# prior written permission. 17# 18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28# POSSIBILITY OF SUCH DAMAGE. 29# 30 31ifeq (${ARCH}, aarch64) 32 # On ARM standard platorms, the TSP can execute from Trusted SRAM, Trusted 33 # DRAM (if available) or the TZC secured area of DRAM. 34 # Trusted SRAM is the default. 35 36 ARM_TSP_RAM_LOCATION := tsram 37 ifeq (${ARM_TSP_RAM_LOCATION}, tsram) 38 ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_SRAM_ID 39 else ifeq (${ARM_TSP_RAM_LOCATION}, tdram) 40 ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_DRAM_ID 41 else ifeq (${ARM_TSP_RAM_LOCATION}, dram) 42 ARM_TSP_RAM_LOCATION_ID = ARM_DRAM_ID 43 else 44 $(error "Unsupported ARM_TSP_RAM_LOCATION value") 45 endif 46 47 # Process flags 48 $(eval $(call add_define,ARM_TSP_RAM_LOCATION_ID)) 49 50 # Process ARM_BL31_IN_DRAM flag 51 ARM_BL31_IN_DRAM := 0 52 $(eval $(call assert_boolean,ARM_BL31_IN_DRAM)) 53 $(eval $(call add_define,ARM_BL31_IN_DRAM)) 54endif 55 56# For the original power-state parameter format, the State-ID can be encoded 57# according to the recommended encoding or zero. This flag determines which 58# State-ID encoding to be parsed. 59ARM_RECOM_STATE_ID_ENC := 0 60 61# If the PSCI_EXTENDED_STATE_ID is set, then ARM_RECOM_STATE_ID_ENC need to 62# be set. Else throw a build error. 63ifeq (${PSCI_EXTENDED_STATE_ID}, 1) 64 ifeq (${ARM_RECOM_STATE_ID_ENC}, 0) 65 $(error Build option ARM_RECOM_STATE_ID_ENC needs to be set if \ 66 PSCI_EXTENDED_STATE_ID is set for ARM platforms) 67 endif 68endif 69 70# Process ARM_RECOM_STATE_ID_ENC flag 71$(eval $(call assert_boolean,ARM_RECOM_STATE_ID_ENC)) 72$(eval $(call add_define,ARM_RECOM_STATE_ID_ENC)) 73 74# Process ARM_DISABLE_TRUSTED_WDOG flag 75# By default, Trusted Watchdog is always enabled unless SPIN_ON_BL1_EXIT is set 76ARM_DISABLE_TRUSTED_WDOG := 0 77ifeq (${SPIN_ON_BL1_EXIT}, 1) 78ARM_DISABLE_TRUSTED_WDOG := 1 79endif 80$(eval $(call assert_boolean,ARM_DISABLE_TRUSTED_WDOG)) 81$(eval $(call add_define,ARM_DISABLE_TRUSTED_WDOG)) 82 83# Process ARM_CONFIG_CNTACR 84ARM_CONFIG_CNTACR := 1 85$(eval $(call assert_boolean,ARM_CONFIG_CNTACR)) 86$(eval $(call add_define,ARM_CONFIG_CNTACR)) 87 88# Process ARM_BL31_IN_DRAM flag 89ARM_BL31_IN_DRAM := 0 90$(eval $(call assert_boolean,ARM_BL31_IN_DRAM)) 91$(eval $(call add_define,ARM_BL31_IN_DRAM)) 92 93# Process ARM_PLAT_MT flag 94ARM_PLAT_MT := 0 95$(eval $(call assert_boolean,ARM_PLAT_MT)) 96$(eval $(call add_define,ARM_PLAT_MT)) 97 98# Use translation tables library v2 by default 99ARM_XLAT_TABLES_LIB_V1 := 0 100$(eval $(call assert_boolean,ARM_XLAT_TABLES_LIB_V1)) 101$(eval $(call add_define,ARM_XLAT_TABLES_LIB_V1)) 102 103# Enable PSCI_STAT_COUNT/RESIDENCY APIs on ARM platforms 104ENABLE_PSCI_STAT := 1 105ENABLE_PMF := 1 106 107# On ARM platforms, separate the code and read-only data sections to allow 108# mapping the former as executable and the latter as execute-never. 109SEPARATE_CODE_AND_RODATA := 1 110 111# Enable new version of image loading on ARM platforms 112LOAD_IMAGE_V2 := 1 113 114PLAT_INCLUDES += -Iinclude/common/tbbr \ 115 -Iinclude/plat/arm/common 116 117ifeq (${ARCH}, aarch64) 118PLAT_INCLUDES += -Iinclude/plat/arm/common/aarch64 119endif 120 121PLAT_BL_COMMON_SOURCES += plat/arm/common/${ARCH}/arm_helpers.S \ 122 plat/arm/common/arm_common.c 123 124ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) 125PLAT_BL_COMMON_SOURCES += lib/xlat_tables/xlat_tables_common.c \ 126 lib/xlat_tables/${ARCH}/xlat_tables.c 127else 128include lib/xlat_tables_v2/xlat_tables.mk 129 130PLAT_BL_COMMON_SOURCES += ${XLAT_TABLES_LIB_SRCS} 131endif 132 133BL1_SOURCES += drivers/arm/sp805/sp805.c \ 134 drivers/io/io_fip.c \ 135 drivers/io/io_memmap.c \ 136 drivers/io/io_storage.c \ 137 plat/arm/common/arm_bl1_setup.c \ 138 plat/arm/common/arm_io_storage.c 139ifdef EL3_PAYLOAD_BASE 140# Need the arm_program_trusted_mailbox() function to release secondary CPUs from 141# their holding pen 142BL1_SOURCES += plat/arm/common/arm_pm.c 143endif 144 145BL2_SOURCES += drivers/io/io_fip.c \ 146 drivers/io/io_memmap.c \ 147 drivers/io/io_storage.c \ 148 plat/arm/common/arm_bl2_setup.c \ 149 plat/arm/common/arm_io_storage.c 150ifeq (${LOAD_IMAGE_V2},1) 151# Because BL1/BL2 execute in AArch64 mode but BL32 in AArch32 we need to use 152# the AArch32 descriptors. 153ifeq (${JUNO_AARCH32_EL3_RUNTIME},1) 154BL2_SOURCES += plat/arm/common/aarch32/arm_bl2_mem_params_desc.c 155else 156BL2_SOURCES += plat/arm/common/${ARCH}/arm_bl2_mem_params_desc.c 157endif 158BL2_SOURCES += plat/arm/common/arm_image_load.c \ 159 common/desc_image_load.c 160endif 161 162BL2U_SOURCES += plat/arm/common/arm_bl2u_setup.c 163 164BL31_SOURCES += plat/arm/common/arm_bl31_setup.c \ 165 plat/arm/common/arm_pm.c \ 166 plat/arm/common/arm_topology.c \ 167 plat/arm/common/execution_state_switch.c \ 168 plat/common/plat_psci_common.c 169 170ifeq (${ENABLE_PMF}, 1) 171BL31_SOURCES += plat/arm/common/arm_sip_svc.c \ 172 lib/pmf/pmf_smc.c 173endif 174 175ifneq (${TRUSTED_BOARD_BOOT},0) 176 177 # By default, ARM platforms use RSA keys 178 KEY_ALG := rsa 179 180 # Include common TBB sources 181 AUTH_SOURCES := drivers/auth/auth_mod.c \ 182 drivers/auth/crypto_mod.c \ 183 drivers/auth/img_parser_mod.c \ 184 drivers/auth/tbbr/tbbr_cot.c \ 185 186 PLAT_INCLUDES += -Iinclude/bl1/tbbr 187 188 BL1_SOURCES += ${AUTH_SOURCES} \ 189 bl1/tbbr/tbbr_img_desc.c \ 190 plat/arm/common/arm_bl1_fwu.c \ 191 plat/common/tbbr/plat_tbbr.c 192 193 BL2_SOURCES += ${AUTH_SOURCES} \ 194 plat/common/tbbr/plat_tbbr.c 195 196 $(eval $(call FWU_FIP_ADD_IMG,NS_BL2U,--fwu)) 197 198 MBEDTLS_KEY_ALG := ${KEY_ALG} 199 200 # We expect to locate the *.mk files under the directories specified below 201 CRYPTO_LIB_MK := drivers/auth/mbedtls/mbedtls_crypto.mk 202 IMG_PARSER_LIB_MK := drivers/auth/mbedtls/mbedtls_x509.mk 203 204 $(info Including ${CRYPTO_LIB_MK}) 205 include ${CRYPTO_LIB_MK} 206 207 $(info Including ${IMG_PARSER_LIB_MK}) 208 include ${IMG_PARSER_LIB_MK} 209 210endif 211