1 # SPDX-License-Identifier: GPL-2.0+ 2 # 3 # (C) Copyright 2000-2006 4 # Wolfgang Denk, DENX Software Engineering, wd (at] denx.de. 5 # 6 # (C) Copyright 2011 Freescale Semiconductor, Inc. 7 8 ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 mx8m vf610)) 9 obj-y = iomux-v3.o 10 endif 11 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 17 obj-y += cpu.o 18 endif 19 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 24 endif 25 ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs mx8m)) 26 obj-y += misc.o 27 obj-$(CONFIG_SPL_BUILD) += spl.o 28 endif 29 ifeq ($(SOC),$(filter $(SOC),mx7)) 30 obj-y += cpu.o 31 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o 32 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o 33 endif 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 41 endif 42 obj-$(CONFIG_SATA) += sata.o 43 obj-$(CONFIG_SECURE_BOOT) += hab.o 44 obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o 45 endif 46 ifeq ($(SOC),$(filter $(SOC),mx7ulp)) 47 obj-y += cache.o 48 obj-$(CONFIG_SECURE_BOOT) += hab.o 49 endif 50 ifeq ($(SOC),$(filter $(SOC),vf610)) 51 obj-y += ddrmc-vf610.o 52 endif 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 57 endif 58 59 PLUGIN = board/$(BOARDDIR)/plugin 60 61 ifeq ($(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 $< $@ 70 else 71 72 $(PLUGIN).bin: 73 74 endif 75 76 quiet_cmd_cpp_cfg = CFGS $@ 77 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $< 78 79 # mkimage source config file 80 IMX_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 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 90 91 u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE 92 $(call if_changed,mkimage) 93 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 98 99 u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE 100 $(call if_changed,mkimage) 101 endif 102 103 MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ 104 -e $(CONFIG_SPL_TEXT_BASE) 105 SPL: MKIMAGEOUTPUT = SPL.log 106 107 SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE 108 $(call if_changed,mkimage) 109 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 112 113 u-boot.uim: u-boot.bin FORCE 114 $(call if_changed,mkimage) 115 116 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) 117 append = cat $(filter-out $< $(PHONY), $^) >> $@ 118 119 quiet_cmd_pad_cat = CAT $@ 120 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@ 121 122 u-boot-with-spl.imx: SPL u-boot.uim FORCE 123 $(call if_changed,pad_cat) 124 125 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE 126 $(call if_changed,pad_cat) 127 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 - $< > $@ 131 132 spl/u-boot-nand-spl.imx: SPL FORCE 133 $(call if_changed,u-boot-nand-spl_imx) 134 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) 136 137 obj-$(CONFIG_ARM64) += sip.o 138 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/ 144