2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 # (C) Copyright 2011 Freescale Semiconductor, Inc.
7 # SPDX-License-Identifier: GPL-2.0+
10 ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 mx8m vf610))
14 ifeq ($(SOC),$(filter $(SOC),mx8m))
15 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
16 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
17 obj-$(CONFIG_FEC_MXC) += mac.o
18 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
22 ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
23 obj-y += cpu.o speed.o
24 obj-$(CONFIG_GPT_TIMER) += timer.o
25 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
27 ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs mx8m))
29 obj-$(CONFIG_SPL_BUILD) += spl.o
31 ifeq ($(SOC),$(filter $(SOC),mx7))
33 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
34 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
36 ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
37 obj-y += cache.o init.o
38 obj-$(CONFIG_FEC_MXC) += mac.o
39 obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
40 obj-$(CONFIG_IMX_RDC) += rdc-sema.o
41 ifneq ($(CONFIG_SPL_BUILD),y)
42 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
44 obj-$(CONFIG_SATA) += sata.o
45 obj-$(CONFIG_SECURE_BOOT) += hab.o
46 obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
48 ifeq ($(SOC),$(filter $(SOC),mx7ulp))
50 obj-$(CONFIG_SECURE_BOOT) += hab.o
52 ifeq ($(SOC),$(filter $(SOC),vf610))
53 obj-y += ddrmc-vf610.o
55 ifneq ($(CONFIG_SPL_BUILD),y)
56 obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
57 obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
58 obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
61 PLUGIN = board/$(BOARDDIR)/plugin
63 ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y)
65 $(PLUGIN).o: $(PLUGIN).S FORCE
66 $(Q)mkdir -p $(dir $@)
67 $(call if_changed_dep,as_o_S)
69 $(PLUGIN).bin: $(PLUGIN).o FORCE
70 $(Q)mkdir -p $(dir $@)
71 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
78 quiet_cmd_cpp_cfg = CFGS $@
79 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
81 # mkimage source config file
82 IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
84 # How to create a cpp processed config file, they all use the same source
85 %.cfgout: $(IMX_CONFIG) FORCE
86 $(Q)mkdir -p $(dir $@)
87 $(call if_changed_dep,cpp_cfg)
89 MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
90 -e $(CONFIG_SYS_TEXT_BASE)
91 u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
93 u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
94 $(call if_changed,mkimage)
96 ifeq ($(CONFIG_OF_SEPARATE),y)
97 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
98 -e $(CONFIG_SYS_TEXT_BASE)
99 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
101 u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
102 $(call if_changed,mkimage)
105 MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
106 -e $(CONFIG_SPL_TEXT_BASE)
107 SPL: MKIMAGEOUTPUT = SPL.log
109 SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
110 $(call if_changed,mkimage)
112 MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
113 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
115 u-boot.uim: u-boot.bin FORCE
116 $(call if_changed,mkimage)
118 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
119 append = cat $(filter-out $< $(PHONY), $^) >> $@
121 quiet_cmd_pad_cat = CAT $@
122 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
124 u-boot-with-spl.imx: SPL u-boot.uim FORCE
125 $(call if_changed,pad_cat)
127 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
128 $(call if_changed,pad_cat)
130 quiet_cmd_u-boot-nand-spl_imx = GEN $@
131 cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
132 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
134 spl/u-boot-nand-spl.imx: SPL FORCE
135 $(call if_changed,u-boot-nand-spl_imx)
137 targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx)
139 obj-$(CONFIG_ARM64) += sip.o
141 obj-$(CONFIG_MX5) += mx5/
142 obj-$(CONFIG_MX6) += mx6/
143 obj-$(CONFIG_MX7) += mx7/
144 obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
145 obj-$(CONFIG_MX8M) += mx8m/