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 imx8m vf610))
12 ifeq ($(SOC),$(filter $(SOC),imx8m))
13 ifneq ($(CONFIG_SPL_BUILD),y)
14 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 imx8m))
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),mx5 mx6 mx7))
37 obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
39 ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
40 obj-y += cache.o init.o
41 obj-$(CONFIG_FEC_MXC) += mac.o
42 obj-$(CONFIG_IMX_RDC) += rdc-sema.o
43 ifneq ($(CONFIG_SPL_BUILD),y)
44 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
46 obj-$(CONFIG_SATA) += sata.o
47 obj-$(CONFIG_SECURE_BOOT) += hab.o
48 obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
50 ifeq ($(SOC),$(filter $(SOC),mx7ulp))
52 obj-$(CONFIG_SECURE_BOOT) += hab.o
54 ifeq ($(SOC),$(filter $(SOC),vf610))
55 obj-y += ddrmc-vf610.o
57 ifneq ($(CONFIG_SPL_BUILD),y)
58 obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
59 obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
60 obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
63 ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
65 @actual=`wc -c $@ | awk '{print $$1}'`; \
66 limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
67 if test $$actual -gt $$limit; then \
68 echo "$@ exceeds file size limit:" >&2 ; \
69 echo " limit: $$limit bytes" >&2 ; \
70 echo " actual: $$actual bytes" >&2 ; \
71 echo " excess: $$((actual - limit)) bytes" >&2; \
78 PLUGIN = board/$(BOARDDIR)/plugin
80 ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y)
82 $(PLUGIN).o: $(PLUGIN).S FORCE
83 $(Q)mkdir -p $(dir $@)
84 $(call if_changed_dep,as_o_S)
86 $(PLUGIN).bin: $(PLUGIN).o FORCE
87 $(Q)mkdir -p $(dir $@)
88 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
95 quiet_cmd_cpp_cfg = CFGS $@
96 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
98 # mkimage source config file
99 IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
101 # How to create a cpp processed config file, they all use the same source
102 %.cfgout: $(IMX_CONFIG) FORCE
103 $(Q)mkdir -p $(dir $@)
104 $(call if_changed_dep,cpp_cfg)
106 ifeq ($(CONFIG_ARCH_IMX8), y)
107 CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh
108 IMAGE_TYPE := imx8image
109 DEPFILE_EXISTS := $(shell $(CPP) $(cpp_flags) -x c -o u-boot-dtb.cfgout $(srctree)/$(IMX_CONFIG); if [ -f u-boot-dtb.cfgout ]; then $(CNTR_DEPFILES) u-boot-dtb.cfgout; echo $$?; fi)
110 else ifeq ($(CONFIG_ARCH_IMX8M), y)
111 IMAGE_TYPE := imx8mimage
112 IMX8M_DEPFILES := $(srctree)/tools/imx8m_image.sh
113 DEPFILE_EXISTS := $(shell $(CPP) $(cpp_flags) -x c -o spl/u-boot-spl.cfgout $(srctree)/$(IMX_CONFIG);if [ -f spl/u-boot-spl.cfgout ]; then $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 0; echo $$?; fi)
115 IMAGE_TYPE := imximage
119 MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
120 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
121 u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
123 u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
124 $(call if_changed,mkimage)
127 ifeq ($(CONFIG_OF_SEPARATE),y)
128 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
129 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
130 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
132 u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
133 ifeq ($(DEPFILE_EXISTS),0)
134 $(call if_changed,mkimage)
139 ifeq ($(CONFIG_ARCH_IMX8M), y)
142 MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout \
143 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
144 flash.bin: MKIMAGEOUTPUT = flash.log
146 spl/u-boot-spl-ddr.bin: spl/u-boot-spl.bin spl/u-boot-spl.cfgout FORCE
147 ifeq ($(DEPFILE_EXISTS),0)
148 $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 1
151 flash.bin: spl/u-boot-spl-ddr.bin u-boot.itb FORCE
152 ifeq ($(DEPFILE_EXISTS),0)
153 $(call if_changed,mkimage)
158 MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
159 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
160 SPL: MKIMAGEOUTPUT = SPL.log
162 SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
163 $(call if_changed,mkimage)
165 MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
166 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
168 u-boot.uim: u-boot.bin FORCE
169 $(call if_changed,mkimage)
171 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
172 append = cat $(filter-out $< $(PHONY), $^) >> $@
174 quiet_cmd_pad_cat = CAT $@
175 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
177 u-boot-with-spl.imx: SPL u-boot.uim FORCE
178 $(call if_changed,pad_cat)
180 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
181 $(call if_changed,pad_cat)
183 quiet_cmd_u-boot-nand-spl_imx = GEN $@
184 cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
185 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
187 spl/u-boot-nand-spl.imx: SPL FORCE
188 $(call if_changed,u-boot-nand-spl_imx)
191 targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx)
193 obj-$(CONFIG_ARM64) += sip.o
195 obj-$(CONFIG_MX5) += mx5/
196 obj-$(CONFIG_MX6) += mx6/
197 obj-$(CONFIG_MX7) += mx7/
198 obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
199 obj-$(CONFIG_IMX8M) += imx8m/
200 obj-$(CONFIG_ARCH_IMX8) += imx8/