xref: /openbmc/u-boot/Makefile (revision 5add293b)
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
9e76b933eSTom RiniPATCHLEVEL = 10
10211e4754SWolfgang DenkSUBLEVEL =
11c43fd23cSTom 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)
537ebf7443Swdenkendif
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 Yamada# That's our default target when none is given on the command line
1139e414032SMasahiro YamadaPHONY := _all
1149e414032SMasahiro Yamada_all:
1159e414032SMasahiro Yamada
1169e414032SMasahiro Yamada# Cancel implicit rules on top Makefile
1179e414032SMasahiro Yamada$(CURDIR)/Makefile Makefile: ;
1189e414032SMasahiro Yamada
1199e414032SMasahiro Yamadaifneq ($(KBUILD_OUTPUT),)
1209e414032SMasahiro Yamada# Invoke a second make in the output directory, passing relevant variables
1219e414032SMasahiro Yamada# check that the output directory actually exists
1229e414032SMasahiro Yamadasaved-output := $(KBUILD_OUTPUT)
1235a449d75SMasahiro YamadaKBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \
1245a449d75SMasahiro Yamada								&& /bin/pwd)
1259e414032SMasahiro Yamada$(if $(KBUILD_OUTPUT),, \
126598e2d33SMasahiro Yamada     $(error failed to create output directory "$(saved-output)"))
1279e414032SMasahiro Yamada
1289e414032SMasahiro YamadaPHONY += $(MAKECMDGOALS) sub-make
1299e414032SMasahiro Yamada
1309e414032SMasahiro Yamada$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
1319e414032SMasahiro Yamada	@:
1329e414032SMasahiro Yamada
1339e414032SMasahiro Yamadasub-make: FORCE
1349e414032SMasahiro Yamada	$(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
1359e414032SMasahiro Yamada	KBUILD_SRC=$(CURDIR) \
1369e414032SMasahiro Yamada	KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
1379e414032SMasahiro Yamada	$(filter-out _all sub-make,$(MAKECMDGOALS))
1389e414032SMasahiro Yamada
1399e414032SMasahiro Yamada# Leave processing to above invocation of make
1409e414032SMasahiro Yamadaskip-makefile := 1
1419e414032SMasahiro Yamadaendif # ifneq ($(KBUILD_OUTPUT),)
1429e414032SMasahiro Yamadaendif # ifeq ($(KBUILD_SRC),)
1439e414032SMasahiro Yamada
1449e414032SMasahiro Yamada# We process the rest of the Makefile if this is the final invocation of make
1459e414032SMasahiro Yamadaifeq ($(skip-makefile),)
1469e414032SMasahiro Yamada
1476825a95bSMasahiro Yamada# If building an external module we do not care about the all: rule
1486825a95bSMasahiro Yamada# but instead _all depend on modules
1499e414032SMasahiro YamadaPHONY += all
1506825a95bSMasahiro Yamadaifeq ($(KBUILD_EXTMOD),)
1519e414032SMasahiro Yamada_all: all
1526825a95bSMasahiro Yamadaelse
1536825a95bSMasahiro Yamada_all: modules
1546825a95bSMasahiro Yamadaendif
1559e414032SMasahiro Yamada
1569e414032SMasahiro Yamadasrctree		:= $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
1579e414032SMasahiro Yamadaobjtree		:= $(CURDIR)
1589e414032SMasahiro Yamadasrc		:= $(srctree)
1599e414032SMasahiro Yamadaobj		:= $(objtree)
1609e414032SMasahiro Yamada
1619e414032SMasahiro YamadaVPATH		:= $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
1629e414032SMasahiro Yamada
1639e414032SMasahiro Yamadaexport srctree objtree VPATH
1649e414032SMasahiro Yamada
1655013c09fSWolfgang Denk# Make sure CDPATH settings don't interfere
1665013c09fSWolfgang Denkunexport CDPATH
1675013c09fSWolfgang Denk
168f9328639SMarian Balakowicz#########################################################################
169f9328639SMarian Balakowicz
1707ebf7443SwdenkHOSTARCH := $(shell uname -m | \
1717ebf7443Swdenk	sed -e s/i.86/x86/ \
1727ebf7443Swdenk	    -e s/sun4u/sparc64/ \
1737ebf7443Swdenk	    -e s/arm.*/arm/ \
1747ebf7443Swdenk	    -e s/sa110/arm/ \
1757ebf7443Swdenk	    -e s/ppc64/powerpc/ \
1767ebf7443Swdenk	    -e s/ppc/powerpc/ \
1777ebf7443Swdenk	    -e s/macppc/powerpc/\
1787ebf7443Swdenk	    -e s/sh.*/sh/)
1797ebf7443Swdenk
1807ebf7443SwdenkHOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
1817ebf7443Swdenk	    sed -e 's/\(cygwin\).*/cygwin/')
1827ebf7443Swdenk
1837ebf7443Swdenkexport	HOSTARCH HOSTOS
1847ebf7443Swdenk
1857ebf7443Swdenk#########################################################################
186f9328639SMarian Balakowicz
1871ea6bcd8SMike Frysinger# set default to nothing for native builds
188a5284efdSWolfgang Denkifeq ($(HOSTARCH),$(ARCH))
1891ea6bcd8SMike FrysingerCROSS_COMPILE ?=
1907ebf7443Swdenkendif
1917ebf7443Swdenk
19251148790SMasahiro YamadaKCONFIG_CONFIG	?= .config
19351148790SMasahiro Yamadaexport KCONFIG_CONFIG
19451148790SMasahiro Yamada
195f6322eb7SMasahiro Yamada# SHELL used by kbuild
196f6322eb7SMasahiro YamadaCONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
197f6322eb7SMasahiro Yamada	  else if [ -x /bin/bash ]; then echo /bin/bash; \
198f6322eb7SMasahiro Yamada	  else echo sh; fi ; fi)
199f6322eb7SMasahiro Yamada
200b477fe44SJeroen HofsteeHOSTCC       = cc
201b477fe44SJeroen HofsteeHOSTCXX      = c++
202f6322eb7SMasahiro YamadaHOSTCFLAGS   = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
203598e2d33SMasahiro YamadaHOSTCXXFLAGS = -O2
204598e2d33SMasahiro Yamada
205f6322eb7SMasahiro Yamadaifeq ($(HOSTOS),cygwin)
206f6322eb7SMasahiro YamadaHOSTCFLAGS	+= -ansi
207f6322eb7SMasahiro Yamadaendif
208f6322eb7SMasahiro Yamada
209f6322eb7SMasahiro Yamada# Mac OS X / Darwin's C preprocessor is Apple specific.  It
210f6322eb7SMasahiro Yamada# generates numerous errors and warnings.  We want to bypass it
211f6322eb7SMasahiro Yamada# and use GNU C's cpp.	To do this we pass the -traditional-cpp
212f6322eb7SMasahiro Yamada# option to the compiler.  Note that the -traditional-cpp flag
213f6322eb7SMasahiro Yamada# DOES NOT have the same semantics as GNU C's flag, all it does
214f6322eb7SMasahiro Yamada# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
215f6322eb7SMasahiro Yamada#
216f6322eb7SMasahiro Yamada# Apple's linker is similar, thanks to the new 2 stage linking
217f6322eb7SMasahiro Yamada# multiple symbol definitions are treated as errors, hence the
218f6322eb7SMasahiro Yamada# -multiply_defined suppress option to turn off this error.
219f6322eb7SMasahiro Yamada#
220f6322eb7SMasahiro Yamadaifeq ($(HOSTOS),darwin)
221f6322eb7SMasahiro Yamada# get major and minor product version (e.g. '10' and '6' for Snow Leopard)
222f6322eb7SMasahiro YamadaDARWIN_MAJOR_VERSION	= $(shell sw_vers -productVersion | cut -f 1 -d '.')
223f6322eb7SMasahiro YamadaDARWIN_MINOR_VERSION	= $(shell sw_vers -productVersion | cut -f 2 -d '.')
224f6322eb7SMasahiro Yamada
225f6322eb7SMasahiro Yamadaos_x_before	= $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
226f6322eb7SMasahiro Yamada	$(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
227f6322eb7SMasahiro Yamada
228f6322eb7SMasahiro Yamada# Snow Leopards build environment has no longer restrictions as described above
229f6322eb7SMasahiro YamadaHOSTCC       = $(call os_x_before, 10, 5, "cc", "gcc")
230f6322eb7SMasahiro YamadaHOSTCFLAGS  += $(call os_x_before, 10, 4, "-traditional-cpp")
231f6322eb7SMasahiro YamadaHOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
232f6322eb7SMasahiro Yamadaendif
233f6322eb7SMasahiro Yamada
2346825a95bSMasahiro Yamada# Decide whether to build built-in, modular, or both.
2356825a95bSMasahiro Yamada# Normally, just do built-in.
2366825a95bSMasahiro Yamada
2376825a95bSMasahiro YamadaKBUILD_MODULES :=
2386825a95bSMasahiro YamadaKBUILD_BUILTIN := 1
2396825a95bSMasahiro Yamada
2406825a95bSMasahiro Yamada# If we have only "make modules", don't compile built-in objects.
2416825a95bSMasahiro Yamada# When we're building modules with modversions, we need to consider
2426825a95bSMasahiro Yamada# the built-in objects during the descend as well, in order to
2436825a95bSMasahiro Yamada# make sure the checksums are up to date before we record them.
2446825a95bSMasahiro Yamada
2456825a95bSMasahiro Yamadaifeq ($(MAKECMDGOALS),modules)
2466825a95bSMasahiro Yamada  KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
2476825a95bSMasahiro Yamadaendif
2486825a95bSMasahiro Yamada
2496825a95bSMasahiro Yamada# If we have "make <whatever> modules", compile modules
2506825a95bSMasahiro Yamada# in addition to whatever we do anyway.
2516825a95bSMasahiro Yamada# Just "make" or "make all" shall build modules as well
2526825a95bSMasahiro Yamada
2536825a95bSMasahiro Yamada# U-Boot does not need modules
2546825a95bSMasahiro Yamada#ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
2556825a95bSMasahiro Yamada#  KBUILD_MODULES := 1
2566825a95bSMasahiro Yamada#endif
2576825a95bSMasahiro Yamada
2586825a95bSMasahiro Yamada#ifeq ($(MAKECMDGOALS),)
2596825a95bSMasahiro Yamada#  KBUILD_MODULES := 1
2606825a95bSMasahiro Yamada#endif
2616825a95bSMasahiro Yamada
2626825a95bSMasahiro Yamadaexport KBUILD_MODULES KBUILD_BUILTIN
2636825a95bSMasahiro Yamadaexport KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD
2646825a95bSMasahiro Yamada
2656825a95bSMasahiro Yamada# Beautify output
2666825a95bSMasahiro Yamada# ---------------------------------------------------------------------------
2676825a95bSMasahiro Yamada#
2686825a95bSMasahiro Yamada# Normally, we echo the whole command before executing it. By making
2696825a95bSMasahiro Yamada# that echo $($(quiet)$(cmd)), we now have the possibility to set
2706825a95bSMasahiro Yamada# $(quiet) to choose other forms of output instead, e.g.
2716825a95bSMasahiro Yamada#
2726825a95bSMasahiro Yamada#         quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
2736825a95bSMasahiro Yamada#         cmd_cc_o_c       = $(CC) $(c_flags) -c -o $@ $<
2746825a95bSMasahiro Yamada#
2756825a95bSMasahiro Yamada# If $(quiet) is empty, the whole command will be printed.
2766825a95bSMasahiro Yamada# If it is set to "quiet_", only the short version will be printed.
2776825a95bSMasahiro Yamada# If it is set to "silent_", nothing will be printed at all, since
2786825a95bSMasahiro Yamada# the variable $(silent_cmd_cc_o_c) doesn't exist.
2796825a95bSMasahiro Yamada#
2806825a95bSMasahiro Yamada# A simple variant is to prefix commands with $(Q) - that's useful
2816825a95bSMasahiro Yamada# for commands that shall be hidden in non-verbose mode.
2826825a95bSMasahiro Yamada#
2836825a95bSMasahiro Yamada#	$(Q)ln $@ :<
2846825a95bSMasahiro Yamada#
2856825a95bSMasahiro Yamada# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
2866825a95bSMasahiro Yamada# If KBUILD_VERBOSE equals 1 then the above command is displayed.
2876825a95bSMasahiro Yamada
2886825a95bSMasahiro Yamadaifeq ($(KBUILD_VERBOSE),1)
2896825a95bSMasahiro Yamada  quiet =
2906825a95bSMasahiro Yamada  Q =
2916825a95bSMasahiro Yamadaelse
2926825a95bSMasahiro Yamada  quiet=quiet_
2936825a95bSMasahiro Yamada  Q = @
2946825a95bSMasahiro Yamadaendif
2956825a95bSMasahiro Yamada
2966825a95bSMasahiro Yamada# If the user is running make -s (silent mode), suppress echoing of
2976825a95bSMasahiro Yamada# commands
2986825a95bSMasahiro Yamada
299598e2d33SMasahiro Yamadaifneq ($(filter 4.%,$(MAKE_VERSION)),)	# make-4
300598e2d33SMasahiro Yamadaifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),)
301598e2d33SMasahiro Yamada  quiet=silent_
302598e2d33SMasahiro Yamadaendif
303598e2d33SMasahiro Yamadaelse					# make-3.8x
3046825a95bSMasahiro Yamadaifneq ($(filter s% -s%,$(MAKEFLAGS)),)
3056825a95bSMasahiro Yamada  quiet=silent_
3066825a95bSMasahiro Yamadaendif
307598e2d33SMasahiro Yamadaendif
3086825a95bSMasahiro Yamada
3096825a95bSMasahiro Yamadaexport quiet Q KBUILD_VERBOSE
3106825a95bSMasahiro Yamada
3119e414032SMasahiro Yamada# Look for make include files relative to root of kernel src
3129e414032SMasahiro YamadaMAKEFLAGS += --include-dir=$(srctree)
3139e414032SMasahiro Yamada
314bf4b3de1SMasahiro Yamada# We need some generic definitions (do not try to remake the file).
315bf4b3de1SMasahiro Yamada$(srctree)/scripts/Kbuild.include: ;
316bf4b3de1SMasahiro Yamadainclude $(srctree)/scripts/Kbuild.include
317bf4b3de1SMasahiro Yamada
318f6322eb7SMasahiro Yamada# Make variables (CC, etc...)
319f6322eb7SMasahiro Yamada
320f6322eb7SMasahiro YamadaAS		= $(CROSS_COMPILE)as
321f6322eb7SMasahiro Yamada# Always use GNU ld
322f6322eb7SMasahiro Yamadaifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),)
323f6322eb7SMasahiro YamadaLD		= $(CROSS_COMPILE)ld.bfd
324f6322eb7SMasahiro Yamadaelse
325f6322eb7SMasahiro YamadaLD		= $(CROSS_COMPILE)ld
326f6322eb7SMasahiro Yamadaendif
327f6322eb7SMasahiro YamadaCC		= $(CROSS_COMPILE)gcc
328f6322eb7SMasahiro YamadaCPP		= $(CC) -E
329f6322eb7SMasahiro YamadaAR		= $(CROSS_COMPILE)ar
330f6322eb7SMasahiro YamadaNM		= $(CROSS_COMPILE)nm
331f6322eb7SMasahiro YamadaLDR		= $(CROSS_COMPILE)ldr
332f6322eb7SMasahiro YamadaSTRIP		= $(CROSS_COMPILE)strip
333f6322eb7SMasahiro YamadaOBJCOPY		= $(CROSS_COMPILE)objcopy
334f6322eb7SMasahiro YamadaOBJDUMP		= $(CROSS_COMPILE)objdump
335f6322eb7SMasahiro YamadaAWK		= awk
336f77d7096SMasahiro YamadaPERL		= perl
33751148790SMasahiro YamadaPYTHON		= python
338f6322eb7SMasahiro YamadaDTC		= dtc
339f6322eb7SMasahiro YamadaCHECK		= sparse
340f6322eb7SMasahiro Yamada
341f6322eb7SMasahiro YamadaCHECKFLAGS     := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
342f6322eb7SMasahiro Yamada		  -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
343f6322eb7SMasahiro Yamada
3443b612970SMasahiro YamadaKBUILD_CPPFLAGS := -D__KERNEL__ -D__UBOOT__
3452b3c9d3dSMasahiro Yamada
3462b3c9d3dSMasahiro YamadaKBUILD_CFLAGS   := -Wall -Wstrict-prototypes \
3472b3c9d3dSMasahiro Yamada		   -Wno-format-security \
3482b3c9d3dSMasahiro Yamada		   -fno-builtin -ffreestanding
3492b3c9d3dSMasahiro YamadaKBUILD_AFLAGS   := -D__ASSEMBLY__
3502b3c9d3dSMasahiro Yamada
3517424145fSMasahiro Yamada# Read UBOOTRELEASE from include/config/uboot.release (if it exists)
3527424145fSMasahiro YamadaUBOOTRELEASE = $(shell cat include/config/uboot.release 2> /dev/null)
3537424145fSMasahiro YamadaUBOOTVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
3545f30f3beSMasahiro Yamada
3557424145fSMasahiro Yamadaexport VERSION PATCHLEVEL SUBLEVEL UBOOTRELEASE UBOOTVERSION
356026f9cf2SMasahiro Yamadaexport ARCH CPU BOARD VENDOR SOC CPUDIR BOARDDIR
357f6322eb7SMasahiro Yamadaexport CONFIG_SHELL HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE AS LD CC
358f6322eb7SMasahiro Yamadaexport CPP AR NM LDR STRIP OBJCOPY OBJDUMP
35951148790SMasahiro Yamadaexport MAKE AWK PERL PYTHON
36015c939f9SMasahiro Yamadaexport HOSTCXX HOSTCXXFLAGS DTC CHECK CHECKFLAGS
361f6322eb7SMasahiro Yamada
362026f9cf2SMasahiro Yamadaexport KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE OBJCOPYFLAGS LDFLAGS
3632b3c9d3dSMasahiro Yamadaexport KBUILD_CFLAGS KBUILD_AFLAGS
3642b3c9d3dSMasahiro Yamada
3656825a95bSMasahiro Yamada# When compiling out-of-tree modules, put MODVERDIR in the module
3666825a95bSMasahiro Yamada# tree rather than in the kernel tree. The kernel tree might
3676825a95bSMasahiro Yamada# even be read-only.
3686825a95bSMasahiro Yamadaexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
3696825a95bSMasahiro Yamada
3706825a95bSMasahiro Yamada# Files to ignore in find ... statements
3716825a95bSMasahiro Yamada
372598e2d33SMasahiro Yamadaexport RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o    \
373598e2d33SMasahiro Yamada			  -name CVS -o -name .pc -o -name .hg -o -name .git \) \
374598e2d33SMasahiro Yamada			  -prune -o
3756825a95bSMasahiro Yamadaexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
3766825a95bSMasahiro Yamada			 --exclude CVS --exclude .pc --exclude .hg --exclude .git
3776825a95bSMasahiro Yamada
3786825a95bSMasahiro Yamada# ===========================================================================
3796825a95bSMasahiro Yamada# Rules shared between *config targets and build targets
3806825a95bSMasahiro Yamada
3816825a95bSMasahiro Yamada# Basic helpers built in scripts/
3826825a95bSMasahiro YamadaPHONY += scripts_basic
3836825a95bSMasahiro Yamadascripts_basic:
3846825a95bSMasahiro Yamada	$(Q)$(MAKE) $(build)=scripts/basic
3856825a95bSMasahiro Yamada	$(Q)rm -f .tmp_quiet_recordmcount
3866825a95bSMasahiro Yamada
3876825a95bSMasahiro Yamada# To avoid any implicit rule to kick in, define an empty command.
3886825a95bSMasahiro Yamadascripts/basic/%: scripts_basic ;
3896825a95bSMasahiro Yamada
3903341bfecSMasahiro YamadaPHONY += outputmakefile
3913341bfecSMasahiro Yamada# outputmakefile generates a Makefile in the output directory, if using a
3923341bfecSMasahiro Yamada# separate output directory. This allows convenient use of make in the
3933341bfecSMasahiro Yamada# output directory.
3943341bfecSMasahiro Yamadaoutputmakefile:
3953341bfecSMasahiro Yamadaifneq ($(KBUILD_SRC),)
3963341bfecSMasahiro Yamada	$(Q)ln -fsn $(srctree) source
3973341bfecSMasahiro Yamada	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \
3983341bfecSMasahiro Yamada	    $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)
3993341bfecSMasahiro Yamadaendif
4003341bfecSMasahiro Yamada
401433b2f1eSMasahiro Yamada# To make sure we do not include .config for any of the *config targets
402433b2f1eSMasahiro Yamada# catch them early, and hand them over to scripts/kconfig/Makefile
403433b2f1eSMasahiro Yamada# It is allowed to specify more targets when calling make, including
404433b2f1eSMasahiro Yamada# mixing *config targets and build targets.
405433b2f1eSMasahiro Yamada# For example 'make oldconfig all'.
406433b2f1eSMasahiro Yamada# Detect when mixed targets is specified, and make a second invocation
407433b2f1eSMasahiro Yamada# of make so .config is not included in this case either (for *config).
4086825a95bSMasahiro Yamada
4097424145fSMasahiro Yamadaversion_h := include/generated/version_autogenerated.h
4107424145fSMasahiro Yamadatimestamp_h := include/generated/timestamp_autogenerated.h
4117424145fSMasahiro Yamada
412433b2f1eSMasahiro Yamadano-dot-config-targets := clean clobber mrproper distclean \
41327651187SMasahiro Yamada			 help %docs check% coccicheck \
414c7ad5cbbSTom Rini			 ubootversion backup
4152b3c9d3dSMasahiro Yamada
416433b2f1eSMasahiro Yamadaconfig-targets := 0
417433b2f1eSMasahiro Yamadamixed-targets  := 0
418433b2f1eSMasahiro Yamadadot-config     := 1
4192b3c9d3dSMasahiro Yamada
420433b2f1eSMasahiro Yamadaifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
421433b2f1eSMasahiro Yamada	ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
422433b2f1eSMasahiro Yamada		dot-config := 0
4232b3c9d3dSMasahiro Yamada	endif
4242b3c9d3dSMasahiro Yamadaendif
4252b3c9d3dSMasahiro Yamada
426433b2f1eSMasahiro Yamadaifeq ($(KBUILD_EXTMOD),)
427433b2f1eSMasahiro Yamada        ifneq ($(filter config %config,$(MAKECMDGOALS)),)
428433b2f1eSMasahiro Yamada                config-targets := 1
429433b2f1eSMasahiro Yamada                ifneq ($(filter-out config %config,$(MAKECMDGOALS)),)
430433b2f1eSMasahiro Yamada                        mixed-targets := 1
431433b2f1eSMasahiro Yamada                endif
432433b2f1eSMasahiro Yamada        endif
433433b2f1eSMasahiro Yamadaendif
434433b2f1eSMasahiro Yamada
435433b2f1eSMasahiro Yamadaifeq ($(mixed-targets),1)
436433b2f1eSMasahiro Yamada# ===========================================================================
437433b2f1eSMasahiro Yamada# We're called with mixed targets (*config and build targets).
438433b2f1eSMasahiro Yamada# Handle them one by one.
439433b2f1eSMasahiro Yamada
440e7734404SMasahiro YamadaPHONY += $(MAKECMDGOALS) __build_one_by_one
44153bca5abSMasahiro Yamada
442e7734404SMasahiro Yamada$(filter-out __build_one_by_one, $(MAKECMDGOALS)): __build_one_by_one
44353bca5abSMasahiro Yamada	@:
44453bca5abSMasahiro Yamada
445e7734404SMasahiro Yamada__build_one_by_one:
44653bca5abSMasahiro Yamada	$(Q)set -e; \
44753bca5abSMasahiro Yamada	for i in $(MAKECMDGOALS); do \
44853bca5abSMasahiro Yamada		$(MAKE) -f $(srctree)/Makefile $$i; \
44953bca5abSMasahiro Yamada	done
450433b2f1eSMasahiro Yamada
451433b2f1eSMasahiro Yamadaelse
452433b2f1eSMasahiro Yamadaifeq ($(config-targets),1)
453433b2f1eSMasahiro Yamada# ===========================================================================
454433b2f1eSMasahiro Yamada# *config targets only - make sure prerequisites are updated, and descend
455433b2f1eSMasahiro Yamada# in scripts/kconfig to make the *config target
456433b2f1eSMasahiro Yamada
45751148790SMasahiro YamadaKBUILD_DEFCONFIG := sandbox_defconfig
45851148790SMasahiro Yamadaexport KBUILD_DEFCONFIG KBUILD_KCONFIG
459433b2f1eSMasahiro Yamada
46051148790SMasahiro Yamadaconfig: scripts_basic outputmakefile FORCE
461f458e355SMasahiro Yamada	+$(Q)$(CONFIG_SHELL) $(srctree)/scripts/multiconfig.sh $@
46251148790SMasahiro Yamada
46351148790SMasahiro Yamada%config: scripts_basic outputmakefile FORCE
4643ff291f3SMasahiro Yamada	+$(Q)$(CONFIG_SHELL) $(srctree)/scripts/multiconfig.sh $@
465433b2f1eSMasahiro Yamada
466433b2f1eSMasahiro Yamadaelse
467433b2f1eSMasahiro Yamada# ===========================================================================
468433b2f1eSMasahiro Yamada# Build targets only - this includes vmlinux, arch specific targets, clean
469433b2f1eSMasahiro Yamada# targets and others. In general all targets except *config targets.
470433b2f1eSMasahiro Yamada
471433b2f1eSMasahiro Yamadaifeq ($(dot-config),1)
472433b2f1eSMasahiro Yamada# Read in config
47351148790SMasahiro Yamada-include include/config/auto.conf
47451148790SMasahiro Yamada
47551148790SMasahiro Yamada# Read in dependencies to all Kconfig* files, make sure to run
47651148790SMasahiro Yamada# oldconfig if changes are detected.
47751148790SMasahiro Yamada-include include/config/auto.conf.cmd
47851148790SMasahiro Yamada
47951148790SMasahiro Yamada# To avoid any implicit rule to kick in, define an empty command
48051148790SMasahiro Yamada$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;
48151148790SMasahiro Yamada
48251148790SMasahiro Yamada# If .config is newer than include/config/auto.conf, someone tinkered
48351148790SMasahiro Yamada# with it and forgot to run make oldconfig.
48451148790SMasahiro Yamada# if auto.conf.cmd is missing then we are probably in a cleaned tree so
48551148790SMasahiro Yamada# we execute the config step to be sure to catch updated Kconfig files
48651148790SMasahiro Yamadainclude/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
48751148790SMasahiro Yamada	$(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
48851148790SMasahiro Yamada
489433b2f1eSMasahiro Yamada-include include/autoconf.mk
490433b2f1eSMasahiro Yamada-include include/autoconf.mk.dep
491433b2f1eSMasahiro Yamada
49251148790SMasahiro Yamada# We want to include arch/$(ARCH)/config.mk only when include/config/auto.conf
49351148790SMasahiro Yamada# is up-to-date. When we switch to a different board configuration, old CONFIG
49451148790SMasahiro Yamada# macros are still remaining in include/config/auto.conf. Without the following
49551148790SMasahiro Yamada# gimmick, wrong config.mk would be included leading nasty warnings/errors.
49651148790SMasahiro Yamadaautoconf_is_current := $(if $(wildcard $(KCONFIG_CONFIG)),$(shell find . \
49751148790SMasahiro Yamada		-path ./include/config/auto.conf -newer $(KCONFIG_CONFIG)))
49851148790SMasahiro Yamadaifneq ($(autoconf_is_current),)
499433b2f1eSMasahiro Yamadainclude $(srctree)/config.mk
500ced0715dSMasahiro Yamadaendif
501fada9e20SSimon Glass
502d51dfff7SIlya Yanok# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
503d51dfff7SIlya Yanok# that (or fail if absent).  Otherwise, search for a linker script in a
504d51dfff7SIlya Yanok# standard location.
505d51dfff7SIlya Yanok
506d51dfff7SIlya Yanokifndef LDSCRIPT
5074379ac61SMasahiro Yamada	#LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot.lds.debug
508d51dfff7SIlya Yanok	ifdef CONFIG_SYS_LDSCRIPT
509d51dfff7SIlya Yanok		# need to strip off double quotes
5104a377552SMasahiro Yamada		LDSCRIPT := $(srctree)/$(CONFIG_SYS_LDSCRIPT:"%"=%)
511d51dfff7SIlya Yanok	endif
512d51dfff7SIlya Yanokendif
513d51dfff7SIlya Yanok
514ee60197eSSimon Glass# If there is no specified link script, we look in a number of places for it
515d51dfff7SIlya Yanokifndef LDSCRIPT
516d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
5174379ac61SMasahiro Yamada		LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot.lds
518d51dfff7SIlya Yanok	endif
519d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
5204379ac61SMasahiro Yamada		LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot.lds
521d51dfff7SIlya Yanok	endif
522d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
5234379ac61SMasahiro Yamada		LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot.lds
524ee60197eSSimon Glass	endif
525d51dfff7SIlya Yanokendif
526d51dfff7SIlya Yanok
527433b2f1eSMasahiro Yamadaelse
52851148790SMasahiro Yamada# Dummy target needed, because used as prerequisite
52951148790SMasahiro Yamadainclude/config/auto.conf: ;
530433b2f1eSMasahiro Yamadaendif # $(dot-config)
531433b2f1eSMasahiro Yamada
5324a8ed8e2SMasahiro Yamadaifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
5334a8ed8e2SMasahiro YamadaKBUILD_CFLAGS	+= -Os
5344a8ed8e2SMasahiro Yamadaelse
5354a8ed8e2SMasahiro YamadaKBUILD_CFLAGS	+= -O2
5364a8ed8e2SMasahiro Yamadaendif
537433b2f1eSMasahiro Yamada
538433b2f1eSMasahiro Yamadaifdef BUILD_TAG
539433b2f1eSMasahiro YamadaKBUILD_CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"'
540433b2f1eSMasahiro Yamadaendif
541433b2f1eSMasahiro Yamada
542433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
543433b2f1eSMasahiro Yamada
544433b2f1eSMasahiro YamadaKBUILD_CFLAGS	+= -g
545433b2f1eSMasahiro Yamada# $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
546433b2f1eSMasahiro Yamada# option to the assembler.
547433b2f1eSMasahiro YamadaKBUILD_AFLAGS	+= -g
548433b2f1eSMasahiro Yamada
549433b2f1eSMasahiro Yamada# Report stack usage if supported
5505b1f1f4aSMasahiro Yamadaifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-stack-usage.sh $(CC)),y)
5515b1f1f4aSMasahiro Yamada	KBUILD_CFLAGS += -fstack-usage
5525b1f1f4aSMasahiro Yamadaendif
553433b2f1eSMasahiro Yamada
554433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral)
555433b2f1eSMasahiro Yamada
556433b2f1eSMasahiro Yamada# turn jbsr into jsr for m68k
557433b2f1eSMasahiro Yamadaifeq ($(ARCH),m68k)
558433b2f1eSMasahiro Yamadaifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
559433b2f1eSMasahiro YamadaKBUILD_AFLAGS += -Wa,-gstabs,-S
560433b2f1eSMasahiro Yamadaendif
561433b2f1eSMasahiro Yamadaendif
562433b2f1eSMasahiro Yamada
56365bb6d8dSMasahiro Yamada# Prohibit date/time macros, which would make the build non-deterministic
56465bb6d8dSMasahiro YamadaKBUILD_CFLAGS   += $(call cc-option,-Werror=date-time)
56565bb6d8dSMasahiro Yamada
566433b2f1eSMasahiro Yamadaifneq ($(CONFIG_SYS_TEXT_BASE),)
567433b2f1eSMasahiro YamadaKBUILD_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE)
568433b2f1eSMasahiro Yamadaendif
569433b2f1eSMasahiro Yamada
570433b2f1eSMasahiro Yamadaexport CONFIG_SYS_TEXT_BASE
571433b2f1eSMasahiro Yamada
5726419e144SMasahiro Yamadainclude $(srctree)/scripts/Makefile.extrawarn
5736419e144SMasahiro Yamada
5740e6256d0SMasahiro Yamada# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments
5750e6256d0SMasahiro YamadaKBUILD_CPPFLAGS += $(KCPPFLAGS)
5760e6256d0SMasahiro YamadaKBUILD_AFLAGS += $(KAFLAGS)
5770e6256d0SMasahiro YamadaKBUILD_CFLAGS += $(KCFLAGS)
5780e6256d0SMasahiro Yamada
579433b2f1eSMasahiro Yamada# Use UBOOTINCLUDE when you must reference the include/ directory.
580433b2f1eSMasahiro Yamada# Needed to be compatible with the O= option
581f5c66bdbSMasahiro YamadaUBOOTINCLUDE    := \
582f5c66bdbSMasahiro Yamada		-Iinclude \
583f5c66bdbSMasahiro Yamada		$(if $(KBUILD_SRC), -I$(srctree)/include) \
58451148790SMasahiro Yamada		-I$(srctree)/arch/$(ARCH)/include \
58551148790SMasahiro Yamada		-include $(srctree)/include/linux/kconfig.h
586433b2f1eSMasahiro Yamada
587433b2f1eSMasahiro YamadaNOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
588433b2f1eSMasahiro YamadaCHECKFLAGS     += $(NOSTDINC_FLAGS)
589433b2f1eSMasahiro Yamada
590433b2f1eSMasahiro Yamada# FIX ME
591026f9cf2SMasahiro Yamadacpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \
592026f9cf2SMasahiro Yamada							$(NOSTDINC_FLAGS)
593433b2f1eSMasahiro Yamadac_flags := $(KBUILD_CFLAGS) $(cpp_flags)
594433b2f1eSMasahiro Yamada
5957ebf7443Swdenk#########################################################################
5967ebf7443Swdenk# U-Boot objects....order is important (i.e. start must be first)
5977ebf7443Swdenk
598e8a8b824SMasahiro Yamadahead-y := $(CPUDIR)/start.o
599e8a8b824SMasahiro Yamadahead-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o
600e8a8b824SMasahiro Yamadahead-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o
6017ebf7443Swdenk
6029e414032SMasahiro YamadaHAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
603f9328639SMarian Balakowicz
604656de6b8SMasahiro Yamadalibs-y += lib/
605656de6b8SMasahiro Yamadalibs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
606656de6b8SMasahiro Yamadalibs-y += $(CPUDIR)/
6071d9f4105Swdenkifdef SOC
608656de6b8SMasahiro Yamadalibs-y += $(CPUDIR)/$(SOC)/
6091d9f4105Swdenkendif
610656de6b8SMasahiro Yamadalibs-$(CONFIG_OF_EMBED) += dts/
611656de6b8SMasahiro Yamadalibs-y += arch/$(ARCH)/lib/
612656de6b8SMasahiro Yamadalibs-y += fs/
613656de6b8SMasahiro Yamadalibs-y += net/
614656de6b8SMasahiro Yamadalibs-y += disk/
615656de6b8SMasahiro Yamadalibs-y += drivers/
616656de6b8SMasahiro Yamadalibs-y += drivers/dma/
617656de6b8SMasahiro Yamadalibs-y += drivers/gpio/
618656de6b8SMasahiro Yamadalibs-y += drivers/i2c/
619656de6b8SMasahiro Yamadalibs-y += drivers/mmc/
620656de6b8SMasahiro Yamadalibs-y += drivers/mtd/
621656de6b8SMasahiro Yamadalibs-$(CONFIG_CMD_NAND) += drivers/mtd/nand/
622656de6b8SMasahiro Yamadalibs-y += drivers/mtd/onenand/
623656de6b8SMasahiro Yamadalibs-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/
624656de6b8SMasahiro Yamadalibs-y += drivers/mtd/spi/
625656de6b8SMasahiro Yamadalibs-y += drivers/net/
626656de6b8SMasahiro Yamadalibs-y += drivers/net/phy/
627656de6b8SMasahiro Yamadalibs-y += drivers/pci/
628656de6b8SMasahiro Yamadalibs-y += drivers/power/ \
629e2906a59SMasahiro Yamada	drivers/power/fuel_gauge/ \
630e2906a59SMasahiro Yamada	drivers/power/mfd/ \
631e2906a59SMasahiro Yamada	drivers/power/pmic/ \
632e2906a59SMasahiro Yamada	drivers/power/battery/
633656de6b8SMasahiro Yamadalibs-y += drivers/spi/
634656de6b8SMasahiro Yamadalibs-$(CONFIG_FMAN_ENET) += drivers/net/fm/
635656de6b8SMasahiro Yamadalibs-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/
636656de6b8SMasahiro Yamadalibs-y += drivers/serial/
637656de6b8SMasahiro Yamadalibs-y += drivers/usb/eth/
638656de6b8SMasahiro Yamadalibs-y += drivers/usb/gadget/
639656de6b8SMasahiro Yamadalibs-y += drivers/usb/host/
640656de6b8SMasahiro Yamadalibs-y += drivers/usb/musb/
641656de6b8SMasahiro Yamadalibs-y += drivers/usb/musb-new/
642656de6b8SMasahiro Yamadalibs-y += drivers/usb/phy/
643656de6b8SMasahiro Yamadalibs-y += drivers/usb/ulpi/
644656de6b8SMasahiro Yamadalibs-y += common/
645656de6b8SMasahiro Yamadalibs-y += lib/libfdt/
646656de6b8SMasahiro Yamadalibs-$(CONFIG_API) += api/
647656de6b8SMasahiro Yamadalibs-$(CONFIG_HAS_POST) += post/
648656de6b8SMasahiro Yamadalibs-y += test/
6492e7d35d2SSimon Glasslibs-y += test/dm/
650f9328639SMarian Balakowicz
65124e8bee5SAlison Wangifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
652656de6b8SMasahiro Yamadalibs-y += arch/$(ARCH)/imx-common/
65318936ee2SJason Liuendif
65418936ee2SJason Liu
65541e5ee54SStefan Roeseifneq (,$(filter $(SOC), armada-xp kirkwood))
656d80cca29SStefan Roeselibs-y += arch/$(ARCH)/mvebu-common/
657d80cca29SStefan Roeseendif
658d80cca29SStefan Roese
659656de6b8SMasahiro Yamadalibs-$(CONFIG_ARM) += arch/arm/cpu/
660656de6b8SMasahiro Yamadalibs-$(CONFIG_PPC) += arch/powerpc/cpu/
661852bd07cSMinkyu Kang
66233a02da0SMasahiro Yamadalibs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
66308e39a84SMasahiro Yamada
664656de6b8SMasahiro Yamadalibs-y := $(sort $(libs-y))
665656de6b8SMasahiro Yamada
666656de6b8SMasahiro Yamadau-boot-dirs	:= $(patsubst %/,%,$(filter %/, $(libs-y))) tools examples
667656de6b8SMasahiro Yamada
668656de6b8SMasahiro Yamadau-boot-alldirs	:= $(sort $(u-boot-dirs) $(patsubst %/,%,$(filter %/, $(libs-))))
669656de6b8SMasahiro Yamada
670656de6b8SMasahiro Yamadalibs-y		:= $(patsubst %/, %/built-in.o, $(libs-y))
671656de6b8SMasahiro Yamada
672656de6b8SMasahiro Yamadau-boot-init := $(head-y)
673656de6b8SMasahiro Yamadau-boot-main := $(libs-y)
674656de6b8SMasahiro Yamada
675a8c7c708Swdenk
6764f7cb08eSwdenk# Add GCC lib
677cd2e46cbSMasahiro Yamadaifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
678a86cf89cSMasahiro YamadaPLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
67952b1bf2cSWolfgang Denkelse
6806825a95bSMasahiro YamadaPLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(c_flags) -print-libgcc-file-name`) -lgcc
68152b1bf2cSWolfgang Denkendif
68252b1bf2cSWolfgang DenkPLATFORM_LIBS += $(PLATFORM_LIBGCC)
68352b1bf2cSWolfgang Denkexport PLATFORM_LIBS
684e75e73ddSAlexey Brodkinexport PLATFORM_LIBGCC
6853d3befa7Swdenk
6866ac9f479SMike Frysinger# Special flags for CPP when processing the linker script.
6876ac9f479SMike Frysinger# Pass the version down so we can handle backwards compatibility
6886ac9f479SMike Frysinger# on the fly.
6896ac9f479SMike FrysingerLDPPFLAGS += \
6904379ac61SMasahiro Yamada	-include $(srctree)/include/u-boot/u-boot.lds.h \
6917e6403a6SSimon Glass	-DCPUDIR=$(CPUDIR) \
6926ac9f479SMike Frysinger	$(shell $(LD) --version | \
6936ac9f479SMike Frysinger	  sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
6946ac9f479SMike Frysinger
6957ebf7443Swdenk#########################################################################
696bdccc4feSwdenk#########################################################################
6977ebf7443Swdenk
698f3a14d37SMike Frysingerifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
699f3a14d37SMike FrysingerBOARD_SIZE_CHECK = \
700f3a14d37SMike Frysinger	@actual=`wc -c $@ | awk '{print $$1}'`; \
701d060e6f4SJoe Hershberger	limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
702f3a14d37SMike Frysinger	if test $$actual -gt $$limit; then \
703d060e6f4SJoe Hershberger		echo "$@ exceeds file size limit:" >&2 ; \
704d060e6f4SJoe Hershberger		echo "  limit:  $$limit bytes" >&2 ; \
705d060e6f4SJoe Hershberger		echo "  actual: $$actual bytes" >&2 ; \
706d060e6f4SJoe Hershberger		echo "  excess: $$((actual - limit)) bytes" >&2; \
707f3a14d37SMike Frysinger		exit 1; \
708f3a14d37SMike Frysinger	fi
709f3a14d37SMike Frysingerelse
710f3a14d37SMike FrysingerBOARD_SIZE_CHECK =
711f3a14d37SMike Frysingerendif
712f3a14d37SMike Frysinger
7138137af19SScott Wood# Statically apply RELA-style relocations (currently arm64 only)
7148137af19SScott Woodifneq ($(CONFIG_STATIC_RELA),)
7158137af19SScott Wood# $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base
7168137af19SScott WoodDO_STATIC_RELA = \
7178137af19SScott Wood	start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \
7188137af19SScott Wood	end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \
7199e414032SMasahiro Yamada	tools/relocate-rela $(2) $(3) $$start $$end
7208137af19SScott Woodelse
7218137af19SScott WoodDO_STATIC_RELA =
7228137af19SScott Woodendif
7238137af19SScott Wood
7243e88337bSMike Frysinger# Always append ALL so that arch config.mk's can add custom ones
72589742924SSimon GlassALL-y += u-boot.srec u-boot.bin System.map binary_size_check
726e935a374SHaiying Wang
7279e414032SMasahiro YamadaALL-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin
72889ad7be8SPrabhakar Kushwahaifeq ($(CONFIG_SPL_FSL_PBL),y)
72989ad7be8SPrabhakar KushwahaALL-$(CONFIG_RAMBOOT_PBL) += u-boot-with-spl-pbl.bin
73089ad7be8SPrabhakar Kushwahaelse
7319e414032SMasahiro YamadaALL-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl
73289ad7be8SPrabhakar Kushwahaendif
7339e414032SMasahiro YamadaALL-$(CONFIG_SPL) += spl/u-boot-spl.bin
7349e414032SMasahiro YamadaALL-$(CONFIG_SPL_FRAMEWORK) += u-boot.img
7359e414032SMasahiro YamadaALL-$(CONFIG_TPL) += tpl/u-boot-tpl.bin
7360d1e8aacSMasahiro YamadaALL-$(CONFIG_OF_SEPARATE) += u-boot.dtb u-boot-dtb.bin
7372405d09cSMasahiro Yamadaifeq ($(CONFIG_SPL_FRAMEWORK),y)
7382405d09cSMasahiro YamadaALL-$(CONFIG_OF_SEPARATE) += u-boot-dtb.img
7392405d09cSMasahiro Yamadaendif
740714a5621SSimon GlassALL-$(CONFIG_OF_HOSTFILE) += u-boot.dtb
741b343bbb5SVadim Bendeburyifneq ($(CONFIG_SPL_TARGET),)
7429e414032SMasahiro YamadaALL-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%)
743b343bbb5SVadim Bendeburyendif
7449e414032SMasahiro YamadaALL-$(CONFIG_REMAKE_ELF) += u-boot.elf
7457ebf7443Swdenk
74612b7b70cSAllen Martin# enable combined SPL/u-boot/dtb rules for tegra
7476d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),)
7487dcd3a21SVidya Sagarifeq ($(CONFIG_SPL),y)
74912b7b70cSAllen Martinifeq ($(CONFIG_OF_SEPARATE),y)
7509e414032SMasahiro YamadaALL-y += u-boot-dtb-tegra.bin
75112b7b70cSAllen Martinelse
7529e414032SMasahiro YamadaALL-y += u-boot-nodtb-tegra.bin
75312b7b70cSAllen Martinendif
75412b7b70cSAllen Martinendif
7557dcd3a21SVidya Sagarendif
75612b7b70cSAllen Martin
757b2b8a696SStefan Roese# Add optional build target if defined in board/cpu/soc headers
758b2b8a696SStefan Roeseifneq ($(CONFIG_BUILD_TARGET),)
759b2b8a696SStefan RoeseALL-y += $(CONFIG_BUILD_TARGET:"%"=%)
760b2b8a696SStefan Roeseendif
761b2b8a696SStefan Roese
762ad0fed46SMasahiro YamadaLDFLAGS_u-boot += $(LDFLAGS_FINAL)
763433b2f1eSMasahiro Yamadaifneq ($(CONFIG_SYS_TEXT_BASE),)
764433b2f1eSMasahiro YamadaLDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE)
765433b2f1eSMasahiro Yamadaendif
76671f84ef0SMasahiro Yamada
767f9c235fdSMasahiro Yamadaquiet_cmd_objcopy = OBJCOPY $@
768f9c235fdSMasahiro Yamadacmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
769f9c235fdSMasahiro Yamada
770b97241b3SMarek Vasutquiet_cmd_mkimage = MKIMAGE $@
7719bf215b0SMasahiro Yamadacmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
7729bf215b0SMasahiro Yamada	$(if $(KBUILD_VERBOSE:1=), >/dev/null)
7739bf215b0SMasahiro Yamada
774ee0acfa2SMasahiro Yamadaquiet_cmd_cat = CAT     $@
775ee0acfa2SMasahiro Yamadacmd_cat = cat $(filter-out $(PHONY), $^) > $@
776ee0acfa2SMasahiro Yamada
777982a1199SMasahiro Yamadaappend = cat $(filter-out $< $(PHONY), $^) >> $@
778982a1199SMasahiro Yamada
779982a1199SMasahiro Yamadaquiet_cmd_pad_cat = CAT     $@
780982a1199SMasahiro Yamadacmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
781982a1199SMasahiro Yamada
782656de6b8SMasahiro Yamadaall:		$(ALL-y)
783*5add293bSMasahiro Yamadaifneq ($(CONFIG_SYS_GENERIC_BOARD),y)
784*5add293bSMasahiro Yamada	@echo "===================== WARNING ======================"
785*5add293bSMasahiro Yamada	@echo "Please convert this board to generic board."
786*5add293bSMasahiro Yamada	@echo "Otherwise it will be removed by the end of 2014."
787*5add293bSMasahiro Yamada	@echo "See doc/README.generic-board for further information"
788*5add293bSMasahiro Yamada	@echo "===================================================="
789*5add293bSMasahiro Yamadaendif
7907ebf7443Swdenk
7916ab6b2afSMasahiro YamadaPHONY += dtbs
7926ab6b2afSMasahiro Yamadadtbs dts/dt.dtb: checkdtc u-boot
7936ab6b2afSMasahiro Yamada	$(Q)$(MAKE) $(build)=dts dtbs
7942c0f79e4SSimon Glass
795ee0acfa2SMasahiro Yamadau-boot-dtb.bin: u-boot.bin dts/dt.dtb FORCE
796ee0acfa2SMasahiro Yamada	$(call if_changed,cat)
7972c0f79e4SSimon Glass
798e64348f5SStefano Babic%.imx: %.bin
799e64348f5SStefano Babic	$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
800e64348f5SStefano Babic
8010d1e8aacSMasahiro Yamadaquiet_cmd_copy = COPY    $@
8020d1e8aacSMasahiro Yamada      cmd_copy = cp $< $@
8030d1e8aacSMasahiro Yamada
8040d1e8aacSMasahiro Yamadau-boot.dtb: dts/dt.dtb
8050d1e8aacSMasahiro Yamada	$(call cmd,copy)
8060d1e8aacSMasahiro Yamada
807f9c235fdSMasahiro YamadaOBJCOPYFLAGS_u-boot.hex := -O ihex
8086310eb9dSwdenk
809f9c235fdSMasahiro YamadaOBJCOPYFLAGS_u-boot.srec := -O srec
8107ebf7443Swdenk
811f9c235fdSMasahiro Yamadau-boot.hex u-boot.srec: u-boot FORCE
812f9c235fdSMasahiro Yamada	$(call if_changed,objcopy)
813f9c235fdSMasahiro Yamada
814f9c235fdSMasahiro YamadaOBJCOPYFLAGS_u-boot.bin := -O binary
815f9c235fdSMasahiro Yamada
8163ce7a4feSChris Packhambinary_size_check: u-boot.bin FORCE
81767b060b4SChris Packham	@file_size=$(shell wc -c u-boot.bin | awk '{print $$1}') ; \
8183ce7a4feSChris Packham	map_size=$(shell cat u-boot.map | \
8190b308f14SSimon Glass		awk '/_image_copy_start/ {start = $$1} /_image_binary_end/ {end = $$1} END {if (start != "" && end != "") print "ibase=16; " toupper(end) " - " toupper(start)}' \
8203ce7a4feSChris Packham		| sed 's/0X//g' \
8210b308f14SSimon Glass		| bc); \
82289742924SSimon Glass	if [ "" != "$$map_size" ]; then \
82389742924SSimon Glass		if test $$map_size -ne $$file_size; then \
8243ce7a4feSChris Packham			echo "u-boot.map shows a binary size of $$map_size" >&2 ; \
82589742924SSimon Glass			echo "  but u-boot.bin shows $$file_size" >&2 ; \
82689742924SSimon Glass			exit 1; \
82789742924SSimon Glass		fi \
82889742924SSimon Glass	fi
82989742924SSimon Glass
830f9c235fdSMasahiro Yamadau-boot.bin: u-boot FORCE
831f9c235fdSMasahiro Yamada	$(call if_changed,objcopy)
8328137af19SScott Wood	$(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE))
833f3a14d37SMike Frysinger	$(BOARD_SIZE_CHECK)
8347ebf7443Swdenk
8359e414032SMasahiro Yamadau-boot.ldr:	u-boot
83676d82187SMike Frysinger		$(CREATE_LDR_ENV)
83768e56324SMike Frysinger		$(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
838f3a14d37SMike Frysinger		$(BOARD_SIZE_CHECK)
83994a91e24SMike Frysinger
840f9c235fdSMasahiro YamadaOBJCOPYFLAGS_u-boot.ldr.hex := -I binary -O ihex
84194a91e24SMike Frysinger
842f9c235fdSMasahiro YamadaOBJCOPYFLAGS_u-boot.ldr.srec := -I binary -O srec
843f9c235fdSMasahiro Yamada
844f9c235fdSMasahiro Yamadau-boot.ldr.hex u-boot.ldr.srec: u-boot.ldr FORCE
845f9c235fdSMasahiro Yamada	$(call if_changed,objcopy)
84694a91e24SMike Frysinger
847b40bda6bSStefan Roese#
848b40bda6bSStefan Roese# U-Boot entry point, needed for booting of full-blown U-Boot
849b40bda6bSStefan Roese# from the SPL U-Boot version.
850b40bda6bSStefan Roese#
851b40bda6bSStefan Roeseifndef CONFIG_SYS_UBOOT_START
852b40bda6bSStefan RoeseCONFIG_SYS_UBOOT_START := 0
853b40bda6bSStefan Roeseendif
854b40bda6bSStefan Roese
8559bf215b0SMasahiro YamadaMKIMAGEFLAGS_u-boot.img = -A $(ARCH) -T firmware -C none -O u-boot \
8569bf215b0SMasahiro Yamada	-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \
8579bf215b0SMasahiro Yamada	-n "U-Boot $(UBOOTRELEASE) for $(BOARD) board"
8589bf215b0SMasahiro Yamada
8594ab3fc5eSMasahiro YamadaMKIMAGEFLAGS_u-boot.kwb = -n $(srctree)/$(CONFIG_SYS_KWD_CONFIG:"%"=%) \
8604ab3fc5eSMasahiro Yamada	-T kwbimage -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE)
8619bf215b0SMasahiro Yamada
862e4536f8eSMasahiro YamadaMKIMAGEFLAGS_u-boot.pbl = -n $(srctree)/$(CONFIG_SYS_FSL_PBL_RCW:"%"=%) \
863e4536f8eSMasahiro Yamada		-R $(srctree)/$(CONFIG_SYS_FSL_PBL_PBI:"%"=%) -T pblimage
8649bf215b0SMasahiro Yamada
865d18926afSSimon Glassu-boot.img u-boot.kwb u-boot.pbl: u-boot.bin FORCE
8669bf215b0SMasahiro Yamada	$(call if_changed,mkimage)
867bdccc4feSwdenk
8682405d09cSMasahiro YamadaMKIMAGEFLAGS_u-boot-dtb.img = $(MKIMAGEFLAGS_u-boot.img)
8692405d09cSMasahiro Yamada
8702405d09cSMasahiro Yamadau-boot-dtb.img: u-boot-dtb.bin FORCE
8712405d09cSMasahiro Yamada	$(call if_changed,mkimage)
8722405d09cSMasahiro Yamada
8739e414032SMasahiro Yamadau-boot.sha1:	u-boot.bin
8749e414032SMasahiro Yamada		tools/ubsha1 u-boot.bin
875566a494fSHeiko Schocher
8769e414032SMasahiro Yamadau-boot.dis:	u-boot
8777ebf7443Swdenk		$(OBJDUMP) -d $< > $@
8787ebf7443Swdenk
8793aa29de0SYing Zhangifdef CONFIG_TPL
8809e414032SMasahiro YamadaSPL_PAYLOAD := tpl/u-boot-with-tpl.bin
8813aa29de0SYing Zhangelse
8829e414032SMasahiro YamadaSPL_PAYLOAD := u-boot.bin
8833aa29de0SYing Zhangendif
88474752baaSScott Wood
885982a1199SMasahiro YamadaOBJCOPYFLAGS_u-boot-with-spl.bin = -I binary -O binary \
886982a1199SMasahiro Yamada				   --pad-to=$(CONFIG_SPL_PAD_TO)
887982a1199SMasahiro Yamadau-boot-with-spl.bin: spl/u-boot-spl.bin $(SPL_PAYLOAD) FORCE
888982a1199SMasahiro Yamada	$(call if_changed,pad_cat)
8893aa29de0SYing Zhang
890982a1199SMasahiro YamadaOBJCOPYFLAGS_u-boot-with-tpl.bin = -I binary -O binary \
891982a1199SMasahiro Yamada				   --pad-to=$(CONFIG_TPL_PAD_TO)
892982a1199SMasahiro Yamadatpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin FORCE
893982a1199SMasahiro Yamada	$(call if_changed,pad_cat)
8947816f2cfSHeiko Schocher
895630d2345SMasahiro YamadaSPL: spl/u-boot-spl.bin FORCE
896630d2345SMasahiro Yamada	$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
897630d2345SMasahiro Yamada
898630d2345SMasahiro Yamadau-boot-with-spl.imx u-boot-with-nand-spl.imx: SPL u-boot.bin FORCE
8994e0c8abcSMasahiro Yamada	$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
9007d5a5c79SBenoît Thébaudeau
9019bf215b0SMasahiro YamadaMKIMAGEFLAGS_u-boot.ubl = -n $(UBL_CONFIG) -T ublimage -e $(CONFIG_SYS_TEXT_BASE)
9029bf215b0SMasahiro Yamada
9039bf215b0SMasahiro Yamadau-boot.ubl: u-boot-with-spl.bin FORCE
9049bf215b0SMasahiro Yamada	$(call if_changed,mkimage)
905277f00f5SJosé Miguel Gonçalves
906982a1199SMasahiro YamadaMKIMAGEFLAGS_u-boot-spl.ais = -s -n $(if $(CONFIG_AIS_CONFIG_FILE), \
907982a1199SMasahiro Yamada	$(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \
908982a1199SMasahiro Yamada	-T aisimage -e $(CONFIG_SPL_TEXT_BASE)
909982a1199SMasahiro Yamadaspl/u-boot-spl.ais: spl/u-boot-spl.bin FORCE
910982a1199SMasahiro Yamada	$(call if_changed,mkimage)
911d36d8859SChristian Riesch
912532d5318SChristian RieschOBJCOPYFLAGS_u-boot.ais = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
913982a1199SMasahiro Yamadau-boot.ais: spl/u-boot-spl.ais u-boot.img FORCE
914982a1199SMasahiro Yamada	$(call if_changed,pad_cat)
915a5453555SOtavio Salvador
9161a9df13dSMarek Vasutu-boot-signed.sb: u-boot.bin spl/u-boot-spl.bin
9171a9df13dSMarek Vasut	$(Q)$(MAKE) $(build)=arch/arm/cpu/arm926ejs/mxs u-boot-signed.sb
9189e414032SMasahiro Yamadau-boot.sb: u-boot.bin spl/u-boot-spl.bin
91907e27ce0SMasahiro Yamada	$(Q)$(MAKE) $(build)=arch/arm/cpu/arm926ejs/mxs u-boot.sb
92030b9b932SMarek Vasut
92194aebe6cSStefan Roese# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
92294aebe6cSStefan Roese# Both images are created using mkimage (crc etc), so that the ROM
92394aebe6cSStefan Roese# bootloader can check its integrity. Padding needs to be done to the
92494aebe6cSStefan Roese# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
92594aebe6cSStefan Roese# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
92694aebe6cSStefan Roese# The resulting image containing both U-Boot images is called u-boot.spr
927982a1199SMasahiro YamadaMKIMAGEFLAGS_u-boot-spl.img = -A $(ARCH) -T firmware -C none \
928982a1199SMasahiro Yamada	-a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER
929982a1199SMasahiro Yamadaspl/u-boot-spl.img: spl/u-boot-spl.bin FORCE
930982a1199SMasahiro Yamada	$(call if_changed,mkimage)
931982a1199SMasahiro Yamada
932982a1199SMasahiro YamadaOBJCOPYFLAGS_u-boot.spr = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) \
933982a1199SMasahiro Yamada			  --gap-fill=0xff
934982a1199SMasahiro Yamadau-boot.spr: spl/u-boot-spl.img u-boot.img FORCE
935982a1199SMasahiro Yamada	$(call if_changed,pad_cat)
93694aebe6cSStefan Roese
937ef509b90SVitaly AndrianovMKIMAGEFLAGS_u-boot-spl.gph = -A $(ARCH) -T gpimage -C none \
938ef509b90SVitaly Andrianov	-a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n SPL
939ef509b90SVitaly Andrianovspl/u-boot-spl.gph: spl/u-boot-spl.bin FORCE
940ef509b90SVitaly Andrianov	$(call if_changed,mkimage)
941ef509b90SVitaly Andrianov
942ef509b90SVitaly AndrianovOBJCOPYFLAGS_u-boot-spi.gph = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) \
943ef509b90SVitaly Andrianov			  --gap-fill=0
944ef509b90SVitaly Andrianovu-boot-spi.gph: spl/u-boot-spl.gph u-boot.img FORCE
945ef509b90SVitaly Andrianov	$(call if_changed,pad_cat)
946ef509b90SVitaly Andrianov
9470e7f2dbaSKhoronzhuk, IvanMKIMAGEFLAGS_u-boot-nand.gph = -A $(ARCH) -T gpimage -C none \
9480e7f2dbaSKhoronzhuk, Ivan	-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -n U-Boot
9490e7f2dbaSKhoronzhuk, Ivanu-boot-nand.gph: u-boot.bin FORCE
9500e7f2dbaSKhoronzhuk, Ivan	$(call if_changed,mkimage)
9510e7f2dbaSKhoronzhuk, Ivan	@dd if=/dev/zero bs=8 count=1 2>/dev/null >> $@
9520e7f2dbaSKhoronzhuk, Ivan
95350827a59SIan Campbellifneq ($(CONFIG_SUNXI),)
95450827a59SIan CampbellOBJCOPYFLAGS_u-boot-sunxi-with-spl.bin = -I binary -O binary \
95550827a59SIan Campbell				   --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff
95657f878efSSimon Glassu-boot-sunxi-with-spl.bin: spl/sunxi-spl.bin \
95757f878efSSimon Glass			u-boot$(if $(CONFIG_OF_CONTROL),-dtb,).img FORCE
95850827a59SIan Campbell	$(call if_changed,pad_cat)
95950827a59SIan Campbellendif
96050827a59SIan Campbell
9616d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),)
962982a1199SMasahiro YamadaOBJCOPYFLAGS_u-boot-nodtb-tegra.bin = -O binary --pad-to=$(CONFIG_SYS_TEXT_BASE)
963982a1199SMasahiro Yamadau-boot-nodtb-tegra.bin: spl/u-boot-spl u-boot.bin FORCE
964982a1199SMasahiro Yamada	$(call if_changed,pad_cat)
9659972db5cSStephen Warren
9669972db5cSStephen Warrenifeq ($(CONFIG_OF_SEPARATE),y)
967ee0acfa2SMasahiro Yamadau-boot-dtb-tegra.bin: u-boot-nodtb-tegra.bin dts/dt.dtb FORCE
968ee0acfa2SMasahiro Yamada	$(call if_changed,cat)
9699972db5cSStephen Warrenendif
970984df4ecSAllen Martinendif
971984df4ecSAllen Martin
972ee0acfa2SMasahiro Yamadau-boot-img.bin: spl/u-boot-spl.bin u-boot.img FORCE
973ee0acfa2SMasahiro Yamada	$(call if_changed,cat)
974fb3d2b8aSStefan Roese
97589ad7be8SPrabhakar Kushwaha#Add a target to create boot binary having SPL binary in PBI format
97689ad7be8SPrabhakar Kushwaha#concatenated with u-boot binary. It is need by PowerPC SoC having
97789ad7be8SPrabhakar Kushwaha#internal SRAM <= 512KB.
97889ad7be8SPrabhakar KushwahaMKIMAGEFLAGS_u-boot-spl.pbl = -n $(srctree)/$(CONFIG_SYS_FSL_PBL_RCW:"%"=%) \
97989ad7be8SPrabhakar Kushwaha		-R $(srctree)/$(CONFIG_SYS_FSL_PBL_PBI:"%"=%) -T pblimage
98089ad7be8SPrabhakar Kushwaha
98189ad7be8SPrabhakar Kushwahaspl/u-boot-spl.pbl: spl/u-boot-spl.bin FORCE
98289ad7be8SPrabhakar Kushwaha	$(call if_changed,mkimage)
98389ad7be8SPrabhakar Kushwaha
98489ad7be8SPrabhakar KushwahaOBJCOPYFLAGS_u-boot-with-spl-pbl.bin = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) \
98589ad7be8SPrabhakar Kushwaha			  --gap-fill=0xff
98689ad7be8SPrabhakar Kushwaha
98789ad7be8SPrabhakar Kushwahau-boot-with-spl-pbl.bin: spl/u-boot-spl.pbl u-boot.bin FORCE
98889ad7be8SPrabhakar Kushwaha	$(call if_changed,pad_cat)
98989ad7be8SPrabhakar Kushwaha
990ecddccd0SStefan Roese# PPC4xx needs the SPL at the end of the image, since the reset vector
991ecddccd0SStefan Roese# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
992ecddccd0SStefan Roese# and need to introduce a new build target with the full blown U-Boot
993ecddccd0SStefan Roese# at the start padded up to the start of the SPL image. And then concat
994ecddccd0SStefan Roese# the SPL image to the end.
995982a1199SMasahiro Yamada
996982a1199SMasahiro YamadaOBJCOPYFLAGS_u-boot-img-spl-at-end.bin := -I binary -O binary \
997982a1199SMasahiro Yamada	--pad-to=$(CONFIG_UBOOT_PAD_TO) --gap-fill=0xff
998982a1199SMasahiro Yamadau-boot-img-spl-at-end.bin: u-boot.img spl/u-boot-spl.bin FORCE
999982a1199SMasahiro Yamada	$(call if_changed,pad_cat)
1000ecddccd0SStefan Roese
1001f4dc714aSScott Wood# Create a new ELF from a raw binary file.  This is useful for arm64
1002f4dc714aSScott Wood# where static relocation needs to be performed on the raw binary,
1003f4dc714aSScott Wood# but certain simulators only accept an ELF file (but don't do the
1004f4dc714aSScott Wood# relocation).
1005f4dc714aSScott Wood# FIXME refactor dts/Makefile to share target/arch detection
10069e414032SMasahiro Yamadau-boot.elf: u-boot.bin
1007f4dc714aSScott Wood	@$(OBJCOPY)  -B aarch64 -I binary -O elf64-littleaarch64 \
10089e414032SMasahiro Yamada		$< u-boot-elf.o
10099e414032SMasahiro Yamada	@$(LD) u-boot-elf.o -o $@ \
1010f4dc714aSScott Wood		--defsym=_start=$(CONFIG_SYS_TEXT_BASE) \
1011f4dc714aSScott Wood		-Ttext=$(CONFIG_SYS_TEXT_BASE)
1012f4dc714aSScott Wood
1013ad0fed46SMasahiro Yamada# Rule to link u-boot
1014ad0fed46SMasahiro Yamada# May be overridden by arch/$(ARCH)/config.mk
1015ad0fed46SMasahiro Yamadaquiet_cmd_u-boot__ ?= LD      $@
1016ad0fed46SMasahiro Yamada      cmd_u-boot__ ?= $(LD) $(LDFLAGS) $(LDFLAGS_u-boot) -o $@ \
1017ad0fed46SMasahiro Yamada      -T u-boot.lds $(u-boot-init)                             \
1018ad0fed46SMasahiro Yamada      --start-group $(u-boot-main) --end-group                 \
1019ad0fed46SMasahiro Yamada      $(PLATFORM_LIBS) -Map u-boot.map
102086eb49b3SSimon Glass
1021cac8f38aSVasili Galkaquiet_cmd_smap = GEN     common/system_map.o
1022cac8f38aSVasili Galkacmd_smap = \
10239e414032SMasahiro Yamada	smap=`$(call SYSTEM_MAP,u-boot) | \
10241aada9cdSWolfgang Denk		awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
10256825a95bSMasahiro Yamada	$(CC) $(c_flags) -DSYSTEM_MAP="\"$${smap}\"" \
10269e414032SMasahiro Yamada		-c $(srctree)/common/system_map.c -o common/system_map.o
1027cac8f38aSVasili Galka
1028cac8f38aSVasili Galkau-boot:	$(u-boot-init) $(u-boot-main) u-boot.lds
1029cac8f38aSVasili Galka	$(call if_changed,u-boot__)
1030cac8f38aSVasili Galkaifeq ($(CONFIG_KALLSYMS),y)
1031cac8f38aSVasili Galka	$(call cmd,smap)
1032ad0fed46SMasahiro Yamada	$(call cmd,u-boot__) common/system_map.o
1033ecb1dc89SMike Frysingerendif
10347ebf7443Swdenk
1035656de6b8SMasahiro Yamada# The actual objects are generated when descending,
1036656de6b8SMasahiro Yamada# make sure no implicit rule kicks in
1037656de6b8SMasahiro Yamada$(sort $(u-boot-init) $(u-boot-main)): $(u-boot-dirs) ;
1038f9328639SMarian Balakowicz
1039656de6b8SMasahiro Yamada# Handle descending into subdirectories listed in $(vmlinux-dirs)
1040656de6b8SMasahiro Yamada# Preset locale variables to speed up the build process. Limit locale
1041656de6b8SMasahiro Yamada# tweaks to this spot to avoid wrong language settings when running
1042656de6b8SMasahiro Yamada# make menuconfig etc.
1043656de6b8SMasahiro Yamada# Error messages still appears in the original language
1044a8c7c708Swdenk
1045656de6b8SMasahiro YamadaPHONY += $(u-boot-dirs)
10466378008aSMasahiro Yamada$(u-boot-dirs): prepare scripts
10476825a95bSMasahiro Yamada	$(Q)$(MAKE) $(build)=$@
1048940db16dSMasahiro Yamada
10497424145fSMasahiro Yamadatools: prepare
1050656de6b8SMasahiro Yamada# The "tools" are needed early
1051656de6b8SMasahiro Yamada$(filter-out tools, $(u-boot-dirs)): tools
1052656de6b8SMasahiro Yamada# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
1053656de6b8SMasahiro Yamada# is "yes"), so compile examples after U-Boot is compiled.
1054656de6b8SMasahiro Yamadaexamples: $(filter-out examples, $(u-boot-dirs))
1055656de6b8SMasahiro Yamada
10567424145fSMasahiro Yamadadefine filechk_uboot.release
10577424145fSMasahiro Yamada	echo "$(UBOOTVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
10587424145fSMasahiro Yamadaendef
10597424145fSMasahiro Yamada
10607424145fSMasahiro Yamada# Store (new) UBOOTRELEASE string in include/config/uboot.release
106151148790SMasahiro Yamadainclude/config/uboot.release: include/config/auto.conf FORCE
10627424145fSMasahiro Yamada	$(call filechk,uboot.release)
10637424145fSMasahiro Yamada
10647424145fSMasahiro Yamada
10653341bfecSMasahiro Yamada# Things we need to do before we recursively start building the kernel
10663341bfecSMasahiro Yamada# or the modules are listed in "prepare".
10673341bfecSMasahiro Yamada# A multi level approach is used. prepareN is processed before prepareN-1.
10683341bfecSMasahiro Yamada# archprepare is used in arch Makefiles and when processed asm symlink,
10693341bfecSMasahiro Yamada# version.h and scripts_basic is processed / created.
10703341bfecSMasahiro Yamada
10713341bfecSMasahiro Yamada# Listed in dependency order
10723341bfecSMasahiro YamadaPHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3
10733341bfecSMasahiro Yamada
10743341bfecSMasahiro Yamada# prepare3 is used to check if we are building in a separate output directory,
10753341bfecSMasahiro Yamada# and if so do:
10763341bfecSMasahiro Yamada# 1) Check that make has not been executed in the kernel src $(srctree)
10777424145fSMasahiro Yamadaprepare3: include/config/uboot.release
10783341bfecSMasahiro Yamadaifneq ($(KBUILD_SRC),)
107951148790SMasahiro Yamada	@$(kecho) '  Using $(srctree) as source for U-Boot'
108051148790SMasahiro Yamada	$(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
10813341bfecSMasahiro Yamada		echo >&2 "  $(srctree) is not clean, please run 'make mrproper'"; \
10823341bfecSMasahiro Yamada		echo >&2 "  in the '$(srctree)' directory.";\
10833341bfecSMasahiro Yamada		/bin/false; \
10843341bfecSMasahiro Yamada	fi;
10853341bfecSMasahiro Yamadaendif
10863341bfecSMasahiro Yamada
10873341bfecSMasahiro Yamada# prepare2 creates a makefile if using a separate output directory
10883341bfecSMasahiro Yamadaprepare2: prepare3 outputmakefile
10893341bfecSMasahiro Yamada
109051148790SMasahiro Yamadaprepare1: prepare2 $(version_h) $(timestamp_h) \
109151148790SMasahiro Yamada                   include/config/auto.conf
1092331b45fbSMasahiro Yamadaifeq ($(__HAVE_ARCH_GENERIC_BOARD),)
1093331b45fbSMasahiro Yamadaifeq ($(CONFIG_SYS_GENERIC_BOARD),y)
1094331b45fbSMasahiro Yamada	@echo >&2 "  Your architecture does not support generic board."
1095331b45fbSMasahiro Yamada	@echo >&2 "  Please undefine CONFIG_SYS_GENERIC_BOARD in your board config file."
1096331b45fbSMasahiro Yamada	@/bin/false
1097331b45fbSMasahiro Yamadaendif
1098331b45fbSMasahiro Yamadaendif
10994a377552SMasahiro Yamadaifeq ($(wildcard $(LDSCRIPT)),)
11004a377552SMasahiro Yamada	@echo >&2 "  Could not find linker script."
11014a377552SMasahiro Yamada	@/bin/false
11024a377552SMasahiro Yamadaendif
11037ebf7443Swdenk
11043341bfecSMasahiro Yamadaarchprepare: prepare1 scripts_basic
1105a8c7c708Swdenk
11066a44d806SMasahiro Yamadaprepare0: archprepare FORCE
11076a44d806SMasahiro Yamada	$(Q)$(MAKE) $(build)=.
11087ebf7443Swdenk
11093341bfecSMasahiro Yamada# All the preparing..
11103341bfecSMasahiro Yamadaprepare: prepare0
1111349e83f0SChe-liang Chiou
11127424145fSMasahiro Yamada# Generate some files
11137424145fSMasahiro Yamada# ---------------------------------------------------------------------------
11147424145fSMasahiro Yamada
11157424145fSMasahiro Yamadadefine filechk_version.h
11167424145fSMasahiro Yamada	(echo \#define PLAIN_VERSION \"$(UBOOTRELEASE)\"; \
11177424145fSMasahiro Yamada	echo \#define U_BOOT_VERSION \"U-Boot \" PLAIN_VERSION; \
11187424145fSMasahiro Yamada	echo \#define CC_VERSION_STRING \"$$($(CC) --version | head -n 1)\"; \
11197424145fSMasahiro Yamada	echo \#define LD_VERSION_STRING \"$$($(LD) --version | head -n 1)\"; )
11207424145fSMasahiro Yamadaendef
11217424145fSMasahiro Yamada
11227424145fSMasahiro Yamadadefine filechk_timestamp.h
11237424145fSMasahiro Yamada	(LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"'; \
11247424145fSMasahiro Yamada	LC_ALL=C date +'#define U_BOOT_TIME "%T"')
11257424145fSMasahiro Yamadaendef
11267424145fSMasahiro Yamada
11272e6b2f6aSMasahiro Yamada$(version_h): include/config/uboot.release FORCE
11287424145fSMasahiro Yamada	$(call filechk,version.h)
11297424145fSMasahiro Yamada
11307424145fSMasahiro Yamada$(timestamp_h): $(srctree)/Makefile FORCE
11317424145fSMasahiro Yamada	$(call filechk,timestamp.h)
11327424145fSMasahiro Yamada
11336378008aSMasahiro Yamada# ---------------------------------------------------------------------------
11346378008aSMasahiro Yamada
11356378008aSMasahiro YamadaPHONY += depend dep
11366378008aSMasahiro Yamadadepend dep:
11376378008aSMasahiro Yamada	@echo '*** Warning: make $@ is unnecessary now.'
11386378008aSMasahiro Yamada
11396378008aSMasahiro Yamada# ---------------------------------------------------------------------------
114004a34c96SMasahiro Yamadaquiet_cmd_cpp_lds = LDS     $@
1141395e60cdSMasahiro Yamadacmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
1142395e60cdSMasahiro Yamada		-D__ASSEMBLY__ -x assembler-with-cpp -P -o $@ $<
11436378008aSMasahiro Yamada
114404a34c96SMasahiro Yamadau-boot.lds: $(LDSCRIPT) prepare FORCE
1145395e60cdSMasahiro Yamada	$(call if_changed_dep,cpp_lds)
11461aada9cdSWolfgang Denk
1147982a1199SMasahiro Yamadaspl/u-boot-spl.bin: spl/u-boot-spl
1148982a1199SMasahiro Yamada	@:
1149982a1199SMasahiro Yamadaspl/u-boot-spl: tools prepare
1150c7163083SMasahiro Yamada	$(Q)$(MAKE) obj=spl -f $(srctree)/scripts/Makefile.spl all
11515df2ee27SDaniel Schwierzeck
115250827a59SIan Campbellspl/sunxi-spl.bin: spl/u-boot-spl
115350827a59SIan Campbell	@:
115450827a59SIan Campbell
11556378008aSMasahiro Yamadatpl/u-boot-tpl.bin: tools prepare
115651148790SMasahiro Yamada	$(Q)$(MAKE) obj=tpl -f $(srctree)/scripts/Makefile.spl all
11573aa29de0SYing Zhang
11588d819ab5SIgor GrinbergTAG_SUBDIRS := $(patsubst %,$(srctree)/%,$(u-boot-dirs) include)
1159a340c325SJean-Christophe PLAGNIOL-VILLARD
1160857d9ea6SHorst KronstorferFIND := find
1161857d9ea6SHorst KronstorferFINDFLAGS := -L
1162857d9ea6SHorst Kronstorfer
1163f9328639SMarian Balakowicztags ctags:
11649e414032SMasahiro Yamada		ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
1165e5e4e705SLi Yang						-name '*.[chS]' -print`
11667ebf7443Swdenk
11677ebf7443Swdenketags:
11688d819ab5SIgor Grinberg		etags -a -o etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
1169e5e4e705SLi Yang						-name '*.[chS]' -print`
1170ffda586fSLi Yangcscope:
1171857d9ea6SHorst Kronstorfer		$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
1172857d9ea6SHorst Kronstorfer						cscope.files
1173ffda586fSLi Yang		cscope -b -q -k
11747ebf7443Swdenk
1175ecb1dc89SMike FrysingerSYSTEM_MAP = \
1176ecb1dc89SMike Frysinger		$(NM) $1 | \
11777ebf7443Swdenk		grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
1178ecb1dc89SMike Frysinger		LC_ALL=C sort
11799e414032SMasahiro YamadaSystem.map:	u-boot
1180bc8bb6ecSMasahiro Yamada		@$(call SYSTEM_MAP,$<) > $@
11817ebf7443Swdenk
1182501ebdf2SStephen Warrencheckdtc:
1183501ebdf2SStephen Warren	@if test $(call dtc-version) -lt 0104; then \
1184501ebdf2SStephen Warren		echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \
1185501ebdf2SStephen Warren		false; \
1186501ebdf2SStephen Warren	fi
1187501ebdf2SStephen Warren
11887ebf7443Swdenk#########################################################################
11897ebf7443Swdenk
119054799e45SScott Wood# ARM relocations should all be R_ARM_RELATIVE (32-bit) or
119154799e45SScott Wood# R_AARCH64_RELATIVE (64-bit).
11929e414032SMasahiro Yamadacheckarmreloc: u-boot
119354799e45SScott Wood	@RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \
119454799e45SScott Wood		grep R_A | sort -u`"; \
119554799e45SScott Wood	if test "$$RELOC" != "R_ARM_RELATIVE" -a \
119654799e45SScott Wood		 "$$RELOC" != "R_AARCH64_RELATIVE"; then \
119754799e45SScott Wood		echo "$< contains unexpected relocations: $$RELOC"; \
119854799e45SScott Wood		false; \
119954799e45SScott Wood	fi
1200c37980c3SAlbert ARIBAUD
12017424145fSMasahiro Yamadaenv: scripts_basic
12023f76e984SMasahiro Yamada	$(Q)$(MAKE) $(build)=tools/$@
12030358df42SMike Frysinger
12044642e002SMasahiro Yamadatools-only: scripts_basic $(version_h) $(timestamp_h)
12054642e002SMasahiro Yamada	$(Q)$(MAKE) $(build)=tools
12064642e002SMasahiro Yamada
12071ec8b4efSMasahiro Yamadatools-all: export HOST_TOOLS_ALL=y
12082887c473SMasahiro Yamadatools-all: env tools ;
12090358df42SMike Frysinger
1210db5b339cSMasahiro Yamadacross_tools: export CROSS_BUILD_TOOLS=y
1211db5b339cSMasahiro Yamadacross_tools: tools ;
1212db5b339cSMasahiro Yamada
12134e53a258SWolfgang Denk.PHONY : CHANGELOG
12144e53a258SWolfgang DenkCHANGELOG:
1215b985b5d6SBen Warren	git log --no-merges U-Boot-1_1_5.. | \
1216b985b5d6SBen Warren	unexpand -a | sed -e 's/\s\s*$$//' > $@
12174e53a258SWolfgang Denk
12180a823aa2SHarald Welteinclude/license.h: tools/bin2header COPYING
12190a823aa2SHarald Welte	cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
12207ebf7443Swdenk#########################################################################
12217ebf7443Swdenk
1222efcf8619SMasahiro Yamada###
1223efcf8619SMasahiro Yamada# Cleaning is done on three levels.
1224efcf8619SMasahiro Yamada# make clean     Delete most generated files
1225efcf8619SMasahiro Yamada#                Leave enough to build external modules
1226efcf8619SMasahiro Yamada# make mrproper  Delete the current configuration, and all generated files
1227efcf8619SMasahiro Yamada# make distclean Remove editor backup files, patch leftover files and the like
12287ebf7443Swdenk
1229efcf8619SMasahiro Yamada# Directories & files removed with 'make clean'
1230efcf8619SMasahiro YamadaCLEAN_DIRS  += $(MODVERDIR)
123151148790SMasahiro YamadaCLEAN_FILES += u-boot.lds include/bmp_logo.h include/bmp_logo_data.h
1232a6862bc1SWolfgang Denk
1233efcf8619SMasahiro Yamada# Directories & files removed with 'make clobber'
123451148790SMasahiro YamadaCLOBBER_DIRS  += $(foreach d, spl tpl, $(patsubst %,$d/%, \
123551148790SMasahiro Yamada			$(filter-out include, $(shell ls -1 $d 2>/dev/null))))
123666948c25SMasahiro YamadaCLOBBER_FILES += u-boot* MLO* SPL System.map
12379f4a4206SMike Frysinger
1238efcf8619SMasahiro Yamada# Directories & files removed with 'make mrproper'
123951148790SMasahiro YamadaMRPROPER_DIRS  += include/config include/generated spl tpl \
1240598e2d33SMasahiro Yamada		  .tmp_objdiff
124151148790SMasahiro YamadaMRPROPER_FILES += .config .config.old include/autoconf.mk* include/config.h \
124251148790SMasahiro Yamada		  ctags etags TAGS cscope* GPATH GTAGS GRTAGS GSYMS
12437ebf7443Swdenk
1244efcf8619SMasahiro Yamada# clean - Delete most, but leave enough to build external modules
1245efcf8619SMasahiro Yamada#
1246efcf8619SMasahiro Yamadaclean: rm-dirs  := $(CLEAN_DIRS)
1247efcf8619SMasahiro Yamadaclean: rm-files := $(CLEAN_FILES)
12487ebf7443Swdenk
12496bd04bb4SMasahiro Yamadaclean-dirs	:= $(foreach f,$(u-boot-alldirs),$(if $(wildcard $(srctree)/$f/Makefile),$f))
1250734329f9SAndy Fleming
1251efcf8619SMasahiro Yamadaclean-dirs      := $(addprefix _clean_, $(clean-dirs) doc/DocBook)
12527ebf7443Swdenk
1253efcf8619SMasahiro YamadaPHONY += $(clean-dirs) clean archclean
1254efcf8619SMasahiro Yamada$(clean-dirs):
1255efcf8619SMasahiro Yamada	$(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1256efcf8619SMasahiro Yamada
1257efcf8619SMasahiro Yamada# TODO: Do not use *.cfgtmp
1258efcf8619SMasahiro Yamadaclean: $(clean-dirs)
1259efcf8619SMasahiro Yamada	$(call cmd,rmdirs)
1260efcf8619SMasahiro Yamada	$(call cmd,rmfiles)
1261efcf8619SMasahiro Yamada	@find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
1262efcf8619SMasahiro Yamada		\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
1263efcf8619SMasahiro Yamada		-o -name '*.ko.*' -o -name '*.su' -o -name '*.cfgtmp' \
1264efcf8619SMasahiro Yamada		-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
1265efcf8619SMasahiro Yamada		-o -name '*.symtypes' -o -name 'modules.order' \
1266efcf8619SMasahiro Yamada		-o -name modules.builtin -o -name '.tmp_*.o.*' \
1267efcf8619SMasahiro Yamada		-o -name '*.gcno' \) -type f -print | xargs rm -f
1268efcf8619SMasahiro Yamada
1269efcf8619SMasahiro Yamada# clobber
1270efcf8619SMasahiro Yamada#
1271efcf8619SMasahiro Yamadaclobber: rm-dirs  := $(CLOBBER_DIRS)
1272efcf8619SMasahiro Yamadaclobber: rm-files := $(CLOBBER_FILES)
1273efcf8619SMasahiro Yamada
1274efcf8619SMasahiro YamadaPHONY += clobber
1275efcf8619SMasahiro Yamada
1276efcf8619SMasahiro Yamadaclobber: clean
1277efcf8619SMasahiro Yamada	$(call cmd,rmdirs)
1278efcf8619SMasahiro Yamada	$(call cmd,rmfiles)
1279efcf8619SMasahiro Yamada
1280efcf8619SMasahiro Yamada# mrproper - Delete all generated files, including .config
1281efcf8619SMasahiro Yamada#
1282efcf8619SMasahiro Yamadamrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
1283efcf8619SMasahiro Yamadamrproper: rm-files := $(wildcard $(MRPROPER_FILES))
1284efcf8619SMasahiro Yamadamrproper-dirs      := $(addprefix _mrproper_,scripts)
1285efcf8619SMasahiro Yamada
1286efcf8619SMasahiro YamadaPHONY += $(mrproper-dirs) mrproper archmrproper
1287efcf8619SMasahiro Yamada$(mrproper-dirs):
1288efcf8619SMasahiro Yamada	$(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
1289efcf8619SMasahiro Yamada
1290efcf8619SMasahiro Yamadamrproper: clobber $(mrproper-dirs)
1291efcf8619SMasahiro Yamada	$(call cmd,rmdirs)
1292efcf8619SMasahiro Yamada	$(call cmd,rmfiles)
1293e9c16a80SMasahiro Yamada	@rm -f arch/*/include/asm/arch
1294efcf8619SMasahiro Yamada
1295efcf8619SMasahiro Yamada# distclean
1296efcf8619SMasahiro Yamada#
1297efcf8619SMasahiro YamadaPHONY += distclean
1298efcf8619SMasahiro Yamada
1299433b2f1eSMasahiro Yamadadistclean: mrproper
1300efcf8619SMasahiro Yamada	@find $(srctree) $(RCS_FIND_IGNORE) \
1301efcf8619SMasahiro Yamada		\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
1302efcf8619SMasahiro Yamada		-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
1303598e2d33SMasahiro Yamada		-o -name '.*.rej' -o -name '*%' -o -name 'core' \
1304598e2d33SMasahiro Yamada		-o -name '*.pyc' \) \
1305efcf8619SMasahiro Yamada		-type f -print | xargs rm -f
1306fd18a89eSRoger Meier	@rm -f boards.cfg
13077ebf7443Swdenk
13087ebf7443Swdenkbackup:
13094379ac61SMasahiro Yamada	F=`basename $(srctree)` ; cd .. ; \
1310d6b93714SIlya Yanok	gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
13117ebf7443Swdenk
1312ed1ca528SMasahiro Yamadahelp:
1313ed1ca528SMasahiro Yamada	@echo  'Cleaning targets:'
1314ed1ca528SMasahiro Yamada	@echo  '  clean		  - Remove most generated files but keep the config and'
1315ed1ca528SMasahiro Yamada	@echo  '                    necessities for testing u-boot'
1316ed1ca528SMasahiro Yamada	@echo  '  clobber	  - Remove most generated files but keep the config'
1317ed1ca528SMasahiro Yamada	@echo  '  mrproper	  - Remove all generated files + config + various backup files'
1318ed1ca528SMasahiro Yamada	@echo  '  distclean	  - mrproper + remove editor backup and patch files'
1319ed1ca528SMasahiro Yamada	@echo  ''
132051148790SMasahiro Yamada	@echo  'Configuration targets:'
132151148790SMasahiro Yamada	@$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
132251148790SMasahiro Yamada	@echo  ''
1323ed1ca528SMasahiro Yamada	@echo  'Other generic targets:'
1324ed1ca528SMasahiro Yamada	@echo  '  all		  - Build all necessary images depending on configuration'
1325ed1ca528SMasahiro Yamada	@echo  '  u-boot	  - Build the bare u-boot'
1326ed1ca528SMasahiro Yamada	@echo  '  dir/            - Build all files in dir and below'
1327ed1ca528SMasahiro Yamada	@echo  '  dir/file.[oisS] - Build specified target only'
1328ed1ca528SMasahiro Yamada	@echo  '  dir/file.lst    - Build specified mixed source/assembly target only'
1329ed1ca528SMasahiro Yamada	@echo  '                    (requires a recent binutils and recent build (System.map))'
13305fc2f924SIgor Grinberg	@echo  '  tags/ctags	  - Generate ctags file for editors'
13315fc2f924SIgor Grinberg	@echo  '  etags		  - Generate etags file for editors'
1332ed1ca528SMasahiro Yamada	@echo  '  cscope	  - Generate cscope index'
1333ed1ca528SMasahiro Yamada	@echo  '  ubootrelease	  - Output the release version string'
1334ed1ca528SMasahiro Yamada	@echo  '  ubootversion	  - Output the version stored in Makefile'
1335ed1ca528SMasahiro Yamada	@echo  ''
1336ed1ca528SMasahiro Yamada	@echo  'Static analysers'
1337ed1ca528SMasahiro Yamada	@echo  '  checkstack      - Generate a list of stack hogs'
1338ed1ca528SMasahiro Yamada	@echo  ''
1339ed1ca528SMasahiro Yamada	@echo  'Documentation targets:'
1340ed1ca528SMasahiro Yamada	@$(MAKE) -f $(srctree)/doc/DocBook/Makefile dochelp
1341ed1ca528SMasahiro Yamada	@echo  ''
1342ed1ca528SMasahiro Yamada	@echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
1343ed1ca528SMasahiro Yamada	@echo  '  make V=2   [targets] 2 => give reason for rebuild of target'
1344ed1ca528SMasahiro Yamada	@echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
1345ed1ca528SMasahiro Yamada	@echo  '  make C=1   [targets] Check all c source with $$CHECK (sparse by default)'
1346ed1ca528SMasahiro Yamada	@echo  '  make C=2   [targets] Force check of all c source with $$CHECK'
1347ed1ca528SMasahiro Yamada	@echo  '  make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections'
1348ed1ca528SMasahiro Yamada	@echo  '  make W=n   [targets] Enable extra gcc checks, n=1,2,3 where'
1349ed1ca528SMasahiro Yamada	@echo  '		1: warnings which may be relevant and do not occur too often'
1350ed1ca528SMasahiro Yamada	@echo  '		2: warnings which occur quite often but may still be relevant'
1351ed1ca528SMasahiro Yamada	@echo  '		3: more obscure warnings, can most likely be ignored'
1352ed1ca528SMasahiro Yamada	@echo  '		Multiple levels can be combined with W=12 or W=123'
1353ed1ca528SMasahiro Yamada	@echo  ''
1354ed1ca528SMasahiro Yamada	@echo  'Execute "make" or "make all" to build all targets marked with [*] '
1355ed1ca528SMasahiro Yamada	@echo  'For further info see the ./README file'
1356ed1ca528SMasahiro Yamada
13578fac9c7bSMasahiro Yamada
13588fac9c7bSMasahiro Yamada# Documentation targets
13598fac9c7bSMasahiro Yamada# ---------------------------------------------------------------------------
13608fac9c7bSMasahiro Yamada%docs: scripts_basic FORCE
13618fac9c7bSMasahiro Yamada	$(Q)$(MAKE) $(build)=scripts build_docproc
13628fac9c7bSMasahiro Yamada	$(Q)$(MAKE) $(build)=doc/DocBook $@
13638fac9c7bSMasahiro Yamada
13643341bfecSMasahiro Yamada# Dummies...
13653341bfecSMasahiro YamadaPHONY += prepare scripts
13663341bfecSMasahiro Yamadaprepare: ;
13673341bfecSMasahiro Yamadascripts: ;
13689e414032SMasahiro Yamada
1369433b2f1eSMasahiro Yamadaendif #ifeq ($(config-targets),1)
1370433b2f1eSMasahiro Yamadaendif #ifeq ($(mixed-targets),1)
1371433b2f1eSMasahiro Yamada
1372ed1ca528SMasahiro YamadaPHONY += checkstack ubootrelease ubootversion
1373ed1ca528SMasahiro Yamada
1374ed1ca528SMasahiro Yamadacheckstack:
1375ed1ca528SMasahiro Yamada	$(OBJDUMP) -d u-boot $$(find . -name u-boot-spl) | \
1376ed1ca528SMasahiro Yamada	$(PERL) $(src)/scripts/checkstack.pl $(ARCH)
1377ed1ca528SMasahiro Yamada
1378ed1ca528SMasahiro Yamadaubootrelease:
1379ed1ca528SMasahiro Yamada	@echo "$(UBOOTVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
1380ed1ca528SMasahiro Yamada
1381ed1ca528SMasahiro Yamadaubootversion:
1382ed1ca528SMasahiro Yamada	@echo $(UBOOTVERSION)
1383ed1ca528SMasahiro Yamada
1384886d86e8SMasahiro Yamada# Single targets
1385886d86e8SMasahiro Yamada# ---------------------------------------------------------------------------
1386886d86e8SMasahiro Yamada# Single targets are compatible with:
1387886d86e8SMasahiro Yamada# - build with mixed source and output
1388886d86e8SMasahiro Yamada# - build with separate output dir 'make O=...'
1389886d86e8SMasahiro Yamada# - external modules
1390886d86e8SMasahiro Yamada#
1391886d86e8SMasahiro Yamada#  target-dir => where to store outputfile
1392886d86e8SMasahiro Yamada#  build-dir  => directory in kernel source tree to use
1393886d86e8SMasahiro Yamada
1394886d86e8SMasahiro Yamadaifeq ($(KBUILD_EXTMOD),)
1395886d86e8SMasahiro Yamada        build-dir  = $(patsubst %/,%,$(dir $@))
1396886d86e8SMasahiro Yamada        target-dir = $(dir $@)
1397886d86e8SMasahiro Yamadaelse
1398886d86e8SMasahiro Yamada        zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
1399886d86e8SMasahiro Yamada        build-dir  = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash))
1400886d86e8SMasahiro Yamada        target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@))
1401886d86e8SMasahiro Yamadaendif
1402886d86e8SMasahiro Yamada
1403886d86e8SMasahiro Yamada%.s: %.c prepare scripts FORCE
1404886d86e8SMasahiro Yamada	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1405886d86e8SMasahiro Yamada%.i: %.c prepare scripts FORCE
1406886d86e8SMasahiro Yamada	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1407886d86e8SMasahiro Yamada%.o: %.c prepare scripts FORCE
1408886d86e8SMasahiro Yamada	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1409886d86e8SMasahiro Yamada%.lst: %.c prepare scripts FORCE
1410886d86e8SMasahiro Yamada	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1411886d86e8SMasahiro Yamada%.s: %.S prepare scripts FORCE
1412886d86e8SMasahiro Yamada	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1413886d86e8SMasahiro Yamada%.o: %.S prepare scripts FORCE
1414886d86e8SMasahiro Yamada	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1415886d86e8SMasahiro Yamada%.symtypes: %.c prepare scripts FORCE
1416886d86e8SMasahiro Yamada	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1417886d86e8SMasahiro Yamada
1418886d86e8SMasahiro Yamada# Modules
1419886d86e8SMasahiro Yamada/: prepare scripts FORCE
1420886d86e8SMasahiro Yamada	$(cmd_crmodverdir)
1421886d86e8SMasahiro Yamada	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
1422886d86e8SMasahiro Yamada	$(build)=$(build-dir)
1423886d86e8SMasahiro Yamada%/: prepare scripts FORCE
1424886d86e8SMasahiro Yamada	$(cmd_crmodverdir)
1425886d86e8SMasahiro Yamada	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
1426886d86e8SMasahiro Yamada	$(build)=$(build-dir)
1427886d86e8SMasahiro Yamada%.ko: prepare scripts FORCE
1428886d86e8SMasahiro Yamada	$(cmd_crmodverdir)
1429886d86e8SMasahiro Yamada	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1)   \
1430886d86e8SMasahiro Yamada	$(build)=$(build-dir) $(@:.ko=.o)
1431886d86e8SMasahiro Yamada	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
1432886d86e8SMasahiro Yamada
1433886d86e8SMasahiro Yamada# FIXME Should go into a make.lib or something
1434886d86e8SMasahiro Yamada# ===========================================================================
1435886d86e8SMasahiro Yamada
1436efcf8619SMasahiro Yamadaquiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
1437efcf8619SMasahiro Yamada      cmd_rmdirs = rm -rf $(rm-dirs)
1438efcf8619SMasahiro Yamada
1439efcf8619SMasahiro Yamadaquiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
1440efcf8619SMasahiro Yamada      cmd_rmfiles = rm -f $(rm-files)
1441efcf8619SMasahiro Yamada
1442f9c235fdSMasahiro Yamada# read all saved command lines
1443f9c235fdSMasahiro Yamada
1444f9c235fdSMasahiro Yamadatargets := $(wildcard $(sort $(targets)))
1445f9c235fdSMasahiro Yamadacmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
1446f9c235fdSMasahiro Yamada
1447f9c235fdSMasahiro Yamadaifneq ($(cmd_files),)
1448f9c235fdSMasahiro Yamada  $(cmd_files): ;	# Do not try to update included dependency files
1449f9c235fdSMasahiro Yamada  include $(cmd_files)
1450f9c235fdSMasahiro Yamadaendif
1451f9c235fdSMasahiro Yamada
1452efcf8619SMasahiro Yamada# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
1453efcf8619SMasahiro Yamada# Usage:
1454efcf8619SMasahiro Yamada# $(Q)$(MAKE) $(clean)=dir
1455efcf8619SMasahiro Yamadaclean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
1456efcf8619SMasahiro Yamada
14579e414032SMasahiro Yamadaendif	# skip-makefile
14589e414032SMasahiro Yamada
14599e414032SMasahiro YamadaPHONY += FORCE
14609e414032SMasahiro YamadaFORCE:
14619e414032SMasahiro Yamada
14629e414032SMasahiro Yamada# Declare the contents of the .PHONY variable as phony.  We keep that
14639e414032SMasahiro Yamada# information in a variable so we can use it in if_changed and friends.
14649e414032SMasahiro Yamada.PHONY: $(PHONY)
1465