blob: 898478fc4a40e8156155748daf210d2bf8a70f9c [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
Sven Ebenfeld99f49fd2016-11-06 16:37:54 +010062endif
Jason Liu18936ee2011-11-25 00:18:01 +000063
Peng Fanb3513c52016-10-11 14:29:14 +080064PLUGIN = board/$(BOARDDIR)/plugin
65
66ifeq ($(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 $< $@
75else
76
77$(PLUGIN).bin:
78
79endif
80
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090081quiet_cmd_cpp_cfg = CFGS $@
82 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
Troy Kisky71a988a2013-01-18 16:14:24 +000083
Trent Piephof9167572018-04-06 17:11:27 -070084# mkimage source config file
85IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
Troy Kisky71a988a2013-01-18 16:14:24 +000086
Trent Piephof9167572018-04-06 17:11:27 -070087# How to create a cpp processed config file, they all use the same source
88%.cfgout: $(IMX_CONFIG) FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090089 $(Q)mkdir -p $(dir $@)
90 $(call if_changed_dep,cpp_cfg)
Troy Kisky71a988a2013-01-18 16:14:24 +000091
Peng Fan0e5c8ce2018-10-16 04:50:35 +000092ifeq ($(CONFIG_ARCH_IMX8), y)
Peng Fand7961152018-10-25 08:32:40 +000093CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh
94IMAGE_TYPE := imx8image
Marcel Ziswiler4c45e432019-05-31 18:56:38 +030095ifeq ($(CONFIG_SPL_BUILD),y)
Peng Fancaceb732018-12-21 06:21:31 +000096SPL_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 +030097endif
Peng Fan4ac94bfa2018-11-05 10:01:37 +000098DEPFILE_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 +000099else ifeq ($(CONFIG_ARCH_IMX8M), y)
100IMAGE_TYPE := imx8mimage
101IMX8M_DEPFILES := $(srctree)/tools/imx8m_image.sh
102DEPFILE_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 +0000103else
104IMAGE_TYPE := imximage
105DEPFILE_EXISTS := 0
Peng Fan0e5c8ce2018-10-16 04:50:35 +0000106endif
107
108MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
109 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +0100110u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900111
Trent Piephof9167572018-04-06 17:11:27 -0700112u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900113 $(call if_changed,mkimage)
114
Heiko Schocher16c776d2019-05-28 13:44:31 +0200115ifeq ($(CONFIG_MULTI_DTB_FIT),y)
116MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
117 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
118u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
119
120u-boot-dtb.imx: u-boot-fit-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
121ifeq ($(DEPFILE_EXISTS),0)
122 $(call if_changed,mkimage)
123endif
124else ifeq ($(CONFIG_OF_SEPARATE),y)
Peng Fan0e5c8ce2018-10-16 04:50:35 +0000125MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
126 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +0100127u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
Stefano Babice64348f2014-03-31 09:50:35 +0200128
Trent Piephof9167572018-04-06 17:11:27 -0700129u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
Peng Fand7961152018-10-25 08:32:40 +0000130ifeq ($(DEPFILE_EXISTS),0)
Stefano Babice64348f2014-03-31 09:50:35 +0200131 $(call if_changed,mkimage)
132endif
Peng Fand7961152018-10-25 08:32:40 +0000133endif
Stefano Babice64348f2014-03-31 09:50:35 +0200134
Peng Fan94df9882018-11-20 10:19:46 +0000135ifdef CONFIG_ARM64
136ifeq ($(CONFIG_ARCH_IMX8M), y)
137SPL:
138
139MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout \
140 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
141flash.bin: MKIMAGEOUTPUT = flash.log
142
143spl/u-boot-spl-ddr.bin: spl/u-boot-spl.bin spl/u-boot-spl.cfgout FORCE
144ifeq ($(DEPFILE_EXISTS),0)
145 $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 1
146endif
147
148flash.bin: spl/u-boot-spl-ddr.bin u-boot.itb FORCE
149ifeq ($(DEPFILE_EXISTS),0)
150 $(call if_changed,mkimage)
151endif
152endif
153
Peng Fancaceb732018-12-21 06:21:31 +0000154ifeq ($(CONFIG_ARCH_IMX8), y)
155SPL:
156
157MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout -T $(IMAGE_TYPE) -e 0x100000
158flash.bin: MKIMAGEOUTPUT = flash.log
159
160flash.bin: spl/u-boot-spl.bin u-boot.itb FORCE
161ifeq ($(SPL_DEPFILE_EXISTS),0)
162 $(call if_changed,mkimage)
163endif
164endif
165
Peng Fan94df9882018-11-20 10:19:46 +0000166else
Peng Fan0e5c8ce2018-10-16 04:50:35 +0000167MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
168 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +0100169SPL: MKIMAGEOUTPUT = SPL.log
170
Trent Piephof9167572018-04-06 17:11:27 -0700171SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900172 $(call if_changed,mkimage)
173
174MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
Tom Rinif1ab00f2016-05-02 18:36:07 -0400175 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900176
177u-boot.uim: u-boot.bin FORCE
178 $(call if_changed,mkimage)
179
180OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
181append = cat $(filter-out $< $(PHONY), $^) >> $@
182
183quiet_cmd_pad_cat = CAT $@
184cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
185
186u-boot-with-spl.imx: SPL u-boot.uim FORCE
187 $(call if_changed,pad_cat)
188
189u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
190 $(call if_changed,pad_cat)
191
192quiet_cmd_u-boot-nand-spl_imx = GEN $@
Marek Vasut0297bd12016-04-05 10:54:06 +0200193cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900194 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
195
196spl/u-boot-nand-spl.imx: SPL FORCE
197 $(call if_changed,u-boot-nand-spl_imx)
Peng Fan94df9882018-11-20 10:19:46 +0000198endif
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900199
Trent Piephof9167572018-04-06 17:11:27 -0700200targets += $(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 +0200201
Peng Fan7a0c9b02019-04-15 05:20:43 +0000202obj-$(CONFIG_ARM64) += lowlevel.o sip.o
Peng Fande274662018-01-10 13:20:23 +0800203
Stefano Babic552a8482017-06-29 10:16:06 +0200204obj-$(CONFIG_MX5) += mx5/
205obj-$(CONFIG_MX6) += mx6/
206obj-$(CONFIG_MX7) += mx7/
207obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
Peng Fancd357ad2018-11-20 10:19:25 +0000208obj-$(CONFIG_IMX8M) += imx8m/
Peng Fanb2b8b9b2018-10-18 14:28:08 +0200209obj-$(CONFIG_ARCH_IMX8) += imx8/