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

Currently, reference design platforms such as RD-N2, RD-N1-Edge, RD-V1-MC, RD-V1 and SGI-575 utilize "css/sgi" as the common source directory. The "sgi" prefix originated from the System Guidance for Infrastructure (SGI) and was initially associated with the SGI-575 platform. However, subsequent platforms released were under the Neoverse Reference Design product name. To align with the Neoverse Reference Design nomenclature, rename the common source directory from "css/sgi" to "css/neoverse_rd" and update all file prefixes from "sgi" to "nrd." Signed-off-by: Rohit Mathew <Rohit.Mathew@arm.com> Change-Id: I3dcbb31b9ab202e82caf25218ba33c520dcea4e4
78 lines
2.6 KiB
Makefile
78 lines
2.6 KiB
Makefile
#
|
|
# Copyright (c) 2018-2024, Arm Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
$(warning Platform ${PLAT} is deprecated. Some of the features might not work as expected)
|
|
|
|
# GIC-600 configuration
|
|
GICV3_IMPL_GIC600_MULTICHIP := 1
|
|
|
|
include plat/arm/css/neoverse_rd/nrd-common.mk
|
|
|
|
RDN1EDGE_BASE = plat/arm/board/rdn1edge
|
|
|
|
PLAT_INCLUDES += -I${RDN1EDGE_BASE}/include/
|
|
|
|
SGI_CPU_SOURCES := lib/cpus/aarch64/neoverse_n1.S
|
|
|
|
PLAT_BL_COMMON_SOURCES += ${CSS_ENT_BASE}/nrd_plat.c
|
|
|
|
BL1_SOURCES += ${SGI_CPU_SOURCES} \
|
|
${RDN1EDGE_BASE}/rdn1edge_err.c
|
|
|
|
BL2_SOURCES += ${RDN1EDGE_BASE}/rdn1edge_plat.c \
|
|
${RDN1EDGE_BASE}/rdn1edge_security.c \
|
|
${RDN1EDGE_BASE}/rdn1edge_err.c \
|
|
drivers/arm/tzc/tzc_dmc620.c \
|
|
lib/utils/mem_region.c \
|
|
plat/arm/common/arm_nor_psci_mem_protect.c
|
|
|
|
BL31_SOURCES += ${SGI_CPU_SOURCES} \
|
|
${RDN1EDGE_BASE}/rdn1edge_plat.c \
|
|
${RDN1EDGE_BASE}/rdn1edge_topology.c \
|
|
drivers/cfi/v2m/v2m_flash.c \
|
|
lib/utils/mem_region.c \
|
|
plat/arm/common/arm_nor_psci_mem_protect.c
|
|
|
|
ifeq (${TRUSTED_BOARD_BOOT}, 1)
|
|
BL1_SOURCES += ${RDN1EDGE_BASE}/rdn1edge_trusted_boot.c
|
|
BL2_SOURCES += ${RDN1EDGE_BASE}/rdn1edge_trusted_boot.c
|
|
endif
|
|
|
|
# Enable dynamic addition of MMAP regions in BL31
|
|
BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC
|
|
|
|
# Add the FDT_SOURCES and options for Dynamic Config
|
|
FDT_SOURCES += ${RDN1EDGE_BASE}/fdts/${PLAT}_fw_config.dts \
|
|
${RDN1EDGE_BASE}/fdts/${PLAT}_tb_fw_config.dts
|
|
FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb
|
|
TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
|
|
|
|
# Add the FW_CONFIG to FIP and specify the same to certtool
|
|
$(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG}))
|
|
# Add the TB_FW_CONFIG to FIP and specify the same to certtool
|
|
$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG}))
|
|
|
|
FDT_SOURCES += ${RDN1EDGE_BASE}/fdts/${PLAT}_nt_fw_config.dts
|
|
NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb
|
|
|
|
# Add the NT_FW_CONFIG to FIP and specify the same to certtool
|
|
$(eval $(call TOOL_ADD_PAYLOAD,${NT_FW_CONFIG},--nt-fw-config,${NT_FW_CONFIG}))
|
|
|
|
$(eval $(call CREATE_SEQ,SEQ,2))
|
|
ifneq ($(CSS_SGI_CHIP_COUNT),$(filter $(CSS_SGI_CHIP_COUNT),$(SEQ)))
|
|
$(error "Chip count for RDN1Edge platform should be one of $(SEQ), currently \
|
|
set to ${CSS_SGI_CHIP_COUNT}.")
|
|
endif
|
|
|
|
ifneq ($(CSS_SGI_PLATFORM_VARIANT),0)
|
|
$(error "CSS_SGI_PLATFORM_VARIANT for RD-N1-Edge should always be 0, \
|
|
currently set to ${CSS_SGI_PLATFORM_VARIANT}.")
|
|
endif
|
|
|
|
override CTX_INCLUDE_AARCH32_REGS := 0
|
|
|
|
# Enable the flag since RD-N1-EDGE has a system level cache
|
|
NEOVERSE_Nx_EXTERNAL_LLC := 1
|