12345678910111213141516171819202122 |
- #
- # Copyright (C) 2018 Marvell International Ltd.
- #
- # SPDX-License-Identifier: BSD-3-Clause
- # https://spdx.org/licenses
- #
- PLAT_MARVELL := plat/marvell/armada
- A8K_MSS_SOURCE := $(PLAT_MARVELL)/a8k/common/mss
- BL2_SOURCES += $(A8K_MSS_SOURCE)/mss_bl2_setup.c \
- $(MARVELL_MOCHI_DRV)
- BL31_SOURCES += $(A8K_MSS_SOURCE)/mss_pm_ipc.c \
- $(A8K_MSS_SOURCE)/mss_bl31_setup.c
- PLAT_INCLUDES += -I$(A8K_MSS_SOURCE)
- ifneq (${SCP_BL2},)
- # This define is used to inidcate the SCP image is present
- $(eval $(call add_define,SCP_IMAGE))
- endif
|