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),mx6 mx7)) 35obj-y += cache.o init.o 36obj-$(CONFIG_FEC_MXC) += mac.o 37obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o 38obj-$(CONFIG_IMX_RDC) += rdc-sema.o 39ifneq ($(CONFIG_SPL_BUILD),y) 40obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o 41endif 42obj-$(CONFIG_SATA) += sata.o 43obj-$(CONFIG_SECURE_BOOT) += hab.o 44obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o 45endif 46ifeq ($(SOC),$(filter $(SOC),mx7ulp)) 47obj-y += cache.o 48obj-$(CONFIG_SECURE_BOOT) += hab.o 49endif 50ifeq ($(SOC),$(filter $(SOC),vf610)) 51obj-y += ddrmc-vf610.o 52endif 53ifneq ($(CONFIG_SPL_BUILD),y) 54obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o 55obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o 56obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o 57endif 58 59PLUGIN = board/$(BOARDDIR)/plugin 60 61ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y) 62 63$(PLUGIN).o: $(PLUGIN).S FORCE 64 $(Q)mkdir -p $(dir $@) 65 $(call if_changed_dep,as_o_S) 66 67$(PLUGIN).bin: $(PLUGIN).o FORCE 68 $(Q)mkdir -p $(dir $@) 69 $(OBJCOPY) -O binary --gap-fill 0xff $< $@ 70else 71 72$(PLUGIN).bin: 73 74endif 75 76quiet_cmd_cpp_cfg = CFGS $@ 77 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $< 78 79# mkimage source config file 80IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%) 81 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) 86 87MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ 88 -e $(CONFIG_SYS_TEXT_BASE) 89u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log 90 91u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE 92 $(call if_changed,mkimage) 93 94ifeq ($(CONFIG_OF_SEPARATE),y) 95MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ 96 -e $(CONFIG_SYS_TEXT_BASE) 97u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log 98 99u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE 100 $(call if_changed,mkimage) 101endif 102 103MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ 104 -e $(CONFIG_SPL_TEXT_BASE) 105SPL: MKIMAGEOUTPUT = SPL.log 106 107SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE 108 $(call if_changed,mkimage) 109 110MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \ 111 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware 112 113u-boot.uim: u-boot.bin FORCE 114 $(call if_changed,mkimage) 115 116OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) 117append = cat $(filter-out $< $(PHONY), $^) >> $@ 118 119quiet_cmd_pad_cat = CAT $@ 120cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@ 121 122u-boot-with-spl.imx: SPL u-boot.uim FORCE 123 $(call if_changed,pad_cat) 124 125u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE 126 $(call if_changed,pad_cat) 127 128quiet_cmd_u-boot-nand-spl_imx = GEN $@ 129cmd_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 - $< > $@ 131 132spl/u-boot-nand-spl.imx: SPL FORCE 133 $(call if_changed,u-boot-nand-spl_imx) 134 135targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx) 136 137obj-$(CONFIG_ARM64) += sip.o 138 139obj-$(CONFIG_MX5) += mx5/ 140obj-$(CONFIG_MX6) += mx6/ 141obj-$(CONFIG_MX7) += mx7/ 142obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/ 143obj-$(CONFIG_MX8M) += mx8m/ 144