Merge tag 'u-boot-atmel-fixes-2019.07-a' of git://git.denx.de/u-boot-atmel
[oweals/u-boot.git] / arch / arm / mach-imx / Makefile
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
8 ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 imx8m vf610))
9 obj-y   = iomux-v3.o
10 endif
11
12 ifeq ($(SOC),$(filter $(SOC),imx8m))
13 ifneq ($(CONFIG_SPL_BUILD),y)
14 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
15 endif
16 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
17 obj-$(CONFIG_FEC_MXC) += mac.o
18 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
19 obj-y += cpu.o
20 endif
21
22 ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
23 obj-y   += cpu.o speed.o
24 obj-$(CONFIG_GPT_TIMER) += timer.o
25 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
26 endif
27 ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs imx8m imx8))
28 obj-y   += misc.o
29 obj-$(CONFIG_SPL_BUILD) += spl.o
30 endif
31 ifeq ($(SOC),$(filter $(SOC),mx7))
32 obj-y   += cpu.o
33 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
34 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
35 endif
36 ifeq ($(SOC),$(filter $(SOC),mx5 mx6 mx7))
37 obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
38 endif
39 ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
40 obj-y   += cache.o init.o
41 obj-$(CONFIG_FEC_MXC) += mac.o
42 obj-$(CONFIG_IMX_RDC) += rdc-sema.o
43 ifneq ($(CONFIG_SPL_BUILD),y)
44 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
45 endif
46 obj-$(CONFIG_SATA) += sata.o
47 obj-$(CONFIG_SECURE_BOOT)    += hab.o
48 obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
49 endif
50 ifeq ($(SOC),$(filter $(SOC),mx7ulp))
51 obj-y  += cache.o
52 obj-$(CONFIG_SECURE_BOOT) += hab.o
53 endif
54 ifeq ($(SOC),$(filter $(SOC),vf610))
55 obj-y += ddrmc-vf610.o
56 obj-$(CONFIG_DDRMC_VF610_CALIBRATION) += ddrmc-vf610-calibration.o
57 endif
58 ifneq ($(CONFIG_SPL_BUILD),y)
59 obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
60 obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
61 obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
62 endif
63
64 PLUGIN = board/$(BOARDDIR)/plugin
65
66 ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y)
67
68 $(PLUGIN).o: $(PLUGIN).S FORCE
69         $(Q)mkdir -p $(dir $@)
70         $(call if_changed_dep,as_o_S)
71
72 $(PLUGIN).bin: $(PLUGIN).o FORCE
73         $(Q)mkdir -p $(dir $@)
74         $(OBJCOPY) -O binary --gap-fill 0xff $< $@
75 else
76
77 $(PLUGIN).bin:
78
79 endif
80
81 quiet_cmd_cpp_cfg = CFGS    $@
82       cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
83
84 # mkimage source config file
85 IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
86
87 # How to create a cpp processed config file, they all use the same source
88 %.cfgout: $(IMX_CONFIG) FORCE
89         $(Q)mkdir -p $(dir $@)
90         $(call if_changed_dep,cpp_cfg)
91
92 ifeq ($(CONFIG_ARCH_IMX8), y)
93 CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh
94 IMAGE_TYPE := imx8image
95 SPL_DEPFILE_EXISTS := $(shell $(CPP) $(cpp_flags) -x c -o spl/u-boot-spl.cfgout $(srctree)/$(IMX_CONFIG); if [ -f spl/u-boot-spl.cfgout ]; then $(CNTR_DEPFILES) spl/u-boot-spl.cfgout; echo $$?; fi)
96 DEPFILE_EXISTS := $(shell $(CPP) $(cpp_flags) -x c -o u-boot-dtb.cfgout $(srctree)/$(IMX_CONFIG); if [ -f u-boot-dtb.cfgout ]; then $(CNTR_DEPFILES) u-boot-dtb.cfgout; echo $$?; fi)
97 else ifeq ($(CONFIG_ARCH_IMX8M), y)
98 IMAGE_TYPE := imx8mimage
99 IMX8M_DEPFILES := $(srctree)/tools/imx8m_image.sh
100 DEPFILE_EXISTS := $(shell $(CPP) $(cpp_flags) -x c -o spl/u-boot-spl.cfgout $(srctree)/$(IMX_CONFIG);if [ -f spl/u-boot-spl.cfgout ]; then $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 0; echo $$?; fi)
101 else
102 IMAGE_TYPE := imximage
103 DEPFILE_EXISTS := 0
104 endif
105
106 MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
107         -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
108 u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
109
110 u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
111         $(call if_changed,mkimage)
112
113 ifeq ($(CONFIG_OF_SEPARATE),y)
114 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
115         -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
116 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
117
118 u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
119 ifeq ($(DEPFILE_EXISTS),0)
120         $(call if_changed,mkimage)
121 endif
122 endif
123
124 ifdef CONFIG_ARM64
125 ifeq ($(CONFIG_ARCH_IMX8M), y)
126 SPL:
127
128 MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout \
129                    -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
130 flash.bin: MKIMAGEOUTPUT = flash.log
131
132 spl/u-boot-spl-ddr.bin: spl/u-boot-spl.bin spl/u-boot-spl.cfgout FORCE
133 ifeq ($(DEPFILE_EXISTS),0)
134         $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 1
135 endif
136
137 flash.bin: spl/u-boot-spl-ddr.bin u-boot.itb FORCE
138 ifeq ($(DEPFILE_EXISTS),0)
139         $(call if_changed,mkimage)
140 endif
141 endif
142
143 ifeq ($(CONFIG_ARCH_IMX8), y)
144 SPL:
145
146 MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout -T $(IMAGE_TYPE) -e 0x100000
147 flash.bin: MKIMAGEOUTPUT = flash.log
148
149 flash.bin: spl/u-boot-spl.bin u-boot.itb FORCE
150 ifeq ($(SPL_DEPFILE_EXISTS),0)
151         $(call if_changed,mkimage)
152 endif
153 endif
154
155 else
156 MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
157                    -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
158 SPL: MKIMAGEOUTPUT = SPL.log
159
160 SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
161         $(call if_changed,mkimage)
162
163 MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
164                 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
165
166 u-boot.uim: u-boot.bin FORCE
167         $(call if_changed,mkimage)
168
169 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
170 append = cat $(filter-out $< $(PHONY), $^) >> $@
171
172 quiet_cmd_pad_cat = CAT     $@
173 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
174
175 u-boot-with-spl.imx: SPL u-boot.uim FORCE
176         $(call if_changed,pad_cat)
177
178 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
179         $(call if_changed,pad_cat)
180
181 quiet_cmd_u-boot-nand-spl_imx = GEN     $@
182 cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
183         dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
184
185 spl/u-boot-nand-spl.imx: SPL FORCE
186         $(call if_changed,u-boot-nand-spl_imx)
187 endif
188
189 targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx)
190
191 obj-$(CONFIG_ARM64) += lowlevel.o sip.o
192
193 obj-$(CONFIG_MX5) += mx5/
194 obj-$(CONFIG_MX6) += mx6/
195 obj-$(CONFIG_MX7) += mx7/
196 obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
197 obj-$(CONFIG_IMX8M) += imx8m/
198 obj-$(CONFIG_ARCH_IMX8) += imx8/