refactor(xilinx): add generic TSP makefile

Updated the generic TSP makefile in the common path for reuse in
different platforms.

Change-Id: Idd14675bc547e0a4a95132653a181e7ff39a547a
Signed-off-by: Prasad Kummari <prasad.kummari@amd.com>
This commit is contained in:
Prasad Kummari 2023-11-01 14:31:51 +05:30
parent 4c7abf85df
commit 0561070ebf
2 changed files with 12 additions and 2 deletions

View file

@ -0,0 +1,8 @@
#
# Copyright (c) 2023, Advanced Micro Devices, Inc. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
# TSP source files for AMD-Xilinx platforms
BL32_SOURCES += plat/common/aarch64/platform_mp_stack.S \
plat/xilinx/common/tsp/tsp_plat_setup.c

View file

@ -4,5 +4,7 @@
# SPDX-License-Identifier: BSD-3-Clause
# TSP source files specific to ZynqMP platform
BL32_SOURCES += plat/common/aarch64/platform_mp_stack.S \
plat/xilinx/common/tsp/tsp_plat_setup.c
PLAT_XILINX_COMMON := plat/xilinx/common/
include ${PLAT_XILINX_COMMON}/tsp/tsp.mk