1# SPDX-License-Identifier: GPL-2.0+ 2# 3# (C) Copyright 2000-2006 4# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5# 6# (C) Copyright 2011 Freescale Semiconductor, Inc. 7 8ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 mx8m vf610)) 9obj-y = iomux-v3.o 10endif 11 12ifeq ($(SOC),$(filter $(SOC),mx8m)) 13obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o 14obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o 15obj-$(CONFIG_FEC_MXC) += mac.o 16obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o 17obj-y += cpu.o 18endif 19 20ifeq ($(SOC),$(filter $(SOC),mx5 mx6)) 21obj-y += cpu.o speed.o 22obj-$(CONFIG_GPT_TIMER) += timer.o 23obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o 24endif 25ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs mx8m)) 26obj-y += misc.o 27obj-$(CONFIG_SPL_BUILD) += spl.o 28endif 29ifeq ($(SOC),$(filter $(SOC),mx7)) 30obj-y += cpu.o 31obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o 32obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o 33endif 34ifeq ($(SOC),$(filter $(SOC),mx5 mx6 mx7)) 35obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o 36endif 37ifeq ($(SOC),$(filter $(SOC),mx6 mx7)) 38obj-y += cache.o init.o 39obj-$(CONFIG_FEC_MXC) += mac.o 40obj-$(CONFIG_IMX_RDC) += rdc-sema.o 41ifneq ($(CONFIG_SPL_BUILD),y) 42obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o 43endif 44obj-$(CONFIG_SATA) += sata.o 45obj-$(CONFIG_SECURE_BOOT) += hab.o 46obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o 47endif 48ifeq ($(SOC),$(filter $(SOC),mx7ulp)) 49obj-y += cache.o 50obj-$(CONFIG_SECURE_BOOT) += hab.o 51endif 52ifeq ($(SOC),$(filter $(SOC),vf610)) 53obj-y += ddrmc-vf610.o 54endif 55ifneq ($(CONFIG_SPL_BUILD),y) 56obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o 57obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o 58obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o 59endif 60 61PLUGIN = board/$(BOARDDIR)/plugin 62 63ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y) 64 65$(PLUGIN).o: $(PLUGIN).S FORCE 66 $(Q)mkdir -p $(dir $@) 67 $(call if_changed_dep,as_o_S) 68 69$(PLUGIN).bin: $(PLUGIN).o FORCE 70 $(Q)mkdir -p $(dir $@) 71 $(OBJCOPY) -O binary --gap-fill 0xff $< $@ 72else 73 74$(PLUGIN).bin: 75 76endif 77 78quiet_cmd_cpp_cfg = CFGS $@ 79 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $< 80 81# mkimage source config file 82IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%) 83 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) 88 89ifeq ($(CONFIG_ARCH_IMX8), y) 90CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh 91IMAGE_TYPE := imx8image 92DEPFILE_EXISTS := $(shell if [ -f u-boot-dtb.cfgout ]; then $(CNTR_DEPFILES) u-boot-dtb.cfgout; echo $$?; fi) 93else 94IMAGE_TYPE := imximage 95DEPFILE_EXISTS := 0 96endif 97 98MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \ 99 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE) 100u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log 101 102u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE 103 $(call if_changed,mkimage) 104 105ifeq ($(CONFIG_OF_SEPARATE),y) 106MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \ 107 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE) 108u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log 109 110u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE 111ifeq ($(DEPFILE_EXISTS),0) 112 $(call if_changed,mkimage) 113endif 114endif 115 116MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \ 117 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE) 118SPL: MKIMAGEOUTPUT = SPL.log 119 120SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE 121 $(call if_changed,mkimage) 122 123MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \ 124 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware 125 126u-boot.uim: u-boot.bin FORCE 127 $(call if_changed,mkimage) 128 129OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) 130append = cat $(filter-out $< $(PHONY), $^) >> $@ 131 132quiet_cmd_pad_cat = CAT $@ 133cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@ 134 135u-boot-with-spl.imx: SPL u-boot.uim FORCE 136 $(call if_changed,pad_cat) 137 138u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE 139 $(call if_changed,pad_cat) 140 141quiet_cmd_u-boot-nand-spl_imx = GEN $@ 142cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \ 143 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@ 144 145spl/u-boot-nand-spl.imx: SPL FORCE 146 $(call if_changed,u-boot-nand-spl_imx) 147 148targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx) 149 150obj-$(CONFIG_ARM64) += sip.o 151 152obj-$(CONFIG_MX5) += mx5/ 153obj-$(CONFIG_MX6) += mx6/ 154obj-$(CONFIG_MX7) += mx7/ 155obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/ 156obj-$(CONFIG_MX8M) += mx8m/ 157obj-$(CONFIG_ARCH_IMX8) += imx8/ 158