blob: 5806f8f5d1af78f3eb0ffd71640d6e05919ad10c [file] [log] [blame]
Nishanth Menoncd43ddc2015-08-17 19:54:49 +05301# Copyright 2015 Texas Instruments Incorporated, <www.ti.com>
2#
3# Lokesh Vutla <lokeshvutla@ti.com>
4#
5# SPDX-License-Identifier: GPL-2.0+
6#
7
Madan Srinivas2ff51832017-04-07 10:00:06 -05008include $(srctree)/arch/arm/mach-omap2/config_secure.mk
9
Lokesh Vutla45fe4b42015-08-17 19:54:51 +053010ifndef CONFIG_SPL_BUILD
Madan Srinivas2ff51832017-04-07 10:00:06 -050011ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
12ALL-y += u-boot_HS_MLO
13else
Lokesh Vutla45fe4b42015-08-17 19:54:51 +053014ALL-y += MLO
15endif
Madan Srinivas2ff51832017-04-07 10:00:06 -050016endif
Lokesh Vutla45fe4b42015-08-17 19:54:51 +053017
Nishanth Menoncd43ddc2015-08-17 19:54:49 +053018MKIMAGEFLAGS_u-boot-spl.gph = -A $(ARCH) -T gpimage -C none \
19 -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n SPL
20spl/u-boot-spl.gph: spl/u-boot-spl.bin FORCE
21 $(call if_changed,mkimage)
22
23OBJCOPYFLAGS_u-boot-spi.gph = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) \
24 --gap-fill=0
Cooper Jr., Franklin85bfe482017-06-16 17:25:14 -050025u-boot-spi.gph: spl/u-boot-spl.gph u-boot.img FORCE
Nishanth Menoncd43ddc2015-08-17 19:54:49 +053026 $(call if_changed,pad_cat)
27
Lokesh Vutla5f586e92015-08-17 19:54:50 +053028ifndef CONFIG_SPL_BUILD
29MKIMAGEFLAGS_MLO = -A $(ARCH) -T gpimage -C none \
Nishanth Menoncd43ddc2015-08-17 19:54:49 +053030 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -n U-Boot
Cooper Jr., Franklin85bfe482017-06-16 17:25:14 -050031MLO: u-boot.bin FORCE
Nishanth Menoncd43ddc2015-08-17 19:54:49 +053032 $(call if_changed,mkimage)
33 @dd if=/dev/zero bs=8 count=1 2>/dev/null >> $@
Lokesh Vutla5f586e92015-08-17 19:54:50 +053034endif