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 | |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 73 | # By default, build fvp platform |
| 74 | DEFAULT_PLAT := fvp |
| 75 | PLAT ?= ${DEFAULT_PLAT} |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 76 | # By default, build no SPD component |
| 77 | SPD ?= none |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 78 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 79 | BUILD_BASE := ./build |
| 80 | BUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 81 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 82 | PLATFORMS := $(shell ls -I common plat/) |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 83 | SPDS := $(shell ls -I none services/spd) |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 84 | HELP_PLATFORMS := $(shell echo ${PLATFORMS} | sed 's/ /|/g') |
| 85 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 86 | ifeq (${PLAT},) |
| 87 | $(error "Error: Unknown platform. Please use PLAT=<platform name> to specify the platform.") |
| 88 | endif |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 89 | ifeq ($(findstring ${PLAT},${PLATFORMS}),) |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 90 | $(error "Error: Invalid platform. The following platforms are available: ${PLATFORMS}") |
| 91 | endif |
| 92 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 93 | all: msg_start |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 94 | |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 95 | msg_start: |
| 96 | @echo "Building ${PLAT}" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 97 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 98 | include plat/${PLAT}/platform.mk |
| 99 | |
| 100 | ifdef BL1_SOURCES |
| 101 | NEED_BL1 := yes |
| 102 | include bl1/bl1.mk |
| 103 | endif |
| 104 | |
| 105 | ifdef BL2_SOURCES |
| 106 | NEED_BL2 := yes |
| 107 | include bl2/bl2.mk |
| 108 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 109 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 110 | ifdef BL31_SOURCES |
| 111 | NEED_BL31 := yes |
| 112 | include bl31/bl31.mk |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 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 | |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 131 | .PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip |
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 \ |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 140 | -Iservices/std_svc/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} |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 153 | CFLAGS += -ffunction-sections -fdata-sections |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 154 | |
Sandrine Bailleux | 3e850a8 | 2013-11-20 11:50:48 +0000 | [diff] [blame] | 155 | LDFLAGS += --fatal-warnings -O1 |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 156 | LDFLAGS += --gc-sections |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 157 | |
| 158 | |
| 159 | vpath %.ld.S bl1:bl2:bl31 |
| 160 | vpath %.c bl1:bl2:bl31 |
| 161 | vpath %.c bl1/${ARCH}:bl2/${ARCH}:bl31/${ARCH} |
| 162 | vpath %.S bl1/${ARCH}:bl2/${ARCH}:bl31/${ARCH} |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 163 | vpath %.c lib/arch/${ARCH} # One of the missing paths needed for BL_COMMON_SOURCES |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 164 | |
| 165 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 166 | ifneq (${DEBUG}, 0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 167 | #CFLAGS += -g -O0 |
| 168 | CFLAGS += -g |
| 169 | # -save-temps -fverbose-asm |
| 170 | ASFLAGS += -g -Wa,--gdwarf-2 |
James Morrissey | 40a6f64 | 2014-02-10 14:24:36 +0000 | [diff] [blame] | 171 | else |
| 172 | CFLAGS += -DNDEBUG=1 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 173 | endif |
| 174 | |
| 175 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 176 | CC := ${CROSS_COMPILE}gcc |
| 177 | CPP := ${CROSS_COMPILE}cpp |
| 178 | AS := ${CROSS_COMPILE}gcc |
| 179 | AR := ${CROSS_COMPILE}ar |
| 180 | LD := ${CROSS_COMPILE}ld |
| 181 | OC := ${CROSS_COMPILE}objcopy |
| 182 | OD := ${CROSS_COMPILE}objdump |
| 183 | NM := ${CROSS_COMPILE}nm |
| 184 | PP := ${CROSS_COMPILE}gcc -E ${CFLAGS} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 185 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 186 | BASE_COMMIT ?= origin/master |
| 187 | |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 188 | # Variables for use with Firmware Image Package |
| 189 | FIPTOOLPATH ?= tools/fip_create |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 190 | FIPTOOL ?= ${FIPTOOLPATH}/fip_create |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 191 | fiptool: ${FIPTOOL} |
| 192 | fip: ${BUILD_PLAT}/fip.bin |
| 193 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 194 | locate-checkpatch: |
| 195 | ifndef CHECKPATCH |
| 196 | $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl") |
| 197 | else |
| 198 | ifeq (,$(wildcard ${CHECKPATCH})) |
| 199 | $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl") |
| 200 | endif |
| 201 | endif |
| 202 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 203 | clean: |
| 204 | @echo " CLEAN" |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 205 | ${Q}rm -rf ${BUILD_PLAT} |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 206 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 207 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 208 | realclean distclean: |
| 209 | @echo " REALCLEAN" |
| 210 | ${Q}rm -rf ${BUILD_BASE} |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 211 | ${Q}rm -f ${CURDIR}/cscope.* |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 212 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 213 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 214 | checkcodebase: locate-checkpatch |
| 215 | @echo " CHECKING STYLE" |
| 216 | @if test -d .git ; then \ |
| 217 | git ls-files | while read GIT_FILE ; do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; done ; \ |
| 218 | else \ |
| 219 | find . -type f -not -iwholename "*.git*" -not -iwholename "*build*" -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ |
| 220 | fi |
| 221 | |
| 222 | checkpatch: locate-checkpatch |
| 223 | @echo " CHECKING STYLE" |
| 224 | @git format-patch --stdout ${BASE_COMMIT} | ${CHECKPATCH} ${CHECKPATCH_ARGS} - || true |
| 225 | |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 226 | ${FIPTOOL}: |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 227 | ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 228 | @echo |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 229 | @echo "Built $@ successfully" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 230 | @echo |
| 231 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 232 | define match_goals |
| 233 | $(strip $(foreach goal,$(1),$(filter $(goal),$(MAKECMDGOALS)))) |
| 234 | endef |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 235 | |
Sandrine Bailleux | 2d3e42d | 2014-03-21 14:17:51 +0000 | [diff] [blame] | 236 | # List of rules that involve building things |
| 237 | BUILD_TARGETS := all bl1 bl2 bl31 bl32 fip |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 238 | |
Sandrine Bailleux | 2d3e42d | 2014-03-21 14:17:51 +0000 | [diff] [blame] | 239 | # Does the list of goals specified on the command line include a build target? |
| 240 | ifneq ($(call match_goals,${BUILD_TARGETS}),) |
| 241 | IS_ANYTHING_TO_BUILD := 1 |
| 242 | endif |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 243 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 244 | define MAKE_C |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 245 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 246 | $(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) |
| 247 | $(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ))) |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 248 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 249 | $(OBJ) : $(2) |
| 250 | @echo " CC $$<" |
| 251 | $$(Q)$$(CC) $$(CFLAGS) -c $$< -o $$@ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [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 | $(PREREQUISITES) : $(2) |
| 255 | @echo " DEPS $$@" |
| 256 | @mkdir -p $(1) |
| 257 | $$(Q)$$(CC) $$(CFLAGS) -M -MT $(OBJ) -MF $$@ $$< |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 258 | |
Sandrine Bailleux | 2d3e42d | 2014-03-21 14:17:51 +0000 | [diff] [blame] | 259 | ifdef IS_ANYTHING_TO_BUILD |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 260 | -include $(PREREQUISITES) |
| 261 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 262 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 263 | endef |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 264 | |
| 265 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 266 | define MAKE_S |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 267 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 268 | $(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) |
| 269 | $(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ))) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 270 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 271 | $(OBJ) : $(2) |
| 272 | @echo " AS $$<" |
| 273 | $$(Q)$$(AS) $$(ASFLAGS) -c $$< -o $$@ |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 274 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 275 | $(PREREQUISITES) : $(2) |
| 276 | @echo " DEPS $$@" |
| 277 | @mkdir -p $(1) |
| 278 | $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(OBJ) -MF $$@ $$< |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 279 | |
Sandrine Bailleux | 2d3e42d | 2014-03-21 14:17:51 +0000 | [diff] [blame] | 280 | ifdef IS_ANYTHING_TO_BUILD |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 281 | -include $(PREREQUISITES) |
| 282 | endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 283 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 284 | endef |
| 285 | |
| 286 | |
| 287 | define MAKE_LD |
| 288 | |
| 289 | $(eval PREREQUISITES := $(1).d) |
| 290 | |
| 291 | $(1) : $(2) |
| 292 | @echo " PP $$<" |
| 293 | $$(Q)$$(AS) $$(ASFLAGS) -P -E -o $$@ $$< |
| 294 | |
| 295 | $(PREREQUISITES) : $(2) |
| 296 | @echo " DEPS $$@" |
| 297 | @mkdir -p $$(dir $$@) |
| 298 | $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(1) -MF $$@ $$< |
| 299 | |
Sandrine Bailleux | 2d3e42d | 2014-03-21 14:17:51 +0000 | [diff] [blame] | 300 | ifdef IS_ANYTHING_TO_BUILD |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 301 | -include $(PREREQUISITES) |
| 302 | endif |
| 303 | |
| 304 | endef |
| 305 | |
| 306 | |
| 307 | define MAKE_OBJS |
| 308 | $(eval C_OBJS := $(filter %.c,$(2))) |
| 309 | $(eval REMAIN := $(filter-out %.c,$(2))) |
| 310 | $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj)))) |
| 311 | |
| 312 | $(eval S_OBJS := $(filter %.S,$(REMAIN))) |
| 313 | $(eval REMAIN := $(filter-out %.S,$(REMAIN))) |
| 314 | $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj)))) |
| 315 | |
| 316 | $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) |
| 317 | endef |
| 318 | |
| 319 | |
| 320 | # NOTE: The line continuation '\' is required in the next define otherwise we |
| 321 | # end up with a line-feed characer at the end of the last c filename. |
| 322 | # Also bare this issue in mind if extending the list of supported filetypes. |
| 323 | define SOURCES_TO_OBJS |
| 324 | $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \ |
| 325 | $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1)))) |
| 326 | endef |
| 327 | |
| 328 | define MAKE_BL |
| 329 | $(eval BUILD_DIR := ${BUILD_PLAT}/bl$(1)) |
| 330 | $(eval SOURCES := $(BL$(1)_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)) |
| 331 | $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) |
| 332 | $(eval LINKERFILE := $(BUILD_DIR)/bl$(1).ld) |
| 333 | $(eval MAPFILE := $(BUILD_DIR)/bl$(1).map) |
| 334 | $(eval ELF := $(BUILD_DIR)/bl$(1).elf) |
| 335 | $(eval DUMP := $(BUILD_DIR)/bl$(1).dump) |
| 336 | $(eval BIN := $(BUILD_PLAT)/bl$(1).bin) |
| 337 | |
| 338 | $(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES))) |
| 339 | $(eval $(call MAKE_LD,$(LINKERFILE),$(BL$(1)_LINKERFILE))) |
| 340 | |
| 341 | $(BUILD_DIR) : |
| 342 | $$(Q)mkdir -p "$$@" |
| 343 | |
| 344 | $(ELF) : $(OBJS) $(LINKERFILE) |
| 345 | @echo " LD $$@" |
Jon Medhurst | ecf0a71 | 2014-02-17 12:18:24 +0000 | [diff] [blame] | 346 | @echo 'const char build_message[] = "Built : "__TIME__", "__DATE__;' | \ |
| 347 | $$(CC) $$(CFLAGS) -xc - -o $(BUILD_DIR)/build_message.o |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 348 | $$(Q)$$(LD) -o $$@ $$(LDFLAGS) -Map=$(MAPFILE) --script $(LINKERFILE) \ |
Jeenu Viswambharan | 2a30a75 | 2014-03-11 11:06:45 +0000 | [diff] [blame] | 349 | $(BUILD_DIR)/build_message.o $(OBJS) |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 350 | |
| 351 | $(DUMP) : $(ELF) |
| 352 | @echo " OD $$@" |
| 353 | $${Q}$${OD} -dx $$< > $$@ |
| 354 | |
| 355 | $(BIN) : $(ELF) |
| 356 | @echo " BIN $$@" |
| 357 | $$(Q)$$(OC) -O binary $$< $$@ |
| 358 | @echo |
| 359 | @echo "Built $$@ successfully" |
| 360 | @echo |
| 361 | |
| 362 | .PHONY : bl$(1) |
| 363 | bl$(1) : $(BUILD_DIR) $(BIN) $(DUMP) |
| 364 | |
| 365 | all : bl$(1) |
| 366 | |
| 367 | $(eval FIP_DEPS += $(if $2,$(BIN),)) |
| 368 | $(eval FIP_ARGS += $(if $2,--bl$(1) $(BIN),)) |
| 369 | |
| 370 | endef |
| 371 | |
| 372 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 373 | ifeq (${NEED_BL1},yes) |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 374 | $(eval $(call MAKE_BL,1)) |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 375 | endif |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 376 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 377 | ifeq (${NEED_BL2},yes) |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 378 | $(eval $(call MAKE_BL,2,in_fip)) |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 379 | endif |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 380 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 381 | ifeq (${NEED_BL31},yes) |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 382 | BL31_SOURCES += ${SPD_SOURCES} |
| 383 | $(eval $(call MAKE_BL,31,in_fip)) |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 384 | endif |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 385 | |
| 386 | ifeq (${NEED_BL32},yes) |
| 387 | $(eval $(call MAKE_BL,32,in_fip)) |
| 388 | endif |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 389 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 390 | ${BUILD_PLAT}/fip.bin: ${FIP_DEPS} ${BL33} ${FIPTOOL} |
| 391 | $(if ${BL33},,$(error "To build a FIP, please set BL33 to point to the Normal World binary, eg: BL33=../uefi/FVP_AARCH64_EFI.fd")) |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 392 | ${Q}${FIPTOOL} --dump \ |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 393 | ${FIP_ARGS} \ |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 394 | --bl33 ${BL33} \ |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 395 | $@ |
| 396 | @echo |
Jeenu Viswambharan | 2f2cef4 | 2014-02-19 09:38:18 +0000 | [diff] [blame] | 397 | @echo "Built $@ successfully" |
| 398 | @echo |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 399 | |
| 400 | |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 401 | cscope: |
| 402 | @echo " CSCOPE" |
| 403 | ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files |
| 404 | ${Q}cscope -b -q -k |
| 405 | |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 406 | help: |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 407 | @echo "usage: ${MAKE} PLAT=<${HELP_PLATFORMS}> <all|bl1|bl2|bl31|distclean|clean|checkcodebase|checkpatch>" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 408 | @echo "" |
| 409 | @echo "PLAT is used to specify which platform you wish to build." |
Sandrine Bailleux | a08588a | 2014-03-21 13:16:35 +0000 | [diff] [blame] | 410 | @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 411 | @echo "" |
| 412 | @echo "Supported Targets:" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 413 | @echo " all Build the BL1, BL2 and BL31 binaries" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 414 | @echo " bl1 Build the BL1 binary" |
Jeenu Viswambharan | 8aa559c | 2014-02-21 11:42:08 +0000 | [diff] [blame] | 415 | @echo " bl2 Build the BL2 binary" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 416 | @echo " bl31 Build the BL31 binary" |
| 417 | @echo " checkcodebase Check the coding style of the entire source tree" |
| 418 | @echo " checkpatch Check the coding style on changes in the current" |
| 419 | @echo " branch against BASE_COMMIT (default origin/master)" |
| 420 | @echo " clean Clean the build for the selected platform" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 421 | @echo " cscope Generate cscope index" |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 422 | @echo " distclean Remove all build artifacts for all platforms" |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 423 | @echo " fiptool Build the Firmware Image Package(FIP) creation tool" |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 424 | @echo "" |
| 425 | @echo "note: most build targets require PLAT to be set to a specific platform." |
| 426 | @echo "" |
| 427 | @echo "example: build all targets for the FVP platform:" |
| 428 | @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" |