mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 09:04:17 +00:00

To make software license auditing simpler, use SPDX[0] license identifiers instead of duplicating the license text in every file. NOTE: Files that have been imported by FreeBSD have not been modified. [0]: https://spdx.org/ Change-Id: I80a00e1f641b8cc075ca5a95b10607ed9ed8761a Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
#
|
|
# Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
INCLUDES += -Iinclude/bl32/tsp
|
|
|
|
BL32_SOURCES += bl32/tsp/tsp_main.c \
|
|
bl32/tsp/aarch64/tsp_entrypoint.S \
|
|
bl32/tsp/aarch64/tsp_exceptions.S \
|
|
bl32/tsp/aarch64/tsp_request.S \
|
|
bl32/tsp/tsp_interrupt.c \
|
|
bl32/tsp/tsp_timer.c \
|
|
common/aarch64/early_exceptions.S \
|
|
lib/locks/exclusive/aarch64/spinlock.S
|
|
|
|
BL32_LINKERFILE := bl32/tsp/tsp.ld.S
|
|
|
|
# This flag determines if the TSPD initializes BL32 in tspd_init() (synchronous
|
|
# method) or configures BL31 to pass control to BL32 instead of BL33
|
|
# (asynchronous method).
|
|
TSP_INIT_ASYNC := 0
|
|
|
|
$(eval $(call assert_boolean,TSP_INIT_ASYNC))
|
|
$(eval $(call add_define,TSP_INIT_ASYNC))
|
|
|
|
# Include the platform-specific TSP Makefile
|
|
# If no platform-specific TSP Makefile exists, it means TSP is not supported
|
|
# on this platform.
|
|
TSP_PLAT_MAKEFILE := $(wildcard ${PLAT_DIR}/tsp/tsp-${PLAT}.mk)
|
|
ifeq (,${TSP_PLAT_MAKEFILE})
|
|
$(error TSP is not supported on platform ${PLAT})
|
|
else
|
|
include ${TSP_PLAT_MAKEFILE}
|
|
endif
|