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