xref: /rk3399_ARM-atf/make_helpers/tbbr/tbbr_tools.mk (revision c9b31ae85fbcce6dad9596f3390ab443e2779f30)
173c99d4eSJuan Castillo#
271fb3964SSummer Qin# Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
373c99d4eSJuan Castillo#
482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause
573c99d4eSJuan Castillo#
673c99d4eSJuan Castillo
773c99d4eSJuan Castillo# This file defines the keys and certificates that must be created to establish
873c99d4eSJuan Castillo# a Chain of Trust following the TBBR document. These definitions include the
9819281eeSdp-arm# command line options passed to the cert_create and fiptool commands.
1073c99d4eSJuan Castillo#
1173c99d4eSJuan Castillo# Expected environment:
1273c99d4eSJuan Castillo#
1373c99d4eSJuan Castillo#   BUILD_PLAT: output directory
14d178637dSJuan Castillo#   NEED_BL32: indicates whether BL32 is needed by the platform
1573c99d4eSJuan Castillo#   BL2: image filename (optional). Default is IMG_BIN(2) (see macro IMG_BIN)
16f59821d5SJuan Castillo#   SCP_BL2: image filename (optional). Default is IMG_BIN(30)
1773c99d4eSJuan Castillo#   BL31: image filename (optional). Default is IMG_BIN(31)
1873c99d4eSJuan Castillo#   BL32: image filename (optional). Default is IMG_BIN(32)
1973c99d4eSJuan Castillo#   BL33: image filename (optional). Default is IMG_BIN(33)
2073c99d4eSJuan Castillo#
2173c99d4eSJuan Castillo# Build options added by this file:
2273c99d4eSJuan Castillo#
2373c99d4eSJuan Castillo#   KEY_ALG
2473c99d4eSJuan Castillo#   ROT_KEY
2573c99d4eSJuan Castillo#   TRUSTED_WORLD_KEY
2673c99d4eSJuan Castillo#   NON_TRUSTED_WORLD_KEY
27f59821d5SJuan Castillo#   SCP_BL2_KEY
2873c99d4eSJuan Castillo#   BL31_KEY
2973c99d4eSJuan Castillo#   BL32_KEY
3073c99d4eSJuan Castillo#   BL33_KEY
3173c99d4eSJuan Castillo#
3273c99d4eSJuan Castillo
3373c99d4eSJuan Castillo# Certificate generation tool default parameters
3473c99d4eSJuan CastilloTRUSTED_KEY_CERT	:=	${BUILD_PLAT}/trusted_key.crt
350191262dSYatharth KocharFWU_CERT		:=	${BUILD_PLAT}/fwu_cert.crt
3673c99d4eSJuan Castillo
3796103d5aSJuan Castillo# Default non-volatile counter values (overridable by the platform)
3896103d5aSJuan CastilloTFW_NVCTR_VAL		?=	0
3996103d5aSJuan CastilloNTFW_NVCTR_VAL		?=	0
4096103d5aSJuan Castillo
4196103d5aSJuan Castillo# Pass the non-volatile counters to the cert_create tool
4296103d5aSJuan Castillo$(eval $(call CERT_ADD_CMD_OPT,${TFW_NVCTR_VAL},--tfw-nvctr))
4396103d5aSJuan Castillo$(eval $(call CERT_ADD_CMD_OPT,${NTFW_NVCTR_VAL},--ntfw-nvctr))
4496103d5aSJuan Castillo
45819281eeSdp-arm# Add Trusted Key certificate to the fiptool and cert_create command line options
4673c99d4eSJuan Castillo$(eval $(call FIP_ADD_PAYLOAD,${TRUSTED_KEY_CERT},--trusted-key-cert))
4773c99d4eSJuan Castillo$(eval $(call CERT_ADD_CMD_OPT,${TRUSTED_KEY_CERT},--trusted-key-cert))
4873c99d4eSJuan Castillo
49819281eeSdp-arm# Add fwu certificate to the fiptool and cert_create command line options
500191262dSYatharth Kochar$(eval $(call FWU_FIP_ADD_PAYLOAD,${FWU_CERT},--fwu-cert))
510191262dSYatharth Kochar$(eval $(call FWU_CERT_ADD_CMD_OPT,${FWU_CERT},--fwu-cert))
520191262dSYatharth Kochar
5373c99d4eSJuan Castillo# Add the keys to the cert_create command line options (private keys are NOT
5473c99d4eSJuan Castillo# packed in the FIP). Developers can use their own keys by specifying the proper
5573c99d4eSJuan Castillo# build option in the command line when building the Trusted Firmware
5673c99d4eSJuan Castillo$(if ${KEY_ALG},$(eval $(call CERT_ADD_CMD_OPT,${KEY_ALG},--key-alg)))
579a3088a5SQixiang Xu$(if ${HASH_ALG},$(eval $(call CERT_ADD_CMD_OPT,${HASH_ALG},--hash-alg)))
5873c99d4eSJuan Castillo$(if ${ROT_KEY},$(eval $(call CERT_ADD_CMD_OPT,${ROT_KEY},--rot-key)))
590191262dSYatharth Kochar$(if ${ROT_KEY},$(eval $(call FWU_CERT_ADD_CMD_OPT,${ROT_KEY},--rot-key)))
6073c99d4eSJuan Castillo$(if ${TRUSTED_WORLD_KEY},$(eval $(call CERT_ADD_CMD_OPT,${TRUSTED_WORLD_KEY},--trusted-world-key)))
6173c99d4eSJuan Castillo$(if ${NON_TRUSTED_WORLD_KEY},$(eval $(call CERT_ADD_CMD_OPT,${NON_TRUSTED_WORLD_KEY},--non-trusted-world-key)))
6273c99d4eSJuan Castillo
6373c99d4eSJuan Castillo# Add the BL2 CoT (image cert + image)
64516beb58SJuan Castillo$(if ${BL2},$(eval $(call CERT_ADD_CMD_OPT,${BL2},--tb-fw,true)),\
65516beb58SJuan Castillo            $(eval $(call CERT_ADD_CMD_OPT,$(call IMG_BIN,2),--tb-fw,true)))
66516beb58SJuan Castillo$(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/tb_fw.crt,--tb-fw-cert))
67*c9b31ae8SRoberto Vargasifeq (${BL2_AT_EL3}, 0)
68516beb58SJuan Castillo$(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/tb_fw.crt,--tb-fw-cert))
69*c9b31ae8SRoberto Vargasendif
7073c99d4eSJuan Castillo
71f59821d5SJuan Castillo# Add the SCP_BL2 CoT (key cert + img cert + image)
72f59821d5SJuan Castilloifneq (${SCP_BL2},)
73f59821d5SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${SCP_BL2},--scp-fw,true))
74f59821d5SJuan Castillo    $(if ${SCP_BL2_KEY},$(eval $(call CERT_ADD_CMD_OPT,${SCP_BL2_KEY},--scp-fw-key)))
75516beb58SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/scp_fw_content.crt,--scp-fw-cert))
76516beb58SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/scp_fw_key.crt,--scp-fw-key-cert))
77516beb58SJuan Castillo    $(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/scp_fw_content.crt,--scp-fw-cert))
78516beb58SJuan Castillo    $(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/scp_fw_key.crt,--scp-fw-key-cert))
7973c99d4eSJuan Castilloendif
8073c99d4eSJuan Castillo
81a4409008Sdp-armifeq (${ARCH},aarch64)
825744e874SSoby Mathewifeq (${NEED_BL31},yes)
8373c99d4eSJuan Castillo# Add the BL31 CoT (key cert + img cert + image)
84516beb58SJuan Castillo$(if ${BL31},$(eval $(call CERT_ADD_CMD_OPT,${BL31},--soc-fw,true)),\
85516beb58SJuan Castillo             $(eval $(call CERT_ADD_CMD_OPT,$(call IMG_BIN,31),--soc-fw,true)))
86516beb58SJuan Castillo$(if ${BL31_KEY},$(eval $(call CERT_ADD_CMD_OPT,${BL31_KEY},--soc-fw-key)))
87516beb58SJuan Castillo$(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/soc_fw_content.crt,--soc-fw-cert))
88516beb58SJuan Castillo$(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/soc_fw_key.crt,--soc-fw-key-cert))
89516beb58SJuan Castillo$(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/soc_fw_content.crt,--soc-fw-cert))
90516beb58SJuan Castillo$(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/soc_fw_key.crt,--soc-fw-key-cert))
91a4409008Sdp-armendif
925744e874SSoby Mathewendif
9373c99d4eSJuan Castillo
9473c99d4eSJuan Castillo# Add the BL32 CoT (key cert + img cert + image)
9573c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
96516beb58SJuan Castillo    $(if ${BL32},$(eval $(call CERT_ADD_CMD_OPT,${BL32},--tos-fw,true)),\
97516beb58SJuan Castillo                 $(if ${BL32_SOURCES},$(eval $(call CERT_ADD_CMD_OPT,$(call IMG_BIN,32),--tos-fw,true))))
98516beb58SJuan Castillo    $(if ${BL32_KEY},$(eval $(call CERT_ADD_CMD_OPT,${BL32_KEY},--tos-fw-key)))
99516beb58SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/tos_fw_content.crt,--tos-fw-cert))
100516beb58SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/tos_fw_key.crt,--tos-fw-key-cert))
101516beb58SJuan Castillo    $(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/tos_fw_content.crt,--tos-fw-cert))
102516beb58SJuan Castillo    $(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/tos_fw_key.crt,--tos-fw-key-cert))
10371fb3964SSummer Qinifneq (${BL32_EXTRA1},)
10471fb3964SSummer Qin    $(eval $(call CERT_ADD_CMD_OPT,${BL32_EXTRA1},--tos-fw-extra1,true))
10571fb3964SSummer Qinendif
10671fb3964SSummer Qinifneq (${BL32_EXTRA2},)
10771fb3964SSummer Qin    $(eval $(call CERT_ADD_CMD_OPT,${BL32_EXTRA2},--tos-fw-extra2,true))
10871fb3964SSummer Qinendif
10973c99d4eSJuan Castilloendif
11073c99d4eSJuan Castillo
11173c99d4eSJuan Castillo# Add the BL33 CoT (key cert + img cert + image)
11273c99d4eSJuan Castilloifneq (${BL33},)
113516beb58SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${BL33},--nt-fw,true))
114516beb58SJuan Castillo    $(if ${BL33_KEY},$(eval $(call CERT_ADD_CMD_OPT,${BL33_KEY},--nt-fw-key)))
115516beb58SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/nt_fw_content.crt,--nt-fw-cert))
116516beb58SJuan Castillo    $(eval $(call CERT_ADD_CMD_OPT,${BUILD_PLAT}/nt_fw_key.crt,--nt-fw-key-cert))
117516beb58SJuan Castillo    $(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/nt_fw_content.crt,--nt-fw-cert))
118516beb58SJuan Castillo    $(eval $(call FIP_ADD_PAYLOAD,${BUILD_PLAT}/nt_fw_key.crt,--nt-fw-key-cert))
11973c99d4eSJuan Castilloendif
1209003fa0bSYatharth Kochar
1219003fa0bSYatharth Kochar# Add the BL2U image
122516beb58SJuan Castillo$(if ${BL2U},$(eval $(call FWU_CERT_ADD_CMD_OPT,${BL2U},--ap-fwu-cfg,true)),\
123516beb58SJuan Castillo     $(eval $(call FWU_CERT_ADD_CMD_OPT,$(call IMG_BIN,2u),--ap-fwu-cfg,true)))
1240191262dSYatharth Kochar
1250191262dSYatharth Kochar# Add the SCP_BL2U image
1260191262dSYatharth Kocharifneq (${SCP_BL2U},)
127516beb58SJuan Castillo    $(eval $(call FWU_CERT_ADD_CMD_OPT,${SCP_BL2U},--scp-fwu-cfg,true))
1280191262dSYatharth Kocharendif
1290191262dSYatharth Kochar
1300191262dSYatharth Kochar# Add the NS_BL2U image
1310191262dSYatharth Kocharifneq (${NS_BL2U},)
132516beb58SJuan Castillo    $(eval $(call FWU_CERT_ADD_CMD_OPT,${NS_BL2U},--fwu,true))
1339003fa0bSYatharth Kocharendif
134