Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[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 ifneq ($(CONFIG_MX51),y)
25 obj-y   += mmdc_size.o
26 endif
27 obj-$(CONFIG_GPT_TIMER) += timer.o
28 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
29 endif
30 ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs imx8m imx8 imxrt))
31 obj-y   += misc.o
32 obj-$(CONFIG_SPL_BUILD) += spl.o
33 endif
34 ifeq ($(SOC),$(filter $(SOC),mx7))
35 obj-y   += cpu.o
36 obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
37 obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
38 endif
39 ifeq ($(SOC),$(filter $(SOC),mx5 mx6 mx7))
40 obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
41 endif
42 ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
43 obj-y   += cache.o init.o
44 obj-$(CONFIG_FEC_MXC) += mac.o
45 obj-$(CONFIG_IMX_RDC) += rdc-sema.o
46 ifneq ($(CONFIG_SPL_BUILD),y)
47 obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
48 endif
49 obj-$(CONFIG_SATA) += sata.o
50 obj-$(CONFIG_IMX_HAB)    += hab.o
51 obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
52 endif
53 ifeq ($(SOC),$(filter $(SOC),mx7ulp))
54 obj-y  += cache.o mmdc_size.o
55 obj-$(CONFIG_IMX_HAB) += hab.o
56 endif
57 ifeq ($(SOC),$(filter $(SOC),vf610))
58 obj-y += ddrmc-vf610.o
59 obj-$(CONFIG_DDRMC_VF610_CALIBRATION) += ddrmc-vf610-calibration.o
60 endif
61 ifneq ($(CONFIG_SPL_BUILD),y)
62 obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
63 obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
64 obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
65 obj-$(CONFIG_CMD_NANDBCB) += cmd_nandbcb.o
66 endif
67
68 PLUGIN = board/$(BOARDDIR)/plugin
69
70 ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y)
71
72 $(PLUGIN).o: $(PLUGIN).S FORCE
73         $(Q)mkdir -p $(dir $@)
74         $(call if_changed_dep,as_o_S)
75
76 $(PLUGIN).bin: $(PLUGIN).o FORCE
77         $(Q)mkdir -p $(dir $@)
78         $(OBJCOPY) -O binary --gap-fill 0xff $< $@
79 else
80
81 $(PLUGIN).bin:
82
83 endif
84
85 quiet_cmd_cpp_cfg = CFGS    $@
86       cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
87
88 # mkimage source config file
89 IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
90
91 # How to create a cpp processed config file, they all use the same source
92 %.cfgout: $(IMX_CONFIG) FORCE
93         $(Q)mkdir -p $(dir $@)
94         $(call if_changed_dep,cpp_cfg)
95
96 IMX_CONTAINER_CFG = $(CONFIG_IMX_CONTAINER_CFG:"%"=%)
97 container.cfg: $(IMX_CONTAINER_CFG) FORCE
98         $(Q)mkdir -p $(dir $@)
99         $(call if_changed_dep,cpp_cfg)
100
101 ifeq ($(CONFIG_ARCH_IMX8), y)
102 CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh
103 IMAGE_TYPE := imx8image
104 ifeq ($(CONFIG_SPL_BUILD),y)
105 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)
106 endif
107 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)
108 else ifeq ($(CONFIG_ARCH_IMX8M), y)
109 IMAGE_TYPE := imx8mimage
110 IMX8M_DEPFILES := $(srctree)/tools/imx8m_image.sh
111 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)
112 else
113 IMAGE_TYPE := imximage
114 DEPFILE_EXISTS := 0
115 endif
116
117 MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
118         -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
119 u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
120
121 u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
122         $(call if_changed,mkimage)
123
124 ifeq ($(CONFIG_MULTI_DTB_FIT),y)
125 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
126         -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
127 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
128
129 u-boot-dtb.imx: u-boot-fit-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
130 ifeq ($(DEPFILE_EXISTS),0)
131         $(call if_changed,mkimage)
132 endif
133 else ifeq ($(CONFIG_OF_SEPARATE),y)
134 MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
135         -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
136 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
137
138 u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
139 ifeq ($(DEPFILE_EXISTS),0)
140         $(call if_changed,mkimage)
141 endif
142 endif
143
144 ifdef CONFIG_ARM64
145 ifeq ($(CONFIG_ARCH_IMX8M), y)
146 SPL:
147
148 MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout \
149                    -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
150 flash.bin: MKIMAGEOUTPUT = flash.log
151
152 spl/u-boot-spl-ddr.bin: spl/u-boot-spl.bin spl/u-boot-spl.cfgout FORCE
153 ifeq ($(DEPFILE_EXISTS),0)
154         $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 1
155 endif
156
157 flash.bin: spl/u-boot-spl-ddr.bin u-boot.itb FORCE
158         $(call if_changed,mkimage)
159 endif
160
161 ifeq ($(CONFIG_ARCH_IMX8), y)
162 SPL:
163
164 MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout -T $(IMAGE_TYPE) -e 0x100000
165 flash.bin: MKIMAGEOUTPUT = flash.log
166
167 MKIMAGEFLAGS_u-boot.cnt = -n container.cfg -T $(IMAGE_TYPE) -e 0x100000
168 u-boot.cnt: MKIMAGEOUTPUT = u-boot.cnt.log
169
170 ifeq ($(CONFIG_SPL_LOAD_IMX_CONTAINER), y)
171 u-boot.cnt: u-boot.bin container.cfg FORCE
172         $(call if_changed,mkimage)
173 flash.bin: spl/u-boot-spl.bin FORCE
174         $(call if_changed,mkimage)
175         @flashbin_size=`wc -c flash.bin | awk '{print $$1}'`; \
176                    pad_cnt=$$(((flashbin_size + 0x400 - 1) / 0x400)); \
177                    echo "append u-boot.cnt at $$pad_cnt KB"; \
178                    dd if=u-boot.cnt of=flash.bin bs=1K seek=$$pad_cnt;
179 else
180 flash.bin: spl/u-boot-spl.bin FORCE
181         $(call if_changed,mkimage)
182 endif
183 endif
184
185 else
186 MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
187                    -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
188 SPL: MKIMAGEOUTPUT = SPL.log
189
190 SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
191         $(call if_changed,mkimage)
192
193 MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
194                 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
195
196 u-boot.uim: u-boot.bin FORCE
197         $(call if_changed,mkimage)
198
199 OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
200 append = cat $(filter-out $< $(PHONY), $^) >> $@
201
202 quiet_cmd_pad_cat = CAT     $@
203 cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
204
205 u-boot-with-spl.imx: SPL u-boot.uim FORCE
206         $(call if_changed,pad_cat)
207
208 u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
209         $(call if_changed,pad_cat)
210
211 quiet_cmd_u-boot-nand-spl_imx = GEN     $@
212 cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
213         dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
214
215 spl/u-boot-nand-spl.imx: SPL FORCE
216         $(call if_changed,u-boot-nand-spl_imx)
217 endif
218
219 targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx)
220
221 obj-$(CONFIG_ARM64) += lowlevel.o sip.o
222
223 obj-$(CONFIG_MX5) += mx5/
224 obj-$(CONFIG_MX6) += mx6/
225 obj-$(CONFIG_MX7) += mx7/
226 obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
227 obj-$(CONFIG_IMX8M) += imx8m/
228 obj-$(CONFIG_ARCH_IMX8) += imx8/
229 obj-$(CONFIG_ARCH_IMXRT) += imxrt/
230
231 obj-$(CONFIG_SPL_BOOTROM_SUPPORT) += spl_imx_romapi.o