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