xref: /rk3399_ARM-atf/tools/cert_create/Makefile (revision ffb7742125def3e0acca4c7e4d3215af5ce25a31)
16f971622SJuan Castillo#
2cc277de8SChris Kay# Copyright (c) 2015-2024, Arm Limited and Contributors. All rights reserved.
36f971622SJuan Castillo#
482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause
56f971622SJuan Castillo#
66f971622SJuan Castillo
76f971622SJuan CastilloPLAT		:= none
8a9673900Sdp-armV		?= 0
96f971622SJuan CastilloDEBUG		:= 0
10b13e3f9fSManish V BadarkheCRTTOOL		?= cert_create${BIN_EXT}
11fafd3ec9SManish V BadarkheBINARY		:= $(notdir ${CRTTOOL})
1243743ea5SSandrine BailleuxCOT		:= tbbr
136f971622SJuan Castillo
14cc277de8SChris Kaytoolchains := host
15cc277de8SChris Kay
16231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := ../../make_helpers/
17231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
18e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk
19cf2dd17dSJuan Pablo Condeinclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
20cc277de8SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}toolchain.mk
21231c1470SEvan Lloyd
22b94bf967SPankaj Guptaifneq (${PLAT},none)
23b94bf967SPankaj GuptaTF_PLATFORM_ROOT	:=	../../plat/
24b94bf967SPankaj Guptainclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
25b94bf967SPankaj GuptaPLAT_CERT_CREATE_HELPER_MK := ${PLAT_DIR}/cert_create_tbbr.mk
26b94bf967SPankaj Guptaendif
27b94bf967SPankaj Gupta
283b24b66eSSandrine Bailleux# Common source files.
293b24b66eSSandrine BailleuxOBJECTS := src/cert.o \
303b24b66eSSandrine Bailleux           src/cmd_opt.o \
313b24b66eSSandrine Bailleux           src/ext.o \
323b24b66eSSandrine Bailleux           src/key.o \
333b24b66eSSandrine Bailleux           src/main.o \
343b24b66eSSandrine Bailleux           src/sha.o
35bb41eb7aSMasahiro Yamada
3643743ea5SSandrine Bailleux# Chain of trust.
3743743ea5SSandrine Bailleuxifeq (${COT},tbbr)
383b24b66eSSandrine Bailleux  include src/tbbr/tbbr.mk
39a9d5c273SSandrine Bailleuxelse ifeq (${COT},dualroot)
40a9d5c273SSandrine Bailleux  include src/dualroot/cot.mk
410a6bf811Slaurenw-armelse ifeq (${COT},cca)
420a6bf811Slaurenw-arm  include src/cca/cot.mk
4343743ea5SSandrine Bailleuxelse
4443743ea5SSandrine Bailleux  $(error Unknown chain of trust ${COT})
4543743ea5SSandrine Bailleuxendif
46231c1470SEvan Lloyd
47b94bf967SPankaj Guptaifneq (,$(wildcard ${PLAT_CERT_CREATE_HELPER_MK}))
48b94bf967SPankaj Guptainclude ${PLAT_CERT_CREATE_HELPER_MK}
49b94bf967SPankaj Guptaendif
50b94bf967SPankaj Gupta
51cf2dd17dSJuan Pablo Conde# Select OpenSSL version flag according to the OpenSSL build selected
52cf2dd17dSJuan Pablo Conde# from setting the OPENSSL_DIR path.
53cf2dd17dSJuan Pablo Conde$(eval $(call SELECT_OPENSSL_API_VERSION))
54cf2dd17dSJuan Pablo Conde
553b24b66eSSandrine BailleuxHOSTCCFLAGS := -Wall -std=c99
566f971622SJuan Castillo
576f971622SJuan Castilloifeq (${DEBUG},1)
58750e8d80SAntonio Nino Diaz  HOSTCCFLAGS += -g -O0 -DDEBUG -DLOG_LEVEL=40
596f971622SJuan Castilloelse
60750e8d80SAntonio Nino Diaz  HOSTCCFLAGS += -O2 -DLOG_LEVEL=20
616f971622SJuan Castilloendif
623b24b66eSSandrine Bailleux
636f971622SJuan Castilloifeq (${V},0)
646f971622SJuan Castillo  Q := @
656f971622SJuan Castilloelse
666f971622SJuan Castillo  Q :=
676f971622SJuan Castilloendif
686f971622SJuan Castillo
69750e8d80SAntonio Nino DiazHOSTCCFLAGS += ${DEFINES}
70cf2dd17dSJuan Pablo Conde# USING_OPENSSL3 flag will be added to the HOSTCCFLAGS variable with the proper
71cf2dd17dSJuan Pablo Conde# computed value.
72cf2dd17dSJuan Pablo CondeHOSTCCFLAGS += -DUSING_OPENSSL3=$(USING_OPENSSL3)
73bb41eb7aSMasahiro Yamada
746f971622SJuan Castillo# Make soft links and include from local directory otherwise wrong headers
756f971622SJuan Castillo# could get pulled in from firmware tree.
76b94bf967SPankaj GuptaINC_DIR += -I ./include -I ${PLAT_INCLUDE} -I ${OPENSSL_DIR}/include
779bc52d33SJuan Pablo Conde
789bc52d33SJuan Pablo Conde# Include library directories where OpenSSL library files are located.
799bc52d33SJuan Pablo Conde# For a normal installation (i.e.: when ${OPENSSL_DIR} = /usr or
809bc52d33SJuan Pablo Conde# /usr/local), binaries are located under the ${OPENSSL_DIR}/lib/
819bc52d33SJuan Pablo Conde# directory. However, for a local build of OpenSSL, the built binaries are
829bc52d33SJuan Pablo Conde# located under the main project directory (i.e.: ${OPENSSL_DIR}, not
839bc52d33SJuan Pablo Conde# ${OPENSSL_DIR}/lib/).
849bc52d33SJuan Pablo CondeLIB_DIR := -L ${OPENSSL_DIR}/lib -L ${OPENSSL_DIR}
856f971622SJuan CastilloLIB := -lssl -lcrypto
866f971622SJuan Castillo
87cf2dd17dSJuan Pablo Conde.PHONY: all clean realclean --openssl
886f971622SJuan Castillo
89aa57ce63SVincent Stehléall: --openssl ${BINARY}
906f971622SJuan Castillo
91aa57ce63SVincent Stehlé${BINARY}: ${OBJECTS} Makefile
92750e8d80SAntonio Nino Diaz	@echo "  HOSTLD  $@"
936f971622SJuan Castillo	@echo 'const char build_msg[] = "Built : "__TIME__", "__DATE__; \
94bb41eb7aSMasahiro Yamada                const char platform_msg[] = "${PLAT_MSG}";' | \
95*ffb77421SChris Kay                $(host-cc) -c ${HOSTCCFLAGS} -xc - -o src/build_msg.o
96*ffb77421SChris Kay	${Q}$(host-cc) src/build_msg.o ${OBJECTS} ${LIB_DIR} ${LIB} -o $@
976f971622SJuan Castillo
986f971622SJuan Castillo%.o: %.c
99750e8d80SAntonio Nino Diaz	@echo "  HOSTCC  $<"
100*ffb77421SChris Kay	${Q}$(host-cc) -c ${HOSTCCFLAGS} ${INC_DIR} $< -o $@
1016f971622SJuan Castillo
102cf2dd17dSJuan Pablo Conde--openssl:
103cf2dd17dSJuan Pablo Condeifeq ($(DEBUG),1)
104cf2dd17dSJuan Pablo Conde	@echo "Selected OpenSSL version: ${OPENSSL_CURRENT_VER}"
105cf2dd17dSJuan Pablo Condeendif
106cf2dd17dSJuan Pablo Conde
1076f971622SJuan Castilloclean:
108f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, src/build_msg.o ${OBJECTS})
1096f971622SJuan Castillo
1106f971622SJuan Castillorealclean: clean
111f1477d4aSEvan Lloyd	$(call SHELL_DELETE,${BINARY})
112