blob: b98dfd48b28a87ae48810cdfce33afe627b4c0be [file] [log] [blame]
Juan Castillo31a68f02015-04-14 12:49:03 +01001#
Roberto Vargasb96ee4b2018-08-06 13:35:31 +01002# Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Juan Castillo31a68f02015-04-14 12:49:03 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Juan Castillo31a68f02015-04-14 12:49:03 +01005#
6
Antonio Nino Diazd7da2f82018-10-10 11:14:44 +01007PLAT_BL_COMMON_SOURCES += drivers/arm/pl011/${ARCH}/pl011_console.S \
Yatharth Kocharf528faf2016-06-28 16:58:26 +01008 plat/arm/board/common/${ARCH}/board_arm_helpers.S
Juan Castillo31a68f02015-04-14 12:49:03 +01009
Antonio Nino Diazd7da2f82018-10-10 11:14:44 +010010BL1_SOURCES += drivers/cfi/v2m/v2m_flash.c
Juan Castillo31a68f02015-04-14 12:49:03 +010011
Antonio Nino Diazd7da2f82018-10-10 11:14:44 +010012BL2_SOURCES += drivers/cfi/v2m/v2m_flash.c
Juan Castillo31a68f02015-04-14 12:49:03 +010013
14ifneq (${TRUSTED_BOARD_BOOT},0)
Soby Mathew3e6bbda2017-06-02 17:44:07 +010015 ifneq (${ARM_CRYPTOCELL_INTEG}, 1)
Juan Castillo31a68f02015-04-14 12:49:03 +010016 # ROTPK hash location
17 ifeq (${ARM_ROTPK_LOCATION}, regs)
18 ARM_ROTPK_LOCATION_ID = ARM_ROTPK_REGS_ID
19 else ifeq (${ARM_ROTPK_LOCATION}, devel_rsa)
Qixiang Xu1c2aef12017-08-24 15:12:20 +080020 KEY_ALG := rsa
Juan Castillo31a68f02015-04-14 12:49:03 +010021 ARM_ROTPK_LOCATION_ID = ARM_ROTPK_DEVEL_RSA_ID
Qixiang Xu1c2aef12017-08-24 15:12:20 +080022 else ifeq (${ARM_ROTPK_LOCATION}, devel_ecdsa)
23 KEY_ALG := ecdsa
24 ARM_ROTPK_LOCATION_ID = ARM_ROTPK_DEVEL_ECDSA_ID
Juan Castillo31a68f02015-04-14 12:49:03 +010025 else
26 $(error "Unsupported ARM_ROTPK_LOCATION value")
27 endif
28 $(eval $(call add_define,ARM_ROTPK_LOCATION_ID))
29
Juan Castillobfb7fa62016-01-22 11:05:57 +000030 # Certificate NV-Counters. Use values corresponding to tied off values in
31 # ARM development platforms
32 TFW_NVCTR_VAL ?= 31
33 NTFW_NVCTR_VAL ?= 223
Soby Mathew3e6bbda2017-06-02 17:44:07 +010034 else
35 # Certificate NV-Counters when CryptoCell is integrated. For development
36 # platforms we set the counter to first valid value.
37 TFW_NVCTR_VAL ?= 0
38 NTFW_NVCTR_VAL ?= 0
39 endif
Juan Castillo31a68f02015-04-14 12:49:03 +010040 BL1_SOURCES += plat/arm/board/common/board_arm_trusted_boot.c
41 BL2_SOURCES += plat/arm/board/common/board_arm_trusted_boot.c
42endif