Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | # |
Maksims Svecovs | 1e25c5b | 2023-02-02 16:10:22 +0000 | [diff] [blame] | 2 | # Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | # |
| 6 | |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 7 | # |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 8 | # Trusted Firmware Version |
| 9 | # |
Soby Mathew | d42eaee | 2018-10-01 16:16:34 +0100 | [diff] [blame] | 10 | VERSION_MAJOR := 2 |
Juan Pablo Conde | 5248749 | 2023-05-15 22:17:17 -0500 | [diff] [blame] | 11 | VERSION_MINOR := 9 |
laurenw-arm | e954f65 | 2022-07-12 10:12:05 -0500 | [diff] [blame] | 12 | VERSION := ${VERSION_MAJOR}.${VERSION_MINOR} |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 13 | |
Juan Castillo | 396644b | 2015-10-22 11:34:44 +0100 | [diff] [blame] | 14 | # Default goal is build all images |
| 15 | .DEFAULT_GOAL := all |
| 16 | |
Douglas Raillard | 527cd90 | 2016-12-28 14:47:50 +0000 | [diff] [blame] | 17 | # Avoid any implicit propagation of command line variable definitions to |
| 18 | # sub-Makefiles, like CFLAGS that we reserved for the firmware images' |
| 19 | # usage. Other command line options like "-s" are still propagated as usual. |
| 20 | MAKEOVERRIDES = |
| 21 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 22 | MAKE_HELPERS_DIRECTORY := make_helpers/ |
| 23 | include ${MAKE_HELPERS_DIRECTORY}build_macros.mk |
Evan Lloyd | a71d259 | 2015-12-02 18:56:06 +0000 | [diff] [blame] | 24 | include ${MAKE_HELPERS_DIRECTORY}build_env.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 25 | |
| 26 | ################################################################################ |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 27 | # Default values for build configurations, and their dependencies |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 28 | ################################################################################ |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 29 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 30 | include ${MAKE_HELPERS_DIRECTORY}defaults.mk |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 31 | |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 32 | # Assertions enabled for DEBUG builds by default |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 33 | ENABLE_ASSERTIONS := ${DEBUG} |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 34 | ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} |
| 35 | PLAT := ${DEFAULT_PLAT} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 36 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 37 | ################################################################################ |
| 38 | # Checkpatch script options |
| 39 | ################################################################################ |
| 40 | |
Sandrine Bailleux | 0b5a158 | 2016-06-02 11:19:59 +0100 | [diff] [blame] | 41 | CHECKCODE_ARGS := --no-patch |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 42 | # Do not check the coding style on imported library files or documentation files |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 43 | INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 44 | include/drivers/arm/cryptocell, \ |
| 45 | $(wildcard include/drivers/arm/*))) |
| 46 | INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h |
| 47 | INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 48 | include/drivers/arm, \ |
| 49 | $(wildcard include/drivers/*))) |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 50 | INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 51 | include/lib/libfdt \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 52 | include/lib/libc, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 53 | $(wildcard include/lib/*))) |
| 54 | INC_DIRS_TO_CHECK := $(sort $(filter-out \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 55 | include/lib \ |
| 56 | include/drivers, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 57 | $(wildcard include/*))) |
| 58 | LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 59 | lib/compiler-rt \ |
Antonio Nino Diaz | d84f88e | 2017-01-16 17:20:45 +0000 | [diff] [blame] | 60 | lib/libfdt% \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 61 | lib/libc, \ |
Daniel Boulby | 958f1dd | 2022-10-05 11:05:22 +0100 | [diff] [blame] | 62 | lib/zlib \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 63 | $(wildcard lib/*))) |
| 64 | ROOT_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 65 | lib \ |
| 66 | include \ |
| 67 | docs \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 68 | %.rst, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 69 | $(wildcard *))) |
| 70 | CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ |
| 71 | ${INC_DIRS_TO_CHECK} \ |
| 72 | ${INC_LIB_DIRS_TO_CHECK} \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 73 | ${LIB_DIRS_TO_CHECK} \ |
| 74 | ${INC_DRV_DIRS_TO_CHECK} \ |
| 75 | ${INC_ARM_DIRS_TO_CHECK} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 76 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 77 | |
| 78 | ################################################################################ |
| 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 |
Shruti Gupta | 3440e56 | 2023-05-15 14:43:57 +0100 | [diff] [blame] | 155 | CTX_INCLUDE_PAUTH_REGS := 1 |
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 |
Govindraj Raja | aa8ef3f | 2023-05-05 09:09:36 -0500 | [diff] [blame] | 417 | |
| 418 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523 |
| 419 | TF_CFLAGS += $(call cc_option, --param=min-pagesize=0) |
| 420 | |
Justin Chadwell | 7a91423 | 2019-07-03 14:15:56 +0100 | [diff] [blame] | 421 | else |
| 422 | # using clang |
Justin Chadwell | 42d18ca | 2019-09-18 14:13:42 +0100 | [diff] [blame] | 423 | WARNINGS += -Wshift-overflow -Wshift-sign-overflow \ |
| 424 | -Wlogical-op-parentheses |
Ambroise Vincent | 067e4d9 | 2019-05-24 12:47:43 +0100 | [diff] [blame] | 425 | endif |
| 426 | |
Yann Gautier | 957c353 | 2018-12-10 18:08:53 +0100 | [diff] [blame] | 427 | ifneq (${E},0) |
| 428 | ERRORS := -Werror |
| 429 | endif |
| 430 | |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 431 | CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \ |
| 432 | $(ERRORS) $(WARNINGS) |
Masahiro Yamada | 0dec9fa | 2016-12-22 12:51:53 +0900 | [diff] [blame] | 433 | ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \ |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 434 | -ffreestanding -Wa,--fatal-warnings |
Masahiro Yamada | 0dec9fa | 2016-12-22 12:51:53 +0900 | [diff] [blame] | 435 | TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 436 | -ffunction-sections -fdata-sections \ |
| 437 | -ffreestanding -fno-builtin -fno-common \ |
| 438 | -Os -std=gnu99 |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 439 | |
Mark Brown | 6486997 | 2022-04-20 18:14:32 +0100 | [diff] [blame] | 440 | $(eval $(call add_define,SVE_VECTOR_LEN)) |
| 441 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 442 | ifeq (${SANITIZE_UB},on) |
| 443 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover |
| 444 | endif |
| 445 | ifeq (${SANITIZE_UB},trap) |
| 446 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \ |
| 447 | -fsanitize-undefined-trap-on-error |
| 448 | endif |
| 449 | |
david cunado | 34ab609 | 2017-11-30 21:58:01 +0000 | [diff] [blame] | 450 | GCC_V_OUTPUT := $(shell $(CC) -v 2>&1) |
david cunado | 34ab609 | 2017-11-30 21:58:01 +0000 | [diff] [blame] | 451 | |
Marco Felsch | 24ad840 | 2022-11-09 12:59:09 +0100 | [diff] [blame] | 452 | TF_LDFLAGS += -z noexecstack |
| 453 | |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 454 | # LD = armlink |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 455 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
| 456 | TF_LDFLAGS += --diag_error=warning --lto_level=O1 |
| 457 | TF_LDFLAGS += --remove --info=unused,unusedsymbols |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 458 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 459 | |
| 460 | # LD = gcc (used when GCC LTO is enabled) |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 461 | else ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 462 | # Pass ld options with Wl or Xlinker switches |
| 463 | TF_LDFLAGS += -Wl,--fatal-warnings -O1 |
| 464 | TF_LDFLAGS += -Wl,--gc-sections |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 465 | |
| 466 | TF_LDFLAGS += -Wl,-z,common-page-size=4096 # Configure page size constants |
| 467 | TF_LDFLAGS += -Wl,-z,max-page-size=4096 |
| 468 | |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 469 | ifeq ($(ENABLE_LTO),1) |
| 470 | ifeq (${ARCH},aarch64) |
| 471 | TF_LDFLAGS += -flto -fuse-linker-plugin |
| 472 | endif |
| 473 | endif |
| 474 | # GCC automatically adds fix-cortex-a53-843419 flag when used to link |
| 475 | # which breaks some builds, so disable if errata fix is not explicitly enabled |
| 476 | ifneq (${ERRATA_A53_843419},1) |
| 477 | TF_LDFLAGS += -mno-fix-cortex-a53-843419 |
| 478 | endif |
| 479 | TF_LDFLAGS += -nostdlib |
| 480 | TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH))) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 481 | |
| 482 | # LD = gcc-ld (ld) or llvm-ld (ld.lld) or other |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 483 | else |
Marco Felsch | 24ad840 | 2022-11-09 12:59:09 +0100 | [diff] [blame] | 484 | # With ld.bfd version 2.39 and newer new warnings are added. Skip those since we |
| 485 | # are not loaded by a elf loader. |
| 486 | TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments) |
Yabin Cui | ed7dc51 | 2023-01-19 20:06:04 +0000 | [diff] [blame] | 487 | TF_LDFLAGS += -O1 |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 488 | TF_LDFLAGS += --gc-sections |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 489 | |
| 490 | TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants |
| 491 | TF_LDFLAGS += -z max-page-size=4096 |
| 492 | |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 493 | # ld.lld doesn't recognize the errata flags, |
Yabin Cui | ed7dc51 | 2023-01-19 20:06:04 +0000 | [diff] [blame] | 494 | # therefore don't add those in that case. |
| 495 | # ld.lld reports section type mismatch warnings, |
| 496 | # therefore don't add --fatal-warnings to it. |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 497 | ifeq ($(findstring ld.lld,$(notdir $(LD))),) |
Yabin Cui | ed7dc51 | 2023-01-19 20:06:04 +0000 | [diff] [blame] | 498 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 499 | endif |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 500 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 501 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 502 | DTC_FLAGS += -I dts -O dtb |
Louis Mayencourt | 6b232d9 | 2020-02-28 16:57:30 +0000 | [diff] [blame] | 503 | DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \ |
| 504 | -x assembler-with-cpp $(DEFINES) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 505 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 506 | ################################################################################ |
| 507 | # Common sources and include directories |
| 508 | ################################################################################ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 509 | include ${MAKE_HELPERS_DIRECTORY}arch_features.mk |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 510 | include lib/compiler-rt/compiler-rt.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 511 | |
| 512 | BL_COMMON_SOURCES += common/bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 513 | common/tf_log.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 514 | common/${ARCH}/debug.S \ |
Julius Werner | 03020da | 2018-11-27 22:10:56 -0800 | [diff] [blame] | 515 | drivers/console/multi_console.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 516 | lib/${ARCH}/cache_helpers.S \ |
| 517 | lib/${ARCH}/misc_helpers.S \ |
Soby Mathew | 2f38ce3 | 2018-02-08 17:45:12 +0000 | [diff] [blame] | 518 | plat/common/plat_bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 519 | plat/common/plat_log_common.c \ |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame] | 520 | plat/common/${ARCH}/plat_common.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 521 | plat/common/${ARCH}/platform_helpers.S \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 522 | ${COMPILER_RT_SRCS} |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 523 | |
Boyan Karatotev | 0257693 | 2023-01-13 16:47:07 +0000 | [diff] [blame] | 524 | # Pointer Authentication sources |
| 525 | ifeq (${ENABLE_PAUTH}, 1) |
| 526 | # arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the |
| 527 | # Pauth support. As it's not secure, it must be reimplemented for real platforms |
| 528 | BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S |
| 529 | endif |
| 530 | |
Antonio Nino Diaz | eea20fc | 2018-08-16 15:42:44 +0100 | [diff] [blame] | 531 | ifeq ($(notdir $(CC)),armclang) |
| 532 | BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S |
| 533 | endif |
| 534 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 535 | ifeq (${SANITIZE_UB},on) |
| 536 | BL_COMMON_SOURCES += plat/common/ubsan.c |
| 537 | endif |
| 538 | |
Yann Gautier | 2cf1dbc | 2018-06-18 16:00:23 +0200 | [diff] [blame] | 539 | INCLUDES += -Iinclude \ |
Antonio Nino Diaz | 8d1ade6 | 2018-12-17 17:20:57 +0000 | [diff] [blame] | 540 | -Iinclude/arch/${ARCH} \ |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 541 | -Iinclude/lib/cpus/${ARCH} \ |
| 542 | -Iinclude/lib/el3_runtime/${ARCH} \ |
| 543 | ${PLAT_INCLUDES} \ |
| 544 | ${SPD_INCLUDES} |
| 545 | |
Antonio Nino Diaz | c3a2cf2 | 2018-11-19 11:48:30 +0000 | [diff] [blame] | 546 | include common/backtrace/backtrace.mk |
| 547 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 548 | ################################################################################ |
| 549 | # Generic definitions |
| 550 | ################################################################################ |
| 551 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 552 | include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk |
| 553 | |
Grant Likely | 388248a | 2020-07-30 08:50:10 +0100 | [diff] [blame] | 554 | ifeq (${BUILD_BASE},) |
| 555 | BUILD_BASE := ./build |
| 556 | endif |
| 557 | BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 558 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 559 | SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 560 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 561 | # Platforms providing their own TBB makefile may override this value |
| 562 | INCLUDE_TBBR_MK := 1 |
| 563 | |
Jeenu Viswambharan | e5c39fd | 2014-05-16 11:38:10 +0100 | [diff] [blame] | 564 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 565 | ################################################################################ |
| 566 | # Include SPD Makefile if one has been specified |
| 567 | ################################################################################ |
| 568 | |
| 569 | ifneq (${SPD},none) |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 570 | ifeq (${ARCH},aarch32) |
Sandrine Bailleux | 247e339 | 2018-10-03 14:56:38 +0200 | [diff] [blame] | 571 | $(error "Error: SPD is incompatible with AArch32.") |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 572 | endif |
| 573 | |
| 574 | ifdef EL3_PAYLOAD_BASE |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 575 | $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") |
| 576 | $(warning "The SPD and its BL32 companion will be present but ignored.") |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 577 | endif |
Achin Gupta | 60b7b8a | 2019-10-11 15:50:43 +0100 | [diff] [blame] | 578 | |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 579 | ifeq (${SPD},spmd) |
| 580 | # SPMD is located in std_svc directory |
| 581 | SPD_DIR := std_svc |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 582 | |
Max Shvetsov | e7fd80e | 2020-02-25 13:55:00 +0000 | [diff] [blame] | 583 | ifeq ($(SPMD_SPM_AT_SEL2),1) |
Govindraj Raja | 0264d6c | 2022-11-21 13:10:40 +0000 | [diff] [blame] | 584 | CTX_INCLUDE_EL2_REGS := 1 |
Marc Bonnici | abaac16 | 2021-12-01 18:00:40 +0000 | [diff] [blame] | 585 | ifeq ($(SPMC_AT_EL3),1) |
| 586 | $(error SPM cannot be enabled in both S-EL2 and EL3.) |
| 587 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 588 | endif |
Olivier Deprez | bcaa068 | 2020-04-01 21:28:26 +0200 | [diff] [blame] | 589 | |
| 590 | ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp) |
| 591 | DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG |
| 592 | endif |
Davidson K | 9a94914 | 2021-03-10 12:07:15 +0530 | [diff] [blame] | 593 | |
| 594 | ifeq ($(TS_SP_FW_CONFIG),1) |
| 595 | DTC_CPPFLAGS += -DTS_SP_FW_CONFIG |
| 596 | endif |
Balint Dobszay | 9f68976 | 2021-03-26 15:19:11 +0100 | [diff] [blame] | 597 | |
| 598 | ifneq ($(ARM_BL2_SP_LIST_DTS),) |
| 599 | DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS) |
| 600 | endif |
Balint Dobszay | 719ba9c | 2021-03-26 16:23:18 +0100 | [diff] [blame] | 601 | |
| 602 | ifneq ($(SP_LAYOUT_FILE),) |
| 603 | BL2_ENABLE_SP_LOAD := 1 |
| 604 | endif |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 605 | else |
| 606 | # All other SPDs in spd directory |
| 607 | SPD_DIR := spd |
| 608 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 609 | |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 610 | # We expect to locate an spd.mk under the specified SPD directory |
| 611 | SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk) |
| 612 | |
| 613 | ifeq (${SPD_MAKE},) |
| 614 | $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located) |
| 615 | endif |
| 616 | $(info Including ${SPD_MAKE}) |
| 617 | include ${SPD_MAKE} |
| 618 | |
| 619 | # If there's BL32 companion for the chosen SPD, we expect that the SPD's |
| 620 | # Makefile would set NEED_BL32 to "yes". In this case, the build system |
| 621 | # supports two mutually exclusive options: |
| 622 | # * BL32 is built from source: then BL32_SOURCES must contain the list |
| 623 | # of source files to build BL32 |
| 624 | # * BL32 is a prebuilt binary: then BL32 must point to the image file |
| 625 | # that will be included in the FIP |
| 626 | # If both BL32_SOURCES and BL32 are defined, the binary takes precedence |
| 627 | # over the sources. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 628 | endif |
| 629 | |
Govindraj Raja | 0264d6c | 2022-11-21 13:10:40 +0000 | [diff] [blame] | 630 | ifeq (${CTX_INCLUDE_EL2_REGS}, 1) |
| 631 | ifeq (${SPD},none) |
| 632 | ifeq (${ENABLE_RME},0) |
| 633 | $(error CTX_INCLUDE_EL2_REGS is available only when SPD or RME is enabled) |
| 634 | endif |
| 635 | endif |
| 636 | endif |
| 637 | |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 638 | ################################################################################ |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 639 | # Include rmmd Makefile if RME is enabled |
| 640 | ################################################################################ |
| 641 | |
| 642 | ifneq (${ENABLE_RME},0) |
| 643 | ifneq (${ARCH},aarch64) |
| 644 | $(error ENABLE_RME requires AArch64) |
| 645 | endif |
Marc Bonnici | abaac16 | 2021-12-01 18:00:40 +0000 | [diff] [blame] | 646 | ifeq ($(SPMC_AT_EL3),1) |
| 647 | $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.) |
| 648 | endif |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 649 | include services/std_svc/rmmd/rmmd.mk |
| 650 | $(warning "RME is an experimental feature") |
| 651 | endif |
| 652 | |
| 653 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 654 | # Include the platform specific Makefile after the SPD Makefile (the platform |
| 655 | # makefile may use all previous definitions in this file) |
| 656 | ################################################################################ |
Jeenu Viswambharan | e5c39fd | 2014-05-16 11:38:10 +0100 | [diff] [blame] | 657 | |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 658 | include ${PLAT_MAKEFILE_FULL} |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 659 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 660 | # This internal flag is common option which is set to 1 for scenarios |
| 661 | # when the BL2 is running in EL3 level. This occurs in two scenarios - |
| 662 | # 4 world system running BL2 at EL3 and two world system without BL1 running |
| 663 | # BL2 in EL3 |
| 664 | |
| 665 | ifeq (${RESET_TO_BL2},1) |
| 666 | BL2_RUNS_AT_EL3 := 1 |
| 667 | ifeq (${ENABLE_RME},1) |
| 668 | $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not supported at the moment.) |
| 669 | endif |
| 670 | else ifeq (${ENABLE_RME},1) |
| 671 | BL2_RUNS_AT_EL3 := 1 |
| 672 | else |
| 673 | BL2_RUNS_AT_EL3 := 0 |
| 674 | endif |
| 675 | |
Masahiro Yamada | e2395b4 | 2017-11-04 03:12:28 +0900 | [diff] [blame] | 676 | $(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT})) |
| 677 | |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 678 | ifeq (${ARM_ARCH_MAJOR},7) |
| 679 | include make_helpers/armv7-a-cpus.mk |
| 680 | endif |
| 681 | |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 682 | PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT}) |
| 683 | ifneq ($(PIE_FOUND),) |
| 684 | TF_CFLAGS += -fno-PIE |
Samuel Holland | 9286c02 | 2022-04-08 21:56:02 -0500 | [diff] [blame] | 685 | ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 686 | TF_LDFLAGS += -no-pie |
| 687 | endif |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 688 | endif |
| 689 | |
| 690 | ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 691 | PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 692 | else |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 693 | PIE_LDFLAGS += -pie --no-dynamic-linker |
| 694 | endif |
| 695 | |
| 696 | ifeq ($(ENABLE_PIE),1) |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 697 | ifeq ($(RESET_TO_BL2),1) |
Masahiro Yamada | 65d699d | 2020-01-17 13:45:02 +0900 | [diff] [blame] | 698 | ifneq ($(BL2_IN_XIP_MEM),1) |
Chris Kay | 13886c8 | 2023-02-02 14:39:03 +0000 | [diff] [blame] | 699 | BL2_CPPFLAGS += -fpie |
Masahiro Yamada | 65d699d | 2020-01-17 13:45:02 +0900 | [diff] [blame] | 700 | BL2_CFLAGS += -fpie |
| 701 | BL2_LDFLAGS += $(PIE_LDFLAGS) |
| 702 | endif |
| 703 | endif |
Chris Kay | 13886c8 | 2023-02-02 14:39:03 +0000 | [diff] [blame] | 704 | BL31_CPPFLAGS += -fpie |
| 705 | BL31_CFLAGS += -fpie |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 706 | BL31_LDFLAGS += $(PIE_LDFLAGS) |
Chris Kay | 13886c8 | 2023-02-02 14:39:03 +0000 | [diff] [blame] | 707 | |
| 708 | BL32_CPPFLAGS += -fpie |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 709 | BL32_CFLAGS += -fpie |
| 710 | BL32_LDFLAGS += $(PIE_LDFLAGS) |
| 711 | endif |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 712 | |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 713 | BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 714 | BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 715 | BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 716 | |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 717 | BL1_CPPFLAGS += -DIMAGE_AT_EL3 |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 718 | ifeq ($(RESET_TO_BL2),1) |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 719 | BL2_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 720 | else |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 721 | BL2_CPPFLAGS += -DIMAGE_AT_EL1 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 722 | endif |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 723 | |
| 724 | ifeq (${ARCH},aarch64) |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 725 | BL2U_CPPFLAGS += -DIMAGE_AT_EL1 |
| 726 | BL31_CPPFLAGS += -DIMAGE_AT_EL3 |
| 727 | BL32_CPPFLAGS += -DIMAGE_AT_EL1 |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 728 | else |
| 729 | BL32_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 730 | endif |
| 731 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 732 | # Include the CPU specific operations makefile, which provides default |
| 733 | # values for all CPU errata workarounds and CPU specific optimisations. |
| 734 | # This can be overridden by the platform. |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 735 | include lib/cpus/cpu-ops.mk |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 736 | |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 737 | ifeq (${ARCH},aarch32) |
| 738 | NEED_BL32 := yes |
| 739 | |
| 740 | ################################################################################ |
| 741 | # Build `AARCH32_SP` as BL32 image for AArch32 |
| 742 | ################################################################################ |
| 743 | ifneq (${AARCH32_SP},none) |
| 744 | # We expect to locate an sp.mk under the specified AARCH32_SP directory |
| 745 | AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) |
| 746 | |
| 747 | ifeq (${AARCH32_SP_MAKE},) |
| 748 | $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) |
| 749 | endif |
| 750 | |
| 751 | $(info Including ${AARCH32_SP_MAKE}) |
| 752 | include ${AARCH32_SP_MAKE} |
| 753 | endif |
| 754 | |
Varun Wadekar | 3f9002c | 2019-01-31 09:22:30 -0800 | [diff] [blame] | 755 | endif |
| 756 | |
| 757 | ################################################################################ |
| 758 | # Include libc if not overridden |
| 759 | ################################################################################ |
| 760 | ifeq (${OVERRIDE_LIBC},0) |
| 761 | include lib/libc/libc.mk |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 762 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 763 | |
| 764 | ################################################################################ |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 765 | # Check incompatible options |
| 766 | ################################################################################ |
| 767 | |
| 768 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 769 | ifdef PRELOADED_BL33_BASE |
| 770 | $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ |
| 771 | incompatible build options. EL3_PAYLOAD_BASE has priority.") |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 772 | endif |
Qixiang Xu | be9bd9d | 2017-08-24 11:03:23 +0800 | [diff] [blame] | 773 | ifneq (${GENERATE_COT},0) |
| 774 | $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.") |
| 775 | endif |
| 776 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 777 | $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.") |
| 778 | endif |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 779 | endif |
| 780 | |
| 781 | ifeq (${NEED_BL33},yes) |
| 782 | ifdef EL3_PAYLOAD_BASE |
| 783 | $(warning "BL33 image is not needed when option \ |
| 784 | BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") |
| 785 | endif |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 786 | ifdef PRELOADED_BL33_BASE |
| 787 | $(warning "BL33 image is not needed when option \ |
| 788 | PRELOADED_BL33_BASE is used and won't be added to the FIP \ |
| 789 | file.") |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 790 | endif |
| 791 | endif |
| 792 | |
Jeenu Viswambharan | 7ed2cbc | 2017-01-06 16:14:42 +0000 | [diff] [blame] | 793 | # When building for systems with hardware-assisted coherency, there's no need to |
| 794 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 795 | ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1) |
| 796 | $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY) |
| 797 | endif |
Yatharth Kochar | f528faf | 2016-06-28 16:58:26 +0100 | [diff] [blame] | 798 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 799 | #For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1. |
| 800 | ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1) |
| 801 | $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled") |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 802 | endif |
| 803 | |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 804 | # RAS_EXTENSION is deprecated, provide alternate build options |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 805 | ifeq ($(RAS_EXTENSION),1) |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 806 | $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS and RAS_FFH_SUPPORT instead") |
| 807 | endif |
| 808 | # RAS firmware first handling requires that EAs are handled in EL3 first |
| 809 | ifeq ($(RAS_FFH_SUPPORT),1) |
| 810 | ifneq ($(ENABLE_FEAT_RAS),1) |
| 811 | $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1) |
| 812 | endif |
Manish Pandey | 0e3379d | 2022-10-10 11:43:08 +0100 | [diff] [blame] | 813 | ifneq ($(HANDLE_EA_EL3_FIRST_NS),1) |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 814 | $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1) |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 815 | endif |
| 816 | endif |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 817 | # When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 818 | ifeq ($(FAULT_INJECTION_SUPPORT),1) |
Andre Przywara | 870627e | 2023-01-27 12:25:49 +0000 | [diff] [blame] | 819 | ifeq ($(ENABLE_FEAT_RAS),0) |
| 820 | $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0) |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 821 | endif |
| 822 | endif |
| 823 | |
Roberto Vargas | 025946a | 2018-09-24 17:20:48 +0100 | [diff] [blame] | 824 | # DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1 |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 825 | ifeq ($(DYN_DISABLE_AUTH), 1) |
| 826 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 827 | $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.") |
| 828 | endif |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 829 | endif |
| 830 | |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 831 | ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1) |
| 832 | # Support authentication verification and hash calculation |
| 833 | CRYPTO_SUPPORT := 3 |
| 834 | else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1) |
| 835 | # Support authentication verification and hash calculation |
| 836 | CRYPTO_SUPPORT := 3 |
| 837 | else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),) |
| 838 | # Support hash calculation only |
| 839 | CRYPTO_SUPPORT := 2 |
| 840 | else ifeq (${TRUSTED_BOARD_BOOT},1) |
| 841 | # Support authentication verification only |
Manish V Badarkhe | 5181d60 | 2022-01-08 22:56:06 +0000 | [diff] [blame] | 842 | CRYPTO_SUPPORT := 1 |
| 843 | else |
| 844 | CRYPTO_SUPPORT := 0 |
| 845 | endif |
| 846 | |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 847 | # SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled. |
| 848 | ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1) |
Manish Pandey | 34a305e | 2021-10-21 21:53:49 +0100 | [diff] [blame] | 849 | $(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] | 850 | endif |
| 851 | |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 852 | # 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] | 853 | # registers associated to it are also saved and restored. |
| 854 | # 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] | 855 | ifeq ($(ENABLE_PAUTH),1) |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 856 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),0) |
| 857 | $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1) |
Alexei Fedorov | 2831d58 | 2019-03-13 11:05:07 +0000 | [diff] [blame] | 858 | endif |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 859 | endif |
| 860 | |
| 861 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),1) |
| 862 | ifneq (${ARCH},aarch64) |
| 863 | $(error CTX_INCLUDE_PAUTH_REGS requires AArch64) |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 864 | endif |
| 865 | endif |
| 866 | |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 867 | ifeq ($(CTX_INCLUDE_MTE_REGS),1) |
| 868 | ifneq (${ARCH},aarch64) |
| 869 | $(error CTX_INCLUDE_MTE_REGS requires AArch64) |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 870 | endif |
| 871 | endif |
| 872 | |
Manish V Badarkhe | 99575e4 | 2021-06-25 23:28:59 +0100 | [diff] [blame] | 873 | ifeq ($(PSA_FWU_SUPPORT),1) |
| 874 | $(info PSA_FWU_SUPPORT is an experimental feature) |
| 875 | endif |
| 876 | |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 877 | ifeq ($(FEATURE_DETECTION),1) |
| 878 | $(info FEATURE_DETECTION is an experimental feature) |
| 879 | endif |
| 880 | |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 881 | ifneq ($(ENABLE_SME2_FOR_NS), 0) |
| 882 | ifeq (${ENABLE_SME_FOR_NS}, 0) |
| 883 | $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also to be set") |
| 884 | $(warning "Forced ENABLE_SME_FOR_NS=1") |
| 885 | override ENABLE_SME_FOR_NS := 1 |
| 886 | endif |
Jayanth Dodderi Chidanand | 605419a | 2023-03-06 23:56:14 +0000 | [diff] [blame] | 887 | endif |
| 888 | |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 889 | ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) |
| 890 | ifeq (${ALLOW_RO_XLAT_TABLES}, 1) |
| 891 | $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2") |
| 892 | endif |
| 893 | endif |
| 894 | |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 895 | ifneq (${DECRYPTION_SUPPORT},none) |
| 896 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 897 | $(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] | 898 | endif |
| 899 | endif |
| 900 | |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 901 | # Ensure that no Aarch64-only features are enabled in Aarch32 build |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 902 | ifeq (${ARCH},aarch32) |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 903 | |
| 904 | # SME/SVE only supported on AArch64 |
Jayanth Dodderi Chidanand | 605419a | 2023-03-06 23:56:14 +0000 | [diff] [blame] | 905 | ifneq (${ENABLE_SME_FOR_NS},0) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 906 | $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32") |
| 907 | endif |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 908 | |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 909 | ifeq (${ENABLE_SVE_FOR_NS},1) |
| 910 | # Warning instead of error due to CI dependency on this |
Yann Gautier | 7d91767 | 2021-11-19 11:35:46 +0100 | [diff] [blame] | 911 | $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32") |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 912 | endif |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 913 | |
Juan Pablo Conde | 42305f2 | 2022-07-12 16:40:29 -0400 | [diff] [blame] | 914 | # BRBE is not supported in AArch32 |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 915 | ifeq (${ENABLE_BRBE_FOR_NS},1) |
| 916 | $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32") |
| 917 | endif |
| 918 | |
Juan Pablo Conde | 42305f2 | 2022-07-12 16:40:29 -0400 | [diff] [blame] | 919 | # FEAT_RNG_TRAP is not supported in AArch32 |
| 920 | ifeq (${ENABLE_FEAT_RNG_TRAP},1) |
| 921 | $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32") |
| 922 | endif |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 923 | endif |
| 924 | |
| 925 | # Ensure ENABLE_RME is not used with SME |
| 926 | ifeq (${ENABLE_RME},1) |
Jayanth Dodderi Chidanand | 605419a | 2023-03-06 23:56:14 +0000 | [diff] [blame] | 927 | ifneq (${ENABLE_SME_FOR_NS},0) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 928 | $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME") |
| 929 | endif |
| 930 | endif |
| 931 | |
Boyan Karatotev | 7f5dcc7 | 2023-03-08 16:29:26 +0000 | [diff] [blame] | 932 | ifneq (${ENABLE_SME_FOR_NS},0) |
| 933 | ifeq (${ENABLE_SVE_FOR_NS},0) |
| 934 | $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS") |
| 935 | endif |
| 936 | endif |
| 937 | |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 938 | # Secure SME/SVE requires the non-secure component as well |
| 939 | ifeq (${ENABLE_SME_FOR_SWD},1) |
| 940 | ifeq (${ENABLE_SME_FOR_NS},0) |
| 941 | $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS") |
| 942 | endif |
Boyan Karatotev | 7f5dcc7 | 2023-03-08 16:29:26 +0000 | [diff] [blame] | 943 | ifeq (${ENABLE_SVE_FOR_SWD},0) |
| 944 | $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD") |
| 945 | endif |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 946 | endif |
| 947 | ifeq (${ENABLE_SVE_FOR_SWD},1) |
| 948 | ifeq (${ENABLE_SVE_FOR_NS},0) |
| 949 | $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS") |
| 950 | endif |
| 951 | endif |
| 952 | |
| 953 | # SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does |
| 954 | # its own context management including FPU registers. |
| 955 | ifeq (${CTX_INCLUDE_FPREGS},1) |
Jayanth Dodderi Chidanand | 605419a | 2023-03-06 23:56:14 +0000 | [diff] [blame] | 956 | ifneq (${ENABLE_SME_FOR_NS},0) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 957 | $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS") |
| 958 | endif |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 959 | |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 960 | ifeq (${ENABLE_SVE_FOR_NS},1) |
| 961 | # Warning instead of error due to CI dependency on this |
| 962 | $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS") |
| 963 | $(warning "Forced ENABLE_SVE_FOR_NS=0") |
| 964 | override ENABLE_SVE_FOR_NS := 0 |
| 965 | endif |
| 966 | endif |
| 967 | |
Manish V Badarkhe | 191a5fc | 2022-03-02 12:06:35 +0000 | [diff] [blame] | 968 | ifeq ($(DRTM_SUPPORT),1) |
| 969 | $(info DRTM_SUPPORT is an experimental feature) |
| 970 | endif |
| 971 | |
Chris Kay | d02c231 | 2022-09-29 16:21:24 +0100 | [diff] [blame] | 972 | ifeq (${ENABLE_RME},1) |
| 973 | ifneq (${SEPARATE_CODE_AND_RODATA},1) |
| 974 | $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`) |
| 975 | endif |
| 976 | endif |
| 977 | |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 978 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 979 | # Process platform overrideable behaviour |
| 980 | ################################################################################ |
| 981 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 982 | ifdef BL1_SOURCES |
| 983 | NEED_BL1 := yes |
| 984 | endif |
| 985 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 986 | ifdef BL2_SOURCES |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 987 | NEED_BL2 := yes |
| 988 | |
| 989 | # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and |
| 990 | # Certificate generation tools. This flag can be overridden by the platform. |
| 991 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 992 | # If booting an EL3 payload there is no need for a BL33 image |
| 993 | # in the FIP file. |
| 994 | NEED_BL33 := no |
| 995 | else |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 996 | ifdef PRELOADED_BL33_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 997 | # If booting a BL33 preloaded image there is no need of |
| 998 | # another one in the FIP file. |
| 999 | NEED_BL33 := no |
| 1000 | else |
| 1001 | NEED_BL33 ?= yes |
| 1002 | endif |
| 1003 | endif |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 1004 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1005 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1006 | ifdef BL2U_SOURCES |
| 1007 | NEED_BL2U := yes |
| 1008 | endif |
| 1009 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1010 | # If SCP_BL2 is given, we always want FIP to include it. |
| 1011 | ifdef SCP_BL2 |
| 1012 | NEED_SCP_BL2 := yes |
| 1013 | endif |
| 1014 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1015 | # For AArch32, BL31 is not currently supported. |
| 1016 | ifneq (${ARCH},aarch32) |
| 1017 | ifdef BL31_SOURCES |
| 1018 | # When booting an EL3 payload, there is no need to compile the BL31 image nor |
| 1019 | # put it in the FIP. |
| 1020 | ifndef EL3_PAYLOAD_BASE |
| 1021 | NEED_BL31 := yes |
| 1022 | endif |
| 1023 | endif |
| 1024 | endif |
| 1025 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1026 | # Process TBB related flags |
| 1027 | ifneq (${GENERATE_COT},0) |
| 1028 | # Common cert_create options |
| 1029 | ifneq (${CREATE_KEYS},0) |
| 1030 | $(eval CRT_ARGS += -n) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1031 | $(eval FWU_CRT_ARGS += -n) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1032 | ifneq (${SAVE_KEYS},0) |
| 1033 | $(eval CRT_ARGS += -k) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1034 | $(eval FWU_CRT_ARGS += -k) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1035 | endif |
| 1036 | endif |
| 1037 | # Include TBBR makefile (unless the platform indicates otherwise) |
| 1038 | ifeq (${INCLUDE_TBBR_MK},1) |
| 1039 | include make_helpers/tbbr/tbbr_tools.mk |
| 1040 | endif |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 1041 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1042 | |
Masahiro Yamada | 4d87eb4 | 2016-12-25 13:52:22 +0900 | [diff] [blame] | 1043 | ifneq (${FIP_ALIGN},0) |
| 1044 | FIP_ARGS += --align ${FIP_ALIGN} |
| 1045 | endif |
| 1046 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1047 | ifdef FDT_SOURCES |
| 1048 | NEED_FDT := yes |
| 1049 | endif |
| 1050 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1051 | ################################################################################ |
Michalis Pappas | 0f223c5 | 2018-03-20 13:01:27 +0800 | [diff] [blame] | 1052 | # Include libraries' Makefile that are used in all BL |
| 1053 | ################################################################################ |
| 1054 | |
| 1055 | include lib/stack_protector/stack_protector.mk |
| 1056 | |
| 1057 | ################################################################################ |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1058 | # Auxiliary tools (fiptool, cert_create, etc) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1059 | ################################################################################ |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 1060 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1061 | # Variables for use with Certificate Generation Tool |
| 1062 | CRTTOOLPATH ?= tools/cert_create |
Evan Lloyd | 004c9a5 | 2015-12-03 11:35:40 +0000 | [diff] [blame] | 1063 | CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 1064 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1065 | # Variables for use with Firmware Encryption Tool |
| 1066 | ENCTOOLPATH ?= tools/encrypt_fw |
| 1067 | ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT} |
| 1068 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1069 | # Variables for use with Firmware Image Package |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1070 | FIPTOOLPATH ?= tools/fiptool |
| 1071 | FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT} |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 1072 | |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 1073 | # Variables for use with sptool |
| 1074 | SPTOOLPATH ?= tools/sptool |
J-Alves | ef8e098 | 2022-03-22 16:28:51 +0000 | [diff] [blame] | 1075 | SPTOOL ?= ${SPTOOLPATH}/sptool.py |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1076 | SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 1077 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1078 | # Variables for use with ROMLIB |
| 1079 | ROMLIBPATH ?= lib/romlib |
| 1080 | |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1081 | # Variable for use with Python |
| 1082 | PYTHON ?= python3 |
| 1083 | |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1084 | # Variables for use with documentation build using Sphinx tool |
| 1085 | DOCS_PATH ?= docs |
| 1086 | |
Abdul Halim, Muhammad Hadi Asyrafi | f3a5d02 | 2020-06-29 12:15:27 +0800 | [diff] [blame] | 1087 | # Defination of SIMICS flag |
| 1088 | SIMICS_BUILD ?= 0 |
| 1089 | |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1090 | ################################################################################ |
| 1091 | # Include BL specific makefiles |
| 1092 | ################################################################################ |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1093 | |
| 1094 | ifeq (${NEED_BL1},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1095 | include bl1/bl1.mk |
| 1096 | endif |
| 1097 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1098 | ifeq (${NEED_BL2},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1099 | include bl2/bl2.mk |
| 1100 | endif |
| 1101 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1102 | ifeq (${NEED_BL2U},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1103 | include bl2u/bl2u.mk |
| 1104 | endif |
| 1105 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1106 | ifeq (${NEED_BL31},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1107 | include bl31/bl31.mk |
| 1108 | endif |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1109 | |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1110 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1111 | # Build options checks |
| 1112 | ################################################################################ |
| 1113 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1114 | $(eval $(call assert_booleans,\ |
| 1115 | $(sort \ |
| 1116 | ALLOW_RO_XLAT_TABLES \ |
Balint Dobszay | 719ba9c | 2021-03-26 16:23:18 +0100 | [diff] [blame] | 1117 | BL2_ENABLE_SP_LOAD \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1118 | COLD_BOOT_SINGLE_CPU \ |
| 1119 | CREATE_KEYS \ |
| 1120 | CTX_INCLUDE_AARCH32_REGS \ |
| 1121 | CTX_INCLUDE_FPREGS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1122 | CTX_INCLUDE_EL2_REGS \ |
| 1123 | DEBUG \ |
Javier Almansa Sobrino | f3a4c54 | 2020-11-23 18:38:15 +0000 | [diff] [blame] | 1124 | DISABLE_MTPMU \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1125 | DYN_DISABLE_AUTH \ |
| 1126 | EL3_EXCEPTION_HANDLING \ |
Chris Kay | 925fda4 | 2021-05-25 10:42:56 +0100 | [diff] [blame] | 1127 | ENABLE_AMU_AUXILIARY_COUNTERS \ |
Chris Kay | f11909f | 2021-08-19 11:21:52 +0100 | [diff] [blame] | 1128 | ENABLE_AMU_FCONF \ |
johpow01 | fa59c6f | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 1129 | AMU_RESTRICT_COUNTERS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1130 | ENABLE_ASSERTIONS \ |
Andre Przywara | 46880dc | 2022-11-17 16:42:09 +0000 | [diff] [blame] | 1131 | ENABLE_FEAT_SB \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1132 | ENABLE_PIE \ |
| 1133 | ENABLE_PMF \ |
| 1134 | ENABLE_PSCI_STAT \ |
| 1135 | ENABLE_RUNTIME_INSTRUMENTATION \ |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 1136 | ENABLE_SME_FOR_SWD \ |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 1137 | ENABLE_SVE_FOR_SWD \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1138 | ERROR_DEPRECATED \ |
| 1139 | FAULT_INJECTION_SUPPORT \ |
| 1140 | GENERATE_COT \ |
| 1141 | GICV2_G0_FOR_EL3 \ |
Manish Pandey | 0e3379d | 2022-10-10 11:43:08 +0100 | [diff] [blame] | 1142 | HANDLE_EA_EL3_FIRST_NS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1143 | HW_ASSISTED_COHERENCY \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1144 | MEASURED_BOOT \ |
Manish V Badarkhe | 191a5fc | 2022-03-02 12:06:35 +0000 | [diff] [blame] | 1145 | DRTM_SUPPORT \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1146 | NS_TIMER_SWITCH \ |
| 1147 | OVERRIDE_LIBC \ |
| 1148 | PL011_GENERIC_UART \ |
Tamas Ban | c9ccc27 | 2022-01-18 16:20:47 +0100 | [diff] [blame] | 1149 | PLAT_RSS_NOT_SUPPORTED \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1150 | PROGRAMMABLE_RESET_ADDRESS \ |
| 1151 | PSCI_EXTENDED_STATE_ID \ |
Wing Li | 1e9b68a | 2023-01-26 18:33:36 -0800 | [diff] [blame] | 1152 | PSCI_OS_INIT_MODE \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1153 | RESET_TO_BL31 \ |
| 1154 | SAVE_KEYS \ |
| 1155 | SEPARATE_CODE_AND_RODATA \ |
Jiafei Pan | 0824b45 | 2022-02-24 10:47:33 +0800 | [diff] [blame] | 1156 | SEPARATE_BL2_NOLOAD_REGION \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1157 | SEPARATE_NOBITS_REGION \ |
| 1158 | SPIN_ON_BL1_EXIT \ |
| 1159 | SPM_MM \ |
Marc Bonnici | abaac16 | 2021-12-01 18:00:40 +0000 | [diff] [blame] | 1160 | SPMC_AT_EL3 \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1161 | SPMD_SPM_AT_SEL2 \ |
| 1162 | TRUSTED_BOARD_BOOT \ |
| 1163 | USE_COHERENT_MEM \ |
| 1164 | USE_DEBUGFS \ |
| 1165 | ARM_IO_IN_DTB \ |
| 1166 | SDEI_IN_FCONF \ |
| 1167 | SEC_INT_DESC_IN_FCONF \ |
| 1168 | USE_ROMLIB \ |
| 1169 | USE_TBBR_DEFS \ |
| 1170 | WARMBOOT_ENABLE_DCACHE_EARLY \ |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 1171 | RESET_TO_BL2 \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1172 | BL2_IN_XIP_MEM \ |
| 1173 | BL2_INV_DCACHE \ |
| 1174 | USE_SPINLOCK_CAS \ |
| 1175 | ENCRYPT_BL31 \ |
| 1176 | ENCRYPT_BL32 \ |
| 1177 | ERRATA_SPECULATIVE_AT \ |
Manish Pandey | 7c6fcb4 | 2022-09-27 14:30:34 +0100 | [diff] [blame] | 1178 | RAS_TRAP_NS_ERR_REC_ACCESS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1179 | COT_DESC_IN_DTB \ |
| 1180 | USE_SP804_TIMER \ |
Manish V Badarkhe | 99575e4 | 2021-06-25 23:28:59 +0100 | [diff] [blame] | 1181 | PSA_FWU_SUPPORT \ |
Chris Kay | 03be39d | 2021-05-05 13:38:30 +0100 | [diff] [blame] | 1182 | ENABLE_MPMM \ |
| 1183 | ENABLE_MPMM_FCONF \ |
Abdul Halim, Muhammad Hadi Asyrafi | f3a5d02 | 2020-06-29 12:15:27 +0800 | [diff] [blame] | 1184 | SIMICS_BUILD \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1185 | FEATURE_DETECTION \ |
Jayanth Dodderi Chidanand | 7c7faff | 2022-10-11 17:16:07 +0100 | [diff] [blame] | 1186 | TRNG_SUPPORT \ |
Sona Mathew | 7fe0352 | 2022-11-18 18:05:38 -0600 | [diff] [blame] | 1187 | ERRATA_ABI_SUPPORT \ |
Sona Mathew | 5a4c9fc | 2023-03-14 14:02:03 -0500 | [diff] [blame] | 1188 | ERRATA_NON_ARM_INTERCONNECT \ |
Okash Khawaja | 037b56e | 2022-11-04 12:38:01 +0000 | [diff] [blame] | 1189 | CONDITIONAL_CMO \ |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 1190 | RAS_FFH_SUPPORT \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1191 | ))) |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 1192 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1193 | $(eval $(call assert_numerics,\ |
| 1194 | $(sort \ |
| 1195 | ARM_ARCH_MAJOR \ |
| 1196 | ARM_ARCH_MINOR \ |
| 1197 | BRANCH_PROTECTION \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1198 | CTX_INCLUDE_PAUTH_REGS \ |
| 1199 | CTX_INCLUDE_MTE_REGS \ |
| 1200 | CTX_INCLUDE_NEVE_REGS \ |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 1201 | CRYPTO_SUPPORT \ |
Jayanth Dodderi Chidanand | 6931675 | 2022-05-09 12:33:03 +0100 | [diff] [blame] | 1202 | ENABLE_BRBE_FOR_NS \ |
Jayanth Dodderi Chidanand | a793ccc | 2022-05-19 14:08:28 +0100 | [diff] [blame] | 1203 | ENABLE_TRBE_FOR_NS \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1204 | ENABLE_BTI \ |
| 1205 | ENABLE_PAUTH \ |
Andre Przywara | 0b7f1b0 | 2023-03-21 13:53:19 +0000 | [diff] [blame] | 1206 | ENABLE_FEAT_AMU \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1207 | ENABLE_FEAT_AMUv1p1 \ |
| 1208 | ENABLE_FEAT_CSV2_2 \ |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 1209 | ENABLE_FEAT_RAS \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1210 | ENABLE_FEAT_DIT \ |
| 1211 | ENABLE_FEAT_ECV \ |
| 1212 | ENABLE_FEAT_FGT \ |
| 1213 | ENABLE_FEAT_HCX \ |
| 1214 | ENABLE_FEAT_PAN \ |
| 1215 | ENABLE_FEAT_RNG \ |
Juan Pablo Conde | 42305f2 | 2022-07-12 16:40:29 -0400 | [diff] [blame] | 1216 | ENABLE_FEAT_RNG_TRAP \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1217 | ENABLE_FEAT_SEL2 \ |
Mark Brown | c37eee7 | 2023-03-14 20:13:03 +0000 | [diff] [blame] | 1218 | ENABLE_FEAT_TCR2 \ |
Mark Brown | 293a661 | 2023-03-14 20:48:43 +0000 | [diff] [blame] | 1219 | ENABLE_FEAT_S2PIE \ |
| 1220 | ENABLE_FEAT_S1PIE \ |
| 1221 | ENABLE_FEAT_S2POE \ |
| 1222 | ENABLE_FEAT_S1POE \ |
Mark Brown | 326f295 | 2023-03-14 21:33:04 +0000 | [diff] [blame] | 1223 | ENABLE_FEAT_GCS \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1224 | ENABLE_FEAT_VHE \ |
| 1225 | ENABLE_MPAM_FOR_LOWER_ELS \ |
| 1226 | ENABLE_RME \ |
Andre Przywara | f3e8cfc | 2022-11-17 16:42:09 +0000 | [diff] [blame] | 1227 | ENABLE_SPE_FOR_NS \ |
Andre Przywara | 44e33e0 | 2022-11-17 16:42:09 +0000 | [diff] [blame] | 1228 | ENABLE_SYS_REG_TRACE_FOR_NS \ |
Jayanth Dodderi Chidanand | 605419a | 2023-03-06 23:56:14 +0000 | [diff] [blame] | 1229 | ENABLE_SME_FOR_NS \ |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 1230 | ENABLE_SME2_FOR_NS \ |
Jayanth Dodderi Chidanand | d62c681 | 2023-03-07 10:43:19 +0000 | [diff] [blame] | 1231 | ENABLE_SVE_FOR_NS \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1232 | ENABLE_TRF_FOR_NS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1233 | FW_ENC_STATUS \ |
Manish V Badarkhe | 2bb45ff | 2021-03-16 10:01:27 +0000 | [diff] [blame] | 1234 | NR_OF_FW_BANKS \ |
| 1235 | NR_OF_IMAGES_IN_FW_BANK \ |
Jayanth Dodderi Chidanand | 4b5489c | 2022-03-28 15:28:55 +0100 | [diff] [blame] | 1236 | TWED_DELAY \ |
| 1237 | ENABLE_FEAT_TWED \ |
Mark Brown | 6486997 | 2022-04-20 18:14:32 +0100 | [diff] [blame] | 1238 | SVE_VECTOR_LEN \ |
Varun Wadekar | 0a46eb1 | 2023-04-13 21:06:18 +0100 | [diff] [blame] | 1239 | IMPDEF_SYSREG_TRAP \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1240 | ))) |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 1241 | |
Justin Chadwell | f9b32c1 | 2019-07-29 17:13:10 +0100 | [diff] [blame] | 1242 | ifdef KEY_SIZE |
| 1243 | $(eval $(call assert_numeric,KEY_SIZE)) |
| 1244 | endif |
| 1245 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1246 | ifeq ($(filter $(SANITIZE_UB), on off trap),) |
| 1247 | $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap") |
| 1248 | endif |
| 1249 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1250 | ################################################################################ |
| 1251 | # Add definitions to the cpp preprocessor based on the current build options. |
| 1252 | # This is done after including the platform specific makefile to allow the |
| 1253 | # platform to overwrite the default options |
| 1254 | ################################################################################ |
Jeenu Viswambharan | d1b6015 | 2014-05-12 15:28:47 +0100 | [diff] [blame] | 1255 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1256 | $(eval $(call add_defines,\ |
| 1257 | $(sort \ |
| 1258 | ALLOW_RO_XLAT_TABLES \ |
| 1259 | ARM_ARCH_MAJOR \ |
| 1260 | ARM_ARCH_MINOR \ |
Balint Dobszay | 719ba9c | 2021-03-26 16:23:18 +0100 | [diff] [blame] | 1261 | BL2_ENABLE_SP_LOAD \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1262 | COLD_BOOT_SINGLE_CPU \ |
| 1263 | CTX_INCLUDE_AARCH32_REGS \ |
| 1264 | CTX_INCLUDE_FPREGS \ |
| 1265 | CTX_INCLUDE_PAUTH_REGS \ |
| 1266 | EL3_EXCEPTION_HANDLING \ |
| 1267 | CTX_INCLUDE_MTE_REGS \ |
| 1268 | CTX_INCLUDE_EL2_REGS \ |
Arunachalam Ganapathy | dd3ec7e | 2020-05-28 11:57:09 +0100 | [diff] [blame] | 1269 | CTX_INCLUDE_NEVE_REGS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1270 | DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \ |
Javier Almansa Sobrino | f3a4c54 | 2020-11-23 18:38:15 +0000 | [diff] [blame] | 1271 | DISABLE_MTPMU \ |
Andre Przywara | 0b7f1b0 | 2023-03-21 13:53:19 +0000 | [diff] [blame] | 1272 | ENABLE_FEAT_AMU \ |
Chris Kay | 925fda4 | 2021-05-25 10:42:56 +0100 | [diff] [blame] | 1273 | ENABLE_AMU_AUXILIARY_COUNTERS \ |
Chris Kay | f11909f | 2021-08-19 11:21:52 +0100 | [diff] [blame] | 1274 | ENABLE_AMU_FCONF \ |
johpow01 | fa59c6f | 2020-10-02 13:41:11 -0500 | [diff] [blame] | 1275 | AMU_RESTRICT_COUNTERS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1276 | ENABLE_ASSERTIONS \ |
| 1277 | ENABLE_BTI \ |
| 1278 | ENABLE_MPAM_FOR_LOWER_ELS \ |
| 1279 | ENABLE_PAUTH \ |
| 1280 | ENABLE_PIE \ |
| 1281 | ENABLE_PMF \ |
| 1282 | ENABLE_PSCI_STAT \ |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 1283 | ENABLE_RME \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1284 | ENABLE_RUNTIME_INSTRUMENTATION \ |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 1285 | ENABLE_SME_FOR_NS \ |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 1286 | ENABLE_SME2_FOR_NS \ |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 1287 | ENABLE_SME_FOR_SWD \ |
Andre Przywara | 30661a9 | 2023-02-03 15:30:14 +0000 | [diff] [blame] | 1288 | ENABLE_SPE_FOR_NS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1289 | ENABLE_SVE_FOR_NS \ |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 1290 | ENABLE_SVE_FOR_SWD \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1291 | ENCRYPT_BL31 \ |
| 1292 | ENCRYPT_BL32 \ |
| 1293 | ERROR_DEPRECATED \ |
| 1294 | FAULT_INJECTION_SUPPORT \ |
| 1295 | GICV2_G0_FOR_EL3 \ |
Manish Pandey | 0e3379d | 2022-10-10 11:43:08 +0100 | [diff] [blame] | 1296 | HANDLE_EA_EL3_FIRST_NS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1297 | HW_ASSISTED_COHERENCY \ |
| 1298 | LOG_LEVEL \ |
| 1299 | MEASURED_BOOT \ |
Manish V Badarkhe | 191a5fc | 2022-03-02 12:06:35 +0000 | [diff] [blame] | 1300 | DRTM_SUPPORT \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1301 | NS_TIMER_SWITCH \ |
| 1302 | PL011_GENERIC_UART \ |
| 1303 | PLAT_${PLAT} \ |
Tamas Ban | c9ccc27 | 2022-01-18 16:20:47 +0100 | [diff] [blame] | 1304 | PLAT_RSS_NOT_SUPPORTED \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1305 | PROGRAMMABLE_RESET_ADDRESS \ |
| 1306 | PSCI_EXTENDED_STATE_ID \ |
Wing Li | 1e9b68a | 2023-01-26 18:33:36 -0800 | [diff] [blame] | 1307 | PSCI_OS_INIT_MODE \ |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 1308 | ENABLE_FEAT_RAS \ |
| 1309 | RAS_FFH_SUPPORT \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1310 | RESET_TO_BL31 \ |
| 1311 | SEPARATE_CODE_AND_RODATA \ |
Jiafei Pan | 0824b45 | 2022-02-24 10:47:33 +0800 | [diff] [blame] | 1312 | SEPARATE_BL2_NOLOAD_REGION \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1313 | SEPARATE_NOBITS_REGION \ |
| 1314 | RECLAIM_INIT_CODE \ |
| 1315 | SPD_${SPD} \ |
| 1316 | SPIN_ON_BL1_EXIT \ |
| 1317 | SPM_MM \ |
Marc Bonnici | abaac16 | 2021-12-01 18:00:40 +0000 | [diff] [blame] | 1318 | SPMC_AT_EL3 \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1319 | SPMD_SPM_AT_SEL2 \ |
| 1320 | TRUSTED_BOARD_BOOT \ |
Manish V Badarkhe | 5181d60 | 2022-01-08 22:56:06 +0000 | [diff] [blame] | 1321 | CRYPTO_SUPPORT \ |
Jimmy Brisson | 26c5b5c | 2020-06-22 14:18:42 -0500 | [diff] [blame] | 1322 | TRNG_SUPPORT \ |
Sona Mathew | 7fe0352 | 2022-11-18 18:05:38 -0600 | [diff] [blame] | 1323 | ERRATA_ABI_SUPPORT \ |
Sona Mathew | 5a4c9fc | 2023-03-14 14:02:03 -0500 | [diff] [blame] | 1324 | ERRATA_NON_ARM_INTERCONNECT \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1325 | USE_COHERENT_MEM \ |
| 1326 | USE_DEBUGFS \ |
| 1327 | ARM_IO_IN_DTB \ |
| 1328 | SDEI_IN_FCONF \ |
| 1329 | SEC_INT_DESC_IN_FCONF \ |
| 1330 | USE_ROMLIB \ |
| 1331 | USE_TBBR_DEFS \ |
| 1332 | WARMBOOT_ENABLE_DCACHE_EARLY \ |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 1333 | RESET_TO_BL2 \ |
| 1334 | BL2_RUNS_AT_EL3 \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1335 | BL2_IN_XIP_MEM \ |
| 1336 | BL2_INV_DCACHE \ |
| 1337 | USE_SPINLOCK_CAS \ |
| 1338 | ERRATA_SPECULATIVE_AT \ |
Manish Pandey | 7c6fcb4 | 2022-09-27 14:30:34 +0100 | [diff] [blame] | 1339 | RAS_TRAP_NS_ERR_REC_ACCESS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1340 | COT_DESC_IN_DTB \ |
| 1341 | USE_SP804_TIMER \ |
Tomas Pilar | de164b0 | 2020-10-29 13:01:16 +0000 | [diff] [blame] | 1342 | ENABLE_FEAT_RNG \ |
Juan Pablo Conde | 42305f2 | 2022-07-12 16:40:29 -0400 | [diff] [blame] | 1343 | ENABLE_FEAT_RNG_TRAP \ |
Chris Kay | 08fec33 | 2021-03-09 13:34:35 +0000 | [diff] [blame] | 1344 | ENABLE_FEAT_SB \ |
Daniel Boulby | 928747f | 2021-05-25 18:09:34 +0100 | [diff] [blame] | 1345 | ENABLE_FEAT_DIT \ |
Manish V Badarkhe | 2bb45ff | 2021-03-16 10:01:27 +0000 | [diff] [blame] | 1346 | NR_OF_FW_BANKS \ |
| 1347 | NR_OF_IMAGES_IN_FW_BANK \ |
Manish V Badarkhe | 99575e4 | 2021-06-25 23:28:59 +0100 | [diff] [blame] | 1348 | PSA_FWU_SUPPORT \ |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 1349 | ENABLE_BRBE_FOR_NS \ |
Manish V Badarkhe | 20df29c | 2021-07-02 09:10:56 +0100 | [diff] [blame] | 1350 | ENABLE_TRBE_FOR_NS \ |
Manish V Badarkhe | f356f7e | 2021-06-29 11:44:20 +0100 | [diff] [blame] | 1351 | ENABLE_SYS_REG_TRACE_FOR_NS \ |
Manish V Badarkhe | 51a9711 | 2021-07-08 09:33:18 +0100 | [diff] [blame] | 1352 | ENABLE_TRF_FOR_NS \ |
johpow01 | f91e59f | 2021-08-04 19:38:18 -0500 | [diff] [blame] | 1353 | ENABLE_FEAT_HCX \ |
Chris Kay | 03be39d | 2021-05-05 13:38:30 +0100 | [diff] [blame] | 1354 | ENABLE_MPMM \ |
| 1355 | ENABLE_MPMM_FCONF \ |
Jayanth Dodderi Chidanand | 13ae0f4 | 2021-11-25 14:59:30 +0000 | [diff] [blame] | 1356 | ENABLE_FEAT_FGT \ |
Jayanth Dodderi Chidanand | 13ae0f4 | 2021-11-25 14:59:30 +0000 | [diff] [blame] | 1357 | ENABLE_FEAT_ECV \ |
Abdul Halim, Muhammad Hadi Asyrafi | f3a5d02 | 2020-06-29 12:15:27 +0800 | [diff] [blame] | 1358 | SIMICS_BUILD \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1359 | ENABLE_FEAT_AMUv1p1 \ |
| 1360 | ENABLE_FEAT_SEL2 \ |
| 1361 | ENABLE_FEAT_VHE \ |
| 1362 | ENABLE_FEAT_CSV2_2 \ |
| 1363 | ENABLE_FEAT_PAN \ |
Mark Brown | c37eee7 | 2023-03-14 20:13:03 +0000 | [diff] [blame] | 1364 | ENABLE_FEAT_TCR2 \ |
Mark Brown | 293a661 | 2023-03-14 20:48:43 +0000 | [diff] [blame] | 1365 | ENABLE_FEAT_S2PIE \ |
| 1366 | ENABLE_FEAT_S1PIE \ |
| 1367 | ENABLE_FEAT_S2POE \ |
| 1368 | ENABLE_FEAT_S1POE \ |
Mark Brown | 326f295 | 2023-03-14 21:33:04 +0000 | [diff] [blame] | 1369 | ENABLE_FEAT_GCS \ |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1370 | FEATURE_DETECTION \ |
Jayanth Dodderi Chidanand | 4b5489c | 2022-03-28 15:28:55 +0100 | [diff] [blame] | 1371 | TWED_DELAY \ |
| 1372 | ENABLE_FEAT_TWED \ |
Okash Khawaja | 037b56e | 2022-11-04 12:38:01 +0000 | [diff] [blame] | 1373 | CONDITIONAL_CMO \ |
Varun Wadekar | 0a46eb1 | 2023-04-13 21:06:18 +0100 | [diff] [blame] | 1374 | IMPDEF_SYSREG_TRAP \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1375 | ))) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 1376 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1377 | ifeq (${SANITIZE_UB},trap) |
| 1378 | $(eval $(call add_define,MONITOR_TRAPS)) |
| 1379 | endif |
| 1380 | |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 1381 | # Define the EL3_PAYLOAD_BASE flag only if it is provided. |
| 1382 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 1383 | $(eval $(call add_define,EL3_PAYLOAD_BASE)) |
| 1384 | else |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 1385 | # Define the PRELOADED_BL33_BASE flag only if it is provided and |
| 1386 | # EL3_PAYLOAD_BASE is not defined, as it has priority. |
| 1387 | ifdef PRELOADED_BL33_BASE |
| 1388 | $(eval $(call add_define,PRELOADED_BL33_BASE)) |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 1389 | endif |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 1390 | endif |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 1391 | |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 1392 | # Define the DYN_DISABLE_AUTH flag only if set. |
| 1393 | ifeq (${DYN_DISABLE_AUTH},1) |
| 1394 | $(eval $(call add_define,DYN_DISABLE_AUTH)) |
| 1395 | endif |
| 1396 | |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 1397 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
| 1398 | $(eval $(call add_define,USE_ARM_LINK)) |
| 1399 | endif |
| 1400 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1401 | # 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] | 1402 | ifeq (${SPD},spmd) |
Olivier Deprez | 042db53 | 2020-03-19 09:27:11 +0100 | [diff] [blame] | 1403 | ifdef SP_LAYOUT_FILE |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1404 | -include $(BUILD_PLAT)/sp_gen.mk |
| 1405 | FIP_DEPS += sp |
Manish Pandey | aaaeb31 | 2020-05-26 23:59:36 +0100 | [diff] [blame] | 1406 | CRT_DEPS += sp |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1407 | NEED_SP_PKG := yes |
| 1408 | else |
Olivier Deprez | 042db53 | 2020-03-19 09:27:11 +0100 | [diff] [blame] | 1409 | ifeq (${SPMD_SPM_AT_SEL2},1) |
| 1410 | $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE") |
| 1411 | endif |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1412 | endif |
| 1413 | endif |
| 1414 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1415 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1416 | # Build targets |
| 1417 | ################################################################################ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1418 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1419 | .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] | 1420 | .SUFFIXES: |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1421 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1422 | all: msg_start |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1423 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1424 | msg_start: |
| 1425 | @echo "Building ${PLAT}" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1426 | |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1427 | ifeq (${ERROR_DEPRECATED},0) |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 1428 | # 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] | 1429 | ifneq ($(findstring clang,$(notdir $(CC))),) |
| 1430 | CPPFLAGS += -Wno-error=deprecated-declarations |
| 1431 | else |
Dan Handley | 6fa89a2 | 2018-02-27 16:03:58 +0000 | [diff] [blame] | 1432 | CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1433 | endif |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 1434 | endif # !ERROR_DEPRECATED |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1435 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1436 | $(eval $(call MAKE_LIB_DIRS)) |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1437 | $(eval $(call MAKE_LIB,c)) |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1438 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1439 | # Expand build macros for the different images |
| 1440 | ifeq (${NEED_BL1},yes) |
Chris Kay | 0a542ec | 2021-09-28 15:44:19 +0100 | [diff] [blame] | 1441 | BL1_SOURCES := $(sort ${BL1_SOURCES}) |
| 1442 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1443 | $(eval $(call MAKE_BL,bl1)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1444 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1445 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1446 | ifeq (${NEED_BL2},yes) |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 1447 | ifeq (${RESET_TO_BL2}, 0) |
Roberto Vargas | 53c052b | 2018-01-02 11:23:41 +0000 | [diff] [blame] | 1448 | FIP_BL2_ARGS := tb-fw |
| 1449 | endif |
| 1450 | |
Chris Kay | fb3b051 | 2021-09-28 15:44:37 +0100 | [diff] [blame] | 1451 | BL2_SOURCES := $(sort ${BL2_SOURCES}) |
| 1452 | |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1453 | $(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1454 | $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS}))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1455 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1456 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1457 | ifeq (${NEED_SCP_BL2},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1458 | $(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw)) |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1459 | endif |
| 1460 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1461 | ifeq (${NEED_BL31},yes) |
| 1462 | BL31_SOURCES += ${SPD_SOURCES} |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1463 | # Sort BL31 source files to remove duplicates |
| 1464 | BL31_SOURCES := $(sort ${BL31_SOURCES}) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1465 | ifneq (${DECRYPTION_SUPPORT},none) |
| 1466 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1467 | $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31)))) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1468 | else |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1469 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1470 | $(eval $(call MAKE_BL,bl31,soc-fw))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1471 | endif |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1472 | endif |
Juan Castillo | 379954c | 2014-11-04 17:36:40 +0000 | [diff] [blame] | 1473 | |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 1474 | # 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] | 1475 | # 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] | 1476 | # process. Note that the dependency on BL32 applies to the FIP only. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1477 | ifeq (${NEED_BL32},yes) |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1478 | # Sort BL32 source files to remove duplicates |
| 1479 | BL32_SOURCES := $(sort ${BL32_SOURCES}) |
Masahiro Yamada | 6ced1b2 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1480 | BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1)) |
| 1481 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1482 | ifneq (${DECRYPTION_SUPPORT},none) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1483 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\ |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1484 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32)))) |
| 1485 | else |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1486 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\ |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1487 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw))) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1488 | endif |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1489 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1490 | |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 1491 | # If RMM image is needed but RMM is not defined, Test Realm Payload (TRP) |
| 1492 | # needs to be built from RMM_SOURCES. |
| 1493 | ifeq (${NEED_RMM},yes) |
| 1494 | # Sort RMM source files to remove duplicates |
| 1495 | RMM_SOURCES := $(sort ${RMM_SOURCES}) |
| 1496 | BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1)) |
| 1497 | |
| 1498 | $(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\ |
| 1499 | $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw))) |
| 1500 | endif |
| 1501 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1502 | # Add the BL33 image if required by the platform |
| 1503 | ifeq (${NEED_BL33},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1504 | $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) |
Juan Castillo | 9c25a40 | 2015-01-13 12:21:04 +0000 | [diff] [blame] | 1505 | endif |
| 1506 | |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1507 | ifeq (${NEED_BL2U},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1508 | $(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1509 | $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_))) |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1510 | endif |
| 1511 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1512 | # Expand build macros for the different images |
| 1513 | ifeq (${NEED_FDT},yes) |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 1514 | $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES))) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1515 | endif |
| 1516 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1517 | # Add Secure Partition packages |
| 1518 | ifeq (${NEED_SP_PKG},yes) |
| 1519 | $(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] | 1520 | ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} |
J-Alves | ef8e098 | 2022-03-22 16:28:51 +0000 | [diff] [blame] | 1521 | sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS) |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1522 | @${ECHO_BLANK_LINE} |
| 1523 | @echo "Built SP Images successfully" |
| 1524 | @${ECHO_BLANK_LINE} |
| 1525 | endif |
| 1526 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1527 | locate-checkpatch: |
| 1528 | ifndef CHECKPATCH |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1529 | $(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] | 1530 | else |
| 1531 | ifeq (,$(wildcard ${CHECKPATCH})) |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1532 | $(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] | 1533 | endif |
| 1534 | endif |
| 1535 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1536 | clean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1537 | @echo " CLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1538 | $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1539 | ifdef UNIX_MK |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1540 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1541 | else |
| 1542 | # Clear the MAKEFLAGS as we do not want |
| 1543 | # to pass the gnumake flags to nmake. |
| 1544 | ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean |
| 1545 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1546 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1547 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1548 | ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1549 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 1550 | realclean distclean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1551 | @echo " REALCLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1552 | $(call SHELL_REMOVE_DIR,${BUILD_BASE}) |
| 1553 | $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1554 | ifdef UNIX_MK |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1555 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1556 | else |
| 1557 | # Clear the MAKEFLAGS as we do not want |
| 1558 | # to pass the gnumake flags to nmake. |
| 1559 | ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean |
| 1560 | endif |
Nicolas Boulenguez | df612a5 | 2021-03-31 12:22:45 +0200 | [diff] [blame] | 1561 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1562 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1563 | ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1564 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1565 | checkcodebase: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1566 | @echo " CHECKING STYLE" |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1567 | @if test -d .git ; then \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1568 | git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1569 | while read GIT_FILE ; \ |
| 1570 | do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ |
| 1571 | done ; \ |
| 1572 | else \ |
| 1573 | find . -type f -not -iwholename "*.git*" \ |
| 1574 | -not -iwholename "*build*" \ |
| 1575 | -not -iwholename "*libfdt*" \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1576 | -not -iwholename "*libc*" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1577 | -not -iwholename "*docs*" \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1578 | -not -iwholename "*.rst" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1579 | -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ |
| 1580 | fi |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1581 | |
| 1582 | checkpatch: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1583 | @echo " CHECKING STYLE" |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1584 | @if test -n "${CHECKPATCH_OPTS}"; then \ |
| 1585 | echo " with ${CHECKPATCH_OPTS} option(s)"; \ |
| 1586 | fi |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1587 | ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \ |
Yann Gautier | a10a685 | 2021-11-02 18:03:31 +0100 | [diff] [blame] | 1588 | for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \ |
| 1589 | do \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1590 | printf "\n[*] Checking style of '$$commit'\n\n"; \ |
| 1591 | git log --format=email "$$commit~..$$commit" \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1592 | -- ${CHECK_PATHS} | \ |
| 1593 | ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1594 | git diff --format=email "$$commit~..$$commit" \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1595 | -- ${CHECK_PATHS} | \ |
| 1596 | ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1597 | done |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1598 | |
| 1599 | certtool: ${CRTTOOL} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1600 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1601 | ${CRTTOOL}: FORCE |
Lionel Debieve | 730bde8 | 2022-11-14 11:05:09 +0100 | [diff] [blame] | 1602 | ${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] | 1603 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1604 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1605 | @${ECHO_BLANK_LINE} |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 1606 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1607 | ifneq (${GENERATE_COT},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1608 | certificates: ${CRT_DEPS} ${CRTTOOL} |
| 1609 | ${Q}${CRTTOOL} ${CRT_ARGS} |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1610 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1611 | @echo "Built $@ successfully" |
| 1612 | @echo "Certificates can be found in ${BUILD_PLAT}" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1613 | @${ECHO_BLANK_LINE} |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1614 | endif |
| 1615 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1616 | ${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 1617 | $(eval ${CHECK_FIP_CMD}) |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1618 | ${Q}${FIPTOOL} create ${FIP_ARGS} $@ |
| 1619 | ${Q}${FIPTOOL} info $@ |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1620 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1621 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1622 | @${ECHO_BLANK_LINE} |
Soby Mathew | dbee7fc | 2014-09-08 17:51:01 +0100 | [diff] [blame] | 1623 | |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1624 | ifneq (${GENERATE_COT},0) |
| 1625 | fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} |
| 1626 | ${Q}${CRTTOOL} ${FWU_CRT_ARGS} |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1627 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1628 | @echo "Built $@ successfully" |
| 1629 | @echo "FWU certificates can be found in ${BUILD_PLAT}" |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1630 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1631 | endif |
| 1632 | |
| 1633 | ${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 1634 | $(eval ${CHECK_FWU_FIP_CMD}) |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1635 | ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@ |
| 1636 | ${Q}${FIPTOOL} info $@ |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1637 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1638 | @echo "Built $@ successfully" |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1639 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1640 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1641 | fiptool: ${FIPTOOL} |
| 1642 | fip: ${BUILD_PLAT}/${FIP_NAME} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1643 | fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1644 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1645 | ${FIPTOOL}: FORCE |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1646 | ifdef UNIX_MK |
Lionel Debieve | 730bde8 | 2022-11-14 11:05:09 +0100 | [diff] [blame] | 1647 | ${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] | 1648 | else |
| 1649 | # Clear the MAKEFLAGS as we do not want |
| 1650 | # to pass the gnumake flags to nmake. |
| 1651 | ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) |
| 1652 | endif |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1653 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1654 | romlib.bin: libraries FORCE |
John Tsichritzis | f6ea99b | 2019-05-21 15:47:37 +0100 | [diff] [blame] | 1655 | ${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] | 1656 | |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1657 | memmap: all |
Harrison Mutai | e9bc488 | 2023-02-23 10:33:58 +0000 | [diff] [blame] | 1658 | ifdef UNIX_MK |
| 1659 | ${Q}PYTHONPATH=${CURDIR}/tools/memory \ |
| 1660 | ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT} |
| 1661 | else |
| 1662 | ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \ |
| 1663 | ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT} |
| 1664 | endif |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1665 | |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1666 | doc: |
| 1667 | @echo " BUILD DOCUMENTATION" |
| 1668 | ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html |
| 1669 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1670 | enctool: ${ENCTOOL} |
| 1671 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1672 | ${ENCTOOL}: FORCE |
Lionel Debieve | 730bde8 | 2022-11-14 11:05:09 +0100 | [diff] [blame] | 1673 | ${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] | 1674 | @${ECHO_BLANK_LINE} |
| 1675 | @echo "Built $@ successfully" |
| 1676 | @${ECHO_BLANK_LINE} |
| 1677 | |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 1678 | cscope: |
| 1679 | @echo " CSCOPE" |
| 1680 | ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files |
| 1681 | ${Q}cscope -b -q -k |
| 1682 | |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1683 | help: |
John Tsichritzis | 0c4dded | 2019-05-21 15:57:31 +0100 | [diff] [blame] | 1684 | @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1685 | @echo "" |
| 1686 | @echo "PLAT is used to specify which platform you wish to build." |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 1687 | @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1688 | @echo "" |
John Tsichritzis | 0c4dded | 2019-05-21 15:57:31 +0100 | [diff] [blame] | 1689 | @echo "platform = ${PLATFORM_LIST}" |
| 1690 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1691 | @echo "Please refer to the User Guide for a list of all supported options." |
| 1692 | @echo "Note that the build system doesn't track dependencies for build " |
| 1693 | @echo "options. Therefore, if any of the build options are changed " |
| 1694 | @echo "from a previous build, a clean build must be performed." |
| 1695 | @echo "" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1696 | @echo "Supported Targets:" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1697 | @echo " all Build all individual bootloader binaries" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1698 | @echo " bl1 Build the BL1 binary" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 1699 | @echo " bl2 Build the BL2 binary" |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1700 | @echo " bl2u Build the BL2U binary" |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 1701 | @echo " bl31 Build the BL31 binary" |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 1702 | @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " |
| 1703 | @echo " this builds secure payload specified by AARCH32_SP" |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1704 | @echo " certificates Build the certificates (requires 'GENERATE_COT=1')" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1705 | @echo " fip Build the Firmware Image Package (FIP)" |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1706 | @echo " fwu_fip Build the FWU Firmware Image Package (FIP)" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1707 | @echo " checkcodebase Check the coding style of the entire source tree" |
| 1708 | @echo " checkpatch Check the coding style on changes in the current" |
| 1709 | @echo " branch against BASE_COMMIT (default origin/master)" |
| 1710 | @echo " clean Clean the build for the selected platform" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1711 | @echo " cscope Generate cscope index" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1712 | @echo " distclean Remove all build artifacts for all platforms" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1713 | @echo " certtool Build the Certificate generation tool" |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1714 | @echo " enctool Build the Firmware encryption tool" |
Andreas Färber | ec82cfb | 2016-10-10 05:18:49 +0200 | [diff] [blame] | 1715 | @echo " fiptool Build the Firmware Image Package (FIP) creation tool" |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1716 | @echo " sp Build the Secure Partition Packages" |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 1717 | @echo " sptool Build the Secure Partition Package creation tool" |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 1718 | @echo " dtbs Build the Device Tree Blobs (if required for the platform)" |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1719 | @echo " memmap Print the memory map of the built binaries" |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1720 | @echo " doc Build html based documentation using Sphinx tool" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1721 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1722 | @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] | 1723 | @echo "" |
| 1724 | @echo "example: build all targets for the FVP platform:" |
| 1725 | @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1726 | |
| 1727 | .PHONY: FORCE |
| 1728 | FORCE:; |