Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | # |
Balint Dobszay | 5ce2c32 | 2020-01-10 17:16:27 +0100 | [diff] [blame] | 2 | # Copyright (c) 2013-2020, 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 |
Madhukar Pappireddy | dc5d9fe | 2020-04-20 00:01:09 -0500 | [diff] [blame] | 11 | VERSION_MINOR := 3 |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 12 | |
Juan Castillo | 396644b | 2015-10-22 11:34:44 +0100 | [diff] [blame] | 13 | # Default goal is build all images |
| 14 | .DEFAULT_GOAL := all |
| 15 | |
Douglas Raillard | 527cd90 | 2016-12-28 14:47:50 +0000 | [diff] [blame] | 16 | # Avoid any implicit propagation of command line variable definitions to |
| 17 | # sub-Makefiles, like CFLAGS that we reserved for the firmware images' |
| 18 | # usage. Other command line options like "-s" are still propagated as usual. |
| 19 | MAKEOVERRIDES = |
| 20 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 21 | MAKE_HELPERS_DIRECTORY := make_helpers/ |
| 22 | include ${MAKE_HELPERS_DIRECTORY}build_macros.mk |
Evan Lloyd | a71d259 | 2015-12-02 18:56:06 +0000 | [diff] [blame] | 23 | include ${MAKE_HELPERS_DIRECTORY}build_env.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 24 | |
| 25 | ################################################################################ |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 26 | # Default values for build configurations, and their dependencies |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 27 | ################################################################################ |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 28 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 29 | include ${MAKE_HELPERS_DIRECTORY}defaults.mk |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 30 | |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 31 | # Assertions enabled for DEBUG builds by default |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 32 | ENABLE_ASSERTIONS := ${DEBUG} |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 33 | ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} |
| 34 | PLAT := ${DEFAULT_PLAT} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 35 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 36 | ################################################################################ |
| 37 | # Checkpatch script options |
| 38 | ################################################################################ |
| 39 | |
Sandrine Bailleux | 0b5a158 | 2016-06-02 11:19:59 +0100 | [diff] [blame] | 40 | CHECKCODE_ARGS := --no-patch |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 41 | # 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] | 42 | INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 43 | include/drivers/arm/cryptocell, \ |
| 44 | $(wildcard include/drivers/arm/*))) |
| 45 | INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h |
| 46 | INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 47 | include/drivers/arm, \ |
| 48 | $(wildcard include/drivers/*))) |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 49 | INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 50 | include/lib/libfdt \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 51 | include/lib/libc, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 52 | $(wildcard include/lib/*))) |
| 53 | INC_DIRS_TO_CHECK := $(sort $(filter-out \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 54 | include/lib \ |
| 55 | include/drivers, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 56 | $(wildcard include/*))) |
| 57 | LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 58 | lib/compiler-rt \ |
Antonio Nino Diaz | d84f88e | 2017-01-16 17:20:45 +0000 | [diff] [blame] | 59 | lib/libfdt% \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 60 | lib/libc, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 61 | $(wildcard lib/*))) |
| 62 | ROOT_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 63 | lib \ |
| 64 | include \ |
| 65 | docs \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 66 | %.rst, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 67 | $(wildcard *))) |
| 68 | CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ |
| 69 | ${INC_DIRS_TO_CHECK} \ |
| 70 | ${INC_LIB_DIRS_TO_CHECK} \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 71 | ${LIB_DIRS_TO_CHECK} \ |
| 72 | ${INC_DRV_DIRS_TO_CHECK} \ |
| 73 | ${INC_ARM_DIRS_TO_CHECK} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 74 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 75 | |
| 76 | ################################################################################ |
| 77 | # Process build options |
| 78 | ################################################################################ |
| 79 | |
| 80 | # Verbose flag |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 81 | ifeq (${V},0) |
Evan Lloyd | f4ba5ca | 2015-12-03 09:47:51 +0000 | [diff] [blame] | 82 | Q:=@ |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 83 | ECHO:=@echo |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 84 | CHECKCODE_ARGS += --no-summary --terse |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 85 | else |
Evan Lloyd | f4ba5ca | 2015-12-03 09:47:51 +0000 | [diff] [blame] | 86 | Q:= |
Antonio Nino Diaz | ffd122b | 2018-10-19 15:44:30 +0100 | [diff] [blame] | 87 | ECHO:=$(ECHO_QUIET) |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 88 | endif |
| 89 | |
| 90 | ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),) |
| 91 | Q:=@ |
Antonio Nino Diaz | ffd122b | 2018-10-19 15:44:30 +0100 | [diff] [blame] | 92 | ECHO:=$(ECHO_QUIET) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 93 | endif |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 94 | |
| 95 | export Q ECHO |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 96 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 97 | # The cert_create tool cannot generate certificates individually, so we use the |
| 98 | # target 'certificates' to create them all |
| 99 | ifneq (${GENERATE_COT},0) |
| 100 | FIP_DEPS += certificates |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 101 | FWU_FIP_DEPS += fwu_certificates |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 102 | endif |
| 103 | |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 104 | # Process BRANCH_PROTECTION value and set |
| 105 | # Pointer Authentication and Branch Target Identification flags |
| 106 | ifeq (${BRANCH_PROTECTION},0) |
| 107 | # Default value turns off all types of branch protection |
| 108 | BP_OPTION := none |
| 109 | else ifneq (${ARCH},aarch64) |
| 110 | $(error BRANCH_PROTECTION requires AArch64) |
| 111 | else ifeq (${BRANCH_PROTECTION},1) |
| 112 | # Enables all types of branch protection features |
| 113 | BP_OPTION := standard |
| 114 | ENABLE_BTI := 1 |
| 115 | ENABLE_PAUTH := 1 |
| 116 | else ifeq (${BRANCH_PROTECTION},2) |
| 117 | # Return address signing to its standard level |
| 118 | BP_OPTION := pac-ret |
| 119 | ENABLE_PAUTH := 1 |
| 120 | else ifeq (${BRANCH_PROTECTION},3) |
| 121 | # Extend the signing to include leaf functions |
| 122 | BP_OPTION := pac-ret+leaf |
| 123 | ENABLE_PAUTH := 1 |
Alexei Fedorov | e039e48 | 2020-06-19 14:33:49 +0100 | [diff] [blame] | 124 | else ifeq (${BRANCH_PROTECTION},4) |
| 125 | # Turn on branch target identification mechanism |
| 126 | BP_OPTION := bti |
| 127 | ENABLE_BTI := 1 |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 128 | else |
| 129 | $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION}) |
| 130 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 131 | |
Soby Mathew | ad04201 | 2019-09-25 14:03:41 +0100 | [diff] [blame] | 132 | # USE_SPINLOCK_CAS requires AArch64 build |
| 133 | ifeq (${USE_SPINLOCK_CAS},1) |
| 134 | ifneq (${ARCH},aarch64) |
| 135 | $(error USE_SPINLOCK_CAS requires AArch64) |
| 136 | else |
| 137 | $(info USE_SPINLOCK_CAS is an experimental feature) |
| 138 | endif |
| 139 | endif |
| 140 | |
Olivier Deprez | cb4c562 | 2019-09-19 17:46:46 +0200 | [diff] [blame] | 141 | # USE_DEBUGFS experimental feature recommended only in debug builds |
| 142 | ifeq (${USE_DEBUGFS},1) |
| 143 | ifeq (${DEBUG},1) |
| 144 | $(warning DEBUGFS experimental feature is enabled.) |
| 145 | else |
| 146 | $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY) |
| 147 | endif |
| 148 | endif |
| 149 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 150 | ifneq (${DECRYPTION_SUPPORT},none) |
| 151 | ENC_ARGS += -f ${FW_ENC_STATUS} |
| 152 | ENC_ARGS += -k ${ENC_KEY} |
| 153 | ENC_ARGS += -n ${ENC_NONCE} |
| 154 | FIP_DEPS += enctool |
| 155 | FWU_FIP_DEPS += enctool |
| 156 | endif |
| 157 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 158 | ################################################################################ |
| 159 | # Toolchain |
| 160 | ################################################################################ |
| 161 | |
dp-arm | e95aaa6 | 2017-05-02 11:09:11 +0100 | [diff] [blame] | 162 | HOSTCC := gcc |
| 163 | export HOSTCC |
| 164 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 165 | CC := ${CROSS_COMPILE}gcc |
| 166 | CPP := ${CROSS_COMPILE}cpp |
| 167 | AS := ${CROSS_COMPILE}gcc |
| 168 | AR := ${CROSS_COMPILE}ar |
Roberto Vargas | 1fd0d1b | 2018-04-13 14:26:47 +0100 | [diff] [blame] | 169 | LINKER := ${CROSS_COMPILE}ld |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 170 | OC := ${CROSS_COMPILE}objcopy |
| 171 | OD := ${CROSS_COMPILE}objdump |
| 172 | NM := ${CROSS_COMPILE}nm |
| 173 | PP := ${CROSS_COMPILE}gcc -E |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 174 | DTC := dtc |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 175 | |
Julius Werner | b1f64a7 | 2018-01-10 15:12:47 -0800 | [diff] [blame] | 176 | # Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH). |
| 177 | ifneq ($(strip $(wildcard ${LD}.bfd) \ |
Roberto Vargas | 1fd0d1b | 2018-04-13 14:26:47 +0100 | [diff] [blame] | 178 | $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),) |
| 179 | LINKER := ${LINKER}.bfd |
Julius Werner | b1f64a7 | 2018-01-10 15:12:47 -0800 | [diff] [blame] | 180 | endif |
| 181 | |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 182 | ifeq (${ARM_ARCH_MAJOR},7) |
| 183 | target32-directive = -target arm-none-eabi |
| 184 | # Will set march32-directive from platform configuration |
| 185 | else |
| 186 | target32-directive = -target armv8a-none-eabi |
Alexei Fedorov | b567e5d | 2019-03-11 16:51:47 +0000 | [diff] [blame] | 187 | |
| 188 | # Set the compiler's target architecture profile based on ARM_ARCH_MINOR option |
| 189 | ifeq (${ARM_ARCH_MINOR},0) |
Sandrine Bailleux | 896da5b | 2017-11-24 08:43:40 +0000 | [diff] [blame] | 190 | march32-directive = -march=armv8-a |
Alexei Fedorov | b567e5d | 2019-03-11 16:51:47 +0000 | [diff] [blame] | 191 | march64-directive = -march=armv8-a |
| 192 | else |
| 193 | march32-directive = -march=armv8.${ARM_ARCH_MINOR}-a |
| 194 | march64-directive = -march=armv8.${ARM_ARCH_MINOR}-a |
| 195 | endif |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 196 | endif |
| 197 | |
Manish V Badarkhe | 75c972a | 2020-03-22 05:06:38 +0000 | [diff] [blame] | 198 | # Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards |
| 199 | ifeq ($(ARCH), aarch64) |
Sami Mujawar | 1bc7b0e | 2020-04-23 09:28:37 +0100 | [diff] [blame] | 200 | # Check if revision is greater than or equal to 8.5 |
| 201 | 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] | 202 | mem_tag_arch_support = yes |
| 203 | endif |
| 204 | endif |
| 205 | |
| 206 | # Enabled required option for memory stack tagging. Currently, these options are |
| 207 | # enabled only for clang and armclang compiler. |
| 208 | ifeq (${SUPPORT_STACK_MEMTAG},yes) |
| 209 | ifdef mem_tag_arch_support |
| 210 | ifneq ( ,$(filter $(notdir $(CC)),armclang clang)) |
| 211 | march64-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a+memtag |
| 212 | ifeq ($(notdir $(CC)),armclang) |
| 213 | TF_CFLAGS += -mmemtag-stack |
| 214 | else ifeq ($(notdir $(CC)),clang) |
| 215 | TF_CFLAGS += -fsanitize=memtag |
| 216 | endif |
| 217 | endif |
| 218 | else |
| 219 | $(error "Error: stack memory tagging is not supported for architecture \ |
| 220 | ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a") |
| 221 | endif |
| 222 | endif |
| 223 | |
Varun Wadekar | dbbca2f | 2018-12-12 15:22:27 -0800 | [diff] [blame] | 224 | ifneq ($(findstring armclang,$(notdir $(CC))),) |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 225 | TF_CFLAGS_aarch32 = -target arm-arm-none-eabi $(march32-directive) |
Alexei Fedorov | b567e5d | 2019-03-11 16:51:47 +0000 | [diff] [blame] | 226 | TF_CFLAGS_aarch64 = -target aarch64-arm-none-eabi $(march64-directive) |
Roberto Vargas | 1fd0d1b | 2018-04-13 14:26:47 +0100 | [diff] [blame] | 227 | LD = $(LINKER) |
Roberto Vargas | 69a01e7 | 2018-04-16 11:29:45 +0100 | [diff] [blame] | 228 | AS = $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH)) |
Roberto Vargas | 48df32d | 2018-05-10 13:38:19 +0100 | [diff] [blame] | 229 | CPP = $(CC) -E $(TF_CFLAGS_$(ARCH)) |
| 230 | PP = $(CC) -E $(TF_CFLAGS_$(ARCH)) |
dp-arm | b3bfd34 | 2017-05-03 16:30:32 +0100 | [diff] [blame] | 231 | else ifneq ($(findstring clang,$(notdir $(CC))),) |
Arve Hjønnevåg | 8ed49ab | 2020-02-04 15:50:24 -0800 | [diff] [blame] | 232 | CLANG_CCDIR = $(if $(filter-out ./,$(dir $(CC))),$(dir $(CC)),) |
Yann Gautier | 60af71c | 2018-12-18 10:46:34 +0100 | [diff] [blame] | 233 | TF_CFLAGS_aarch32 = $(target32-directive) $(march32-directive) |
Alexei Fedorov | b567e5d | 2019-03-11 16:51:47 +0000 | [diff] [blame] | 234 | TF_CFLAGS_aarch64 = -target aarch64-elf $(march64-directive) |
Arve Hjønnevåg | 8ed49ab | 2020-02-04 15:50:24 -0800 | [diff] [blame] | 235 | LD = $(CLANG_CCDIR)ld.lld |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 236 | ifeq (, $(shell which $(LD))) |
| 237 | $(error "No $(LD) in PATH, make sure it is installed or set LD to a different linker") |
| 238 | endif |
Roberto Vargas | 69a01e7 | 2018-04-16 11:29:45 +0100 | [diff] [blame] | 239 | AS = $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH)) |
Roberto Vargas | 48df32d | 2018-05-10 13:38:19 +0100 | [diff] [blame] | 240 | CPP = $(CC) -E |
| 241 | PP = $(CC) -E |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 242 | else ifneq ($(findstring gcc,$(notdir $(CC))),) |
| 243 | TF_CFLAGS_aarch32 = $(march32-directive) |
| 244 | TF_CFLAGS_aarch64 = $(march64-directive) |
| 245 | ifeq ($(ENABLE_LTO),1) |
| 246 | # Enable LTO only for aarch64 |
| 247 | ifeq (${ARCH},aarch64) |
| 248 | LTO_CFLAGS = -flto |
| 249 | # Use gcc as a wrapper for the ld, recommended for LTO |
| 250 | LINKER := ${CROSS_COMPILE}gcc |
| 251 | endif |
| 252 | endif |
| 253 | LD = $(LINKER) |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 254 | else |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 255 | TF_CFLAGS_aarch32 = $(march32-directive) |
Alexei Fedorov | b567e5d | 2019-03-11 16:51:47 +0000 | [diff] [blame] | 256 | TF_CFLAGS_aarch64 = $(march64-directive) |
Roberto Vargas | 1fd0d1b | 2018-04-13 14:26:47 +0100 | [diff] [blame] | 257 | LD = $(LINKER) |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 258 | endif |
| 259 | |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 260 | # Process Debug flag |
| 261 | $(eval $(call add_define,DEBUG)) |
| 262 | ifneq (${DEBUG}, 0) |
| 263 | BUILD_TYPE := debug |
| 264 | TF_CFLAGS += -g |
| 265 | |
| 266 | ifneq ($(findstring clang,$(notdir $(CC))),) |
| 267 | ASFLAGS += -g |
| 268 | else |
| 269 | ASFLAGS += -g -Wa,--gdwarf-2 |
| 270 | endif |
| 271 | |
| 272 | # Use LOG_LEVEL_INFO by default for debug builds |
| 273 | LOG_LEVEL := 40 |
| 274 | else |
| 275 | BUILD_TYPE := release |
| 276 | # Use LOG_LEVEL_NOTICE by default for release builds |
| 277 | LOG_LEVEL := 20 |
| 278 | endif |
| 279 | |
Peiyuan Song | 44f8f47 | 2020-04-25 16:53:43 +0800 | [diff] [blame] | 280 | # Default build string (git branch and commit) |
| 281 | ifeq (${BUILD_STRING},) |
| 282 | BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null) |
| 283 | endif |
| 284 | VERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING} |
| 285 | |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 286 | ifeq (${AARCH32_INSTRUCTION_SET},A32) |
| 287 | TF_CFLAGS_aarch32 += -marm |
| 288 | else ifeq (${AARCH32_INSTRUCTION_SET},T32) |
| 289 | TF_CFLAGS_aarch32 += -mthumb |
| 290 | else |
| 291 | $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET}) |
| 292 | endif |
| 293 | |
Sandrine Bailleux | 1aa72ec | 2018-07-03 09:14:45 +0200 | [diff] [blame] | 294 | TF_CFLAGS_aarch32 += -mno-unaligned-access |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 295 | TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 296 | |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 297 | ifneq (${BP_OPTION},none) |
| 298 | TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION} |
| 299 | endif |
| 300 | |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 301 | ASFLAGS_aarch32 = $(march32-directive) |
Alexei Fedorov | b567e5d | 2019-03-11 16:51:47 +0000 | [diff] [blame] | 302 | ASFLAGS_aarch64 = $(march64-directive) |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 303 | |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 304 | # General warnings |
| 305 | WARNINGS := -Wall -Wmissing-include-dirs -Wunused \ |
Justin Chadwell | 7d0e3ba | 2019-09-17 15:21:50 +0100 | [diff] [blame] | 306 | -Wdisabled-optimization -Wvla -Wshadow \ |
Madhukar Pappireddy | fc9b411 | 2019-12-23 14:49:52 -0600 | [diff] [blame] | 307 | -Wno-unused-parameter -Wredundant-decls |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 308 | |
| 309 | # Additional warnings |
| 310 | # Level 1 |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 311 | WARNING1 := -Wextra |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 312 | WARNING1 += -Wmissing-format-attribute |
| 313 | WARNING1 += -Wmissing-prototypes |
| 314 | WARNING1 += -Wold-style-definition |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 315 | |
Justin Chadwell | 7d0e3ba | 2019-09-17 15:21:50 +0100 | [diff] [blame] | 316 | # Level 2 |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 317 | WARNING2 := -Waggregate-return |
| 318 | WARNING2 += -Wcast-align |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 319 | WARNING2 += -Wnested-externs |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 320 | |
| 321 | WARNING3 := -Wbad-function-cast |
| 322 | WARNING3 += -Wcast-qual |
| 323 | WARNING3 += -Wconversion |
| 324 | WARNING3 += -Wpacked |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 325 | WARNING3 += -Wpointer-arith |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 326 | WARNING3 += -Wswitch-default |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 327 | |
| 328 | ifeq (${W},1) |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 329 | WARNINGS += $(WARNING1) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 330 | else ifeq (${W},2) |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 331 | WARNINGS += $(WARNING1) $(WARNING2) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 332 | else ifeq (${W},3) |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 333 | WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 334 | endif |
| 335 | |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 336 | # Compiler specific warnings |
Ambroise Vincent | 067e4d9 | 2019-05-24 12:47:43 +0100 | [diff] [blame] | 337 | ifeq ($(findstring clang,$(notdir $(CC))),) |
Justin Chadwell | 7a91423 | 2019-07-03 14:15:56 +0100 | [diff] [blame] | 338 | # not using clang |
Justin Chadwell | 42d18ca | 2019-09-18 14:13:42 +0100 | [diff] [blame] | 339 | WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \ |
| 340 | -Wpacked-bitfield-compat -Wshift-overflow=2 \ |
| 341 | -Wlogical-op |
Justin Chadwell | 7a91423 | 2019-07-03 14:15:56 +0100 | [diff] [blame] | 342 | else |
| 343 | # using clang |
Justin Chadwell | 42d18ca | 2019-09-18 14:13:42 +0100 | [diff] [blame] | 344 | WARNINGS += -Wshift-overflow -Wshift-sign-overflow \ |
| 345 | -Wlogical-op-parentheses |
Ambroise Vincent | 067e4d9 | 2019-05-24 12:47:43 +0100 | [diff] [blame] | 346 | endif |
| 347 | |
Yann Gautier | 957c353 | 2018-12-10 18:08:53 +0100 | [diff] [blame] | 348 | ifneq (${E},0) |
| 349 | ERRORS := -Werror |
| 350 | endif |
| 351 | |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 352 | CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \ |
| 353 | $(ERRORS) $(WARNINGS) |
Masahiro Yamada | 0dec9fa | 2016-12-22 12:51:53 +0900 | [diff] [blame] | 354 | ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \ |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 355 | -ffreestanding -Wa,--fatal-warnings |
Masahiro Yamada | 0dec9fa | 2016-12-22 12:51:53 +0900 | [diff] [blame] | 356 | TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 357 | -ffunction-sections -fdata-sections \ |
| 358 | -ffreestanding -fno-builtin -fno-common \ |
| 359 | -Os -std=gnu99 |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 360 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 361 | ifeq (${SANITIZE_UB},on) |
| 362 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover |
| 363 | endif |
| 364 | ifeq (${SANITIZE_UB},trap) |
| 365 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \ |
| 366 | -fsanitize-undefined-trap-on-error |
| 367 | endif |
| 368 | |
david cunado | 34ab609 | 2017-11-30 21:58:01 +0000 | [diff] [blame] | 369 | GCC_V_OUTPUT := $(shell $(CC) -v 2>&1) |
david cunado | 34ab609 | 2017-11-30 21:58:01 +0000 | [diff] [blame] | 370 | |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 371 | # LD = armlink |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 372 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
| 373 | TF_LDFLAGS += --diag_error=warning --lto_level=O1 |
| 374 | TF_LDFLAGS += --remove --info=unused,unusedsymbols |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 375 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 376 | |
| 377 | # LD = gcc (used when GCC LTO is enabled) |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 378 | else ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 379 | # Pass ld options with Wl or Xlinker switches |
| 380 | TF_LDFLAGS += -Wl,--fatal-warnings -O1 |
| 381 | TF_LDFLAGS += -Wl,--gc-sections |
| 382 | ifeq ($(ENABLE_LTO),1) |
| 383 | ifeq (${ARCH},aarch64) |
| 384 | TF_LDFLAGS += -flto -fuse-linker-plugin |
| 385 | endif |
| 386 | endif |
| 387 | # GCC automatically adds fix-cortex-a53-843419 flag when used to link |
| 388 | # which breaks some builds, so disable if errata fix is not explicitly enabled |
| 389 | ifneq (${ERRATA_A53_843419},1) |
| 390 | TF_LDFLAGS += -mno-fix-cortex-a53-843419 |
| 391 | endif |
| 392 | TF_LDFLAGS += -nostdlib |
| 393 | TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH))) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 394 | |
| 395 | # LD = gcc-ld (ld) or llvm-ld (ld.lld) or other |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 396 | else |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 397 | TF_LDFLAGS += --fatal-warnings -O1 |
| 398 | TF_LDFLAGS += --gc-sections |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 399 | # ld.lld doesn't recognize the errata flags, |
| 400 | # therefore don't add those in that case |
| 401 | ifeq ($(findstring ld.lld,$(notdir $(LD))),) |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 402 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 403 | endif |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 404 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 405 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 406 | DTC_FLAGS += -I dts -O dtb |
Louis Mayencourt | 6b232d9 | 2020-02-28 16:57:30 +0000 | [diff] [blame] | 407 | DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \ |
| 408 | -x assembler-with-cpp $(DEFINES) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 409 | |
Alexei Fedorov | 25d7c88 | 2020-03-20 18:38:55 +0000 | [diff] [blame] | 410 | ifeq ($(MEASURED_BOOT),1) |
| 411 | DTC_CPPFLAGS += -DMEASURED_BOOT -DBL2_HASH_SIZE=${TCG_DIGEST_SIZE} |
| 412 | endif |
| 413 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 414 | ################################################################################ |
| 415 | # Common sources and include directories |
| 416 | ################################################################################ |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 417 | include lib/compiler-rt/compiler-rt.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 418 | |
| 419 | BL_COMMON_SOURCES += common/bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 420 | common/tf_log.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 421 | common/${ARCH}/debug.S \ |
Julius Werner | 03020da | 2018-11-27 22:10:56 -0800 | [diff] [blame] | 422 | drivers/console/multi_console.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 423 | lib/${ARCH}/cache_helpers.S \ |
| 424 | lib/${ARCH}/misc_helpers.S \ |
Soby Mathew | 2f38ce3 | 2018-02-08 17:45:12 +0000 | [diff] [blame] | 425 | plat/common/plat_bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 426 | plat/common/plat_log_common.c \ |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame] | 427 | plat/common/${ARCH}/plat_common.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 428 | plat/common/${ARCH}/platform_helpers.S \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 429 | ${COMPILER_RT_SRCS} |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 430 | |
Antonio Nino Diaz | eea20fc | 2018-08-16 15:42:44 +0100 | [diff] [blame] | 431 | ifeq ($(notdir $(CC)),armclang) |
| 432 | BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S |
| 433 | endif |
| 434 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 435 | ifeq (${SANITIZE_UB},on) |
| 436 | BL_COMMON_SOURCES += plat/common/ubsan.c |
| 437 | endif |
| 438 | |
Yann Gautier | 2cf1dbc | 2018-06-18 16:00:23 +0200 | [diff] [blame] | 439 | INCLUDES += -Iinclude \ |
Antonio Nino Diaz | 8d1ade6 | 2018-12-17 17:20:57 +0000 | [diff] [blame] | 440 | -Iinclude/arch/${ARCH} \ |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 441 | -Iinclude/lib/cpus/${ARCH} \ |
| 442 | -Iinclude/lib/el3_runtime/${ARCH} \ |
| 443 | ${PLAT_INCLUDES} \ |
| 444 | ${SPD_INCLUDES} |
| 445 | |
Antonio Nino Diaz | c3a2cf2 | 2018-11-19 11:48:30 +0000 | [diff] [blame] | 446 | include common/backtrace/backtrace.mk |
| 447 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 448 | ################################################################################ |
| 449 | # Generic definitions |
| 450 | ################################################################################ |
| 451 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 452 | include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk |
| 453 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 454 | BUILD_BASE := ./build |
| 455 | BUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 456 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 457 | SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 458 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 459 | # Platforms providing their own TBB makefile may override this value |
| 460 | INCLUDE_TBBR_MK := 1 |
| 461 | |
Jeenu Viswambharan | e5c39fd | 2014-05-16 11:38:10 +0100 | [diff] [blame] | 462 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 463 | ################################################################################ |
| 464 | # Include SPD Makefile if one has been specified |
| 465 | ################################################################################ |
| 466 | |
| 467 | ifneq (${SPD},none) |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 468 | ifeq (${ARCH},aarch32) |
Sandrine Bailleux | 247e339 | 2018-10-03 14:56:38 +0200 | [diff] [blame] | 469 | $(error "Error: SPD is incompatible with AArch32.") |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 470 | endif |
| 471 | |
| 472 | ifdef EL3_PAYLOAD_BASE |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 473 | $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") |
| 474 | $(warning "The SPD and its BL32 companion will be present but ignored.") |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 475 | endif |
Achin Gupta | 60b7b8a | 2019-10-11 15:50:43 +0100 | [diff] [blame] | 476 | |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 477 | ifeq (${SPD},spmd) |
Max Shvetsov | e7fd80e | 2020-02-25 13:55:00 +0000 | [diff] [blame] | 478 | $(warning "SPMD is an experimental feature") |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 479 | # SPMD is located in std_svc directory |
| 480 | SPD_DIR := std_svc |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 481 | |
Max Shvetsov | e7fd80e | 2020-02-25 13:55:00 +0000 | [diff] [blame] | 482 | ifeq ($(SPMD_SPM_AT_SEL2),1) |
| 483 | ifeq ($(CTX_INCLUDE_EL2_REGS),0) |
| 484 | $(error SPMD with SPM at S-EL2 requires CTX_INCLUDE_EL2_REGS option) |
| 485 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 486 | endif |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 487 | else |
| 488 | # All other SPDs in spd directory |
| 489 | SPD_DIR := spd |
| 490 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 491 | |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 492 | # We expect to locate an spd.mk under the specified SPD directory |
| 493 | SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk) |
| 494 | |
| 495 | ifeq (${SPD_MAKE},) |
| 496 | $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located) |
| 497 | endif |
| 498 | $(info Including ${SPD_MAKE}) |
| 499 | include ${SPD_MAKE} |
| 500 | |
| 501 | # If there's BL32 companion for the chosen SPD, we expect that the SPD's |
| 502 | # Makefile would set NEED_BL32 to "yes". In this case, the build system |
| 503 | # supports two mutually exclusive options: |
| 504 | # * BL32 is built from source: then BL32_SOURCES must contain the list |
| 505 | # of source files to build BL32 |
| 506 | # * BL32 is a prebuilt binary: then BL32 must point to the image file |
| 507 | # that will be included in the FIP |
| 508 | # If both BL32_SOURCES and BL32 are defined, the binary takes precedence |
| 509 | # over the sources. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 510 | endif |
| 511 | |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 512 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 513 | # Include the platform specific Makefile after the SPD Makefile (the platform |
| 514 | # makefile may use all previous definitions in this file) |
| 515 | ################################################################################ |
Jeenu Viswambharan | e5c39fd | 2014-05-16 11:38:10 +0100 | [diff] [blame] | 516 | |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 517 | include ${PLAT_MAKEFILE_FULL} |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 518 | |
Masahiro Yamada | e2395b4 | 2017-11-04 03:12:28 +0900 | [diff] [blame] | 519 | $(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT})) |
| 520 | |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 521 | ifeq (${ARM_ARCH_MAJOR},7) |
| 522 | include make_helpers/armv7-a-cpus.mk |
| 523 | endif |
| 524 | |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 525 | PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT}) |
| 526 | ifneq ($(PIE_FOUND),) |
| 527 | TF_CFLAGS += -fno-PIE |
| 528 | endif |
| 529 | |
| 530 | ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 531 | PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 532 | else |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 533 | PIE_LDFLAGS += -pie --no-dynamic-linker |
| 534 | endif |
| 535 | |
| 536 | ifeq ($(ENABLE_PIE),1) |
Masahiro Yamada | 65d699d | 2020-01-17 13:45:02 +0900 | [diff] [blame] | 537 | ifeq ($(BL2_AT_EL3),1) |
| 538 | ifneq ($(BL2_IN_XIP_MEM),1) |
| 539 | BL2_CFLAGS += -fpie |
| 540 | BL2_LDFLAGS += $(PIE_LDFLAGS) |
| 541 | endif |
| 542 | endif |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 543 | BL31_CFLAGS += -fpie |
| 544 | BL31_LDFLAGS += $(PIE_LDFLAGS) |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 545 | ifeq ($(ARCH),aarch64) |
| 546 | BL32_CFLAGS += -fpie |
| 547 | BL32_LDFLAGS += $(PIE_LDFLAGS) |
| 548 | endif |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 549 | endif |
| 550 | |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 551 | ifeq (${ARCH},aarch64) |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 552 | BL1_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 553 | ifeq ($(BL2_AT_EL3),1) |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 554 | BL2_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 555 | else |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 556 | BL2_CPPFLAGS += -DIMAGE_AT_EL1 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 557 | endif |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 558 | BL2U_CPPFLAGS += -DIMAGE_AT_EL1 |
| 559 | BL31_CPPFLAGS += -DIMAGE_AT_EL3 |
| 560 | BL32_CPPFLAGS += -DIMAGE_AT_EL1 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 561 | endif |
| 562 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 563 | # Include the CPU specific operations makefile, which provides default |
| 564 | # values for all CPU errata workarounds and CPU specific optimisations. |
| 565 | # This can be overridden by the platform. |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 566 | include lib/cpus/cpu-ops.mk |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 567 | |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 568 | ifeq (${ARCH},aarch32) |
| 569 | NEED_BL32 := yes |
| 570 | |
| 571 | ################################################################################ |
| 572 | # Build `AARCH32_SP` as BL32 image for AArch32 |
| 573 | ################################################################################ |
| 574 | ifneq (${AARCH32_SP},none) |
| 575 | # We expect to locate an sp.mk under the specified AARCH32_SP directory |
| 576 | AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) |
| 577 | |
| 578 | ifeq (${AARCH32_SP_MAKE},) |
| 579 | $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) |
| 580 | endif |
| 581 | |
| 582 | $(info Including ${AARCH32_SP_MAKE}) |
| 583 | include ${AARCH32_SP_MAKE} |
| 584 | endif |
| 585 | |
Varun Wadekar | 3f9002c | 2019-01-31 09:22:30 -0800 | [diff] [blame] | 586 | endif |
| 587 | |
| 588 | ################################################################################ |
| 589 | # Include libc if not overridden |
| 590 | ################################################################################ |
| 591 | ifeq (${OVERRIDE_LIBC},0) |
| 592 | include lib/libc/libc.mk |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 593 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 594 | |
| 595 | ################################################################################ |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 596 | # Check incompatible options |
| 597 | ################################################################################ |
| 598 | |
| 599 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 600 | ifdef PRELOADED_BL33_BASE |
| 601 | $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ |
| 602 | incompatible build options. EL3_PAYLOAD_BASE has priority.") |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 603 | endif |
Qixiang Xu | be9bd9d | 2017-08-24 11:03:23 +0800 | [diff] [blame] | 604 | ifneq (${GENERATE_COT},0) |
| 605 | $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.") |
| 606 | endif |
| 607 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 608 | $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.") |
| 609 | endif |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 610 | endif |
| 611 | |
| 612 | ifeq (${NEED_BL33},yes) |
| 613 | ifdef EL3_PAYLOAD_BASE |
| 614 | $(warning "BL33 image is not needed when option \ |
| 615 | BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") |
| 616 | endif |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 617 | ifdef PRELOADED_BL33_BASE |
| 618 | $(warning "BL33 image is not needed when option \ |
| 619 | PRELOADED_BL33_BASE is used and won't be added to the FIP \ |
| 620 | file.") |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 621 | endif |
| 622 | endif |
| 623 | |
Jeenu Viswambharan | 7ed2cbc | 2017-01-06 16:14:42 +0000 | [diff] [blame] | 624 | # When building for systems with hardware-assisted coherency, there's no need to |
| 625 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 626 | ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1) |
| 627 | $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY) |
| 628 | endif |
Yatharth Kochar | f528faf | 2016-06-28 16:58:26 +0100 | [diff] [blame] | 629 | |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 630 | #For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1. |
| 631 | ifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1) |
| 632 | $(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled") |
| 633 | endif |
| 634 | |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 635 | # For RAS_EXTENSION, require that EAs are handled in EL3 first |
| 636 | ifeq ($(RAS_EXTENSION),1) |
| 637 | ifneq ($(HANDLE_EA_EL3_FIRST),1) |
| 638 | $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST must also be 1) |
| 639 | endif |
| 640 | endif |
| 641 | |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 642 | # When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled |
| 643 | ifeq ($(FAULT_INJECTION_SUPPORT),1) |
| 644 | ifneq ($(RAS_EXTENSION),1) |
| 645 | $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1) |
| 646 | endif |
| 647 | endif |
| 648 | |
Roberto Vargas | 025946a | 2018-09-24 17:20:48 +0100 | [diff] [blame] | 649 | # DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1 |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 650 | ifeq ($(DYN_DISABLE_AUTH), 1) |
| 651 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 652 | $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.") |
| 653 | endif |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 654 | endif |
| 655 | |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 656 | # SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled. |
| 657 | ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1) |
| 658 | $(error "SDEI_IN_FCONF is an experimental feature and is only supported when \ |
| 659 | SDEI_SUPPORT is enabled") |
| 660 | endif |
| 661 | |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 662 | # 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] | 663 | # registers associated to it are also saved and restored. |
| 664 | # 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] | 665 | ifeq ($(ENABLE_PAUTH),1) |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 666 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),0) |
| 667 | $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1) |
Alexei Fedorov | 2831d58 | 2019-03-13 11:05:07 +0000 | [diff] [blame] | 668 | endif |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 669 | endif |
| 670 | |
| 671 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),1) |
| 672 | ifneq (${ARCH},aarch64) |
| 673 | $(error CTX_INCLUDE_PAUTH_REGS requires AArch64) |
| 674 | else |
| 675 | $(info CTX_INCLUDE_PAUTH_REGS is an experimental feature) |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 676 | endif |
| 677 | endif |
| 678 | |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 679 | ifeq ($(ENABLE_PAUTH),1) |
| 680 | $(info Pointer Authentication is an experimental feature) |
| 681 | endif |
| 682 | |
| 683 | ifeq ($(ENABLE_BTI),1) |
| 684 | $(info Branch Protection is an experimental feature) |
| 685 | endif |
| 686 | |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 687 | ifeq ($(CTX_INCLUDE_MTE_REGS),1) |
| 688 | ifneq (${ARCH},aarch64) |
| 689 | $(error CTX_INCLUDE_MTE_REGS requires AArch64) |
| 690 | else |
| 691 | $(info CTX_INCLUDE_MTE_REGS is an experimental feature) |
| 692 | endif |
| 693 | endif |
| 694 | |
Alexei Fedorov | 913cb7e | 2020-01-23 14:27:38 +0000 | [diff] [blame] | 695 | ifeq ($(MEASURED_BOOT),1) |
| 696 | ifneq (${TRUSTED_BOARD_BOOT},1) |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 697 | $(error MEASURED_BOOT requires TRUSTED_BOARD_BOOT=1) |
Alexei Fedorov | 913cb7e | 2020-01-23 14:27:38 +0000 | [diff] [blame] | 698 | else |
| 699 | $(info MEASURED_BOOT is an experimental feature) |
| 700 | endif |
| 701 | endif |
| 702 | |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 703 | ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) |
| 704 | ifeq (${ALLOW_RO_XLAT_TABLES}, 1) |
| 705 | $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2") |
| 706 | endif |
| 707 | endif |
| 708 | |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 709 | ifneq (${DECRYPTION_SUPPORT},none) |
| 710 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 711 | $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set) |
| 712 | else |
| 713 | $(info DECRYPTION_SUPPORT is an experimental feature) |
| 714 | endif |
| 715 | endif |
| 716 | |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 717 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 718 | # Process platform overrideable behaviour |
| 719 | ################################################################################ |
| 720 | |
John Tsichritzis | 63801cd | 2019-07-05 14:22:12 +0100 | [diff] [blame] | 721 | # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and |
| 722 | # Certificate generation tools. This flag can be overridden by the platform. |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 723 | ifdef BL2_SOURCES |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 724 | ifdef EL3_PAYLOAD_BASE |
| 725 | # If booting an EL3 payload there is no need for a BL33 image |
| 726 | # in the FIP file. |
| 727 | NEED_BL33 := no |
| 728 | else |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 729 | ifdef PRELOADED_BL33_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 730 | # If booting a BL33 preloaded image there is no need of |
| 731 | # another one in the FIP file. |
| 732 | NEED_BL33 := no |
| 733 | else |
| 734 | NEED_BL33 ?= yes |
| 735 | endif |
| 736 | endif |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 737 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 738 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 739 | # If SCP_BL2 is given, we always want FIP to include it. |
| 740 | ifdef SCP_BL2 |
| 741 | NEED_SCP_BL2 := yes |
| 742 | endif |
| 743 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 744 | # For AArch32, BL31 is not currently supported. |
| 745 | ifneq (${ARCH},aarch32) |
| 746 | ifdef BL31_SOURCES |
| 747 | # When booting an EL3 payload, there is no need to compile the BL31 image nor |
| 748 | # put it in the FIP. |
| 749 | ifndef EL3_PAYLOAD_BASE |
| 750 | NEED_BL31 := yes |
| 751 | endif |
| 752 | endif |
| 753 | endif |
| 754 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 755 | # Process TBB related flags |
| 756 | ifneq (${GENERATE_COT},0) |
| 757 | # Common cert_create options |
| 758 | ifneq (${CREATE_KEYS},0) |
| 759 | $(eval CRT_ARGS += -n) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 760 | $(eval FWU_CRT_ARGS += -n) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 761 | ifneq (${SAVE_KEYS},0) |
| 762 | $(eval CRT_ARGS += -k) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 763 | $(eval FWU_CRT_ARGS += -k) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 764 | endif |
| 765 | endif |
| 766 | # Include TBBR makefile (unless the platform indicates otherwise) |
| 767 | ifeq (${INCLUDE_TBBR_MK},1) |
| 768 | include make_helpers/tbbr/tbbr_tools.mk |
| 769 | endif |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 770 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 771 | |
Masahiro Yamada | 4d87eb4 | 2016-12-25 13:52:22 +0900 | [diff] [blame] | 772 | ifneq (${FIP_ALIGN},0) |
| 773 | FIP_ARGS += --align ${FIP_ALIGN} |
| 774 | endif |
| 775 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 776 | ################################################################################ |
Michalis Pappas | 0f223c5 | 2018-03-20 13:01:27 +0800 | [diff] [blame] | 777 | # Include libraries' Makefile that are used in all BL |
| 778 | ################################################################################ |
| 779 | |
| 780 | include lib/stack_protector/stack_protector.mk |
| 781 | |
| 782 | ################################################################################ |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 783 | # Auxiliary tools (fiptool, cert_create, etc) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 784 | ################################################################################ |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 785 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 786 | # Variables for use with Certificate Generation Tool |
| 787 | CRTTOOLPATH ?= tools/cert_create |
Evan Lloyd | 004c9a5 | 2015-12-03 11:35:40 +0000 | [diff] [blame] | 788 | CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 789 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 790 | # Variables for use with Firmware Encryption Tool |
| 791 | ENCTOOLPATH ?= tools/encrypt_fw |
| 792 | ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT} |
| 793 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 794 | # Variables for use with Firmware Image Package |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 795 | FIPTOOLPATH ?= tools/fiptool |
| 796 | FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT} |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 797 | |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 798 | # Variables for use with sptool |
| 799 | SPTOOLPATH ?= tools/sptool |
| 800 | SPTOOL ?= ${SPTOOLPATH}/sptool${BIN_EXT} |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 801 | SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 802 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 803 | # Variables for use with ROMLIB |
| 804 | ROMLIBPATH ?= lib/romlib |
| 805 | |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 806 | # Variable for use with Python |
| 807 | PYTHON ?= python3 |
| 808 | |
| 809 | # Variables for use with PRINT_MEMORY_MAP |
| 810 | PRINT_MEMORY_MAP_PATH ?= tools/memory |
| 811 | PRINT_MEMORY_MAP ?= ${PRINT_MEMORY_MAP_PATH}/print_memory_map.py |
| 812 | |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 813 | # Variables for use with documentation build using Sphinx tool |
| 814 | DOCS_PATH ?= docs |
| 815 | |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 816 | ################################################################################ |
| 817 | # Include BL specific makefiles |
| 818 | ################################################################################ |
| 819 | ifdef BL1_SOURCES |
| 820 | NEED_BL1 := yes |
| 821 | include bl1/bl1.mk |
| 822 | endif |
| 823 | |
| 824 | ifdef BL2_SOURCES |
| 825 | NEED_BL2 := yes |
| 826 | include bl2/bl2.mk |
| 827 | endif |
| 828 | |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 829 | ifdef BL2U_SOURCES |
| 830 | NEED_BL2U := yes |
| 831 | include bl2u/bl2u.mk |
| 832 | endif |
| 833 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 834 | ifeq (${NEED_BL31},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 835 | ifdef BL31_SOURCES |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 836 | include bl31/bl31.mk |
| 837 | endif |
| 838 | endif |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 839 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 840 | ifdef FDT_SOURCES |
| 841 | NEED_FDT := yes |
| 842 | endif |
| 843 | |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 844 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 845 | # Build options checks |
| 846 | ################################################################################ |
| 847 | |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 848 | $(eval $(call assert_boolean,ALLOW_RO_XLAT_TABLES)) |
Sandrine Bailleux | b21b02f | 2015-10-30 15:05:17 +0000 | [diff] [blame] | 849 | $(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 850 | $(eval $(call assert_boolean,CREATE_KEYS)) |
| 851 | $(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS)) |
| 852 | $(eval $(call assert_boolean,CTX_INCLUDE_FPREGS)) |
Antonio Nino Diaz | 594811b | 2019-01-31 11:58:00 +0000 | [diff] [blame] | 853 | $(eval $(call assert_boolean,CTX_INCLUDE_PAUTH_REGS)) |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 854 | $(eval $(call assert_boolean,CTX_INCLUDE_MTE_REGS)) |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 855 | $(eval $(call assert_boolean,CTX_INCLUDE_EL2_REGS)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 856 | $(eval $(call assert_boolean,DEBUG)) |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 857 | $(eval $(call assert_boolean,DYN_DISABLE_AUTH)) |
Jeenu Viswambharan | ef29b45 | 2018-02-06 07:50:18 +0000 | [diff] [blame] | 858 | $(eval $(call assert_boolean,EL3_EXCEPTION_HANDLING)) |
Dimitris Papastamos | fcedb69 | 2017-10-16 11:40:10 +0100 | [diff] [blame] | 859 | $(eval $(call assert_boolean,ENABLE_AMU)) |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 860 | $(eval $(call assert_boolean,ENABLE_ASSERTIONS)) |
Jeenu Viswambharan | 2da918c | 2018-07-31 16:13:33 +0100 | [diff] [blame] | 861 | $(eval $(call assert_boolean,ENABLE_MPAM_FOR_LOWER_ELS)) |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 862 | $(eval $(call assert_boolean,ENABLE_PIE)) |
Yatharth Kochar | 9518d02 | 2016-03-11 14:20:19 +0000 | [diff] [blame] | 863 | $(eval $(call assert_boolean,ENABLE_PMF)) |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 864 | $(eval $(call assert_boolean,ENABLE_PSCI_STAT)) |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 865 | $(eval $(call assert_boolean,ENABLE_RUNTIME_INSTRUMENTATION)) |
Jeenu Viswambharan | d73dcf3 | 2017-07-19 13:52:12 +0100 | [diff] [blame] | 866 | $(eval $(call assert_boolean,ENABLE_SPE_FOR_LOWER_ELS)) |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 867 | $(eval $(call assert_boolean,ENABLE_SVE_FOR_NS)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 868 | $(eval $(call assert_boolean,ERROR_DEPRECATED)) |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 869 | $(eval $(call assert_boolean,FAULT_INJECTION_SUPPORT)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 870 | $(eval $(call assert_boolean,GENERATE_COT)) |
Jeenu Viswambharan | c06f05c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 871 | $(eval $(call assert_boolean,GICV2_G0_FOR_EL3)) |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 872 | $(eval $(call assert_boolean,HANDLE_EA_EL3_FIRST)) |
Jeenu Viswambharan | a10d64e | 2017-01-04 13:51:42 +0000 | [diff] [blame] | 873 | $(eval $(call assert_boolean,HW_ASSISTED_COHERENCY)) |
Louis Mayencourt | c1c2bf7 | 2020-02-13 08:21:34 +0000 | [diff] [blame] | 874 | $(eval $(call assert_boolean,INVERTED_MEMMAP)) |
Alexei Fedorov | 913cb7e | 2020-01-23 14:27:38 +0000 | [diff] [blame] | 875 | $(eval $(call assert_boolean,MEASURED_BOOT)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 876 | $(eval $(call assert_boolean,NS_TIMER_SWITCH)) |
Varun Wadekar | 3f9002c | 2019-01-31 09:22:30 -0800 | [diff] [blame] | 877 | $(eval $(call assert_boolean,OVERRIDE_LIBC)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 878 | $(eval $(call assert_boolean,PL011_GENERIC_UART)) |
| 879 | $(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS)) |
| 880 | $(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID)) |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 881 | $(eval $(call assert_boolean,RAS_EXTENSION)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 882 | $(eval $(call assert_boolean,RESET_TO_BL31)) |
| 883 | $(eval $(call assert_boolean,SAVE_KEYS)) |
| 884 | $(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA)) |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 885 | $(eval $(call assert_boolean,SEPARATE_NOBITS_REGION)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 886 | $(eval $(call assert_boolean,SPIN_ON_BL1_EXIT)) |
Antonio Nino Diaz | cbccdbf | 2019-01-21 11:53:29 +0000 | [diff] [blame] | 887 | $(eval $(call assert_boolean,SPM_MM)) |
Max Shvetsov | e7fd80e | 2020-02-25 13:55:00 +0000 | [diff] [blame] | 888 | $(eval $(call assert_boolean,SPMD_SPM_AT_SEL2)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 889 | $(eval $(call assert_boolean,TRUSTED_BOARD_BOOT)) |
| 890 | $(eval $(call assert_boolean,USE_COHERENT_MEM)) |
Olivier Deprez | cb4c562 | 2019-09-19 17:46:46 +0200 | [diff] [blame] | 891 | $(eval $(call assert_boolean,USE_DEBUGFS)) |
Louis Mayencourt | 6b232d9 | 2020-02-28 16:57:30 +0000 | [diff] [blame] | 892 | $(eval $(call assert_boolean,ARM_IO_IN_DTB)) |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 893 | $(eval $(call assert_boolean,SDEI_IN_FCONF)) |
Madhukar Pappireddy | 02cc3ff | 2020-06-02 09:26:30 -0500 | [diff] [blame] | 894 | $(eval $(call assert_boolean,SEC_INT_DESC_IN_FCONF)) |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 895 | $(eval $(call assert_boolean,USE_ROMLIB)) |
Masahiro Yamada | a27c166 | 2017-05-22 12:11:24 +0900 | [diff] [blame] | 896 | $(eval $(call assert_boolean,USE_TBBR_DEFS)) |
Soby Mathew | 043fe9c | 2017-04-10 22:35:42 +0100 | [diff] [blame] | 897 | $(eval $(call assert_boolean,WARMBOOT_ENABLE_DCACHE_EARLY)) |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 898 | $(eval $(call assert_boolean,BL2_AT_EL3)) |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 899 | $(eval $(call assert_boolean,BL2_IN_XIP_MEM)) |
Hadi Asyrafi | 461f8f4 | 2019-08-20 15:33:27 +0800 | [diff] [blame] | 900 | $(eval $(call assert_boolean,BL2_INV_DCACHE)) |
Soby Mathew | ad04201 | 2019-09-25 14:03:41 +0100 | [diff] [blame] | 901 | $(eval $(call assert_boolean,USE_SPINLOCK_CAS)) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 902 | $(eval $(call assert_boolean,ENCRYPT_BL31)) |
| 903 | $(eval $(call assert_boolean,ENCRYPT_BL32)) |
Manish V Badarkhe | 2801ed4 | 2020-04-28 04:53:32 +0100 | [diff] [blame] | 904 | $(eval $(call assert_boolean,ERRATA_SPECULATIVE_AT)) |
Varun Wadekar | 9223485 | 2020-06-12 10:11:28 -0700 | [diff] [blame] | 905 | $(eval $(call assert_boolean,RAS_TRAP_LOWER_EL_ERR_ACCESS)) |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 906 | |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 907 | $(eval $(call assert_numeric,ARM_ARCH_MAJOR)) |
| 908 | $(eval $(call assert_numeric,ARM_ARCH_MINOR)) |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 909 | $(eval $(call assert_numeric,BRANCH_PROTECTION)) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 910 | $(eval $(call assert_numeric,FW_ENC_STATUS)) |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 911 | |
Justin Chadwell | f9b32c1 | 2019-07-29 17:13:10 +0100 | [diff] [blame] | 912 | ifdef KEY_SIZE |
| 913 | $(eval $(call assert_numeric,KEY_SIZE)) |
| 914 | endif |
| 915 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 916 | ifeq ($(filter $(SANITIZE_UB), on off trap),) |
| 917 | $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap") |
| 918 | endif |
| 919 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 920 | ################################################################################ |
| 921 | # Add definitions to the cpp preprocessor based on the current build options. |
| 922 | # This is done after including the platform specific makefile to allow the |
| 923 | # platform to overwrite the default options |
| 924 | ################################################################################ |
Jeenu Viswambharan | d1b6015 | 2014-05-12 15:28:47 +0100 | [diff] [blame] | 925 | |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 926 | $(eval $(call add_define,ALLOW_RO_XLAT_TABLES)) |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 927 | $(eval $(call add_define,ARM_ARCH_MAJOR)) |
| 928 | $(eval $(call add_define,ARM_ARCH_MINOR)) |
Sandrine Bailleux | b21b02f | 2015-10-30 15:05:17 +0000 | [diff] [blame] | 929 | $(eval $(call add_define,COLD_BOOT_SINGLE_CPU)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 930 | $(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS)) |
| 931 | $(eval $(call add_define,CTX_INCLUDE_FPREGS)) |
Antonio Nino Diaz | 594811b | 2019-01-31 11:58:00 +0000 | [diff] [blame] | 932 | $(eval $(call add_define,CTX_INCLUDE_PAUTH_REGS)) |
Jeenu Viswambharan | ef29b45 | 2018-02-06 07:50:18 +0000 | [diff] [blame] | 933 | $(eval $(call add_define,EL3_EXCEPTION_HANDLING)) |
Justin Chadwell | 1c7c13a | 2019-07-18 14:25:33 +0100 | [diff] [blame] | 934 | $(eval $(call add_define,CTX_INCLUDE_MTE_REGS)) |
Max Shvetsov | bdf502d | 2020-02-25 13:56:19 +0000 | [diff] [blame] | 935 | $(eval $(call add_define,CTX_INCLUDE_EL2_REGS)) |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 936 | $(eval $(call add_define,DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT})) |
Dimitris Papastamos | fcedb69 | 2017-10-16 11:40:10 +0100 | [diff] [blame] | 937 | $(eval $(call add_define,ENABLE_AMU)) |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 938 | $(eval $(call add_define,ENABLE_ASSERTIONS)) |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 939 | $(eval $(call add_define,ENABLE_BTI)) |
Jeenu Viswambharan | 2da918c | 2018-07-31 16:13:33 +0100 | [diff] [blame] | 940 | $(eval $(call add_define,ENABLE_MPAM_FOR_LOWER_ELS)) |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 941 | $(eval $(call add_define,ENABLE_PAUTH)) |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 942 | $(eval $(call add_define,ENABLE_PIE)) |
Yatharth Kochar | 9518d02 | 2016-03-11 14:20:19 +0000 | [diff] [blame] | 943 | $(eval $(call add_define,ENABLE_PMF)) |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 944 | $(eval $(call add_define,ENABLE_PSCI_STAT)) |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 945 | $(eval $(call add_define,ENABLE_RUNTIME_INSTRUMENTATION)) |
Jeenu Viswambharan | d73dcf3 | 2017-07-19 13:52:12 +0100 | [diff] [blame] | 946 | $(eval $(call add_define,ENABLE_SPE_FOR_LOWER_ELS)) |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 947 | $(eval $(call add_define,ENABLE_SVE_FOR_NS)) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 948 | $(eval $(call add_define,ENCRYPT_BL31)) |
| 949 | $(eval $(call add_define,ENCRYPT_BL32)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 950 | $(eval $(call add_define,ERROR_DEPRECATED)) |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 951 | $(eval $(call add_define,FAULT_INJECTION_SUPPORT)) |
Jeenu Viswambharan | c06f05c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 952 | $(eval $(call add_define,GICV2_G0_FOR_EL3)) |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 953 | $(eval $(call add_define,HANDLE_EA_EL3_FIRST)) |
Jeenu Viswambharan | a10d64e | 2017-01-04 13:51:42 +0000 | [diff] [blame] | 954 | $(eval $(call add_define,HW_ASSISTED_COHERENCY)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 955 | $(eval $(call add_define,LOG_LEVEL)) |
Alexei Fedorov | 913cb7e | 2020-01-23 14:27:38 +0000 | [diff] [blame] | 956 | $(eval $(call add_define,MEASURED_BOOT)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 957 | $(eval $(call add_define,NS_TIMER_SWITCH)) |
| 958 | $(eval $(call add_define,PL011_GENERIC_UART)) |
| 959 | $(eval $(call add_define,PLAT_${PLAT})) |
| 960 | $(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS)) |
| 961 | $(eval $(call add_define,PSCI_EXTENDED_STATE_ID)) |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 962 | $(eval $(call add_define,RAS_EXTENSION)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 963 | $(eval $(call add_define,RESET_TO_BL31)) |
| 964 | $(eval $(call add_define,SEPARATE_CODE_AND_RODATA)) |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 965 | $(eval $(call add_define,SEPARATE_NOBITS_REGION)) |
Daniel Boulby | 468f0d7 | 2018-09-18 11:45:51 +0100 | [diff] [blame] | 966 | $(eval $(call add_define,RECLAIM_INIT_CODE)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 967 | $(eval $(call add_define,SPD_${SPD})) |
| 968 | $(eval $(call add_define,SPIN_ON_BL1_EXIT)) |
Antonio Nino Diaz | cbccdbf | 2019-01-21 11:53:29 +0000 | [diff] [blame] | 969 | $(eval $(call add_define,SPM_MM)) |
Max Shvetsov | e7fd80e | 2020-02-25 13:55:00 +0000 | [diff] [blame] | 970 | $(eval $(call add_define,SPMD_SPM_AT_SEL2)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 971 | $(eval $(call add_define,TRUSTED_BOARD_BOOT)) |
| 972 | $(eval $(call add_define,USE_COHERENT_MEM)) |
Olivier Deprez | cb4c562 | 2019-09-19 17:46:46 +0200 | [diff] [blame] | 973 | $(eval $(call add_define,USE_DEBUGFS)) |
Louis Mayencourt | 6b232d9 | 2020-02-28 16:57:30 +0000 | [diff] [blame] | 974 | $(eval $(call add_define,ARM_IO_IN_DTB)) |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 975 | $(eval $(call add_define,SDEI_IN_FCONF)) |
Madhukar Pappireddy | 02cc3ff | 2020-06-02 09:26:30 -0500 | [diff] [blame] | 976 | $(eval $(call add_define,SEC_INT_DESC_IN_FCONF)) |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 977 | $(eval $(call add_define,USE_ROMLIB)) |
Masahiro Yamada | a27c166 | 2017-05-22 12:11:24 +0900 | [diff] [blame] | 978 | $(eval $(call add_define,USE_TBBR_DEFS)) |
Soby Mathew | 043fe9c | 2017-04-10 22:35:42 +0100 | [diff] [blame] | 979 | $(eval $(call add_define,WARMBOOT_ENABLE_DCACHE_EARLY)) |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 980 | $(eval $(call add_define,BL2_AT_EL3)) |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 981 | $(eval $(call add_define,BL2_IN_XIP_MEM)) |
Hadi Asyrafi | 461f8f4 | 2019-08-20 15:33:27 +0800 | [diff] [blame] | 982 | $(eval $(call add_define,BL2_INV_DCACHE)) |
Soby Mathew | ad04201 | 2019-09-25 14:03:41 +0100 | [diff] [blame] | 983 | $(eval $(call add_define,USE_SPINLOCK_CAS)) |
Manish V Badarkhe | 2801ed4 | 2020-04-28 04:53:32 +0100 | [diff] [blame] | 984 | $(eval $(call add_define,ERRATA_SPECULATIVE_AT)) |
Varun Wadekar | 9223485 | 2020-06-12 10:11:28 -0700 | [diff] [blame] | 985 | $(eval $(call add_define,RAS_TRAP_LOWER_EL_ERR_ACCESS)) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 986 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 987 | ifeq (${SANITIZE_UB},trap) |
| 988 | $(eval $(call add_define,MONITOR_TRAPS)) |
| 989 | endif |
| 990 | |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 991 | # Define the EL3_PAYLOAD_BASE flag only if it is provided. |
| 992 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 993 | $(eval $(call add_define,EL3_PAYLOAD_BASE)) |
| 994 | else |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 995 | # Define the PRELOADED_BL33_BASE flag only if it is provided and |
| 996 | # EL3_PAYLOAD_BASE is not defined, as it has priority. |
| 997 | ifdef PRELOADED_BL33_BASE |
| 998 | $(eval $(call add_define,PRELOADED_BL33_BASE)) |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 999 | endif |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 1000 | endif |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 1001 | |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 1002 | # Define the DYN_DISABLE_AUTH flag only if set. |
| 1003 | ifeq (${DYN_DISABLE_AUTH},1) |
| 1004 | $(eval $(call add_define,DYN_DISABLE_AUTH)) |
| 1005 | endif |
| 1006 | |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 1007 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
| 1008 | $(eval $(call add_define,USE_ARM_LINK)) |
| 1009 | endif |
| 1010 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1011 | # 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] | 1012 | ifeq (${SPD},spmd) |
Olivier Deprez | 042db53 | 2020-03-19 09:27:11 +0100 | [diff] [blame] | 1013 | ifdef SP_LAYOUT_FILE |
| 1014 | ifeq (${SPMD_SPM_AT_SEL2},0) |
| 1015 | $(error "SPMD with SPM at S-EL1 does not require SP_LAYOUT_FILE") |
| 1016 | endif |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1017 | -include $(BUILD_PLAT)/sp_gen.mk |
| 1018 | FIP_DEPS += sp |
Manish Pandey | aaaeb31 | 2020-05-26 23:59:36 +0100 | [diff] [blame] | 1019 | CRT_DEPS += sp |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1020 | NEED_SP_PKG := yes |
| 1021 | else |
Olivier Deprez | 042db53 | 2020-03-19 09:27:11 +0100 | [diff] [blame] | 1022 | ifeq (${SPMD_SPM_AT_SEL2},1) |
| 1023 | $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE") |
| 1024 | endif |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1025 | endif |
| 1026 | endif |
| 1027 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1028 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1029 | # Build targets |
| 1030 | ################################################################################ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1031 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1032 | .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] | 1033 | .SUFFIXES: |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1034 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1035 | all: msg_start |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1036 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1037 | msg_start: |
| 1038 | @echo "Building ${PLAT}" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1039 | |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1040 | ifeq (${ERROR_DEPRECATED},0) |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 1041 | # 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] | 1042 | ifneq ($(findstring clang,$(notdir $(CC))),) |
| 1043 | CPPFLAGS += -Wno-error=deprecated-declarations |
| 1044 | else |
Dan Handley | 6fa89a2 | 2018-02-27 16:03:58 +0000 | [diff] [blame] | 1045 | CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1046 | endif |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 1047 | # __ASSEMBLY__ is deprecated in favor of the compiler-builtin __ASSEMBLER__. |
| 1048 | ASFLAGS += -D__ASSEMBLY__ |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 1049 | # AARCH32/AARCH64 macros are deprecated in favor of the compiler-builtin __aarch64__. |
| 1050 | ifeq (${ARCH},aarch32) |
| 1051 | $(eval $(call add_define,AARCH32)) |
| 1052 | else |
| 1053 | $(eval $(call add_define,AARCH64)) |
| 1054 | endif |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 1055 | endif # !ERROR_DEPRECATED |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1056 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1057 | $(eval $(call MAKE_LIB_DIRS)) |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1058 | $(eval $(call MAKE_LIB,c)) |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1059 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1060 | # Expand build macros for the different images |
| 1061 | ifeq (${NEED_BL1},yes) |
| 1062 | $(eval $(call MAKE_BL,1)) |
| 1063 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1064 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1065 | ifeq (${NEED_BL2},yes) |
Roberto Vargas | 53c052b | 2018-01-02 11:23:41 +0000 | [diff] [blame] | 1066 | ifeq (${BL2_AT_EL3}, 0) |
| 1067 | FIP_BL2_ARGS := tb-fw |
| 1068 | endif |
| 1069 | |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1070 | $(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\ |
Roberto Vargas | 53c052b | 2018-01-02 11:23:41 +0000 | [diff] [blame] | 1071 | $(eval $(call MAKE_BL,2,${FIP_BL2_ARGS}))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1072 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1073 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1074 | ifeq (${NEED_SCP_BL2},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1075 | $(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw)) |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1076 | endif |
| 1077 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1078 | ifeq (${NEED_BL31},yes) |
| 1079 | BL31_SOURCES += ${SPD_SOURCES} |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1080 | # Sort BL31 source files to remove duplicates |
| 1081 | BL31_SOURCES := $(sort ${BL31_SOURCES}) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1082 | ifneq (${DECRYPTION_SUPPORT},none) |
| 1083 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\ |
| 1084 | $(eval $(call MAKE_BL,31,soc-fw,,$(ENCRYPT_BL31)))) |
| 1085 | else |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1086 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\ |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 1087 | $(eval $(call MAKE_BL,31,soc-fw))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1088 | endif |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1089 | endif |
Juan Castillo | 379954c | 2014-11-04 17:36:40 +0000 | [diff] [blame] | 1090 | |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 1091 | # 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] | 1092 | # 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] | 1093 | # process. Note that the dependency on BL32 applies to the FIP only. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1094 | ifeq (${NEED_BL32},yes) |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1095 | # Sort BL32 source files to remove duplicates |
| 1096 | BL32_SOURCES := $(sort ${BL32_SOURCES}) |
Masahiro Yamada | 6ced1b2 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1097 | BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1)) |
| 1098 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1099 | ifneq (${DECRYPTION_SUPPORT},none) |
| 1100 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw,,$(ENCRYPT_BL32))),\ |
| 1101 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32)))) |
| 1102 | else |
Masahiro Yamada | 6ced1b2 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1103 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw)),\ |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1104 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw))) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1105 | endif |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1106 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1107 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1108 | # Add the BL33 image if required by the platform |
| 1109 | ifeq (${NEED_BL33},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1110 | $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) |
Juan Castillo | 9c25a40 | 2015-01-13 12:21:04 +0000 | [diff] [blame] | 1111 | endif |
| 1112 | |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1113 | ifeq (${NEED_BL2U},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1114 | $(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\ |
Masahiro Yamada | cd7711d | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1115 | $(eval $(call MAKE_BL,2u,ap-fwu-cfg,FWU_))) |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1116 | endif |
| 1117 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1118 | # Expand build macros for the different images |
| 1119 | ifeq (${NEED_FDT},yes) |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 1120 | $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES))) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1121 | endif |
| 1122 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1123 | # Add Secure Partition packages |
| 1124 | ifeq (${NEED_SP_PKG},yes) |
| 1125 | $(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT} |
| 1126 | ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) |
| 1127 | sp: $(SPTOOL) $(DTBS) $(BUILD_PLAT)/sp_gen.mk |
| 1128 | ${Q}$(SPTOOL) $(SPTOOL_ARGS) |
| 1129 | @${ECHO_BLANK_LINE} |
| 1130 | @echo "Built SP Images successfully" |
| 1131 | @${ECHO_BLANK_LINE} |
| 1132 | endif |
| 1133 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1134 | locate-checkpatch: |
| 1135 | ifndef CHECKPATCH |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1136 | $(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] | 1137 | else |
| 1138 | ifeq (,$(wildcard ${CHECKPATCH})) |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1139 | $(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] | 1140 | endif |
| 1141 | endif |
| 1142 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1143 | clean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1144 | @echo " CLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1145 | $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1146 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
| 1147 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1148 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1149 | ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1150 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 1151 | realclean distclean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1152 | @echo " REALCLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1153 | $(call SHELL_REMOVE_DIR,${BUILD_BASE}) |
| 1154 | $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1155 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 1156 | ${Q}${MAKE} --no-print-directory -C ${SPTOOLPATH} clean |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1157 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1158 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1159 | ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1160 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1161 | checkcodebase: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1162 | @echo " CHECKING STYLE" |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1163 | @if test -d .git ; then \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1164 | git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1165 | while read GIT_FILE ; \ |
| 1166 | do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ |
| 1167 | done ; \ |
| 1168 | else \ |
| 1169 | find . -type f -not -iwholename "*.git*" \ |
| 1170 | -not -iwholename "*build*" \ |
| 1171 | -not -iwholename "*libfdt*" \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1172 | -not -iwholename "*libc*" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1173 | -not -iwholename "*docs*" \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1174 | -not -iwholename "*.rst" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1175 | -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ |
| 1176 | fi |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1177 | |
| 1178 | checkpatch: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1179 | @echo " CHECKING STYLE" |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1180 | @if test -n "${CHECKPATCH_OPTS}"; then \ |
| 1181 | echo " with ${CHECKPATCH_OPTS} option(s)"; \ |
| 1182 | fi |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1183 | ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \ |
| 1184 | for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do \ |
| 1185 | printf "\n[*] Checking style of '$$commit'\n\n"; \ |
| 1186 | git log --format=email "$$commit~..$$commit" \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1187 | -- ${CHECK_PATHS} | \ |
| 1188 | ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1189 | git diff --format=email "$$commit~..$$commit" \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1190 | -- ${CHECK_PATHS} | \ |
| 1191 | ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1192 | done |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1193 | |
| 1194 | certtool: ${CRTTOOL} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1195 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1196 | .PHONY: ${CRTTOOL} |
| 1197 | ${CRTTOOL}: |
Sandrine Bailleux | d4c1d44 | 2020-01-15 10:23:25 +0100 | [diff] [blame] | 1198 | ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} --no-print-directory -C ${CRTTOOLPATH} |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1199 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1200 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1201 | @${ECHO_BLANK_LINE} |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 1202 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1203 | ifneq (${GENERATE_COT},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1204 | certificates: ${CRT_DEPS} ${CRTTOOL} |
| 1205 | ${Q}${CRTTOOL} ${CRT_ARGS} |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1206 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1207 | @echo "Built $@ successfully" |
| 1208 | @echo "Certificates can be found in ${BUILD_PLAT}" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1209 | @${ECHO_BLANK_LINE} |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1210 | endif |
| 1211 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1212 | ${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1213 | ${Q}${FIPTOOL} create ${FIP_ARGS} $@ |
| 1214 | ${Q}${FIPTOOL} info $@ |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1215 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1216 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1217 | @${ECHO_BLANK_LINE} |
Soby Mathew | dbee7fc | 2014-09-08 17:51:01 +0100 | [diff] [blame] | 1218 | |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1219 | ifneq (${GENERATE_COT},0) |
| 1220 | fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} |
| 1221 | ${Q}${CRTTOOL} ${FWU_CRT_ARGS} |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1222 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1223 | @echo "Built $@ successfully" |
| 1224 | @echo "FWU certificates can be found in ${BUILD_PLAT}" |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1225 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1226 | endif |
| 1227 | |
| 1228 | ${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1229 | ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@ |
| 1230 | ${Q}${FIPTOOL} info $@ |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1231 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1232 | @echo "Built $@ successfully" |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 1233 | @${ECHO_BLANK_LINE} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1234 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1235 | fiptool: ${FIPTOOL} |
| 1236 | fip: ${BUILD_PLAT}/${FIP_NAME} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1237 | fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1238 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1239 | .PHONY: ${FIPTOOL} |
| 1240 | ${FIPTOOL}: |
dp-arm | 4972ec5 | 2016-05-25 16:20:20 +0100 | [diff] [blame] | 1241 | ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${FIPTOOLPATH} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1242 | |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 1243 | sptool: ${SPTOOL} |
| 1244 | .PHONY: ${SPTOOL} |
| 1245 | ${SPTOOL}: |
| 1246 | ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${SPTOOLPATH} |
| 1247 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1248 | .PHONY: libraries |
| 1249 | romlib.bin: libraries |
John Tsichritzis | f6ea99b | 2019-05-21 15:47:37 +0100 | [diff] [blame] | 1250 | ${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] | 1251 | |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1252 | # Call print_memory_map tool |
| 1253 | memmap: all |
Louis Mayencourt | c1c2bf7 | 2020-02-13 08:21:34 +0000 | [diff] [blame] | 1254 | ${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP} |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1255 | |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1256 | doc: |
| 1257 | @echo " BUILD DOCUMENTATION" |
| 1258 | ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html |
| 1259 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1260 | enctool: ${ENCTOOL} |
| 1261 | |
| 1262 | .PHONY: ${ENCTOOL} |
| 1263 | ${ENCTOOL}: |
| 1264 | ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 --no-print-directory -C ${ENCTOOLPATH} |
| 1265 | @${ECHO_BLANK_LINE} |
| 1266 | @echo "Built $@ successfully" |
| 1267 | @${ECHO_BLANK_LINE} |
| 1268 | |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 1269 | cscope: |
| 1270 | @echo " CSCOPE" |
| 1271 | ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files |
| 1272 | ${Q}cscope -b -q -k |
| 1273 | |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1274 | help: |
John Tsichritzis | 0c4dded | 2019-05-21 15:57:31 +0100 | [diff] [blame] | 1275 | @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1276 | @echo "" |
| 1277 | @echo "PLAT is used to specify which platform you wish to build." |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 1278 | @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1279 | @echo "" |
John Tsichritzis | 0c4dded | 2019-05-21 15:57:31 +0100 | [diff] [blame] | 1280 | @echo "platform = ${PLATFORM_LIST}" |
| 1281 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1282 | @echo "Please refer to the User Guide for a list of all supported options." |
| 1283 | @echo "Note that the build system doesn't track dependencies for build " |
| 1284 | @echo "options. Therefore, if any of the build options are changed " |
| 1285 | @echo "from a previous build, a clean build must be performed." |
| 1286 | @echo "" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1287 | @echo "Supported Targets:" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1288 | @echo " all Build all individual bootloader binaries" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1289 | @echo " bl1 Build the BL1 binary" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 1290 | @echo " bl2 Build the BL2 binary" |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1291 | @echo " bl2u Build the BL2U binary" |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 1292 | @echo " bl31 Build the BL31 binary" |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 1293 | @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " |
| 1294 | @echo " this builds secure payload specified by AARCH32_SP" |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1295 | @echo " certificates Build the certificates (requires 'GENERATE_COT=1')" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1296 | @echo " fip Build the Firmware Image Package (FIP)" |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1297 | @echo " fwu_fip Build the FWU Firmware Image Package (FIP)" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1298 | @echo " checkcodebase Check the coding style of the entire source tree" |
| 1299 | @echo " checkpatch Check the coding style on changes in the current" |
| 1300 | @echo " branch against BASE_COMMIT (default origin/master)" |
| 1301 | @echo " clean Clean the build for the selected platform" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1302 | @echo " cscope Generate cscope index" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1303 | @echo " distclean Remove all build artifacts for all platforms" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1304 | @echo " certtool Build the Certificate generation tool" |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1305 | @echo " enctool Build the Firmware encryption tool" |
Andreas Färber | ec82cfb | 2016-10-10 05:18:49 +0200 | [diff] [blame] | 1306 | @echo " fiptool Build the Firmware Image Package (FIP) creation tool" |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1307 | @echo " sp Build the Secure Partition Packages" |
Antonio Nino Diaz | a830a4d | 2018-11-27 14:58:04 +0000 | [diff] [blame] | 1308 | @echo " sptool Build the Secure Partition Package creation tool" |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 1309 | @echo " dtbs Build the Device Tree Blobs (if required for the platform)" |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1310 | @echo " memmap Print the memory map of the built binaries" |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1311 | @echo " doc Build html based documentation using Sphinx tool" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1312 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 1313 | @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] | 1314 | @echo "" |
| 1315 | @echo "example: build all targets for the FVP platform:" |
| 1316 | @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" |