Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | # |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 2 | # Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | # |
| 4 | # Redistribution and use in source and binary forms, with or without |
| 5 | # modification, are permitted provided that the following conditions are met: |
| 6 | # |
| 7 | # Redistributions of source code must retain the above copyright notice, this |
| 8 | # list of conditions and the following disclaimer. |
| 9 | # |
| 10 | # Redistributions in binary form must reproduce the above copyright notice, |
| 11 | # this list of conditions and the following disclaimer in the documentation |
| 12 | # and/or other materials provided with the distribution. |
| 13 | # |
| 14 | # Neither the name of ARM nor the names of its contributors may be used |
| 15 | # to endorse or promote products derived from this software without specific |
| 16 | # prior written permission. |
| 17 | # |
| 18 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | # POSSIBILITY OF SUCH DAMAGE. |
| 29 | # |
| 30 | |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 31 | # |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 32 | # Trusted Firmware Version |
| 33 | # |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 34 | VERSION_MAJOR := 1 |
Dan Handley | 30734ec | 2015-12-18 11:51:48 +0000 | [diff] [blame] | 35 | VERSION_MINOR := 2 |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 36 | |
Juan Castillo | 396644b | 2015-10-22 11:34:44 +0100 | [diff] [blame] | 37 | # Default goal is build all images |
| 38 | .DEFAULT_GOAL := all |
| 39 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 40 | MAKE_HELPERS_DIRECTORY := make_helpers/ |
| 41 | include ${MAKE_HELPERS_DIRECTORY}build_macros.mk |
Evan Lloyd | a71d259 | 2015-12-02 18:56:06 +0000 | [diff] [blame] | 42 | include ${MAKE_HELPERS_DIRECTORY}build_env.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 43 | |
| 44 | ################################################################################ |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 45 | # Default values for build configurations |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 46 | ################################################################################ |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 47 | |
| 48 | # Build verbosity |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 49 | V := 0 |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 50 | # Debug build |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 51 | DEBUG := 0 |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 52 | # Build platform |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 53 | DEFAULT_PLAT := fvp |
| 54 | PLAT := ${DEFAULT_PLAT} |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 55 | # SPD choice |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 56 | SPD := none |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 57 | # Base commit to perform code check on |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 58 | BASE_COMMIT := origin/master |
Jeenu Viswambharan | d1b6015 | 2014-05-12 15:28:47 +0100 | [diff] [blame] | 59 | # NS timer register save and restore |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 60 | NS_TIMER_SWITCH := 0 |
Sandrine Bailleux | f4119ec | 2015-12-17 13:58:58 +0000 | [diff] [blame] | 61 | # By default, BL1 acts as the reset handler, not BL31 |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 62 | RESET_TO_BL31 := 0 |
Juan Castillo | 258e94f | 2014-06-25 17:26:36 +0100 | [diff] [blame] | 63 | # Include FP registers in cpu context |
| 64 | CTX_INCLUDE_FPREGS := 0 |
Soby Mathew | d75d2ba | 2016-05-17 14:01:32 +0100 | [diff] [blame] | 65 | # Build flag to include AArch32 registers in cpu context save and restore |
| 66 | # during world switch. This flag must be set to 0 for AArch64-only platforms. |
| 67 | CTX_INCLUDE_AARCH32_REGS := 1 |
Sandrine Bailleux | 5fe57c1 | 2014-07-17 17:23:14 +0100 | [diff] [blame] | 68 | # Determine the version of ARM GIC architecture to use for interrupt management |
| 69 | # in EL3. The platform port can change this value if needed. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 70 | ARM_GIC_ARCH := 2 |
Vikram Kanigiri | 40d468c | 2014-12-23 01:00:22 +0000 | [diff] [blame] | 71 | # Determine the version of ARM CCI product used in the platform. The platform |
| 72 | # port can change this value if needed. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 73 | ARM_CCI_PRODUCT_ID := 400 |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 74 | # Flag used to indicate if ASM_ASSERTION should be enabled for the build. |
| 75 | # This defaults to being present in DEBUG builds only. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 76 | ASM_ASSERTION := ${DEBUG} |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 77 | # Build option to choose whether Trusted firmware uses Coherent memory or not. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 78 | USE_COHERENT_MEM := 1 |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 79 | # Flag used to choose the power state format viz Extended State-ID or the Original |
| 80 | # format. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 81 | PSCI_EXTENDED_STATE_ID := 0 |
Juan Castillo | 860cc3b | 2014-11-24 11:45:12 +0000 | [diff] [blame] | 82 | # Default FIP file name |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 83 | FIP_NAME := fip.bin |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 84 | # Default FWU_FIP file name |
| 85 | FWU_FIP_NAME := fwu_fip.bin |
Juan Castillo | 9c25a40 | 2015-01-13 12:21:04 +0000 | [diff] [blame] | 86 | # By default, use the -pedantic option in the gcc command line |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 87 | DISABLE_PEDANTIC := 0 |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 88 | # Flags to generate the Chain of Trust |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 89 | GENERATE_COT := 0 |
| 90 | CREATE_KEYS := 1 |
| 91 | SAVE_KEYS := 0 |
Juan Castillo | 5e29c75 | 2015-01-07 10:39:25 +0000 | [diff] [blame] | 92 | # Flags to build TF with Trusted Boot support |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 93 | TRUSTED_BOARD_BOOT := 0 |
Sandrine Bailleux | 449dbd5 | 2015-06-02 17:19:43 +0100 | [diff] [blame] | 94 | # By default, consider that the platform's reset address is not programmable. |
| 95 | # The platform Makefile is free to override this value. |
| 96 | PROGRAMMABLE_RESET_ADDRESS := 0 |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 97 | # Build flag to treat usage of deprecated platform and framework APIs as error. |
| 98 | ERROR_DEPRECATED := 0 |
Sandrine Bailleux | b21b02f | 2015-10-30 15:05:17 +0000 | [diff] [blame] | 99 | # By default, consider that the platform may release several CPUs out of reset. |
| 100 | # The platform Makefile is free to override this value. |
| 101 | COLD_BOOT_SINGLE_CPU := 0 |
Sandrine Bailleux | b7e97c4 | 2015-11-10 10:01:19 +0000 | [diff] [blame] | 102 | # Flag to introduce an infinite loop in BL1 just before it exits into the next |
| 103 | # image. This is meant to help debugging the post-BL2 phase. |
| 104 | SPIN_ON_BL1_EXIT := 0 |
Juan Castillo | 7ac4b11 | 2015-11-16 16:53:38 +0000 | [diff] [blame] | 105 | # Build PL011 UART driver in minimal generic UART mode |
| 106 | PL011_GENERIC_UART := 0 |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 107 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 108 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 109 | ################################################################################ |
| 110 | # Checkpatch script options |
| 111 | ################################################################################ |
| 112 | |
| 113 | CHECK_IGNORE := --ignore COMPLEX_MACRO \ |
Juan Castillo | 749e079 | 2015-03-11 14:21:53 +0000 | [diff] [blame] | 114 | --ignore GERRIT_CHANGE_ID \ |
| 115 | --ignore GIT_COMMIT_ID |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 116 | CHECKPATCH_ARGS := --no-tree --no-signoff ${CHECK_IGNORE} |
| 117 | CHECKCODE_ARGS := --no-patch --no-tree --no-signoff ${CHECK_IGNORE} |
Antonio Nino Diaz | dc0b9c8 | 2016-04-08 11:51:19 +0100 | [diff] [blame] | 118 | # Do not check the coding style on C library files or documentation files |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 119 | INCLUDE_DIRS_TO_CHECK := $(sort $(filter-out include/stdlib, $(wildcard include/*))) |
| 120 | LIB_DIRS_TO_CHECK := $(sort $(filter-out lib/stdlib, $(wildcard lib/*))) |
Antonio Nino Diaz | dc0b9c8 | 2016-04-08 11:51:19 +0100 | [diff] [blame] | 121 | ROOT_DIRS_TO_CHECK := $(sort $(filter-out lib include docs %.md, $(wildcard *))) |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 122 | CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} ${INCLUDE_DIRS_TO_CHECK} ${LIB_DIRS_TO_CHECK} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 123 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 124 | |
| 125 | ################################################################################ |
| 126 | # Process build options |
| 127 | ################################################################################ |
| 128 | |
| 129 | # Verbose flag |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 130 | ifeq (${V},0) |
Evan Lloyd | f4ba5ca | 2015-12-03 09:47:51 +0000 | [diff] [blame] | 131 | Q:=@ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 132 | CHECKCODE_ARGS += --no-summary --terse |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 133 | else |
Evan Lloyd | f4ba5ca | 2015-12-03 09:47:51 +0000 | [diff] [blame] | 134 | Q:= |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 135 | endif |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 136 | export Q |
| 137 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 138 | # Process Debug flag |
| 139 | $(eval $(call add_define,DEBUG)) |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 140 | ifneq (${DEBUG}, 0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 141 | BUILD_TYPE := debug |
Sandrine Bailleux | f5fdbcc | 2016-04-11 13:01:17 +0100 | [diff] [blame] | 142 | TF_CFLAGS += -g |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 143 | ASFLAGS += -g -Wa,--gdwarf-2 |
| 144 | # Use LOG_LEVEL_INFO by default for debug builds |
| 145 | LOG_LEVEL := 40 |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 146 | else |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 147 | BUILD_TYPE := release |
| 148 | $(eval $(call add_define,NDEBUG)) |
| 149 | # Use LOG_LEVEL_NOTICE by default for release builds |
| 150 | LOG_LEVEL := 20 |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 151 | endif |
| 152 | |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 153 | # Default build string (git branch and commit) |
| 154 | ifeq (${BUILD_STRING},) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 155 | BUILD_STRING := $(shell git log -n 1 --pretty=format:"%h") |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 156 | endif |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 157 | VERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING} |
| 158 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 159 | # The cert_create tool cannot generate certificates individually, so we use the |
| 160 | # target 'certificates' to create them all |
| 161 | ifneq (${GENERATE_COT},0) |
| 162 | FIP_DEPS += certificates |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 163 | FWU_FIP_DEPS += fwu_certificates |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 164 | endif |
| 165 | |
| 166 | |
| 167 | ################################################################################ |
| 168 | # Toolchain |
| 169 | ################################################################################ |
| 170 | |
| 171 | CC := ${CROSS_COMPILE}gcc |
| 172 | CPP := ${CROSS_COMPILE}cpp |
| 173 | AS := ${CROSS_COMPILE}gcc |
| 174 | AR := ${CROSS_COMPILE}ar |
| 175 | LD := ${CROSS_COMPILE}ld |
| 176 | OC := ${CROSS_COMPILE}objcopy |
| 177 | OD := ${CROSS_COMPILE}objdump |
| 178 | NM := ${CROSS_COMPILE}nm |
| 179 | PP := ${CROSS_COMPILE}gcc -E |
| 180 | |
| 181 | ASFLAGS += -nostdinc -ffreestanding -Wa,--fatal-warnings \ |
| 182 | -Werror -Wmissing-include-dirs \ |
| 183 | -mgeneral-regs-only -D__ASSEMBLY__ \ |
| 184 | ${DEFINES} ${INCLUDES} |
Sandrine Bailleux | f5fdbcc | 2016-04-11 13:01:17 +0100 | [diff] [blame] | 185 | TF_CFLAGS += -nostdinc -ffreestanding -Wall \ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 186 | -Werror -Wmissing-include-dirs \ |
Juan Castillo | d4f7925 | 2015-11-06 12:43:56 +0000 | [diff] [blame] | 187 | -mgeneral-regs-only -mstrict-align \ |
| 188 | -std=c99 -c -Os \ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 189 | ${DEFINES} ${INCLUDES} |
Sandrine Bailleux | f5fdbcc | 2016-04-11 13:01:17 +0100 | [diff] [blame] | 190 | TF_CFLAGS += -ffunction-sections -fdata-sections |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 191 | |
| 192 | LDFLAGS += --fatal-warnings -O1 |
| 193 | LDFLAGS += --gc-sections |
| 194 | |
| 195 | |
| 196 | ################################################################################ |
| 197 | # Common sources and include directories |
| 198 | ################################################################################ |
| 199 | |
| 200 | BL_COMMON_SOURCES += common/bl_common.c \ |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 201 | common/tf_printf.c \ |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 202 | common/aarch64/debug.S \ |
Dan Handley | 176e7b4 | 2014-04-15 18:20:09 +0100 | [diff] [blame] | 203 | lib/aarch64/cache_helpers.S \ |
| 204 | lib/aarch64/misc_helpers.S \ |
Antonio Nino Diaz | 95036fc | 2016-02-26 10:46:44 +0000 | [diff] [blame] | 205 | lib/stdlib/abort.c \ |
| 206 | lib/stdlib/assert.c \ |
| 207 | lib/stdlib/exit.c \ |
| 208 | lib/stdlib/mem.c \ |
| 209 | lib/stdlib/printf.c \ |
| 210 | lib/stdlib/putchar.c \ |
| 211 | lib/stdlib/puts.c \ |
| 212 | lib/stdlib/sscanf.c \ |
| 213 | lib/stdlib/strchr.c \ |
| 214 | lib/stdlib/strcmp.c \ |
| 215 | lib/stdlib/strlen.c \ |
| 216 | lib/stdlib/strncmp.c \ |
| 217 | lib/stdlib/subr_prf.c \ |
Dan Handley | 176e7b4 | 2014-04-15 18:20:09 +0100 | [diff] [blame] | 218 | plat/common/aarch64/platform_helpers.S |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 219 | |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 220 | INCLUDES += -Iinclude/bl1 \ |
| 221 | -Iinclude/bl31 \ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 222 | -Iinclude/bl31/services \ |
| 223 | -Iinclude/common \ |
| 224 | -Iinclude/drivers \ |
| 225 | -Iinclude/drivers/arm \ |
| 226 | -Iinclude/drivers/auth \ |
| 227 | -Iinclude/drivers/io \ |
| 228 | -Iinclude/drivers/ti/uart \ |
| 229 | -Iinclude/lib \ |
| 230 | -Iinclude/lib/aarch64 \ |
| 231 | -Iinclude/lib/cpus/aarch64 \ |
| 232 | -Iinclude/plat/common \ |
| 233 | -Iinclude/stdlib \ |
| 234 | -Iinclude/stdlib/sys \ |
| 235 | ${PLAT_INCLUDES} \ |
| 236 | ${SPD_INCLUDES} |
| 237 | |
| 238 | |
| 239 | ################################################################################ |
| 240 | # Generic definitions |
| 241 | ################################################################################ |
| 242 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 243 | include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk |
| 244 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 245 | BUILD_BASE := ./build |
| 246 | BUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 247 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 248 | SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 249 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 250 | # Platforms providing their own TBB makefile may override this value |
| 251 | INCLUDE_TBBR_MK := 1 |
| 252 | |
Jeenu Viswambharan | e5c39fd | 2014-05-16 11:38:10 +0100 | [diff] [blame] | 253 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 254 | ################################################################################ |
| 255 | # Include SPD Makefile if one has been specified |
| 256 | ################################################################################ |
| 257 | |
| 258 | ifneq (${SPD},none) |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 259 | ifdef EL3_PAYLOAD_BASE |
| 260 | $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") |
| 261 | $(warning "The SPD and its BL32 companion will be present but ignored.") |
| 262 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 263 | # We expect to locate an spd.mk under the specified SPD directory |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 264 | SPD_MAKE := $(wildcard services/spd/${SPD}/${SPD}.mk) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 265 | |
| 266 | ifeq (${SPD_MAKE},) |
| 267 | $(error Error: No services/spd/${SPD}/${SPD}.mk located) |
| 268 | endif |
| 269 | $(info Including ${SPD_MAKE}) |
| 270 | include ${SPD_MAKE} |
| 271 | |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 272 | # If there's BL32 companion for the chosen SPD, we expect that the SPD's |
| 273 | # Makefile would set NEED_BL32 to "yes". In this case, the build system |
| 274 | # supports two mutually exclusive options: |
| 275 | # * BL32 is built from source: then BL32_SOURCES must contain the list |
| 276 | # of source files to build BL32 |
| 277 | # * BL32 is a prebuilt binary: then BL32 must point to the image file |
| 278 | # that will be included in the FIP |
| 279 | # If both BL32_SOURCES and BL32 are defined, the binary takes precedence |
| 280 | # over the sources. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 281 | endif |
| 282 | |
| 283 | |
| 284 | ################################################################################ |
| 285 | # Include the platform specific Makefile after the SPD Makefile (the platform |
| 286 | # makefile may use all previous definitions in this file) |
| 287 | ################################################################################ |
Jeenu Viswambharan | e5c39fd | 2014-05-16 11:38:10 +0100 | [diff] [blame] | 288 | |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 289 | include ${PLAT_MAKEFILE_FULL} |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 290 | |
Achin Gupta | 1bdde17 | 2015-11-07 16:19:23 +0000 | [diff] [blame] | 291 | # If the platform has not defined ENABLE_PLAT_COMPAT, then enable it by default |
| 292 | ifndef ENABLE_PLAT_COMPAT |
| 293 | ENABLE_PLAT_COMPAT := 1 |
| 294 | endif |
| 295 | |
| 296 | # Include the platform compatibility helpers for PSCI |
| 297 | ifneq (${ENABLE_PLAT_COMPAT}, 0) |
| 298 | include plat/compat/plat_compat.mk |
| 299 | endif |
| 300 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 301 | # Include the CPU specific operations makefile, which provides default |
| 302 | # values for all CPU errata workarounds and CPU specific optimisations. |
| 303 | # This can be overridden by the platform. |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 304 | include lib/cpus/cpu-ops.mk |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 305 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 306 | |
| 307 | ################################################################################ |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 308 | # Check incompatible options |
| 309 | ################################################################################ |
| 310 | |
| 311 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 312 | ifdef PRELOADED_BL33_BASE |
| 313 | $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ |
| 314 | incompatible build options. EL3_PAYLOAD_BASE has priority.") |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 315 | endif |
| 316 | endif |
| 317 | |
| 318 | ifeq (${NEED_BL33},yes) |
| 319 | ifdef EL3_PAYLOAD_BASE |
| 320 | $(warning "BL33 image is not needed when option \ |
| 321 | BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") |
| 322 | endif |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 323 | ifdef PRELOADED_BL33_BASE |
| 324 | $(warning "BL33 image is not needed when option \ |
| 325 | PRELOADED_BL33_BASE is used and won't be added to the FIP \ |
| 326 | file.") |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 327 | endif |
| 328 | endif |
| 329 | |
| 330 | |
| 331 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 332 | # Process platform overrideable behaviour |
| 333 | ################################################################################ |
| 334 | |
| 335 | # Check if -pedantic option should be used |
| 336 | ifeq (${DISABLE_PEDANTIC},0) |
Sandrine Bailleux | f5fdbcc | 2016-04-11 13:01:17 +0100 | [diff] [blame] | 337 | TF_CFLAGS += -pedantic |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 338 | endif |
| 339 | |
Sandrine Bailleux | f4119ec | 2015-12-17 13:58:58 +0000 | [diff] [blame] | 340 | # Using the ARM Trusted Firmware BL2 implies that a BL33 image also needs to be |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 341 | # supplied for the FIP and Certificate generation tools. This flag can be |
| 342 | # overridden by the platform. |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 343 | ifdef BL2_SOURCES |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 344 | ifdef EL3_PAYLOAD_BASE |
| 345 | # If booting an EL3 payload there is no need for a BL33 image |
| 346 | # in the FIP file. |
| 347 | NEED_BL33 := no |
| 348 | else |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 349 | ifdef PRELOADED_BL33_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 350 | # If booting a BL33 preloaded image there is no need of |
| 351 | # another one in the FIP file. |
| 352 | NEED_BL33 := no |
| 353 | else |
| 354 | NEED_BL33 ?= yes |
| 355 | endif |
| 356 | endif |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 357 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 358 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 359 | # Process TBB related flags |
| 360 | ifneq (${GENERATE_COT},0) |
| 361 | # Common cert_create options |
| 362 | ifneq (${CREATE_KEYS},0) |
| 363 | $(eval CRT_ARGS += -n) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 364 | $(eval FWU_CRT_ARGS += -n) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 365 | ifneq (${SAVE_KEYS},0) |
| 366 | $(eval CRT_ARGS += -k) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 367 | $(eval FWU_CRT_ARGS += -k) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 368 | endif |
| 369 | endif |
| 370 | # Include TBBR makefile (unless the platform indicates otherwise) |
| 371 | ifeq (${INCLUDE_TBBR_MK},1) |
| 372 | include make_helpers/tbbr/tbbr_tools.mk |
| 373 | endif |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 374 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 375 | |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 376 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 377 | ################################################################################ |
| 378 | # Auxiliary tools (fip_create, cert_create, etc) |
| 379 | ################################################################################ |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 380 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 381 | # Variables for use with Certificate Generation Tool |
| 382 | CRTTOOLPATH ?= tools/cert_create |
Evan Lloyd | 004c9a5 | 2015-12-03 11:35:40 +0000 | [diff] [blame] | 383 | CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 384 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 385 | # Variables for use with Firmware Image Package |
| 386 | FIPTOOLPATH ?= tools/fip_create |
Evan Lloyd | 004c9a5 | 2015-12-03 11:35:40 +0000 | [diff] [blame] | 387 | FIPTOOL ?= ${FIPTOOLPATH}/fip_create${BIN_EXT} |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 388 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 389 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 390 | ################################################################################ |
| 391 | # Build options checks |
| 392 | ################################################################################ |
| 393 | |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 394 | $(eval $(call assert_boolean,DEBUG)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 395 | $(eval $(call assert_boolean,NS_TIMER_SWITCH)) |
| 396 | $(eval $(call assert_boolean,RESET_TO_BL31)) |
| 397 | $(eval $(call assert_boolean,CTX_INCLUDE_FPREGS)) |
Soby Mathew | d75d2ba | 2016-05-17 14:01:32 +0100 | [diff] [blame] | 398 | $(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 399 | $(eval $(call assert_boolean,ASM_ASSERTION)) |
| 400 | $(eval $(call assert_boolean,USE_COHERENT_MEM)) |
| 401 | $(eval $(call assert_boolean,DISABLE_PEDANTIC)) |
| 402 | $(eval $(call assert_boolean,GENERATE_COT)) |
| 403 | $(eval $(call assert_boolean,CREATE_KEYS)) |
| 404 | $(eval $(call assert_boolean,SAVE_KEYS)) |
| 405 | $(eval $(call assert_boolean,TRUSTED_BOARD_BOOT)) |
| 406 | $(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS)) |
Sandrine Bailleux | b21b02f | 2015-10-30 15:05:17 +0000 | [diff] [blame] | 407 | $(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 408 | $(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID)) |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 409 | $(eval $(call assert_boolean,ERROR_DEPRECATED)) |
Achin Gupta | 1bdde17 | 2015-11-07 16:19:23 +0000 | [diff] [blame] | 410 | $(eval $(call assert_boolean,ENABLE_PLAT_COMPAT)) |
Sandrine Bailleux | b7e97c4 | 2015-11-10 10:01:19 +0000 | [diff] [blame] | 411 | $(eval $(call assert_boolean,SPIN_ON_BL1_EXIT)) |
Juan Castillo | 7ac4b11 | 2015-11-16 16:53:38 +0000 | [diff] [blame] | 412 | $(eval $(call assert_boolean,PL011_GENERIC_UART)) |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 413 | |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 414 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 415 | ################################################################################ |
| 416 | # Add definitions to the cpp preprocessor based on the current build options. |
| 417 | # This is done after including the platform specific makefile to allow the |
| 418 | # platform to overwrite the default options |
| 419 | ################################################################################ |
Jeenu Viswambharan | d1b6015 | 2014-05-12 15:28:47 +0100 | [diff] [blame] | 420 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 421 | $(eval $(call add_define,PLAT_${PLAT})) |
Antonio Nino Diaz | e4fa370 | 2016-04-05 11:38:49 +0100 | [diff] [blame] | 422 | $(eval $(call add_define,SPD_${SPD})) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 423 | $(eval $(call add_define,NS_TIMER_SWITCH)) |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 424 | $(eval $(call add_define,RESET_TO_BL31)) |
Juan Castillo | 258e94f | 2014-06-25 17:26:36 +0100 | [diff] [blame] | 425 | $(eval $(call add_define,CTX_INCLUDE_FPREGS)) |
Soby Mathew | d75d2ba | 2016-05-17 14:01:32 +0100 | [diff] [blame] | 426 | $(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS)) |
Sandrine Bailleux | 5fe57c1 | 2014-07-17 17:23:14 +0100 | [diff] [blame] | 427 | $(eval $(call add_define,ARM_GIC_ARCH)) |
Vikram Kanigiri | 40d468c | 2014-12-23 01:00:22 +0000 | [diff] [blame] | 428 | $(eval $(call add_define,ARM_CCI_PRODUCT_ID)) |
Soby Mathew | 041f62a | 2014-07-14 16:58:03 +0100 | [diff] [blame] | 429 | $(eval $(call add_define,ASM_ASSERTION)) |
Dan Handley | cba2c50 | 2014-08-08 14:36:42 +0100 | [diff] [blame] | 430 | $(eval $(call add_define,LOG_LEVEL)) |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 431 | $(eval $(call add_define,USE_COHERENT_MEM)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 432 | $(eval $(call add_define,TRUSTED_BOARD_BOOT)) |
| 433 | $(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS)) |
Sandrine Bailleux | b21b02f | 2015-10-30 15:05:17 +0000 | [diff] [blame] | 434 | $(eval $(call add_define,COLD_BOOT_SINGLE_CPU)) |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 435 | $(eval $(call add_define,PSCI_EXTENDED_STATE_ID)) |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 436 | $(eval $(call add_define,ERROR_DEPRECATED)) |
Achin Gupta | 1bdde17 | 2015-11-07 16:19:23 +0000 | [diff] [blame] | 437 | $(eval $(call add_define,ENABLE_PLAT_COMPAT)) |
Sandrine Bailleux | b7e97c4 | 2015-11-10 10:01:19 +0000 | [diff] [blame] | 438 | $(eval $(call add_define,SPIN_ON_BL1_EXIT)) |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 439 | $(eval $(call add_define,PL011_GENERIC_UART)) |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 440 | # Define the EL3_PAYLOAD_BASE flag only if it is provided. |
| 441 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 442 | $(eval $(call add_define,EL3_PAYLOAD_BASE)) |
| 443 | else |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 444 | # Define the PRELOADED_BL33_BASE flag only if it is provided and |
| 445 | # EL3_PAYLOAD_BASE is not defined, as it has priority. |
| 446 | ifdef PRELOADED_BL33_BASE |
| 447 | $(eval $(call add_define,PRELOADED_BL33_BASE)) |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 448 | endif |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 449 | endif |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 450 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 451 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 452 | ################################################################################ |
| 453 | # Include BL specific makefiles |
| 454 | ################################################################################ |
Juan Castillo | 5e29c75 | 2015-01-07 10:39:25 +0000 | [diff] [blame] | 455 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 456 | ifdef BL1_SOURCES |
| 457 | NEED_BL1 := yes |
| 458 | include bl1/bl1.mk |
| 459 | endif |
Sandrine Bailleux | 449dbd5 | 2015-06-02 17:19:43 +0100 | [diff] [blame] | 460 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 461 | ifdef BL2_SOURCES |
| 462 | NEED_BL2 := yes |
| 463 | include bl2/bl2.mk |
| 464 | endif |
Soby Mathew | 49473e4 | 2015-06-10 13:49:59 +0100 | [diff] [blame] | 465 | |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 466 | ifdef BL2U_SOURCES |
| 467 | NEED_BL2U := yes |
| 468 | include bl2u/bl2u.mk |
| 469 | endif |
| 470 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 471 | ifdef BL31_SOURCES |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 472 | # When booting an EL3 payload, there is no need to compile the BL31 image nor |
| 473 | # put it in the FIP. |
| 474 | ifndef EL3_PAYLOAD_BASE |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 475 | NEED_BL31 := yes |
| 476 | include bl31/bl31.mk |
| 477 | endif |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 478 | endif |
Soby Mathew | 70716d6 | 2015-07-13 16:26:11 +0100 | [diff] [blame] | 479 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 480 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 481 | ################################################################################ |
| 482 | # Build targets |
| 483 | ################################################################################ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 484 | |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 485 | .PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip fwu_fip certtool |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 486 | .SUFFIXES: |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 487 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 488 | all: msg_start |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 489 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 490 | msg_start: |
| 491 | @echo "Building ${PLAT}" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 492 | |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 493 | # Check if deprecated declarations should be treated as error or not. |
| 494 | ifeq (${ERROR_DEPRECATED},0) |
Sandrine Bailleux | f5fdbcc | 2016-04-11 13:01:17 +0100 | [diff] [blame] | 495 | TF_CFLAGS += -Wno-error=deprecated-declarations |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 496 | endif |
| 497 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 498 | # Expand build macros for the different images |
| 499 | ifeq (${NEED_BL1},yes) |
| 500 | $(eval $(call MAKE_BL,1)) |
| 501 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 502 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 503 | ifeq (${NEED_BL2},yes) |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 504 | $(if ${BL2}, $(eval $(call MAKE_TOOL_ARGS,2,${BL2},tb-fw)),\ |
| 505 | $(eval $(call MAKE_BL,2,tb-fw))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 506 | endif |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 507 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 508 | ifeq (${NEED_BL31},yes) |
| 509 | BL31_SOURCES += ${SPD_SOURCES} |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 510 | $(if ${BL31}, $(eval $(call MAKE_TOOL_ARGS,31,${BL31},soc-fw)),\ |
| 511 | $(eval $(call MAKE_BL,31,soc-fw))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 512 | endif |
Juan Castillo | 379954c | 2014-11-04 17:36:40 +0000 | [diff] [blame] | 513 | |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 514 | # If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the |
| 515 | # build system will call FIP_ADD_IMG to print a warning message and abort the |
| 516 | # process. Note that the dependency on BL32 applies to the FIP only. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 517 | ifeq (${NEED_BL32},yes) |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 518 | $(if ${BL32}, $(eval $(call MAKE_TOOL_ARGS,32,${BL32},tos-fw)),\ |
| 519 | $(if ${BL32_SOURCES}, $(eval $(call MAKE_BL,32,tos-fw)),\ |
| 520 | $(eval $(call FIP_ADD_IMG,BL32,--tos-fw)))) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 521 | endif |
| 522 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 523 | # Add the BL33 image if required by the platform |
| 524 | ifeq (${NEED_BL33},yes) |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 525 | $(eval $(call FIP_ADD_IMG,BL33,--nt-fw)) |
Juan Castillo | 9c25a40 | 2015-01-13 12:21:04 +0000 | [diff] [blame] | 526 | endif |
| 527 | |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 528 | ifeq (${NEED_BL2U},yes) |
| 529 | BL2U_PATH := $(if ${BL2U},${BL2U},$(call IMG_BIN,2u)) |
| 530 | $(if ${BL2U}, ,$(eval $(call MAKE_BL,2u))) |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 531 | $(eval $(call FWU_FIP_ADD_PAYLOAD,${BL2U_PATH},--ap-fwu-cfg)) |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 532 | endif |
| 533 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 534 | locate-checkpatch: |
| 535 | ifndef CHECKPATCH |
| 536 | $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl") |
| 537 | else |
| 538 | ifeq (,$(wildcard ${CHECKPATCH})) |
| 539 | $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl") |
| 540 | endif |
| 541 | endif |
| 542 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 543 | clean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 544 | @echo " CLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 545 | $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 546 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
| 547 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 548 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 549 | realclean distclean: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 550 | @echo " REALCLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 551 | $(call SHELL_REMOVE_DIR,${BUILD_BASE}) |
| 552 | $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 553 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
| 554 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 555 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 556 | checkcodebase: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 557 | @echo " CHECKING STYLE" |
| 558 | @if test -d .git ; then \ |
| 559 | git ls-files | grep -v stdlib | while read GIT_FILE ; do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; done ; \ |
| 560 | else \ |
| 561 | find . -type f -not -iwholename "*.git*" -not -iwholename "*build*" -not -iwholename "*stdlib*" -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ |
| 562 | fi |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 563 | |
| 564 | checkpatch: locate-checkpatch |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 565 | @echo " CHECKING STYLE" |
| 566 | ${Q}git log -p ${BASE_COMMIT}..HEAD -- ${CHECK_PATHS} | ${CHECKPATCH} ${CHECKPATCH_ARGS} - || true |
| 567 | |
| 568 | certtool: ${CRTTOOL} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 569 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 570 | .PHONY: ${CRTTOOL} |
| 571 | ${CRTTOOL}: |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 572 | ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 573 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 574 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 575 | @${ECHO_BLANK_LINE} |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 576 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 577 | ifneq (${GENERATE_COT},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 578 | certificates: ${CRT_DEPS} ${CRTTOOL} |
| 579 | ${Q}${CRTTOOL} ${CRT_ARGS} |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 580 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 581 | @echo "Built $@ successfully" |
| 582 | @echo "Certificates can be found in ${BUILD_PLAT}" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 583 | @${ECHO_BLANK_LINE} |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 584 | endif |
| 585 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 586 | ${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} |
| 587 | ${Q}${FIPTOOL} --dump ${FIP_ARGS} $@ |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 588 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 589 | @echo "Built $@ successfully" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 590 | @${ECHO_BLANK_LINE} |
Soby Mathew | dbee7fc | 2014-09-08 17:51:01 +0100 | [diff] [blame] | 591 | |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 592 | ifneq (${GENERATE_COT},0) |
| 593 | fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} |
| 594 | ${Q}${CRTTOOL} ${FWU_CRT_ARGS} |
| 595 | @echo |
| 596 | @echo "Built $@ successfully" |
| 597 | @echo "FWU certificates can be found in ${BUILD_PLAT}" |
| 598 | @echo |
| 599 | endif |
| 600 | |
| 601 | ${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} |
| 602 | ${Q}${FIPTOOL} --dump ${FWU_FIP_ARGS} $@ |
| 603 | @echo |
| 604 | @echo "Built $@ successfully" |
| 605 | @echo |
| 606 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 607 | fiptool: ${FIPTOOL} |
| 608 | fip: ${BUILD_PLAT}/${FIP_NAME} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 609 | fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 610 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 611 | .PHONY: ${FIPTOOL} |
| 612 | ${FIPTOOL}: |
| 613 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 614 | |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 615 | cscope: |
| 616 | @echo " CSCOPE" |
| 617 | ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files |
| 618 | ${Q}cscope -b -q -k |
| 619 | |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 620 | help: |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 621 | @echo "usage: ${MAKE} PLAT=<${PLATFORM_LIST}> [OPTIONS] [TARGET]" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 622 | @echo "" |
| 623 | @echo "PLAT is used to specify which platform you wish to build." |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 624 | @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 625 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 626 | @echo "Please refer to the User Guide for a list of all supported options." |
| 627 | @echo "Note that the build system doesn't track dependencies for build " |
| 628 | @echo "options. Therefore, if any of the build options are changed " |
| 629 | @echo "from a previous build, a clean build must be performed." |
| 630 | @echo "" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 631 | @echo "Supported Targets:" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 632 | @echo " all Build all individual bootloader binaries" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 633 | @echo " bl1 Build the BL1 binary" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 634 | @echo " bl2 Build the BL2 binary" |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 635 | @echo " bl2u Build the BL2U binary" |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 636 | @echo " bl31 Build the BL31 binary" |
| 637 | @echo " bl32 Build the BL32 binary" |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 638 | @echo " certificates Build the certificates (requires 'GENERATE_COT=1')" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 639 | @echo " fip Build the Firmware Image Package (FIP)" |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 640 | @echo " fwu_fip Build the FWU Firmware Image Package (FIP)" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 641 | @echo " checkcodebase Check the coding style of the entire source tree" |
| 642 | @echo " checkpatch Check the coding style on changes in the current" |
| 643 | @echo " branch against BASE_COMMIT (default origin/master)" |
| 644 | @echo " clean Clean the build for the selected platform" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 645 | @echo " cscope Generate cscope index" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 646 | @echo " distclean Remove all build artifacts for all platforms" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 647 | @echo " certtool Build the Certificate generation tool" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 648 | @echo " fiptool Build the Firmware Image Package(FIP) creation tool" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 649 | @echo "" |
Sandrine Bailleux | cf8afbd | 2015-02-18 16:18:00 +0000 | [diff] [blame] | 650 | @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] | 651 | @echo "" |
| 652 | @echo "example: build all targets for the FVP platform:" |
| 653 | @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" |