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