build(n1sdp): add ARM_ARCH_MAJOR.ARM_ARCH_MINOR

n1sdp based out of Arm Neoverse N1 Core uses Arm®v8.2‑A extensions
so set ARM_ARCH_MAJOR.ARM_ARCH_MINOR for n1sdp platform to 8.2

Change-Id: Ib70c6be5e12817961430870d50fb1b0efca32df2
Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
This commit is contained in:
Govindraj Raja 2023-09-20 13:37:40 -05:00
parent 3547270f59
commit cf953bca5c

View file

@ -1,5 +1,5 @@
# #
# Copyright (c) 2018-2022, Arm Limited. All rights reserved. # Copyright (c) 2018-2023, Arm Limited. All rights reserved.
# #
# SPDX-License-Identifier: BSD-3-Clause # SPDX-License-Identifier: BSD-3-Clause
# #
@ -14,6 +14,10 @@ PLAT_INCLUDES := -I${N1SDP_BASE}/include
N1SDP_CPU_SOURCES := lib/cpus/aarch64/neoverse_n1.S N1SDP_CPU_SOURCES := lib/cpus/aarch64/neoverse_n1.S
# Neoverse N1 cores support Armv8.2 extensions
ARM_ARCH_MAJOR := 8
ARM_ARCH_MINOR := 2
# GIC-600 configuration # GIC-600 configuration
GICV3_SUPPORT_GIC600 := 1 GICV3_SUPPORT_GIC600 := 1
GICV3_IMPL_GIC600_MULTICHIP := 1 GICV3_IMPL_GIC600_MULTICHIP := 1