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 10ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 vf610)) 11obj-y = iomux-v3.o 12endif 13ifeq ($(SOC),$(filter $(SOC),mx5 mx6)) 14obj-y += timer.o cpu.o speed.o 15obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o 16endif 17ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs)) 18obj-y += misc.o 19obj-$(CONFIG_SPL_BUILD) += spl.o 20endif 21ifeq ($(SOC),$(filter $(SOC),mx7)) 22obj-y += cpu.o 23obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o 24obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o 25endif 26ifeq ($(SOC),$(filter $(SOC),mx6 mx7)) 27obj-y += cache.o init.o 28obj-$(CONFIG_SATA) += sata.o 29obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o 30obj-$(CONFIG_IMX_RDC) += rdc-sema.o 31obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o 32obj-$(CONFIG_SECURE_BOOT) += hab.o 33endif 34ifeq ($(SOC),$(filter $(SOC),mx7ulp)) 35obj-y += cache.o 36obj-$(CONFIG_SECURE_BOOT) += hab.o 37endif 38ifeq ($(SOC),$(filter $(SOC),vf610)) 39obj-y += ddrmc-vf610.o 40endif 41ifneq ($(CONFIG_SPL_BUILD),y) 42obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o 43obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o 44obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o 45endif 46 47PLUGIN = board/$(BOARDDIR)/plugin 48 49ifeq ($(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 $< $@ 58else 59 60$(PLUGIN).bin: 61 62endif 63 64quiet_cmd_cpp_cfg = CFGS $@ 65 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $< 66 67IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%).cfgtmp 68 69$(IMX_CONFIG): %.cfgtmp: % FORCE 70 $(Q)mkdir -p $(dir $@) 71 $(call if_changed_dep,cpp_cfg) 72 73MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ 74 -e $(CONFIG_SYS_TEXT_BASE) 75u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log 76 77u-boot.imx: u-boot.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE 78 $(call if_changed,mkimage) 79 80ifeq ($(CONFIG_OF_SEPARATE),y) 81MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ 82 -e $(CONFIG_SYS_TEXT_BASE) 83u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log 84 85u-boot-dtb.imx: u-boot-dtb.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE 86 $(call if_changed,mkimage) 87endif 88 89MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ 90 -e $(CONFIG_SPL_TEXT_BASE) 91 92SPL: MKIMAGEOUTPUT = SPL.log 93 94SPL: spl/u-boot-spl.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE 95 $(call if_changed,mkimage) 96 97MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \ 98 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware 99 100u-boot.uim: u-boot.bin FORCE 101 $(call if_changed,mkimage) 102 103OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) 104append = cat $(filter-out $< $(PHONY), $^) >> $@ 105 106quiet_cmd_pad_cat = CAT $@ 107cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@ 108 109u-boot-with-spl.imx: SPL u-boot.uim FORCE 110 $(call if_changed,pad_cat) 111 112u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE 113 $(call if_changed,pad_cat) 114 115quiet_cmd_u-boot-nand-spl_imx = GEN $@ 116cmd_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 119spl/u-boot-nand-spl.imx: SPL FORCE 120 $(call if_changed,u-boot-nand-spl_imx) 121 122targets += $(addprefix ../../../,$(IMX_CONFIG) SPL u-boot.uim spl/u-boot-nand-spl.imx) 123 124obj-$(CONFIG_MX5) += mx5/ 125obj-$(CONFIG_MX6) += mx6/ 126obj-$(CONFIG_MX7) += mx7/ 127obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/ 128 129