blob: a631829fdaff61f3a5c91fd6d8b6ba5df7edfc0f [file] [log] [blame]
Soby Mathew5d708002017-05-10 11:49:58 +01001#
2# Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7include drivers/auth/mbedtls/mbedtls_common.mk
8
9# The algorithm is RSA when using Cryptocell crypto driver
10TF_MBEDTLS_KEY_ALG_ID := TF_MBEDTLS_RSA
11
12# Needs to be set to drive mbed TLS configuration correctly
13$(eval $(call add_define,TF_MBEDTLS_KEY_ALG_ID))
14
15# CCSBROM_LIB_PATH must be set to the Cryptocell SBROM library path
16ifeq (${CCSBROM_LIB_PATH},)
17 $(error Error: CCSBROM_LIB_PATH not set)
18endif
19
20TF_LDFLAGS += -L$(CCSBROM_LIB_PATH)
21LDLIBS += -lcc_712sbromx509
22
Soby Mathew5d708002017-05-10 11:49:58 +010023CRYPTOCELL_SOURCES := drivers/auth/cryptocell/cryptocell_crypto.c
24
25BL1_SOURCES += ${CRYPTOCELL_SOURCES}
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000026BL2_SOURCES += ${CRYPTOCELL_SOURCES}