Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | # |
Dan Handley | e83b0ca | 2014-01-14 18:17:09 +0000 | [diff] [blame] | 2 | # Copyright (c) 2013-2014, 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 | |
| 31 | # Decrease the verbosity of the make script |
| 32 | # can be made verbose by passing V=1 at the make command line |
| 33 | ifdef V |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 34 | KBUILD_VERBOSE = ${V} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 35 | else |
| 36 | KBUILD_VERBOSE = 0 |
| 37 | endif |
| 38 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 39 | # Checkpatch ignores |
| 40 | CHECK_IGNORE = --ignore COMPLEX_MACRO |
| 41 | |
| 42 | CHECKPATCH_ARGS = --no-tree --no-signoff ${CHECK_IGNORE} |
| 43 | CHECKCODE_ARGS = --no-patch --no-tree --no-signoff ${CHECK_IGNORE} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 44 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 45 | ifeq "${KBUILD_VERBOSE}" "0" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 46 | Q=@ |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 47 | CHECKCODE_ARGS += --no-summary --terse |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 48 | else |
| 49 | Q= |
| 50 | endif |
| 51 | |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 52 | export Q |
| 53 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 54 | DEBUG ?= 0 |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 55 | |
| 56 | ifneq (${DEBUG}, 0) |
| 57 | BUILD_TYPE := debug |
| 58 | else |
| 59 | BUILD_TYPE := release |
| 60 | endif |
| 61 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 62 | BL_COMMON_SOURCES := misc_helpers.S \ |
| 63 | cache_helpers.S \ |
| 64 | tlb_helpers.S \ |
| 65 | xlat_helpers.c \ |
| 66 | std.c \ |
| 67 | bl_common.c \ |
| 68 | platform_helpers.S \ |
| 69 | io_storage.c |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 70 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 71 | ARCH ?= aarch64 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 72 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 73 | # By default, build all platforms available |
| 74 | PLAT ?= all |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 75 | # By default, build no SPD component |
| 76 | SPD ?= none |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 77 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 78 | BUILD_BASE := ./build |
| 79 | BUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 80 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 81 | PLATFORMS := $(shell ls -I common plat/) |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 82 | SPDS := $(shell ls -I none services/spd) |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 83 | HELP_PLATFORMS := $(shell echo ${PLATFORMS} | sed 's/ /|/g') |
| 84 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 85 | ifeq (${PLAT},) |
| 86 | $(error "Error: Unknown platform. Please use PLAT=<platform name> to specify the platform.") |
| 87 | endif |
| 88 | ifeq ($(findstring ${PLAT},${PLATFORMS} all),) |
| 89 | $(error "Error: Invalid platform. The following platforms are available: ${PLATFORMS}") |
| 90 | endif |
| 91 | |
| 92 | ifeq (${PLAT},all) |
| 93 | all: ${PLATFORMS} |
| 94 | else |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 95 | all: msg_start fip |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 96 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 97 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 98 | msg_start: |
| 99 | @echo "Building ${PLAT}" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 100 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 101 | ${PLATFORMS}: |
| 102 | ${MAKE} PLAT=$@ all |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 103 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 104 | ifneq (${PLAT},all) |
| 105 | $(info Including ${PLAT}/platform.mk) |
| 106 | include plat/${PLAT}/platform.mk |
| 107 | $(info Including bl1.mk) |
| 108 | include bl1/bl1.mk |
| 109 | $(info Including bl2.mk) |
| 110 | include bl2/bl2.mk |
| 111 | $(info Including bl31.mk) |
| 112 | include bl31/bl31.mk |
| 113 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 114 | |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 115 | # Include SPD Makefile if one has been specified |
| 116 | ifneq (${SPD},none) |
| 117 | # We expect to locate an spd.mk under the specified SPD directory |
| 118 | SPD_MAKE := $(shell m="services/spd/${SPD}/${SPD}.mk"; [ -f "$$m" ] && echo "$$m") |
| 119 | |
| 120 | ifeq (${SPD_MAKE},) |
| 121 | $(error Error: No services/spd/${SPD}/${SPD}.mk located) |
| 122 | endif |
| 123 | $(info Including ${SPD_MAKE}) |
| 124 | include ${SPD_MAKE} |
| 125 | |
| 126 | # If there's BL32 companion for the chosen SPD, and the SPD wants to build the |
| 127 | # BL2 from source, we expect that the SPD's Makefile would set NEED_BL32 |
| 128 | # variable to "yes" |
| 129 | endif |
| 130 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 131 | .PHONY: all msg_start ${PLATFORMS} clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip locate-bl33 |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 132 | .SUFFIXES: |
| 133 | |
| 134 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 135 | INCLUDES += -Ilib/include/ \ |
James Morrissey | f2f9bb5 | 2014-02-10 16:18:59 +0000 | [diff] [blame] | 136 | -Idrivers/io \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 137 | -Iinclude/${ARCH}/ \ |
| 138 | -Iinclude/ \ |
| 139 | -Iarch/system/gic \ |
Achin Gupta | 0a9f747 | 2014-02-09 17:48:12 +0000 | [diff] [blame] | 140 | -Iservices/psci \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 141 | -Iinclude/stdlib \ |
| 142 | -Iinclude/stdlib/sys \ |
| 143 | -Iplat/${PLAT} \ |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 144 | ${PLAT_INCLUDES} \ |
| 145 | ${SPD_INCLUDES} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 146 | |
Harry Liebel | 0af6d64 | 2013-12-20 18:51:12 +0000 | [diff] [blame] | 147 | ASFLAGS += -nostdinc -ffreestanding -Wa,--fatal-warnings \ |
Sandrine Bailleux | df64a55 | 2014-02-11 13:31:33 +0000 | [diff] [blame] | 148 | -mgeneral-regs-only -D__ASSEMBLY__ ${INCLUDES} \ |
| 149 | -DDEBUG=${DEBUG} |
Harry Liebel | 4f60368 | 2014-01-14 18:11:48 +0000 | [diff] [blame] | 150 | CFLAGS := -nostdinc -pedantic -ffreestanding -Wall \ |
| 151 | -Werror -mgeneral-regs-only -std=c99 -c -Os \ |
| 152 | -DDEBUG=${DEBUG} ${INCLUDES} ${CFLAGS} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 153 | |
Sandrine Bailleux | 3e850a8 | 2013-11-20 11:50:48 +0000 | [diff] [blame] | 154 | LDFLAGS += --fatal-warnings -O1 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 155 | |
| 156 | |
| 157 | vpath %.ld.S bl1:bl2:bl31 |
| 158 | vpath %.c bl1:bl2:bl31 |
| 159 | vpath %.c bl1/${ARCH}:bl2/${ARCH}:bl31/${ARCH} |
| 160 | vpath %.S bl1/${ARCH}:bl2/${ARCH}:bl31/${ARCH} |
| 161 | |
| 162 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 163 | ifneq (${DEBUG}, 0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 164 | #CFLAGS += -g -O0 |
| 165 | CFLAGS += -g |
| 166 | # -save-temps -fverbose-asm |
| 167 | ASFLAGS += -g -Wa,--gdwarf-2 |
James Morrissey | 40a6f64 | 2014-02-10 14:24:36 +0000 | [diff] [blame] | 168 | else |
| 169 | CFLAGS += -DNDEBUG=1 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 170 | endif |
| 171 | |
| 172 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 173 | CC := ${CROSS_COMPILE}gcc |
| 174 | CPP := ${CROSS_COMPILE}cpp |
| 175 | AS := ${CROSS_COMPILE}gcc |
| 176 | AR := ${CROSS_COMPILE}ar |
| 177 | LD := ${CROSS_COMPILE}ld |
| 178 | OC := ${CROSS_COMPILE}objcopy |
| 179 | OD := ${CROSS_COMPILE}objdump |
| 180 | NM := ${CROSS_COMPILE}nm |
| 181 | PP := ${CROSS_COMPILE}gcc -E ${CFLAGS} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 182 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 183 | BASE_COMMIT ?= origin/master |
| 184 | |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 185 | # Variables for use with Firmware Image Package |
| 186 | FIPTOOLPATH ?= tools/fip_create |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 187 | FIPTOOL ?= ${FIPTOOLPATH}/fip_create |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 188 | fiptool: ${FIPTOOL} |
| 189 | fip: ${BUILD_PLAT}/fip.bin |
| 190 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 191 | ifeq (${PLAT},all) |
| 192 | ifeq (${MAKECMDGOALS},clean) |
| 193 | $(error "Please select a platform with PLAT=<platform>. You can use 'make distclean' to clean up all platform builds") |
| 194 | endif |
| 195 | endif |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 196 | |
| 197 | locate-checkpatch: |
| 198 | ifndef CHECKPATCH |
| 199 | $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl") |
| 200 | else |
| 201 | ifeq (,$(wildcard ${CHECKPATCH})) |
| 202 | $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl") |
| 203 | endif |
| 204 | endif |
| 205 | |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 206 | locate-bl33: |
| 207 | ifndef BL33 |
| 208 | $(error "Please set BL33 to point to the Normal World binary, eg: BL33=../uefi/FVP_AARCH64_EFI.fd") |
| 209 | else |
| 210 | ifeq (,$(wildcard ${BL33})) |
| 211 | $(error "The file BL33 points to cannot be found (${BL33})") |
| 212 | endif |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 213 | FIP_DEPS += ${BL33} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 214 | endif |
| 215 | |
| 216 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 217 | clean: |
| 218 | @echo " CLEAN" |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 219 | ${Q}rm -rf ${BUILD_PLAT} |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 220 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 221 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 222 | realclean distclean: |
| 223 | @echo " REALCLEAN" |
| 224 | ${Q}rm -rf ${BUILD_BASE} |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 225 | ${Q}rm -f ${CURDIR}/cscope.* |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 226 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 227 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 228 | checkcodebase: locate-checkpatch |
| 229 | @echo " CHECKING STYLE" |
| 230 | @if test -d .git ; then \ |
| 231 | git ls-files | while read GIT_FILE ; do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; done ; \ |
| 232 | else \ |
| 233 | find . -type f -not -iwholename "*.git*" -not -iwholename "*build*" -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ |
| 234 | fi |
| 235 | |
| 236 | checkpatch: locate-checkpatch |
| 237 | @echo " CHECKING STYLE" |
| 238 | @git format-patch --stdout ${BASE_COMMIT} | ${CHECKPATCH} ${CHECKPATCH_ARGS} - || true |
| 239 | |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 240 | ${FIPTOOL}: |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 241 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 242 | @echo |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 243 | @echo "Built $@ successfully" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 244 | @echo |
| 245 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 246 | define match_goals |
| 247 | $(strip $(foreach goal,$(1),$(filter $(goal),$(MAKECMDGOALS)))) |
| 248 | endef |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 249 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 250 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 251 | CLEANING := $(call match_goals,clean realclean distclean) |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 252 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 253 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 254 | define MAKE_C |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 255 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 256 | $(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) |
| 257 | $(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ))) |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 258 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 259 | $(OBJ) : $(2) |
| 260 | @echo " CC $$<" |
| 261 | $$(Q)$$(CC) $$(CFLAGS) -c $$< -o $$@ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 262 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 263 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 264 | $(PREREQUISITES) : $(2) |
| 265 | @echo " DEPS $$@" |
| 266 | @mkdir -p $(1) |
| 267 | $$(Q)$$(CC) $$(CFLAGS) -M -MT $(OBJ) -MF $$@ $$< |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 268 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 269 | ifeq "$(CLEANING)" "" |
| 270 | -include $(PREREQUISITES) |
| 271 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 272 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 273 | endef |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 274 | |
| 275 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 276 | define MAKE_S |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 277 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 278 | $(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) |
| 279 | $(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ))) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 280 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 281 | $(OBJ) : $(2) |
| 282 | @echo " AS $$<" |
| 283 | $$(Q)$$(AS) $$(ASFLAGS) -c $$< -o $$@ |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 284 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 285 | $(PREREQUISITES) : $(2) |
| 286 | @echo " DEPS $$@" |
| 287 | @mkdir -p $(1) |
| 288 | $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(OBJ) -MF $$@ $$< |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 289 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 290 | ifeq "$(CLEANING)" "" |
| 291 | -include $(PREREQUISITES) |
| 292 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 293 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 294 | endef |
| 295 | |
| 296 | |
| 297 | define MAKE_LD |
| 298 | |
| 299 | $(eval PREREQUISITES := $(1).d) |
| 300 | |
| 301 | $(1) : $(2) |
| 302 | @echo " PP $$<" |
| 303 | $$(Q)$$(AS) $$(ASFLAGS) -P -E -o $$@ $$< |
| 304 | |
| 305 | $(PREREQUISITES) : $(2) |
| 306 | @echo " DEPS $$@" |
| 307 | @mkdir -p $$(dir $$@) |
| 308 | $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(1) -MF $$@ $$< |
| 309 | |
| 310 | ifeq "$(CLEANING)" "" |
| 311 | -include $(PREREQUISITES) |
| 312 | endif |
| 313 | |
| 314 | endef |
| 315 | |
| 316 | |
| 317 | define MAKE_OBJS |
| 318 | $(eval C_OBJS := $(filter %.c,$(2))) |
| 319 | $(eval REMAIN := $(filter-out %.c,$(2))) |
| 320 | $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj)))) |
| 321 | |
| 322 | $(eval S_OBJS := $(filter %.S,$(REMAIN))) |
| 323 | $(eval REMAIN := $(filter-out %.S,$(REMAIN))) |
| 324 | $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj)))) |
| 325 | |
| 326 | $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) |
| 327 | endef |
| 328 | |
| 329 | |
| 330 | # NOTE: The line continuation '\' is required in the next define otherwise we |
| 331 | # end up with a line-feed characer at the end of the last c filename. |
| 332 | # Also bare this issue in mind if extending the list of supported filetypes. |
| 333 | define SOURCES_TO_OBJS |
| 334 | $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \ |
| 335 | $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1)))) |
| 336 | endef |
| 337 | |
| 338 | define MAKE_BL |
| 339 | $(eval BUILD_DIR := ${BUILD_PLAT}/bl$(1)) |
| 340 | $(eval SOURCES := $(BL$(1)_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)) |
| 341 | $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) |
| 342 | $(eval LINKERFILE := $(BUILD_DIR)/bl$(1).ld) |
| 343 | $(eval MAPFILE := $(BUILD_DIR)/bl$(1).map) |
| 344 | $(eval ELF := $(BUILD_DIR)/bl$(1).elf) |
| 345 | $(eval DUMP := $(BUILD_DIR)/bl$(1).dump) |
| 346 | $(eval BIN := $(BUILD_PLAT)/bl$(1).bin) |
| 347 | |
| 348 | $(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES))) |
| 349 | $(eval $(call MAKE_LD,$(LINKERFILE),$(BL$(1)_LINKERFILE))) |
| 350 | |
| 351 | $(BUILD_DIR) : |
| 352 | $$(Q)mkdir -p "$$@" |
| 353 | |
| 354 | $(ELF) : $(OBJS) $(LINKERFILE) |
| 355 | @echo " LD $$@" |
Jon Medhurst | ecf0a71 | 2014-02-17 12:18:24 +0000 | [diff] [blame^] | 356 | @echo 'const char build_message[] = "Built : "__TIME__", "__DATE__;' | \ |
| 357 | $$(CC) $$(CFLAGS) -xc - -o $(BUILD_DIR)/build_message.o |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 358 | $$(Q)$$(LD) -o $$@ $$(LDFLAGS) -Map=$(MAPFILE) --script $(LINKERFILE) \ |
Jon Medhurst | ecf0a71 | 2014-02-17 12:18:24 +0000 | [diff] [blame^] | 359 | --entry=$(BL$(1)_ENTRY_POINT) $(OBJS) \ |
| 360 | $(BUILD_DIR)/build_message.o |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 361 | |
| 362 | $(DUMP) : $(ELF) |
| 363 | @echo " OD $$@" |
| 364 | $${Q}$${OD} -dx $$< > $$@ |
| 365 | |
| 366 | $(BIN) : $(ELF) |
| 367 | @echo " BIN $$@" |
| 368 | $$(Q)$$(OC) -O binary $$< $$@ |
| 369 | @echo |
| 370 | @echo "Built $$@ successfully" |
| 371 | @echo |
| 372 | |
| 373 | .PHONY : bl$(1) |
| 374 | bl$(1) : $(BUILD_DIR) $(BIN) $(DUMP) |
| 375 | |
| 376 | all : bl$(1) |
| 377 | |
| 378 | $(eval FIP_DEPS += $(if $2,$(BIN),)) |
| 379 | $(eval FIP_ARGS += $(if $2,--bl$(1) $(BIN),)) |
| 380 | |
| 381 | endef |
| 382 | |
| 383 | |
| 384 | $(eval $(call MAKE_BL,1)) |
| 385 | |
| 386 | $(eval $(call MAKE_BL,2,in_fip)) |
| 387 | |
| 388 | BL31_SOURCES += ${SPD_SOURCES} |
| 389 | $(eval $(call MAKE_BL,31,in_fip)) |
| 390 | |
| 391 | ifeq (${NEED_BL32},yes) |
| 392 | $(eval $(call MAKE_BL,32,in_fip)) |
| 393 | endif |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 394 | |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 395 | ${BUILD_PLAT}/fip.bin: locate-bl33 ${FIP_DEPS} ${FIPTOOL} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 396 | ${Q}${FIPTOOL} --dump \ |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 397 | ${FIP_ARGS} \ |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 398 | --bl33 ${BL33} \ |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 399 | $@ |
| 400 | @echo |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 401 | @echo "Built $@ successfully" |
| 402 | @echo |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 403 | |
| 404 | |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 405 | cscope: |
| 406 | @echo " CSCOPE" |
| 407 | ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files |
| 408 | ${Q}cscope -b -q -k |
| 409 | |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 410 | help: |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 411 | @echo "usage: ${MAKE} PLAT=<all|${HELP_PLATFORMS}> <all|bl1|bl2|bl31|distclean|clean|checkcodebase|checkpatch>" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 412 | @echo "" |
| 413 | @echo "PLAT is used to specify which platform you wish to build." |
| 414 | @echo "" |
| 415 | @echo "Supported Targets:" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 416 | @echo " all Build the BL1, BL2 and BL31 binaries" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 417 | @echo " bl1 Build the BL1 binary" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 418 | @echo " bl2 Build the BL2 binary" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 419 | @echo " bl31 Build the BL31 binary" |
| 420 | @echo " checkcodebase Check the coding style of the entire source tree" |
| 421 | @echo " checkpatch Check the coding style on changes in the current" |
| 422 | @echo " branch against BASE_COMMIT (default origin/master)" |
| 423 | @echo " clean Clean the build for the selected platform" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 424 | @echo " cscope Generate cscope index" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 425 | @echo " distclean Remove all build artifacts for all platforms" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 426 | @echo " fiptool Build the Firmware Image Package(FIP) creation tool" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 427 | @echo "" |
| 428 | @echo "note: most build targets require PLAT to be set to a specific platform." |
| 429 | @echo "" |
| 430 | @echo "example: build all targets for the FVP platform:" |
| 431 | @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" |