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

This patch moves all GICv3 driver files into new added 'gicv3.mk' makefile for the benefit of the generic driver which can evolve in the future without affecting platforms. The patch adds GICv3 driver configuration flags 'GICV3_IMPL', 'GICV3_IMPL_GIC600_MULTICHIP' and 'GICV3_OVERRIDE_DISTIF_PWR_OPS' described in 'GICv3 driver options' section of 'build-option.rst' document. NOTE: Platforms with GICv3 driver need to be modified to include 'drivers/arm/gic/v3/gicv3.mk' in their makefiles. Change-Id: If055f6770ff20f5dee5a3c99ae7ced7cdcac5c44 Signed-off-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
69 lines
2 KiB
Makefile
69 lines
2 KiB
Makefile
#
|
|
# Copyright (c) 2018-2020, 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 \
|
|
${XLAT_TABLES_LIB_SRCS}
|
|
|
|
# Include GICv3 driver files
|
|
include drivers/arm/gic/v3/gicv3.mk
|
|
|
|
BL31_SOURCES += drivers/arm/ccn/ccn.c \
|
|
${GICV3_SOURCES} \
|
|
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/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
|