2012-01-09 20:38:59 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-01-09 20:38:59 +00:00
|
|
|
#
|
2016-05-20 00:10:46 +00:00
|
|
|
|
|
|
|
include $(srctree)/$(CPUDIR)/omap-common/config_secure.mk
|
|
|
|
|
2012-01-09 20:38:59 +00:00
|
|
|
ifdef CONFIG_SPL_BUILD
|
2016-05-20 00:10:46 +00:00
|
|
|
ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
|
|
|
|
#
|
|
|
|
# For booting from SPI use
|
|
|
|
# u-boot-spl_HS_SPI_X-LOADER to program flash
|
|
|
|
#
|
|
|
|
# For booting spl from all other media
|
|
|
|
# use u-boot-spl_HS_ISSW
|
|
|
|
#
|
|
|
|
# Refer to README.ti-secure for more info
|
|
|
|
#
|
|
|
|
ALL-y += u-boot-spl_HS_ISSW
|
|
|
|
ALL-$(CONFIG_SPL_SPI_SUPPORT) += u-boot-spl_HS_SPI_X-LOADER
|
|
|
|
else
|
2014-02-24 02:12:15 +00:00
|
|
|
ALL-y += MLO
|
|
|
|
ALL-$(CONFIG_SPL_SPI_SUPPORT) += MLO.byteswap
|
2016-05-20 00:10:46 +00:00
|
|
|
endif
|
2012-01-09 20:38:59 +00:00
|
|
|
else
|
2016-05-20 00:10:46 +00:00
|
|
|
ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
|
|
|
|
ALL-$(CONFIG_QSPI_BOOT) += u-boot_HS_XIP_X-LOADER
|
2016-07-20 18:55:58 +00:00
|
|
|
ALL-$(CONFIG_SPL_LOAD_FIT) += u-boot_HS.img
|
2016-05-20 00:10:46 +00:00
|
|
|
endif
|
2014-02-04 08:24:24 +00:00
|
|
|
ALL-y += u-boot.img
|
2012-01-09 20:38:59 +00:00
|
|
|
endif
|