]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/imx-common/Makefile
kbuild: Rename UIMAGE to MKIMAGE
[people/ms/u-boot.git] / arch / arm / imx-common / Makefile
CommitLineData
18936ee2
JL
1#
2# (C) Copyright 2000-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# (C) Copyright 2011 Freescale Semiconductor, Inc.
6#
1a459660 7# SPDX-License-Identifier: GPL-2.0+
18936ee2
JL
8#
9
cfd701b5 10ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 vf610))
71f84ef0 11obj-y = iomux-v3.o
ab3a990b 12endif
ea00e59b 13ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
71f84ef0
MY
14obj-y += timer.o cpu.o speed.o
15obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
ea00e59b 16endif
8870e459 17ifeq ($(SOC),$(filter $(SOC),mx6 mxs))
71f84ef0 18obj-y += misc.o
8870e459 19endif
164d9846 20ifeq ($(SOC),$(filter $(SOC),mx6))
f5514e47 21obj-$(CONFIG_CMD_SATA) += sata.o
164d9846 22endif
71f84ef0
MY
23obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
24obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
18936ee2 25
4e0c8abc
MY
26quiet_cmd_cpp_cfg = CFGS $@
27 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
28
29IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%).cfgtmp
30
31$(IMX_CONFIG): %.cfgtmp: % FORCE
32 $(Q)mkdir -p $(dir $@)
33 $(call if_changed_dep,cpp_cfg)
34
b97241b3 35quiet_cmd_mkimage = MKIMAGE $@
4e0c8abc
MY
36cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
37 $(if $(KBUILD_VERBOSE:1=), >/dev/null)
38
39MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $< $(PHONY),$^) -T imximage \
40 -e $(CONFIG_SYS_TEXT_BASE)
41
42u-boot.imx: u-boot.bin $(IMX_CONFIG) FORCE
43 $(call if_changed,mkimage)
44
45MKIMAGEFLAGS_SPL = -n $(filter-out $< $(PHONY),$^) -T imximage \
46 -e $(CONFIG_SPL_TEXT_BASE)
47
48SPL: spl/u-boot-spl.bin $(IMX_CONFIG) FORCE
49 $(call if_changed,mkimage)
50
51MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
52 -e $(CONFIG_SYS_TEXT_BASE) -C none
53
54u-boot.uim: u-boot.bin FORCE
55 $(call if_changed,mkimage)
56
57OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
58append = cat $(filter-out $< $(PHONY), $^) >> $@
59
60quiet_cmd_pad_cat = CAT $@
61cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
62
63u-boot-with-spl.imx: SPL u-boot.uim FORCE
64 $(call if_changed,pad_cat)
65
66u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
67 $(call if_changed,pad_cat)
68
69quiet_cmd_u-boot-nand-spl_imx = GEN $@
70cmd_u-boot-nand-spl_imx = (echo -ne '\x00\x00\x00\x00\x46\x43\x42\x20\x01' && \
71 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
72
73spl/u-boot-nand-spl.imx: SPL FORCE
74 $(call if_changed,u-boot-nand-spl_imx)
75
76targets += $(addprefix ../../../,$(IMX_CONFIG) SPL u-boot.uim spl/u-boot-nand-spl.imx)