mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

Enable the deprecated SPM framework for the SynQuacer platform. It involves creating a memory layout in secure DRAM, and wiring up the SPM infrastructure so that the secure partition payload that is loaded into this region by the SCP firmware is dispatched appropriately. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
51 lines
1.5 KiB
Makefile
51 lines
1.5 KiB
Makefile
#
|
|
# Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
override RESET_TO_BL31 := 1
|
|
override MULTI_CONSOLE_API := 1
|
|
override PROGRAMMABLE_RESET_ADDRESS := 1
|
|
override USE_COHERENT_MEM := 1
|
|
override SEPARATE_CODE_AND_RODATA := 1
|
|
override ENABLE_SVE_FOR_NS := 0
|
|
|
|
# Enable workarounds for selected Cortex-A53 erratas.
|
|
ERRATA_A53_855873 := 1
|
|
|
|
# Libraries
|
|
include lib/xlat_tables_v2/xlat_tables.mk
|
|
|
|
PLAT_PATH := plat/socionext/synquacer
|
|
PLAT_INCLUDES := -I$(PLAT_PATH)/include \
|
|
-I$(PLAT_PATH)/drivers/scpi \
|
|
-I$(PLAT_PATH)/drivers/mhu
|
|
|
|
PLAT_BL_COMMON_SOURCES += $(PLAT_PATH)/sq_helpers.S \
|
|
drivers/arm/pl011/aarch64/pl011_console.S \
|
|
drivers/delay_timer/delay_timer.c \
|
|
drivers/delay_timer/generic_delay_timer.c \
|
|
${XLAT_TABLES_LIB_SRCS}
|
|
|
|
BL31_SOURCES += drivers/arm/ccn/ccn.c \
|
|
drivers/arm/gic/common/gic_common.c \
|
|
drivers/arm/gic/v3/gicv3_helpers.c \
|
|
drivers/arm/gic/v3/gicv3_main.c \
|
|
lib/cpus/aarch64/cortex_a53.S \
|
|
plat/common/plat_gicv3.c \
|
|
plat/common/plat_psci_common.c \
|
|
$(PLAT_PATH)/sq_bl31_setup.c \
|
|
$(PLAT_PATH)/sq_ccn.c \
|
|
$(PLAT_PATH)/sq_topology.c \
|
|
$(PLAT_PATH)/sq_psci.c \
|
|
$(PLAT_PATH)/sq_gicv3.c \
|
|
$(PLAT_PATH)/sq_xlat_setup.c \
|
|
$(PLAT_PATH)/drivers/scpi/sq_scpi.c \
|
|
$(PLAT_PATH)/drivers/mhu/sq_mhu.c
|
|
|
|
ifeq (${ENABLE_SPM},1)
|
|
$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
|
|
|
|
BL31_SOURCES += $(PLAT_PATH)/sq_spm.c
|
|
endif
|