xref: /rk3399_ARM-atf/make_helpers/arch_features.mk (revision a57e18e4337b74ce3d133a18f07fa891f0fd5fa9)
16a0da736SJayanth Dodderi Chidanand#
20a33adc0SGovindraj Raja# Copyright (c) 2022-2024, Arm Limited. All rights reserved.
36a0da736SJayanth Dodderi Chidanand#
46a0da736SJayanth Dodderi Chidanand# SPDX-License-Identifier: BSD-3-Clause
56a0da736SJayanth Dodderi Chidanand#
66a0da736SJayanth Dodderi Chidanand
7f5211420SGovindraj Raja# This file lists all of the architectural features, and initializes
8f5211420SGovindraj Raja# and enables them based on the configured architecture version.
9f5211420SGovindraj Raja
10f5211420SGovindraj Raja# This file follows the following format:
113dafd960SGovindraj Raja#   - Enable mandatory feature if not updated, as applicable to an Arch Version.
12fb730117SGovindraj Raja#   - By default disable any mandatory features if they have not been defined yet.
13f5211420SGovindraj Raja#   - Disable or enable any optional feature this would be enabled/disabled if needed by platform.
14f5211420SGovindraj Raja
15f5211420SGovindraj Raja#
16f5211420SGovindraj Raja################################################################################
173dafd960SGovindraj Raja# Enable Mandatory features if not updated yet, based on Arch versions.
18f5211420SGovindraj Raja################################################################################
19f5211420SGovindraj Raja#
206a0da736SJayanth Dodderi Chidanand
216a0da736SJayanth Dodderi Chidanand# Enable the features which are mandatory from ARCH version 8.1 and upwards.
226a0da736SJayanth Dodderi Chidanandifeq "8.1" "$(word 1, $(sort 8.1 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
232a71f163SGovindraj Rajaarmv8-1-a-feats         := ENABLE_FEAT_PAN ENABLE_FEAT_VHE
242a71f163SGovindraj Raja
252a71f163SGovindraj RajaFEAT_LIST               := ${armv8-1-a-feats}
266a0da736SJayanth Dodderi Chidanandendif
276a0da736SJayanth Dodderi Chidanand
289202d519SManish Pandey# Enable the features which are mandatory from ARCH version 8.2 and upwards.
299202d519SManish Pandeyifeq "8.2" "$(word 1, $(sort 8.2 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
302a71f163SGovindraj Rajaarmv8-2-a-feats         := ENABLE_FEAT_RAS
312a71f163SGovindraj Raja# 8.1 Compliant
322a71f163SGovindraj Rajaarmv8-2-a-feats         += ${armv8-1-a-feats}
332a71f163SGovindraj Raja
342a71f163SGovindraj RajaFEAT_LIST               := ${armv8-2-a-feats}
352a71f163SGovindraj Rajaendif
362a71f163SGovindraj Raja
372a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 8.3 and upwards.
382a71f163SGovindraj Rajaifeq "8.3" "$(word 1, $(sort 8.3 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
392a71f163SGovindraj Raja# 8.2 Compliant
402a71f163SGovindraj Rajaarmv8-3-a-feats         += ${armv8-2-a-feats}
412a71f163SGovindraj Raja
422a71f163SGovindraj RajaFEAT_LIST               := ${armv8-3-a-feats}
439202d519SManish Pandeyendif
449202d519SManish Pandey
456a0da736SJayanth Dodderi Chidanand# Enable the features which are mandatory from ARCH version 8.4 and upwards.
466a0da736SJayanth Dodderi Chidanandifeq "8.4" "$(word 1, $(sort 8.4 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
472a71f163SGovindraj Rajaarmv8-4-a-feats         := ENABLE_FEAT_SEL2 ENABLE_TRF_FOR_NS ENABLE_FEAT_DIT
482a71f163SGovindraj Raja# 8.3 Compliant
492a71f163SGovindraj Rajaarmv8-4-a-feats         += ${armv8-3-a-feats}
502a71f163SGovindraj Raja
512a71f163SGovindraj RajaFEAT_LIST               := ${armv8-4-a-feats}
526a0da736SJayanth Dodderi Chidanandendif
536a0da736SJayanth Dodderi Chidanand
546a0da736SJayanth Dodderi Chidanand# Enable the features which are mandatory from ARCH version 8.5 and upwards.
556a0da736SJayanth Dodderi Chidanandifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
562a71f163SGovindraj Rajaarmv8-5-a-feats         := ENABLE_FEAT_RNG ENABLE_FEAT_SB
572a71f163SGovindraj Raja# 8.4 Compliant
582a71f163SGovindraj Rajaarmv8-5-a-feats         += ${armv8-4-a-feats}
59f5211420SGovindraj Raja
602a71f163SGovindraj RajaFEAT_LIST               := ${armv8-5-a-feats}
61f5211420SGovindraj Raja# Enable Memory tagging, Branch Target Identification for aarch64 only.
62f5211420SGovindraj Rajaifeq ($(ARCH), aarch64)
636c1ae075SGovindraj Raja	mem_tag_arch_support		?= 	yes
64f5211420SGovindraj Rajaendif #(ARCH=aarch64)
65f5211420SGovindraj Raja
666a0da736SJayanth Dodderi Chidanandendif
676a0da736SJayanth Dodderi Chidanand
686a0da736SJayanth Dodderi Chidanand# Enable the features which are mandatory from ARCH version 8.6 and upwards.
696a0da736SJayanth Dodderi Chidanandifeq "8.6" "$(word 1, $(sort 8.6 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
702a71f163SGovindraj Rajaarmv8-6-a-feats         := ENABLE_FEAT_ECV ENABLE_FEAT_FGT
712a71f163SGovindraj Raja# 8.5 Compliant
722a71f163SGovindraj Rajaarmv8-6-a-feats         += ${armv8-5-a-feats}
732a71f163SGovindraj RajaFEAT_LIST               := ${armv8-6-a-feats}
746a0da736SJayanth Dodderi Chidanandendif
756a0da736SJayanth Dodderi Chidanand
766a0da736SJayanth Dodderi Chidanand# Enable the features which are mandatory from ARCH version 8.7 and upwards.
776a0da736SJayanth Dodderi Chidanandifeq "8.7" "$(word 1, $(sort 8.7 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
782a71f163SGovindraj Rajaarmv8-7-a-feats         := ENABLE_FEAT_HCX
792a71f163SGovindraj Raja# 8.6 Compliant
802a71f163SGovindraj Rajaarmv8-7-a-feats         += ${armv8-6-a-feats}
812a71f163SGovindraj RajaFEAT_LIST               := ${armv8-7-a-feats}
822a71f163SGovindraj Rajaendif
832a71f163SGovindraj Raja
842a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 8.8 and upwards.
852a71f163SGovindraj Rajaifeq "8.8" "$(word 1, $(sort 8.8 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
862a71f163SGovindraj Raja# 8.7 Compliant
8794ff1d98SManish V Badarkhearmv8-8-a-feats         += ${armv8-7-a-feats}
882a71f163SGovindraj RajaFEAT_LIST               := ${armv8-8-a-feats}
896a0da736SJayanth Dodderi Chidanandendif
90f5211420SGovindraj Raja
91f5211420SGovindraj Raja# Enable the features which are mandatory from ARCH version 8.9 and upwards.
92f5211420SGovindraj Rajaifeq "8.9" "$(word 1, $(sort 8.9 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
934ec4e545SJayanth Dodderi Chidanandarmv8-9-a-feats         := ENABLE_FEAT_TCR2 ENABLE_FEAT_DEBUGV8P9 ENABLE_FEAT_SCTLR2
942a71f163SGovindraj Raja# 8.8 Compliant
952a71f163SGovindraj Rajaarmv8-9-a-feats         += ${armv8-8-a-feats}
962a71f163SGovindraj RajaFEAT_LIST               := ${armv8-9-a-feats}
97f5211420SGovindraj Rajaendif
98f5211420SGovindraj Raja
992a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.0 and upwards.
1002a71f163SGovindraj Rajaifeq "9.0" "$(word 1, $(sort 9.0 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1012a71f163SGovindraj Raja# 8.5 Compliant
1022a71f163SGovindraj Rajaarmv9-0-a-feats         += ${armv8-5-a-feats}
1032a71f163SGovindraj RajaFEAT_LIST               := ${armv9-0-a-feats}
1042a71f163SGovindraj Rajaendif
1052a71f163SGovindraj Raja
1062a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.1 and upwards.
1072a71f163SGovindraj Rajaifeq "9.1" "$(word 1, $(sort 9.1 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1082a71f163SGovindraj Raja# 8.6 and 9.0 Compliant
1092a71f163SGovindraj Rajaarmv9-1-a-feats         += ${armv8-6-a-feats} ${armv9-0-a-feats}
1102a71f163SGovindraj RajaFEAT_LIST               := ${armv9-1-a-feats}
1112a71f163SGovindraj Rajaendif
1122a71f163SGovindraj Raja
1132a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.2 and upwards.
1142a71f163SGovindraj Rajaifeq "9.2" "$(word 1, $(sort 9.2 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1152a71f163SGovindraj Raja# 8.7 and 9.1 Compliant
1162a71f163SGovindraj Rajaarmv9-2-a-feats         += ${armv8-7-a-feats} ${armv9-1-a-feats}
1172a71f163SGovindraj RajaFEAT_LIST               := ${armv9-2-a-feats}
1182a71f163SGovindraj Rajaendif
1192a71f163SGovindraj Raja
1202a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.3 and upwards.
1212a71f163SGovindraj Rajaifeq "9.3" "$(word 1, $(sort 9.3 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1222a71f163SGovindraj Raja# 8.8 and 9.2 Compliant
1232a71f163SGovindraj Rajaarmv9-3-a-feats         += ${armv8-8-a-feats} ${armv9-2-a-feats}
1242a71f163SGovindraj RajaFEAT_LIST               := ${armv9-3-a-feats}
1252a71f163SGovindraj Rajaendif
1262a71f163SGovindraj Raja
1272a71f163SGovindraj Raja# Set all FEAT_* in FEAT_LIST to '1' if they are not yet defined or set
1282a71f163SGovindraj Raja# from build commandline options or platform makefile.
1292a71f163SGovindraj Raja$(eval $(call default_ones, ${sort ${FEAT_LIST}}))
1302a71f163SGovindraj Raja
131f5211420SGovindraj Raja#
132f5211420SGovindraj Raja################################################################################
1333dafd960SGovindraj Raja# Set mandatory features by default to zero, if they are not already updated.
134fb730117SGovindraj Raja################################################################################
135fb730117SGovindraj Raja#
136fb730117SGovindraj Raja
137fb730117SGovindraj Raja#----
138fb730117SGovindraj Raja# 8.1
139fb730117SGovindraj Raja#----
140fb730117SGovindraj Raja
141fb730117SGovindraj Raja# Flag to enable access to Privileged Access Never bit of PSTATE.
142fb730117SGovindraj RajaENABLE_FEAT_PAN			?=	0
143fb730117SGovindraj Raja
144fb730117SGovindraj Raja# Flag to enable Virtualization Host Extensions.
145fb730117SGovindraj RajaENABLE_FEAT_VHE			?=	0
146fb730117SGovindraj Raja
147fb730117SGovindraj Raja#----
148fb730117SGovindraj Raja# 8.2
149fb730117SGovindraj Raja#----
150fb730117SGovindraj Raja
151fb730117SGovindraj Raja# Enable RAS Support.
152fb730117SGovindraj RajaENABLE_FEAT_RAS			?=	0
153fb730117SGovindraj Raja
154fb730117SGovindraj Raja#----
155fb730117SGovindraj Raja# 8.3
156fb730117SGovindraj Raja#----
157fb730117SGovindraj Raja
158fb730117SGovindraj Raja# Flag to enable Pointer Authentication. Internal flag not meant for
159fb730117SGovindraj Raja# direct setting. Use BRANCH_PROTECTION to enable PAUTH.
160fb730117SGovindraj RajaENABLE_PAUTH			?=	0
161fb730117SGovindraj Raja
162fb730117SGovindraj Raja# Include pointer authentication (ARMv8.3-PAuth) registers in cpu context. This
163fb730117SGovindraj Raja# must be set to 1 if the platform wants to use this feature in the Secure
164fb730117SGovindraj Raja# world. It is not necessary for use in the Non-secure world.
165fb730117SGovindraj RajaCTX_INCLUDE_PAUTH_REGS		?=	0
166fb730117SGovindraj Raja
167fb730117SGovindraj Raja
168fb730117SGovindraj Raja#----
169fb730117SGovindraj Raja# 8.4
170fb730117SGovindraj Raja#----
171fb730117SGovindraj Raja
172fb730117SGovindraj Raja# Flag to enable Secure EL-2 feature.
173fb730117SGovindraj RajaENABLE_FEAT_SEL2		?=	0
174fb730117SGovindraj Raja
175fb730117SGovindraj Raja# By default, disable trace filter control register access to lower non-secure
176fb730117SGovindraj Raja# exception levels, i.e. NS-EL2, or NS-EL1 if NS-EL2 is implemented, but
177fb730117SGovindraj Raja# trace filter control register access is unused if FEAT_TRF is implemented.
178fb730117SGovindraj RajaENABLE_TRF_FOR_NS		?=	0
179fb730117SGovindraj Raja
180fb730117SGovindraj Raja# Flag to enable Data Independent Timing instructions.
181fb730117SGovindraj RajaENABLE_FEAT_DIT			?=	0
182fb730117SGovindraj Raja
183fb730117SGovindraj Raja#----
184fb730117SGovindraj Raja# 8.5
185fb730117SGovindraj Raja#----
186fb730117SGovindraj Raja
187fb730117SGovindraj Raja# Flag to enable Branch Target Identification.
188fb730117SGovindraj Raja# Internal flag not meant for direct setting.
189fb730117SGovindraj Raja# Use BRANCH_PROTECTION to enable BTI.
190fb730117SGovindraj RajaENABLE_BTI			?=	0
191fb730117SGovindraj Raja
192fb730117SGovindraj Raja# Flag to enable access to the Random Number Generator registers.
193fb730117SGovindraj RajaENABLE_FEAT_RNG			?=	0
194fb730117SGovindraj Raja
195fb730117SGovindraj Raja# Flag to enable Speculation Barrier Instruction.
196fb730117SGovindraj RajaENABLE_FEAT_SB			?=	0
197fb730117SGovindraj Raja
198fb730117SGovindraj Raja#----
199fb730117SGovindraj Raja# 8.6
200fb730117SGovindraj Raja#----
201fb730117SGovindraj Raja
202fb730117SGovindraj Raja# Flag to enable access to the CNTPOFF_EL2 register.
203fb730117SGovindraj RajaENABLE_FEAT_ECV			?=	0
204fb730117SGovindraj Raja
205fb730117SGovindraj Raja# Flag to enable access to the HDFGRTR_EL2 register.
206fb730117SGovindraj RajaENABLE_FEAT_FGT			?=	0
207fb730117SGovindraj Raja
208fb730117SGovindraj Raja#----
209fb730117SGovindraj Raja# 8.7
210fb730117SGovindraj Raja#----
211fb730117SGovindraj Raja
212fb730117SGovindraj Raja# Flag to enable access to the HCRX_EL2 register by setting SCR_EL3.HXEn.
213fb730117SGovindraj RajaENABLE_FEAT_HCX			?=	0
214fb730117SGovindraj Raja
215fb730117SGovindraj Raja#----
216fb730117SGovindraj Raja# 8.9
217fb730117SGovindraj Raja#----
218fb730117SGovindraj Raja
219fb730117SGovindraj Raja# Flag to enable access to TCR2 (FEAT_TCR2).
220fb730117SGovindraj RajaENABLE_FEAT_TCR2		?=	0
221fb730117SGovindraj Raja
2224ec4e545SJayanth Dodderi Chidanand# Flag to enable access to SCTLR2 (FEAT_SCTLR2).
2234ec4e545SJayanth Dodderi ChidanandENABLE_FEAT_SCTLR2		?=	0
2244ec4e545SJayanth Dodderi Chidanand
225fb730117SGovindraj Raja#
226fb730117SGovindraj Raja################################################################################
227f5211420SGovindraj Raja# Optional Features defaulted to 0 or 2, if they are not enabled from
228f5211420SGovindraj Raja# build option. Can also be disabled or enabled by platform if needed.
229f5211420SGovindraj Raja################################################################################
230f5211420SGovindraj Raja#
231f5211420SGovindraj Raja
232f5211420SGovindraj Raja#----
233f5211420SGovindraj Raja# 8.0
234f5211420SGovindraj Raja#----
235f5211420SGovindraj Raja
236f5211420SGovindraj Raja# Flag to enable CSV2_2 extension.
237f5211420SGovindraj RajaENABLE_FEAT_CSV2_2			?=	0
238f5211420SGovindraj Raja
23930019d86SSona Mathew# Flag to enable CSV2_3 extension. FEAT_CSV2_3 enables access to the
24030019d86SSona Mathew# SCXTNUM_ELx register.
24130019d86SSona MathewENABLE_FEAT_CSV2_3			?=	0
24230019d86SSona Mathew
243f5211420SGovindraj Raja# By default, disable access of trace system registers from NS lower
244f5211420SGovindraj Raja# ELs  i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused if
245f5211420SGovindraj Raja# system register trace is implemented. This feature is available if
246f5211420SGovindraj Raja# trace unit such as ETMv4.x, This feature is OPTIONAL and is only
247f5211420SGovindraj Raja# permitted in Armv8 implementations.
248f5211420SGovindraj RajaENABLE_SYS_REG_TRACE_FOR_NS		?=	0
249f5211420SGovindraj Raja
250f5211420SGovindraj Raja#----
251f5211420SGovindraj Raja# 8.2
252f5211420SGovindraj Raja#----
253f5211420SGovindraj Raja
254f5211420SGovindraj Raja# Build option to enable/disable the Statistical Profiling Extension,
255f5211420SGovindraj Raja# keep it enabled by default for AArch64.
256f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
257f5211420SGovindraj Raja       ENABLE_SPE_FOR_NS		?=	2
258f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
259f0c813b7SGovindraj Raja       ifneq ($(or $(ENABLE_SPE_FOR_NS),0),0)
260f5211420SGovindraj Raja              $(error ENABLE_SPE_FOR_NS is not supported for AArch32)
261f5211420SGovindraj Raja       else
262f5211420SGovindraj Raja              ENABLE_SPE_FOR_NS		:=	0
263f5211420SGovindraj Raja       endif
264f5211420SGovindraj Rajaendif
265f5211420SGovindraj Raja
266f5211420SGovindraj Raja# Enable SVE for non-secure world by default.
267f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
268f5211420SGovindraj Raja       ENABLE_SVE_FOR_NS		?=	2
269f5211420SGovindraj Raja# SVE is only supported on AArch64 so disable it on AArch32.
270f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
271f0c813b7SGovindraj Raja       ifneq ($(or $(ENABLE_SVE_FOR_NS),0),0)
272f5211420SGovindraj Raja              $(error ENABLE_SVE_FOR_NS is not supported for AArch32)
273f5211420SGovindraj Raja       else
274f5211420SGovindraj Raja              ENABLE_SVE_FOR_NS 	:=	0
275f5211420SGovindraj Raja       endif
276f5211420SGovindraj Rajaendif
277f5211420SGovindraj Raja
278f5211420SGovindraj Raja#----
279f5211420SGovindraj Raja# 8.4
280f5211420SGovindraj Raja#----
281f5211420SGovindraj Raja
282f5211420SGovindraj Raja# Feature flags for supporting Activity monitor extensions.
283f5211420SGovindraj RajaENABLE_FEAT_AMU				?=	0
284f5211420SGovindraj RajaENABLE_AMU_AUXILIARY_COUNTERS		?=	0
285f5211420SGovindraj RajaENABLE_AMU_FCONF			?=	0
28614c27f82SJuan Pablo CondeAMU_RESTRICT_COUNTERS			?=	1
287f5211420SGovindraj Raja
288f5211420SGovindraj Raja# Build option to enable MPAM for lower ELs.
289edebefbcSArvind Ram Prakash# Enabling it by default
290edebefbcSArvind Ram Prakashifeq (${ARCH},aarch64)
291edebefbcSArvind Ram Prakash        ENABLE_FEAT_MPAM		?=	2
292edebefbcSArvind Ram Prakashelse ifeq (${ARCH},aarch32)
29372f027c3SHarrison Mutai        ifneq ($(or $(ENABLE_FEAT_MPAM),0),0)
294edebefbcSArvind Ram Prakash                $(error ENABLE_FEAT_MPAM is not supported for AArch32)
295edebefbcSArvind Ram Prakash        else
296edebefbcSArvind Ram Prakash                ENABLE_FEAT_MPAM	:=	0
297edebefbcSArvind Ram Prakash        endif
298edebefbcSArvind Ram Prakashendif
299f5211420SGovindraj Raja
3008b2048c1SGovindraj Raja# Include nested virtualization control (Armv8.4-NV) registers in cpu context.
3018b2048c1SGovindraj Raja# This must be set to 1 if architecture implements Nested Virtualization
3028b2048c1SGovindraj Raja# Extension and platform wants to use this feature in the Secure world.
3038b2048c1SGovindraj RajaCTX_INCLUDE_NEVE_REGS			?=	0
3048b2048c1SGovindraj Raja
305f5211420SGovindraj Raja#----
306f5211420SGovindraj Raja# 8.5
307f5211420SGovindraj Raja#----
308f5211420SGovindraj Raja
309f5211420SGovindraj Raja# Flag to enable support for EL3 trapping of reads of the RNDR and RNDRRS
310f5211420SGovindraj Raja# registers, by setting SCR_EL3.TRNDR.
311f5211420SGovindraj RajaENABLE_FEAT_RNG_TRAP			?=	0
312f5211420SGovindraj Raja
313c282384dSGovindraj Raja# Enable FEAT_MTE2. This must be set to 1 if the platform wants
314c282384dSGovindraj Raja# to use this feature and is enabled at ELX.
3158e397889SGovindraj RajaENABLE_FEAT_MTE2		        ?=	0
3168e397889SGovindraj Raja
317f5211420SGovindraj Raja#----
318f5211420SGovindraj Raja# 8.6
319f5211420SGovindraj Raja#----
320f5211420SGovindraj Raja
321f5211420SGovindraj Raja# Flag to enable AMUv1p1 extension.
322f5211420SGovindraj RajaENABLE_FEAT_AMUv1p1			?=	0
323f5211420SGovindraj Raja
324f5211420SGovindraj Raja# Flag to enable delayed trapping of WFE instruction (FEAT_TWED).
325f5211420SGovindraj RajaENABLE_FEAT_TWED			?=	0
326f5211420SGovindraj Raja
327f5211420SGovindraj Raja# In v8.6+ platforms with delayed trapping of WFE being supported
328f5211420SGovindraj Raja# via FEAT_TWED, this flag takes the delay value to be set in the
329f5211420SGovindraj Raja# SCR_EL3.TWEDEL(4bit) field, when FEAT_TWED is implemented.
330f5211420SGovindraj Raja# By default it takes 0, and need to be updated by the platforms.
331f5211420SGovindraj RajaTWED_DELAY				?=	0
332f5211420SGovindraj Raja
333f5211420SGovindraj Raja# Disable MTPMU if FEAT_MTPMU is supported.
334f5211420SGovindraj RajaDISABLE_MTPMU				?=	0
335f5211420SGovindraj Raja
33633e6aaacSArvind Ram Prakash# Flag to enable FEAT_FGT2 (Fine Granular Traps 2)
33733e6aaacSArvind Ram PrakashENABLE_FEAT_FGT2			?=	0
33833e6aaacSArvind Ram Prakash
33919d52a83SAndre Przywara# LoadStore64Bytes extension using the ACCDATA_EL1 system register
34019d52a83SAndre PrzywaraENABLE_FEAT_LS64_ACCDATA		?=	0
34119d52a83SAndre Przywara
342f5211420SGovindraj Raja#----
3436d0433f0SJayanth Dodderi Chidanand# 8.8
3446d0433f0SJayanth Dodderi Chidanand#----
3456d0433f0SJayanth Dodderi Chidanand
3466d0433f0SJayanth Dodderi Chidanand# Flag to enable FEAT_THE (Translation Hardening Extension)
3476d0433f0SJayanth Dodderi ChidanandENABLE_FEAT_THE				?=	0
3486d0433f0SJayanth Dodderi Chidanand
3496d0433f0SJayanth Dodderi Chidanand#----
350f5211420SGovindraj Raja# 8.9
351f5211420SGovindraj Raja#----
352f5211420SGovindraj Raja
353f5211420SGovindraj Raja# Flag to enable access to Stage 2 Permission Indirection (FEAT_S2PIE).
354f5211420SGovindraj RajaENABLE_FEAT_S2PIE			?=	0
355f5211420SGovindraj Raja
356f5211420SGovindraj Raja# Flag to enable access to Stage 1 Permission Indirection (FEAT_S1PIE).
357f5211420SGovindraj RajaENABLE_FEAT_S1PIE			?=	0
358f5211420SGovindraj Raja
359f5211420SGovindraj Raja# Flag to enable access to Stage 2 Permission Overlay (FEAT_S2POE).
360f5211420SGovindraj RajaENABLE_FEAT_S2POE			?=	0
361f5211420SGovindraj Raja
362f5211420SGovindraj Raja# Flag to enable access to Stage 1 Permission Overlay (FEAT_S1POE).
363f5211420SGovindraj RajaENABLE_FEAT_S1POE			?=	0
364f5211420SGovindraj Raja
36583271d5aSArvind Ram Prakash# Flag to enable access to Arm v8.9 Debug extension
36683271d5aSArvind Ram PrakashENABLE_FEAT_DEBUGV8P9			?=	0
36783271d5aSArvind Ram Prakash
368f5211420SGovindraj Raja#----
369f5211420SGovindraj Raja# 9.0
370f5211420SGovindraj Raja#----
371f5211420SGovindraj Raja
372f5211420SGovindraj Raja# Scalable Matrix Extension for non-secure world.
373f5211420SGovindraj RajaENABLE_SME_FOR_NS			?=	0
374f5211420SGovindraj Raja
375f5211420SGovindraj Raja# Scalable Vector Extension for secure world.
376f5211420SGovindraj RajaENABLE_SVE_FOR_SWD			?=	0
377f5211420SGovindraj Raja
378f5211420SGovindraj Raja# By default, disable access of trace buffer control registers from NS
379f5211420SGovindraj Raja# lower ELs  i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused
380f5211420SGovindraj Raja# if FEAT_TRBE is implemented.
381f5211420SGovindraj Raja# Note FEAT_TRBE is only supported on AArch64 - therefore do not enable in
382f5211420SGovindraj Raja# AArch32.
383f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
384f5211420SGovindraj Raja        ENABLE_TRBE_FOR_NS		?=	0
385f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
386f0c813b7SGovindraj Raja        ifneq ($(or $(ENABLE_TRBE_FOR_NS),0),0)
387f5211420SGovindraj Raja               $(error ENABLE_TRBE_FOR_NS is not supported for AArch32)
388f5211420SGovindraj Raja        else
389f5211420SGovindraj Raja               ENABLE_TRBE_FOR_NS 	:=	0
390f5211420SGovindraj Raja        endif
391f5211420SGovindraj Rajaendif
392f5211420SGovindraj Raja
393f5211420SGovindraj Raja#----
394f5211420SGovindraj Raja# 9.2
395f5211420SGovindraj Raja#----
396f5211420SGovindraj Raja
3973dafd960SGovindraj Raja# Flag to enable Realm Management Extension (FEAT_RME).
3983dafd960SGovindraj RajaENABLE_RME				?=	0
3993dafd960SGovindraj Raja
400f5211420SGovindraj Raja# Scalable Matrix Extension version 2 for non-secure world.
401f5211420SGovindraj RajaENABLE_SME2_FOR_NS			?=	0
402f5211420SGovindraj Raja
403f5211420SGovindraj Raja# Scalable Matrix Extension for secure world.
404f5211420SGovindraj RajaENABLE_SME_FOR_SWD			?=	0
405f5211420SGovindraj Raja
406f5211420SGovindraj Raja# By default, disable access to branch record buffer control registers from NS
407f5211420SGovindraj Raja# lower ELs i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused
408f5211420SGovindraj Raja# if FEAT_BRBE is implemented.
409f5211420SGovindraj RajaENABLE_BRBE_FOR_NS			?=	0
410f5211420SGovindraj Raja
411*a57e18e4SArvind Ram Prakash# Flag to enable Floating point exception Mode Register Feature (FEAT_FPMR)
412*a57e18e4SArvind Ram PrakashENABLE_FEAT_FPMR			?=	0
413*a57e18e4SArvind Ram Prakash
414f5211420SGovindraj Raja#----
41530655136SGovindraj Raja# 9.3
41630655136SGovindraj Raja#----
41730655136SGovindraj Raja# Flag to enable access to Arm v9.3 FEAT_D128 extension
41830655136SGovindraj RajaENABLE_FEAT_D128			?=	0
41930655136SGovindraj Raja
42030655136SGovindraj Raja#----
421f5211420SGovindraj Raja#9.4
422f5211420SGovindraj Raja#----
423f5211420SGovindraj Raja
424f5211420SGovindraj Raja# Flag to enable access to Guarded Control Stack (FEAT_GCS).
425f5211420SGovindraj RajaENABLE_FEAT_GCS				?=	0
426