17ebf7443Swdenk# 2eca3aeb3SWolfgang Denk# (C) Copyright 2000-2013 37ebf7443Swdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 47ebf7443Swdenk# 5eca3aeb3SWolfgang Denk# SPDX-License-Identifier: GPL-2.0+ 67ebf7443Swdenk# 77ebf7443Swdenk 8d19ad726STom RiniVERSION = 2014 9d19ad726STom RiniPATCHLEVEL = 01 10211e4754SWolfgang DenkSUBLEVEL = 11b44bd2c7STom RiniEXTRAVERSION = 125f30f3beSMasahiro YamadaNAME = 13ae6d1056SWolfgang Denk 146825a95bSMasahiro Yamada# *DOCUMENTATION* 156825a95bSMasahiro Yamada# To see a list of typical targets execute "make help" 166825a95bSMasahiro Yamada# More info can be located in ./README 176825a95bSMasahiro Yamada# Comments in this file are targeted only to the developer, do not 186825a95bSMasahiro Yamada# expect to learn how to build the kernel reading this file. 196825a95bSMasahiro Yamada 206825a95bSMasahiro Yamada# Do not: 216825a95bSMasahiro Yamada# o use make's built-in rules and variables 226825a95bSMasahiro Yamada# (this increases performance and avoids hard-to-debug behaviour); 236825a95bSMasahiro Yamada# o print "Entering directory ..."; 246825a95bSMasahiro YamadaMAKEFLAGS += -rR --no-print-directory 256825a95bSMasahiro Yamada 266825a95bSMasahiro Yamada# Avoid funny character set dependencies 276825a95bSMasahiro Yamadaunexport LC_ALL 286825a95bSMasahiro YamadaLC_COLLATE=C 296825a95bSMasahiro YamadaLC_NUMERIC=C 306825a95bSMasahiro Yamadaexport LC_COLLATE LC_NUMERIC 316825a95bSMasahiro Yamada 326825a95bSMasahiro Yamada# We are using a recursive build, so we need to do a little thinking 336825a95bSMasahiro Yamada# to get the ordering right. 346825a95bSMasahiro Yamada# 356825a95bSMasahiro Yamada# Most importantly: sub-Makefiles should only ever modify files in 366825a95bSMasahiro Yamada# their own directory. If in some directory we have a dependency on 376825a95bSMasahiro Yamada# a file in another dir (which doesn't happen often, but it's often 386825a95bSMasahiro Yamada# unavoidable when linking the built-in.o targets which finally 396825a95bSMasahiro Yamada# turn into vmlinux), we will call a sub make in that other dir, and 406825a95bSMasahiro Yamada# after that we are sure that everything which is in that other dir 416825a95bSMasahiro Yamada# is now up to date. 426825a95bSMasahiro Yamada# 436825a95bSMasahiro Yamada# The only cases where we need to modify files which have global 446825a95bSMasahiro Yamada# effects are thus separated out and done before the recursive 456825a95bSMasahiro Yamada# descending is started. They are now explicitly listed as the 466825a95bSMasahiro Yamada# prepare rule. 476825a95bSMasahiro Yamada 486825a95bSMasahiro Yamada# To put more focus on warnings, be less verbose as default 496825a95bSMasahiro Yamada# Use 'make V=1' to see the full commands 506825a95bSMasahiro Yamada 516825a95bSMasahiro Yamadaifeq ("$(origin V)", "command line") 526825a95bSMasahiro Yamada KBUILD_VERBOSE = $(V) 536825a95bSMasahiro Yamadaendif 546825a95bSMasahiro Yamadaifndef KBUILD_VERBOSE 556825a95bSMasahiro Yamada KBUILD_VERBOSE = 0 566825a95bSMasahiro Yamadaendif 576825a95bSMasahiro Yamada 586825a95bSMasahiro Yamada# Call a source code checker (by default, "sparse") as part of the 596825a95bSMasahiro Yamada# C compilation. 606825a95bSMasahiro Yamada# 616825a95bSMasahiro Yamada# Use 'make C=1' to enable checking of only re-compiled files. 626825a95bSMasahiro Yamada# Use 'make C=2' to enable checking of *all* source files, regardless 636825a95bSMasahiro Yamada# of whether they are re-compiled or not. 646825a95bSMasahiro Yamada# 656825a95bSMasahiro Yamada# See the file "Documentation/sparse.txt" for more details, including 666825a95bSMasahiro Yamada# where to get the "sparse" utility. 676825a95bSMasahiro Yamada 686825a95bSMasahiro Yamadaifeq ("$(origin C)", "command line") 696825a95bSMasahiro Yamada KBUILD_CHECKSRC = $(C) 706825a95bSMasahiro Yamadaendif 716825a95bSMasahiro Yamadaifndef KBUILD_CHECKSRC 726825a95bSMasahiro Yamada KBUILD_CHECKSRC = 0 736825a95bSMasahiro Yamadaendif 746825a95bSMasahiro Yamada 756825a95bSMasahiro Yamada# Use make M=dir to specify directory of external module to build 766825a95bSMasahiro Yamada# Old syntax make ... SUBDIRS=$PWD is still supported 776825a95bSMasahiro Yamada# Setting the environment variable KBUILD_EXTMOD take precedence 786825a95bSMasahiro Yamadaifdef SUBDIRS 796825a95bSMasahiro Yamada KBUILD_EXTMOD ?= $(SUBDIRS) 806825a95bSMasahiro Yamadaendif 816825a95bSMasahiro Yamada 826825a95bSMasahiro Yamadaifeq ("$(origin M)", "command line") 836825a95bSMasahiro Yamada KBUILD_EXTMOD := $(M) 846825a95bSMasahiro Yamadaendif 856825a95bSMasahiro Yamada 869e414032SMasahiro Yamada# kbuild supports saving output files in a separate directory. 879e414032SMasahiro Yamada# To locate output files in a separate directory two syntaxes are supported. 889e414032SMasahiro Yamada# In both cases the working directory must be the root of the kernel src. 899e414032SMasahiro Yamada# 1) O= 909e414032SMasahiro Yamada# Use "make O=dir/to/store/output/files/" 91f9328639SMarian Balakowicz# 929e414032SMasahiro Yamada# 2) Set KBUILD_OUTPUT 939e414032SMasahiro Yamada# Set the environment variable KBUILD_OUTPUT to point to the directory 949e414032SMasahiro Yamada# where the output files shall be placed. 959e414032SMasahiro Yamada# export KBUILD_OUTPUT=dir/to/store/output/files/ 969e414032SMasahiro Yamada# make 97f9328639SMarian Balakowicz# 989e414032SMasahiro Yamada# The O= assignment takes precedence over the KBUILD_OUTPUT environment 999e414032SMasahiro Yamada# variable. 1007ebf7443Swdenk 1019e414032SMasahiro Yamada 1029e414032SMasahiro Yamada# KBUILD_SRC is set on invocation of make in OBJ directory 1039e414032SMasahiro Yamada# KBUILD_SRC is not intended to be used by the regular user (for now) 1049e414032SMasahiro Yamadaifeq ($(KBUILD_SRC),) 1059e414032SMasahiro Yamada 1069e414032SMasahiro Yamada# OK, Make called in directory where kernel src resides 1079e414032SMasahiro Yamada# Do we want to locate output files in a separate directory? 108f9328639SMarian Balakowiczifeq ("$(origin O)", "command line") 1099e414032SMasahiro Yamada KBUILD_OUTPUT := $(O) 110f9328639SMarian Balakowiczendif 1117ebf7443Swdenk 1129e414032SMasahiro Yamadaifeq ("$(origin W)", "command line") 1139e414032SMasahiro Yamada export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W) 1149e414032SMasahiro Yamadaendif 1159e414032SMasahiro Yamada 1169e414032SMasahiro Yamada# That's our default target when none is given on the command line 1179e414032SMasahiro YamadaPHONY := _all 1189e414032SMasahiro Yamada_all: 1199e414032SMasahiro Yamada 1209e414032SMasahiro Yamada# Cancel implicit rules on top Makefile 1219e414032SMasahiro Yamada$(CURDIR)/Makefile Makefile: ; 1229e414032SMasahiro Yamada 1239e414032SMasahiro Yamadaifneq ($(KBUILD_OUTPUT),) 1249e414032SMasahiro Yamada# Invoke a second make in the output directory, passing relevant variables 1259e414032SMasahiro Yamada# check that the output directory actually exists 1269e414032SMasahiro Yamadasaved-output := $(KBUILD_OUTPUT) 1279e414032SMasahiro YamadaKBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd) 1289e414032SMasahiro Yamada$(if $(KBUILD_OUTPUT),, \ 1299e414032SMasahiro Yamada $(error output directory "$(saved-output)" does not exist)) 1309e414032SMasahiro Yamada 1319e414032SMasahiro YamadaPHONY += $(MAKECMDGOALS) sub-make 1329e414032SMasahiro Yamada 1339e414032SMasahiro Yamada$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make 1349e414032SMasahiro Yamada @: 1359e414032SMasahiro Yamada 1369e414032SMasahiro Yamadasub-make: FORCE 1379e414032SMasahiro Yamada $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ 1389e414032SMasahiro Yamada KBUILD_SRC=$(CURDIR) \ 1399e414032SMasahiro Yamada KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \ 1409e414032SMasahiro Yamada $(filter-out _all sub-make,$(MAKECMDGOALS)) 1419e414032SMasahiro Yamada 1429e414032SMasahiro Yamada# Leave processing to above invocation of make 1439e414032SMasahiro Yamadaskip-makefile := 1 1449e414032SMasahiro Yamadaendif # ifneq ($(KBUILD_OUTPUT),) 1459e414032SMasahiro Yamadaendif # ifeq ($(KBUILD_SRC),) 1469e414032SMasahiro Yamada 1479e414032SMasahiro Yamada# We process the rest of the Makefile if this is the final invocation of make 1489e414032SMasahiro Yamadaifeq ($(skip-makefile),) 1499e414032SMasahiro Yamada 1506825a95bSMasahiro Yamada# If building an external module we do not care about the all: rule 1516825a95bSMasahiro Yamada# but instead _all depend on modules 1529e414032SMasahiro YamadaPHONY += all 1536825a95bSMasahiro Yamadaifeq ($(KBUILD_EXTMOD),) 1549e414032SMasahiro Yamada_all: all 1556825a95bSMasahiro Yamadaelse 1566825a95bSMasahiro Yamada_all: modules 1576825a95bSMasahiro Yamadaendif 1589e414032SMasahiro Yamada 1599e414032SMasahiro Yamadasrctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR)) 1609e414032SMasahiro Yamadaobjtree := $(CURDIR) 1619e414032SMasahiro Yamadasrc := $(srctree) 1629e414032SMasahiro Yamadaobj := $(objtree) 1639e414032SMasahiro Yamada 1649e414032SMasahiro YamadaVPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD)) 1659e414032SMasahiro Yamada 1669e414032SMasahiro Yamadaexport srctree objtree VPATH 1679e414032SMasahiro Yamada 1689e414032SMasahiro YamadaOBJTREE := $(objtree) 169c8f9c302SDaniel SchwierzeckSPLTREE := $(OBJTREE)/spl 1703aa29de0SYing ZhangTPLTREE := $(OBJTREE)/tpl 1719e414032SMasahiro YamadaSRCTREE := $(srctree) 172f9328639SMarian BalakowiczTOPDIR := $(SRCTREE) 1739e414032SMasahiro Yamadaexport TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE 174f9328639SMarian Balakowicz 175f9328639SMarian BalakowiczMKCONFIG := $(SRCTREE)/mkconfig 176f9328639SMarian Balakowiczexport MKCONFIG 177f9328639SMarian Balakowicz 1785013c09fSWolfgang Denk# Make sure CDPATH settings don't interfere 1795013c09fSWolfgang Denkunexport CDPATH 1805013c09fSWolfgang Denk 181f9328639SMarian Balakowicz######################################################################### 182f9328639SMarian Balakowicz 1835f30f3beSMasahiro YamadaTIMESTAMP_FILE = include/generated/timestamp_autogenerated.h 1845f30f3beSMasahiro YamadaVERSION_FILE = include/generated/version_autogenerated.h 1855f30f3beSMasahiro Yamada 1865f30f3beSMasahiro YamadaHOSTARCH := $(shell uname -m | \ 1875f30f3beSMasahiro Yamada sed -e s/i.86/x86/ \ 1885f30f3beSMasahiro Yamada -e s/sun4u/sparc64/ \ 1895f30f3beSMasahiro Yamada -e s/arm.*/arm/ \ 1905f30f3beSMasahiro Yamada -e s/sa110/arm/ \ 1915f30f3beSMasahiro Yamada -e s/ppc64/powerpc/ \ 1925f30f3beSMasahiro Yamada -e s/ppc/powerpc/ \ 1935f30f3beSMasahiro Yamada -e s/macppc/powerpc/\ 1945f30f3beSMasahiro Yamada -e s/sh.*/sh/) 1955f30f3beSMasahiro Yamada 1965f30f3beSMasahiro YamadaHOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ 1975f30f3beSMasahiro Yamada sed -e 's/\(cygwin\).*/cygwin/') 1985f30f3beSMasahiro Yamada 1995f30f3beSMasahiro Yamadaexport HOSTARCH HOSTOS 2005f30f3beSMasahiro Yamada 2015f30f3beSMasahiro Yamada# Deal with colliding definitions from tcsh etc. 2025f30f3beSMasahiro YamadaVENDOR= 2035f30f3beSMasahiro Yamada 2045f30f3beSMasahiro Yamada######################################################################### 2055f30f3beSMasahiro Yamada 2061ea6bcd8SMike Frysinger# set default to nothing for native builds 207a5284efdSWolfgang Denkifeq ($(HOSTARCH),$(ARCH)) 2081ea6bcd8SMike FrysingerCROSS_COMPILE ?= 2097ebf7443Swdenkendif 2107ebf7443Swdenk 211f6322eb7SMasahiro Yamada# SHELL used by kbuild 212f6322eb7SMasahiro YamadaCONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ 213f6322eb7SMasahiro Yamada else if [ -x /bin/bash ]; then echo /bin/bash; \ 214f6322eb7SMasahiro Yamada else echo sh; fi ; fi) 215f6322eb7SMasahiro Yamada 216f6322eb7SMasahiro YamadaHOSTCC = gcc 217f6322eb7SMasahiro YamadaHOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer 218f6322eb7SMasahiro Yamada 219f6322eb7SMasahiro Yamadaifeq ($(HOSTOS),cygwin) 220f6322eb7SMasahiro YamadaHOSTCFLAGS += -ansi 221f6322eb7SMasahiro Yamadaendif 222f6322eb7SMasahiro Yamada 223f6322eb7SMasahiro Yamada# Mac OS X / Darwin's C preprocessor is Apple specific. It 224f6322eb7SMasahiro Yamada# generates numerous errors and warnings. We want to bypass it 225f6322eb7SMasahiro Yamada# and use GNU C's cpp. To do this we pass the -traditional-cpp 226f6322eb7SMasahiro Yamada# option to the compiler. Note that the -traditional-cpp flag 227f6322eb7SMasahiro Yamada# DOES NOT have the same semantics as GNU C's flag, all it does 228f6322eb7SMasahiro Yamada# is invoke the GNU preprocessor in stock ANSI/ISO C fashion. 229f6322eb7SMasahiro Yamada# 230f6322eb7SMasahiro Yamada# Apple's linker is similar, thanks to the new 2 stage linking 231f6322eb7SMasahiro Yamada# multiple symbol definitions are treated as errors, hence the 232f6322eb7SMasahiro Yamada# -multiply_defined suppress option to turn off this error. 233f6322eb7SMasahiro Yamada# 234f6322eb7SMasahiro Yamadaifeq ($(HOSTOS),darwin) 235f6322eb7SMasahiro Yamada# get major and minor product version (e.g. '10' and '6' for Snow Leopard) 236f6322eb7SMasahiro YamadaDARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.') 237f6322eb7SMasahiro YamadaDARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.') 238f6322eb7SMasahiro Yamada 239f6322eb7SMasahiro Yamadaos_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \ 240f6322eb7SMasahiro Yamada $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;) 241f6322eb7SMasahiro Yamada 242f6322eb7SMasahiro Yamada# Snow Leopards build environment has no longer restrictions as described above 243f6322eb7SMasahiro YamadaHOSTCC = $(call os_x_before, 10, 5, "cc", "gcc") 244f6322eb7SMasahiro YamadaHOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp") 245f6322eb7SMasahiro YamadaHOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress") 246f6322eb7SMasahiro Yamadaendif 247f6322eb7SMasahiro Yamada 2486825a95bSMasahiro Yamada# Decide whether to build built-in, modular, or both. 2496825a95bSMasahiro Yamada# Normally, just do built-in. 2506825a95bSMasahiro Yamada 2516825a95bSMasahiro YamadaKBUILD_MODULES := 2526825a95bSMasahiro YamadaKBUILD_BUILTIN := 1 2536825a95bSMasahiro Yamada 2546825a95bSMasahiro Yamada# If we have only "make modules", don't compile built-in objects. 2556825a95bSMasahiro Yamada# When we're building modules with modversions, we need to consider 2566825a95bSMasahiro Yamada# the built-in objects during the descend as well, in order to 2576825a95bSMasahiro Yamada# make sure the checksums are up to date before we record them. 2586825a95bSMasahiro Yamada 2596825a95bSMasahiro Yamadaifeq ($(MAKECMDGOALS),modules) 2606825a95bSMasahiro Yamada KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1) 2616825a95bSMasahiro Yamadaendif 2626825a95bSMasahiro Yamada 2636825a95bSMasahiro Yamada# If we have "make <whatever> modules", compile modules 2646825a95bSMasahiro Yamada# in addition to whatever we do anyway. 2656825a95bSMasahiro Yamada# Just "make" or "make all" shall build modules as well 2666825a95bSMasahiro Yamada 2676825a95bSMasahiro Yamada# U-Boot does not need modules 2686825a95bSMasahiro Yamada#ifneq ($(filter all _all modules,$(MAKECMDGOALS)),) 2696825a95bSMasahiro Yamada# KBUILD_MODULES := 1 2706825a95bSMasahiro Yamada#endif 2716825a95bSMasahiro Yamada 2726825a95bSMasahiro Yamada#ifeq ($(MAKECMDGOALS),) 2736825a95bSMasahiro Yamada# KBUILD_MODULES := 1 2746825a95bSMasahiro Yamada#endif 2756825a95bSMasahiro Yamada 2766825a95bSMasahiro Yamadaexport KBUILD_MODULES KBUILD_BUILTIN 2776825a95bSMasahiro Yamadaexport KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD 2786825a95bSMasahiro Yamada 2796825a95bSMasahiro Yamada# Beautify output 2806825a95bSMasahiro Yamada# --------------------------------------------------------------------------- 2816825a95bSMasahiro Yamada# 2826825a95bSMasahiro Yamada# Normally, we echo the whole command before executing it. By making 2836825a95bSMasahiro Yamada# that echo $($(quiet)$(cmd)), we now have the possibility to set 2846825a95bSMasahiro Yamada# $(quiet) to choose other forms of output instead, e.g. 2856825a95bSMasahiro Yamada# 2866825a95bSMasahiro Yamada# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ 2876825a95bSMasahiro Yamada# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< 2886825a95bSMasahiro Yamada# 2896825a95bSMasahiro Yamada# If $(quiet) is empty, the whole command will be printed. 2906825a95bSMasahiro Yamada# If it is set to "quiet_", only the short version will be printed. 2916825a95bSMasahiro Yamada# If it is set to "silent_", nothing will be printed at all, since 2926825a95bSMasahiro Yamada# the variable $(silent_cmd_cc_o_c) doesn't exist. 2936825a95bSMasahiro Yamada# 2946825a95bSMasahiro Yamada# A simple variant is to prefix commands with $(Q) - that's useful 2956825a95bSMasahiro Yamada# for commands that shall be hidden in non-verbose mode. 2966825a95bSMasahiro Yamada# 2976825a95bSMasahiro Yamada# $(Q)ln $@ :< 2986825a95bSMasahiro Yamada# 2996825a95bSMasahiro Yamada# If KBUILD_VERBOSE equals 0 then the above command will be hidden. 3006825a95bSMasahiro Yamada# If KBUILD_VERBOSE equals 1 then the above command is displayed. 3016825a95bSMasahiro Yamada 3026825a95bSMasahiro Yamadaifeq ($(KBUILD_VERBOSE),1) 3036825a95bSMasahiro Yamada quiet = 3046825a95bSMasahiro Yamada Q = 3056825a95bSMasahiro Yamadaelse 3066825a95bSMasahiro Yamada quiet=quiet_ 3076825a95bSMasahiro Yamada Q = @ 3086825a95bSMasahiro Yamadaendif 3096825a95bSMasahiro Yamada 3106825a95bSMasahiro Yamada# If the user is running make -s (silent mode), suppress echoing of 3116825a95bSMasahiro Yamada# commands 3126825a95bSMasahiro Yamada 3136825a95bSMasahiro Yamadaifneq ($(filter s% -s%,$(MAKEFLAGS)),) 3146825a95bSMasahiro Yamada quiet=silent_ 3156825a95bSMasahiro Yamadaendif 3166825a95bSMasahiro Yamada 3176825a95bSMasahiro Yamadaexport quiet Q KBUILD_VERBOSE 3186825a95bSMasahiro Yamada 3196825a95bSMasahiro Yamada 3209e414032SMasahiro Yamada# Look for make include files relative to root of kernel src 3219e414032SMasahiro YamadaMAKEFLAGS += --include-dir=$(srctree) 3229e414032SMasahiro Yamada 323bf4b3de1SMasahiro Yamada# We need some generic definitions (do not try to remake the file). 324bf4b3de1SMasahiro Yamada$(srctree)/scripts/Kbuild.include: ; 325bf4b3de1SMasahiro Yamadainclude $(srctree)/scripts/Kbuild.include 326bf4b3de1SMasahiro Yamada 327f6322eb7SMasahiro Yamada# Make variables (CC, etc...) 328f6322eb7SMasahiro Yamada 329f6322eb7SMasahiro YamadaAS = $(CROSS_COMPILE)as 330f6322eb7SMasahiro Yamada# Always use GNU ld 331f6322eb7SMasahiro Yamadaifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),) 332f6322eb7SMasahiro YamadaLD = $(CROSS_COMPILE)ld.bfd 333f6322eb7SMasahiro Yamadaelse 334f6322eb7SMasahiro YamadaLD = $(CROSS_COMPILE)ld 335f6322eb7SMasahiro Yamadaendif 336f6322eb7SMasahiro YamadaCC = $(CROSS_COMPILE)gcc 337f6322eb7SMasahiro YamadaCPP = $(CC) -E 338f6322eb7SMasahiro YamadaAR = $(CROSS_COMPILE)ar 339f6322eb7SMasahiro YamadaNM = $(CROSS_COMPILE)nm 340f6322eb7SMasahiro YamadaLDR = $(CROSS_COMPILE)ldr 341f6322eb7SMasahiro YamadaSTRIP = $(CROSS_COMPILE)strip 342f6322eb7SMasahiro YamadaOBJCOPY = $(CROSS_COMPILE)objcopy 343f6322eb7SMasahiro YamadaOBJDUMP = $(CROSS_COMPILE)objdump 344f6322eb7SMasahiro YamadaAWK = awk 345f6322eb7SMasahiro YamadaRANLIB = $(CROSS_COMPILE)RANLIB 346f6322eb7SMasahiro YamadaDTC = dtc 347f6322eb7SMasahiro YamadaCHECK = sparse 348f6322eb7SMasahiro Yamada 349f6322eb7SMasahiro YamadaCHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ 350f6322eb7SMasahiro Yamada -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF) 351f6322eb7SMasahiro Yamada 3522b3c9d3dSMasahiro YamadaKBUILD_CPPFLAGS := -D__KERNEL__ 3532b3c9d3dSMasahiro Yamada 3542b3c9d3dSMasahiro YamadaKBUILD_CFLAGS := -Wall -Wstrict-prototypes \ 3552b3c9d3dSMasahiro Yamada -Wno-format-security \ 3562b3c9d3dSMasahiro Yamada -fno-builtin -ffreestanding 3572b3c9d3dSMasahiro YamadaKBUILD_AFLAGS := -D__ASSEMBLY__ 3582b3c9d3dSMasahiro Yamada 3595f30f3beSMasahiro YamadaU_BOOT_VERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION) 3605f30f3beSMasahiro Yamada 3615f30f3beSMasahiro Yamadaexport VERSION PATCHLEVEL SUBLEVEL U_BOOT_VERSION 362*433b2f1eSMasahiro Yamadaexport ARCH CPU BOARD VENDOR SOC 363f6322eb7SMasahiro Yamadaexport CONFIG_SHELL HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE AS LD CC 364f6322eb7SMasahiro Yamadaexport CPP AR NM LDR STRIP OBJCOPY OBJDUMP 365f6322eb7SMasahiro Yamadaexport MAKE AWK 366f6322eb7SMasahiro Yamadaexport DTC CHECK CHECKFLAGS 367f6322eb7SMasahiro Yamada 368fea1ca8eSMasahiro Yamadaexport KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE 3692b3c9d3dSMasahiro Yamadaexport KBUILD_CFLAGS KBUILD_AFLAGS 3702b3c9d3dSMasahiro Yamada 3716825a95bSMasahiro Yamada# When compiling out-of-tree modules, put MODVERDIR in the module 3726825a95bSMasahiro Yamada# tree rather than in the kernel tree. The kernel tree might 3736825a95bSMasahiro Yamada# even be read-only. 3746825a95bSMasahiro Yamadaexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions 3756825a95bSMasahiro Yamada 3766825a95bSMasahiro Yamada# Files to ignore in find ... statements 3776825a95bSMasahiro Yamada 3786825a95bSMasahiro YamadaRCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \ 3796825a95bSMasahiro Yamada -o -name .pc -o -name .hg -o -name .git \) -prune -o 3806825a95bSMasahiro Yamadaexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \ 3816825a95bSMasahiro Yamada --exclude CVS --exclude .pc --exclude .hg --exclude .git 3826825a95bSMasahiro Yamada 3836825a95bSMasahiro Yamada# =========================================================================== 3846825a95bSMasahiro Yamada# Rules shared between *config targets and build targets 3856825a95bSMasahiro Yamada 3866825a95bSMasahiro Yamada# Basic helpers built in scripts/ 3876825a95bSMasahiro YamadaPHONY += scripts_basic 3886825a95bSMasahiro Yamadascripts_basic: 3896825a95bSMasahiro Yamada $(Q)$(MAKE) $(build)=scripts/basic 3906825a95bSMasahiro Yamada $(Q)rm -f .tmp_quiet_recordmcount 3916825a95bSMasahiro Yamada 3926825a95bSMasahiro Yamada# To avoid any implicit rule to kick in, define an empty command. 3936825a95bSMasahiro Yamadascripts/basic/%: scripts_basic ; 3946825a95bSMasahiro Yamada 395*433b2f1eSMasahiro Yamada# To make sure we do not include .config for any of the *config targets 396*433b2f1eSMasahiro Yamada# catch them early, and hand them over to scripts/kconfig/Makefile 397*433b2f1eSMasahiro Yamada# It is allowed to specify more targets when calling make, including 398*433b2f1eSMasahiro Yamada# mixing *config targets and build targets. 399*433b2f1eSMasahiro Yamada# For example 'make oldconfig all'. 400*433b2f1eSMasahiro Yamada# Detect when mixed targets is specified, and make a second invocation 401*433b2f1eSMasahiro Yamada# of make so .config is not included in this case either (for *config). 4026825a95bSMasahiro Yamada 403*433b2f1eSMasahiro Yamadano-dot-config-targets := clean clobber mrproper distclean \ 404*433b2f1eSMasahiro Yamada cscope TAGS %tags help %docs check% coccicheck \ 405*433b2f1eSMasahiro Yamada backup 4062b3c9d3dSMasahiro Yamada 407*433b2f1eSMasahiro Yamadaconfig-targets := 0 408*433b2f1eSMasahiro Yamadamixed-targets := 0 409*433b2f1eSMasahiro Yamadadot-config := 1 4102b3c9d3dSMasahiro Yamada 411*433b2f1eSMasahiro Yamadaifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),) 412*433b2f1eSMasahiro Yamada ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),) 413*433b2f1eSMasahiro Yamada dot-config := 0 4142b3c9d3dSMasahiro Yamada endif 4152b3c9d3dSMasahiro Yamadaendif 4162b3c9d3dSMasahiro Yamada 417*433b2f1eSMasahiro Yamadaifeq ($(KBUILD_EXTMOD),) 418*433b2f1eSMasahiro Yamada ifneq ($(filter config %config,$(MAKECMDGOALS)),) 419*433b2f1eSMasahiro Yamada config-targets := 1 420*433b2f1eSMasahiro Yamada ifneq ($(filter-out config %config,$(MAKECMDGOALS)),) 421*433b2f1eSMasahiro Yamada mixed-targets := 1 422*433b2f1eSMasahiro Yamada endif 423*433b2f1eSMasahiro Yamada endif 424*433b2f1eSMasahiro Yamadaendif 425*433b2f1eSMasahiro Yamada 426*433b2f1eSMasahiro Yamadaifeq ($(mixed-targets),1) 427*433b2f1eSMasahiro Yamada# =========================================================================== 428*433b2f1eSMasahiro Yamada# We're called with mixed targets (*config and build targets). 429*433b2f1eSMasahiro Yamada# Handle them one by one. 430*433b2f1eSMasahiro Yamada 431*433b2f1eSMasahiro Yamada%:: FORCE 432*433b2f1eSMasahiro Yamada $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@ 433*433b2f1eSMasahiro Yamada 434*433b2f1eSMasahiro Yamadaelse 435*433b2f1eSMasahiro Yamadaifeq ($(config-targets),1) 436*433b2f1eSMasahiro Yamada# =========================================================================== 437*433b2f1eSMasahiro Yamada# *config targets only - make sure prerequisites are updated, and descend 438*433b2f1eSMasahiro Yamada# in scripts/kconfig to make the *config target 439*433b2f1eSMasahiro Yamada 440*433b2f1eSMasahiro Yamada# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed. 441*433b2f1eSMasahiro Yamada# KBUILD_DEFCONFIG may point out an alternative default configuration 442*433b2f1eSMasahiro Yamada# used for 'make defconfig' 443*433b2f1eSMasahiro Yamada 444*433b2f1eSMasahiro Yamada%_config:: 445*433b2f1eSMasahiro Yamada @$(MKCONFIG) -A $(@:_config=) 446*433b2f1eSMasahiro Yamada 447*433b2f1eSMasahiro Yamadaelse 448*433b2f1eSMasahiro Yamada# =========================================================================== 449*433b2f1eSMasahiro Yamada# Build targets only - this includes vmlinux, arch specific targets, clean 450*433b2f1eSMasahiro Yamada# targets and others. In general all targets except *config targets. 451*433b2f1eSMasahiro Yamada 452*433b2f1eSMasahiro Yamada# load ARCH, BOARD, and CPU configuration 453*433b2f1eSMasahiro Yamada-include include/config.mk 454*433b2f1eSMasahiro Yamada 455*433b2f1eSMasahiro Yamadaifeq ($(dot-config),1) 456*433b2f1eSMasahiro Yamada# Read in config 457*433b2f1eSMasahiro Yamada-include include/autoconf.mk 458*433b2f1eSMasahiro Yamada-include include/autoconf.mk.dep 459*433b2f1eSMasahiro Yamada 46092b197f0SWolfgang Denk# load other configuration 461*433b2f1eSMasahiro Yamadainclude $(srctree)/config.mk 46292b197f0SWolfgang Denk 463*433b2f1eSMasahiro Yamadaifeq ($(wildcard include/config.mk),) 464*433b2f1eSMasahiro Yamada$(error "System not configured - see README") 465ced0715dSMasahiro Yamadaendif 466ced0715dSMasahiro Yamada 467ced0715dSMasahiro Yamadaifeq ($(__HAVE_ARCH_GENERIC_BOARD),) 468ced0715dSMasahiro Yamadaifneq ($(CONFIG_SYS_GENERIC_BOARD),) 469*433b2f1eSMasahiro Yamada$(error Your architecture does not support generic board. \ 470ced0715dSMasahiro YamadaPlease undefined CONFIG_SYS_GENERIC_BOARD in your board config file) 471ced0715dSMasahiro Yamadaendif 472fada9e20SSimon Glassendif 4736825a95bSMasahiro Yamada 474d51dfff7SIlya Yanok# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use 475d51dfff7SIlya Yanok# that (or fail if absent). Otherwise, search for a linker script in a 476d51dfff7SIlya Yanok# standard location. 477d51dfff7SIlya Yanok 478ee60197eSSimon GlassLDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT)) 479ee60197eSSimon Glass 480d51dfff7SIlya Yanokifndef LDSCRIPT 481d51dfff7SIlya Yanok #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug 482d51dfff7SIlya Yanok ifdef CONFIG_SYS_LDSCRIPT 483d51dfff7SIlya Yanok # need to strip off double quotes 484a8c07541SMasahiro Yamada LDSCRIPT := $(CONFIG_SYS_LDSCRIPT:"%"=%) 485d51dfff7SIlya Yanok endif 486d51dfff7SIlya Yanokendif 487d51dfff7SIlya Yanok 488ee60197eSSimon Glass# If there is no specified link script, we look in a number of places for it 489d51dfff7SIlya Yanokifndef LDSCRIPT 490d51dfff7SIlya Yanok ifeq ($(CONFIG_NAND_U_BOOT),y) 491d51dfff7SIlya Yanok LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds 492d51dfff7SIlya Yanok ifeq ($(wildcard $(LDSCRIPT)),) 493d51dfff7SIlya Yanok LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds 494d51dfff7SIlya Yanok endif 495d51dfff7SIlya Yanok endif 496d51dfff7SIlya Yanok ifeq ($(wildcard $(LDSCRIPT)),) 497d51dfff7SIlya Yanok LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds 498d51dfff7SIlya Yanok endif 499d51dfff7SIlya Yanok ifeq ($(wildcard $(LDSCRIPT)),) 500d51dfff7SIlya Yanok LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds 501d51dfff7SIlya Yanok endif 502d51dfff7SIlya Yanok ifeq ($(wildcard $(LDSCRIPT)),) 503ee60197eSSimon Glass LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds 504ee60197eSSimon Glass # We don't expect a Makefile here 505ee60197eSSimon Glass LDSCRIPT_MAKEFILE_DIR = 506ee60197eSSimon Glass endif 507ee60197eSSimon Glass ifeq ($(wildcard $(LDSCRIPT)),) 508d51dfff7SIlya Yanok$(error could not find linker script) 509d51dfff7SIlya Yanok endif 510d51dfff7SIlya Yanokendif 511d51dfff7SIlya Yanok 512*433b2f1eSMasahiro Yamadaelse 513*433b2f1eSMasahiro Yamada 514*433b2f1eSMasahiro Yamada 515*433b2f1eSMasahiro Yamadaendif # $(dot-config) 516*433b2f1eSMasahiro Yamada 517*433b2f1eSMasahiro YamadaKBUILD_CFLAGS += -Os #-fomit-frame-pointer 518*433b2f1eSMasahiro Yamada 519*433b2f1eSMasahiro Yamadaifdef BUILD_TAG 520*433b2f1eSMasahiro YamadaKBUILD_CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"' 521*433b2f1eSMasahiro Yamadaendif 522*433b2f1eSMasahiro Yamada 523*433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-fno-stack-protector) 524*433b2f1eSMasahiro Yamada 525*433b2f1eSMasahiro YamadaKBUILD_CFLAGS += -g 526*433b2f1eSMasahiro Yamada# $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format> 527*433b2f1eSMasahiro Yamada# option to the assembler. 528*433b2f1eSMasahiro YamadaKBUILD_AFLAGS += -g 529*433b2f1eSMasahiro Yamada 530*433b2f1eSMasahiro Yamada# Report stack usage if supported 531*433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-fstack-usage) 532*433b2f1eSMasahiro Yamada 533*433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral) 534*433b2f1eSMasahiro Yamada 535*433b2f1eSMasahiro Yamada# turn jbsr into jsr for m68k 536*433b2f1eSMasahiro Yamadaifeq ($(ARCH),m68k) 537*433b2f1eSMasahiro Yamadaifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4) 538*433b2f1eSMasahiro YamadaKBUILD_AFLAGS += -Wa,-gstabs,-S 539*433b2f1eSMasahiro Yamadaendif 540*433b2f1eSMasahiro Yamadaendif 541*433b2f1eSMasahiro Yamada 542*433b2f1eSMasahiro Yamadaifneq ($(CONFIG_SYS_TEXT_BASE),) 543*433b2f1eSMasahiro YamadaKBUILD_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) 544*433b2f1eSMasahiro Yamadaendif 545*433b2f1eSMasahiro Yamada 546*433b2f1eSMasahiro Yamadaexport CONFIG_SYS_TEXT_BASE 547*433b2f1eSMasahiro Yamada 548*433b2f1eSMasahiro Yamada# Use UBOOTINCLUDE when you must reference the include/ directory. 549*433b2f1eSMasahiro Yamada# Needed to be compatible with the O= option 550*433b2f1eSMasahiro YamadaUBOOTINCLUDE := 551*433b2f1eSMasahiro Yamadaifneq ($(OBJTREE),$(SRCTREE)) 552*433b2f1eSMasahiro YamadaUBOOTINCLUDE += -I$(OBJTREE)/include 553*433b2f1eSMasahiro Yamadaendif 554*433b2f1eSMasahiro YamadaUBOOTINCLUDE += -I$(srctree)/include \ 555*433b2f1eSMasahiro Yamada -I$(srctree)/arch/$(ARCH)/include 556*433b2f1eSMasahiro Yamada 557*433b2f1eSMasahiro YamadaNOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) 558*433b2f1eSMasahiro YamadaCHECKFLAGS += $(NOSTDINC_FLAGS) 559*433b2f1eSMasahiro Yamada 560*433b2f1eSMasahiro Yamada# FIX ME 561*433b2f1eSMasahiro Yamadacpp_flags := $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(UBOOTINCLUDE) $(NOSTDINC_FLAGS) 562*433b2f1eSMasahiro Yamadac_flags := $(KBUILD_CFLAGS) $(cpp_flags) 563*433b2f1eSMasahiro Yamada 564*433b2f1eSMasahiro Yamada# The "tools" are needed early, so put this first 565*433b2f1eSMasahiro Yamada# Don't include stuff already done in $(LIBS) 566*433b2f1eSMasahiro Yamada# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC 567*433b2f1eSMasahiro Yamada# is "yes"), so compile examples after U-Boot is compiled. 568*433b2f1eSMasahiro YamadaSUBDIR_TOOLS = tools 569*433b2f1eSMasahiro YamadaSUBDIRS = $(SUBDIR_TOOLS) 570*433b2f1eSMasahiro Yamada 571*433b2f1eSMasahiro Yamada.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE) 572*433b2f1eSMasahiro Yamada 573*433b2f1eSMasahiro YamadaSUBDIR_EXAMPLES-y := examples/standalone 574*433b2f1eSMasahiro YamadaSUBDIR_EXAMPLES-$(CONFIG_API) += examples/api 575*433b2f1eSMasahiro Yamadaifndef CONFIG_SANDBOX 576*433b2f1eSMasahiro YamadaSUBDIRS += $(SUBDIR_EXAMPLES-y) 577*433b2f1eSMasahiro Yamadaendif 578*433b2f1eSMasahiro Yamada 5797ebf7443Swdenk######################################################################### 5807ebf7443Swdenk# U-Boot objects....order is important (i.e. start must be first) 5817ebf7443Swdenk 582e8a8b824SMasahiro Yamadahead-y := $(CPUDIR)/start.o 583e8a8b824SMasahiro Yamadahead-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o 584e8a8b824SMasahiro Yamadahead-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o 5857ebf7443Swdenk 5869e414032SMasahiro YamadaOBJS := $(head-y) 587f9328639SMarian Balakowicz 5889e414032SMasahiro YamadaHAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n) 5898b5a0264SDaniel Schwierzeck 590e2906a59SMasahiro YamadaLIBS-y += lib/ 591e2906a59SMasahiro YamadaLIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ 592e2906a59SMasahiro YamadaLIBS-y += $(CPUDIR)/ 5931d9f4105Swdenkifdef SOC 594e2906a59SMasahiro YamadaLIBS-y += $(CPUDIR)/$(SOC)/ 5951d9f4105Swdenkendif 596e2906a59SMasahiro YamadaLIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/ 597e2906a59SMasahiro YamadaLIBS-$(CONFIG_OF_EMBED) += dts/ 598e2906a59SMasahiro YamadaLIBS-y += arch/$(ARCH)/lib/ 59957c3e5fcSMasahiro YamadaLIBS-y += fs/ 600e2906a59SMasahiro YamadaLIBS-y += net/ 601e2906a59SMasahiro YamadaLIBS-y += disk/ 602e2906a59SMasahiro YamadaLIBS-y += drivers/ 603e2906a59SMasahiro YamadaLIBS-y += drivers/dma/ 604e2906a59SMasahiro YamadaLIBS-y += drivers/gpio/ 605e2906a59SMasahiro YamadaLIBS-y += drivers/i2c/ 606e2906a59SMasahiro YamadaLIBS-y += drivers/input/ 607e2906a59SMasahiro YamadaLIBS-y += drivers/mmc/ 608e2906a59SMasahiro YamadaLIBS-y += drivers/mtd/ 609392ba525SMasahiro YamadaLIBS-$(CONFIG_CMD_NAND) += drivers/mtd/nand/ 610e2906a59SMasahiro YamadaLIBS-y += drivers/mtd/onenand/ 611392ba525SMasahiro YamadaLIBS-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/ 612e2906a59SMasahiro YamadaLIBS-y += drivers/mtd/spi/ 613e2906a59SMasahiro YamadaLIBS-y += drivers/net/ 614e2906a59SMasahiro YamadaLIBS-y += drivers/net/phy/ 615e2906a59SMasahiro YamadaLIBS-y += drivers/pci/ 616e2906a59SMasahiro YamadaLIBS-y += drivers/power/ \ 617e2906a59SMasahiro Yamada drivers/power/fuel_gauge/ \ 618e2906a59SMasahiro Yamada drivers/power/mfd/ \ 619e2906a59SMasahiro Yamada drivers/power/pmic/ \ 620e2906a59SMasahiro Yamada drivers/power/battery/ 621e2906a59SMasahiro YamadaLIBS-y += drivers/spi/ 622e2906a59SMasahiro YamadaLIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/ 6235614e71bSYork SunLIBS-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/ 624e2906a59SMasahiro YamadaLIBS-y += drivers/serial/ 625e2906a59SMasahiro YamadaLIBS-y += drivers/usb/eth/ 626e2906a59SMasahiro YamadaLIBS-y += drivers/usb/gadget/ 627e2906a59SMasahiro YamadaLIBS-y += drivers/usb/host/ 628e2906a59SMasahiro YamadaLIBS-y += drivers/usb/musb/ 629e2906a59SMasahiro YamadaLIBS-y += drivers/usb/musb-new/ 630e2906a59SMasahiro YamadaLIBS-y += drivers/usb/phy/ 631e2906a59SMasahiro YamadaLIBS-y += drivers/usb/ulpi/ 632e2906a59SMasahiro YamadaLIBS-y += common/ 633e2906a59SMasahiro YamadaLIBS-y += lib/libfdt/ 6348a7e7d56SMasahiro YamadaLIBS-$(CONFIG_API) += api/ 635755e08f0SMasahiro YamadaLIBS-$(CONFIG_HAS_POST) += post/ 636e2906a59SMasahiro YamadaLIBS-y += test/ 637f9328639SMarian Balakowicz 63824e8bee5SAlison Wangifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610)) 639e2906a59SMasahiro YamadaLIBS-y += arch/$(ARCH)/imx-common/ 64018936ee2SJason Liuendif 64118936ee2SJason Liu 642e2906a59SMasahiro YamadaLIBS-$(CONFIG_ARM) += arch/arm/cpu/ 643e2906a59SMasahiro YamadaLIBS-$(CONFIG_PPC) += arch/powerpc/cpu/ 644852bd07cSMinkyu Kang 645e2906a59SMasahiro YamadaLIBS-y += board/$(BOARDDIR)/ 64608e39a84SMasahiro Yamada 647e2906a59SMasahiro YamadaLIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y)) 6489e414032SMasahiro YamadaLIBS := $(sort $(LIBS-y)) 649249b53a6SLoïc Minier.PHONY : $(LIBS) 650a8c7c708Swdenk 6514f7cb08eSwdenk# Add GCC lib 65252b1bf2cSWolfgang Denkifdef USE_PRIVATE_LIBGCC 65352b1bf2cSWolfgang Denkifeq ("$(USE_PRIVATE_LIBGCC)", "yes") 6546825a95bSMasahiro YamadaPLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/lib.a 65552b1bf2cSWolfgang Denkelse 65652b1bf2cSWolfgang DenkPLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc 65752b1bf2cSWolfgang Denkendif 65852b1bf2cSWolfgang Denkelse 6596825a95bSMasahiro YamadaPLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(c_flags) -print-libgcc-file-name`) -lgcc 66052b1bf2cSWolfgang Denkendif 66152b1bf2cSWolfgang DenkPLATFORM_LIBS += $(PLATFORM_LIBGCC) 66252b1bf2cSWolfgang Denkexport PLATFORM_LIBS 6633d3befa7Swdenk 6646ac9f479SMike Frysinger# Special flags for CPP when processing the linker script. 6656ac9f479SMike Frysinger# Pass the version down so we can handle backwards compatibility 6666ac9f479SMike Frysinger# on the fly. 6676ac9f479SMike FrysingerLDPPFLAGS += \ 6686ac9f479SMike Frysinger -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ 6697e6403a6SSimon Glass -DCPUDIR=$(CPUDIR) \ 6706ac9f479SMike Frysinger $(shell $(LD) --version | \ 6716ac9f479SMike Frysinger sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') 6726ac9f479SMike Frysinger 6737ebf7443Swdenk######################################################################### 674bdccc4feSwdenk######################################################################### 6757ebf7443Swdenk 676f3a14d37SMike Frysingerifneq ($(CONFIG_BOARD_SIZE_LIMIT),) 677f3a14d37SMike FrysingerBOARD_SIZE_CHECK = \ 678f3a14d37SMike Frysinger @actual=`wc -c $@ | awk '{print $$1}'`; \ 679d060e6f4SJoe Hershberger limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \ 680f3a14d37SMike Frysinger if test $$actual -gt $$limit; then \ 681d060e6f4SJoe Hershberger echo "$@ exceeds file size limit:" >&2 ; \ 682d060e6f4SJoe Hershberger echo " limit: $$limit bytes" >&2 ; \ 683d060e6f4SJoe Hershberger echo " actual: $$actual bytes" >&2 ; \ 684d060e6f4SJoe Hershberger echo " excess: $$((actual - limit)) bytes" >&2; \ 685f3a14d37SMike Frysinger exit 1; \ 686f3a14d37SMike Frysinger fi 687f3a14d37SMike Frysingerelse 688f3a14d37SMike FrysingerBOARD_SIZE_CHECK = 689f3a14d37SMike Frysingerendif 690f3a14d37SMike Frysinger 6918137af19SScott Wood# Statically apply RELA-style relocations (currently arm64 only) 6928137af19SScott Woodifneq ($(CONFIG_STATIC_RELA),) 6938137af19SScott Wood# $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base 6948137af19SScott WoodDO_STATIC_RELA = \ 6958137af19SScott Wood start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \ 6968137af19SScott Wood end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \ 6979e414032SMasahiro Yamada tools/relocate-rela $(2) $(3) $$start $$end 6988137af19SScott Woodelse 6998137af19SScott WoodDO_STATIC_RELA = 7008137af19SScott Woodendif 7018137af19SScott Wood 7023e88337bSMike Frysinger# Always append ALL so that arch config.mk's can add custom ones 7039e414032SMasahiro YamadaALL-y += u-boot.srec u-boot.bin System.map 704e935a374SHaiying Wang 7059e414032SMasahiro YamadaALL-$(CONFIG_NAND_U_BOOT) += u-boot-nand.bin 7069e414032SMasahiro YamadaALL-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin 7079e414032SMasahiro YamadaALL-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl 7089e414032SMasahiro YamadaALL-$(CONFIG_SPL) += spl/u-boot-spl.bin 7099e414032SMasahiro YamadaALL-$(CONFIG_SPL_FRAMEWORK) += u-boot.img 7109e414032SMasahiro YamadaALL-$(CONFIG_TPL) += tpl/u-boot-tpl.bin 7119e414032SMasahiro YamadaALL-$(CONFIG_OF_SEPARATE) += u-boot.dtb u-boot-dtb.bin 712b343bbb5SVadim Bendeburyifneq ($(CONFIG_SPL_TARGET),) 7139e414032SMasahiro YamadaALL-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%) 714b343bbb5SVadim Bendeburyendif 7159e414032SMasahiro YamadaALL-$(CONFIG_REMAKE_ELF) += u-boot.elf 7167ebf7443Swdenk 71712b7b70cSAllen Martin# enable combined SPL/u-boot/dtb rules for tegra 7186d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),) 7197dcd3a21SVidya Sagarifeq ($(CONFIG_SPL),y) 72012b7b70cSAllen Martinifeq ($(CONFIG_OF_SEPARATE),y) 7219e414032SMasahiro YamadaALL-y += u-boot-dtb-tegra.bin 72212b7b70cSAllen Martinelse 7239e414032SMasahiro YamadaALL-y += u-boot-nodtb-tegra.bin 72412b7b70cSAllen Martinendif 72512b7b70cSAllen Martinendif 7267dcd3a21SVidya Sagarendif 72712b7b70cSAllen Martin 728*433b2f1eSMasahiro YamadaLDFLAGS_u-boot += -T u-boot.lds $(LDFLAGS_FINAL) 729*433b2f1eSMasahiro Yamadaifneq ($(CONFIG_SYS_TEXT_BASE),) 730*433b2f1eSMasahiro YamadaLDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE) 731*433b2f1eSMasahiro Yamadaendif 732*433b2f1eSMasahiro Yamada 7338a7e7d56SMasahiro Yamadaall: $(ALL-y) $(SUBDIR_EXAMPLES-y) 7347ebf7443Swdenk 7359e414032SMasahiro Yamadau-boot.dtb: checkdtc u-boot 7369e414032SMasahiro Yamada $(MAKE) $(build)=dts binary 7379e414032SMasahiro Yamada mv dts/dt.dtb $@ 7382c0f79e4SSimon Glass 7399e414032SMasahiro Yamadau-boot-dtb.bin: u-boot.bin u-boot.dtb 7402c0f79e4SSimon Glass cat $^ >$@ 7412c0f79e4SSimon Glass 7429e414032SMasahiro Yamadau-boot.hex: u-boot 7436310eb9dSwdenk $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ 7446310eb9dSwdenk 7459e414032SMasahiro Yamadau-boot.srec: u-boot 74647ed5dd0SAlbert ARIBAUD $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ 7477ebf7443Swdenk 7489e414032SMasahiro Yamadau-boot.bin: u-boot 7497ebf7443Swdenk $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ 7508137af19SScott Wood $(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE)) 751f3a14d37SMike Frysinger $(BOARD_SIZE_CHECK) 7527ebf7443Swdenk 7539e414032SMasahiro Yamadau-boot.ldr: u-boot 75476d82187SMike Frysinger $(CREATE_LDR_ENV) 75568e56324SMike Frysinger $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) 756f3a14d37SMike Frysinger $(BOARD_SIZE_CHECK) 75794a91e24SMike Frysinger 7589e414032SMasahiro Yamadau-boot.ldr.hex: u-boot.ldr 75994a91e24SMike Frysinger $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary 76094a91e24SMike Frysinger 7619e414032SMasahiro Yamadau-boot.ldr.srec: u-boot.ldr 76294a91e24SMike Frysinger $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary 76394a91e24SMike Frysinger 764b40bda6bSStefan Roese# 765b40bda6bSStefan Roese# U-Boot entry point, needed for booting of full-blown U-Boot 766b40bda6bSStefan Roese# from the SPL U-Boot version. 767b40bda6bSStefan Roese# 768b40bda6bSStefan Roeseifndef CONFIG_SYS_UBOOT_START 769b40bda6bSStefan RoeseCONFIG_SYS_UBOOT_START := 0 770b40bda6bSStefan Roeseendif 771b40bda6bSStefan Roese 7729e414032SMasahiro Yamadau-boot.img: u-boot.bin 7739e414032SMasahiro Yamada tools/mkimage -A $(ARCH) -T firmware -C none \ 774b40bda6bSStefan Roese -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \ 775b40bda6bSStefan Roese -e $(CONFIG_SYS_UBOOT_START) \ 776881a87ecSWolfgang Denk -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ 777bdccc4feSwdenk sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ 778bdccc4feSwdenk -d $< $@ 779bdccc4feSwdenk 7809e414032SMasahiro Yamadau-boot.imx: u-boot.bin depend 7819e414032SMasahiro Yamada $(MAKE) $(build)=arch/arm/imx-common $(objtree)/u-boot.imx 7828edcde5eSStefano Babic 7839e414032SMasahiro Yamadau-boot.kwb: u-boot.bin 7849e414032SMasahiro Yamada tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \ 7852ea88b06SEric Cooper -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ 786aa0c7a86SPrafulla Wadaskar 7879e414032SMasahiro Yamadau-boot.pbl: u-boot.bin 7889e414032SMasahiro Yamada tools/mkimage -n $(CONFIG_SYS_FSL_PBL_RCW) \ 789690e4258SPrabhakar Kushwaha -R $(CONFIG_SYS_FSL_PBL_PBI) -T pblimage \ 7905d898a00SShaohui Xie -d $< $@ 7915d898a00SShaohui Xie 7929e414032SMasahiro Yamadau-boot.sha1: u-boot.bin 7939e414032SMasahiro Yamada tools/ubsha1 u-boot.bin 794566a494fSHeiko Schocher 7959e414032SMasahiro Yamadau-boot.dis: u-boot 7967ebf7443Swdenk $(OBJDUMP) -d $< > $@ 7977ebf7443Swdenk 7983aa29de0SYing Zhang# $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate, 7993aa29de0SYing Zhang# $(4) is pad-to 8003aa29de0SYing ZhangSPL_PAD_APPEND = \ 8013aa29de0SYing Zhang $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \ 8029e414032SMasahiro Yamada $(1) $(3); \ 8039e414032SMasahiro Yamada cat $(3) $(2) > $@; \ 8049e414032SMasahiro Yamada rm $(3) 80574752baaSScott Wood 8063aa29de0SYing Zhangifdef CONFIG_TPL 8079e414032SMasahiro YamadaSPL_PAYLOAD := tpl/u-boot-with-tpl.bin 8083aa29de0SYing Zhangelse 8099e414032SMasahiro YamadaSPL_PAYLOAD := u-boot.bin 8103aa29de0SYing Zhangendif 81174752baaSScott Wood 8129e414032SMasahiro Yamadau-boot-with-spl.bin: spl/u-boot-spl.bin $(SPL_PAYLOAD) 8133aa29de0SYing Zhang $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO)) 8143aa29de0SYing Zhang 8159e414032SMasahiro Yamadatpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin 8169e414032SMasahiro Yamada $(call SPL_PAD_APPEND,$<,u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO)) 8177816f2cfSHeiko Schocher 8189e414032SMasahiro Yamadau-boot-with-spl.imx: spl/u-boot-spl.bin u-boot.bin 8199e414032SMasahiro Yamada $(MAKE) $(build)=arch/arm/imx-common \ 820ba597609SBenoît Thébaudeau $(OBJTREE)/u-boot-with-spl.imx 821ba597609SBenoît Thébaudeau 8229e414032SMasahiro Yamadau-boot-with-nand-spl.imx: spl/u-boot-spl.bin u-boot.bin 8239e414032SMasahiro Yamada $(MAKE) $(build)=arch/arm/imx-common \ 8247d5a5c79SBenoît Thébaudeau $(OBJTREE)/u-boot-with-nand-spl.imx 8257d5a5c79SBenoît Thébaudeau 8269e414032SMasahiro Yamadau-boot.ubl: u-boot-with-spl.bin 8279e414032SMasahiro Yamada tools/mkimage -n $(UBL_CONFIG) -T ublimage \ 8289e414032SMasahiro Yamada -e $(CONFIG_SYS_TEXT_BASE) -d $< u-boot.ubl 829277f00f5SJosé Miguel Gonçalves 8309e414032SMasahiro Yamadau-boot.ais: spl/u-boot-spl.bin u-boot.img 8319e414032SMasahiro Yamada tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \ 8326d660e77SSughosh Ganu -T aisimage \ 833d36d8859SChristian Riesch -e $(CONFIG_SPL_TEXT_BASE) \ 8349e414032SMasahiro Yamada -d spl/u-boot-spl.bin \ 8359e414032SMasahiro Yamada spl/u-boot-spl.ais 836d36d8859SChristian Riesch $(OBJCOPY) ${OBJCFLAGS} -I binary \ 837d36d8859SChristian Riesch --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \ 8389e414032SMasahiro Yamada spl/u-boot-spl.ais spl/u-boot-spl-pad.ais 8399e414032SMasahiro Yamada cat spl/u-boot-spl-pad.ais u-boot.img > u-boot.ais 840d36d8859SChristian Riesch 841a5453555SOtavio Salvador 8429e414032SMasahiro Yamadau-boot.sb: u-boot.bin spl/u-boot-spl.bin 8439e414032SMasahiro Yamada $(MAKE) $(build)=$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb 84430b9b932SMarek Vasut 84594aebe6cSStefan Roese# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. 84694aebe6cSStefan Roese# Both images are created using mkimage (crc etc), so that the ROM 84794aebe6cSStefan Roese# bootloader can check its integrity. Padding needs to be done to the 84894aebe6cSStefan Roese# SPL image (with mkimage header) and not the binary. Otherwise the resulting image 84994aebe6cSStefan Roese# which is loaded/copied by the ROM bootloader to SRAM doesn't fit. 85094aebe6cSStefan Roese# The resulting image containing both U-Boot images is called u-boot.spr 8519e414032SMasahiro Yamadau-boot.spr: u-boot.img spl/u-boot-spl.bin 8529e414032SMasahiro Yamada tools/mkimage -A $(ARCH) -T firmware -C none \ 85394aebe6cSStefan Roese -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \ 8549e414032SMasahiro Yamada -d spl/u-boot-spl.bin $@ 85557270260SMasahiro Yamada $(OBJCOPY) -I binary -O binary \ 85657270260SMasahiro Yamada --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@ 8579e414032SMasahiro Yamada cat u-boot.img >> $@ 85894aebe6cSStefan Roese 8596d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),) 8609e414032SMasahiro Yamadau-boot-nodtb-tegra.bin: spl/u-boot-spl.bin u-boot.bin 8619e414032SMasahiro Yamada $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary spl/u-boot-spl spl/u-boot-spl-pad.bin 8629e414032SMasahiro Yamada cat spl/u-boot-spl-pad.bin u-boot.bin > $@ 8639e414032SMasahiro Yamada rm spl/u-boot-spl-pad.bin 8649972db5cSStephen Warren 8659972db5cSStephen Warrenifeq ($(CONFIG_OF_SEPARATE),y) 8669e414032SMasahiro Yamadau-boot-dtb-tegra.bin: u-boot-nodtb-tegra.bin u-boot.dtb 8679e414032SMasahiro Yamada cat u-boot-nodtb-tegra.bin u-boot.dtb > $@ 8689972db5cSStephen Warrenendif 869984df4ecSAllen Martinendif 870984df4ecSAllen Martin 8719e414032SMasahiro Yamadau-boot-img.bin: spl/u-boot-spl.bin u-boot.img 8729e414032SMasahiro Yamada cat spl/u-boot-spl.bin u-boot.img > $@ 873fb3d2b8aSStefan Roese 874ecddccd0SStefan Roese# PPC4xx needs the SPL at the end of the image, since the reset vector 875ecddccd0SStefan Roese# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target 876ecddccd0SStefan Roese# and need to introduce a new build target with the full blown U-Boot 877ecddccd0SStefan Roese# at the start padded up to the start of the SPL image. And then concat 878ecddccd0SStefan Roese# the SPL image to the end. 8799e414032SMasahiro Yamadau-boot-img-spl-at-end.bin: spl/u-boot-spl.bin u-boot.img 88057270260SMasahiro Yamada $(OBJCOPY) -I binary -O binary --pad-to=$(CONFIG_UBOOT_PAD_TO) \ 8819e414032SMasahiro Yamada --gap-fill=0xff u-boot.img $@ 8829e414032SMasahiro Yamada cat spl/u-boot-spl.bin >> $@ 883ecddccd0SStefan Roese 884f4dc714aSScott Wood# Create a new ELF from a raw binary file. This is useful for arm64 885f4dc714aSScott Wood# where static relocation needs to be performed on the raw binary, 886f4dc714aSScott Wood# but certain simulators only accept an ELF file (but don't do the 887f4dc714aSScott Wood# relocation). 888f4dc714aSScott Wood# FIXME refactor dts/Makefile to share target/arch detection 8899e414032SMasahiro Yamadau-boot.elf: u-boot.bin 890f4dc714aSScott Wood @$(OBJCOPY) -B aarch64 -I binary -O elf64-littleaarch64 \ 8919e414032SMasahiro Yamada $< u-boot-elf.o 8929e414032SMasahiro Yamada @$(LD) u-boot-elf.o -o $@ \ 893f4dc714aSScott Wood --defsym=_start=$(CONFIG_SYS_TEXT_BASE) \ 894f4dc714aSScott Wood -Ttext=$(CONFIG_SYS_TEXT_BASE) 895f4dc714aSScott Wood 89686eb49b3SSimon Glassifeq ($(CONFIG_SANDBOX),y) 89786eb49b3SSimon GlassGEN_UBOOT = \ 8989e414032SMasahiro Yamada $(CC) $(SYMS) -T u-boot.lds \ 8999e414032SMasahiro Yamada -Wl,--start-group $(LIBS) -Wl,--end-group \ 90086eb49b3SSimon Glass $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot 90186eb49b3SSimon Glasselse 902ecb1dc89SMike FrysingerGEN_UBOOT = \ 9039e414032SMasahiro Yamada $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \ 9049e414032SMasahiro Yamada $(OBJS) \ 9059e414032SMasahiro Yamada --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \ 906b2184c31Swdenk -Map u-boot.map -o u-boot 90786eb49b3SSimon Glassendif 90886eb49b3SSimon Glass 9099e414032SMasahiro Yamadau-boot: depend $(SUBDIR_TOOLS) $(OBJS) $(LIBS) u-boot.lds 910ecb1dc89SMike Frysinger $(GEN_UBOOT) 911ecb1dc89SMike Frysingerifeq ($(CONFIG_KALLSYMS),y) 9129e414032SMasahiro Yamada smap=`$(call SYSTEM_MAP,u-boot) | \ 9131aada9cdSWolfgang Denk awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ 9146825a95bSMasahiro Yamada $(CC) $(c_flags) -DSYSTEM_MAP="\"$${smap}\"" \ 9159e414032SMasahiro Yamada -c $(srctree)/common/system_map.c -o common/system_map.o 9169e414032SMasahiro Yamada $(GEN_UBOOT) common/system_map.o 917ecb1dc89SMike Frysingerendif 9187ebf7443Swdenk 9193bddafaaSMasahiro Yamada$(OBJS): 9203bddafaaSMasahiro Yamada @: 921f9328639SMarian Balakowicz 9226825a95bSMasahiro Yamada$(LIBS): depend $(SUBDIR_TOOLS) scripts_basic 9236825a95bSMasahiro Yamada $(Q)$(MAKE) $(build)=$(patsubst %/,%,$(dir $@)) 924a8c7c708Swdenk 925*433b2f1eSMasahiro Yamada$(SUBDIRS): scripts_basic $(TIMESTAMP_FILE) $(VERSION_FILE) 9266825a95bSMasahiro Yamada $(Q)$(MAKE) $(build)=$@ 927940db16dSMasahiro Yamada 9289e414032SMasahiro Yamada$(SUBDIR_EXAMPLES-y): u-boot 929349e83f0SChe-liang Chiou 930*433b2f1eSMasahiro Yamada# 931*433b2f1eSMasahiro Yamada# Auto-generate the autoconf.mk file (which is included by all makefiles) 932*433b2f1eSMasahiro Yamada# 933*433b2f1eSMasahiro Yamada# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. 934*433b2f1eSMasahiro Yamada# the dep file is only include in this top level makefile to determine when 935*433b2f1eSMasahiro Yamada# to regenerate the autoconf.mk file. 936*433b2f1eSMasahiro Yamada 937*433b2f1eSMasahiro Yamadaquiet_cmd_autoconf_dep = GEN $@ 938*433b2f1eSMasahiro Yamada cmd_autoconf_dep = $(CC) -x c -DDO_DEPS_ONLY -M $(c_flags) \ 939*433b2f1eSMasahiro Yamada -MQ include/autoconf.mk $(srctree)/include/common.h > $@ || rm $@ 940*433b2f1eSMasahiro Yamada 941*433b2f1eSMasahiro Yamadainclude/autoconf.mk.dep: include/config.h include/common.h 942*433b2f1eSMasahiro Yamada $(call cmd,autoconf_dep) 943*433b2f1eSMasahiro Yamada 944*433b2f1eSMasahiro Yamadaquiet_cmd_autoconf = GEN $@ 945*433b2f1eSMasahiro Yamada cmd_autoconf = \ 946*433b2f1eSMasahiro Yamada $(CPP) $(c_flags) -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \ 947*433b2f1eSMasahiro Yamada sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \ 948*433b2f1eSMasahiro Yamada rm $@.tmp 949*433b2f1eSMasahiro Yamada 950*433b2f1eSMasahiro Yamadainclude/autoconf.mk: include/config.h 951*433b2f1eSMasahiro Yamada $(call cmd,autoconf) 952*433b2f1eSMasahiro Yamada 9539e414032SMasahiro Yamadau-boot.lds: $(LDSCRIPT) depend 9546825a95bSMasahiro Yamada $(CPP) $(cpp_flags) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@ 9551aada9cdSWolfgang Denk 9566825a95bSMasahiro Yamadanand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend scripts_basic 9579e414032SMasahiro Yamada $(MAKE) $(build)=nand_spl/board/$(BOARDDIR) all 958887e2ec9SStefan Roese 9599e414032SMasahiro Yamadau-boot-nand.bin: nand_spl u-boot.bin 9609e414032SMasahiro Yamada cat nand_spl/u-boot-spl-16k.bin u-boot.bin > u-boot-nand.bin 961887e2ec9SStefan Roese 9626825a95bSMasahiro Yamadaspl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend scripts_basic 9639e414032SMasahiro Yamada $(MAKE) obj=spl -f $(srctree)/spl/Makefile all 9645df2ee27SDaniel Schwierzeck 9656825a95bSMasahiro Yamadatpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend scripts_basic 9669e414032SMasahiro Yamada $(MAKE) obj=tpl -f $(srctree)/spl/Makefile all CONFIG_TPL_BUILD=y 9673aa29de0SYing Zhang 9682a998793SDaniel Hobi# Explicitly make _depend in subdirs containing multiple targets to prevent 9692a998793SDaniel Hobi# parallel sub-makes creating .depend files simultaneously. 97016a354f9SWolfgang Denkdepend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \ 9719e414032SMasahiro Yamada include/generated/generic-asm-offsets.h \ 9729e414032SMasahiro Yamada include/generated/asm-offsets.h 9737ebf7443Swdenk 974e5e4e705SLi YangTAG_SUBDIRS = $(SUBDIRS) 9759e414032SMasahiro YamadaTAG_SUBDIRS += $(dir $(LIBS)) 976a340c325SJean-Christophe PLAGNIOL-VILLARDTAG_SUBDIRS += include 977a340c325SJean-Christophe PLAGNIOL-VILLARD 978857d9ea6SHorst KronstorferFIND := find 979857d9ea6SHorst KronstorferFINDFLAGS := -L 980857d9ea6SHorst Kronstorfer 98147f15711SMasahiro YamadaPHONY += checkstack 98247f15711SMasahiro Yamada 9831064d980STom Rinicheckstack: 98447f15711SMasahiro Yamada $(OBJDUMP) -d u-boot $$(find . -name u-boot-spl) | \ 98547f15711SMasahiro Yamada $(PERL) $(src)/scripts/checkstack.pl $(ARCH) 9861064d980STom Rini 987f9328639SMarian Balakowicztags ctags: 9889e414032SMasahiro Yamada ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ 989e5e4e705SLi Yang -name '*.[chS]' -print` 9907ebf7443Swdenk 9917ebf7443Swdenketags: 992857d9ea6SHorst Kronstorfer etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ 993e5e4e705SLi Yang -name '*.[chS]' -print` 994ffda586fSLi Yangcscope: 995857d9ea6SHorst Kronstorfer $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ 996857d9ea6SHorst Kronstorfer cscope.files 997ffda586fSLi Yang cscope -b -q -k 9987ebf7443Swdenk 999ecb1dc89SMike FrysingerSYSTEM_MAP = \ 1000ecb1dc89SMike Frysinger $(NM) $1 | \ 10017ebf7443Swdenk grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ 1002ecb1dc89SMike Frysinger LC_ALL=C sort 10039e414032SMasahiro YamadaSystem.map: u-boot 1004bc8bb6ecSMasahiro Yamada @$(call SYSTEM_MAP,$<) > $@ 10057ebf7443Swdenk 100606a119a0STom Rinicheckthumb: 100706a119a0STom Rini @if test $(call cc-version) -lt 0404; then \ 100806a119a0STom Rini echo -n '*** Your GCC does not produce working '; \ 100906a119a0STom Rini echo 'binaries in THUMB mode.'; \ 101006a119a0STom Rini echo '*** Your board is configured for THUMB mode.'; \ 101106a119a0STom Rini false; \ 101206a119a0STom Rini fi 10136ec63f41SScott Wood 10146ec63f41SScott Wood# GCC 3.x is reported to have problems generating the type of relocation 10156ec63f41SScott Wood# that U-Boot wants. 10166ec63f41SScott Wood# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html 10176ec63f41SScott Woodcheckgcc4: 10186ec63f41SScott Wood @if test $(call cc-version) -lt 0400; then \ 10196ec63f41SScott Wood echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \ 10206ec63f41SScott Wood false; \ 10216ec63f41SScott Wood fi 10226ec63f41SScott Wood 1023501ebdf2SStephen Warrencheckdtc: 1024501ebdf2SStephen Warren @if test $(call dtc-version) -lt 0104; then \ 1025501ebdf2SStephen Warren echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \ 1026501ebdf2SStephen Warren false; \ 1027501ebdf2SStephen Warren fi 1028501ebdf2SStephen Warren 102947f15711SMasahiro Yamadaquiet_cmd_offsets = GEN $@ 103047f15711SMasahiro Yamada cmd_offsets = $(srctree)/tools/scripts/make-asm-offsets $< $@ 103147f15711SMasahiro Yamada 103247f15711SMasahiro Yamadainclude/generated/generic-asm-offsets.h: lib/asm-offsets.s 103347f15711SMasahiro Yamada $(call cmd,offsets) 103447f15711SMasahiro Yamada 103547f15711SMasahiro Yamadaquiet_cmd_asm-offsets.s = CC $@ 103647f15711SMasahiro Yamada cmd_asm-offsets.s = mkdir -p lib; \ 103716a354f9SWolfgang Denk $(CC) -DDO_DEPS_ONLY \ 10386825a95bSMasahiro Yamada $(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ 103947f15711SMasahiro Yamada -o $@ $< -c -S 104047f15711SMasahiro Yamada 104147f15711SMasahiro Yamadalib/asm-offsets.s: $(srctree)/lib/asm-offsets.c include/config.h 104247f15711SMasahiro Yamada $(call cmd,asm-offsets.s) 104316a354f9SWolfgang Denk 10449e414032SMasahiro Yamadainclude/generated/asm-offsets.h: $(CPUDIR)/$(SOC)/asm-offsets.s 104547f15711SMasahiro Yamada $(call cmd,offsets) 1046a4814a69SStefano Babic 104747f15711SMasahiro Yamadaquiet_cmd_soc_asm-offsets.s = CC $@ 104847f15711SMasahiro Yamada cmd_soc_asm-offsets.s = mkdir -p $(CPUDIR)/$(SOC); \ 10499e414032SMasahiro Yamada if [ -f $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c ];then \ 1050a4814a69SStefano Babic $(CC) -DDO_DEPS_ONLY \ 10516825a95bSMasahiro Yamada $(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ 10529e414032SMasahiro Yamada -o $@ $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \ 1053a4814a69SStefano Babic else \ 1054a4814a69SStefano Babic touch $@; \ 1055a4814a69SStefano Babic fi 1056a4814a69SStefano Babic 105747f15711SMasahiro Yamada$(CPUDIR)/$(SOC)/asm-offsets.s: include/config.h 105847f15711SMasahiro Yamada $(call cmd,soc_asm-offsets.s) 105947f15711SMasahiro Yamada 10607ebf7443Swdenk######################################################################### 10617ebf7443Swdenk 106254799e45SScott Wood# ARM relocations should all be R_ARM_RELATIVE (32-bit) or 106354799e45SScott Wood# R_AARCH64_RELATIVE (64-bit). 10649e414032SMasahiro Yamadacheckarmreloc: u-boot 106554799e45SScott Wood @RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \ 106654799e45SScott Wood grep R_A | sort -u`"; \ 106754799e45SScott Wood if test "$$RELOC" != "R_ARM_RELATIVE" -a \ 106854799e45SScott Wood "$$RELOC" != "R_AARCH64_RELATIVE"; then \ 106954799e45SScott Wood echo "$< contains unexpected relocations: $$RELOC"; \ 107054799e45SScott Wood false; \ 107154799e45SScott Wood fi 1072c37980c3SAlbert ARIBAUD 107328abd48fSIlya Yanok$(VERSION_FILE): 107414ce91b1SMike Frysinger @mkdir -p $(dir $(VERSION_FILE)) 1075dd88ab32SMasahiro Yamada @( localvers='$(shell $(TOPDIR)/scripts/setlocalversion $(TOPDIR))' ; \ 107628abd48fSIlya Yanok printf '#define PLAIN_VERSION "%s%s"\n' \ 107728abd48fSIlya Yanok "$(U_BOOT_VERSION)" "$${localvers}" ; \ 107828abd48fSIlya Yanok printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \ 107928abd48fSIlya Yanok "$(U_BOOT_VERSION)" "$${localvers}" ; \ 108028abd48fSIlya Yanok ) > $@.tmp 108128abd48fSIlya Yanok @( printf '#define CC_VERSION_STRING "%s"\n' \ 108228abd48fSIlya Yanok '$(shell $(CC) --version | head -n 1)' )>> $@.tmp 108328abd48fSIlya Yanok @( printf '#define LD_VERSION_STRING "%s"\n' \ 108428abd48fSIlya Yanok '$(shell $(LD) -v | head -n 1)' )>> $@.tmp 108528abd48fSIlya Yanok @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ 108628abd48fSIlya Yanok 1087249b53a6SLoïc Minier$(TIMESTAMP_FILE): 1088249b53a6SLoïc Minier @mkdir -p $(dir $(TIMESTAMP_FILE)) 1089a76406fbSLoïc Minier @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp 1090a76406fbSLoïc Minier @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp 1091a76406fbSLoïc Minier @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ 1092249b53a6SLoïc Minier 10930358df42SMike Frysingereasylogo env gdb: 10946825a95bSMasahiro Yamada $(Q)$(MAKE) $(build)=tools/$@ MTD_VERSION=${MTD_VERSION} 1095940db16dSMasahiro Yamada 10960358df42SMike Frysingergdbtools: gdb 10970358df42SMike Frysinger 109830ff8918SMarek Vasutxmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc 10996825a95bSMasahiro Yamada $(Q)$(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) $(build)=doc/DocBook $@ 110030ff8918SMarek Vasut 1101249b53a6SLoïc Miniertools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE) 11026825a95bSMasahiro Yamada $(Q)$(MAKE) $(build)=tools HOST_TOOLS_ALL=y 11030358df42SMike Frysinger 11044e53a258SWolfgang Denk.PHONY : CHANGELOG 11054e53a258SWolfgang DenkCHANGELOG: 1106b985b5d6SBen Warren git log --no-merges U-Boot-1_1_5.. | \ 1107b985b5d6SBen Warren unexpand -a | sed -e 's/\s\s*$$//' > $@ 11084e53a258SWolfgang Denk 11090a823aa2SHarald Welteinclude/license.h: tools/bin2header COPYING 11100a823aa2SHarald Welte cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h 11117ebf7443Swdenk######################################################################### 11127ebf7443Swdenk 1113a6862bc1SWolfgang Denk 11143e38691eSwdenk######################################################################### 11157ebf7443Swdenk 11167ebf7443Swdenkclean: 11179e414032SMasahiro Yamada @rm -f examples/standalone/atmel_df_pow2 \ 11189e414032SMasahiro Yamada examples/standalone/hello_world \ 11199e414032SMasahiro Yamada examples/standalone/interrupt \ 11209e414032SMasahiro Yamada examples/standalone/mem_to_mem_idma2intr \ 11219e414032SMasahiro Yamada examples/standalone/sched \ 11229e414032SMasahiro Yamada $(addprefix examples/standalone/, smc91111_eeprom smc911x_eeprom) \ 11239e414032SMasahiro Yamada examples/standalone/test_burst \ 11249e414032SMasahiro Yamada examples/standalone/timer 11259e414032SMasahiro Yamada @rm -f $(addprefix examples/api/, demo demo.bin) 11269e414032SMasahiro Yamada @rm -f tools/bmp_logo tools/easylogo/easylogo \ 11279e414032SMasahiro Yamada tools/env/fw_printenv \ 11289e414032SMasahiro Yamada tools/envcrc \ 11299e414032SMasahiro Yamada $(addprefix tools/gdb/, gdbcont gdbsend) \ 11309e414032SMasahiro Yamada tools/gen_eth_addr tools/img2srec \ 11319e414032SMasahiro Yamada tools/dumpimage \ 11329e414032SMasahiro Yamada $(addprefix tools/, mkenvimage mkimage) \ 11339e414032SMasahiro Yamada tools/mpc86x_clk \ 11349e414032SMasahiro Yamada $(addprefix tools/, mk$(BOARD)spl mkexynosspl) \ 11359e414032SMasahiro Yamada tools/mxsboot \ 11369e414032SMasahiro Yamada tools/ncb tools/ubsha1 \ 11379e414032SMasahiro Yamada tools/kernel-doc/docproc \ 11389e414032SMasahiro Yamada tools/proftool 11399e414032SMasahiro Yamada @rm -f $(addprefix board/cray/L1/, bootscript.c bootscript.image) \ 11409e414032SMasahiro Yamada board/matrix_vision/*/bootscript.img \ 11419e414032SMasahiro Yamada spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl \ 11429e414032SMasahiro Yamada u-boot.lds \ 11439e414032SMasahiro Yamada $(addprefix arch/blackfin/cpu/, init.lds init.elf) 11449e414032SMasahiro Yamada @rm -f include/bmp_logo.h 11459e414032SMasahiro Yamada @rm -f include/bmp_logo_data.h 11469e414032SMasahiro Yamada @rm -f lib/asm-offsets.s 11479e414032SMasahiro Yamada @rm -f include/generated/asm-offsets.h 11489e414032SMasahiro Yamada @rm -f $(CPUDIR)/$(SOC)/asm-offsets.s 1149d4abc757SPeter Tyser @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) 11509e414032SMasahiro Yamada @$(MAKE) -f $(srctree)/doc/DocBook/Makefile cleandocs 1151ae6d1056SWolfgang Denk @find $(OBJTREE) -type f \ 11524a30f1e8STom Rini \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \ 11536825a95bSMasahiro Yamada -o -name '*.o' -o -name '*.a' -o -name '*.exe' -o -name '*.cmd' \ 115471a988aaSTroy Kisky -o -name '*.cfgtmp' \) -print \ 11557ebf7443Swdenk | xargs rm -f 11567ebf7443Swdenk 11577390643fSMasahiro Yamadaclobber: clean 1158734329f9SAndy Fleming @find $(OBJTREE) -type f \( -name '*.srec' \ 1159734329f9SAndy Fleming -o -name '*.bin' -o -name u-boot.img \) \ 1160734329f9SAndy Fleming -print0 | xargs -0 rm -f 11619e414032SMasahiro Yamada @rm -f $(OBJS) *.bak ctags etags TAGS \ 11629e414032SMasahiro Yamada cscope.* *.*~ 11639e414032SMasahiro Yamada @rm -f u-boot u-boot.map u-boot.hex $(ALL-y) 11649e414032SMasahiro Yamada @rm -f u-boot.kwb 11659e414032SMasahiro Yamada @rm -f u-boot.pbl 11669e414032SMasahiro Yamada @rm -f u-boot.imx 11679e414032SMasahiro Yamada @rm -f u-boot-with-spl.imx 11689e414032SMasahiro Yamada @rm -f u-boot-with-nand-spl.imx 11699e414032SMasahiro Yamada @rm -f u-boot.ubl 11709e414032SMasahiro Yamada @rm -f u-boot.ais 11719e414032SMasahiro Yamada @rm -f u-boot.dtb 11729e414032SMasahiro Yamada @rm -f u-boot.sb 11739e414032SMasahiro Yamada @rm -f u-boot.spr 11749e414032SMasahiro Yamada @rm -f $(addprefix nand_spl/, u-boot.lds u-boot.lst System.map) 11759e414032SMasahiro Yamada @rm -f $(addprefix nand_spl/, u-boot-nand_spl.lds u-boot-spl u-boot-spl.map) 11769e414032SMasahiro Yamada @rm -f $(addprefix spl/, u-boot-spl u-boot-spl.bin u-boot-spl.map) 11779e414032SMasahiro Yamada @rm -f spl/u-boot-spl.lds 11789e414032SMasahiro Yamada @rm -f $(addprefix tpl/, u-boot-tpl u-boot-tpl.bin u-boot-tpl.map) 11799e414032SMasahiro Yamada @rm -f tpl/u-boot-spl.lds 11809e414032SMasahiro Yamada @rm -f MLO MLO.byteswap 11819e414032SMasahiro Yamada @rm -f SPL 11829e414032SMasahiro Yamada @rm -f tools/xway-swap-bytes 11839e414032SMasahiro Yamada @rm -fr include/asm/proc include/asm/arch include/asm 11849e414032SMasahiro Yamada @rm -fr include/generated 11859e414032SMasahiro Yamada @[ ! -d nand_spl ] || find nand_spl -name "*" -type l -print | xargs rm -f 11869e414032SMasahiro Yamada @rm -f dts/*.tmp 11879e414032SMasahiro Yamada @rm -f $(addprefix spl/, u-boot-spl.ais, u-boot-spl-pad.ais) 11887ebf7443Swdenk 1189*433b2f1eSMasahiro Yamadamrproper: clobber 1190*433b2f1eSMasahiro Yamada @rm -f include/config.h include/config.mk \ 1191*433b2f1eSMasahiro Yamada board/*/config.tmp board/*/*/config.tmp \ 1192*433b2f1eSMasahiro Yamada include/autoconf.mk include/autoconf.mk.dep \ 1193*433b2f1eSMasahiro Yamada include/spl-autoconf.mk \ 1194*433b2f1eSMasahiro Yamada include/tpl-autoconf.mk 1195*433b2f1eSMasahiro Yamada 1196*433b2f1eSMasahiro Yamadadistclean: mrproper 1197afd077bdSMike Frysingerifneq ($(OBJTREE),$(SRCTREE)) 11989e414032SMasahiro Yamada rm -rf * 1199f9328639SMarian Balakowiczendif 12007ebf7443Swdenk 12017ebf7443Swdenkbackup: 12027ebf7443Swdenk F=`basename $(TOPDIR)` ; cd .. ; \ 1203d6b93714SIlya Yanok gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F 12047ebf7443Swdenk 12057ebf7443Swdenk######################################################################### 12069e414032SMasahiro Yamada 1207*433b2f1eSMasahiro Yamadaendif #ifeq ($(config-targets),1) 1208*433b2f1eSMasahiro Yamadaendif #ifeq ($(mixed-targets),1) 1209*433b2f1eSMasahiro Yamada 12109e414032SMasahiro Yamadaendif # skip-makefile 12119e414032SMasahiro Yamada 12129e414032SMasahiro YamadaPHONY += FORCE 12139e414032SMasahiro YamadaFORCE: 12149e414032SMasahiro Yamada 12159e414032SMasahiro Yamada# Declare the contents of the .PHONY variable as phony. We keep that 12169e414032SMasahiro Yamada# information in a variable so we can use it in if_changed and friends. 12179e414032SMasahiro Yamada.PHONY: $(PHONY) 1218