Makefile 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838
  1. #
  2. # (C) Copyright 2000-2012
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # See file CREDITS for list of people who contributed to this
  6. # project.
  7. #
  8. # This program is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU General Public License as
  10. # published by the Free Software Foundatio; either version 2 of
  11. # the License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. # MA 02111-1307 USA
  22. #
  23. VERSION = 2012
  24. PATCHLEVEL = 07
  25. SUBLEVEL =
  26. EXTRAVERSION =
  27. ifneq "$(SUBLEVEL)" ""
  28. U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
  29. else
  30. U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
  31. endif
  32. TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
  33. VERSION_FILE = $(obj)include/generated/version_autogenerated.h
  34. HOSTARCH := $(shell uname -m | \
  35. sed -e s/i.86/x86/ \
  36. -e s/sun4u/sparc64/ \
  37. -e s/arm.*/arm/ \
  38. -e s/sa110/arm/ \
  39. -e s/ppc64/powerpc/ \
  40. -e s/ppc/powerpc/ \
  41. -e s/macppc/powerpc/\
  42. -e s/sh.*/sh/)
  43. HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
  44. sed -e 's/\(cygwin\).*/cygwin/')
  45. # Set shell to bash if possible, otherwise fall back to sh
  46. SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
  47. else if [ -x /bin/bash ]; then echo /bin/bash; \
  48. else echo sh; fi; fi)
  49. export HOSTARCH HOSTOS SHELL
  50. # Deal with colliding definitions from tcsh etc.
  51. VENDOR=
  52. #########################################################################
  53. # Allow for silent builds
  54. ifeq (,$(findstring s,$(MAKEFLAGS)))
  55. XECHO = echo
  56. else
  57. XECHO = :
  58. endif
  59. #########################################################################
  60. #
  61. # U-boot build supports producing a object files to the separate external
  62. # directory. Two use cases are supported:
  63. #
  64. # 1) Add O= to the make command line
  65. # 'make O=/tmp/build all'
  66. #
  67. # 2) Set environement variable BUILD_DIR to point to the desired location
  68. # 'export BUILD_DIR=/tmp/build'
  69. # 'make'
  70. #
  71. # The second approach can also be used with a MAKEALL script
  72. # 'export BUILD_DIR=/tmp/build'
  73. # './MAKEALL'
  74. #
  75. # Command line 'O=' setting overrides BUILD_DIR environent variable.
  76. #
  77. # When none of the above methods is used the local build is performed and
  78. # the object files are placed in the source directory.
  79. #
  80. ifdef O
  81. ifeq ("$(origin O)", "command line")
  82. BUILD_DIR := $(O)
  83. endif
  84. endif
  85. ifneq ($(BUILD_DIR),)
  86. saved-output := $(BUILD_DIR)
  87. # Attempt to create a output directory.
  88. $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
  89. # Verify if it was successful.
  90. BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
  91. $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
  92. endif # ifneq ($(BUILD_DIR),)
  93. OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
  94. SPLTREE := $(OBJTREE)/spl
  95. SRCTREE := $(CURDIR)
  96. TOPDIR := $(SRCTREE)
  97. LNDIR := $(OBJTREE)
  98. export TOPDIR SRCTREE OBJTREE SPLTREE
  99. MKCONFIG := $(SRCTREE)/mkconfig
  100. export MKCONFIG
  101. ifneq ($(OBJTREE),$(SRCTREE))
  102. REMOTE_BUILD := 1
  103. export REMOTE_BUILD
  104. endif
  105. # $(obj) and (src) are defined in config.mk but here in main Makefile
  106. # we also need them before config.mk is included which is the case for
  107. # some targets like unconfig, clean, clobber, distclean, etc.
  108. ifneq ($(OBJTREE),$(SRCTREE))
  109. obj := $(OBJTREE)/
  110. src := $(SRCTREE)/
  111. else
  112. obj :=
  113. src :=
  114. endif
  115. export obj src
  116. # Make sure CDPATH settings don't interfere
  117. unexport CDPATH
  118. #########################################################################
  119. # The "tools" are needed early, so put this first
  120. # Don't include stuff already done in $(LIBS)
  121. # The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
  122. # is "yes"), so compile examples after U-Boot is compiled.
  123. SUBDIR_TOOLS = tools
  124. SUBDIR_EXAMPLES = examples/standalone examples/api
  125. SUBDIRS = $(SUBDIR_TOOLS)
  126. .PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
  127. ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
  128. # Include autoconf.mk before config.mk so that the config options are available
  129. # to all top level build files. We need the dummy all: target to prevent the
  130. # dependency target in autoconf.mk.dep from being the default.
  131. all:
  132. sinclude $(obj)include/autoconf.mk.dep
  133. sinclude $(obj)include/autoconf.mk
  134. ifndef CONFIG_SANDBOX
  135. SUBDIRS += $(SUBDIR_EXAMPLES)
  136. endif
  137. # load ARCH, BOARD, and CPU configuration
  138. include $(obj)include/config.mk
  139. export ARCH CPU BOARD VENDOR SOC
  140. # set default to nothing for native builds
  141. ifeq ($(HOSTARCH),$(ARCH))
  142. CROSS_COMPILE ?=
  143. endif
  144. # load other configuration
  145. include $(TOPDIR)/config.mk
  146. # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
  147. # that (or fail if absent). Otherwise, search for a linker script in a
  148. # standard location.
  149. LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
  150. ifndef LDSCRIPT
  151. #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
  152. ifdef CONFIG_SYS_LDSCRIPT
  153. # need to strip off double quotes
  154. LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
  155. endif
  156. endif
  157. # If there is no specified link script, we look in a number of places for it
  158. ifndef LDSCRIPT
  159. ifeq ($(CONFIG_NAND_U_BOOT),y)
  160. LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
  161. ifeq ($(wildcard $(LDSCRIPT)),)
  162. LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
  163. endif
  164. endif
  165. ifeq ($(wildcard $(LDSCRIPT)),)
  166. LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
  167. endif
  168. ifeq ($(wildcard $(LDSCRIPT)),)
  169. LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
  170. endif
  171. ifeq ($(wildcard $(LDSCRIPT)),)
  172. LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
  173. # We don't expect a Makefile here
  174. LDSCRIPT_MAKEFILE_DIR =
  175. endif
  176. ifeq ($(wildcard $(LDSCRIPT)),)
  177. $(error could not find linker script)
  178. endif
  179. endif
  180. #########################################################################
  181. # U-Boot objects....order is important (i.e. start must be first)
  182. OBJS = $(CPUDIR)/start.o
  183. ifeq ($(CPU),x86)
  184. OBJS += $(CPUDIR)/start16.o
  185. OBJS += $(CPUDIR)/resetvec.o
  186. endif
  187. ifeq ($(CPU),ppc4xx)
  188. OBJS += $(CPUDIR)/resetvec.o
  189. endif
  190. ifeq ($(CPU),mpc85xx)
  191. OBJS += $(CPUDIR)/resetvec.o
  192. endif
  193. OBJS := $(addprefix $(obj),$(OBJS))
  194. HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
  195. LIBS-y += lib/libgeneric.o
  196. LIBS-y += lib/lzma/liblzma.o
  197. LIBS-y += lib/lzo/liblzo.o
  198. LIBS-y += lib/zlib/libz.o
  199. LIBS-$(CONFIG_TIZEN) += lib/tizen/libtizen.o
  200. LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
  201. LIBS-y += $(CPUDIR)/lib$(CPU).o
  202. ifdef SOC
  203. LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
  204. endif
  205. ifeq ($(CPU),ixp)
  206. LIBS-y += arch/arm/cpu/ixp/npe/libnpe.o
  207. endif
  208. LIBS-$(CONFIG_OF_EMBED) += dts/libdts.o
  209. LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
  210. LIBS-y += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \
  211. fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \
  212. fs/ubifs/libubifs.o fs/zfs/libzfs.o
  213. LIBS-y += net/libnet.o
  214. LIBS-y += disk/libdisk.o
  215. LIBS-y += drivers/bios_emulator/libatibiosemu.o
  216. LIBS-y += drivers/block/libblock.o
  217. LIBS-$(CONFIG_BOOTCOUNT_LIMIT) += drivers/bootcount/libbootcount.o
  218. LIBS-y += drivers/dma/libdma.o
  219. LIBS-y += drivers/fpga/libfpga.o
  220. LIBS-y += drivers/gpio/libgpio.o
  221. LIBS-y += drivers/hwmon/libhwmon.o
  222. LIBS-y += drivers/i2c/libi2c.o
  223. LIBS-y += drivers/input/libinput.o
  224. LIBS-y += drivers/misc/libmisc.o
  225. LIBS-y += drivers/mmc/libmmc.o
  226. LIBS-y += drivers/mtd/libmtd.o
  227. LIBS-y += drivers/mtd/nand/libnand.o
  228. LIBS-y += drivers/mtd/onenand/libonenand.o
  229. LIBS-y += drivers/mtd/ubi/libubi.o
  230. LIBS-y += drivers/mtd/spi/libspi_flash.o
  231. LIBS-y += drivers/net/libnet.o
  232. LIBS-y += drivers/net/phy/libphy.o
  233. LIBS-y += drivers/pci/libpci.o
  234. LIBS-y += drivers/pcmcia/libpcmcia.o
  235. LIBS-y += drivers/power/libpower.o
  236. LIBS-y += drivers/spi/libspi.o
  237. ifeq ($(CPU),mpc83xx)
  238. LIBS-y += drivers/qe/libqe.o
  239. LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
  240. LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
  241. endif
  242. ifeq ($(CPU),mpc85xx)
  243. LIBS-y += drivers/qe/libqe.o
  244. LIBS-y += drivers/net/fm/libfm.o
  245. LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
  246. LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
  247. endif
  248. ifeq ($(CPU),mpc86xx)
  249. LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
  250. LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
  251. endif
  252. LIBS-y += drivers/rtc/librtc.o
  253. LIBS-y += drivers/serial/libserial.o
  254. LIBS-$(CONFIG_GENERIC_LPC_TPM) += drivers/tpm/libtpm.o
  255. LIBS-y += drivers/twserial/libtws.o
  256. LIBS-y += drivers/usb/eth/libusb_eth.o
  257. LIBS-y += drivers/usb/gadget/libusb_gadget.o
  258. LIBS-y += drivers/usb/host/libusb_host.o
  259. LIBS-y += drivers/usb/musb/libusb_musb.o
  260. LIBS-y += drivers/usb/phy/libusb_phy.o
  261. LIBS-y += drivers/usb/ulpi/libusb_ulpi.o
  262. LIBS-y += drivers/video/libvideo.o
  263. LIBS-y += drivers/watchdog/libwatchdog.o
  264. LIBS-y += common/libcommon.o
  265. LIBS-y += lib/libfdt/libfdt.o
  266. LIBS-y += api/libapi.o
  267. LIBS-y += post/libpost.o
  268. LIBS-y += test/libtest.o
  269. ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
  270. LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
  271. endif
  272. ifeq ($(SOC),mx5)
  273. LIBS-y += $(CPUDIR)/imx-common/libimx-common.o
  274. endif
  275. ifeq ($(SOC),mx6)
  276. LIBS-y += $(CPUDIR)/imx-common/libimx-common.o
  277. endif
  278. ifeq ($(SOC),s5pc1xx)
  279. LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
  280. endif
  281. ifeq ($(SOC),exynos)
  282. LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
  283. endif
  284. ifeq ($(SOC),tegra20)
  285. LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o
  286. endif
  287. LIBS := $(addprefix $(obj),$(sort $(LIBS-y)))
  288. .PHONY : $(LIBS)
  289. LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
  290. LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
  291. # Add GCC lib
  292. ifdef USE_PRIVATE_LIBGCC
  293. ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
  294. PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
  295. else
  296. PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
  297. endif
  298. else
  299. PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
  300. endif
  301. PLATFORM_LIBS += $(PLATFORM_LIBGCC)
  302. export PLATFORM_LIBS
  303. # Special flags for CPP when processing the linker script.
  304. # Pass the version down so we can handle backwards compatibility
  305. # on the fly.
  306. LDPPFLAGS += \
  307. -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
  308. -DCPUDIR=$(CPUDIR) \
  309. $(shell $(LD) --version | \
  310. sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
  311. __OBJS := $(subst $(obj),,$(OBJS))
  312. __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
  313. #########################################################################
  314. #########################################################################
  315. ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
  316. BOARD_SIZE_CHECK = \
  317. @actual=`wc -c $@ | awk '{print $$1}'`; \
  318. limit=$(CONFIG_BOARD_SIZE_LIMIT); \
  319. if test $$actual -gt $$limit; then \
  320. echo "$@ exceeds file size limit:"; \
  321. echo " limit: $$limit bytes"; \
  322. echo " actual: $$actual bytes"; \
  323. echo " excess: $$((actual - limit)) bytes"; \
  324. exit 1; \
  325. fi
  326. else
  327. BOARD_SIZE_CHECK =
  328. endif
  329. # Always append ALL so that arch config.mk's can add custom ones
  330. ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
  331. ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
  332. ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
  333. ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
  334. ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
  335. ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
  336. # enable combined SPL/u-boot/dtb rules for tegra
  337. ifeq ($(SOC),tegra20)
  338. ifeq ($(CONFIG_OF_SEPARATE),y)
  339. ALL-y += $(obj)u-boot-dtb-tegra.bin
  340. else
  341. ALL-y += $(obj)u-boot-nodtb-tegra.bin
  342. endif
  343. endif
  344. all: $(ALL-y) $(SUBDIR_EXAMPLES)
  345. $(obj)u-boot.dtb: $(obj)u-boot
  346. $(MAKE) -C dts binary
  347. mv $(obj)dts/dt.dtb $@
  348. $(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb
  349. cat $^ >$@
  350. $(obj)u-boot.hex: $(obj)u-boot
  351. $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
  352. $(obj)u-boot.srec: $(obj)u-boot
  353. $(OBJCOPY) -O srec $< $@
  354. $(obj)u-boot.bin: $(obj)u-boot
  355. $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
  356. $(BOARD_SIZE_CHECK)
  357. $(obj)u-boot.ldr: $(obj)u-boot
  358. $(CREATE_LDR_ENV)
  359. $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
  360. $(BOARD_SIZE_CHECK)
  361. $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
  362. $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
  363. $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
  364. $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
  365. $(obj)u-boot.img: $(obj)u-boot.bin
  366. $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
  367. -O u-boot -a $(CONFIG_SYS_TEXT_BASE) -e 0 \
  368. -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
  369. sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
  370. -d $< $@
  371. $(obj)u-boot.imx: $(obj)u-boot.bin
  372. $(obj)tools/mkimage -n $(CONFIG_IMX_CONFIG) -T imximage \
  373. -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
  374. $(obj)u-boot.kwb: $(obj)u-boot.bin
  375. $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
  376. -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
  377. $(obj)u-boot.sha1: $(obj)u-boot.bin
  378. $(obj)tools/ubsha1 $(obj)u-boot.bin
  379. $(obj)u-boot.dis: $(obj)u-boot
  380. $(OBJDUMP) -d $< > $@
  381. $(obj)u-boot.ubl: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
  382. $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
  383. cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $(obj)u-boot-ubl.bin
  384. $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
  385. -e $(CONFIG_SYS_TEXT_BASE) -d $(obj)u-boot-ubl.bin $(obj)u-boot.ubl
  386. rm $(obj)u-boot-ubl.bin
  387. rm $(obj)spl/u-boot-spl-pad.bin
  388. $(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
  389. $(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \
  390. -T aisimage \
  391. -e $(CONFIG_SPL_TEXT_BASE) \
  392. -d $(obj)spl/u-boot-spl.bin \
  393. $(obj)spl/u-boot-spl.ais
  394. $(OBJCOPY) ${OBJCFLAGS} -I binary \
  395. --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
  396. $(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais
  397. cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.bin > \
  398. $(obj)u-boot.ais
  399. $(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
  400. elftosb -zdf imx28 -c $(TOPDIR)/$(CPUDIR)/$(SOC)/u-boot.bd \
  401. -o $(obj)u-boot.sb
  402. # On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
  403. # Both images are created using mkimage (crc etc), so that the ROM
  404. # bootloader can check its integrity. Padding needs to be done to the
  405. # SPL image (with mkimage header) and not the binary. Otherwise the resulting image
  406. # which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
  407. # The resulting image containing both U-Boot images is called u-boot.spr
  408. $(obj)u-boot.spr: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin
  409. $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
  410. -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
  411. -d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.img
  412. tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_SPL_PAD_TO) \
  413. of=$(obj)spl/u-boot-spl-pad.img 2>/dev/null
  414. dd if=$(obj)spl/u-boot-spl.img of=$(obj)spl/u-boot-spl-pad.img \
  415. conv=notrunc 2>/dev/null
  416. cat $(obj)spl/u-boot-spl-pad.img $(obj)u-boot.img > $@
  417. ifeq ($(SOC),tegra20)
  418. ifeq ($(CONFIG_OF_SEPARATE),y)
  419. $(obj)u-boot-dtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin $(obj)u-boot.dtb
  420. $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
  421. cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin $(obj)u-boot.dtb > $@
  422. rm $(obj)spl/u-boot-spl-pad.bin
  423. else
  424. $(obj)u-boot-nodtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
  425. $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
  426. cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
  427. rm $(obj)spl/u-boot-spl-pad.bin
  428. endif
  429. endif
  430. ifeq ($(CONFIG_SANDBOX),y)
  431. GEN_UBOOT = \
  432. cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
  433. -Wl,--start-group $(__LIBS) -Wl,--end-group \
  434. $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
  435. else
  436. GEN_UBOOT = \
  437. UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
  438. sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
  439. cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \
  440. --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
  441. -Map u-boot.map -o u-boot
  442. endif
  443. $(obj)u-boot: depend \
  444. $(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
  445. $(GEN_UBOOT)
  446. ifeq ($(CONFIG_KALLSYMS),y)
  447. smap=`$(call SYSTEM_MAP,u-boot) | \
  448. awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
  449. $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
  450. -c common/system_map.c -o $(obj)common/system_map.o
  451. $(GEN_UBOOT) $(obj)common/system_map.o
  452. endif
  453. $(OBJS): depend
  454. $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
  455. $(LIBS): depend $(SUBDIR_TOOLS)
  456. $(MAKE) -C $(dir $(subst $(obj),,$@))
  457. $(LIBBOARD): depend $(LIBS)
  458. $(MAKE) -C $(dir $(subst $(obj),,$@))
  459. $(SUBDIRS): depend
  460. $(MAKE) -C $@ all
  461. $(SUBDIR_EXAMPLES): $(obj)u-boot
  462. $(LDSCRIPT): depend
  463. $(MAKE) -C $(dir $@) $(notdir $@)
  464. $(obj)u-boot.lds: $(LDSCRIPT)
  465. $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
  466. nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
  467. $(MAKE) -C nand_spl/board/$(BOARDDIR) all
  468. $(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin
  469. cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
  470. onenand_ipl: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
  471. $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
  472. $(obj)u-boot-onenand.bin: onenand_ipl $(obj)u-boot.bin
  473. cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
  474. $(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend
  475. $(MAKE) -C spl all
  476. updater:
  477. $(MAKE) -C tools/updater all
  478. # Explicitly make _depend in subdirs containing multiple targets to prevent
  479. # parallel sub-makes creating .depend files simultaneously.
  480. depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
  481. $(obj)include/autoconf.mk \
  482. $(obj)include/generated/generic-asm-offsets.h \
  483. $(obj)include/generated/asm-offsets.h
  484. for dir in $(SUBDIRS) $(CPUDIR) $(LDSCRIPT_MAKEFILE_DIR) ; do \
  485. $(MAKE) -C $$dir _depend ; done
  486. TAG_SUBDIRS = $(SUBDIRS)
  487. TAG_SUBDIRS += $(dir $(__LIBS))
  488. TAG_SUBDIRS += include
  489. FIND := find
  490. FINDFLAGS := -L
  491. checkstack:
  492. $(CROSS_COMPILE)objdump -d $(obj)u-boot \
  493. `$(FIND) $(obj) -name u-boot-spl -print` | \
  494. perl $(src)tools/checkstack.pl $(ARCH)
  495. tags ctags:
  496. ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
  497. -name '*.[chS]' -print`
  498. etags:
  499. etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
  500. -name '*.[chS]' -print`
  501. cscope:
  502. $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
  503. cscope.files
  504. cscope -b -q -k
  505. SYSTEM_MAP = \
  506. $(NM) $1 | \
  507. grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
  508. LC_ALL=C sort
  509. $(obj)System.map: $(obj)u-boot
  510. @$(call SYSTEM_MAP,$<) > $(obj)System.map
  511. checkthumb:
  512. @if test $(call cc-version) -lt 0404; then \
  513. echo -n '*** Your GCC does not produce working '; \
  514. echo 'binaries in THUMB mode.'; \
  515. echo '*** Your board is configured for THUMB mode.'; \
  516. false; \
  517. fi
  518. #
  519. # Auto-generate the autoconf.mk file (which is included by all makefiles)
  520. #
  521. # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
  522. # the dep file is only include in this top level makefile to determine when
  523. # to regenerate the autoconf.mk file.
  524. $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
  525. @$(XECHO) Generating $@ ; \
  526. set -e ; \
  527. : Generate the dependancies ; \
  528. $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
  529. -MQ $(obj)include/autoconf.mk include/common.h > $@
  530. $(obj)include/autoconf.mk: $(obj)include/config.h
  531. @$(XECHO) Generating $@ ; \
  532. set -e ; \
  533. : Extract the config macros ; \
  534. $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
  535. sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
  536. mv $@.tmp $@
  537. $(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
  538. $(obj)lib/asm-offsets.s
  539. @$(XECHO) Generating $@
  540. tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
  541. $(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
  542. $(src)lib/asm-offsets.c
  543. @mkdir -p $(obj)lib
  544. $(CC) -DDO_DEPS_ONLY \
  545. $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
  546. -o $@ $(src)lib/asm-offsets.c -c -S
  547. $(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \
  548. $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
  549. @$(XECHO) Generating $@
  550. tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@
  551. $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep
  552. @mkdir -p $(obj)$(CPUDIR)/$(SOC)
  553. if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
  554. $(CC) -DDO_DEPS_ONLY \
  555. $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
  556. -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
  557. else \
  558. touch $@; \
  559. fi
  560. #########################################################################
  561. else # !config.mk
  562. all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
  563. $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
  564. $(filter-out tools,$(SUBDIRS)) \
  565. updater depend dep tags ctags etags cscope $(obj)System.map:
  566. @echo "System not configured - see README" >&2
  567. @ exit 1
  568. tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
  569. $(MAKE) -C $@ all
  570. endif # config.mk
  571. $(VERSION_FILE):
  572. @mkdir -p $(dir $(VERSION_FILE))
  573. @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
  574. printf '#define PLAIN_VERSION "%s%s"\n' \
  575. "$(U_BOOT_VERSION)" "$${localvers}" ; \
  576. printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
  577. "$(U_BOOT_VERSION)" "$${localvers}" ; \
  578. ) > $@.tmp
  579. @( printf '#define CC_VERSION_STRING "%s"\n' \
  580. '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
  581. @( printf '#define LD_VERSION_STRING "%s"\n' \
  582. '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
  583. @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
  584. $(TIMESTAMP_FILE):
  585. @mkdir -p $(dir $(TIMESTAMP_FILE))
  586. @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
  587. @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
  588. @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
  589. easylogo env gdb:
  590. $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
  591. gdbtools: gdb
  592. tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
  593. $(MAKE) -C tools HOST_TOOLS_ALL=y
  594. .PHONY : CHANGELOG
  595. CHANGELOG:
  596. git log --no-merges U-Boot-1_1_5.. | \
  597. unexpand -a | sed -e 's/\s\s*$$//' > $@
  598. include/license.h: tools/bin2header COPYING
  599. cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
  600. #########################################################################
  601. unconfig:
  602. @rm -f $(obj)include/config.h $(obj)include/config.mk \
  603. $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
  604. $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
  605. %_config:: unconfig
  606. @$(MKCONFIG) -A $(@:_config=)
  607. sinclude $(obj).boards.depend
  608. $(obj).boards.depend: boards.cfg
  609. @awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
  610. #
  611. # Functions to generate common board directory names
  612. #
  613. lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
  614. ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
  615. #========================================================================
  616. # ARM
  617. #========================================================================
  618. SX1_stdout_serial_config \
  619. SX1_config: unconfig
  620. @mkdir -p $(obj)include
  621. @if [ "$(findstring _stdout_serial_, $@)" ] ; then \
  622. echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
  623. else \
  624. echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
  625. fi;
  626. @$(MKCONFIG) -n $@ SX1 arm arm925t sx1
  627. #########################################################################
  628. ## ARM1176 Systems
  629. #########################################################################
  630. smdk6400_noUSB_config \
  631. smdk6400_config : unconfig
  632. @mkdir -p $(obj)include $(obj)board/samsung/smdk6400
  633. @mkdir -p $(obj)nand_spl/board/samsung/smdk6400
  634. @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
  635. @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
  636. @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
  637. echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
  638. else \
  639. echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
  640. fi
  641. @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx
  642. @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
  643. #########################################################################
  644. #########################################################################
  645. clean:
  646. @rm -f $(obj)examples/standalone/82559_eeprom \
  647. $(obj)examples/standalone/atmel_df_pow2 \
  648. $(obj)examples/standalone/eepro100_eeprom \
  649. $(obj)examples/standalone/hello_world \
  650. $(obj)examples/standalone/interrupt \
  651. $(obj)examples/standalone/mem_to_mem_idma2intr \
  652. $(obj)examples/standalone/sched \
  653. $(obj)examples/standalone/smc911{11,x}_eeprom \
  654. $(obj)examples/standalone/test_burst \
  655. $(obj)examples/standalone/timer
  656. @rm -f $(obj)examples/api/demo{,.bin}
  657. @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
  658. $(obj)tools/env/{fw_printenv,fw_setenv} \
  659. $(obj)tools/envcrc \
  660. $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
  661. $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
  662. $(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \
  663. $(obj)tools/mk{smdk5250,}spl \
  664. $(obj)tools/ncb $(obj)tools/ubsha1
  665. @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
  666. $(obj)board/matrix_vision/*/bootscript.img \
  667. $(obj)board/voiceblue/eeprom \
  668. $(obj)u-boot.lds \
  669. $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
  670. $(obj)arch/blackfin/cpu/init.{lds,elf}
  671. @rm -f $(obj)include/bmp_logo.h
  672. @rm -f $(obj)include/bmp_logo_data.h
  673. @rm -f $(obj)lib/asm-offsets.s
  674. @rm -f $(obj)include/generated/asm-offsets.h
  675. @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
  676. @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map,System.map}
  677. @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
  678. @rm -f $(ONENAND_BIN)
  679. @rm -f $(obj)onenand_ipl/u-boot.lds
  680. @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.lds,u-boot-spl.map}
  681. @rm -f $(obj)MLO
  682. @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
  683. @find $(OBJTREE) -type f \
  684. \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
  685. -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
  686. | xargs rm -f
  687. # Removes everything not needed for testing u-boot
  688. tidy: clean
  689. @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
  690. clobber: tidy
  691. @find $(OBJTREE) -type f \( -name '*.srec' \
  692. -o -name '*.bin' -o -name u-boot.img \) \
  693. -print0 | xargs -0 rm -f
  694. @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
  695. $(obj)cscope.* $(obj)*.*~
  696. @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
  697. @rm -f $(obj)u-boot.kwb
  698. @rm -f $(obj)u-boot.imx
  699. @rm -f $(obj)u-boot.ubl
  700. @rm -f $(obj)u-boot.ais
  701. @rm -f $(obj)u-boot.dtb
  702. @rm -f $(obj)u-boot.sb
  703. @rm -f $(obj)u-boot.spr
  704. @rm -f $(obj)tools/xway-swap-bytes
  705. @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
  706. @rm -f $(obj)arch/powerpc/cpu/mpc83xx/ddr-gen?.c
  707. @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
  708. @rm -fr $(obj)include/generated
  709. @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
  710. @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
  711. @rm -f $(obj)dts/*.tmp
  712. @rm -f $(obj)spl/u-boot-spl{,-pad}.ais
  713. mrproper \
  714. distclean: clobber unconfig
  715. ifneq ($(OBJTREE),$(SRCTREE))
  716. rm -rf $(obj)*
  717. endif
  718. backup:
  719. F=`basename $(TOPDIR)` ; cd .. ; \
  720. gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
  721. #########################################################################