]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/imx-common/Makefile
b7cb434bd7ab019a5b91fa67b10a47a1821e5d50
[people/ms/u-boot.git] / arch / arm / imx-common / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # (C) Copyright 2011 Freescale Semiconductor, Inc.
6 #
7 # SPDX-License-Identifier: GPL-2.0+
8 #
9
10 ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 vf610))
11 obj-y = iomux-v3.o
12 endif
13 ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
14 obj-y += timer.o cpu.o speed.o
15 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
16 endif
17 ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs))
18 obj-y += misc.o
19 obj-$(CONFIG_SPL_BUILD) += spl.o
20 endif
21 ifeq ($(SOC),$(filter $(SOC),mx7))
22 obj-y += cpu.o
23 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
24 obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
25 endif
26 ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
27 obj-y += cache.o init.o
28 obj-$(CONFIG_CMD_SATA) += sata.o
29 obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
30 obj-$(CONFIG_IMX_RDC) += rdc-sema.o
31 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
32 obj-$(CONFIG_SECURE_BOOT) += hab.o
33 endif
34 ifeq ($(SOC),$(filter $(SOC),mx7ulp))
35 obj-y += cache.o
36 obj-$(CONFIG_SECURE_BOOT) += hab.o
37 endif
38 ifeq ($(SOC),$(filter $(SOC),vf610))
39 obj-y += ddrmc-vf610.o
40 endif
41 ifneq ($(CONFIG_SPL_BUILD),y)
42 obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
43 obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
44 obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
45 endif
46
47 PLUGIN = board/$(BOARDDIR)/plugin
48
49 ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y)
50
51 $(PLUGIN).o: $(PLUGIN).S FORCE
52 $(Q)mkdir -p $(dir $@)
53 $(call if_changed_dep,as_o_S)
54
55 $(PLUGIN).bin: $(PLUGIN).o FORCE
56 $(Q)mkdir -p $(dir $@)
57 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
58 else
59
60 $(PLUGIN).bin:
61
62 endif
63
64 quiet_cmd_cpp_cfg = CFGS $@
65 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
66
67 IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%).cfgtmp
68
69 $(IMX_CONFIG): %.cfgtmp: % FORCE
70 $(Q)mkdir -p $(dir $@)
71 $(call if_changed_dep,cpp_cfg)
72
73 MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
74 -e $(CONFIG_SYS_TEXT_BASE)
75 u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
76
77 u-boot.imx: u-boot.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE
78 $(call if_changed,mkimage)
79
80 ifeq ($(CONFIG_OF_SEPARATE),y)
81 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
82 -e $(CONFIG_SYS_TEXT_BASE)
83 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
84
85 u-boot-dtb.imx: u-boot-dtb.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE
86 $(call if_changed,mkimage)
87 endif
88
89 MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
90 -e $(CONFIG_SPL_TEXT_BASE)
91
92 SPL: MKIMAGEOUTPUT = SPL.log
93
94 SPL: spl/u-boot-spl.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE
95 $(call if_changed,mkimage)
96
97 MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
98 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
99
100 u-boot.uim: u-boot.bin FORCE
101 $(call if_changed,mkimage)
102
103 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
104 append = cat $(filter-out $< $(PHONY), $^) >> $@
105
106 quiet_cmd_pad_cat = CAT $@
107 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
108
109 u-boot-with-spl.imx: SPL u-boot.uim FORCE
110 $(call if_changed,pad_cat)
111
112 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
113 $(call if_changed,pad_cat)
114
115 quiet_cmd_u-boot-nand-spl_imx = GEN $@
116 cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
117 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
118
119 spl/u-boot-nand-spl.imx: SPL FORCE
120 $(call if_changed,u-boot-nand-spl_imx)
121
122 targets += $(addprefix ../../../,$(IMX_CONFIG) SPL u-boot.uim spl/u-boot-nand-spl.imx)