xref: /rk3399_ARM-atf/make_helpers/arch_features.mk (revision 025b1b816b607c7ac43a77172040c44b7750a622)
16a0da736SJayanth Dodderi Chidanand#
2*025b1b81SJohn Powell# Copyright (c) 2022-2025, 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)))"
866b8df7b9SArvind Ram Prakasharmv8-8-a-feats		:= ENABLE_FEAT_MOPS
872a71f163SGovindraj Raja# 8.7 Compliant
8894ff1d98SManish V Badarkhearmv8-8-a-feats         += ${armv8-7-a-feats}
892a71f163SGovindraj RajaFEAT_LIST               := ${armv8-8-a-feats}
906a0da736SJayanth Dodderi Chidanandendif
91f5211420SGovindraj Raja
92f5211420SGovindraj Raja# Enable the features which are mandatory from ARCH version 8.9 and upwards.
93f5211420SGovindraj Rajaifeq "8.9" "$(word 1, $(sort 8.9 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
944ec4e545SJayanth Dodderi Chidanandarmv8-9-a-feats         := ENABLE_FEAT_TCR2 ENABLE_FEAT_DEBUGV8P9 ENABLE_FEAT_SCTLR2
952a71f163SGovindraj Raja# 8.8 Compliant
962a71f163SGovindraj Rajaarmv8-9-a-feats         += ${armv8-8-a-feats}
972a71f163SGovindraj RajaFEAT_LIST               := ${armv8-9-a-feats}
98f5211420SGovindraj Rajaendif
99f5211420SGovindraj Raja
1002a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.0 and upwards.
1012a71f163SGovindraj Rajaifeq "9.0" "$(word 1, $(sort 9.0 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1022a71f163SGovindraj Raja# 8.5 Compliant
1032a71f163SGovindraj Rajaarmv9-0-a-feats         += ${armv8-5-a-feats}
1042a71f163SGovindraj RajaFEAT_LIST               := ${armv9-0-a-feats}
1052a71f163SGovindraj Rajaendif
1062a71f163SGovindraj Raja
1072a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.1 and upwards.
1082a71f163SGovindraj Rajaifeq "9.1" "$(word 1, $(sort 9.1 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1092a71f163SGovindraj Raja# 8.6 and 9.0 Compliant
1102a71f163SGovindraj Rajaarmv9-1-a-feats         += ${armv8-6-a-feats} ${armv9-0-a-feats}
1112a71f163SGovindraj RajaFEAT_LIST               := ${armv9-1-a-feats}
1122a71f163SGovindraj Rajaendif
1132a71f163SGovindraj Raja
1142a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.2 and upwards.
1152a71f163SGovindraj Rajaifeq "9.2" "$(word 1, $(sort 9.2 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1162a71f163SGovindraj Raja# 8.7 and 9.1 Compliant
1172a71f163SGovindraj Rajaarmv9-2-a-feats         += ${armv8-7-a-feats} ${armv9-1-a-feats}
1182a71f163SGovindraj RajaFEAT_LIST               := ${armv9-2-a-feats}
1192a71f163SGovindraj Rajaendif
1202a71f163SGovindraj Raja
1212a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.3 and upwards.
1222a71f163SGovindraj Rajaifeq "9.3" "$(word 1, $(sort 9.3 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1232a71f163SGovindraj Raja# 8.8 and 9.2 Compliant
1242a71f163SGovindraj Rajaarmv9-3-a-feats         += ${armv8-8-a-feats} ${armv9-2-a-feats}
1252a71f163SGovindraj RajaFEAT_LIST               := ${armv9-3-a-feats}
1262a71f163SGovindraj Rajaendif
1272a71f163SGovindraj Raja
1282a71f163SGovindraj Raja# Set all FEAT_* in FEAT_LIST to '1' if they are not yet defined or set
1292a71f163SGovindraj Raja# from build commandline options or platform makefile.
1302a71f163SGovindraj Raja$(eval $(call default_ones, ${sort ${FEAT_LIST}}))
1312a71f163SGovindraj Raja
132f5211420SGovindraj Raja#
133f5211420SGovindraj Raja################################################################################
1343dafd960SGovindraj Raja# Set mandatory features by default to zero, if they are not already updated.
135fb730117SGovindraj Raja################################################################################
136fb730117SGovindraj Raja#
137fb730117SGovindraj Raja
138fb730117SGovindraj Raja#----
139fb730117SGovindraj Raja# 8.1
140fb730117SGovindraj Raja#----
141fb730117SGovindraj Raja
142fb730117SGovindraj Raja# Flag to enable access to Privileged Access Never bit of PSTATE.
143fb730117SGovindraj RajaENABLE_FEAT_PAN			?=	0
144fb730117SGovindraj Raja
145fb730117SGovindraj Raja# Flag to enable Virtualization Host Extensions.
146fb730117SGovindraj RajaENABLE_FEAT_VHE			?=	0
147fb730117SGovindraj Raja
148fb730117SGovindraj Raja#----
149fb730117SGovindraj Raja# 8.2
150fb730117SGovindraj Raja#----
151fb730117SGovindraj Raja
152fb730117SGovindraj Raja# Enable RAS Support.
153fb730117SGovindraj RajaENABLE_FEAT_RAS			?=	0
154fb730117SGovindraj Raja
155fb730117SGovindraj Raja#----
156fb730117SGovindraj Raja# 8.3
157fb730117SGovindraj Raja#----
158fb730117SGovindraj Raja
159fb730117SGovindraj Raja# Flag to enable Pointer Authentication. Internal flag not meant for
160fb730117SGovindraj Raja# direct setting. Use BRANCH_PROTECTION to enable PAUTH.
161fb730117SGovindraj RajaENABLE_PAUTH			?=	0
162fb730117SGovindraj Raja
163*025b1b81SJohn Powell# FEAT_PAUTH_LR is an optional architectural feature, so this flag must be set
164*025b1b81SJohn Powell# manually in addition to the BRANCH_PROTECTION flag which is used for other
165*025b1b81SJohn Powell# branch protection and pointer authentication features.
166*025b1b81SJohn PowellENABLE_FEAT_PAUTH_LR		?=	0
167*025b1b81SJohn Powell
168fb730117SGovindraj Raja# Include pointer authentication (ARMv8.3-PAuth) registers in cpu context. This
169fb730117SGovindraj Raja# must be set to 1 if the platform wants to use this feature in the Secure
170fb730117SGovindraj Raja# world. It is not necessary for use in the Non-secure world.
171fb730117SGovindraj RajaCTX_INCLUDE_PAUTH_REGS		?=	0
172fb730117SGovindraj Raja
173fb730117SGovindraj Raja
174fb730117SGovindraj Raja#----
175fb730117SGovindraj Raja# 8.4
176fb730117SGovindraj Raja#----
177fb730117SGovindraj Raja
178fb730117SGovindraj Raja# Flag to enable Secure EL-2 feature.
179fb730117SGovindraj RajaENABLE_FEAT_SEL2		?=	0
180fb730117SGovindraj Raja
181fb730117SGovindraj Raja# By default, disable trace filter control register access to lower non-secure
182fb730117SGovindraj Raja# exception levels, i.e. NS-EL2, or NS-EL1 if NS-EL2 is implemented, but
183fb730117SGovindraj Raja# trace filter control register access is unused if FEAT_TRF is implemented.
184fb730117SGovindraj RajaENABLE_TRF_FOR_NS		?=	0
185fb730117SGovindraj Raja
186fb730117SGovindraj Raja# Flag to enable Data Independent Timing instructions.
187fb730117SGovindraj RajaENABLE_FEAT_DIT			?=	0
188fb730117SGovindraj Raja
189fb730117SGovindraj Raja#----
190fb730117SGovindraj Raja# 8.5
191fb730117SGovindraj Raja#----
192fb730117SGovindraj Raja
193fb730117SGovindraj Raja# Flag to enable Branch Target Identification.
194fb730117SGovindraj Raja# Internal flag not meant for direct setting.
195fb730117SGovindraj Raja# Use BRANCH_PROTECTION to enable BTI.
196fb730117SGovindraj RajaENABLE_BTI			?=	0
197fb730117SGovindraj Raja
198fb730117SGovindraj Raja# Flag to enable access to the Random Number Generator registers.
199fb730117SGovindraj RajaENABLE_FEAT_RNG			?=	0
200fb730117SGovindraj Raja
201fb730117SGovindraj Raja# Flag to enable Speculation Barrier Instruction.
202fb730117SGovindraj RajaENABLE_FEAT_SB			?=	0
203fb730117SGovindraj Raja
204fb730117SGovindraj Raja#----
205fb730117SGovindraj Raja# 8.6
206fb730117SGovindraj Raja#----
207fb730117SGovindraj Raja
208fb730117SGovindraj Raja# Flag to enable access to the CNTPOFF_EL2 register.
209fb730117SGovindraj RajaENABLE_FEAT_ECV			?=	0
210fb730117SGovindraj Raja
211fb730117SGovindraj Raja# Flag to enable access to the HDFGRTR_EL2 register.
212fb730117SGovindraj RajaENABLE_FEAT_FGT			?=	0
213fb730117SGovindraj Raja
214fb730117SGovindraj Raja#----
215fb730117SGovindraj Raja# 8.7
216fb730117SGovindraj Raja#----
217fb730117SGovindraj Raja
218fb730117SGovindraj Raja# Flag to enable access to the HCRX_EL2 register by setting SCR_EL3.HXEn.
219fb730117SGovindraj RajaENABLE_FEAT_HCX			?=	0
220fb730117SGovindraj Raja
221fb730117SGovindraj Raja#----
2226b8df7b9SArvind Ram Prakash# 8.8
2236b8df7b9SArvind Ram Prakash#----
2246b8df7b9SArvind Ram Prakash
2256b8df7b9SArvind Ram Prakash# Flag to enable FEAT_MOPS (Standardization of Memory operations)
2266b8df7b9SArvind Ram Prakash# when INIT_UNUSED_NS_EL2 = 1
2276b8df7b9SArvind Ram PrakashENABLE_FEAT_MOPS		?=	0
2286b8df7b9SArvind Ram Prakash
2296b8df7b9SArvind Ram Prakash#----
230fb730117SGovindraj Raja# 8.9
231fb730117SGovindraj Raja#----
232fb730117SGovindraj Raja
233fb730117SGovindraj Raja# Flag to enable access to TCR2 (FEAT_TCR2).
234fb730117SGovindraj RajaENABLE_FEAT_TCR2		?=	0
235fb730117SGovindraj Raja
2364ec4e545SJayanth Dodderi Chidanand# Flag to enable access to SCTLR2 (FEAT_SCTLR2).
2374ec4e545SJayanth Dodderi ChidanandENABLE_FEAT_SCTLR2		?=	0
2384ec4e545SJayanth Dodderi Chidanand
239fb730117SGovindraj Raja#
240fb730117SGovindraj Raja################################################################################
241f5211420SGovindraj Raja# Optional Features defaulted to 0 or 2, if they are not enabled from
242f5211420SGovindraj Raja# build option. Can also be disabled or enabled by platform if needed.
243f5211420SGovindraj Raja################################################################################
244f5211420SGovindraj Raja#
245f5211420SGovindraj Raja
246f5211420SGovindraj Raja#----
247f5211420SGovindraj Raja# 8.0
248f5211420SGovindraj Raja#----
249f5211420SGovindraj Raja
250f5211420SGovindraj Raja# Flag to enable CSV2_2 extension.
251f5211420SGovindraj RajaENABLE_FEAT_CSV2_2			?=	0
252f5211420SGovindraj Raja
25330019d86SSona Mathew# Flag to enable CSV2_3 extension. FEAT_CSV2_3 enables access to the
25430019d86SSona Mathew# SCXTNUM_ELx register.
25530019d86SSona MathewENABLE_FEAT_CSV2_3			?=	0
25630019d86SSona Mathew
257f5211420SGovindraj Raja# By default, disable access of trace system registers from NS lower
258f5211420SGovindraj Raja# ELs  i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused if
259f5211420SGovindraj Raja# system register trace is implemented. This feature is available if
260f5211420SGovindraj Raja# trace unit such as ETMv4.x, This feature is OPTIONAL and is only
261f5211420SGovindraj Raja# permitted in Armv8 implementations.
262f5211420SGovindraj RajaENABLE_SYS_REG_TRACE_FOR_NS		?=	0
263f5211420SGovindraj Raja
264f5211420SGovindraj Raja#----
265f5211420SGovindraj Raja# 8.2
266f5211420SGovindraj Raja#----
267f5211420SGovindraj Raja
268f5211420SGovindraj Raja# Build option to enable/disable the Statistical Profiling Extension,
269f5211420SGovindraj Raja# keep it enabled by default for AArch64.
270f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
271f5211420SGovindraj Raja       ENABLE_SPE_FOR_NS		?=	2
272f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
273f0c813b7SGovindraj Raja       ifneq ($(or $(ENABLE_SPE_FOR_NS),0),0)
274f5211420SGovindraj Raja              $(error ENABLE_SPE_FOR_NS is not supported for AArch32)
275f5211420SGovindraj Raja       else
276f5211420SGovindraj Raja              ENABLE_SPE_FOR_NS		:=	0
277f5211420SGovindraj Raja       endif
278f5211420SGovindraj Rajaendif
279f5211420SGovindraj Raja
280f5211420SGovindraj Raja# Enable SVE for non-secure world by default.
281f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
282f5211420SGovindraj Raja       ENABLE_SVE_FOR_NS		?=	2
283f5211420SGovindraj Raja# SVE is only supported on AArch64 so disable it on AArch32.
284f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
285f0c813b7SGovindraj Raja       ifneq ($(or $(ENABLE_SVE_FOR_NS),0),0)
286f5211420SGovindraj Raja              $(error ENABLE_SVE_FOR_NS is not supported for AArch32)
287f5211420SGovindraj Raja       else
288f5211420SGovindraj Raja              ENABLE_SVE_FOR_NS 	:=	0
289f5211420SGovindraj Raja       endif
290f5211420SGovindraj Rajaendif
291f5211420SGovindraj Raja
292f5211420SGovindraj Raja#----
293f5211420SGovindraj Raja# 8.4
294f5211420SGovindraj Raja#----
295f5211420SGovindraj Raja
296f5211420SGovindraj Raja# Feature flags for supporting Activity monitor extensions.
297f5211420SGovindraj RajaENABLE_FEAT_AMU				?=	0
298f5211420SGovindraj RajaENABLE_AMU_AUXILIARY_COUNTERS		?=	0
29914c27f82SJuan Pablo CondeAMU_RESTRICT_COUNTERS			?=	1
300f5211420SGovindraj Raja
301f5211420SGovindraj Raja# Build option to enable MPAM for lower ELs.
302edebefbcSArvind Ram Prakash# Enabling it by default
303edebefbcSArvind Ram Prakashifeq (${ARCH},aarch64)
304edebefbcSArvind Ram Prakash        ENABLE_FEAT_MPAM		?=	2
305edebefbcSArvind Ram Prakashelse ifeq (${ARCH},aarch32)
30672f027c3SHarrison Mutai        ifneq ($(or $(ENABLE_FEAT_MPAM),0),0)
307edebefbcSArvind Ram Prakash                $(error ENABLE_FEAT_MPAM is not supported for AArch32)
308edebefbcSArvind Ram Prakash        else
309edebefbcSArvind Ram Prakash                ENABLE_FEAT_MPAM	:=	0
310edebefbcSArvind Ram Prakash        endif
311edebefbcSArvind Ram Prakashendif
312f5211420SGovindraj Raja
3138b2048c1SGovindraj Raja# Include nested virtualization control (Armv8.4-NV) registers in cpu context.
3148b2048c1SGovindraj Raja# This must be set to 1 if architecture implements Nested Virtualization
3158b2048c1SGovindraj Raja# Extension and platform wants to use this feature in the Secure world.
3168b2048c1SGovindraj RajaCTX_INCLUDE_NEVE_REGS			?=	0
3178b2048c1SGovindraj Raja
318f5211420SGovindraj Raja#----
319f5211420SGovindraj Raja# 8.5
320f5211420SGovindraj Raja#----
321f5211420SGovindraj Raja
322f5211420SGovindraj Raja# Flag to enable support for EL3 trapping of reads of the RNDR and RNDRRS
323f5211420SGovindraj Raja# registers, by setting SCR_EL3.TRNDR.
324f5211420SGovindraj RajaENABLE_FEAT_RNG_TRAP			?=	0
325f5211420SGovindraj Raja
326c282384dSGovindraj Raja# Enable FEAT_MTE2. This must be set to 1 if the platform wants
327c282384dSGovindraj Raja# to use this feature and is enabled at ELX.
3288e397889SGovindraj RajaENABLE_FEAT_MTE2		        ?=	0
3298e397889SGovindraj Raja
330f5211420SGovindraj Raja#----
331f5211420SGovindraj Raja# 8.6
332f5211420SGovindraj Raja#----
333f5211420SGovindraj Raja
334f5211420SGovindraj Raja# Flag to enable AMUv1p1 extension.
335f5211420SGovindraj RajaENABLE_FEAT_AMUv1p1			?=	0
336f5211420SGovindraj Raja
337f5211420SGovindraj Raja# Flag to enable delayed trapping of WFE instruction (FEAT_TWED).
338f5211420SGovindraj RajaENABLE_FEAT_TWED			?=	0
339f5211420SGovindraj Raja
340f5211420SGovindraj Raja# In v8.6+ platforms with delayed trapping of WFE being supported
341f5211420SGovindraj Raja# via FEAT_TWED, this flag takes the delay value to be set in the
342f5211420SGovindraj Raja# SCR_EL3.TWEDEL(4bit) field, when FEAT_TWED is implemented.
343f5211420SGovindraj Raja# By default it takes 0, and need to be updated by the platforms.
344f5211420SGovindraj RajaTWED_DELAY				?=	0
345f5211420SGovindraj Raja
346f5211420SGovindraj Raja# Disable MTPMU if FEAT_MTPMU is supported.
347f5211420SGovindraj RajaDISABLE_MTPMU				?=	0
348f5211420SGovindraj Raja
34933e6aaacSArvind Ram Prakash# Flag to enable FEAT_FGT2 (Fine Granular Traps 2)
35033e6aaacSArvind Ram PrakashENABLE_FEAT_FGT2			?=	0
35133e6aaacSArvind Ram Prakash
35219d52a83SAndre Przywara# LoadStore64Bytes extension using the ACCDATA_EL1 system register
35319d52a83SAndre PrzywaraENABLE_FEAT_LS64_ACCDATA		?=	0
35419d52a83SAndre Przywara
355f5211420SGovindraj Raja#----
3566d0433f0SJayanth Dodderi Chidanand# 8.8
3576d0433f0SJayanth Dodderi Chidanand#----
3586d0433f0SJayanth Dodderi Chidanand
3596d0433f0SJayanth Dodderi Chidanand# Flag to enable FEAT_THE (Translation Hardening Extension)
3606d0433f0SJayanth Dodderi ChidanandENABLE_FEAT_THE				?=	0
3616d0433f0SJayanth Dodderi Chidanand
3626d0433f0SJayanth Dodderi Chidanand#----
363f5211420SGovindraj Raja# 8.9
364f5211420SGovindraj Raja#----
365f5211420SGovindraj Raja
366f5211420SGovindraj Raja# Flag to enable access to Stage 2 Permission Indirection (FEAT_S2PIE).
367f5211420SGovindraj RajaENABLE_FEAT_S2PIE			?=	0
368f5211420SGovindraj Raja
369f5211420SGovindraj Raja# Flag to enable access to Stage 1 Permission Indirection (FEAT_S1PIE).
370f5211420SGovindraj RajaENABLE_FEAT_S1PIE			?=	0
371f5211420SGovindraj Raja
372f5211420SGovindraj Raja# Flag to enable access to Stage 2 Permission Overlay (FEAT_S2POE).
373f5211420SGovindraj RajaENABLE_FEAT_S2POE			?=	0
374f5211420SGovindraj Raja
375f5211420SGovindraj Raja# Flag to enable access to Stage 1 Permission Overlay (FEAT_S1POE).
376f5211420SGovindraj RajaENABLE_FEAT_S1POE			?=	0
377f5211420SGovindraj Raja
37883271d5aSArvind Ram Prakash# Flag to enable access to Arm v8.9 Debug extension
37983271d5aSArvind Ram PrakashENABLE_FEAT_DEBUGV8P9			?=	0
38083271d5aSArvind Ram Prakash
381f5211420SGovindraj Raja#----
382f5211420SGovindraj Raja# 9.0
383f5211420SGovindraj Raja#----
384f5211420SGovindraj Raja
385f5211420SGovindraj Raja# Scalable Matrix Extension for non-secure world.
386f5211420SGovindraj RajaENABLE_SME_FOR_NS			?=	0
387f5211420SGovindraj Raja
388f5211420SGovindraj Raja# Scalable Vector Extension for secure world.
389f5211420SGovindraj RajaENABLE_SVE_FOR_SWD			?=	0
390f5211420SGovindraj Raja
391f5211420SGovindraj Raja# By default, disable access of trace buffer control registers from NS
392f5211420SGovindraj Raja# lower ELs  i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused
393f5211420SGovindraj Raja# if FEAT_TRBE is implemented.
394f5211420SGovindraj Raja# Note FEAT_TRBE is only supported on AArch64 - therefore do not enable in
395f5211420SGovindraj Raja# AArch32.
396f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
397f5211420SGovindraj Raja        ENABLE_TRBE_FOR_NS		?=	0
398f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
399f0c813b7SGovindraj Raja        ifneq ($(or $(ENABLE_TRBE_FOR_NS),0),0)
400f5211420SGovindraj Raja               $(error ENABLE_TRBE_FOR_NS is not supported for AArch32)
401f5211420SGovindraj Raja        else
402f5211420SGovindraj Raja               ENABLE_TRBE_FOR_NS 	:=	0
403f5211420SGovindraj Raja        endif
404f5211420SGovindraj Rajaendif
405f5211420SGovindraj Raja
406f5211420SGovindraj Raja#----
407f5211420SGovindraj Raja# 9.2
408f5211420SGovindraj Raja#----
409f5211420SGovindraj Raja
4103dafd960SGovindraj Raja# Flag to enable Realm Management Extension (FEAT_RME).
4113dafd960SGovindraj RajaENABLE_RME				?=	0
4123dafd960SGovindraj Raja
413f5211420SGovindraj Raja# Scalable Matrix Extension version 2 for non-secure world.
414f5211420SGovindraj RajaENABLE_SME2_FOR_NS			?=	0
415f5211420SGovindraj Raja
416f5211420SGovindraj Raja# Scalable Matrix Extension for secure world.
417f5211420SGovindraj RajaENABLE_SME_FOR_SWD			?=	0
418f5211420SGovindraj Raja
419f5211420SGovindraj Raja# By default, disable access to branch record buffer control registers from NS
420f5211420SGovindraj Raja# lower ELs i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused
421f5211420SGovindraj Raja# if FEAT_BRBE is implemented.
422f5211420SGovindraj RajaENABLE_BRBE_FOR_NS			?=	0
423f5211420SGovindraj Raja
424a57e18e4SArvind Ram Prakash# Flag to enable Floating point exception Mode Register Feature (FEAT_FPMR)
425a57e18e4SArvind Ram PrakashENABLE_FEAT_FPMR			?=	0
426a57e18e4SArvind Ram Prakash
4277e84f3cfSTushar Khandelwal# Flag to enable Memory Encryption Contexts (FEAT_MEC).
4287e84f3cfSTushar KhandelwalENABLE_FEAT_MEC				?=	0
4297e84f3cfSTushar Khandelwal
430f5211420SGovindraj Raja#----
43130655136SGovindraj Raja# 9.3
43230655136SGovindraj Raja#----
43330655136SGovindraj Raja# Flag to enable access to Arm v9.3 FEAT_D128 extension
43430655136SGovindraj RajaENABLE_FEAT_D128			?=	0
43530655136SGovindraj Raja
43630655136SGovindraj Raja#----
437f5211420SGovindraj Raja#9.4
438f5211420SGovindraj Raja#----
439f5211420SGovindraj Raja
440f5211420SGovindraj Raja# Flag to enable access to Guarded Control Stack (FEAT_GCS).
441f5211420SGovindraj RajaENABLE_FEAT_GCS				?=	0
442