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

Prepare for introduction of BL2 support by moving reusable files from BL31_SOURCES into PLAT_BL_COMMON_SOURCES Cc: Sumit Garg <sumit.garg@linaro.org> Cc: Masahisa Kojima <masahisa.kojima@linaro.org> Cc: Manish V Badarkhe <manish.badarkhe@arm.com> Cc: Leonardo Sandoval <leonardo.sandoval@linaro.org> Change-Id: I21137cdd40d027cfa77f1dec3598ee85d4873581 Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
69 lines
2 KiB
Makefile
69 lines
2 KiB
Makefile
#
|
|
# Copyright (c) 2018-2022, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
override RESET_TO_BL31 := 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
|
|
# Enable SCMI support
|
|
SQ_USE_SCMI_DRIVER ?= 0
|
|
|
|
# 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 \
|
|
-Idrivers/arm/css/scmi \
|
|
-Idrivers/arm/css/scmi/vendor
|
|
|
|
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 \
|
|
lib/cpus/aarch64/cortex_a53.S \
|
|
$(PLAT_PATH)/sq_xlat_setup.c \
|
|
${XLAT_TABLES_LIB_SRCS}
|
|
|
|
# Include GICv3 driver files
|
|
include drivers/arm/gic/v3/gicv3.mk
|
|
|
|
BL31_SOURCES += drivers/arm/ccn/ccn.c \
|
|
${GICV3_SOURCES} \
|
|
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)/drivers/scp/sq_scp.c
|
|
|
|
ifeq (${SQ_USE_SCMI_DRIVER},0)
|
|
BL31_SOURCES += $(PLAT_PATH)/drivers/scpi/sq_scpi.c \
|
|
$(PLAT_PATH)/drivers/mhu/sq_mhu.c
|
|
else
|
|
BL31_SOURCES += $(PLAT_PATH)/drivers/scp/sq_scmi.c \
|
|
drivers/arm/css/scmi/scmi_common.c \
|
|
drivers/arm/css/scmi/scmi_pwr_dmn_proto.c \
|
|
drivers/arm/css/scmi/scmi_sys_pwr_proto.c \
|
|
drivers/arm/css/scmi/vendor/scmi_sq.c \
|
|
drivers/arm/css/mhu/css_mhu_doorbell.c
|
|
endif
|
|
|
|
ifeq (${SPM_MM},1)
|
|
$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
|
|
|
|
BL31_SOURCES += $(PLAT_PATH)/sq_spm.c
|
|
endif
|
|
|
|
ifeq (${SQ_USE_SCMI_DRIVER},1)
|
|
$(eval $(call add_define,SQ_USE_SCMI_DRIVER))
|
|
endif
|