blob: c46984994a182f43daec361a69ca8f82f8141c0b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Jason Liu83aa8fe2011-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 Liu83aa8fe2011-11-25 00:18:01 +00007
Peng Fan39945c12018-11-20 10:19:25 +00008ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 imx8m vf610))
Masahiro Yamada15103d12013-10-17 17:34:53 +09009obj-y = iomux-v3.o
Benoît Thébaudeau689a1582013-05-03 10:32:13 +000010endif
Peng Fan3926d8c2018-01-10 13:20:38 +080011
Peng Fan39945c12018-11-20 10:19:25 +000012ifeq ($(SOC),$(filter $(SOC),imx8m))
Peng Fana933ea82018-11-20 10:19:50 +000013ifneq ($(CONFIG_SPL_BUILD),y)
Peng Fan3926d8c2018-01-10 13:20:38 +080014obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
Peng Fana933ea82018-11-20 10:19:50 +000015endif
Peng Fan3926d8c2018-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 Babic8c7238e2012-09-05 20:16:36 +000022ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
Stefan Agner4bb73f12018-01-05 15:08:18 +010023obj-y += cpu.o speed.o
24obj-$(CONFIG_GPT_TIMER) += timer.o
Masahiro Yamada15103d12013-10-17 17:34:53 +090025obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
Stefano Babic8c7238e2012-09-05 20:16:36 +000026endif
Peng Fanbbea12b2018-12-21 06:21:18 +000027ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs imx8m imx8))
Masahiro Yamada15103d12013-10-17 17:34:53 +090028obj-y += misc.o
Tim Harvey354a7e32014-06-02 16:13:20 -070029obj-$(CONFIG_SPL_BUILD) += spl.o
Stefan Roese05b0ef42013-04-09 21:06:08 +000030endif
Adrian Alonso9f883e02015-09-02 13:54:23 -050031ifeq ($(SOC),$(filter $(SOC),mx7))
32obj-y += cpu.o
33obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
Peng Fanc131a382018-01-10 13:20:36 +080034obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
Adrian Alonso9f883e02015-09-02 13:54:23 -050035endif
Marek Vasutcd84d412018-10-04 21:16:42 +020036ifeq ($(SOC),$(filter $(SOC),mx5 mx6 mx7))
37obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
38endif
Adrian Alonso9f883e02015-09-02 13:54:23 -050039ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
Adrian Alonsoee7c4ca2015-09-02 13:54:15 -050040obj-y += cache.o init.o
Peng Fanbbb20942018-01-10 13:20:31 +080041obj-$(CONFIG_FEC_MXC) += mac.o
Peng Fan1b64ffa2016-01-28 16:55:00 +080042obj-$(CONFIG_IMX_RDC) += rdc-sema.o
Tom Rini2f218872018-01-03 08:52:39 -050043ifneq ($(CONFIG_SPL_BUILD),y)
Peng Fanfcabb6d2016-01-28 16:55:04 +080044obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
Tom Rini2f218872018-01-03 08:52:39 -050045endif
Peng Fanbbb20942018-01-10 13:20:31 +080046obj-$(CONFIG_SATA) += sata.o
Adrian Alonsoc97e4762015-10-12 13:48:08 -050047obj-$(CONFIG_SECURE_BOOT) += hab.o
Stefan Agnerbe8b7c52018-01-05 15:08:19 +010048obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
Giuseppe Pagano23442e02013-11-28 12:32:48 +010049endif
Peng Fanb5a90292017-02-22 16:21:43 +080050ifeq ($(SOC),$(filter $(SOC),mx7ulp))
51obj-y += cache.o
52obj-$(CONFIG_SECURE_BOOT) += hab.o
53endif
Sanchayan Maitye3a76e22015-04-15 16:24:22 +053054ifeq ($(SOC),$(filter $(SOC),vf610))
55obj-y += ddrmc-vf610.o
Lukasz Majewski71d42b32018-12-05 17:04:02 +010056obj-$(CONFIG_DDRMC_VF610_CALIBRATION) += ddrmc-vf610-calibration.o
Sanchayan Maitye3a76e22015-04-15 16:24:22 +053057endif
Sven Ebenfeld53e3d622016-11-06 16:37:54 +010058ifneq ($(CONFIG_SPL_BUILD),y)
Masahiro Yamada15103d12013-10-17 17:34:53 +090059obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
60obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
Raul Cardenasb5a36d82015-02-27 11:22:06 -060061obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
Sven Ebenfeld53e3d622016-11-06 16:37:54 +010062endif
Jason Liu83aa8fe2011-11-25 00:18:01 +000063
Peng Fan52564612016-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 Yamadad3aeeac2014-02-24 11:12:20 +090081quiet_cmd_cpp_cfg = CFGS $@
82 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
Troy Kiskya18d7862013-01-18 16:14:24 +000083
Trent Piephof0666032018-04-06 17:11:27 -070084# mkimage source config file
85IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
Troy Kiskya18d7862013-01-18 16:14:24 +000086
Trent Piephof0666032018-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 Yamadad3aeeac2014-02-24 11:12:20 +090089 $(Q)mkdir -p $(dir $@)
90 $(call if_changed_dep,cpp_cfg)
Troy Kiskya18d7862013-01-18 16:14:24 +000091
Peng Fan3cb662a2018-10-16 04:50:35 +000092ifeq ($(CONFIG_ARCH_IMX8), y)
Peng Fan844b9f32018-10-25 08:32:40 +000093CNTR_DEPFILES := $(srctree)/tools/imx_cntr_image.sh
94IMAGE_TYPE := imx8image
Peng Fanf2caeb42018-12-21 06:21:31 +000095SPL_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)
Peng Fan4be6ea02018-11-05 10:01:37 +000096DEPFILE_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 Fan39c5ba22018-11-20 10:19:46 +000097else ifeq ($(CONFIG_ARCH_IMX8M), y)
98IMAGE_TYPE := imx8mimage
99IMX8M_DEPFILES := $(srctree)/tools/imx8m_image.sh
100DEPFILE_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 Fan844b9f32018-10-25 08:32:40 +0000101else
102IMAGE_TYPE := imximage
103DEPFILE_EXISTS := 0
Peng Fan3cb662a2018-10-16 04:50:35 +0000104endif
105
106MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
107 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld9964ebd2016-11-06 16:37:58 +0100108u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
Masahiro Yamadad3aeeac2014-02-24 11:12:20 +0900109
Trent Piephof0666032018-04-06 17:11:27 -0700110u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
Masahiro Yamadad3aeeac2014-02-24 11:12:20 +0900111 $(call if_changed,mkimage)
112
Stefano Babicc183a6e2014-03-31 09:50:35 +0200113ifeq ($(CONFIG_OF_SEPARATE),y)
Peng Fan3cb662a2018-10-16 04:50:35 +0000114MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
115 -T $(IMAGE_TYPE) -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld9964ebd2016-11-06 16:37:58 +0100116u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
Stefano Babicc183a6e2014-03-31 09:50:35 +0200117
Trent Piephof0666032018-04-06 17:11:27 -0700118u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
Peng Fan844b9f32018-10-25 08:32:40 +0000119ifeq ($(DEPFILE_EXISTS),0)
Stefano Babicc183a6e2014-03-31 09:50:35 +0200120 $(call if_changed,mkimage)
121endif
Peng Fan844b9f32018-10-25 08:32:40 +0000122endif
Stefano Babicc183a6e2014-03-31 09:50:35 +0200123
Peng Fan39c5ba22018-11-20 10:19:46 +0000124ifdef CONFIG_ARM64
125ifeq ($(CONFIG_ARCH_IMX8M), y)
126SPL:
127
128MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout \
129 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
130flash.bin: MKIMAGEOUTPUT = flash.log
131
132spl/u-boot-spl-ddr.bin: spl/u-boot-spl.bin spl/u-boot-spl.cfgout FORCE
133ifeq ($(DEPFILE_EXISTS),0)
134 $(IMX8M_DEPFILES) spl/u-boot-spl.cfgout 1
135endif
136
137flash.bin: spl/u-boot-spl-ddr.bin u-boot.itb FORCE
138ifeq ($(DEPFILE_EXISTS),0)
139 $(call if_changed,mkimage)
140endif
141endif
142
Peng Fanf2caeb42018-12-21 06:21:31 +0000143ifeq ($(CONFIG_ARCH_IMX8), y)
144SPL:
145
146MKIMAGEFLAGS_flash.bin = -n spl/u-boot-spl.cfgout -T $(IMAGE_TYPE) -e 0x100000
147flash.bin: MKIMAGEOUTPUT = flash.log
148
149flash.bin: spl/u-boot-spl.bin u-boot.itb FORCE
150ifeq ($(SPL_DEPFILE_EXISTS),0)
151 $(call if_changed,mkimage)
152endif
153endif
154
Peng Fan39c5ba22018-11-20 10:19:46 +0000155else
Peng Fan3cb662a2018-10-16 04:50:35 +0000156MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) \
157 -T $(IMAGE_TYPE) -e $(CONFIG_SPL_TEXT_BASE)
Sven Ebenfeld9964ebd2016-11-06 16:37:58 +0100158SPL: MKIMAGEOUTPUT = SPL.log
159
Trent Piephof0666032018-04-06 17:11:27 -0700160SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
Masahiro Yamadad3aeeac2014-02-24 11:12:20 +0900161 $(call if_changed,mkimage)
162
163MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
Tom Riniba2199b2016-05-02 18:36:07 -0400164 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
Masahiro Yamadad3aeeac2014-02-24 11:12:20 +0900165
166u-boot.uim: u-boot.bin FORCE
167 $(call if_changed,mkimage)
168
169OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
170append = cat $(filter-out $< $(PHONY), $^) >> $@
171
172quiet_cmd_pad_cat = CAT $@
173cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
174
175u-boot-with-spl.imx: SPL u-boot.uim FORCE
176 $(call if_changed,pad_cat)
177
178u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
179 $(call if_changed,pad_cat)
180
181quiet_cmd_u-boot-nand-spl_imx = GEN $@
Marek Vasut9c5a4412016-04-05 10:54:06 +0200182cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
Masahiro Yamadad3aeeac2014-02-24 11:12:20 +0900183 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
184
185spl/u-boot-nand-spl.imx: SPL FORCE
186 $(call if_changed,u-boot-nand-spl_imx)
Peng Fan39c5ba22018-11-20 10:19:46 +0000187endif
Benoît Thébaudeaub2c79202013-04-11 09:35:56 +0000188
Trent Piephof0666032018-04-06 17:11:27 -0700189targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx)
Stefano Babic33731bc2017-06-29 10:16:06 +0200190
Peng Fanfbf7f082019-04-15 05:20:43 +0000191obj-$(CONFIG_ARM64) += lowlevel.o sip.o
Peng Fanaa3b9072018-01-10 13:20:23 +0800192
Stefano Babic33731bc2017-06-29 10:16:06 +0200193obj-$(CONFIG_MX5) += mx5/
194obj-$(CONFIG_MX6) += mx6/
195obj-$(CONFIG_MX7) += mx7/
196obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
Peng Fan39945c12018-11-20 10:19:25 +0000197obj-$(CONFIG_IMX8M) += imx8m/
Peng Fan6bae1c72018-10-18 14:28:08 +0200198obj-$(CONFIG_ARCH_IMX8) += imx8/