xref: /rk3399_ARM-atf/make_helpers/arch_features.mk (revision b3bcfd12c8469df79b212647b9eb2743d7dbb070)
16a0da736SJayanth Dodderi Chidanand#
2025b1b81SJohn 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}
616a0da736SJayanth Dodderi Chidanandendif
626a0da736SJayanth Dodderi Chidanand
636a0da736SJayanth Dodderi Chidanand# Enable the features which are mandatory from ARCH version 8.6 and upwards.
646a0da736SJayanth Dodderi Chidanandifeq "8.6" "$(word 1, $(sort 8.6 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
652a71f163SGovindraj Rajaarmv8-6-a-feats         := ENABLE_FEAT_ECV ENABLE_FEAT_FGT
662a71f163SGovindraj Raja# 8.5 Compliant
672a71f163SGovindraj Rajaarmv8-6-a-feats         += ${armv8-5-a-feats}
682a71f163SGovindraj RajaFEAT_LIST               := ${armv8-6-a-feats}
696a0da736SJayanth Dodderi Chidanandendif
706a0da736SJayanth Dodderi Chidanand
716a0da736SJayanth Dodderi Chidanand# Enable the features which are mandatory from ARCH version 8.7 and upwards.
726a0da736SJayanth Dodderi Chidanandifeq "8.7" "$(word 1, $(sort 8.7 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
732a71f163SGovindraj Rajaarmv8-7-a-feats         := ENABLE_FEAT_HCX
742a71f163SGovindraj Raja# 8.6 Compliant
752a71f163SGovindraj Rajaarmv8-7-a-feats         += ${armv8-6-a-feats}
762a71f163SGovindraj RajaFEAT_LIST               := ${armv8-7-a-feats}
772a71f163SGovindraj Rajaendif
782a71f163SGovindraj Raja
792a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 8.8 and upwards.
802a71f163SGovindraj Rajaifeq "8.8" "$(word 1, $(sort 8.8 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
816b8df7b9SArvind Ram Prakasharmv8-8-a-feats		:= ENABLE_FEAT_MOPS
822a71f163SGovindraj Raja# 8.7 Compliant
8394ff1d98SManish V Badarkhearmv8-8-a-feats         += ${armv8-7-a-feats}
842a71f163SGovindraj RajaFEAT_LIST               := ${armv8-8-a-feats}
856a0da736SJayanth Dodderi Chidanandendif
86f5211420SGovindraj Raja
87f5211420SGovindraj Raja# Enable the features which are mandatory from ARCH version 8.9 and upwards.
88f5211420SGovindraj Rajaifeq "8.9" "$(word 1, $(sort 8.9 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
894ec4e545SJayanth Dodderi Chidanandarmv8-9-a-feats         := ENABLE_FEAT_TCR2 ENABLE_FEAT_DEBUGV8P9 ENABLE_FEAT_SCTLR2
902a71f163SGovindraj Raja# 8.8 Compliant
912a71f163SGovindraj Rajaarmv8-9-a-feats         += ${armv8-8-a-feats}
922a71f163SGovindraj RajaFEAT_LIST               := ${armv8-9-a-feats}
93f5211420SGovindraj Rajaendif
94f5211420SGovindraj Raja
952a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.0 and upwards.
962a71f163SGovindraj Rajaifeq "9.0" "$(word 1, $(sort 9.0 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
972a71f163SGovindraj Raja# 8.5 Compliant
982a71f163SGovindraj Rajaarmv9-0-a-feats         += ${armv8-5-a-feats}
992a71f163SGovindraj RajaFEAT_LIST               := ${armv9-0-a-feats}
1002a71f163SGovindraj Rajaendif
1012a71f163SGovindraj Raja
1022a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.1 and upwards.
1032a71f163SGovindraj Rajaifeq "9.1" "$(word 1, $(sort 9.1 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1042a71f163SGovindraj Raja# 8.6 and 9.0 Compliant
1052a71f163SGovindraj Rajaarmv9-1-a-feats         += ${armv8-6-a-feats} ${armv9-0-a-feats}
1062a71f163SGovindraj RajaFEAT_LIST               := ${armv9-1-a-feats}
1072a71f163SGovindraj Rajaendif
1082a71f163SGovindraj Raja
1092a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.2 and upwards.
1102a71f163SGovindraj Rajaifeq "9.2" "$(word 1, $(sort 9.2 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1112a71f163SGovindraj Raja# 8.7 and 9.1 Compliant
1122a71f163SGovindraj Rajaarmv9-2-a-feats         += ${armv8-7-a-feats} ${armv9-1-a-feats}
1132a71f163SGovindraj RajaFEAT_LIST               := ${armv9-2-a-feats}
1142a71f163SGovindraj Rajaendif
1152a71f163SGovindraj Raja
1162a71f163SGovindraj Raja# Enable the features which are mandatory from ARCH version 9.3 and upwards.
1172a71f163SGovindraj Rajaifeq "9.3" "$(word 1, $(sort 9.3 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
1182a71f163SGovindraj Raja# 8.8 and 9.2 Compliant
1192a71f163SGovindraj Rajaarmv9-3-a-feats         += ${armv8-8-a-feats} ${armv9-2-a-feats}
1202a71f163SGovindraj RajaFEAT_LIST               := ${armv9-3-a-feats}
1212a71f163SGovindraj Rajaendif
1222a71f163SGovindraj Raja
1232a71f163SGovindraj Raja# Set all FEAT_* in FEAT_LIST to '1' if they are not yet defined or set
1242a71f163SGovindraj Raja# from build commandline options or platform makefile.
1252a71f163SGovindraj Raja$(eval $(call default_ones, ${sort ${FEAT_LIST}}))
1262a71f163SGovindraj Raja
127f5211420SGovindraj Raja#
128f5211420SGovindraj Raja################################################################################
1293dafd960SGovindraj Raja# Set mandatory features by default to zero, if they are not already updated.
130fb730117SGovindraj Raja################################################################################
131fb730117SGovindraj Raja#
132fb730117SGovindraj Raja
133fb730117SGovindraj Raja#----
134fb730117SGovindraj Raja# 8.1
135fb730117SGovindraj Raja#----
136fb730117SGovindraj Raja
137fb730117SGovindraj Raja# Flag to enable access to Privileged Access Never bit of PSTATE.
138fb730117SGovindraj RajaENABLE_FEAT_PAN			?=	0
139fb730117SGovindraj Raja
140fb730117SGovindraj Raja# Flag to enable Virtualization Host Extensions.
141fb730117SGovindraj RajaENABLE_FEAT_VHE			?=	0
142fb730117SGovindraj Raja
143fb730117SGovindraj Raja#----
144fb730117SGovindraj Raja# 8.2
145fb730117SGovindraj Raja#----
146fb730117SGovindraj Raja
147fb730117SGovindraj Raja# Enable RAS Support.
148fb730117SGovindraj RajaENABLE_FEAT_RAS			?=	0
149fb730117SGovindraj Raja
150fb730117SGovindraj Raja#----
151fb730117SGovindraj Raja# 8.3
152fb730117SGovindraj Raja#----
153fb730117SGovindraj Raja
154fb730117SGovindraj Raja# Flag to enable Pointer Authentication. Internal flag not meant for
155fb730117SGovindraj Raja# direct setting. Use BRANCH_PROTECTION to enable PAUTH.
156fb730117SGovindraj RajaENABLE_PAUTH			?=	0
157fb730117SGovindraj Raja
158025b1b81SJohn Powell# FEAT_PAUTH_LR is an optional architectural feature, so this flag must be set
159025b1b81SJohn Powell# manually in addition to the BRANCH_PROTECTION flag which is used for other
160025b1b81SJohn Powell# branch protection and pointer authentication features.
161025b1b81SJohn PowellENABLE_FEAT_PAUTH_LR		?=	0
162025b1b81SJohn Powell
163fb730117SGovindraj Raja# Include pointer authentication (ARMv8.3-PAuth) registers in cpu context. This
164fb730117SGovindraj Raja# must be set to 1 if the platform wants to use this feature in the Secure
165fb730117SGovindraj Raja# world. It is not necessary for use in the Non-secure world.
166fb730117SGovindraj RajaCTX_INCLUDE_PAUTH_REGS		?=	0
167fb730117SGovindraj Raja
168fb730117SGovindraj Raja
169fb730117SGovindraj Raja#----
170fb730117SGovindraj Raja# 8.4
171fb730117SGovindraj Raja#----
172fb730117SGovindraj Raja
173fb730117SGovindraj Raja# Flag to enable Secure EL-2 feature.
174fb730117SGovindraj RajaENABLE_FEAT_SEL2		?=	0
175fb730117SGovindraj Raja
176fb730117SGovindraj Raja# By default, disable trace filter control register access to lower non-secure
177fb730117SGovindraj Raja# exception levels, i.e. NS-EL2, or NS-EL1 if NS-EL2 is implemented, but
178fb730117SGovindraj Raja# trace filter control register access is unused if FEAT_TRF is implemented.
179fb730117SGovindraj RajaENABLE_TRF_FOR_NS		?=	0
180fb730117SGovindraj Raja
181fb730117SGovindraj Raja# Flag to enable Data Independent Timing instructions.
182fb730117SGovindraj RajaENABLE_FEAT_DIT			?=	0
183fb730117SGovindraj Raja
184fb730117SGovindraj Raja#----
185fb730117SGovindraj Raja# 8.5
186fb730117SGovindraj Raja#----
187fb730117SGovindraj Raja
188fb730117SGovindraj Raja# Flag to enable Branch Target Identification.
189fb730117SGovindraj Raja# Internal flag not meant for direct setting.
190fb730117SGovindraj Raja# Use BRANCH_PROTECTION to enable BTI.
191fb730117SGovindraj RajaENABLE_BTI			?=	0
192fb730117SGovindraj Raja
193fb730117SGovindraj Raja# Flag to enable access to the Random Number Generator registers.
194fb730117SGovindraj RajaENABLE_FEAT_RNG			?=	0
195fb730117SGovindraj Raja
196fb730117SGovindraj Raja# Flag to enable Speculation Barrier Instruction.
197fb730117SGovindraj RajaENABLE_FEAT_SB			?=	0
198fb730117SGovindraj Raja
199fb730117SGovindraj Raja#----
200fb730117SGovindraj Raja# 8.6
201fb730117SGovindraj Raja#----
202fb730117SGovindraj Raja
203fb730117SGovindraj Raja# Flag to enable access to the CNTPOFF_EL2 register.
204fb730117SGovindraj RajaENABLE_FEAT_ECV			?=	0
205fb730117SGovindraj Raja
206fb730117SGovindraj Raja# Flag to enable access to the HDFGRTR_EL2 register.
207fb730117SGovindraj RajaENABLE_FEAT_FGT			?=	0
208fb730117SGovindraj Raja
209fb730117SGovindraj Raja#----
210fb730117SGovindraj Raja# 8.7
211fb730117SGovindraj Raja#----
212fb730117SGovindraj Raja
213fb730117SGovindraj Raja# Flag to enable access to the HCRX_EL2 register by setting SCR_EL3.HXEn.
214fb730117SGovindraj RajaENABLE_FEAT_HCX			?=	0
215fb730117SGovindraj Raja
216fb730117SGovindraj Raja#----
2176b8df7b9SArvind Ram Prakash# 8.8
2186b8df7b9SArvind Ram Prakash#----
2196b8df7b9SArvind Ram Prakash
2206b8df7b9SArvind Ram Prakash# Flag to enable FEAT_MOPS (Standardization of Memory operations)
2216b8df7b9SArvind Ram Prakash# when INIT_UNUSED_NS_EL2 = 1
2226b8df7b9SArvind Ram PrakashENABLE_FEAT_MOPS		?=	0
2236b8df7b9SArvind Ram Prakash
2246b8df7b9SArvind Ram Prakash#----
225fb730117SGovindraj Raja# 8.9
226fb730117SGovindraj Raja#----
227fb730117SGovindraj Raja
228fb730117SGovindraj Raja# Flag to enable access to TCR2 (FEAT_TCR2).
229fb730117SGovindraj RajaENABLE_FEAT_TCR2		?=	0
230fb730117SGovindraj Raja
2314ec4e545SJayanth Dodderi Chidanand# Flag to enable access to SCTLR2 (FEAT_SCTLR2).
2324ec4e545SJayanth Dodderi ChidanandENABLE_FEAT_SCTLR2		?=	0
2334ec4e545SJayanth Dodderi Chidanand
234fb730117SGovindraj Raja#
235fb730117SGovindraj Raja################################################################################
236f5211420SGovindraj Raja# Optional Features defaulted to 0 or 2, if they are not enabled from
237f5211420SGovindraj Raja# build option. Can also be disabled or enabled by platform if needed.
238f5211420SGovindraj Raja################################################################################
239f5211420SGovindraj Raja#
240f5211420SGovindraj Raja
241f5211420SGovindraj Raja#----
242f5211420SGovindraj Raja# 8.0
243f5211420SGovindraj Raja#----
244f5211420SGovindraj Raja
245f5211420SGovindraj Raja# Flag to enable CSV2_2 extension.
246f5211420SGovindraj RajaENABLE_FEAT_CSV2_2			?=	0
247f5211420SGovindraj Raja
24830019d86SSona Mathew# Flag to enable CSV2_3 extension. FEAT_CSV2_3 enables access to the
24930019d86SSona Mathew# SCXTNUM_ELx register.
25030019d86SSona MathewENABLE_FEAT_CSV2_3			?=	0
25130019d86SSona Mathew
252f5211420SGovindraj Raja# By default, disable access of trace system registers from NS lower
253f5211420SGovindraj Raja# ELs  i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused if
254f5211420SGovindraj Raja# system register trace is implemented. This feature is available if
255f5211420SGovindraj Raja# trace unit such as ETMv4.x, This feature is OPTIONAL and is only
256f5211420SGovindraj Raja# permitted in Armv8 implementations.
257f5211420SGovindraj RajaENABLE_SYS_REG_TRACE_FOR_NS		?=	0
258f5211420SGovindraj Raja
259f5211420SGovindraj Raja#----
260f5211420SGovindraj Raja# 8.2
261f5211420SGovindraj Raja#----
262f5211420SGovindraj Raja
263f5211420SGovindraj Raja# Build option to enable/disable the Statistical Profiling Extension,
264f5211420SGovindraj Raja# keep it enabled by default for AArch64.
265f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
266f5211420SGovindraj Raja       ENABLE_SPE_FOR_NS		?=	2
267f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
268f0c813b7SGovindraj Raja       ifneq ($(or $(ENABLE_SPE_FOR_NS),0),0)
269f5211420SGovindraj Raja              $(error ENABLE_SPE_FOR_NS is not supported for AArch32)
270f5211420SGovindraj Raja       else
271f5211420SGovindraj Raja              ENABLE_SPE_FOR_NS		:=	0
272f5211420SGovindraj Raja       endif
273f5211420SGovindraj Rajaendif
274f5211420SGovindraj Raja
275f5211420SGovindraj Raja# Enable SVE for non-secure world by default.
276f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
277f5211420SGovindraj Raja       ENABLE_SVE_FOR_NS		?=	2
278f5211420SGovindraj Raja# SVE is only supported on AArch64 so disable it on AArch32.
279f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
280f0c813b7SGovindraj Raja       ifneq ($(or $(ENABLE_SVE_FOR_NS),0),0)
281f5211420SGovindraj Raja              $(error ENABLE_SVE_FOR_NS is not supported for AArch32)
282f5211420SGovindraj Raja       else
283f5211420SGovindraj Raja              ENABLE_SVE_FOR_NS 	:=	0
284f5211420SGovindraj Raja       endif
285f5211420SGovindraj Rajaendif
286f5211420SGovindraj Raja
287f5211420SGovindraj Raja#----
288f5211420SGovindraj Raja# 8.4
289f5211420SGovindraj Raja#----
290f5211420SGovindraj Raja
291f5211420SGovindraj Raja# Feature flags for supporting Activity monitor extensions.
292f5211420SGovindraj RajaENABLE_FEAT_AMU				?=	0
293f5211420SGovindraj RajaENABLE_AMU_AUXILIARY_COUNTERS		?=	0
29414c27f82SJuan Pablo CondeAMU_RESTRICT_COUNTERS			?=	1
295f5211420SGovindraj Raja
296f5211420SGovindraj Raja# Build option to enable MPAM for lower ELs.
297edebefbcSArvind Ram Prakash# Enabling it by default
298edebefbcSArvind Ram Prakashifeq (${ARCH},aarch64)
299edebefbcSArvind Ram Prakash        ENABLE_FEAT_MPAM		?=	2
300edebefbcSArvind Ram Prakashelse ifeq (${ARCH},aarch32)
30172f027c3SHarrison Mutai        ifneq ($(or $(ENABLE_FEAT_MPAM),0),0)
302edebefbcSArvind Ram Prakash                $(error ENABLE_FEAT_MPAM is not supported for AArch32)
303edebefbcSArvind Ram Prakash        else
304edebefbcSArvind Ram Prakash                ENABLE_FEAT_MPAM	:=	0
305edebefbcSArvind Ram Prakash        endif
306edebefbcSArvind Ram Prakashendif
307f5211420SGovindraj Raja
3088b2048c1SGovindraj Raja# Include nested virtualization control (Armv8.4-NV) registers in cpu context.
3098b2048c1SGovindraj Raja# This must be set to 1 if architecture implements Nested Virtualization
3108b2048c1SGovindraj Raja# Extension and platform wants to use this feature in the Secure world.
3118b2048c1SGovindraj RajaCTX_INCLUDE_NEVE_REGS			?=	0
3128b2048c1SGovindraj Raja
313f5211420SGovindraj Raja#----
314f5211420SGovindraj Raja# 8.5
315f5211420SGovindraj Raja#----
316f5211420SGovindraj Raja
317f5211420SGovindraj Raja# Flag to enable support for EL3 trapping of reads of the RNDR and RNDRRS
318f5211420SGovindraj Raja# registers, by setting SCR_EL3.TRNDR.
319f5211420SGovindraj RajaENABLE_FEAT_RNG_TRAP			?=	0
320f5211420SGovindraj Raja
321c282384dSGovindraj Raja# Enable FEAT_MTE2. This must be set to 1 if the platform wants
322c282384dSGovindraj Raja# to use this feature and is enabled at ELX.
3238e397889SGovindraj RajaENABLE_FEAT_MTE2		        ?=	0
3248e397889SGovindraj Raja
325f5211420SGovindraj Raja#----
326f5211420SGovindraj Raja# 8.6
327f5211420SGovindraj Raja#----
328f5211420SGovindraj Raja
329f5211420SGovindraj Raja# Flag to enable AMUv1p1 extension.
330f5211420SGovindraj RajaENABLE_FEAT_AMUv1p1			?=	0
331f5211420SGovindraj Raja
332f5211420SGovindraj Raja# Flag to enable delayed trapping of WFE instruction (FEAT_TWED).
333f5211420SGovindraj RajaENABLE_FEAT_TWED			?=	0
334f5211420SGovindraj Raja
335f5211420SGovindraj Raja# In v8.6+ platforms with delayed trapping of WFE being supported
336f5211420SGovindraj Raja# via FEAT_TWED, this flag takes the delay value to be set in the
337f5211420SGovindraj Raja# SCR_EL3.TWEDEL(4bit) field, when FEAT_TWED is implemented.
338f5211420SGovindraj Raja# By default it takes 0, and need to be updated by the platforms.
339f5211420SGovindraj RajaTWED_DELAY				?=	0
340f5211420SGovindraj Raja
341f5211420SGovindraj Raja# Disable MTPMU if FEAT_MTPMU is supported.
342f5211420SGovindraj RajaDISABLE_MTPMU				?=	0
343f5211420SGovindraj Raja
34433e6aaacSArvind Ram Prakash# Flag to enable FEAT_FGT2 (Fine Granular Traps 2)
34533e6aaacSArvind Ram PrakashENABLE_FEAT_FGT2			?=	0
34633e6aaacSArvind Ram Prakash
34719d52a83SAndre Przywara# LoadStore64Bytes extension using the ACCDATA_EL1 system register
34819d52a83SAndre PrzywaraENABLE_FEAT_LS64_ACCDATA		?=	0
34919d52a83SAndre Przywara
350f5211420SGovindraj Raja#----
3516d0433f0SJayanth Dodderi Chidanand# 8.8
3526d0433f0SJayanth Dodderi Chidanand#----
3536d0433f0SJayanth Dodderi Chidanand
3546d0433f0SJayanth Dodderi Chidanand# Flag to enable FEAT_THE (Translation Hardening Extension)
3556d0433f0SJayanth Dodderi ChidanandENABLE_FEAT_THE				?=	0
3566d0433f0SJayanth Dodderi Chidanand
3576d0433f0SJayanth Dodderi Chidanand#----
358f5211420SGovindraj Raja# 8.9
359f5211420SGovindraj Raja#----
360f5211420SGovindraj Raja
361f5211420SGovindraj Raja# Flag to enable access to Stage 2 Permission Indirection (FEAT_S2PIE).
362f5211420SGovindraj RajaENABLE_FEAT_S2PIE			?=	0
363f5211420SGovindraj Raja
364f5211420SGovindraj Raja# Flag to enable access to Stage 1 Permission Indirection (FEAT_S1PIE).
365f5211420SGovindraj RajaENABLE_FEAT_S1PIE			?=	0
366f5211420SGovindraj Raja
367f5211420SGovindraj Raja# Flag to enable access to Stage 2 Permission Overlay (FEAT_S2POE).
368f5211420SGovindraj RajaENABLE_FEAT_S2POE			?=	0
369f5211420SGovindraj Raja
370f5211420SGovindraj Raja# Flag to enable access to Stage 1 Permission Overlay (FEAT_S1POE).
371f5211420SGovindraj RajaENABLE_FEAT_S1POE			?=	0
372f5211420SGovindraj Raja
37383271d5aSArvind Ram Prakash# Flag to enable access to Arm v8.9 Debug extension
37483271d5aSArvind Ram PrakashENABLE_FEAT_DEBUGV8P9			?=	0
37583271d5aSArvind Ram Prakash
376cc2523bbSAndre Przywara# AIE extension using the (A)MAIR2 system registers
377cc2523bbSAndre PrzywaraENABLE_FEAT_AIE				?=	0
378cc2523bbSAndre Przywara
379*b3bcfd12SAndre Przywara# PFAR extension using the PFAR system registers
380*b3bcfd12SAndre PrzywaraENABLE_FEAT_PFAR			?=	0
381*b3bcfd12SAndre Przywara
382f5211420SGovindraj Raja#----
383f5211420SGovindraj Raja# 9.0
384f5211420SGovindraj Raja#----
385f5211420SGovindraj Raja
386f5211420SGovindraj Raja# Scalable Matrix Extension for non-secure world.
387f5211420SGovindraj RajaENABLE_SME_FOR_NS			?=	0
388f5211420SGovindraj Raja
389f5211420SGovindraj Raja# Scalable Vector Extension for secure world.
390f5211420SGovindraj RajaENABLE_SVE_FOR_SWD			?=	0
391f5211420SGovindraj Raja
392f5211420SGovindraj Raja# By default, disable access of trace buffer control registers from NS
393f5211420SGovindraj Raja# lower ELs  i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused
394f5211420SGovindraj Raja# if FEAT_TRBE is implemented.
395f5211420SGovindraj Raja# Note FEAT_TRBE is only supported on AArch64 - therefore do not enable in
396f5211420SGovindraj Raja# AArch32.
397f5211420SGovindraj Rajaifeq (${ARCH},aarch64)
398f5211420SGovindraj Raja        ENABLE_TRBE_FOR_NS		?=	0
399f5211420SGovindraj Rajaelse ifeq (${ARCH},aarch32)
400f0c813b7SGovindraj Raja        ifneq ($(or $(ENABLE_TRBE_FOR_NS),0),0)
401f5211420SGovindraj Raja               $(error ENABLE_TRBE_FOR_NS is not supported for AArch32)
402f5211420SGovindraj Raja        else
403f5211420SGovindraj Raja               ENABLE_TRBE_FOR_NS 	:=	0
404f5211420SGovindraj Raja        endif
405f5211420SGovindraj Rajaendif
406f5211420SGovindraj Raja
407f5211420SGovindraj Raja#----
408f5211420SGovindraj Raja# 9.2
409f5211420SGovindraj Raja#----
410f5211420SGovindraj Raja
4113dafd960SGovindraj Raja# Flag to enable Realm Management Extension (FEAT_RME).
4123dafd960SGovindraj RajaENABLE_RME				?=	0
4133dafd960SGovindraj Raja
414f5211420SGovindraj Raja# Scalable Matrix Extension version 2 for non-secure world.
415f5211420SGovindraj RajaENABLE_SME2_FOR_NS			?=	0
416f5211420SGovindraj Raja
417f5211420SGovindraj Raja# Scalable Matrix Extension for secure world.
418f5211420SGovindraj RajaENABLE_SME_FOR_SWD			?=	0
419f5211420SGovindraj Raja
420f5211420SGovindraj Raja# By default, disable access to branch record buffer control registers from NS
421f5211420SGovindraj Raja# lower ELs i.e. NS-EL2, or NS-EL1 if NS-EL2 implemented but unused
422f5211420SGovindraj Raja# if FEAT_BRBE is implemented.
423f5211420SGovindraj RajaENABLE_BRBE_FOR_NS			?=	0
424f5211420SGovindraj Raja
425a57e18e4SArvind Ram Prakash# Flag to enable Floating point exception Mode Register Feature (FEAT_FPMR)
426a57e18e4SArvind Ram PrakashENABLE_FEAT_FPMR			?=	0
427a57e18e4SArvind Ram Prakash
4287e84f3cfSTushar Khandelwal# Flag to enable Memory Encryption Contexts (FEAT_MEC).
4297e84f3cfSTushar KhandelwalENABLE_FEAT_MEC				?=	0
4307e84f3cfSTushar Khandelwal
431f5211420SGovindraj Raja#----
43230655136SGovindraj Raja# 9.3
43330655136SGovindraj Raja#----
43430655136SGovindraj Raja# Flag to enable access to Arm v9.3 FEAT_D128 extension
43530655136SGovindraj RajaENABLE_FEAT_D128			?=	0
43630655136SGovindraj Raja
4378cef63d6SBoyan Karatotev# Flag to enable access to GICv5 CPU interface extension (FEAT_GCIE)
4388cef63d6SBoyan KaratotevENABLE_FEAT_GCIE			?=	0
4398cef63d6SBoyan Karatotev
440c42aefd3SArvind Ram Prakash# Enables access to PE-side MPAM bandwidth controls (FEAT_MPAM_PE_BW_CTRL)
441c42aefd3SArvind Ram PrakashENABLE_FEAT_MPAM_PE_BW_CTRL		?=	0
442c42aefd3SArvind Ram Prakash
44330655136SGovindraj Raja#----
444f5211420SGovindraj Raja#9.4
445f5211420SGovindraj Raja#----
446f5211420SGovindraj Raja
447f5211420SGovindraj Raja# Flag to enable access to Guarded Control Stack (FEAT_GCS).
448f5211420SGovindraj RajaENABLE_FEAT_GCS				?=	0
4494274b526SArvind Ram Prakash
4504274b526SArvind Ram Prakash# Flag to enable Fine Grained Write Traps (FEAT_FGWTE3) for EL3.
4514274b526SArvind Ram PrakashENABLE_FEAT_FGWTE3			?=	0
452a1032bebSJohn Powell
453a1032bebSJohn Powell# Flag to enable checked pointer arithmetic (FEAT_CPA2) for EL3.
454a1032bebSJohn Powell# We don't have a flag for FEAT_CPA since that has no effect on software
455a1032bebSJohn PowellENABLE_FEAT_CPA2			?=	0
456