blob: 17b241ae996a2e7c81999d5046adbff056569799 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Jason Liu18936ee2011-11-25 00:18:01 +00002#
3# (C) Copyright 2000-2006
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5#
6# (C) Copyright 2011 Freescale Semiconductor, Inc.
Jason Liu18936ee2011-11-25 00:18:01 +00007
Peng Fancd357ad2018-11-20 10:19:25 +00008ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 imx8m vf610))
Masahiro Yamada71f84ef2013-10-17 17:34:53 +09009obj-y = iomux-v3.o
Benoît Thébaudeauab3a9902013-05-03 10:32:13 +000010endif
Peng Fane0e4e532018-01-10 13:20:38 +080011
Peng Fancd357ad2018-11-20 10:19:25 +000012ifeq ($(SOC),$(filter $(SOC),imx8m))
Peng Fan60afc502018-11-20 10:19:50 +000013ifneq ($(CONFIG_SPL_BUILD),y)
Peng Fane0e4e532018-01-10 13:20:38 +080014obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
Peng Fan60afc502018-11-20 10:19:50 +000015endif
Peng Fane0e4e532018-01-10 13:20:38 +080016obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
17obj-$(CONFIG_FEC_MXC) += mac.o
18obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
19obj-y += cpu.o
20endif
21
Stefano Babicea00e592012-09-05 20:16:36 +000022ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
Stefan Agner23b6a132018-01-05 15:08:18 +010023obj-y += cpu.o speed.o
24obj-$(CONFIG_GPT_TIMER) += timer.o
Masahiro Yamada71f84ef2013-10-17 17:34:53 +090025obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
Stefano Babicea00e592012-09-05 20:16:36 +000026endif
Peng Fanc1e09402018-12-21 06:21:18 +000027ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs imx8m imx8))
Masahiro Yamada71f84ef2013-10-17 17:34:53 +090028obj-y += misc.o
Tim Harvey887717d2014-06-02 16:13:20 -070029obj-$(CONFIG_SPL_BUILD) += spl.o
Stefan Roese8870e452013-04-09 21:06:08 +000030endif
Adrian Alonsocd562c82015-09-02 13:54:23 -050031ifeq ($(SOC),$(filter $(SOC),mx7))
32obj-y += cpu.o
33obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
Peng Fanc1ef4862018-01-10 13:20:36 +080034obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
Adrian Alonsocd562c82015-09-02 13:54:23 -050035endif
Marek Vasut0b6b8a32018-10-04 21:16:42 +020036ifeq ($(SOC),$(filter $(SOC),mx5 mx6 mx7))
37obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
38endif
Adrian Alonsocd562c82015-09-02 13:54:23 -050039ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
Adrian Alonso50a082a2015-09-02 13:54:15 -050040obj-y += cache.o init.o
Peng Fan6ce8b102018-01-10 13:20:31 +080041obj-$(CONFIG_FEC_MXC) += mac.o
Peng Fande09c432016-01-28 16:55:00 +080042obj-$(CONFIG_IMX_RDC) += rdc-sema.o
Tom Rini20b9f2e2018-01-03 08:52:39 -050043ifneq ($(CONFIG_SPL_BUILD),y)
Peng Fan6f6058b2016-01-28 16:55:04 +080044obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
Tom Rini20b9f2e2018-01-03 08:52:39 -050045endif
Peng Fan6ce8b102018-01-10 13:20:31 +080046obj-$(CONFIG_SATA) += sata.o
Adrian Alonso7a7281a2015-10-12 13:48:08 -050047obj-$(CONFIG_SECURE_BOOT) += hab.o
Stefan Agner46718352018-01-05 15:08:19 +010048obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
Giuseppe Pagano164d9842013-11-28 12:32:48 +010049endif
Peng Fan1b409822017-02-22 16:21:43 +080050ifeq ($(SOC),$(filter $(SOC),mx7ulp))
51obj-y += cache.o
52obj-$(CONFIG_SECURE_BOOT) += hab.o
53endif
Sanchayan Maityc7ea2432015-04-15 16:24:22 +053054ifeq ($(SOC),$(filter $(SOC),vf610))
55obj-y += ddrmc-vf610.o
Lukasz Majewski548cc102018-12-05 17:04:02 +010056obj-$(CONFIG_DDRMC_VF610_CALIBRATION) += ddrmc-vf610-calibration.o
Sanchayan Maityc7ea2432015-04-15 16:24:22 +053057endif
Sven Ebenfeld99f49fd2016-11-06 16:37:54 +010058ifneq ($(CONFIG_SPL_BUILD),y)
Masahiro Yamada71f84ef2013-10-17 17:34:53 +090059obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
60obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
Raul Cardenas02000202015-02-27 11:22:06 -060061obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
Shyam Saini1d43e242019-06-14 13:05:33 +053062obj-$(CONFIG_CMD_NANDBCB) += cmd_nandbcb.o
Sven Ebenfeld99f49fd2016-11-06 16:37:54 +010063endif
Jason Liu18936ee2011-11-25 00:18:01 +000064
Peng Fanb3513c52016-10-11 14:29:14 +080065PLUGIN = board/$(BOARDDIR)/plugin
66
67ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y)
68
69$(PLUGIN).o: $(PLUGIN).S FORCE
70 $(Q)mkdir -p $(dir $@)
71 $(call if_changed_dep,as_o_S)
72
73$(PLUGIN).bin: $(PLUGIN).o FORCE
74 $(Q)mkdir -p $(dir $@)
75 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
76else
77
78$(PLUGIN).bin:
79
80endif
81
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090082quiet_cmd_cpp_cfg = CFGS $@
83 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
Troy Kisky71a988a2013-01-18 16:14:24 +000084
Trent Piephof9167572018-04-06 17:11:27 -070085# mkimage source config file
86IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
Troy Kisky71a988a2013-01-18 16:14:24 +000087
Trent Piephof9167572018-04-06 17:11:27 -070088# How to create a cpp processed config file, they all use the same source
89%.cfgout: $(IMX_CONFIG) FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090090 $(Q)mkdir -p $(dir $@)
91 $(call if_changed_dep,cpp_cfg)
Troy Kisky71a988a2013-01-18 16:14:24 +000092
Peng Fan700315c2019-08-22 07:42:41 +000093IMX_CONTAINER_CFG = $(CONFIG_IMX_CONTAINER_CFG:"%"=%)
94container.cfg: $(IMX_CONTAINER_CFG) FORCE
95 $(Q)mkdir -p $(dir $@)
96 $(call if_changed_dep,cpp_cfg)
97
Peng Fan0e5c8ce2018-10-16 04:50:35 +000098ifeq ($(CONFIG_ARCH_IMX8), y)
Peng Fand7961152018-10-25 08:32:40 +000099CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh
100IMAGE_TYPE := imx8image
Marcel Ziswiler4c45e432019-05-31 18:56:38 +0300101ifeq ($(CONFIG_SPL_BUILD),y)
Peng Fancaceb732018-12-21 06:21:31 +0000102SPL_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)
Marcel Ziswiler4c45e432019-05-31 18:56:38 +0300103endif
Peng Fan4ac94bfa2018-11-05 10:01:37 +0000104DEPFILE_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)
Peng Fan94df9882018-11-20 10:19:46 +0000105else ifeq ($(CONFIG_ARCH_IMX8M), y)
106IMAGE_TYPE := imx8mimage
107IMX8M_DEPFILES := $(srctree)/tools/imx8m_image.sh
108DEPFILE_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)
Peng Fand7961152018-10-25 08:32:40 +0000109else
110IMAGE_TYPE := imximage
111DEPFILE_EXISTS := 0
Peng Fan0e5c8ce2018-10-16 04:50:35 +0000112endif
113
114MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
115 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +0100116u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900117
Trent Piephof9167572018-04-06 17:11:27 -0700118u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900119 $(call if_changed,mkimage)
120
Heiko Schocher16c776d2019-05-28 13:44:31 +0200121ifeq ($(CONFIG_MULTI_DTB_FIT),y)
122MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
123 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
124u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
125
126u-boot-dtb.imx: u-boot-fit-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
127ifeq ($(DEPFILE_EXISTS),0)
128 $(call if_changed,mkimage)
129endif
130else ifeq ($(CONFIG_OF_SEPARATE),y)
Peng Fan0e5c8ce2018-10-16 04:50:35 +0000131MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
132 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +0100133u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
Stefano Babice64348f2014-03-31 09:50:35 +0200134
Trent Piephof9167572018-04-06 17:11:27 -0700135u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
Peng Fand7961152018-10-25 08:32:40 +0000136ifeq ($(DEPFILE_EXISTS),0)
Stefano Babice64348f2014-03-31 09:50:35 +0200137 $(call if_changed,mkimage)
138endif
Peng Fand7961152018-10-25 08:32:40 +0000139endif
Stefano Babice64348f2014-03-31 09:50:35 +0200140
Peng Fan94df9882018-11-20 10:19:46 +0000141ifdef CONFIG_ARM64
142ifeq ($(CONFIG_ARCH_IMX8M), y)
143SPL:
144
145MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout \
146 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
147flash.bin: MKIMAGEOUTPUT = flash.log
148
149spl/u-boot-spl-ddr.bin: spl/u-boot-spl.bin spl/u-boot-spl.cfgout FORCE
150ifeq ($(DEPFILE_EXISTS),0)
151 $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 1
152endif
153
154flash.bin: spl/u-boot-spl-ddr.bin u-boot.itb FORCE
155ifeq ($(DEPFILE_EXISTS),0)
156 $(call if_changed,mkimage)
157endif
158endif
159
Peng Fancaceb732018-12-21 06:21:31 +0000160ifeq ($(CONFIG_ARCH_IMX8), y)
161SPL:
162
163MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout -T $(IMAGE_TYPE) -e 0x100000
164flash.bin: MKIMAGEOUTPUT = flash.log
165
Peng Fan700315c2019-08-22 07:42:41 +0000166MKIMAGEFLAGS_u-boot.cnt = -n container.cfg -T $(IMAGE_TYPE) -e 0x100000
167u-boot.cnt: MKIMAGEOUTPUT = u-boot.cnt.log
168
169ifeq ($(CONFIG_SPL_LOAD_IMX_CONTAINER), y)
170u-boot.cnt: u-boot.bin container.cfg FORCE
Peng Fancaceb732018-12-21 06:21:31 +0000171 $(call if_changed,mkimage)
172endif
Peng Fan700315c2019-08-22 07:42:41 +0000173flash.bin: spl/u-boot-spl.bin FORCE
174 $(call if_changed,mkimage)
Peng Fancaceb732018-12-21 06:21:31 +0000175endif
176
Peng Fan94df9882018-11-20 10:19:46 +0000177else
Peng Fan0e5c8ce2018-10-16 04:50:35 +0000178MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
179 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +0100180SPL: MKIMAGEOUTPUT = SPL.log
181
Trent Piephof9167572018-04-06 17:11:27 -0700182SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900183 $(call if_changed,mkimage)
184
185MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
Tom Rinif1ab00f2016-05-02 18:36:07 -0400186 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900187
188u-boot.uim: u-boot.bin FORCE
189 $(call if_changed,mkimage)
190
191OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
192append = cat $(filter-out $< $(PHONY), $^) >> $@
193
194quiet_cmd_pad_cat = CAT $@
195cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
196
197u-boot-with-spl.imx: SPL u-boot.uim FORCE
198 $(call if_changed,pad_cat)
199
200u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
201 $(call if_changed,pad_cat)
202
203quiet_cmd_u-boot-nand-spl_imx = GEN $@
Marek Vasut0297bd12016-04-05 10:54:06 +0200204cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900205 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
206
207spl/u-boot-nand-spl.imx: SPL FORCE
208 $(call if_changed,u-boot-nand-spl_imx)
Peng Fan94df9882018-11-20 10:19:46 +0000209endif
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900210
Trent Piephof9167572018-04-06 17:11:27 -0700211targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx)
Stefano Babic552a8482017-06-29 10:16:06 +0200212
Peng Fan7a0c9b02019-04-15 05:20:43 +0000213obj-$(CONFIG_ARM64) += lowlevel.o sip.o
Peng Fande274662018-01-10 13:20:23 +0800214
Stefano Babic552a8482017-06-29 10:16:06 +0200215obj-$(CONFIG_MX5) += mx5/
216obj-$(CONFIG_MX6) += mx6/
217obj-$(CONFIG_MX7) += mx7/
218obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
Peng Fancd357ad2018-11-20 10:19:25 +0000219obj-$(CONFIG_IMX8M) += imx8m/
Peng Fanb2b8b9b2018-10-18 14:28:08 +0200220obj-$(CONFIG_ARCH_IMX8) += imx8/