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