blob: 9b00074483d57137bfd7d118a3c41645e41e8311 [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 Fane0e4e532018-01-10 13:20:38 +08008ifeq ($(SOC),$(filter $(SOC),mx25 mx35 mx5 mx6 mx7 mx8m 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
12ifeq ($(SOC),$(filter $(SOC),mx8m))
13obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
14obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
15obj-$(CONFIG_FEC_MXC) += mac.o
16obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
17obj-y += cpu.o
18endif
19
Stefano Babicea00e592012-09-05 20:16:36 +000020ifeq ($(SOC),$(filter $(SOC),mx5 mx6))
Stefan Agner23b6a132018-01-05 15:08:18 +010021obj-y += cpu.o speed.o
22obj-$(CONFIG_GPT_TIMER) += timer.o
Masahiro Yamada71f84ef2013-10-17 17:34:53 +090023obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
Stefano Babicea00e592012-09-05 20:16:36 +000024endif
Peng Fane0e4e532018-01-10 13:20:38 +080025ifeq ($(SOC),$(filter $(SOC),mx7 mx6 mxs mx8m))
Masahiro Yamada71f84ef2013-10-17 17:34:53 +090026obj-y += misc.o
Tim Harvey887717d2014-06-02 16:13:20 -070027obj-$(CONFIG_SPL_BUILD) += spl.o
Stefan Roese8870e452013-04-09 21:06:08 +000028endif
Adrian Alonsocd562c82015-09-02 13:54:23 -050029ifeq ($(SOC),$(filter $(SOC),mx7))
30obj-y += cpu.o
31obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
Peng Fanc1ef4862018-01-10 13:20:36 +080032obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
Adrian Alonsocd562c82015-09-02 13:54:23 -050033endif
Marek Vasut0b6b8a32018-10-04 21:16:42 +020034ifeq ($(SOC),$(filter $(SOC),mx5 mx6 mx7))
35obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
36endif
Adrian Alonsocd562c82015-09-02 13:54:23 -050037ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
Adrian Alonso50a082a2015-09-02 13:54:15 -050038obj-y += cache.o init.o
Peng Fan6ce8b102018-01-10 13:20:31 +080039obj-$(CONFIG_FEC_MXC) += mac.o
Peng Fande09c432016-01-28 16:55:00 +080040obj-$(CONFIG_IMX_RDC) += rdc-sema.o
Tom Rini20b9f2e2018-01-03 08:52:39 -050041ifneq ($(CONFIG_SPL_BUILD),y)
Peng Fan6f6058b2016-01-28 16:55:04 +080042obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
Tom Rini20b9f2e2018-01-03 08:52:39 -050043endif
Peng Fan6ce8b102018-01-10 13:20:31 +080044obj-$(CONFIG_SATA) += sata.o
Adrian Alonso7a7281a2015-10-12 13:48:08 -050045obj-$(CONFIG_SECURE_BOOT) += hab.o
Stefan Agner46718352018-01-05 15:08:19 +010046obj-$(CONFIG_SYSCOUNTER_TIMER) += syscounter.o
Giuseppe Pagano164d9842013-11-28 12:32:48 +010047endif
Peng Fan1b409822017-02-22 16:21:43 +080048ifeq ($(SOC),$(filter $(SOC),mx7ulp))
49obj-y += cache.o
50obj-$(CONFIG_SECURE_BOOT) += hab.o
51endif
Sanchayan Maityc7ea2432015-04-15 16:24:22 +053052ifeq ($(SOC),$(filter $(SOC),vf610))
53obj-y += ddrmc-vf610.o
54endif
Sven Ebenfeld99f49fd2016-11-06 16:37:54 +010055ifneq ($(CONFIG_SPL_BUILD),y)
Masahiro Yamada71f84ef2013-10-17 17:34:53 +090056obj-$(CONFIG_CMD_BMODE) += cmd_bmode.o
57obj-$(CONFIG_CMD_HDMIDETECT) += cmd_hdmidet.o
Raul Cardenas02000202015-02-27 11:22:06 -060058obj-$(CONFIG_CMD_DEKBLOB) += cmd_dek.o
Sven Ebenfeld99f49fd2016-11-06 16:37:54 +010059endif
Jason Liu18936ee2011-11-25 00:18:01 +000060
Peng Fanb3513c52016-10-11 14:29:14 +080061PLUGIN = board/$(BOARDDIR)/plugin
62
63ifeq ($(CONFIG_USE_IMXIMG_PLUGIN),y)
64
65$(PLUGIN).o: $(PLUGIN).S FORCE
66 $(Q)mkdir -p $(dir $@)
67 $(call if_changed_dep,as_o_S)
68
69$(PLUGIN).bin: $(PLUGIN).o FORCE
70 $(Q)mkdir -p $(dir $@)
71 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
72else
73
74$(PLUGIN).bin:
75
76endif
77
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090078quiet_cmd_cpp_cfg = CFGS $@
79 cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $<
Troy Kisky71a988a2013-01-18 16:14:24 +000080
Trent Piephof9167572018-04-06 17:11:27 -070081# mkimage source config file
82IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%)
Troy Kisky71a988a2013-01-18 16:14:24 +000083
Trent Piephof9167572018-04-06 17:11:27 -070084# How to create a cpp processed config file, they all use the same source
85%.cfgout: $(IMX_CONFIG) FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090086 $(Q)mkdir -p $(dir $@)
87 $(call if_changed_dep,cpp_cfg)
Troy Kisky71a988a2013-01-18 16:14:24 +000088
Peng Fanb3513c52016-10-11 14:29:14 +080089MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090090 -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +010091u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090092
Trent Piephof9167572018-04-06 17:11:27 -070093u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +090094 $(call if_changed,mkimage)
95
Stefano Babice64348f2014-03-31 09:50:35 +020096ifeq ($(CONFIG_OF_SEPARATE),y)
Peng Fanb3513c52016-10-11 14:29:14 +080097MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
Stefano Babice64348f2014-03-31 09:50:35 +020098 -e $(CONFIG_SYS_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +010099u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
Stefano Babice64348f2014-03-31 09:50:35 +0200100
Trent Piephof9167572018-04-06 17:11:27 -0700101u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE
Stefano Babice64348f2014-03-31 09:50:35 +0200102 $(call if_changed,mkimage)
103endif
104
Peng Fanb3513c52016-10-11 14:29:14 +0800105MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900106 -e $(CONFIG_SPL_TEXT_BASE)
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +0100107SPL: MKIMAGEOUTPUT = SPL.log
108
Trent Piephof9167572018-04-06 17:11:27 -0700109SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900110 $(call if_changed,mkimage)
111
112MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \
Tom Rinif1ab00f2016-05-02 18:36:07 -0400113 -e $(CONFIG_SYS_TEXT_BASE) -C none -T firmware
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900114
115u-boot.uim: u-boot.bin FORCE
116 $(call if_changed,mkimage)
117
118OBJCOPYFLAGS += -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
119append = cat $(filter-out $< $(PHONY), $^) >> $@
120
121quiet_cmd_pad_cat = CAT $@
122cmd_pad_cat = $(cmd_objcopy) && $(append) || rm -f $@
123
124u-boot-with-spl.imx: SPL u-boot.uim FORCE
125 $(call if_changed,pad_cat)
126
127u-boot-with-nand-spl.imx: spl/u-boot-nand-spl.imx u-boot.uim FORCE
128 $(call if_changed,pad_cat)
129
130quiet_cmd_u-boot-nand-spl_imx = GEN $@
Marek Vasut0297bd12016-04-05 10:54:06 +0200131cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \
Masahiro Yamada4e0c8ab2014-02-24 11:12:20 +0900132 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
133
134spl/u-boot-nand-spl.imx: SPL FORCE
135 $(call if_changed,u-boot-nand-spl_imx)
136
Trent Piephof9167572018-04-06 17:11:27 -0700137targets += $(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 +0200138
Peng Fande274662018-01-10 13:20:23 +0800139obj-$(CONFIG_ARM64) += sip.o
140
Stefano Babic552a8482017-06-29 10:16:06 +0200141obj-$(CONFIG_MX5) += mx5/
142obj-$(CONFIG_MX6) += mx6/
143obj-$(CONFIG_MX7) += mx7/
144obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
Peng Fanfcdbde72018-01-10 13:20:37 +0800145obj-$(CONFIG_MX8M) += mx8m/