Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | # |
Maksims Svecovs | 1e25c5b | 2023-02-02 16:10:22 +0000 | [diff] [blame] | 2 | # Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | # |
| 6 | |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 7 | # |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 8 | # Trusted Firmware Version |
| 9 | # |
Soby Mathew | d42eaee | 2018-10-01 16:16:34 +0100 | [diff] [blame] | 10 | VERSION_MAJOR := 2 |
Juan Pablo Conde | 5248749 | 2023-05-15 22:17:17 -0500 | [diff] [blame] | 11 | VERSION_MINOR := 9 |
laurenw-arm | e954f65 | 2022-07-12 10:12:05 -0500 | [diff] [blame] | 12 | VERSION := ${VERSION_MAJOR}.${VERSION_MINOR} |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 13 | |
Juan Castillo | 396644b | 2015-10-22 11:34:44 +0100 | [diff] [blame] | 14 | # Default goal is build all images |
| 15 | .DEFAULT_GOAL := all |
| 16 | |
Douglas Raillard | 527cd90 | 2016-12-28 14:47:50 +0000 | [diff] [blame] | 17 | # Avoid any implicit propagation of command line variable definitions to |
| 18 | # sub-Makefiles, like CFLAGS that we reserved for the firmware images' |
| 19 | # usage. Other command line options like "-s" are still propagated as usual. |
| 20 | MAKEOVERRIDES = |
| 21 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 22 | MAKE_HELPERS_DIRECTORY := make_helpers/ |
| 23 | include ${MAKE_HELPERS_DIRECTORY}build_macros.mk |
Evan Lloyd | a71d259 | 2015-12-02 18:56:06 +0000 | [diff] [blame] | 24 | include ${MAKE_HELPERS_DIRECTORY}build_env.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 25 | |
| 26 | ################################################################################ |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 27 | # Default values for build configurations, and their dependencies |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 28 | ################################################################################ |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 29 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 30 | include ${MAKE_HELPERS_DIRECTORY}defaults.mk |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 31 | |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 32 | # Assertions enabled for DEBUG builds by default |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 33 | ENABLE_ASSERTIONS := ${DEBUG} |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 34 | ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} |
| 35 | PLAT := ${DEFAULT_PLAT} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 36 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 37 | ################################################################################ |
| 38 | # Checkpatch script options |
| 39 | ################################################################################ |
| 40 | |
Sandrine Bailleux | 0b5a158 | 2016-06-02 11:19:59 +0100 | [diff] [blame] | 41 | CHECKCODE_ARGS := --no-patch |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 42 | # Do not check the coding style on imported library files or documentation files |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 43 | INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 44 | include/drivers/arm/cryptocell, \ |
| 45 | $(wildcard include/drivers/arm/*))) |
| 46 | INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h |
| 47 | INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 48 | include/drivers/arm, \ |
| 49 | $(wildcard include/drivers/*))) |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 50 | INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 51 | include/lib/libfdt \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 52 | include/lib/libc, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 53 | $(wildcard include/lib/*))) |
| 54 | INC_DIRS_TO_CHECK := $(sort $(filter-out \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 55 | include/lib \ |
| 56 | include/drivers, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 57 | $(wildcard include/*))) |
| 58 | LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 59 | lib/compiler-rt \ |
Antonio Nino Diaz | d84f88e | 2017-01-16 17:20:45 +0000 | [diff] [blame] | 60 | lib/libfdt% \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 61 | lib/libc, \ |
Daniel Boulby | 958f1dd | 2022-10-05 11:05:22 +0100 | [diff] [blame] | 62 | lib/zlib \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 63 | $(wildcard lib/*))) |
| 64 | ROOT_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 65 | lib \ |
| 66 | include \ |
| 67 | docs \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 68 | %.rst, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 69 | $(wildcard *))) |
| 70 | CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ |
| 71 | ${INC_DIRS_TO_CHECK} \ |
| 72 | ${INC_LIB_DIRS_TO_CHECK} \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 73 | ${LIB_DIRS_TO_CHECK} \ |
| 74 | ${INC_DRV_DIRS_TO_CHECK} \ |
| 75 | ${INC_ARM_DIRS_TO_CHECK} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 76 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 77 | ################################################################################ |
| 78 | # Process build options |
| 79 | ################################################################################ |
| 80 | |
| 81 | # Verbose flag |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 82 | ifeq (${V},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 83 | Q:=@ |
| 84 | ECHO:=@echo |
| 85 | CHECKCODE_ARGS += --no-summary --terse |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 86 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 87 | Q:= |
| 88 | ECHO:=$(ECHO_QUIET) |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 89 | endif |
| 90 | |
| 91 | ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 92 | Q:=@ |
| 93 | ECHO:=$(ECHO_QUIET) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 94 | endif |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 95 | |
| 96 | export Q ECHO |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 97 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 98 | ################################################################################ |
| 99 | # Toolchain |
| 100 | ################################################################################ |
| 101 | |
| 102 | HOSTCC := gcc |
| 103 | export HOSTCC |
| 104 | |
| 105 | CC := ${CROSS_COMPILE}gcc |
| 106 | CPP := ${CROSS_COMPILE}cpp |
| 107 | AS := ${CROSS_COMPILE}gcc |
| 108 | AR := ${CROSS_COMPILE}ar |
| 109 | LINKER := ${CROSS_COMPILE}ld |
| 110 | OC := ${CROSS_COMPILE}objcopy |
| 111 | OD := ${CROSS_COMPILE}objdump |
| 112 | NM := ${CROSS_COMPILE}nm |
| 113 | PP := ${CROSS_COMPILE}gcc -E |
| 114 | DTC := dtc |
| 115 | |
| 116 | # Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH). |
| 117 | ifneq ($(strip $(wildcard ${LD}.bfd) \ |
| 118 | $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),) |
| 119 | LINKER := ${LINKER}.bfd |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 120 | endif |
| 121 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 122 | ################################################################################ |
| 123 | # Auxiliary tools (fiptool, cert_create, etc) |
| 124 | ################################################################################ |
| 125 | |
| 126 | # Variables for use with Certificate Generation Tool |
| 127 | CRTTOOLPATH ?= tools/cert_create |
| 128 | CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} |
| 129 | |
| 130 | # Variables for use with Firmware Encryption Tool |
| 131 | ENCTOOLPATH ?= tools/encrypt_fw |
| 132 | ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT} |
| 133 | |
| 134 | # Variables for use with Firmware Image Package |
| 135 | FIPTOOLPATH ?= tools/fiptool |
| 136 | FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT} |
| 137 | |
| 138 | # Variables for use with sptool |
| 139 | SPTOOLPATH ?= tools/sptool |
| 140 | SPTOOL ?= ${SPTOOLPATH}/sptool.py |
| 141 | SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py |
| 142 | |
| 143 | # Variables for use with ROMLIB |
| 144 | ROMLIBPATH ?= lib/romlib |
| 145 | |
| 146 | # Variable for use with Python |
| 147 | PYTHON ?= python3 |
| 148 | |
| 149 | # Variables for use with documentation build using Sphinx tool |
| 150 | DOCS_PATH ?= docs |
| 151 | |
| 152 | ################################################################################ |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 153 | # Process BRANCH_PROTECTION value and set |
| 154 | # Pointer Authentication and Branch Target Identification flags |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 155 | ################################################################################ |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 156 | ifeq (${BRANCH_PROTECTION},0) |
| 157 | # Default value turns off all types of branch protection |
| 158 | BP_OPTION := none |
| 159 | else ifneq (${ARCH},aarch64) |
| 160 | $(error BRANCH_PROTECTION requires AArch64) |
| 161 | else ifeq (${BRANCH_PROTECTION},1) |
| 162 | # Enables all types of branch protection features |
| 163 | BP_OPTION := standard |
| 164 | ENABLE_BTI := 1 |
| 165 | ENABLE_PAUTH := 1 |
| 166 | else ifeq (${BRANCH_PROTECTION},2) |
| 167 | # Return address signing to its standard level |
| 168 | BP_OPTION := pac-ret |
| 169 | ENABLE_PAUTH := 1 |
| 170 | else ifeq (${BRANCH_PROTECTION},3) |
| 171 | # Extend the signing to include leaf functions |
| 172 | BP_OPTION := pac-ret+leaf |
| 173 | ENABLE_PAUTH := 1 |
Alexei Fedorov | e039e48 | 2020-06-19 14:33:49 +0100 | [diff] [blame] | 174 | else ifeq (${BRANCH_PROTECTION},4) |
| 175 | # Turn on branch target identification mechanism |
| 176 | BP_OPTION := bti |
| 177 | ENABLE_BTI := 1 |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 178 | else |
| 179 | $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION}) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 180 | endif #(BRANCH_PROTECTION) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 181 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 182 | ################################################################################ |
| 183 | # RME dependent flags configuration |
| 184 | ################################################################################ |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 185 | # FEAT_RME |
| 186 | ifeq (${ENABLE_RME},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 187 | # RME doesn't support PIE |
| 188 | ifneq (${ENABLE_PIE},0) |
| 189 | $(error ENABLE_RME does not support PIE) |
| 190 | endif |
Maksims Svecovs | 1e25c5b | 2023-02-02 16:10:22 +0000 | [diff] [blame] | 191 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 192 | # RME doesn't support BRBE |
| 193 | ifneq (${ENABLE_BRBE_FOR_NS},0) |
| 194 | $(error ENABLE_RME does not support BRBE.) |
| 195 | endif |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 196 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 197 | # RME requires AARCH64 |
| 198 | ifneq (${ARCH},aarch64) |
| 199 | $(error ENABLE_RME requires AArch64) |
| 200 | endif |
Soby Mathew | ad04201 | 2019-09-25 14:03:41 +0100 | [diff] [blame] | 201 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 202 | # RME requires el2 context to be saved for now. |
| 203 | CTX_INCLUDE_EL2_REGS := 1 |
| 204 | CTX_INCLUDE_AARCH32_REGS := 0 |
| 205 | ARM_ARCH_MAJOR := 8 |
| 206 | ARM_ARCH_MINOR := 5 |
| 207 | ENABLE_FEAT_ECV = 1 |
| 208 | ENABLE_FEAT_FGT = 1 |
| 209 | CTX_INCLUDE_PAUTH_REGS := 1 |
Olivier Deprez | cb4c562 | 2019-09-19 17:46:46 +0200 | [diff] [blame] | 210 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 211 | # RME enables CSV2_2 extension by default. |
| 212 | ENABLE_FEAT_CSV2_2 = 1 |
| 213 | endif #(FEAT_RME) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 214 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 215 | ################################################################################ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 216 | # Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 217 | ################################################################################ |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 218 | ifeq (${ARM_ARCH_MAJOR},7) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 219 | target32-directive = -target arm-none-eabi |
Govindraj Raja | cd10c6e | 2023-05-30 16:52:15 -0500 | [diff] [blame] | 220 | # Will set march-directive from platform configuration |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 221 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 222 | target32-directive = -target armv8a-none-eabi |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 223 | endif #(ARM_ARCH_MAJOR) |
| 224 | |
| 225 | ################################################################################ |
| 226 | # Get Architecture Feature Modifiers |
| 227 | ################################################################################ |
| 228 | arch-features = ${ARM_ARCH_FEATURE} |
| 229 | |
| 230 | #################################################### |
| 231 | # Enable required options for Memory Stack Tagging. |
| 232 | #################################################### |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 233 | |
Manish V Badarkhe | 75c972a | 2020-03-22 05:06:38 +0000 | [diff] [blame] | 234 | # Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards |
| 235 | ifeq ($(ARCH), aarch64) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 236 | # Check if revision is greater than or equal to 8.5 |
| 237 | ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))" |
| 238 | mem_tag_arch_support = yes |
| 239 | endif |
| 240 | endif #(ARCH=aarch64) |
Alexei Fedorov | 132e665 | 2020-12-07 16:38:53 +0000 | [diff] [blame] | 241 | |
Alexei Fedorov | 132e665 | 2020-12-07 16:38:53 +0000 | [diff] [blame] | 242 | # Currently, these options are enabled only for clang and armclang compiler. |
Manish V Badarkhe | 75c972a | 2020-03-22 05:06:38 +0000 | [diff] [blame] | 243 | ifeq (${SUPPORT_STACK_MEMTAG},yes) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 244 | ifdef mem_tag_arch_support |
| 245 | # Check for armclang and clang compilers |
| 246 | ifneq ( ,$(filter $(notdir $(CC)),armclang clang)) |
| 247 | # Add "memtag" architecture feature modifier if not specified |
| 248 | ifeq ( ,$(findstring memtag,$(arch-features))) |
| 249 | arch-features := $(arch-features)+memtag |
| 250 | endif # memtag |
| 251 | ifeq ($(notdir $(CC)),armclang) |
| 252 | TF_CFLAGS += -mmemtag-stack |
| 253 | else ifeq ($(notdir $(CC)),clang) |
| 254 | TF_CFLAGS += -fsanitize=memtag |
| 255 | endif # armclang |
| 256 | endif |
| 257 | else |
| 258 | $(error "Error: stack memory tagging is not supported for \ |
| 259 | architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a") |
| 260 | endif #(mem_tag_arch_support) |
| 261 | endif #(SUPPORT_STACK_MEMTAG) |
Alexei Fedorov | 132e665 | 2020-12-07 16:38:53 +0000 | [diff] [blame] | 262 | |
| 263 | # Set the compiler's architecture feature modifiers |
| 264 | ifneq ($(arch-features), none) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 265 | # Strip "none+" from arch-features |
Govindraj Raja | cd10c6e | 2023-05-30 16:52:15 -0500 | [diff] [blame] | 266 | arch-features := $(subst none+,,$(arch-features)) |
| 267 | march-directive := $(march-directive)+$(arch-features) |
Alexei Fedorov | 132e665 | 2020-12-07 16:38:53 +0000 | [diff] [blame] | 268 | # Print features |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 269 | $(info Arm Architecture Features specified: $(subst +, ,$(arch-features))) |
| 270 | endif #(arch-features) |
Chris Kay | 08fec33 | 2021-03-09 13:34:35 +0000 | [diff] [blame] | 271 | |
origin | fba80d8 | 2022-01-19 16:30:14 +0000 | [diff] [blame] | 272 | ifneq ($(findstring clang,$(notdir $(CC))),) |
| 273 | ifneq ($(findstring armclang,$(notdir $(CC))),) |
Govindraj Raja | 6909641 | 2023-06-01 16:29:16 -0500 | [diff] [blame] | 274 | TF_CFLAGS_aarch32 := -target arm-arm-none-eabi |
| 275 | TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi |
origin | fba80d8 | 2022-01-19 16:30:14 +0000 | [diff] [blame] | 276 | LD := $(LINKER) |
| 277 | else |
Govindraj Raja | 6909641 | 2023-06-01 16:29:16 -0500 | [diff] [blame] | 278 | TF_CFLAGS_aarch32 = $(target32-directive) |
| 279 | TF_CFLAGS_aarch64 := -target aarch64-elf |
origin | fba80d8 | 2022-01-19 16:30:14 +0000 | [diff] [blame] | 280 | LD := $(shell $(CC) --print-prog-name ld.lld) |
| 281 | |
| 282 | AR := $(shell $(CC) --print-prog-name llvm-ar) |
| 283 | OD := $(shell $(CC) --print-prog-name llvm-objdump) |
| 284 | OC := $(shell $(CC) --print-prog-name llvm-objcopy) |
| 285 | endif |
| 286 | |
| 287 | CPP := $(CC) -E $(TF_CFLAGS_$(ARCH)) |
| 288 | PP := $(CC) -E $(TF_CFLAGS_$(ARCH)) |
| 289 | AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH)) |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 290 | else ifneq ($(findstring gcc,$(notdir $(CC))),) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 291 | ifeq ($(ENABLE_LTO),1) |
| 292 | # Enable LTO only for aarch64 |
| 293 | ifeq (${ARCH},aarch64) |
| 294 | LTO_CFLAGS = -flto |
| 295 | # Use gcc as a wrapper for the ld, recommended for LTO |
| 296 | LINKER := ${CROSS_COMPILE}gcc |
| 297 | endif |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 298 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 299 | LD = $(LINKER) |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 300 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 301 | LD = $(LINKER) |
| 302 | endif #(clang) |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 303 | |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 304 | # Process Debug flag |
| 305 | $(eval $(call add_define,DEBUG)) |
| 306 | ifneq (${DEBUG}, 0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 307 | BUILD_TYPE := debug |
| 308 | TF_CFLAGS += -g -gdwarf-4 |
| 309 | ASFLAGS += -g -Wa,-gdwarf-4 |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 310 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 311 | # Use LOG_LEVEL_INFO by default for debug builds |
| 312 | LOG_LEVEL := 40 |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 313 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 314 | BUILD_TYPE := release |
| 315 | # Use LOG_LEVEL_NOTICE by default for release builds |
| 316 | LOG_LEVEL := 20 |
| 317 | endif #(Debug) |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 318 | |
Peiyuan Song | 44f8f47 | 2020-04-25 16:53:43 +0800 | [diff] [blame] | 319 | # Default build string (git branch and commit) |
| 320 | ifeq (${BUILD_STRING},) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 321 | BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null) |
Peiyuan Song | 44f8f47 | 2020-04-25 16:53:43 +0800 | [diff] [blame] | 322 | endif |
laurenw-arm | e954f65 | 2022-07-12 10:12:05 -0500 | [diff] [blame] | 323 | VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING} |
Peiyuan Song | 44f8f47 | 2020-04-25 16:53:43 +0800 | [diff] [blame] | 324 | |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 325 | ifeq (${AARCH32_INSTRUCTION_SET},A32) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 326 | TF_CFLAGS_aarch32 += -marm |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 327 | else ifeq (${AARCH32_INSTRUCTION_SET},T32) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 328 | TF_CFLAGS_aarch32 += -mthumb |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 329 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 330 | $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET}) |
| 331 | endif #(AARCH32_INSTRUCTION_SET) |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 332 | |
Sandrine Bailleux | 1aa72ec | 2018-07-03 09:14:45 +0200 | [diff] [blame] | 333 | TF_CFLAGS_aarch32 += -mno-unaligned-access |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 334 | TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 335 | |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 336 | ifneq (${BP_OPTION},none) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 337 | TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION} |
| 338 | endif #(BP_OPTION) |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 339 | |
Govindraj Raja | cd10c6e | 2023-05-30 16:52:15 -0500 | [diff] [blame] | 340 | ASFLAGS += $(march-directive) |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 341 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 342 | ############################################################################## |
| 343 | # WARNINGS Configuration |
| 344 | ############################################################################### |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 345 | # General warnings |
| 346 | WARNINGS := -Wall -Wmissing-include-dirs -Wunused \ |
Yann Gautier | 94a40b6 | 2021-05-20 13:18:14 +0200 | [diff] [blame] | 347 | -Wdisabled-optimization -Wvla -Wshadow \ |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 348 | -Wredundant-decls |
| 349 | # stricter warnings |
| 350 | WARNINGS += -Wextra -Wno-trigraphs |
| 351 | # too verbose for generic build |
| 352 | WARNINGS += -Wno-missing-field-initializers \ |
| 353 | -Wno-type-limits -Wno-sign-compare \ |
| 354 | # on clang this flag gets reset if -Wextra is set after it. No difference on gcc |
| 355 | WARNINGS += -Wno-unused-parameter |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 356 | |
| 357 | # Additional warnings |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 358 | # Level 1 - infrequent warnings we should have none of |
| 359 | # full -Wextra |
| 360 | WARNING1 += -Wsign-compare |
| 361 | WARNING1 += -Wtype-limits |
| 362 | WARNING1 += -Wmissing-field-initializers |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 363 | |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 364 | # Level 2 - problematic warnings that we want |
| 365 | # zlib, compiler-rt, coreboot, and mbdedtls blow up with these |
| 366 | # TODO: disable just for them and move into default build |
| 367 | WARNING2 += -Wold-style-definition |
| 368 | WARNING2 += -Wmissing-prototypes |
| 369 | WARNING2 += -Wmissing-format-attribute |
| 370 | # TF-A aims to comply with this eventually. Effort too large at present |
| 371 | WARNING2 += -Wundef |
Boyan Karatotev | 9c6ba59 | 2022-11-21 14:49:05 +0000 | [diff] [blame] | 372 | # currently very involved and many platforms set this off |
| 373 | WARNING2 += -Wunused-const-variable=2 |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 374 | |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 375 | # Level 3 - very pedantic, frequently ignored |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 376 | WARNING3 := -Wbad-function-cast |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 377 | WARNING3 += -Waggregate-return |
| 378 | WARNING3 += -Wnested-externs |
| 379 | WARNING3 += -Wcast-align |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 380 | WARNING3 += -Wcast-qual |
| 381 | WARNING3 += -Wconversion |
| 382 | WARNING3 += -Wpacked |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 383 | WARNING3 += -Wpointer-arith |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 384 | WARNING3 += -Wswitch-default |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 385 | |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 386 | # Setting W is quite verbose and most warnings will be pre-existing issues |
| 387 | # outside of the contributor's control. Don't fail the build on them so warnings |
| 388 | # can be seen and hopefully addressed |
| 389 | ifdef W |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 390 | ifneq (${W},0) |
| 391 | E ?= 0 |
| 392 | endif |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 393 | endif |
| 394 | |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 395 | ifeq (${W},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 396 | WARNINGS += $(WARNING1) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 397 | else ifeq (${W},2) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 398 | WARNINGS += $(WARNING1) $(WARNING2) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 399 | else ifeq (${W},3) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 400 | WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3) |
| 401 | endif #(W) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 402 | |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 403 | # Compiler specific warnings |
Ambroise Vincent | 067e4d9 | 2019-05-24 12:47:43 +0100 | [diff] [blame] | 404 | ifeq ($(findstring clang,$(notdir $(CC))),) |
Justin Chadwell | 7a91423 | 2019-07-03 14:15:56 +0100 | [diff] [blame] | 405 | # not using clang |
Justin Chadwell | 42d18ca | 2019-09-18 14:13:42 +0100 | [diff] [blame] | 406 | WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \ |
| 407 | -Wpacked-bitfield-compat -Wshift-overflow=2 \ |
| 408 | -Wlogical-op |
Govindraj Raja | aa8ef3f | 2023-05-05 09:09:36 -0500 | [diff] [blame] | 409 | |
| 410 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523 |
| 411 | TF_CFLAGS += $(call cc_option, --param=min-pagesize=0) |
| 412 | |
Justin Chadwell | 7a91423 | 2019-07-03 14:15:56 +0100 | [diff] [blame] | 413 | else |
| 414 | # using clang |
Justin Chadwell | 42d18ca | 2019-09-18 14:13:42 +0100 | [diff] [blame] | 415 | WARNINGS += -Wshift-overflow -Wshift-sign-overflow \ |
| 416 | -Wlogical-op-parentheses |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 417 | endif #(Clang Warning) |
Ambroise Vincent | 067e4d9 | 2019-05-24 12:47:43 +0100 | [diff] [blame] | 418 | |
Yann Gautier | 957c353 | 2018-12-10 18:08:53 +0100 | [diff] [blame] | 419 | ifneq (${E},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 420 | ERRORS := -Werror |
| 421 | endif #(E) |
Yann Gautier | 957c353 | 2018-12-10 18:08:53 +0100 | [diff] [blame] | 422 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 423 | ################################################################################ |
| 424 | # Compiler and Linker Directives |
| 425 | ################################################################################ |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 426 | CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \ |
| 427 | $(ERRORS) $(WARNINGS) |
Govindraj Raja | cd10c6e | 2023-05-30 16:52:15 -0500 | [diff] [blame] | 428 | ASFLAGS += $(CPPFLAGS) \ |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 429 | -ffreestanding -Wa,--fatal-warnings |
Masahiro Yamada | 0dec9fa | 2016-12-22 12:51:53 +0900 | [diff] [blame] | 430 | TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 431 | -ffunction-sections -fdata-sections \ |
| 432 | -ffreestanding -fno-builtin -fno-common \ |
| 433 | -Os -std=gnu99 |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 434 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 435 | ifeq (${SANITIZE_UB},on) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 436 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover |
| 437 | endif #(${SANITIZE_UB},on) |
| 438 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 439 | ifeq (${SANITIZE_UB},trap) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 440 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \ |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 441 | -fsanitize-undefined-trap-on-error |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 442 | endif #(${SANITIZE_UB},trap) |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 443 | |
david cunado | 34ab609 | 2017-11-30 21:58:01 +0000 | [diff] [blame] | 444 | GCC_V_OUTPUT := $(shell $(CC) -v 2>&1) |
david cunado | 34ab609 | 2017-11-30 21:58:01 +0000 | [diff] [blame] | 445 | |
Marco Felsch | 24ad840 | 2022-11-09 12:59:09 +0100 | [diff] [blame] | 446 | TF_LDFLAGS += -z noexecstack |
| 447 | |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 448 | # LD = armlink |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 449 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 450 | TF_LDFLAGS += --diag_error=warning --lto_level=O1 |
| 451 | TF_LDFLAGS += --remove --info=unused,unusedsymbols |
| 452 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 453 | |
| 454 | # LD = gcc (used when GCC LTO is enabled) |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 455 | else ifneq ($(findstring gcc,$(notdir $(LD))),) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 456 | # Pass ld options with Wl or Xlinker switches |
| 457 | TF_LDFLAGS += -Wl,--fatal-warnings -O1 |
| 458 | TF_LDFLAGS += -Wl,--gc-sections |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 459 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 460 | TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants |
| 461 | TF_LDFLAGS += -Wl,-z,max-page-size=4096 |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 462 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 463 | ifeq ($(ENABLE_LTO),1) |
| 464 | ifeq (${ARCH},aarch64) |
| 465 | TF_LDFLAGS += -flto -fuse-linker-plugin |
| 466 | endif |
| 467 | endif #(ENABLE_LTO) |
| 468 | |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 469 | # GCC automatically adds fix-cortex-a53-843419 flag when used to link |
| 470 | # which breaks some builds, so disable if errata fix is not explicitly enabled |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 471 | ifneq (${ERRATA_A53_843419},1) |
| 472 | TF_LDFLAGS += -mno-fix-cortex-a53-843419 |
| 473 | endif |
| 474 | TF_LDFLAGS += -nostdlib |
| 475 | TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH))) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 476 | |
| 477 | # LD = gcc-ld (ld) or llvm-ld (ld.lld) or other |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 478 | else |
Marco Felsch | 24ad840 | 2022-11-09 12:59:09 +0100 | [diff] [blame] | 479 | # With ld.bfd version 2.39 and newer new warnings are added. Skip those since we |
| 480 | # are not loaded by a elf loader. |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 481 | TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments) |
| 482 | TF_LDFLAGS += -O1 |
| 483 | TF_LDFLAGS += --gc-sections |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 484 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 485 | TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants |
| 486 | TF_LDFLAGS += -z max-page-size=4096 |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 487 | |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 488 | # ld.lld doesn't recognize the errata flags, |
Yabin Cui | ed7dc51 | 2023-01-19 20:06:04 +0000 | [diff] [blame] | 489 | # therefore don't add those in that case. |
| 490 | # ld.lld reports section type mismatch warnings, |
| 491 | # therefore don't add --fatal-warnings to it. |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 492 | ifeq ($(findstring ld.lld,$(notdir $(LD))),) |
| 493 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings |
| 494 | endif |
| 495 | |
| 496 | endif #(LD = armlink) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 497 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 498 | DTC_FLAGS += -I dts -O dtb |
Louis Mayencourt | 6b232d9 | 2020-02-28 16:57:30 +0000 | [diff] [blame] | 499 | DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \ |
| 500 | -x assembler-with-cpp $(DEFINES) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 501 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 502 | ################################################################################ |
| 503 | # Common sources and include directories |
| 504 | ################################################################################ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 505 | include ${MAKE_HELPERS_DIRECTORY}arch_features.mk |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 506 | include lib/compiler-rt/compiler-rt.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 507 | |
| 508 | BL_COMMON_SOURCES += common/bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 509 | common/tf_log.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 510 | common/${ARCH}/debug.S \ |
Julius Werner | 03020da | 2018-11-27 22:10:56 -0800 | [diff] [blame] | 511 | drivers/console/multi_console.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 512 | lib/${ARCH}/cache_helpers.S \ |
| 513 | lib/${ARCH}/misc_helpers.S \ |
Boyan Karatotev | 05504ba | 2023-02-15 13:21:50 +0000 | [diff] [blame] | 514 | lib/extensions/pmuv3/${ARCH}/pmuv3.c \ |
Soby Mathew | 2f38ce3 | 2018-02-08 17:45:12 +0000 | [diff] [blame] | 515 | plat/common/plat_bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 516 | plat/common/plat_log_common.c \ |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame] | 517 | plat/common/${ARCH}/plat_common.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 518 | plat/common/${ARCH}/platform_helpers.S \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 519 | ${COMPILER_RT_SRCS} |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 520 | |
Boyan Karatotev | 0257693 | 2023-01-13 16:47:07 +0000 | [diff] [blame] | 521 | # Pointer Authentication sources |
| 522 | ifeq (${ENABLE_PAUTH}, 1) |
| 523 | # arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the |
| 524 | # Pauth support. As it's not secure, it must be reimplemented for real platforms |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 525 | BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S |
Boyan Karatotev | 0257693 | 2023-01-13 16:47:07 +0000 | [diff] [blame] | 526 | endif |
| 527 | |
Antonio Nino Diaz | eea20fc | 2018-08-16 15:42:44 +0100 | [diff] [blame] | 528 | ifeq ($(notdir $(CC)),armclang) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 529 | BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S |
Antonio Nino Diaz | eea20fc | 2018-08-16 15:42:44 +0100 | [diff] [blame] | 530 | endif |
| 531 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 532 | ifeq (${SANITIZE_UB},on) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 533 | BL_COMMON_SOURCES += plat/common/ubsan.c |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 534 | endif |
| 535 | |
Yann Gautier | 2cf1dbc | 2018-06-18 16:00:23 +0200 | [diff] [blame] | 536 | INCLUDES += -Iinclude \ |
Antonio Nino Diaz | 8d1ade6 | 2018-12-17 17:20:57 +0000 | [diff] [blame] | 537 | -Iinclude/arch/${ARCH} \ |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 538 | -Iinclude/lib/cpus/${ARCH} \ |
| 539 | -Iinclude/lib/el3_runtime/${ARCH} \ |
| 540 | ${PLAT_INCLUDES} \ |
| 541 | ${SPD_INCLUDES} |
| 542 | |
Antonio Nino Diaz | c3a2cf2 | 2018-11-19 11:48:30 +0000 | [diff] [blame] | 543 | include common/backtrace/backtrace.mk |
| 544 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 545 | ################################################################################ |
| 546 | # Generic definitions |
| 547 | ################################################################################ |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 548 | include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk |
| 549 | |
Grant Likely | 388248a | 2020-07-30 08:50:10 +0100 | [diff] [blame] | 550 | ifeq (${BUILD_BASE},) |
| 551 | BUILD_BASE := ./build |
| 552 | endif |
| 553 | BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 554 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 555 | SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 556 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 557 | # Platforms providing their own TBB makefile may override this value |
| 558 | INCLUDE_TBBR_MK := 1 |
| 559 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 560 | ################################################################################ |
| 561 | # Include SPD Makefile if one has been specified |
| 562 | ################################################################################ |
| 563 | |
| 564 | ifneq (${SPD},none) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 565 | ifeq (${ARCH},aarch32) |
| 566 | $(error "Error: SPD is incompatible with AArch32.") |
| 567 | endif |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 568 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 569 | ifdef EL3_PAYLOAD_BASE |
| 570 | $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") |
| 571 | $(warning "The SPD and its BL32 companion will be present but \ |
| 572 | ignored.") |
| 573 | endif |
Achin Gupta | 60b7b8a | 2019-10-11 15:50:43 +0100 | [diff] [blame] | 574 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 575 | ifeq (${SPD},spmd) |
| 576 | # SPMD is located in std_svc directory |
| 577 | SPD_DIR := std_svc |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 578 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 579 | ifeq ($(SPMD_SPM_AT_SEL2),1) |
| 580 | CTX_INCLUDE_EL2_REGS := 1 |
| 581 | ifeq ($(SPMC_AT_EL3),1) |
| 582 | $(error SPM cannot be enabled in both S-EL2 and EL3.) |
| 583 | endif |
| 584 | endif |
Olivier Deprez | bcaa068 | 2020-04-01 21:28:26 +0200 | [diff] [blame] | 585 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 586 | ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp) |
| 587 | DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG |
| 588 | endif |
Davidson K | 9a94914 | 2021-03-10 12:07:15 +0530 | [diff] [blame] | 589 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 590 | ifeq ($(TS_SP_FW_CONFIG),1) |
| 591 | DTC_CPPFLAGS += -DTS_SP_FW_CONFIG |
| 592 | endif |
Balint Dobszay | 9f68976 | 2021-03-26 15:19:11 +0100 | [diff] [blame] | 593 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 594 | ifneq ($(ARM_BL2_SP_LIST_DTS),) |
| 595 | DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS) |
| 596 | endif |
Balint Dobszay | 719ba9c | 2021-03-26 16:23:18 +0100 | [diff] [blame] | 597 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 598 | ifneq ($(SP_LAYOUT_FILE),) |
| 599 | BL2_ENABLE_SP_LOAD := 1 |
| 600 | endif |
| 601 | else |
| 602 | # All other SPDs in spd directory |
| 603 | SPD_DIR := spd |
| 604 | endif #(SPD) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 605 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 606 | # We expect to locate an spd.mk under the specified SPD directory |
| 607 | SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk) |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 608 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 609 | ifeq (${SPD_MAKE},) |
| 610 | $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located) |
| 611 | endif |
| 612 | $(info Including ${SPD_MAKE}) |
| 613 | include ${SPD_MAKE} |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 614 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 615 | # If there's BL32 companion for the chosen SPD, we expect that the SPD's |
| 616 | # Makefile would set NEED_BL32 to "yes". In this case, the build system |
| 617 | # supports two mutually exclusive options: |
| 618 | # * BL32 is built from source: then BL32_SOURCES must contain the list |
| 619 | # of source files to build BL32 |
| 620 | # * BL32 is a prebuilt binary: then BL32 must point to the image file |
| 621 | # that will be included in the FIP |
| 622 | # If both BL32_SOURCES and BL32 are defined, the binary takes precedence |
| 623 | # over the sources. |
| 624 | endif #(SPD=none) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 625 | |
Govindraj Raja | 0264d6c | 2022-11-21 13:10:40 +0000 | [diff] [blame] | 626 | ifeq (${CTX_INCLUDE_EL2_REGS}, 1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 627 | ifeq (${SPD},none) |
| 628 | ifeq (${ENABLE_RME},0) |
| 629 | $(error CTX_INCLUDE_EL2_REGS is available only when SPD \ |
| 630 | or RME is enabled) |
| 631 | endif |
| 632 | endif |
Govindraj Raja | 0264d6c | 2022-11-21 13:10:40 +0000 | [diff] [blame] | 633 | endif |
| 634 | |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 635 | ################################################################################ |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 636 | # Include rmmd Makefile if RME is enabled |
| 637 | ################################################################################ |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 638 | ifneq (${ENABLE_RME},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 639 | ifneq (${ARCH},aarch64) |
| 640 | $(error ENABLE_RME requires AArch64) |
| 641 | endif |
| 642 | ifeq ($(SPMC_AT_EL3),1) |
| 643 | $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.) |
| 644 | endif |
| 645 | |
| 646 | ifneq (${SPD}, none) |
| 647 | ifneq (${SPD}, spmd) |
| 648 | $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd) |
| 649 | endif |
| 650 | endif |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 651 | include services/std_svc/rmmd/rmmd.mk |
| 652 | $(warning "RME is an experimental feature") |
| 653 | endif |
| 654 | |
| 655 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 656 | # Include the platform specific Makefile after the SPD Makefile (the platform |
| 657 | # makefile may use all previous definitions in this file) |
| 658 | ################################################################################ |
Jeenu Viswambharan | e5c39fd | 2014-05-16 11:38:10 +0100 | [diff] [blame] | 659 | |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 660 | include ${PLAT_MAKEFILE_FULL} |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 661 | |
Govindraj Raja | 6909641 | 2023-06-01 16:29:16 -0500 | [diff] [blame] | 662 | ################################################################################ |
| 663 | # Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come |
| 664 | # up with appropriate march values for compiler. |
| 665 | ################################################################################ |
| 666 | include ${MAKE_HELPERS_DIRECTORY}march.mk |
| 667 | |
| 668 | TF_CFLAGS += $(march-directive) |
| 669 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 670 | # This internal flag is common option which is set to 1 for scenarios |
| 671 | # when the BL2 is running in EL3 level. This occurs in two scenarios - |
| 672 | # 4 world system running BL2 at EL3 and two world system without BL1 running |
| 673 | # BL2 in EL3 |
| 674 | |
| 675 | ifeq (${RESET_TO_BL2},1) |
| 676 | BL2_RUNS_AT_EL3 := 1 |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 677 | ifeq (${ENABLE_RME},1) |
| 678 | $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \ |
| 679 | supported at the moment.) |
| 680 | endif |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 681 | else ifeq (${ENABLE_RME},1) |
| 682 | BL2_RUNS_AT_EL3 := 1 |
| 683 | else |
| 684 | BL2_RUNS_AT_EL3 := 0 |
| 685 | endif |
| 686 | |
Masahiro Yamada | e2395b4 | 2017-11-04 03:12:28 +0900 | [diff] [blame] | 687 | $(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT})) |
| 688 | |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 689 | ifeq (${ARM_ARCH_MAJOR},7) |
| 690 | include make_helpers/armv7-a-cpus.mk |
| 691 | endif |
| 692 | |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 693 | PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT}) |
| 694 | ifneq ($(PIE_FOUND),) |
| 695 | TF_CFLAGS += -fno-PIE |
Samuel Holland | 9286c02 | 2022-04-08 21:56:02 -0500 | [diff] [blame] | 696 | ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 697 | TF_LDFLAGS += -no-pie |
| 698 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 699 | endif #(PIE_FOUND) |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 700 | |
| 701 | ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 702 | PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 703 | else |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 704 | PIE_LDFLAGS += -pie --no-dynamic-linker |
| 705 | endif |
| 706 | |
| 707 | ifeq ($(ENABLE_PIE),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 708 | ifeq ($(RESET_TO_BL2),1) |
| 709 | ifneq ($(BL2_IN_XIP_MEM),1) |
| 710 | BL2_CPPFLAGS += -fpie |
| 711 | BL2_CFLAGS += -fpie |
| 712 | BL2_LDFLAGS += $(PIE_LDFLAGS) |
| 713 | endif #(BL2_IN_XIP_MEM) |
| 714 | endif #(RESET_TO_BL2) |
Chris Kay | 13886c8 | 2023-02-02 14:39:03 +0000 | [diff] [blame] | 715 | BL31_CPPFLAGS += -fpie |
| 716 | BL31_CFLAGS += -fpie |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 717 | BL31_LDFLAGS += $(PIE_LDFLAGS) |
Chris Kay | 13886c8 | 2023-02-02 14:39:03 +0000 | [diff] [blame] | 718 | |
| 719 | BL32_CPPFLAGS += -fpie |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 720 | BL32_CFLAGS += -fpie |
| 721 | BL32_LDFLAGS += $(PIE_LDFLAGS) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 722 | endif #(ENABLE_PIE) |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 723 | |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 724 | BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 725 | BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 726 | BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 727 | |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 728 | BL1_CPPFLAGS += -DIMAGE_AT_EL3 |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 729 | ifeq ($(RESET_TO_BL2),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 730 | BL2_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 731 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 732 | BL2_CPPFLAGS += -DIMAGE_AT_EL1 |
| 733 | endif #(RESET_TO_BL2) |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 734 | |
| 735 | ifeq (${ARCH},aarch64) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 736 | BL2U_CPPFLAGS += -DIMAGE_AT_EL1 |
| 737 | BL31_CPPFLAGS += -DIMAGE_AT_EL3 |
| 738 | BL32_CPPFLAGS += -DIMAGE_AT_EL1 |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 739 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 740 | BL32_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 741 | endif |
| 742 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 743 | # Include the CPU specific operations makefile, which provides default |
| 744 | # values for all CPU errata workarounds and CPU specific optimisations. |
| 745 | # This can be overridden by the platform. |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 746 | include lib/cpus/cpu-ops.mk |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 747 | |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 748 | ################################################################################ |
| 749 | # Build `AARCH32_SP` as BL32 image for AArch32 |
| 750 | ################################################################################ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 751 | ifeq (${ARCH},aarch32) |
| 752 | NEED_BL32 := yes |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 753 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 754 | ifneq (${AARCH32_SP},none) |
| 755 | # We expect to locate an sp.mk under the specified AARCH32_SP directory |
| 756 | AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 757 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 758 | ifeq (${AARCH32_SP_MAKE},) |
| 759 | $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) |
| 760 | endif |
| 761 | $(info Including ${AARCH32_SP_MAKE}) |
| 762 | include ${AARCH32_SP_MAKE} |
| 763 | endif |
| 764 | endif #(ARCH=aarch32) |
Varun Wadekar | 3f9002c | 2019-01-31 09:22:30 -0800 | [diff] [blame] | 765 | |
| 766 | ################################################################################ |
| 767 | # Include libc if not overridden |
| 768 | ################################################################################ |
| 769 | ifeq (${OVERRIDE_LIBC},0) |
| 770 | include lib/libc/libc.mk |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 771 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 772 | |
| 773 | ################################################################################ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 774 | # Check incompatible options and dependencies |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 775 | ################################################################################ |
| 776 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 777 | # USE_DEBUGFS experimental feature recommended only in debug builds |
| 778 | ifeq (${USE_DEBUGFS},1) |
| 779 | ifeq (${DEBUG},1) |
| 780 | $(warning DEBUGFS experimental feature is enabled.) |
| 781 | else |
| 782 | $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY) |
Qixiang Xu | be9bd9d | 2017-08-24 11:03:23 +0800 | [diff] [blame] | 783 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 784 | endif #(USE_DEBUGFS) |
| 785 | |
| 786 | # USE_SPINLOCK_CAS requires AArch64 build |
| 787 | ifeq (${USE_SPINLOCK_CAS},1) |
| 788 | ifneq (${ARCH},aarch64) |
| 789 | $(error USE_SPINLOCK_CAS requires AArch64) |
Qixiang Xu | be9bd9d | 2017-08-24 11:03:23 +0800 | [diff] [blame] | 790 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 791 | endif #(USE_SPINLOCK_CAS) |
| 792 | |
| 793 | # The cert_create tool cannot generate certificates individually, so we use the |
| 794 | # target 'certificates' to create them all |
| 795 | ifneq (${GENERATE_COT},0) |
| 796 | FIP_DEPS += certificates |
| 797 | FWU_FIP_DEPS += fwu_certificates |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 798 | endif |
| 799 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 800 | ifneq (${DECRYPTION_SUPPORT},none) |
| 801 | ENC_ARGS += -f ${FW_ENC_STATUS} |
| 802 | ENC_ARGS += -k ${ENC_KEY} |
| 803 | ENC_ARGS += -n ${ENC_NONCE} |
| 804 | FIP_DEPS += enctool |
| 805 | FWU_FIP_DEPS += enctool |
| 806 | endif #(DECRYPTION_SUPPORT) |
| 807 | |
| 808 | ifdef EL3_PAYLOAD_BASE |
| 809 | ifdef PRELOADED_BL33_BASE |
| 810 | $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ |
| 811 | incompatible build options. EL3_PAYLOAD_BASE has priority.") |
| 812 | endif |
| 813 | ifneq (${GENERATE_COT},0) |
| 814 | $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \ |
| 815 | build options.") |
| 816 | endif |
| 817 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 818 | $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \ |
| 819 | incompatible \ build options.") |
| 820 | endif |
| 821 | endif #(EL3_PAYLOAD_BASE) |
| 822 | |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 823 | ifeq (${NEED_BL33},yes) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 824 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 825 | $(warning "BL33 image is not needed when option \ |
| 826 | BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 827 | endif |
| 828 | ifdef PRELOADED_BL33_BASE |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 829 | $(warning "BL33 image is not needed when option \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 830 | PRELOADED_BL33_BASE is used and won't be added to the FIP file.") |
| 831 | endif |
| 832 | endif #(NEED_BL33) |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 833 | |
Jeenu Viswambharan | 7ed2cbc | 2017-01-06 16:14:42 +0000 | [diff] [blame] | 834 | # When building for systems with hardware-assisted coherency, there's no need to |
| 835 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 836 | ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 837 | $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY) |
Jeenu Viswambharan | 7ed2cbc | 2017-01-06 16:14:42 +0000 | [diff] [blame] | 838 | endif |
Yatharth Kochar | f528faf | 2016-06-28 16:58:26 +0100 | [diff] [blame] | 839 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 840 | #For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1. |
| 841 | ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 842 | $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled") |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 843 | endif |
| 844 | |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 845 | # RAS_EXTENSION is deprecated, provide alternate build options |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 846 | ifeq ($(RAS_EXTENSION),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 847 | $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \ |
| 848 | and RAS_FFH_SUPPORT instead") |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 849 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 850 | |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 851 | # RAS firmware first handling requires that EAs are handled in EL3 first |
| 852 | ifeq ($(RAS_FFH_SUPPORT),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 853 | ifneq ($(ENABLE_FEAT_RAS),1) |
| 854 | $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1) |
| 855 | endif |
| 856 | ifneq ($(HANDLE_EA_EL3_FIRST_NS),1) |
| 857 | $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1) |
| 858 | endif |
| 859 | endif #(RAS_FFH_SUPPORT) |
| 860 | |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 861 | # When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 862 | ifeq ($(FAULT_INJECTION_SUPPORT),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 863 | ifeq ($(ENABLE_FEAT_RAS),0) |
| 864 | $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0) |
| 865 | endif |
| 866 | endif #(FAULT_INJECTION_SUPPORT) |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 867 | |
Roberto Vargas | 025946a | 2018-09-24 17:20:48 +0100 | [diff] [blame] | 868 | # DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1 |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 869 | ifeq ($(DYN_DISABLE_AUTH), 1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 870 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 871 | $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \ |
| 872 | to be set.") |
| 873 | endif |
| 874 | endif #(DYN_DISABLE_AUTH) |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 875 | |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 876 | ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1) |
| 877 | # Support authentication verification and hash calculation |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 878 | CRYPTO_SUPPORT := 3 |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 879 | else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1) |
| 880 | # Support authentication verification and hash calculation |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 881 | CRYPTO_SUPPORT := 3 |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 882 | else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),) |
| 883 | # Support hash calculation only |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 884 | CRYPTO_SUPPORT := 2 |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 885 | else ifeq (${TRUSTED_BOARD_BOOT},1) |
| 886 | # Support authentication verification only |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 887 | CRYPTO_SUPPORT := 1 |
Manish V Badarkhe | 5181d60 | 2022-01-08 22:56:06 +0000 | [diff] [blame] | 888 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 889 | CRYPTO_SUPPORT := 0 |
| 890 | endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT)) |
Manish V Badarkhe | 5181d60 | 2022-01-08 22:56:06 +0000 | [diff] [blame] | 891 | |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 892 | # SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled. |
| 893 | ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 894 | $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled") |
Manish V Badarkhe | ad33989 | 2020-06-29 10:32:53 +0100 | [diff] [blame] | 895 | endif |
| 896 | |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 897 | # If pointer authentication is used in the firmware, make sure that all the |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 898 | # registers associated to it are also saved and restored. |
| 899 | # Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1. |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 900 | ifeq ($(ENABLE_PAUTH),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 901 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),0) |
| 902 | $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1) |
| 903 | endif |
| 904 | endif #(ENABLE_PAUTH) |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 905 | |
| 906 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 907 | ifneq (${ARCH},aarch64) |
| 908 | $(error CTX_INCLUDE_PAUTH_REGS requires AArch64) |
| 909 | endif |
| 910 | endif #(CTX_INCLUDE_PAUTH_REGS) |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 911 | |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 912 | ifeq ($(CTX_INCLUDE_MTE_REGS),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 913 | ifneq (${ARCH},aarch64) |
| 914 | $(error CTX_INCLUDE_MTE_REGS requires AArch64) |
| 915 | endif |
| 916 | endif #(CTX_INCLUDE_MTE_REGS) |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 917 | |
Manish V Badarkhe | 99575e4 | 2021-06-25 23:28:59 +0100 | [diff] [blame] | 918 | ifeq ($(PSA_FWU_SUPPORT),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 919 | $(info PSA_FWU_SUPPORT is an experimental feature) |
| 920 | endif #(PSA_FWU_SUPPORT) |
Manish V Badarkhe | 99575e4 | 2021-06-25 23:28:59 +0100 | [diff] [blame] | 921 | |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 922 | ifeq ($(FEATURE_DETECTION),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 923 | $(info FEATURE_DETECTION is an experimental feature) |
| 924 | endif #(FEATURE_DETECTION) |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 925 | |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 926 | ifneq ($(ENABLE_SME2_FOR_NS), 0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 927 | ifeq (${ENABLE_SME_FOR_NS}, 0) |
| 928 | $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \ |
| 929 | to be set") |
| 930 | $(warning "Forced ENABLE_SME_FOR_NS=1") |
| 931 | override ENABLE_SME_FOR_NS := 1 |
| 932 | endif |
| 933 | endif #(ENABLE_SME2_FOR_NS) |
Jayanth Dodderi Chidanand | 605419a | 2023-03-06 23:56:14 +0000 | [diff] [blame] | 934 | |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 935 | ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 936 | ifeq (${ALLOW_RO_XLAT_TABLES}, 1) |
| 937 | $(error "ALLOW_RO_XLAT_TABLES requires translation tables \ |
| 938 | library v2") |
| 939 | endif |
| 940 | endif #(ARM_XLAT_TABLES_LIB_V1) |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 941 | |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 942 | ifneq (${DECRYPTION_SUPPORT},none) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 943 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 944 | $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \ |
| 945 | to be set) |
| 946 | endif |
| 947 | endif #(DECRYPTION_SUPPORT) |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 948 | |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 949 | # Ensure that no Aarch64-only features are enabled in Aarch32 build |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 950 | ifeq (${ARCH},aarch32) |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 951 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 952 | # SME/SVE only supported on AArch64 |
| 953 | ifneq (${ENABLE_SME_FOR_NS},0) |
| 954 | $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32") |
| 955 | endif |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 956 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 957 | ifeq (${ENABLE_SVE_FOR_NS},1) |
| 958 | # Warning instead of error due to CI dependency on this |
| 959 | $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32") |
| 960 | endif |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 961 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 962 | # BRBE is not supported in AArch32 |
| 963 | ifeq (${ENABLE_BRBE_FOR_NS},1) |
| 964 | $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32") |
| 965 | endif |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 966 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 967 | # FEAT_RNG_TRAP is not supported in AArch32 |
| 968 | ifeq (${ENABLE_FEAT_RNG_TRAP},1) |
| 969 | $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32") |
| 970 | endif |
| 971 | endif #(ARCH=aarch32) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 972 | |
| 973 | # Ensure ENABLE_RME is not used with SME |
| 974 | ifeq (${ENABLE_RME},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 975 | ifneq (${ENABLE_SME_FOR_NS},0) |
| 976 | $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME") |
| 977 | endif |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 978 | endif |
| 979 | |
Boyan Karatotev | 7f5dcc7 | 2023-03-08 16:29:26 +0000 | [diff] [blame] | 980 | ifneq (${ENABLE_SME_FOR_NS},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 981 | ifeq (${ENABLE_SVE_FOR_NS},0) |
| 982 | $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS") |
| 983 | endif |
| 984 | endif #(ENABLE_SME_FOR_NS) |
Boyan Karatotev | 7f5dcc7 | 2023-03-08 16:29:26 +0000 | [diff] [blame] | 985 | |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 986 | # Secure SME/SVE requires the non-secure component as well |
| 987 | ifeq (${ENABLE_SME_FOR_SWD},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 988 | ifeq (${ENABLE_SME_FOR_NS},0) |
| 989 | $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS") |
| 990 | endif |
| 991 | ifeq (${ENABLE_SVE_FOR_SWD},0) |
| 992 | $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD") |
| 993 | endif |
| 994 | endif #(ENABLE_SME_FOR_SWD) |
| 995 | |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 996 | ifeq (${ENABLE_SVE_FOR_SWD},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 997 | ifeq (${ENABLE_SVE_FOR_NS},0) |
| 998 | $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS") |
| 999 | endif |
| 1000 | endif #(ENABLE_SVE_FOR_SWD) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 1001 | |
| 1002 | # SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does |
| 1003 | # its own context management including FPU registers. |
| 1004 | ifeq (${CTX_INCLUDE_FPREGS},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1005 | ifneq (${ENABLE_SME_FOR_NS},0) |
| 1006 | $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS") |
| 1007 | endif |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 1008 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1009 | ifeq (${ENABLE_SVE_FOR_NS},1) |
| 1010 | # Warning instead of error due to CI dependency on this |
| 1011 | $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS") |
| 1012 | $(warning "Forced ENABLE_SVE_FOR_NS=0") |
| 1013 | override ENABLE_SVE_FOR_NS := 0 |
| 1014 | endif |
| 1015 | endif #(CTX_INCLUDE_FPREGS) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 1016 | |
Manish V Badarkhe | 191a5fc | 2022-03-02 12:06:35 +0000 | [diff] [blame] | 1017 | ifeq ($(DRTM_SUPPORT),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1018 | $(info DRTM_SUPPORT is an experimental feature) |
Manish V Badarkhe | 191a5fc | 2022-03-02 12:06:35 +0000 | [diff] [blame] | 1019 | endif |
| 1020 | |
Chris Kay | d02c231 | 2022-09-29 16:21:24 +0100 | [diff] [blame] | 1021 | ifeq (${ENABLE_RME},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1022 | ifneq (${SEPARATE_CODE_AND_RODATA},1) |
| 1023 | $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`) |
| 1024 | endif |
Chris Kay | d02c231 | 2022-09-29 16:21:24 +0100 | [diff] [blame] | 1025 | endif |
| 1026 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1027 | # Determine if FEAT_RNG is supported |
| 1028 | ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0) |
| 1029 | |
| 1030 | # Determine if FEAT_SB is supported |
| 1031 | ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0) |
| 1032 | |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 1033 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1034 | # Process platform overrideable behaviour |
| 1035 | ################################################################################ |
| 1036 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1037 | ifdef BL1_SOURCES |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1038 | NEED_BL1 := yes |
| 1039 | endif #(BL1_SOURCES) |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1040 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 1041 | ifdef BL2_SOURCES |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1042 | NEED_BL2 := yes |
| 1043 | |
| 1044 | # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and |
| 1045 | # Certificate generation tools. This flag can be overridden by the platform. |
| 1046 | ifdef EL3_PAYLOAD_BASE |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1047 | # If booting an EL3 payload there is no need for a BL33 image |
| 1048 | # in the FIP file. |
| 1049 | NEED_BL33 := no |
| 1050 | else |
| 1051 | ifdef PRELOADED_BL33_BASE |
| 1052 | # If booting a BL33 preloaded image there is no need of |
| 1053 | # another one in the FIP file. |
| 1054 | NEED_BL33 := no |
| 1055 | else |
| 1056 | NEED_BL33 ?= yes |
| 1057 | endif |
| 1058 | endif |
| 1059 | endif #(BL2_SOURCES) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1060 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1061 | ifdef BL2U_SOURCES |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1062 | NEED_BL2U := yes |
| 1063 | endif #(BL2U_SOURCES) |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1064 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1065 | # If SCP_BL2 is given, we always want FIP to include it. |
| 1066 | ifdef SCP_BL2 |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1067 | NEED_SCP_BL2 := yes |
| 1068 | endif #(SCP_BL2) |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1069 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1070 | # For AArch32, BL31 is not currently supported. |
| 1071 | ifneq (${ARCH},aarch32) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1072 | ifdef BL31_SOURCES |
| 1073 | # When booting an EL3 payload, there is no need to compile the BL31 |
| 1074 | # image nor put it in the FIP. |
| 1075 | ifndef EL3_PAYLOAD_BASE |
| 1076 | NEED_BL31 := yes |
| 1077 | endif |
| 1078 | endif |
| 1079 | endif #(ARCH=aarch64) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1080 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1081 | # Process TBB related flags |
| 1082 | ifneq (${GENERATE_COT},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1083 | # Common cert_create options |
| 1084 | ifneq (${CREATE_KEYS},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1085 | $(eval CRT_ARGS += -n) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1086 | $(eval FWU_CRT_ARGS += -n) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1087 | ifneq (${SAVE_KEYS},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1088 | $(eval CRT_ARGS += -k) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1089 | $(eval FWU_CRT_ARGS += -k) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1090 | endif |
| 1091 | endif |
| 1092 | # Include TBBR makefile (unless the platform indicates otherwise) |
| 1093 | ifeq (${INCLUDE_TBBR_MK},1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1094 | include make_helpers/tbbr/tbbr_tools.mk |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1095 | endif |
| 1096 | endif #(GENERATE_COT) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1097 | |
Masahiro Yamada | 4d87eb4 | 2016-12-25 13:52:22 +0900 | [diff] [blame] | 1098 | ifneq (${FIP_ALIGN},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1099 | FIP_ARGS += --align ${FIP_ALIGN} |
| 1100 | endif #(FIP_ALIGN) |
Masahiro Yamada | 4d87eb4 | 2016-12-25 13:52:22 +0900 | [diff] [blame] | 1101 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1102 | ifdef FDT_SOURCES |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1103 | NEED_FDT := yes |
| 1104 | endif #(FDT_SOURCES) |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1105 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1106 | ################################################################################ |
Michalis Pappas | 0f223c5 | 2018-03-20 13:01:27 +0800 | [diff] [blame] | 1107 | # Include libraries' Makefile that are used in all BL |
| 1108 | ################################################################################ |
| 1109 | |
| 1110 | include lib/stack_protector/stack_protector.mk |
| 1111 | |
| 1112 | ################################################################################ |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1113 | # Include BL specific makefiles |
| 1114 | ################################################################################ |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1115 | |
| 1116 | ifeq (${NEED_BL1},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1117 | include bl1/bl1.mk |
| 1118 | endif |
| 1119 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1120 | ifeq (${NEED_BL2},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1121 | include bl2/bl2.mk |
| 1122 | endif |
| 1123 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1124 | ifeq (${NEED_BL2U},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1125 | include bl2u/bl2u.mk |
| 1126 | endif |
| 1127 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1128 | ifeq (${NEED_BL31},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1129 | include bl31/bl31.mk |
| 1130 | endif |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1131 | |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1132 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1133 | # Build options checks |
| 1134 | ################################################################################ |
| 1135 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1136 | # Boolean_Flags |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1137 | $(eval $(call assert_booleans,\ |
| 1138 | $(sort \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1139 | ALLOW_RO_XLAT_TABLES \ |
| 1140 | BL2_ENABLE_SP_LOAD \ |
| 1141 | COLD_BOOT_SINGLE_CPU \ |
| 1142 | CREATE_KEYS \ |
| 1143 | CTX_INCLUDE_AARCH32_REGS \ |
| 1144 | CTX_INCLUDE_FPREGS \ |
| 1145 | CTX_INCLUDE_EL2_REGS \ |
| 1146 | DEBUG \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1147 | DYN_DISABLE_AUTH \ |
| 1148 | EL3_EXCEPTION_HANDLING \ |
| 1149 | ENABLE_AMU_AUXILIARY_COUNTERS \ |
| 1150 | ENABLE_AMU_FCONF \ |
| 1151 | AMU_RESTRICT_COUNTERS \ |
| 1152 | ENABLE_ASSERTIONS \ |
| 1153 | ENABLE_FEAT_SB \ |
| 1154 | ENABLE_PIE \ |
| 1155 | ENABLE_PMF \ |
| 1156 | ENABLE_PSCI_STAT \ |
| 1157 | ENABLE_RUNTIME_INSTRUMENTATION \ |
| 1158 | ENABLE_SME_FOR_SWD \ |
| 1159 | ENABLE_SVE_FOR_SWD \ |
| 1160 | ERROR_DEPRECATED \ |
| 1161 | FAULT_INJECTION_SUPPORT \ |
| 1162 | GENERATE_COT \ |
| 1163 | GICV2_G0_FOR_EL3 \ |
| 1164 | HANDLE_EA_EL3_FIRST_NS \ |
| 1165 | HW_ASSISTED_COHERENCY \ |
| 1166 | MEASURED_BOOT \ |
| 1167 | DRTM_SUPPORT \ |
| 1168 | NS_TIMER_SWITCH \ |
| 1169 | OVERRIDE_LIBC \ |
| 1170 | PL011_GENERIC_UART \ |
| 1171 | PLAT_RSS_NOT_SUPPORTED \ |
| 1172 | PROGRAMMABLE_RESET_ADDRESS \ |
| 1173 | PSCI_EXTENDED_STATE_ID \ |
| 1174 | PSCI_OS_INIT_MODE \ |
| 1175 | RESET_TO_BL31 \ |
| 1176 | SAVE_KEYS \ |
| 1177 | SEPARATE_CODE_AND_RODATA \ |
| 1178 | SEPARATE_BL2_NOLOAD_REGION \ |
| 1179 | SEPARATE_NOBITS_REGION \ |
| 1180 | SPIN_ON_BL1_EXIT \ |
| 1181 | SPM_MM \ |
| 1182 | SPMC_AT_EL3 \ |
| 1183 | SPMD_SPM_AT_SEL2 \ |
| 1184 | TRUSTED_BOARD_BOOT \ |
| 1185 | USE_COHERENT_MEM \ |
| 1186 | USE_DEBUGFS \ |
| 1187 | ARM_IO_IN_DTB \ |
| 1188 | SDEI_IN_FCONF \ |
| 1189 | SEC_INT_DESC_IN_FCONF \ |
| 1190 | USE_ROMLIB \ |
| 1191 | USE_TBBR_DEFS \ |
| 1192 | WARMBOOT_ENABLE_DCACHE_EARLY \ |
| 1193 | RESET_TO_BL2 \ |
| 1194 | BL2_IN_XIP_MEM \ |
| 1195 | BL2_INV_DCACHE \ |
| 1196 | USE_SPINLOCK_CAS \ |
| 1197 | ENCRYPT_BL31 \ |
| 1198 | ENCRYPT_BL32 \ |
| 1199 | ERRATA_SPECULATIVE_AT \ |
| 1200 | RAS_TRAP_NS_ERR_REC_ACCESS \ |
| 1201 | COT_DESC_IN_DTB \ |
| 1202 | USE_SP804_TIMER \ |
| 1203 | PSA_FWU_SUPPORT \ |
| 1204 | ENABLE_MPMM \ |
| 1205 | ENABLE_MPMM_FCONF \ |
| 1206 | FEATURE_DETECTION \ |
Jayanth Dodderi Chidanand | 7c7faff | 2022-10-11 17:16:07 +0100 | [diff] [blame] | 1207 | TRNG_SUPPORT \ |
Sona Mathew | 7fe0352 | 2022-11-18 18:05:38 -0600 | [diff] [blame] | 1208 | ERRATA_ABI_SUPPORT \ |
Sona Mathew | 5a4c9fc | 2023-03-14 14:02:03 -0500 | [diff] [blame] | 1209 | ERRATA_NON_ARM_INTERCONNECT \ |
Okash Khawaja | 037b56e | 2022-11-04 12:38:01 +0000 | [diff] [blame] | 1210 | CONDITIONAL_CMO \ |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 1211 | RAS_FFH_SUPPORT \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1212 | ))) |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 1213 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1214 | # Numeric_Flags |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1215 | $(eval $(call assert_numerics,\ |
| 1216 | $(sort \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1217 | ARM_ARCH_MAJOR \ |
| 1218 | ARM_ARCH_MINOR \ |
| 1219 | BRANCH_PROTECTION \ |
| 1220 | CTX_INCLUDE_PAUTH_REGS \ |
| 1221 | CTX_INCLUDE_MTE_REGS \ |
| 1222 | CTX_INCLUDE_NEVE_REGS \ |
| 1223 | CRYPTO_SUPPORT \ |
Boyan Karatotev | 677ed8a | 2023-02-16 09:45:29 +0000 | [diff] [blame] | 1224 | DISABLE_MTPMU \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1225 | ENABLE_BRBE_FOR_NS \ |
| 1226 | ENABLE_TRBE_FOR_NS \ |
| 1227 | ENABLE_BTI \ |
| 1228 | ENABLE_PAUTH \ |
| 1229 | ENABLE_FEAT_AMU \ |
| 1230 | ENABLE_FEAT_AMUv1p1 \ |
| 1231 | ENABLE_FEAT_CSV2_2 \ |
| 1232 | ENABLE_FEAT_RAS \ |
| 1233 | ENABLE_FEAT_DIT \ |
| 1234 | ENABLE_FEAT_ECV \ |
| 1235 | ENABLE_FEAT_FGT \ |
| 1236 | ENABLE_FEAT_HCX \ |
| 1237 | ENABLE_FEAT_PAN \ |
| 1238 | ENABLE_FEAT_RNG \ |
| 1239 | ENABLE_FEAT_RNG_TRAP \ |
| 1240 | ENABLE_FEAT_SEL2 \ |
| 1241 | ENABLE_FEAT_TCR2 \ |
| 1242 | ENABLE_FEAT_S2PIE \ |
| 1243 | ENABLE_FEAT_S1PIE \ |
| 1244 | ENABLE_FEAT_S2POE \ |
| 1245 | ENABLE_FEAT_S1POE \ |
| 1246 | ENABLE_FEAT_GCS \ |
| 1247 | ENABLE_FEAT_VHE \ |
Maksims Svecovs | df4ad84 | 2023-03-24 13:05:09 +0000 | [diff] [blame] | 1248 | ENABLE_FEAT_MTE_PERM \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1249 | ENABLE_MPAM_FOR_LOWER_ELS \ |
| 1250 | ENABLE_RME \ |
| 1251 | ENABLE_SPE_FOR_NS \ |
| 1252 | ENABLE_SYS_REG_TRACE_FOR_NS \ |
| 1253 | ENABLE_SME_FOR_NS \ |
| 1254 | ENABLE_SME2_FOR_NS \ |
| 1255 | ENABLE_SVE_FOR_NS \ |
| 1256 | ENABLE_TRF_FOR_NS \ |
| 1257 | FW_ENC_STATUS \ |
| 1258 | NR_OF_FW_BANKS \ |
| 1259 | NR_OF_IMAGES_IN_FW_BANK \ |
| 1260 | TWED_DELAY \ |
| 1261 | ENABLE_FEAT_TWED \ |
| 1262 | SVE_VECTOR_LEN \ |
Varun Wadekar | 0a46eb1 | 2023-04-13 21:06:18 +0100 | [diff] [blame] | 1263 | IMPDEF_SYSREG_TRAP \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1264 | ))) |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 1265 | |
Justin Chadwell | f9b32c1 | 2019-07-29 17:13:10 +0100 | [diff] [blame] | 1266 | ifdef KEY_SIZE |
| 1267 | $(eval $(call assert_numeric,KEY_SIZE)) |
| 1268 | endif |
| 1269 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1270 | ifeq ($(filter $(SANITIZE_UB), on off trap),) |
| 1271 | $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap") |
| 1272 | endif |
| 1273 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1274 | ################################################################################ |
| 1275 | # Add definitions to the cpp preprocessor based on the current build options. |
| 1276 | # This is done after including the platform specific makefile to allow the |
| 1277 | # platform to overwrite the default options |
| 1278 | ################################################################################ |
Jeenu Viswambharan | d1b6015 | 2014-05-12 15:28:47 +0100 | [diff] [blame] | 1279 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1280 | $(eval $(call add_defines,\ |
| 1281 | $(sort \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1282 | ALLOW_RO_XLAT_TABLES \ |
| 1283 | ARM_ARCH_MAJOR \ |
| 1284 | ARM_ARCH_MINOR \ |
| 1285 | BL2_ENABLE_SP_LOAD \ |
| 1286 | COLD_BOOT_SINGLE_CPU \ |
| 1287 | CTX_INCLUDE_AARCH32_REGS \ |
| 1288 | CTX_INCLUDE_FPREGS \ |
| 1289 | CTX_INCLUDE_PAUTH_REGS \ |
| 1290 | EL3_EXCEPTION_HANDLING \ |
| 1291 | CTX_INCLUDE_MTE_REGS \ |
| 1292 | CTX_INCLUDE_EL2_REGS \ |
| 1293 | CTX_INCLUDE_NEVE_REGS \ |
| 1294 | DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \ |
| 1295 | DISABLE_MTPMU \ |
| 1296 | ENABLE_FEAT_AMU \ |
| 1297 | ENABLE_AMU_AUXILIARY_COUNTERS \ |
| 1298 | ENABLE_AMU_FCONF \ |
| 1299 | AMU_RESTRICT_COUNTERS \ |
| 1300 | ENABLE_ASSERTIONS \ |
| 1301 | ENABLE_BTI \ |
| 1302 | ENABLE_MPAM_FOR_LOWER_ELS \ |
| 1303 | ENABLE_PAUTH \ |
| 1304 | ENABLE_PIE \ |
| 1305 | ENABLE_PMF \ |
| 1306 | ENABLE_PSCI_STAT \ |
| 1307 | ENABLE_RME \ |
| 1308 | ENABLE_RUNTIME_INSTRUMENTATION \ |
| 1309 | ENABLE_SME_FOR_NS \ |
| 1310 | ENABLE_SME2_FOR_NS \ |
| 1311 | ENABLE_SME_FOR_SWD \ |
| 1312 | ENABLE_SPE_FOR_NS \ |
| 1313 | ENABLE_SVE_FOR_NS \ |
| 1314 | ENABLE_SVE_FOR_SWD \ |
| 1315 | ENCRYPT_BL31 \ |
| 1316 | ENCRYPT_BL32 \ |
| 1317 | ERROR_DEPRECATED \ |
| 1318 | FAULT_INJECTION_SUPPORT \ |
| 1319 | GICV2_G0_FOR_EL3 \ |
| 1320 | HANDLE_EA_EL3_FIRST_NS \ |
| 1321 | HW_ASSISTED_COHERENCY \ |
| 1322 | LOG_LEVEL \ |
| 1323 | MEASURED_BOOT \ |
| 1324 | DRTM_SUPPORT \ |
| 1325 | NS_TIMER_SWITCH \ |
| 1326 | PL011_GENERIC_UART \ |
| 1327 | PLAT_${PLAT} \ |
| 1328 | PLAT_RSS_NOT_SUPPORTED \ |
| 1329 | PROGRAMMABLE_RESET_ADDRESS \ |
| 1330 | PSCI_EXTENDED_STATE_ID \ |
| 1331 | PSCI_OS_INIT_MODE \ |
| 1332 | ENABLE_FEAT_RAS \ |
| 1333 | RAS_FFH_SUPPORT \ |
| 1334 | RESET_TO_BL31 \ |
| 1335 | SEPARATE_CODE_AND_RODATA \ |
| 1336 | SEPARATE_BL2_NOLOAD_REGION \ |
| 1337 | SEPARATE_NOBITS_REGION \ |
| 1338 | RECLAIM_INIT_CODE \ |
| 1339 | SPD_${SPD} \ |
| 1340 | SPIN_ON_BL1_EXIT \ |
| 1341 | SPM_MM \ |
| 1342 | SPMC_AT_EL3 \ |
| 1343 | SPMD_SPM_AT_SEL2 \ |
| 1344 | TRUSTED_BOARD_BOOT \ |
| 1345 | CRYPTO_SUPPORT \ |
| 1346 | TRNG_SUPPORT \ |
| 1347 | ERRATA_ABI_SUPPORT \ |
Sona Mathew | 5a4c9fc | 2023-03-14 14:02:03 -0500 | [diff] [blame] | 1348 | ERRATA_NON_ARM_INTERCONNECT \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1349 | USE_COHERENT_MEM \ |
| 1350 | USE_DEBUGFS \ |
| 1351 | ARM_IO_IN_DTB \ |
| 1352 | SDEI_IN_FCONF \ |
| 1353 | SEC_INT_DESC_IN_FCONF \ |
| 1354 | USE_ROMLIB \ |
| 1355 | USE_TBBR_DEFS \ |
| 1356 | WARMBOOT_ENABLE_DCACHE_EARLY \ |
| 1357 | RESET_TO_BL2 \ |
| 1358 | BL2_RUNS_AT_EL3 \ |
| 1359 | BL2_IN_XIP_MEM \ |
| 1360 | BL2_INV_DCACHE \ |
| 1361 | USE_SPINLOCK_CAS \ |
| 1362 | ERRATA_SPECULATIVE_AT \ |
| 1363 | RAS_TRAP_NS_ERR_REC_ACCESS \ |
| 1364 | COT_DESC_IN_DTB \ |
| 1365 | USE_SP804_TIMER \ |
| 1366 | ENABLE_FEAT_RNG \ |
| 1367 | ENABLE_FEAT_RNG_TRAP \ |
| 1368 | ENABLE_FEAT_SB \ |
| 1369 | ENABLE_FEAT_DIT \ |
| 1370 | NR_OF_FW_BANKS \ |
| 1371 | NR_OF_IMAGES_IN_FW_BANK \ |
| 1372 | PSA_FWU_SUPPORT \ |
| 1373 | ENABLE_BRBE_FOR_NS \ |
| 1374 | ENABLE_TRBE_FOR_NS \ |
| 1375 | ENABLE_SYS_REG_TRACE_FOR_NS \ |
| 1376 | ENABLE_TRF_FOR_NS \ |
| 1377 | ENABLE_FEAT_HCX \ |
| 1378 | ENABLE_MPMM \ |
| 1379 | ENABLE_MPMM_FCONF \ |
| 1380 | ENABLE_FEAT_FGT \ |
| 1381 | ENABLE_FEAT_ECV \ |
| 1382 | ENABLE_FEAT_AMUv1p1 \ |
| 1383 | ENABLE_FEAT_SEL2 \ |
| 1384 | ENABLE_FEAT_VHE \ |
| 1385 | ENABLE_FEAT_CSV2_2 \ |
| 1386 | ENABLE_FEAT_PAN \ |
| 1387 | ENABLE_FEAT_TCR2 \ |
| 1388 | ENABLE_FEAT_S2PIE \ |
| 1389 | ENABLE_FEAT_S1PIE \ |
| 1390 | ENABLE_FEAT_S2POE \ |
| 1391 | ENABLE_FEAT_S1POE \ |
| 1392 | ENABLE_FEAT_GCS \ |
Maksims Svecovs | df4ad84 | 2023-03-24 13:05:09 +0000 | [diff] [blame] | 1393 | ENABLE_FEAT_MTE_PERM \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1394 | FEATURE_DETECTION \ |
| 1395 | TWED_DELAY \ |
| 1396 | ENABLE_FEAT_TWED \ |
Okash Khawaja | 037b56e | 2022-11-04 12:38:01 +0000 | [diff] [blame] | 1397 | CONDITIONAL_CMO \ |
Varun Wadekar | 0a46eb1 | 2023-04-13 21:06:18 +0100 | [diff] [blame] | 1398 | IMPDEF_SYSREG_TRAP \ |
Jayanth Dodderi Chidanand | 23c2fe2 | 2023-04-26 15:57:30 +0100 | [diff] [blame] | 1399 | SVE_VECTOR_LEN \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1400 | ))) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 1401 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1402 | ifeq (${SANITIZE_UB},trap) |
| 1403 | $(eval $(call add_define,MONITOR_TRAPS)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1404 | endif #(SANITIZE_UB) |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1405 | |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 1406 | # Define the EL3_PAYLOAD_BASE flag only if it is provided. |
| 1407 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 1408 | $(eval $(call add_define,EL3_PAYLOAD_BASE)) |
| 1409 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1410 | # Define the PRELOADED_BL33_BASE flag only if it is provided and |
| 1411 | # EL3_PAYLOAD_BASE is not defined, as it has priority. |
| 1412 | ifdef PRELOADED_BL33_BASE |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 1413 | $(eval $(call add_define,PRELOADED_BL33_BASE)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1414 | endif |
| 1415 | endif #(EL3_PAYLOAD_BASE) |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 1416 | |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 1417 | # Define the DYN_DISABLE_AUTH flag only if set. |
| 1418 | ifeq (${DYN_DISABLE_AUTH},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1419 | $(eval $(call add_define,DYN_DISABLE_AUTH)) |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 1420 | endif |
| 1421 | |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 1422 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1423 | $(eval $(call add_define,USE_ARM_LINK)) |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 1424 | endif |
| 1425 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1426 | # Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1427 | ifeq (${SPD},spmd) |
Olivier Deprez | 042db53 | 2020-03-19 09:27:11 +0100 | [diff] [blame] | 1428 | ifdef SP_LAYOUT_FILE |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1429 | -include $(BUILD_PLAT)/sp_gen.mk |
| 1430 | FIP_DEPS += sp |
| 1431 | CRT_DEPS += sp |
| 1432 | NEED_SP_PKG := yes |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1433 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1434 | ifeq (${SPMD_SPM_AT_SEL2},1) |
| 1435 | $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE") |
| 1436 | endif |
| 1437 | endif #(SP_LAYOUT_FILE) |
| 1438 | endif #(SPD) |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1439 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1440 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1441 | # Build targets |
| 1442 | ################################################################################ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1443 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1444 | .PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1445 | .SUFFIXES: |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1446 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1447 | all: msg_start |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1448 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1449 | msg_start: |
| 1450 | @echo "Building ${PLAT}" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1451 | |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1452 | ifeq (${ERROR_DEPRECATED},0) |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 1453 | # Check if deprecated declarations and cpp warnings should be treated as error or not. |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 1454 | ifneq ($(findstring clang,$(notdir $(CC))),) |
| 1455 | CPPFLAGS += -Wno-error=deprecated-declarations |
| 1456 | else |
Dan Handley | 6fa89a2 | 2018-02-27 16:03:58 +0000 | [diff] [blame] | 1457 | CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1458 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1459 | endif #(!ERROR_DEPRECATED) |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1460 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1461 | $(eval $(call MAKE_LIB_DIRS)) |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1462 | $(eval $(call MAKE_LIB,c)) |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1463 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1464 | # Expand build macros for the different images |
| 1465 | ifeq (${NEED_BL1},yes) |
Chris Kay | 0a542ec | 2021-09-28 15:44:19 +0100 | [diff] [blame] | 1466 | BL1_SOURCES := $(sort ${BL1_SOURCES}) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1467 | $(eval $(call MAKE_BL,bl1)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1468 | endif #(NEED_BL1) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1469 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1470 | ifeq (${NEED_BL2},yes) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1471 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 1472 | ifeq (${RESET_TO_BL2}, 0) |
Roberto Vargas | 53c052b | 2018-01-02 11:23:41 +0000 | [diff] [blame] | 1473 | FIP_BL2_ARGS := tb-fw |
| 1474 | endif |
| 1475 | |
Chris Kay | fb3b051 | 2021-09-28 15:44:37 +0100 | [diff] [blame] | 1476 | BL2_SOURCES := $(sort ${BL2_SOURCES}) |
| 1477 | |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1478 | $(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1479 | $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS}))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1480 | |
| 1481 | endif #(NEED_BL2) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1482 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1483 | ifeq (${NEED_SCP_BL2},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1484 | $(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1485 | endif #(NEED_SCP_BL2) |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1486 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1487 | ifeq (${NEED_BL31},yes) |
| 1488 | BL31_SOURCES += ${SPD_SOURCES} |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1489 | # Sort BL31 source files to remove duplicates |
| 1490 | BL31_SOURCES := $(sort ${BL31_SOURCES}) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1491 | ifneq (${DECRYPTION_SUPPORT},none) |
| 1492 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1493 | $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31)))) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1494 | else |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1495 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1496 | $(eval $(call MAKE_BL,bl31,soc-fw))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1497 | endif #(DECRYPTION_SUPPORT) |
| 1498 | endif #(NEED_BL31) |
Juan Castillo | 379954c | 2014-11-04 17:36:40 +0000 | [diff] [blame] | 1499 | |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 1500 | # If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the |
Masahiro Yamada | 4d15680 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1501 | # build system will call TOOL_ADD_IMG to print a warning message and abort the |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 1502 | # process. Note that the dependency on BL32 applies to the FIP only. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1503 | ifeq (${NEED_BL32},yes) |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1504 | # Sort BL32 source files to remove duplicates |
| 1505 | BL32_SOURCES := $(sort ${BL32_SOURCES}) |
Masahiro Yamada | 6ced1b2 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1506 | BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1)) |
| 1507 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1508 | ifneq (${DECRYPTION_SUPPORT},none) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1509 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\ |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1510 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32)))) |
| 1511 | else |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1512 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\ |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1513 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1514 | endif #(DECRYPTION_SUPPORT) |
| 1515 | endif #(NEED_BL32) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1516 | |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 1517 | # If RMM image is needed but RMM is not defined, Test Realm Payload (TRP) |
| 1518 | # needs to be built from RMM_SOURCES. |
| 1519 | ifeq (${NEED_RMM},yes) |
| 1520 | # Sort RMM source files to remove duplicates |
| 1521 | RMM_SOURCES := $(sort ${RMM_SOURCES}) |
| 1522 | BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1)) |
| 1523 | |
| 1524 | $(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1525 | $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw))) |
| 1526 | endif #(NEED_RMM) |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 1527 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1528 | # Add the BL33 image if required by the platform |
| 1529 | ifeq (${NEED_BL33},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1530 | $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1531 | endif #(NEED_BL33) |
Juan Castillo | 9c25a40 | 2015-01-13 12:21:04 +0000 | [diff] [blame] | 1532 | |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1533 | ifeq (${NEED_BL2U},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1534 | $(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1535 | $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1536 | endif #(NEED_BL2U) |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1537 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1538 | # Expand build macros for the different images |
| 1539 | ifeq (${NEED_FDT},yes) |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 1540 | $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1541 | endif #(NEED_FDT) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1542 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1543 | # Add Secure Partition packages |
| 1544 | ifeq (${NEED_SP_PKG},yes) |
| 1545 | $(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT} |
Ruari Phipps | 571ed6b | 2020-07-24 16:20:57 +0100 | [diff] [blame] | 1546 | ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} |
J-Alves | ef8e098 | 2022-03-22 16:28:51 +0000 | [diff] [blame] | 1547 | sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS) |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1548 | @${ECHO_BLANK_LINE} |
| 1549 | @echo "Built SP Images successfully" |
| 1550 | @${ECHO_BLANK_LINE} |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1551 | endif #(NEED_SP_PKG) |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1552 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1553 | locate-checkpatch: |
| 1554 | ifndef CHECKPATCH |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1555 | $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl") |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1556 | else |
| 1557 | ifeq (,$(wildcard ${CHECKPATCH})) |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1558 | $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl") |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1559 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1560 | endif #(CHECKPATCH) |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1561 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1562 | clean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1563 | @echo " CLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1564 | $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1565 | ifdef UNIX_MK |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1566 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1567 | else |
| 1568 | # Clear the MAKEFLAGS as we do not want |
| 1569 | # to pass the gnumake flags to nmake. |
| 1570 | ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1571 | endif #(UNIX_MK) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1572 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1573 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1574 | ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1575 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 1576 | realclean distclean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1577 | @echo " REALCLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1578 | $(call SHELL_REMOVE_DIR,${BUILD_BASE}) |
| 1579 | $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1580 | ifdef UNIX_MK |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1581 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1582 | else |
| 1583 | # Clear the MAKEFLAGS as we do not want |
| 1584 | # to pass the gnumake flags to nmake. |
| 1585 | ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1586 | endif #(UNIX_MK) |
Nicolas Boulenguez | df612a5 | 2021-03-31 12:22:45 +0200 | [diff] [blame] | 1587 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1588 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1589 | ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1590 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1591 | checkcodebase: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1592 | @echo " CHECKING STYLE" |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1593 | @if test -d .git ; then \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1594 | git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1595 | while read GIT_FILE ; \ |
| 1596 | do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ |
| 1597 | done ; \ |
| 1598 | else \ |
| 1599 | find . -type f -not -iwholename "*.git*" \ |
| 1600 | -not -iwholename "*build*" \ |
| 1601 | -not -iwholename "*libfdt*" \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1602 | -not -iwholename "*libc*" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1603 | -not -iwholename "*docs*" \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1604 | -not -iwholename "*.rst" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1605 | -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ |
| 1606 | fi |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1607 | |
| 1608 | checkpatch: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1609 | @echo " CHECKING STYLE" |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1610 | @if test -n "${CHECKPATCH_OPTS}"; then \ |
| 1611 | echo " with ${CHECKPATCH_OPTS} option(s)"; \ |
| 1612 | fi |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1613 | ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \ |
Yann Gautier | a10a685 | 2021-11-02 18:03:31 +0100 | [diff] [blame] | 1614 | for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \ |
| 1615 | do \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1616 | printf "\n[*] Checking style of '$$commit'\n\n"; \ |
| 1617 | git log --format=email "$$commit~..$$commit" \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1618 | -- ${CHECK_PATHS} | \ |
| 1619 | ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1620 | git diff --format=email "$$commit~..$$commit" \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1621 | -- ${CHECK_PATHS} | \ |
| 1622 | ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1623 | done |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1624 | |
| 1625 | certtool: ${CRTTOOL} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1626 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1627 | ${CRTTOOL}: FORCE |
Lionel Debieve | 730bde8 | 2022-11-14 11:05:09 +0100 | [diff] [blame] | 1628 | ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${CRTTOOLPATH} all |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1629 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1630 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1631 | @${ECHO_BLANK_LINE} |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 1632 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1633 | ifneq (${GENERATE_COT},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1634 | certificates: ${CRT_DEPS} ${CRTTOOL} |
| 1635 | ${Q}${CRTTOOL} ${CRT_ARGS} |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1636 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1637 | @echo "Built $@ successfully" |
| 1638 | @echo "Certificates can be found in ${BUILD_PLAT}" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1639 | @${ECHO_BLANK_LINE} |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1640 | endif #(GENERATE_COT) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1641 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1642 | ${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 1643 | $(eval ${CHECK_FIP_CMD}) |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1644 | ${Q}${FIPTOOL} create ${FIP_ARGS} $@ |
| 1645 | ${Q}${FIPTOOL} info $@ |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1646 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1647 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1648 | @${ECHO_BLANK_LINE} |
Soby Mathew | dbee7fc | 2014-09-08 17:51:01 +0100 | [diff] [blame] | 1649 | |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1650 | ifneq (${GENERATE_COT},0) |
| 1651 | fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} |
| 1652 | ${Q}${CRTTOOL} ${FWU_CRT_ARGS} |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1653 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1654 | @echo "Built $@ successfully" |
| 1655 | @echo "FWU certificates can be found in ${BUILD_PLAT}" |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1656 | @${ECHO_BLANK_LINE} |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1657 | endif #(GENERATE_COT) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1658 | |
| 1659 | ${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 1660 | $(eval ${CHECK_FWU_FIP_CMD}) |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1661 | ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@ |
| 1662 | ${Q}${FIPTOOL} info $@ |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1663 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1664 | @echo "Built $@ successfully" |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1665 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1666 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1667 | fiptool: ${FIPTOOL} |
| 1668 | fip: ${BUILD_PLAT}/${FIP_NAME} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1669 | fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1670 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1671 | ${FIPTOOL}: FORCE |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1672 | ifdef UNIX_MK |
Lionel Debieve | 730bde8 | 2022-11-14 11:05:09 +0100 | [diff] [blame] | 1673 | ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1674 | else |
| 1675 | # Clear the MAKEFLAGS as we do not want |
| 1676 | # to pass the gnumake flags to nmake. |
| 1677 | ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1678 | endif #(UNIX_MK) |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1679 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1680 | romlib.bin: libraries FORCE |
John Tsichritzis | f6ea99b | 2019-05-21 15:47:37 +0100 | [diff] [blame] | 1681 | ${Q}${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES='${INCLUDES}' DEFINES='${DEFINES}' --no-print-directory -C ${ROMLIBPATH} all |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1682 | |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1683 | memmap: all |
Harrison Mutai | e9bc488 | 2023-02-23 10:33:58 +0000 | [diff] [blame] | 1684 | ifdef UNIX_MK |
| 1685 | ${Q}PYTHONPATH=${CURDIR}/tools/memory \ |
| 1686 | ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT} |
| 1687 | else |
| 1688 | ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \ |
| 1689 | ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT} |
| 1690 | endif |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1691 | |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1692 | doc: |
| 1693 | @echo " BUILD DOCUMENTATION" |
| 1694 | ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html |
| 1695 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1696 | enctool: ${ENCTOOL} |
| 1697 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1698 | ${ENCTOOL}: FORCE |
Lionel Debieve | 730bde8 | 2022-11-14 11:05:09 +0100 | [diff] [blame] | 1699 | ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1700 | @${ECHO_BLANK_LINE} |
| 1701 | @echo "Built $@ successfully" |
| 1702 | @${ECHO_BLANK_LINE} |
| 1703 | |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 1704 | cscope: |
| 1705 | @echo " CSCOPE" |
| 1706 | ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files |
| 1707 | ${Q}cscope -b -q -k |
| 1708 | |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1709 | help: |
John Tsichritzis | 0c4dded | 2019-05-21 15:57:31 +0100 | [diff] [blame] | 1710 | @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1711 | @echo "" |
| 1712 | @echo "PLAT is used to specify which platform you wish to build." |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 1713 | @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1714 | @echo "" |
John Tsichritzis | 0c4dded | 2019-05-21 15:57:31 +0100 | [diff] [blame] | 1715 | @echo "platform = ${PLATFORM_LIST}" |
| 1716 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1717 | @echo "Please refer to the User Guide for a list of all supported options." |
| 1718 | @echo "Note that the build system doesn't track dependencies for build " |
| 1719 | @echo "options. Therefore, if any of the build options are changed " |
| 1720 | @echo "from a previous build, a clean build must be performed." |
| 1721 | @echo "" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1722 | @echo "Supported Targets:" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1723 | @echo " all Build all individual bootloader binaries" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1724 | @echo " bl1 Build the BL1 binary" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 1725 | @echo " bl2 Build the BL2 binary" |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1726 | @echo " bl2u Build the BL2U binary" |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 1727 | @echo " bl31 Build the BL31 binary" |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 1728 | @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " |
| 1729 | @echo " this builds secure payload specified by AARCH32_SP" |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1730 | @echo " certificates Build the certificates (requires 'GENERATE_COT=1')" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1731 | @echo " fip Build the Firmware Image Package (FIP)" |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1732 | @echo " fwu_fip Build the FWU Firmware Image Package (FIP)" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1733 | @echo " checkcodebase Check the coding style of the entire source tree" |
| 1734 | @echo " checkpatch Check the coding style on changes in the current" |
| 1735 | @echo " branch against BASE_COMMIT (default origin/master)" |
| 1736 | @echo " clean Clean the build for the selected platform" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1737 | @echo " cscope Generate cscope index" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1738 | @echo " distclean Remove all build artifacts for all platforms" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1739 | @echo " certtool Build the Certificate generation tool" |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1740 | @echo " enctool Build the Firmware encryption tool" |
Andreas Färber | ec82cfb | 2016-10-10 05:18:49 +0200 | [diff] [blame] | 1741 | @echo " fiptool Build the Firmware Image Package (FIP) creation tool" |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1742 | @echo " sp Build the Secure Partition Packages" |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 1743 | @echo " sptool Build the Secure Partition Package creation tool" |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 1744 | @echo " dtbs Build the Device Tree Blobs (if required for the platform)" |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1745 | @echo " memmap Print the memory map of the built binaries" |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1746 | @echo " doc Build html based documentation using Sphinx tool" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1747 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1748 | @echo "Note: most build targets require PLAT to be set to a specific platform." |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1749 | @echo "" |
| 1750 | @echo "example: build all targets for the FVP platform:" |
| 1751 | @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1752 | |
| 1753 | .PHONY: FORCE |
| 1754 | FORCE:; |