Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 1 | # |
Roberto Vargas | b96ee4b | 2018-08-06 13:35:31 +0100 | [diff] [blame] | 2 | # Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 5 | # |
| 6 | |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 7 | PLAT_INCLUDES += -Iinclude/plat/arm/board/common/ \ |
| 8 | -Iinclude/plat/arm/board/common/drivers |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 9 | |
Yatharth Kochar | f528faf | 2016-06-28 16:58:26 +0100 | [diff] [blame] | 10 | PLAT_BL_COMMON_SOURCES += drivers/arm/pl011/${ARCH}/pl011_console.S \ |
| 11 | plat/arm/board/common/${ARCH}/board_arm_helpers.S |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 12 | |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 13 | BL1_SOURCES += plat/arm/board/common/drivers/norflash/norflash.c |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 14 | |
Roberto Vargas | b96ee4b | 2018-08-06 13:35:31 +0100 | [diff] [blame] | 15 | BL2_SOURCES += plat/arm/board/common/drivers/norflash/norflash.c |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 16 | |
| 17 | ifneq (${TRUSTED_BOARD_BOOT},0) |
Soby Mathew | 3e6bbda | 2017-06-02 17:44:07 +0100 | [diff] [blame] | 18 | ifneq (${ARM_CRYPTOCELL_INTEG}, 1) |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 19 | # ROTPK hash location |
| 20 | ifeq (${ARM_ROTPK_LOCATION}, regs) |
| 21 | ARM_ROTPK_LOCATION_ID = ARM_ROTPK_REGS_ID |
| 22 | else ifeq (${ARM_ROTPK_LOCATION}, devel_rsa) |
Qixiang Xu | 1c2aef1 | 2017-08-24 15:12:20 +0800 | [diff] [blame] | 23 | KEY_ALG := rsa |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 24 | ARM_ROTPK_LOCATION_ID = ARM_ROTPK_DEVEL_RSA_ID |
Qixiang Xu | 1c2aef1 | 2017-08-24 15:12:20 +0800 | [diff] [blame] | 25 | else ifeq (${ARM_ROTPK_LOCATION}, devel_ecdsa) |
| 26 | KEY_ALG := ecdsa |
| 27 | ARM_ROTPK_LOCATION_ID = ARM_ROTPK_DEVEL_ECDSA_ID |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 28 | else |
| 29 | $(error "Unsupported ARM_ROTPK_LOCATION value") |
| 30 | endif |
| 31 | $(eval $(call add_define,ARM_ROTPK_LOCATION_ID)) |
| 32 | |
Juan Castillo | bfb7fa6 | 2016-01-22 11:05:57 +0000 | [diff] [blame] | 33 | # Certificate NV-Counters. Use values corresponding to tied off values in |
| 34 | # ARM development platforms |
| 35 | TFW_NVCTR_VAL ?= 31 |
| 36 | NTFW_NVCTR_VAL ?= 223 |
Soby Mathew | 3e6bbda | 2017-06-02 17:44:07 +0100 | [diff] [blame] | 37 | else |
| 38 | # Certificate NV-Counters when CryptoCell is integrated. For development |
| 39 | # platforms we set the counter to first valid value. |
| 40 | TFW_NVCTR_VAL ?= 0 |
| 41 | NTFW_NVCTR_VAL ?= 0 |
| 42 | endif |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 43 | BL1_SOURCES += plat/arm/board/common/board_arm_trusted_boot.c |
| 44 | BL2_SOURCES += plat/arm/board/common/board_arm_trusted_boot.c |
| 45 | endif |