xref: /rk3399_ARM-atf/Makefile (revision f396aec85ac52e1ee152082e635552b5c63b7583)
14f6ad66aSAchin Gupta#
2c3273703SChris Kay# Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.
34f6ad66aSAchin Gupta#
482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause
54f6ad66aSAchin Gupta#
64f6ad66aSAchin Gupta
7e35c4045SJeenu Viswambharan#
8aaa3e722SJuan Castillo# Trusted Firmware Version
9aaa3e722SJuan Castillo#
101a0f1121SSoby MathewVERSION_MAJOR			:= 2
1197a6de9eSGovindraj RajaVERSION_MINOR			:= 13
12c25d1ccfSYann Gautier# VERSION_PATCH is only used for LTS releases
13c25d1ccfSYann GautierVERSION_PATCH			:= 0
14055ebecaSYann GautierVERSION				:= ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
15aaa3e722SJuan Castillo
1688154678SJuan Castillo# Default goal is build all images
1788154678SJuan Castillo.DEFAULT_GOAL			:= all
1888154678SJuan Castillo
1972fc70edSDouglas Raillard# Avoid any implicit propagation of command line variable definitions to
2072fc70edSDouglas Raillard# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
2172fc70edSDouglas Raillard# usage. Other command line options like "-s" are still propagated as usual.
2272fc70edSDouglas RaillardMAKEOVERRIDES =
2372fc70edSDouglas Raillard
24231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/
25231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
26f4dd18c2SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}build-rules.mk
277c4e1eeaSChris Kayinclude ${MAKE_HELPERS_DIRECTORY}common.mk
2873c99d4eSJuan Castillo
2973c99d4eSJuan Castillo################################################################################
302fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies
3173c99d4eSJuan Castillo################################################################################
32e35c4045SJeenu Viswambharan
332fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
3428973741SBoyan Karatotev# Include the CPU specific operations makefile, which provides default
3528973741SBoyan Karatotev# values for all CPU errata workarounds and CPU specific optimisations.
3628973741SBoyan Karatotev# This can be overridden by the platform.
3728973741SBoyan Karatotevinclude lib/cpus/cpu-ops.mk
3828973741SBoyan Karatotev
39422b181fSYann GautierPLAT				:= ${DEFAULT_PLAT}
401b2fb6adSAndrey Skvortsovinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
411b2fb6adSAndrey Skvortsov
421b2fb6adSAndrey Skvortsov# To be able to set platform specific defaults
431b2fb6adSAndrey Skvortsovifneq ($(PLAT_DEFAULTS_MAKEFILE_FULL),)
441b2fb6adSAndrey Skvortsovinclude ${PLAT_DEFAULTS_MAKEFILE_FULL}
451b2fb6adSAndrey Skvortsovendif
46872be88aSdp-arm
47cc277de8SChris Kay################################################################################
48cc277de8SChris Kay# Configure the toolchains used to build TF-A and its tools
49cc277de8SChris Kay################################################################################
50cc277de8SChris Kay
51cc277de8SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}toolchain.mk
52cc277de8SChris Kay
53cc8b5632SAntonio Nino Diaz# Assertions enabled for DEBUG builds by default
54cc8b5632SAntonio Nino DiazENABLE_ASSERTIONS		:= ${DEBUG}
552fae4b1eSJeenu ViswambharanENABLE_PMF			:= ${ENABLE_RUNTIME_INSTRUMENTATION}
5673c99d4eSJuan Castillo
5773c99d4eSJuan Castillo################################################################################
5873c99d4eSJuan Castillo# Checkpatch script options
5973c99d4eSJuan Castillo################################################################################
6073c99d4eSJuan Castillo
61f607739cSSandrine BailleuxCHECKCODE_ARGS		:=	--no-patch
62f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files
634501843fSGilad Ben-YossefINC_DRV_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
644501843fSGilad Ben-Yossef					include/drivers/arm,		\
654501843fSGilad Ben-Yossef					$(wildcard include/drivers/*)))
66f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
6718818426SChris Kay					lib/libfdt		\
6861f72a34SRoberto Vargas					include/lib/libc,		\
69f0b489c1SDan Handley					$(wildcard include/lib/*)))
70f0b489c1SDan HandleyINC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
714501843fSGilad Ben-Yossef					include/lib			\
724501843fSGilad Ben-Yossef					include/drivers,		\
73f0b489c1SDan Handley					$(wildcard include/*)))
74f0b489c1SDan HandleyLIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
75d801fbb0Sdp-arm					lib/compiler-rt			\
7655cdcf75SAntonio Nino Diaz					lib/libfdt%			\
7761f72a34SRoberto Vargas					lib/libc,			\
78a194255dSDaniel Boulby					lib/zlib			\
79f0b489c1SDan Handley					$(wildcard lib/*)))
80f0b489c1SDan HandleyROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
81f0b489c1SDan Handley					lib				\
82f0b489c1SDan Handley					include				\
83f0b489c1SDan Handley					docs				\
841ef35512SPaul Beesley					%.rst,				\
85f0b489c1SDan Handley					$(wildcard *)))
86f0b489c1SDan HandleyCHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
87f0b489c1SDan Handley				${INC_DIRS_TO_CHECK}			\
88f0b489c1SDan Handley				${INC_LIB_DIRS_TO_CHECK}		\
894501843fSGilad Ben-Yossef				${LIB_DIRS_TO_CHECK}			\
904501843fSGilad Ben-Yossef				${INC_DRV_DIRS_TO_CHECK}		\
914501843fSGilad Ben-Yossef				${INC_ARM_DIRS_TO_CHECK}
9236eaaf37SIan Spray
9373c99d4eSJuan Castillo################################################################################
9473c99d4eSJuan Castillo# Process build options
9573c99d4eSJuan Castillo################################################################################
9673c99d4eSJuan Castillo
977c4e1eeaSChris Kayifeq ($(verbose),)
9836eaaf37SIan Spray	CHECKCODE_ARGS	+=	--no-summary --terse
994f6ad66aSAchin Guptaendif
100ee1ba6d4SAndre Przywara
10173c99d4eSJuan Castillo################################################################################
102c5e1da83SJayanth Dodderi Chidanand# Auxiliary tools (fiptool, cert_create, etc)
103c5e1da83SJayanth Dodderi Chidanand################################################################################
104c5e1da83SJayanth Dodderi Chidanand
105c5e1da83SJayanth Dodderi Chidanand# Variables for use with Certificate Generation Tool
106c5e1da83SJayanth Dodderi ChidanandCRTTOOLPATH		?=	tools/cert_create
107f4595e6eSBoyan KaratotevCRTTOOL			?=	${BUILD_PLAT}/${CRTTOOLPATH}/cert_create$(.exe)
108c5e1da83SJayanth Dodderi Chidanand
109c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Encryption Tool
110c5e1da83SJayanth Dodderi ChidanandENCTOOLPATH		?=	tools/encrypt_fw
11196fbe884SBoyan KaratotevENCTOOL			?=	${BUILD_PLAT}/${ENCTOOLPATH}/encrypt_fw$(.exe)
112c5e1da83SJayanth Dodderi Chidanand
113c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Image Package
114c5e1da83SJayanth Dodderi ChidanandFIPTOOLPATH		?=	tools/fiptool
115cbd6cec3SBoyan KaratotevFIPTOOL			?=	${BUILD_PLAT}/${FIPTOOLPATH}/fiptool$(.exe)
116c5e1da83SJayanth Dodderi Chidanand
117c5e1da83SJayanth Dodderi Chidanand# Variables for use with sptool
118c5e1da83SJayanth Dodderi ChidanandSPTOOLPATH		?=	tools/sptool
119c5e1da83SJayanth Dodderi ChidanandSPTOOL			?=	${SPTOOLPATH}/sptool.py
120c5e1da83SJayanth Dodderi ChidanandSP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
12120629b31SKarl MeakinSP_DTS_LIST_FRAGMENT	?=	${BUILD_PLAT}/sp_list_fragment.dts
122c5e1da83SJayanth Dodderi Chidanand
1230fe374efSJ-Alves# Variables for use with sptool
1240fe374efSJ-AlvesTLCTOOL 		?=	poetry run tlc
1250fe374efSJ-Alves
126c5e1da83SJayanth Dodderi Chidanand# Variables for use with ROMLIB
127c5e1da83SJayanth Dodderi ChidanandROMLIBPATH		?=	lib/romlib
128c5e1da83SJayanth Dodderi Chidanand
129c5e1da83SJayanth Dodderi Chidanand# Variable for use with Python
130c5e1da83SJayanth Dodderi ChidanandPYTHON			?=	python3
131c5e1da83SJayanth Dodderi Chidanand
132c5e1da83SJayanth Dodderi Chidanand# Variables for use with documentation build using Sphinx tool
133c5e1da83SJayanth Dodderi ChidanandDOCS_PATH		?=	docs
134c5e1da83SJayanth Dodderi Chidanand
13532b209bfSAhmad Fatoum# Process Debug flag
13632b209bfSAhmad Fatoumifneq (${DEBUG}, 0)
13732b209bfSAhmad Fatoum	BUILD_TYPE	:=	debug
13832b209bfSAhmad Fatoum	# Use LOG_LEVEL_INFO by default for debug builds
13932b209bfSAhmad Fatoum	LOG_LEVEL	:=	40
14032b209bfSAhmad Fatoumelse
14132b209bfSAhmad Fatoum	BUILD_TYPE	:=	release
14232b209bfSAhmad Fatoum	# Use LOG_LEVEL_NOTICE by default for release builds
14332b209bfSAhmad Fatoum	LOG_LEVEL	:=	20
144c5e1da83SJayanth Dodderi Chidanandendif #(Debug)
14532b209bfSAhmad Fatoum
146f1de4c8fSPeiyuan Song# Default build string (git branch and commit)
147f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},)
148f1de4c8fSPeiyuan Song	BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
149f1de4c8fSPeiyuan Songendif
150dddf4283Slaurenw-armVERSION_STRING    :=  v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
151f1de4c8fSPeiyuan Song
152d75a9ecdSBoyan Karatotev# Setting W is quite verbose and most warnings will be pre-existing issues
153d75a9ecdSBoyan Karatotev# outside of the contributor's control. Don't fail the build on them so warnings
154d75a9ecdSBoyan Karatotev# can be seen and hopefully addressed
155d75a9ecdSBoyan Karatotevifdef W
156d75a9ecdSBoyan Karatotev	ifneq (${W},0)
157d75a9ecdSBoyan Karatotev		E	 ?= 0
158d75a9ecdSBoyan Karatotev	endif
159d75a9ecdSBoyan Karatotevendif
160d75a9ecdSBoyan Karatotev
16173c99d4eSJuan Castillo################################################################################
162f5211420SGovindraj Raja# Setup ARCH_MAJOR/MINOR before parsing arch_features.
163f5211420SGovindraj Raja################################################################################
164f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
1657d5fc98fSAlexeiFedorov	ARM_ARCH_MAJOR := 9
1667d5fc98fSAlexeiFedorov	ARM_ARCH_MINOR := 2
167f5211420SGovindraj Rajaendif
168f5211420SGovindraj Raja
169f5211420SGovindraj Raja################################################################################
17073c99d4eSJuan Castillo# Common sources and include directories
17173c99d4eSJuan Castillo################################################################################
172d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
17373c99d4eSJuan Castillo
174758ccb80SChris Kay# Allow overriding the timestamp, for example for reproducible builds, or to
175758ccb80SChris Kay# synchronize timestamps across multiple projects.
176758ccb80SChris Kay# This must be set to a C string (including quotes where applicable).
177758ccb80SChris KayBUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
178758ccb80SChris Kay
179758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
180758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
181758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
182758ccb80SChris Kay
18373c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
1847f56e9a3SSoby Mathew				common/tf_log.c				\
1859d29c227SSoby Mathew				common/${ARCH}/debug.S			\
18691b48c9fSJulius Werner				drivers/console/multi_console.c		\
1879d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
1889d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
189c73686a1SBoyan Karatotev				lib/extensions/pmuv3/${ARCH}/pmuv3.c	\
190566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
1917f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
19275311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
1939d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
19461f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
195d7a6b0f8SRyan Harkin
1968620bd0bSChris Kayifeq ($($(ARCH)-cc-id),arm-clang)
1978422a840SAntonio Nino Diaz	BL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
1988422a840SAntonio Nino Diazendif
1998422a840SAntonio Nino Diaz
2001f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
2011f461979SJustin Chadwell	BL_COMMON_SOURCES	+=	plat/common/ubsan.c
2021f461979SJustin Chadwellendif
2031f461979SJustin Chadwell
20401d237cbSYann GautierINCLUDES		+=	-Iinclude				\
205f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
20609d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
20709d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
20809d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
20909d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
21009d40e0eSAntonio Nino Diaz
2119c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
2129c6d1c50SAntonio Nino Diaz
21373c99d4eSJuan Castillo################################################################################
2143547270fSGovindraj Raja# Generic definitions
2153547270fSGovindraj Raja################################################################################
2163547270fSGovindraj Raja
2173547270fSGovindraj Rajaifeq (${BUILD_BASE},)
2183547270fSGovindraj Raja     BUILD_BASE		:=	./build
2193547270fSGovindraj Rajaendif
2203547270fSGovindraj RajaBUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
2213547270fSGovindraj Raja
2223547270fSGovindraj RajaSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
2233547270fSGovindraj Raja
2243547270fSGovindraj Raja# Platforms providing their own TBB makefile may override this value
2253547270fSGovindraj RajaINCLUDE_TBBR_MK		:=	1
2263547270fSGovindraj Raja
2273547270fSGovindraj Raja################################################################################
2283547270fSGovindraj Raja# Include SPD Makefile if one has been specified
2293547270fSGovindraj Raja################################################################################
2303547270fSGovindraj Raja
2313547270fSGovindraj Rajaifneq (${SPD},none)
2323547270fSGovindraj Raja	ifeq (${SPD},spmd)
2333547270fSGovindraj Raja	# SPMD is located in std_svc directory
2343547270fSGovindraj Raja		SPD_DIR := std_svc
2353547270fSGovindraj Raja
2363547270fSGovindraj Raja		ifeq ($(SPMD_SPM_AT_SEL2),1)
2373547270fSGovindraj Raja			CTX_INCLUDE_EL2_REGS := 1
2383547270fSGovindraj Raja		endif
2393547270fSGovindraj Raja
2403547270fSGovindraj Raja		ifneq ($(SP_LAYOUT_FILE),)
2413547270fSGovindraj Raja		BL2_ENABLE_SP_LOAD := 1
2423547270fSGovindraj Raja		endif
2433547270fSGovindraj Raja	else
2443547270fSGovindraj Raja		# All other SPDs in spd directory
2453547270fSGovindraj Raja		SPD_DIR := spd
2463547270fSGovindraj Raja	endif #(SPD)
2473547270fSGovindraj Raja
2483547270fSGovindraj Raja	# We expect to locate an spd.mk under the specified SPD directory
2493547270fSGovindraj Raja	SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
2503547270fSGovindraj Raja
2513547270fSGovindraj Raja	ifeq (${SPD_MAKE},)
2523547270fSGovindraj Raja                $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
2533547270fSGovindraj Raja	endif
2543547270fSGovindraj Raja        $(info Including ${SPD_MAKE})
2553547270fSGovindraj Raja        include ${SPD_MAKE}
2563547270fSGovindraj Raja
2573547270fSGovindraj Raja	# If there's BL32 companion for the chosen SPD, we expect that the SPD's
2583547270fSGovindraj Raja	# Makefile would set NEED_BL32 to "yes". In this case, the build system
2593547270fSGovindraj Raja	# supports two mutually exclusive options:
2603547270fSGovindraj Raja	# * BL32 is built from source: then BL32_SOURCES must contain the list
2613547270fSGovindraj Raja	#   of source files to build BL32
2623547270fSGovindraj Raja	# * BL32 is a prebuilt binary: then BL32 must point to the image file
2633547270fSGovindraj Raja	#   that will be included in the FIP
2643547270fSGovindraj Raja	# If both BL32_SOURCES and BL32 are defined, the binary takes precedence
2653547270fSGovindraj Raja	# over the sources.
2663547270fSGovindraj Rajaendif #(SPD=none)
2673547270fSGovindraj Raja
2683547270fSGovindraj Raja################################################################################
269696ed168SOlivier Deprez# Include the platform specific Makefile after the SPD Makefile (the platform
270696ed168SOlivier Deprez# makefile may use all previous definitions in this file)
271696ed168SOlivier Deprez################################################################################
272696ed168SOlivier Deprezinclude ${PLAT_MAKEFILE_FULL}
273696ed168SOlivier Deprez
274696ed168SOlivier Deprez################################################################################
2758d9f5f25SBoyan Karatotev# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
2768d9f5f25SBoyan Karatotev# platform.
2778d9f5f25SBoyan Karatotev################################################################################
2788d9f5f25SBoyan Karatotev
2798d9f5f25SBoyan Karatotevinclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk
2808d9f5f25SBoyan Karatotev################################################################################
281f5211420SGovindraj Raja# Process BRANCH_PROTECTION value and set
282f5211420SGovindraj Raja# Pointer Authentication and Branch Target Identification flags
283f5211420SGovindraj Raja################################################################################
284f5211420SGovindraj Rajaifeq (${BRANCH_PROTECTION},0)
285f5211420SGovindraj Raja	# Default value turns off all types of branch protection
286f5211420SGovindraj Raja	BP_OPTION := none
287f5211420SGovindraj Rajaelse ifneq (${ARCH},aarch64)
288f5211420SGovindraj Raja        $(error BRANCH_PROTECTION requires AArch64)
289f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},1)
290f5211420SGovindraj Raja	# Enables all types of branch protection features
291f5211420SGovindraj Raja	BP_OPTION := standard
292f5211420SGovindraj Raja	ENABLE_BTI := 1
293f5211420SGovindraj Raja	ENABLE_PAUTH := 1
294f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},2)
295f5211420SGovindraj Raja	# Return address signing to its standard level
296f5211420SGovindraj Raja	BP_OPTION := pac-ret
297f5211420SGovindraj Raja	ENABLE_PAUTH := 1
298f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},3)
299f5211420SGovindraj Raja	# Extend the signing to include leaf functions
300f5211420SGovindraj Raja	BP_OPTION := pac-ret+leaf
301f5211420SGovindraj Raja	ENABLE_PAUTH := 1
302f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},4)
303f5211420SGovindraj Raja	# Turn on branch target identification mechanism
304f5211420SGovindraj Raja	BP_OPTION := bti
305f5211420SGovindraj Raja	ENABLE_BTI := 1
3068d9f5f25SBoyan Karatotevelse ifeq (${BRANCH_PROTECTION},5)
3078d9f5f25SBoyan Karatotev	# Turn on branch target identification mechanism
3088d9f5f25SBoyan Karatotev	BP_OPTION := standard
3098d9f5f25SBoyan Karatotev	ENABLE_BTI := 2
3108d9f5f25SBoyan Karatotev	ENABLE_PAUTH := 2
311f5211420SGovindraj Rajaelse
312f5211420SGovindraj Raja        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
313f5211420SGovindraj Rajaendif #(BRANCH_PROTECTION)
314f5211420SGovindraj Raja
3158d9f5f25SBoyan Karatotevifneq ($(ENABLE_PAUTH),0)
3168d9f5f25SBoyan Karatotev	CTX_INCLUDE_PAUTH_REGS	:= ${ENABLE_PAUTH}
317f5211420SGovindraj Rajaendif
318f5211420SGovindraj Raja
319f5211420SGovindraj Raja# Pointer Authentication sources
3208d9f5f25SBoyan Karatotevifneq (${ENABLE_PAUTH},0)
321f5211420SGovindraj Raja# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
322f5211420SGovindraj Raja# Pauth support. As it's not secure, it must be reimplemented for real platforms
3238d9f5f25SBoyan Karatotev	BL_COMMON_SOURCES	+=	lib/extensions/pauth/pauth.c
324f5211420SGovindraj Rajaendif
325f5211420SGovindraj Raja
326f5211420SGovindraj Raja################################################################################
327f5211420SGovindraj Raja# RME dependent flags configuration, Enable optional features for RME.
328f5211420SGovindraj Raja################################################################################
329f5211420SGovindraj Raja# FEAT_RME
330f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
331cbba59c4SSona Mathew	# RMM relies on SMCCC_ARCH_FEATURE_AVAILABILITY to discover EL3 enablement
332cbba59c4SSona Mathew	ARCH_FEATURE_AVAILABILITY := 1
333cbba59c4SSona Mathew
334f5211420SGovindraj Raja	# RME requires el2 context to be saved for now.
335f5211420SGovindraj Raja	CTX_INCLUDE_EL2_REGS := 1
336f5211420SGovindraj Raja	CTX_INCLUDE_AARCH32_REGS := 0
337f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
338f5211420SGovindraj Raja
339d048af0dSJavier Almansa Sobrino	ifneq ($(ENABLE_FEAT_MPAM), 0)
340d048af0dSJavier Almansa Sobrino		CTX_INCLUDE_MPAM_REGS := 1
341d048af0dSJavier Almansa Sobrino	endif
342d048af0dSJavier Almansa Sobrino
343f5211420SGovindraj Raja	# RME enables CSV2_2 extension by default.
344f5211420SGovindraj Raja	ENABLE_FEAT_CSV2_2 = 1
345f5211420SGovindraj Rajaendif #(FEAT_RME)
346f5211420SGovindraj Raja
347f5211420SGovindraj Raja################################################################################
3485b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
3495b18de09SZelalem Aweke################################################################################
3505b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
3515b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
3525b18de09SZelalem Aweke$(warning "RME is an experimental feature")
3535b18de09SZelalem Awekeendif
3545b18de09SZelalem Aweke
3557e84f3cfSTushar Khandelwal################################################################################
35630655136SGovindraj Raja# Make 128-Bit sysreg read/writes availabe when FEAT_D128 is enabled.
35730655136SGovindraj Raja################################################################################
35830655136SGovindraj Rajaifneq (${ENABLE_FEAT_D128}, 0)
35930655136SGovindraj Raja        BL_COMMON_SOURCES       +=      lib/extensions/sysreg128/sysreg128.S
36030655136SGovindraj Rajaendif
36130655136SGovindraj Raja
36242d4d3baSArvind Ram Prakash# This internal flag is common option which is set to 1 for scenarios
36342d4d3baSArvind Ram Prakash# when the BL2 is running in EL3 level. This occurs in two scenarios -
36442d4d3baSArvind Ram Prakash# 4 world system running BL2 at EL3 and two world system without BL1 running
36542d4d3baSArvind Ram Prakash# BL2 in EL3
36642d4d3baSArvind Ram Prakash
36742d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2},1)
36842d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
36942d4d3baSArvind Ram Prakash	ifeq (${ENABLE_RME},1)
370c5e1da83SJayanth Dodderi Chidanand                $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
371c5e1da83SJayanth Dodderi Chidanand                supported at the moment.)
37242d4d3baSArvind Ram Prakash	endif
37342d4d3baSArvind Ram Prakashelse ifeq (${ENABLE_RME},1)
37442d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
37542d4d3baSArvind Ram Prakashelse
37642d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	0
37742d4d3baSArvind Ram Prakashendif
37842d4d3baSArvind Ram Prakash
379f87e54f7SManish Pandey# This internal flag is set to 1 when Firmware First handling of External aborts
380f87e54f7SManish Pandey# is required by lowe ELs. Currently only NS requires this support.
381f87e54f7SManish Pandeyifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
382f87e54f7SManish Pandey	FFH_SUPPORT := 1
383f87e54f7SManish Pandeyelse
384f87e54f7SManish Pandey	FFH_SUPPORT := 0
385f87e54f7SManish Pandeyendif
386f87e54f7SManish Pandey
387c2dc5129SBoyan Karatotevifneq ($(filter 1,${ERRATA_A53_1530924} ${ERRATA_A55_1530923}	\
388c2dc5129SBoyan Karatotev        ${ERRATA_A57_1319537} ${ERRATA_A72_1319367} ${ERRATA_A76_1165522}),)
389c2dc5129SBoyan KaratotevERRATA_SPECULATIVE_AT	:= 1
390c2dc5129SBoyan Karatotevelse
391c2dc5129SBoyan KaratotevERRATA_SPECULATIVE_AT	:= 0
392c2dc5129SBoyan Karatotevendif
393c2dc5129SBoyan Karatotev
394a4409008Sdp-arm################################################################################
395a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
396a4409008Sdp-arm################################################################################
397c5e1da83SJayanth Dodderi Chidanandifeq (${ARCH},aarch32)
398c5e1da83SJayanth Dodderi Chidanand        NEED_BL32 := yes
399c5e1da83SJayanth Dodderi Chidanand
400a4409008Sdp-arm        ifneq (${AARCH32_SP},none)
401a4409008Sdp-arm        # We expect to locate an sp.mk under the specified AARCH32_SP directory
402a4409008Sdp-arm		AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
403a4409008Sdp-arm
404a4409008Sdp-arm                ifeq (${AARCH32_SP_MAKE},)
405a4409008Sdp-arm                        $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
406a4409008Sdp-arm                endif
407a4409008Sdp-arm                $(info Including ${AARCH32_SP_MAKE})
408a4409008Sdp-arm                include ${AARCH32_SP_MAKE}
409a4409008Sdp-arm        endif
410c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
4114f6ad66aSAchin Gupta
41273c99d4eSJuan Castillo################################################################################
41377f1f7a1SVarun Wadekar# Include libc if not overridden
41477f1f7a1SVarun Wadekar################################################################################
41577f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
41677f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
41777f1f7a1SVarun Wadekarendif
41877f1f7a1SVarun Wadekar
4195d893410SBoyan Karatotevifneq (${USE_GIC_DRIVER},0)
4205d893410SBoyan Karatotevinclude drivers/arm/gic/gic.mk
4215d893410SBoyan Karatotevendif
4225d893410SBoyan Karatotev
42377f1f7a1SVarun Wadekar################################################################################
424c5e1da83SJayanth Dodderi Chidanand# Check incompatible options and dependencies
425cf2c8a33SAntonio Nino Diaz################################################################################
426b14987cfSBoyan Karatotevinclude ${MAKE_HELPERS_DIRECTORY}constraints.mk
427c5e1da83SJayanth Dodderi Chidanand
428c5e1da83SJayanth Dodderi Chidanand# The cert_create tool cannot generate certificates individually, so we use the
429c5e1da83SJayanth Dodderi Chidanand# target 'certificates' to create them all
430c5e1da83SJayanth Dodderi Chidanandifneq (${GENERATE_COT},0)
431c5e1da83SJayanth Dodderi Chidanand    FIP_DEPS += certificates
432c5e1da83SJayanth Dodderi Chidanand    FWU_FIP_DEPS += fwu_certificates
433d57362bdSXialin Liu    BL2_FIP_DEPS += bl2_certificates
434c5e1da83SJayanth Dodderi Chidanandendif
435c5e1da83SJayanth Dodderi Chidanand
436c5e1da83SJayanth Dodderi Chidanandifneq (${DECRYPTION_SUPPORT},none)
437c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -f ${FW_ENC_STATUS}
438c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -k ${ENC_KEY}
439c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -n ${ENC_NONCE}
440c5e1da83SJayanth Dodderi Chidanand	FIP_DEPS += enctool
441c5e1da83SJayanth Dodderi Chidanand	FWU_FIP_DEPS += enctool
442d57362bdSXialin Liu	BL2_FIP_DEPS += enctool
443c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
444c5e1da83SJayanth Dodderi Chidanand
445cf2c8a33SAntonio Nino Diaz################################################################################
44673c99d4eSJuan Castillo# Process platform overrideable behaviour
44773c99d4eSJuan Castillo################################################################################
4484f6ad66aSAchin Gupta
4495f24ce96SManish Pandeyifdef BL1_SOURCES
4505f24ce96SManish Pandey	NEED_BL1 := yes
451c5e1da83SJayanth Dodderi Chidanandendif #(BL1_SOURCES)
4525f24ce96SManish Pandey
4535f24ce96SManish Pandeyifdef BL2_SOURCES
4545f24ce96SManish Pandey	NEED_BL2 := yes
4555f24ce96SManish Pandey
456bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
457bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
458cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
459cf2c8a33SAntonio Nino Diaz		# If booting an EL3 payload there is no need for a BL33 image
460cf2c8a33SAntonio Nino Diaz		# in the FIP file.
4614c117f6cSSandrine Bailleux		NEED_BL33		:=	no
462cf2c8a33SAntonio Nino Diaz	else
46368450a6dSAntonio Nino Diaz		ifdef PRELOADED_BL33_BASE
464cf2c8a33SAntonio Nino Diaz			# If booting a BL33 preloaded image there is no need of
465cf2c8a33SAntonio Nino Diaz			# another one in the FIP file.
466cf2c8a33SAntonio Nino Diaz			NEED_BL33		:=	no
467cf2c8a33SAntonio Nino Diaz		else
468cf2c8a33SAntonio Nino Diaz			NEED_BL33		?=	yes
469cf2c8a33SAntonio Nino Diaz		endif
4704c117f6cSSandrine Bailleux	endif
471c5e1da83SJayanth Dodderi Chidanandendif #(BL2_SOURCES)
4726f971622SJuan Castillo
4735f24ce96SManish Pandeyifdef BL2U_SOURCES
4745f24ce96SManish Pandey	NEED_BL2U := yes
475c5e1da83SJayanth Dodderi Chidanandendif #(BL2U_SOURCES)
4765f24ce96SManish Pandey
4774d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
4784d045d0eSMasahiro Yamadaifdef SCP_BL2
4794d045d0eSMasahiro Yamada	NEED_SCP_BL2		:=	yes
480c5e1da83SJayanth Dodderi Chidanandendif #(SCP_BL2)
4814d045d0eSMasahiro Yamada
4825744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
4835744e874SSoby Mathewifneq (${ARCH},aarch32)
4845744e874SSoby Mathew	ifdef BL31_SOURCES
485c5e1da83SJayanth Dodderi Chidanand	# When booting an EL3 payload, there is no need to compile the BL31
486c5e1da83SJayanth Dodderi Chidanand	# image nor put it in the FIP.
4875744e874SSoby Mathew		ifndef EL3_PAYLOAD_BASE
4885744e874SSoby Mathew			NEED_BL31 := yes
4895744e874SSoby Mathew		endif
4905744e874SSoby Mathew	endif
491c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch64)
4925744e874SSoby Mathew
49373c99d4eSJuan Castillo# Process TBB related flags
4946f971622SJuan Castilloifneq (${GENERATE_COT},0)
49573c99d4eSJuan Castillo    # Common cert_create options
4966f971622SJuan Castillo    ifneq (${CREATE_KEYS},0)
4976f971622SJuan Castillo        $(eval CRT_ARGS += -n)
4980191262dSYatharth Kochar        $(eval FWU_CRT_ARGS += -n)
499d57362bdSXialin Liu        $(eval BL2_CRT_ARGS += -n)
500fd34e7baSJuan Castillo        ifneq (${SAVE_KEYS},0)
501fd34e7baSJuan Castillo            $(eval CRT_ARGS += -k)
5020191262dSYatharth Kochar            $(eval FWU_CRT_ARGS += -k)
503d57362bdSXialin Liu            $(eval BL2_CRT_ARGS += -k)
504fd34e7baSJuan Castillo        endif
5056f971622SJuan Castillo    endif
50673c99d4eSJuan Castillo    # Include TBBR makefile (unless the platform indicates otherwise)
50773c99d4eSJuan Castillo    ifeq (${INCLUDE_TBBR_MK},1)
50873c99d4eSJuan Castillo        include make_helpers/tbbr/tbbr_tools.mk
50973c99d4eSJuan Castillo    endif
510c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
5116f971622SJuan Castillo
5121c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
5131c75d5dfSMasahiro Yamada	FIP_ARGS += --align ${FIP_ALIGN}
514c5e1da83SJayanth Dodderi Chidanandendif #(FIP_ALIGN)
5151c75d5dfSMasahiro Yamada
5165f24ce96SManish Pandeyifdef FDT_SOURCES
5175f24ce96SManish Pandey	NEED_FDT := yes
518c5e1da83SJayanth Dodderi Chidanandendif #(FDT_SOURCES)
5195f24ce96SManish Pandey
52073c99d4eSJuan Castillo################################################################################
52146e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
52246e5e035SMichalis Pappas################################################################################
52346e5e035SMichalis Pappas
52446e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
52546e5e035SMichalis Pappas
52646e5e035SMichalis Pappas################################################################################
5278a86052dSSoby Mathew# Include BL specific makefiles
5288a86052dSSoby Mathew################################################################################
5295f24ce96SManish Pandey
5305f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
5318a86052dSSoby Mathewinclude bl1/bl1.mk
5328a86052dSSoby Mathewendif
5338a86052dSSoby Mathew
5345f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
5358a86052dSSoby Mathewinclude bl2/bl2.mk
5368a86052dSSoby Mathewendif
5378a86052dSSoby Mathew
5385f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
5398a86052dSSoby Mathewinclude bl2u/bl2u.mk
5408a86052dSSoby Mathewendif
5418a86052dSSoby Mathew
5425744e874SSoby Mathewifeq (${NEED_BL31},yes)
5438a86052dSSoby Mathewinclude bl31/bl31.mk
5448a86052dSSoby Mathewendif
54503b397a8SNishanth Menon
54673c99d4eSJuan Castillo################################################################################
54773c99d4eSJuan Castillo# Build options checks
54873c99d4eSJuan Castillo################################################################################
54973c99d4eSJuan Castillo
550c5e1da83SJayanth Dodderi Chidanand# Boolean_Flags
551327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
552327131c4SLeonardo Sandoval    $(sort \
553327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
55446789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
555327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
55628973741SBoyan Karatotev	$(CPU_FLAG_LIST) \
557327131c4SLeonardo Sandoval	CREATE_KEYS \
558327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
559327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
56042422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
561327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
5629acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
563327131c4SLeonardo Sandoval	DEBUG \
564327131c4SLeonardo Sandoval	DYN_DISABLE_AUTH \
565327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
5661fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
567873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
568327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
569327131c4SLeonardo Sandoval	ENABLE_PIE \
570327131c4SLeonardo Sandoval	ENABLE_PMF \
571327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
572327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
573dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
5740c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
5758cef63d6SBoyan Karatotev	ENABLE_FEAT_GCIE \
576970a4a8dSManish Pandey	ENABLE_FEAT_RAS	\
577f87e54f7SManish Pandey	FFH_SUPPORT	\
578327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
579327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
580327131c4SLeonardo Sandoval	GENERATE_COT \
581327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
58246cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
583538516f5SBipin Ravi	HARDEN_SLS \
584327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
585327131c4SLeonardo Sandoval	MEASURED_BOOT \
58636e3d877SAbhi.Singh	DISCRETE_TPM \
587e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
5886a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
5892132c707SSona Mathew	RMMD_ENABLE_IDE_KEY_PROG \
59000e28874SManish V Badarkhe	DRTM_SUPPORT \
591327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
592327131c4SLeonardo Sandoval	OVERRIDE_LIBC \
593327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
5945be66449SBoyan Karatotev	PLAT_EXTRA_LD_SCRIPT \
595327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
596327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
59764b4710bSWing Li	PSCI_OS_INIT_MODE \
5988db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
599327131c4SLeonardo Sandoval	RESET_TO_BL31 \
600327131c4SLeonardo Sandoval	SAVE_KEYS \
601327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
60296a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
603327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
60486acbbe2SYe Li	SEPARATE_RWDATA_REGION \
605308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
606327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
607327131c4SLeonardo Sandoval	SPM_MM \
6081d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
609801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
610327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
611890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
6123ba2c151SRaymond Mao	TRANSFER_LIST \
613327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
614327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
615327131c4SLeonardo Sandoval	USE_DEBUGFS \
616291e493dSHarrison Mutai	USE_KERNEL_DT_CONVENTION \
617327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
618327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
619327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
620327131c4SLeonardo Sandoval	USE_ROMLIB \
621327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
622327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
62342d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
624327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
625327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
626327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
627327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
628327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
629327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
63045c7328cSBoyan Karatotev	ERRATA_SME_POWER_DOWN \
63100e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
632327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
633327131c4SLeonardo Sandoval	USE_SP804_TIMER \
634396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
63511d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
63668120783SChris Kay	ENABLE_MPMM \
6376a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
6380b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
639593ae354SBoyan Karatotev	ENABLE_ERRATA_ALL \
640ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
641ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
64204c7303bSOkash Khawaja	CONDITIONAL_CMO \
6435782b890SManish V Badarkhe	PSA_CRYPTO	\
64485bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
645183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
646bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
647ae770fedSYann Gautier	EARLY_CONSOLE \
648f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
6498953568aSLevi Yun	HOB_LIST \
650cf48f49fSManish V Badarkhe	LFA_SUPPORT \
651327131c4SLeonardo Sandoval)))
65273c99d4eSJuan Castillo
653c5e1da83SJayanth Dodderi Chidanand# Numeric_Flags
654327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
655327131c4SLeonardo Sandoval    $(sort \
656327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
657327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
658327131c4SLeonardo Sandoval	BRANCH_PROTECTION \
6596a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_PAUTH_REGS \
6606a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_NEVE_REGS \
66183a4dae1SBoyan Karatotev	DISABLE_MTPMU \
6621298f2f1SJayanth Dodderi Chidanand	ENABLE_BRBE_FOR_NS \
66347c681b7SJayanth Dodderi Chidanand	ENABLE_TRBE_FOR_NS \
6646a0da736SJayanth Dodderi Chidanand	ENABLE_BTI \
6656a0da736SJayanth Dodderi Chidanand	ENABLE_PAUTH \
666025b1b81SJohn Powell	ENABLE_FEAT_PAUTH_LR \
667cc2523bbSAndre Przywara	ENABLE_FEAT_AIE \
668d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
6696a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
670d6affea1SGovindraj Raja	ENABLE_FEAT_CLRBHB \
671a1032bebSJohn Powell	ENABLE_FEAT_CPA2 \
6726a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
67330019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
67483271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
6756a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_DIT \
6766a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
677714a1a93SManish Pandey	ENABLE_FEAT_EBEP \
6786a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
67933e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
6804274b526SArvind Ram Prakash	ENABLE_FEAT_FGWTE3 \
681a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
6826a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_HCX \
683*f396aec8SArvind Ram Prakash	ENABLE_FEAT_IDTE3 \
68419d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
6857e84f3cfSTushar Khandelwal	ENABLE_FEAT_MEC \
6866b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
6878e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
6886a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
689b3bcfd12SAndre Przywara	ENABLE_FEAT_PFAR \
6906a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_RNG \
691ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
6926a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
693d3331603SMark Brown	ENABLE_FEAT_TCR2 \
6946d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
6950e4daed2SGovindraj Raja	ENABLE_FEAT_SB \
696062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
697062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
698062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
699062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
7004ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
70130655136SGovindraj Raja	ENABLE_FEAT_D128 \
7025e827bf0STimothy Hayes	ENABLE_FEAT_RME_GDI \
703688ab57bSMark Brown	ENABLE_FEAT_GCS \
7046a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
705edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
706c42aefd3SArvind Ram Prakash	ENABLE_FEAT_MPAM_PE_BW_CTRL \
7076a0da736SJayanth Dodderi Chidanand	ENABLE_RME \
7086437a09aSAndre Przywara	ENABLE_SPE_FOR_NS \
709603a0c6fSAndre Przywara	ENABLE_SYS_REG_TRACE_FOR_NS \
71045007acdSJayanth Dodderi Chidanand	ENABLE_SME_FOR_NS \
71103d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
7122b0bc4e0SJayanth Dodderi Chidanand	ENABLE_SVE_FOR_NS \
7136a0da736SJayanth Dodderi Chidanand	ENABLE_TRF_FOR_NS \
714327131c4SLeonardo Sandoval	FW_ENC_STATUS \
7155357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
7165357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
7170322d7afSJay Monkman	SPMC_AT_EL3_PARTITION_MAX_UUIDS \
718781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
719781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
720bebcf27fSMark Brown	SVE_VECTOR_LEN \
7210ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
722ee580c2dSBoyan Karatotev	W \
723327131c4SLeonardo Sandoval)))
724c877b414SJeenu Viswambharan
725aacff749SJustin Chadwellifdef KEY_SIZE
726aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
727aacff749SJustin Chadwellendif
728aacff749SJustin Chadwell
7291f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
7301f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
7311f461979SJustin Chadwellendif
7321f461979SJustin Chadwell
73373c99d4eSJuan Castillo################################################################################
73473c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
73573c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
73673c99d4eSJuan Castillo# platform to overwrite the default options
73773c99d4eSJuan Castillo################################################################################
73873c99d4eSJuan Castillo
739327131c4SLeonardo Sandoval$(eval $(call add_defines,\
740327131c4SLeonardo Sandoval    $(sort \
741327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
742327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
743327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
74446789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
745327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
74628973741SBoyan Karatotev	$(CPU_FLAG_LIST) \
747327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
748327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
74942422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
750327131c4SLeonardo Sandoval	CTX_INCLUDE_PAUTH_REGS \
7519acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
752327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
753327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
754062f8aafSArunachalam Ganapathy	CTX_INCLUDE_NEVE_REGS \
755ee580c2dSBoyan Karatotev	DEBUG \
756327131c4SLeonardo Sandoval	DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
7570063dd17SJavier Almansa Sobrino	DISABLE_MTPMU \
758d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
7591fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
760873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
761327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
762327131c4SLeonardo Sandoval	ENABLE_BTI \
76383271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
764*f396aec8SArvind Ram Prakash	ENABLE_FEAT_IDTE3 \
765edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
766c42aefd3SArvind Ram Prakash	ENABLE_FEAT_MPAM_PE_BW_CTRL \
767327131c4SLeonardo Sandoval	ENABLE_PAUTH \
768025b1b81SJohn Powell	ENABLE_FEAT_PAUTH_LR \
769327131c4SLeonardo Sandoval	ENABLE_PIE \
770327131c4SLeonardo Sandoval	ENABLE_PMF \
771327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
7725b18de09SZelalem Aweke	ENABLE_RME \
7736a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
7742132c707SSona Mathew	RMMD_ENABLE_IDE_KEY_PROG \
775327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
776dc78e62dSjohpow01	ENABLE_SME_FOR_NS \
77703d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
778dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
77990118bb5SAndre Przywara	ENABLE_SPE_FOR_NS \
780327131c4SLeonardo Sandoval	ENABLE_SVE_FOR_NS \
7810c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
782970a4a8dSManish Pandey	ENABLE_FEAT_RAS \
783f87e54f7SManish Pandey	FFH_SUPPORT \
784327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
785327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
786327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
787327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
788327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
78946cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
790327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
791327131c4SLeonardo Sandoval	LOG_LEVEL \
792327131c4SLeonardo Sandoval	MEASURED_BOOT \
79336e3d877SAbhi.Singh	DISCRETE_TPM \
794e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
79500e28874SManish V Badarkhe	DRTM_SUPPORT \
796327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
7977256cf0aSRohit Mathew	PLATFORM_NODE_COUNT \
798327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
7995be66449SBoyan Karatotev	PLAT_EXTRA_LD_SCRIPT \
800327131c4SLeonardo Sandoval	PLAT_${PLAT} \
801327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
802327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
80364b4710bSWing Li	PSCI_OS_INIT_MODE \
8048db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
805327131c4SLeonardo Sandoval	RESET_TO_BL31 \
806d766084fSAlexeiFedorov	RME_GPT_BITLOCK_BLOCK \
807ec0088bbSAlexeiFedorov	RME_GPT_MAX_BLOCK \
808327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
8095ce4ee1aSXialin Liu	SEPARATE_BL2_FIP \
81096a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
811327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
81286acbbe2SYe Li	SEPARATE_RWDATA_REGION \
813308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
814327131c4SLeonardo Sandoval	RECLAIM_INIT_CODE \
815327131c4SLeonardo Sandoval	SPD_${SPD} \
816327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
817327131c4SLeonardo Sandoval	SPM_MM \
8181d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
8190322d7afSJay Monkman	SPMC_AT_EL3_PARTITION_MAX_UUIDS \
820801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
821327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
8223ba2c151SRaymond Mao	TRANSFER_LIST \
823327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
8247dfb9911SJimmy Brisson	TRNG_SUPPORT \
825ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
826ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
827327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
828327131c4SLeonardo Sandoval	USE_DEBUGFS \
829327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
830327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
831327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
832327131c4SLeonardo Sandoval	USE_ROMLIB \
833327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
834291e493dSHarrison Mutai	USE_KERNEL_DT_CONVENTION \
835327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
83642d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
83742d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	\
838327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
839327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
840327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
841327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
84245c7328cSBoyan Karatotev	ERRATA_SME_POWER_DOWN \
84300e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
844327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
845327131c4SLeonardo Sandoval	USE_SP804_TIMER \
84612cd65e0STomas Pilar	ENABLE_FEAT_RNG \
847ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
8484e04478aSChris Kay	ENABLE_FEAT_SB \
8497d33ffe4SDaniel Boulby	ENABLE_FEAT_DIT \
8505357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
8515357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
852396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
85311d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
854744ad974Sjohpow01	ENABLE_BRBE_FOR_NS \
855813524eaSManish V Badarkhe	ENABLE_TRBE_FOR_NS \
856d4582d30SManish V Badarkhe	ENABLE_SYS_REG_TRACE_FOR_NS \
8578fcd3d96SManish V Badarkhe	ENABLE_TRF_FOR_NS \
858cc2523bbSAndre Przywara	ENABLE_FEAT_AIE \
859cb4ec47bSjohpow01	ENABLE_FEAT_HCX \
86068120783SChris Kay	ENABLE_MPMM \
861f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
86233e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
8634274b526SArvind Ram Prakash	ENABLE_FEAT_FGWTE3 \
864a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
865f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
866714a1a93SManish Pandey	ENABLE_FEAT_EBEP \
8676a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
8686a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
8696a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
870d6affea1SGovindraj Raja	ENABLE_FEAT_CLRBHB \
871a1032bebSJohn Powell	ENABLE_FEAT_CPA2 \
8726a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
87330019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
87419d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
8757e84f3cfSTushar Khandelwal	ENABLE_FEAT_MEC \
8766a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
877d3331603SMark Brown	ENABLE_FEAT_TCR2 \
8786d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
879062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
880062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
881062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
882062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
8834ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
88430655136SGovindraj Raja	ENABLE_FEAT_D128 \
8855e827bf0STimothy Hayes	ENABLE_FEAT_RME_GDI \
886688ab57bSMark Brown	ENABLE_FEAT_GCS \
8876b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
8888cef63d6SBoyan Karatotev	ENABLE_FEAT_GCIE \
8898e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
890b3bcfd12SAndre Przywara	ENABLE_FEAT_PFAR \
8916a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
892781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
893781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
89404c7303bSOkash Khawaja	CONDITIONAL_CMO \
8950ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
896a8cf6faeSJayanth Dodderi Chidanand	SVE_VECTOR_LEN \
897890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
8985782b890SManish V Badarkhe	PSA_CRYPTO	\
89985bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
900183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
901bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
902ae770fedSYann Gautier	EARLY_CONSOLE \
903f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
9048953568aSLevi Yun	HOB_LIST \
9052f5fd826SHarrison Mutai	HW_CONFIG_BASE \
906cf48f49fSManish V Badarkhe	LFA_SUPPORT \
907327131c4SLeonardo Sandoval)))
9082fae4b1eSJeenu Viswambharan
909bfef8b90SJuan Pablo Condeifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
910bfef8b90SJuan Pablo Condeifeq (${DEBUG}, 0)
911bfef8b90SJuan Pablo Conde        $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
912bfef8b90SJuan Pablo Conde        override PLATFORM_REPORT_CTX_MEM_USE := 0
913bfef8b90SJuan Pablo Condeendif
914bfef8b90SJuan Pablo Condeendif
915bfef8b90SJuan Pablo Conde
9161f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
9171f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
918c5e1da83SJayanth Dodderi Chidanandendif #(SANITIZE_UB)
9191f461979SJustin Chadwell
9204c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
9214c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
9224c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
923cf2c8a33SAntonio Nino Diazelse
92468450a6dSAntonio Nino Diaz# Define the PRELOADED_BL33_BASE flag only if it is provided and
92568450a6dSAntonio Nino Diaz# EL3_PAYLOAD_BASE is not defined, as it has priority.
92668450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
92768450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
9284c117f6cSSandrine Bailleux	endif
929c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
93073c99d4eSJuan Castillo
931209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
932209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
933209a60ccSSoby Mathew        $(eval $(call add_define,DYN_DISABLE_AUTH))
934209a60ccSSoby Mathewendif
935209a60ccSSoby Mathew
9368620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
937c2ad38ceSVarun Wadekar        $(eval $(call add_define,USE_ARM_LINK))
938c2ad38ceSVarun Wadekarendif
939c2ad38ceSVarun Wadekar
940ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
941ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
942c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
943ce2b1ec6SManish Pandey	-include $(BUILD_PLAT)/sp_gen.mk
944ce2b1ec6SManish Pandey	FIP_DEPS += sp
94507c44475SManish Pandey	CRT_DEPS += sp
946ce2b1ec6SManish Pandey	NEED_SP_PKG := yes
947ce2b1ec6SManish Pandeyelse
948c33ff198SOlivier Deprez	ifeq (${SPMD_SPM_AT_SEL2},1)
949c33ff198SOlivier Deprez                $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
950c33ff198SOlivier Deprez	endif
951c5e1da83SJayanth Dodderi Chidanandendif #(SP_LAYOUT_FILE)
952c5e1da83SJayanth Dodderi Chidanandendif #(SPD)
953ce2b1ec6SManish Pandey
95473c99d4eSJuan Castillo################################################################################
9553df79ae7SBoyan Karatotev# Configure the flags for the specified compiler and linker
9563df79ae7SBoyan Karatotev################################################################################
9573df79ae7SBoyan Karatotevinclude ${MAKE_HELPERS_DIRECTORY}cflags.mk
9583df79ae7SBoyan Karatotev
9593df79ae7SBoyan Karatotev################################################################################
96073c99d4eSJuan Castillo# Build targets
96173c99d4eSJuan Castillo################################################################################
96273c99d4eSJuan Castillo
9632329e22bSHarrison Mutai.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp tl fwu_fip certtool dtbs memmap doc enctool
96473c99d4eSJuan Castillo
96573c99d4eSJuan Castilloall: msg_start
96673c99d4eSJuan Castillo
96773c99d4eSJuan Castillomsg_start:
9687c4e1eeaSChris Kay	$(s)echo "Building ${PLAT}"
96973c99d4eSJuan Castillo
97061f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
9715fee0287SRoberto Vargas
97273c99d4eSJuan Castillo# Expand build macros for the different images
97373c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
974b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
975434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
976c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL1)
97773c99d4eSJuan Castillo
97873c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
979c5e1da83SJayanth Dodderi Chidanand
98042d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2}, 0)
981c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
982c9b31ae8SRoberto Vargasendif
983c9b31ae8SRoberto Vargas
984eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
985eb1acfb6SChris Kay
986d57362bdSXialin Liuifeq (${SEPARATE_BL2_FIP},1)
987d57362bdSXialin Liu$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS},BL2_)), \
988d57362bdSXialin Liu	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS},BL2_)))
989d57362bdSXialin Liuelse
99033950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})), \
991434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
992d57362bdSXialin Liuendif #(SEPARATE_BL2_FIP)
993c5e1da83SJayanth Dodderi Chidanand
994c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2)
99573c99d4eSJuan Castillo
9964d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
99733950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
998c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SCP_BL2)
9994d045d0eSMasahiro Yamada
100073c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
100173c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
100226d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
100326d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1004c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1005c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1006434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1007c6ba9b45SSumit Gargelse
100833950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1009434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
1010c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1011c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL31)
101273c99d4eSJuan Castillo
101370d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1014c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
101570d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
101673c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
101726d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
101826d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
10199cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
10209cd15239SMasahiro Yamada
1021c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1022434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1023c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1024c6ba9b45SSumit Gargelse
1025434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
102633950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
1027c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1028c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL32)
102973c99d4eSJuan Castillo
10305b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
10315b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
10325b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
10335b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
10345b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
10355b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
10365b18de09SZelalem Aweke
10375b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
10385b18de09SZelalem Aweke	 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1039c5e1da83SJayanth Dodderi Chidanandendif #(NEED_RMM)
10405b18de09SZelalem Aweke
104173c99d4eSJuan Castillo# Add the BL33 image if required by the platform
104273c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
104333950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1044c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
1045db6071c9SJuan Castillo
10469003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
104733950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1048434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
1049c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2U)
10509003fa0bSYatharth Kochar
105103b397a8SNishanth Menon# Expand build macros for the different images
105203b397a8SNishanth Menonifeq (${NEED_FDT},yes)
105303b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
10541c08ff32SSalman Nabi
10551c08ff32SSalman Nabi    ifneq (${INITRD_SIZE}${INITRD_PATH},)
10561c08ff32SSalman Nabi        ifndef INITRD_BASE
10571c08ff32SSalman Nabi            $(error INITRD_BASE must be set when inserting initrd properties to the DTB.)
10581c08ff32SSalman Nabi        endif
10591c08ff32SSalman Nabi
10601c08ff32SSalman Nabi        INITRD_SIZE ?= $(shell printf "0x%x\n" $$(stat -Lc %s $(INITRD_PATH)))
10611c08ff32SSalman Nabi        initrd_end = $(shell printf "0x%x\n" $$(expr $$(($(INITRD_BASE) + $(INITRD_SIZE)))))
10621c08ff32SSalman Nabi
10631c08ff32SSalman Nabi        define $(HW_CONFIG)-after +=
10641c08ff32SSalman Nabi            $(s)echo "  INITRD  $(HW_CONFIG)"
10651c08ff32SSalman Nabi            $(q)fdtput -t x $@ /chosen linux,initrd-start $(INITRD_BASE)
10661c08ff32SSalman Nabi            $(q)fdtput -t x $@ /chosen linux,initrd-end $(initrd_end)
10671c08ff32SSalman Nabi        endef
10681c08ff32SSalman Nabi    endif
1069c5e1da83SJayanth Dodderi Chidanandendif #(NEED_FDT)
107003b397a8SNishanth Menon
1071ce2b1ec6SManish Pandey# Add Secure Partition packages
1072ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1073fd74ca0dSChris Kay$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
1074679e27ceSChris Kay	$(if $(host-poetry),$(q)poetry -q install --no-root)
1075dd816235SKathleen Capella	$(q)$(if $(host-poetry),poetry run )${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
1076822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
10777c4e1eeaSChris Kay	$(s)echo
10787c4e1eeaSChris Kay	$(s)echo "Built SP Images successfully"
10797c4e1eeaSChris Kay	$(s)echo
1080c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SP_PKG)
1081ce2b1ec6SManish Pandey
108236eaaf37SIan Spraylocate-checkpatch:
108336eaaf37SIan Sprayifndef CHECKPATCH
108466079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
108536eaaf37SIan Sprayelse
108636eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
108766079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
108836eaaf37SIan Sprayendif
1089c5e1da83SJayanth Dodderi Chidanandendif #(CHECKPATCH)
109036eaaf37SIan Spray
10914f6ad66aSAchin Guptaclean:
10927c4e1eeaSChris Kay	$(s)echo "  CLEAN"
1093c3273703SChris Kay	$(q)rm -rf $(BUILD_PLAT)
1094cbd6cec3SBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${FIPTOOLPATH} clean
1095cbd6cec3SBoyan Karatotev	$(q)rm -rf ${FIPTOOLPATH}/fiptool
1096f4595e6eSBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
1097f4595e6eSBoyan Karatotev	$(q)rm -rf ${CRTTOOLPATH}/cert_create
109896fbe884SBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
10997c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
11004f6ad66aSAchin Gupta
1101eaaeece2SJames Morrisseyrealclean distclean:
11027c4e1eeaSChris Kay	$(s)echo "  REALCLEAN"
1103c3273703SChris Kay	$(q)rm -rf $(BUILD_BASE)
1104c3273703SChris Kay	$(q)rm -rf $(CURDIR)/cscope.*
1105cbd6cec3SBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${FIPTOOLPATH} clean
1106cbd6cec3SBoyan Karatotev	$(q)rm -rf ${FIPTOOLPATH}/fiptool
1107f4595e6eSBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
1108f4595e6eSBoyan Karatotev	$(q)rm -rf ${CRTTOOLPATH}/cert_create
110996fbe884SBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
11107c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
11114f6ad66aSAchin Gupta
111236eaaf37SIan Spraycheckcodebase:		locate-checkpatch
11137c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
11147c4e1eeaSChris Kay	$(q)if test -d .git ; then						\
11151ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
11161a41e8c1SDan Handley		while read GIT_FILE ;					\
11171a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
11181a41e8c1SDan Handley		done ;							\
111936eaaf37SIan Spray	else								\
11201a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
11211a41e8c1SDan Handley		 -not -iwholename "*build*"				\
11221a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
112361f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
11241a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
11251ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
11261a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
112736eaaf37SIan Spray	fi
112836eaaf37SIan Spray
112936eaaf37SIan Spraycheckpatch:		locate-checkpatch
11307c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
11317c4e1eeaSChris Kay	$(q)if test -n "${CHECKPATCH_OPTS}"; then				\
113202a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
113302a76d5fSYann Gautier	fi
11347c4e1eeaSChris Kay	$(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
113577a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
113677a0a7f1SYann Gautier	do								\
113751d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
11381a721748SYann Gautier		( git log --format=email "$$commit~..$$commit"		\
11391a721748SYann Gautier			-- ${CHECK_PATHS} ;				\
114051d28937SAntonio Nino Diaz		  git diff --format=email "$$commit~..$$commit"		\
11411a721748SYann Gautier			-- ${CHECK_PATHS}; ) |				\
114202a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
114351d28937SAntonio Nino Diaz	done
114436eaaf37SIan Spray
114573c99d4eSJuan Castillocerttool: ${CRTTOOL}
114673c99d4eSJuan Castillo
1147774fb379SBoyan Karatotev${CRTTOOL}: FORCE | $$(@D)/
1148f4595e6eSBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=$(abspath ${BUILD_PLAT}) USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${CRTTOOLPATH} all
1149f4595e6eSBoyan Karatotev	$(q)ln -sf ${CRTTOOL} ${CRTTOOLPATH}/cert_create
11507c4e1eeaSChris Kay	$(s)echo
11517c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
11527c4e1eeaSChris Kay	$(s)echo
11536f971622SJuan Castillo
11546f971622SJuan Castilloifneq (${GENERATE_COT},0)
1155f02135a3SFabien Lehousselcertificates: ${CRT_DEPS} ${CRTTOOL} ${DTBS}
11567c4e1eeaSChris Kay	$(q)${CRTTOOL} ${CRT_ARGS}
11577c4e1eeaSChris Kay	$(s)echo
11587c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
11597c4e1eeaSChris Kay	$(s)echo "Certificates can be found in ${BUILD_PLAT}"
11607c4e1eeaSChris Kay	$(s)echo
1161c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
116227713fb4SSoby Mathew
1163d57362bdSXialin Liuifeq (${SEPARATE_BL2_FIP},1)
1164774fb379SBoyan Karatotev${BUILD_PLAT}/${BL2_FIP_NAME}: ${BL2_FIP_DEPS} ${FIPTOOL} | $$(@D)/
1165d57362bdSXialin Liu	$(eval ${CHECK_BL2_FIP_CMD})
1166d57362bdSXialin Liu	$(q)${FIPTOOL} create ${BL2_FIP_ARGS} $@
1167d57362bdSXialin Liu	$(q)${FIPTOOL} info $@
1168d57362bdSXialin Liu	$(s)echo
1169d57362bdSXialin Liu	$(s)echo "Built $@ successfully"
1170d57362bdSXialin Liu	$(s)echo
1171d57362bdSXialin Liuendif #(SEPARATE_BL2_FIP)
1172d57362bdSXialin Liu
1173774fb379SBoyan Karatotev${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} | $$(@D)/
11744727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
11757c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FIP_ARGS} $@
11767c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
11777c4e1eeaSChris Kay	$(s)echo
11787c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
11797c4e1eeaSChris Kay	$(s)echo
1180f58ad36fSHarry Liebel
11810191262dSYatharth Kocharifneq (${GENERATE_COT},0)
11820191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
11837c4e1eeaSChris Kay	$(q)${CRTTOOL} ${FWU_CRT_ARGS}
11847c4e1eeaSChris Kay	$(s)echo
11857c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
11867c4e1eeaSChris Kay	$(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
11877c4e1eeaSChris Kay	$(s)echo
1188c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
11890191262dSYatharth Kochar
1190d57362bdSXialin Liuifneq (${GENERATE_COT},0)
1191774fb379SBoyan Karatotevbl2_certificates: ${BUILD_PLAT}/${FIP_NAME} ${BL2_CRT_DEPS} ${CRTTOOL} | ${BUILD_PLAT}/
1192d57362bdSXialin Liu	$(q)${CRTTOOL} ${BL2_CRT_ARGS}
1193d57362bdSXialin Liu	$(s)echo
1194d57362bdSXialin Liu	$(s)echo "Built $@ successfully"
1195d57362bdSXialin Liu	$(s)echo "BL2 certificates can be found in ${BUILD_PLAT}"
1196d57362bdSXialin Liu	$(s)echo
1197d57362bdSXialin Liuendif #(GENERATE_COT)
1198d57362bdSXialin Liu
1199774fb379SBoyan Karatotev${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} | $$(@D)/
12004727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
12017c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
12027c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
12037c4e1eeaSChris Kay	$(s)echo
12047c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
12057c4e1eeaSChris Kay	$(s)echo
12060191262dSYatharth Kochar
120773c99d4eSJuan Castillofiptool: ${FIPTOOL}
1208d57362bdSXialin Liuifeq (${SEPARATE_BL2_FIP},1)
1209d57362bdSXialin Liubl2_fip: ${BUILD_PLAT}/${BL2_FIP_NAME}
1210d57362bdSXialin Liufip: bl2_fip
1211d57362bdSXialin Liuelse
121273c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
1213d57362bdSXialin Liuendif #(SEPARATE_BL2_FIP)
12140191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
121573c99d4eSJuan Castillo
1216cbd6cec3SBoyan Karatotev# symlink for compatibility before tools were in the build directory
1217774fb379SBoyan Karatotev${FIPTOOL}: FORCE | $$(@D)/
1218cbd6cec3SBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=$(abspath ${BUILD_PLAT}) CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
1219cbd6cec3SBoyan Karatotev	$(q)ln -sf ${FIPTOOL} ${FIPTOOLPATH}/fiptool
1220f58ad36fSHarry Liebel
1221774fb379SBoyan Karatotev$(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT)/lib/libfdt.a $(BUILD_PLAT)/lib/libc.a $(CRYPTO_LIB) | $$(@D)/
12226e2fe623SLauren Wehrmeister	$(q)${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} CRYPTO_LIB=$(CRYPTO_LIB) ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES=$(call escape-shell,$(INCLUDES)) DEFINES=$(call escape-shell,$(DEFINES)) --no-print-directory -C ${ROMLIBPATH} all
12235accce5bSRoberto Vargas
1224cfe83910SLouis Mayencourtmemmap: all
1225c25405d6SChris Kay	$(if $(host-poetry),$(q)poetry -q install --no-root)
12264aa3f18dSChris Kay	$(q)$(if $(host-poetry),poetry run )memory --root ${BUILD_PLAT} symbols
1227cfe83910SLouis Mayencourt
12282329e22bSHarrison Mutaitl: ${BUILD_PLAT}/tl.bin
1229774fb379SBoyan Karatotev${BUILD_PLAT}/tl.bin: ${HW_CONFIG} | $$(@D)/
1230c25405d6SChris Kay	$(if $(host-poetry),$(q)poetry -q install --no-root)
1231d2867397SChris Kay	$(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@
12322329e22bSHarrison Mutai
12336de32378SMadhukar Pappireddydoc:
12347c4e1eeaSChris Kay	$(s)echo "  BUILD DOCUMENTATION"
1235c61c9a31SHarrison Mutai	$(if $(host-poetry),$(q)poetry -q install --with docs --no-root)
1236725a80d7SBoyan Karatotev	$(q)$(if $(host-poetry),poetry run )${MAKE} --no-print-directory -C ${DOCS_PATH} BUILDDIR=$(abspath ${BUILD_BASE}/docs) html
12376de32378SMadhukar Pappireddy
123890aa901fSSumit Gargenctool: ${ENCTOOL}
123990aa901fSSumit Garg
1240774fb379SBoyan Karatotev${ENCTOOL}: FORCE | $$(@D)/
124196fbe884SBoyan Karatotev	$(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=$(abspath ${BUILD_PLAT}) BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
12427c4e1eeaSChris Kay	$(s)echo
12437c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
12447c4e1eeaSChris Kay	$(s)echo
124590aa901fSSumit Garg
124635fab8c9SJoakim Bechcscope:
12477c4e1eeaSChris Kay	$(s)echo "  CSCOPE"
12487c4e1eeaSChris Kay	$(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
12497c4e1eeaSChris Kay	$(q)cscope -b -q -k
125035fab8c9SJoakim Bech
125172ee3314SRyan Harkinhelp:
12527c4e1eeaSChris Kay	$(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
12537c4e1eeaSChris Kay	$(s)echo ""
12547c4e1eeaSChris Kay	$(s)echo "PLAT is used to specify which platform you wish to build."
12557c4e1eeaSChris Kay	$(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
12567c4e1eeaSChris Kay	$(s)echo ""
12577c4e1eeaSChris Kay	$(s)echo "platform = ${PLATFORM_LIST}"
12587c4e1eeaSChris Kay	$(s)echo ""
12597c4e1eeaSChris Kay	$(s)echo "Please refer to the User Guide for a list of all supported options."
12607c4e1eeaSChris Kay	$(s)echo "Note that the build system doesn't track dependencies for build "
12617c4e1eeaSChris Kay	$(s)echo "options. Therefore, if any of the build options are changed "
12627c4e1eeaSChris Kay	$(s)echo "from a previous build, a clean build must be performed."
12637c4e1eeaSChris Kay	$(s)echo ""
12647c4e1eeaSChris Kay	$(s)echo "Supported Targets:"
12657c4e1eeaSChris Kay	$(s)echo "  all            Build all individual bootloader binaries"
12667c4e1eeaSChris Kay	$(s)echo "  bl1            Build the BL1 binary"
12677c4e1eeaSChris Kay	$(s)echo "  bl2            Build the BL2 binary"
12687c4e1eeaSChris Kay	$(s)echo "  bl2u           Build the BL2U binary"
12697c4e1eeaSChris Kay	$(s)echo "  bl31           Build the BL31 binary"
12707c4e1eeaSChris Kay	$(s)echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
12717c4e1eeaSChris Kay	$(s)echo "                 this builds secure payload specified by AARCH32_SP"
12727c4e1eeaSChris Kay	$(s)echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
12737c4e1eeaSChris Kay	$(s)echo "  fip            Build the Firmware Image Package (FIP)"
12747c4e1eeaSChris Kay	$(s)echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
12757c4e1eeaSChris Kay	$(s)echo "  checkcodebase  Check the coding style of the entire source tree"
12767c4e1eeaSChris Kay	$(s)echo "  checkpatch     Check the coding style on changes in the current"
12777c4e1eeaSChris Kay	$(s)echo "                 branch against BASE_COMMIT (default origin/master)"
12787c4e1eeaSChris Kay	$(s)echo "  clean          Clean the build for the selected platform"
12797c4e1eeaSChris Kay	$(s)echo "  cscope         Generate cscope index"
12807c4e1eeaSChris Kay	$(s)echo "  distclean      Remove all build artifacts for all platforms"
12817c4e1eeaSChris Kay	$(s)echo "  certtool       Build the Certificate generation tool"
12827c4e1eeaSChris Kay	$(s)echo "  enctool        Build the Firmware encryption tool"
12837c4e1eeaSChris Kay	$(s)echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
12847c4e1eeaSChris Kay	$(s)echo "  sp             Build the Secure Partition Packages"
12857c4e1eeaSChris Kay	$(s)echo "  sptool         Build the Secure Partition Package creation tool"
12867c4e1eeaSChris Kay	$(s)echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
12877c4e1eeaSChris Kay	$(s)echo "  memmap         Print the memory map of the built binaries"
12887c4e1eeaSChris Kay	$(s)echo "  doc            Build html based documentation using Sphinx tool"
12897c4e1eeaSChris Kay	$(s)echo ""
12907c4e1eeaSChris Kay	$(s)echo "Note: most build targets require PLAT to be set to a specific platform."
12917c4e1eeaSChris Kay	$(s)echo ""
12927c4e1eeaSChris Kay	$(s)echo "example: build all targets for the FVP platform:"
12937c4e1eeaSChris Kay	$(s)echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1294a9812206SPali Rohár
1295a9812206SPali Rohár.PHONY: FORCE
1296a9812206SPali RohárFORCE:;
1297