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