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