blob: 840b117a0955da6c02e6035e8f8c4d81c6180426 [file] [log] [blame]
Antonio Nino Diazc326c342019-01-11 11:20:10 +00001/*
Andre Przywarabb0db3b2023-01-25 12:26:14 +00002 * Copyright (c) 2019-2023, Arm Limited. All rights reserved.
Antonio Nino Diazc326c342019-01-11 11:20:10 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef ARCH_FEATURES_H
8#define ARCH_FEATURES_H
9
10#include <stdbool.h>
11
12#include <arch_helpers.h>
Andre Przywarae8920f62022-11-10 14:28:01 +000013#include <common/feat_detect.h>
Antonio Nino Diazc326c342019-01-11 11:20:10 +000014
Andre Przywarabb0db3b2023-01-25 12:26:14 +000015#define ISOLATE_FIELD(reg, feat) \
16 ((unsigned int)(((reg) >> (feat ## _SHIFT)) & (feat ## _MASK)))
17
Antonio Nino Diazd29d21e2019-02-06 09:23:04 +000018static inline bool is_armv7_gentimer_present(void)
19{
20 /* The Generic Timer is always present in an ARMv8-A implementation */
21 return true;
22}
23
Andre Przywara97272942023-01-26 15:27:38 +000024static inline unsigned int read_feat_pan_id_field(void)
25{
26 return ISOLATE_FIELD(read_id_aa64mmfr1_el1(), ID_AA64MMFR1_EL1_PAN);
27}
28
29static inline bool is_feat_pan_supported(void)
Daniel Boulby44b43332020-11-25 16:36:46 +000030{
Andre Przywara97272942023-01-26 15:27:38 +000031 if (ENABLE_FEAT_PAN == FEAT_STATE_DISABLED) {
32 return false;
33 }
34
35 if (ENABLE_FEAT_PAN == FEAT_STATE_ALWAYS) {
36 return true;
37 }
38
39 return read_feat_pan_id_field() != 0U;
Daniel Boulby44b43332020-11-25 16:36:46 +000040}
41
Andre Przywara98908b32022-11-17 16:42:09 +000042static inline unsigned int read_feat_vhe_id_field(void)
43{
44 return ISOLATE_FIELD(read_id_aa64mmfr1_el1(), ID_AA64MMFR1_EL1_VHE);
45}
46
47static inline bool is_feat_vhe_supported(void)
Daniel Boulby44b43332020-11-25 16:36:46 +000048{
Andre Przywara98908b32022-11-17 16:42:09 +000049 if (ENABLE_FEAT_VHE == FEAT_STATE_DISABLED) {
50 return false;
51 }
52
53 if (ENABLE_FEAT_VHE == FEAT_STATE_ALWAYS) {
54 return true;
55 }
56
57 return read_feat_vhe_id_field() != 0U;
Daniel Boulby44b43332020-11-25 16:36:46 +000058}
59
Antonio Nino Diazc326c342019-01-11 11:20:10 +000060static inline bool is_armv8_2_ttcnp_present(void)
61{
62 return ((read_id_aa64mmfr2_el1() >> ID_AA64MMFR2_EL1_CNP_SHIFT) &
63 ID_AA64MMFR2_EL1_CNP_MASK) != 0U;
64}
65
Juan Pablo Condee089a172022-06-29 17:44:43 -040066static inline bool is_feat_pacqarma3_present(void)
67{
68 uint64_t mask_id_aa64isar2 =
69 (ID_AA64ISAR2_GPA3_MASK << ID_AA64ISAR2_GPA3_SHIFT) |
70 (ID_AA64ISAR2_APA3_MASK << ID_AA64ISAR2_APA3_SHIFT);
71
72 /* If any of the fields is not zero, QARMA3 algorithm is present */
73 return (read_id_aa64isar2_el1() & mask_id_aa64isar2) != 0U;
74}
75
Antonio Nino Diaz25cda672019-02-19 11:53:51 +000076static inline bool is_armv8_3_pauth_present(void)
77{
Juan Pablo Condee089a172022-06-29 17:44:43 -040078 uint64_t mask_id_aa64isar1 =
79 (ID_AA64ISAR1_GPI_MASK << ID_AA64ISAR1_GPI_SHIFT) |
80 (ID_AA64ISAR1_GPA_MASK << ID_AA64ISAR1_GPA_SHIFT) |
81 (ID_AA64ISAR1_API_MASK << ID_AA64ISAR1_API_SHIFT) |
82 (ID_AA64ISAR1_APA_MASK << ID_AA64ISAR1_APA_SHIFT);
Antonio Nino Diaz25cda672019-02-19 11:53:51 +000083
Juan Pablo Condee089a172022-06-29 17:44:43 -040084 /*
85 * If any of the fields is not zero or QARMA3 is present,
86 * PAuth is present
87 */
88 return ((read_id_aa64isar1_el1() & mask_id_aa64isar1) != 0U ||
89 is_feat_pacqarma3_present());
Antonio Nino Diaz25cda672019-02-19 11:53:51 +000090}
91
Daniel Boulby60786e72021-10-22 11:37:34 +010092static inline bool is_armv8_4_dit_present(void)
93{
94 return ((read_id_aa64pfr0_el1() >> ID_AA64PFR0_DIT_SHIFT) &
95 ID_AA64PFR0_DIT_MASK) == 1U;
96}
97
Sathees Balya74155972019-01-25 11:36:01 +000098static inline bool is_armv8_4_ttst_present(void)
99{
100 return ((read_id_aa64mmfr2_el1() >> ID_AA64MMFR2_EL1_ST_SHIFT) &
101 ID_AA64MMFR2_EL1_ST_MASK) == 1U;
102}
103
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100104static inline bool is_armv8_5_bti_present(void)
105{
106 return ((read_id_aa64pfr1_el1() >> ID_AA64PFR1_EL1_BT_SHIFT) &
107 ID_AA64PFR1_EL1_BT_MASK) == BTI_IMPLEMENTED;
108}
109
Soby Mathew830f0ad2019-07-12 09:23:38 +0100110static inline unsigned int get_armv8_5_mte_support(void)
111{
112 return ((read_id_aa64pfr1_el1() >> ID_AA64PFR1_EL1_MTE_SHIFT) &
113 ID_AA64PFR1_EL1_MTE_MASK);
114}
115
Andre Przywara6dd2d062023-02-22 16:53:50 +0000116static inline unsigned int read_feat_sel2_id_field(void)
117{
118 return ISOLATE_FIELD(read_id_aa64pfr0_el1(), ID_AA64PFR0_SEL2);
119}
120
121static inline bool is_feat_sel2_supported(void)
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200122{
Andre Przywara6dd2d062023-02-22 16:53:50 +0000123 if (ENABLE_FEAT_SEL2 == FEAT_STATE_DISABLED) {
124 return false;
125 }
126
127 if (ENABLE_FEAT_SEL2 == FEAT_STATE_ALWAYS) {
128 return true;
129 }
130
131 return read_feat_sel2_id_field() != 0U;
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200132}
133
Andre Przywara0cf77402023-01-27 12:25:49 +0000134static inline unsigned int read_feat_twed_id_field(void)
135{
136 return ISOLATE_FIELD(read_id_aa64mmfr1_el1(), ID_AA64MMFR1_EL1_TWED);
137}
138
139static inline bool is_feat_twed_supported(void)
johpow013e24c162020-04-22 14:05:13 -0500140{
Andre Przywara0cf77402023-01-27 12:25:49 +0000141 if (ENABLE_FEAT_TWED == FEAT_STATE_DISABLED) {
142 return false;
143 }
144
145 if (ENABLE_FEAT_TWED == FEAT_STATE_ALWAYS) {
146 return true;
147 }
148
149 return read_feat_twed_id_field() != 0U;
johpow013e24c162020-04-22 14:05:13 -0500150}
151
Andre Przywarae8920f62022-11-10 14:28:01 +0000152static unsigned int read_feat_fgt_id_field(void)
Jimmy Brissonecc3c672020-04-16 10:47:56 -0500153{
Andre Przywarabb0db3b2023-01-25 12:26:14 +0000154 return ISOLATE_FIELD(read_id_aa64mmfr0_el1(), ID_AA64MMFR0_EL1_FGT);
Andre Przywarae8920f62022-11-10 14:28:01 +0000155}
156
157static inline bool is_feat_fgt_supported(void)
158{
159 if (ENABLE_FEAT_FGT == FEAT_STATE_DISABLED) {
160 return false;
161 }
162
163 if (ENABLE_FEAT_FGT == FEAT_STATE_ALWAYS) {
164 return true;
165 }
166
167 return read_feat_fgt_id_field() != 0U;
Jimmy Brissonecc3c672020-04-16 10:47:56 -0500168}
169
Andre Przywarac3464182022-11-17 17:30:43 +0000170static unsigned int read_feat_ecv_id_field(void)
171{
172 return ISOLATE_FIELD(read_id_aa64mmfr0_el1(), ID_AA64MMFR0_EL1_ECV);
173}
174
175static inline bool is_feat_ecv_supported(void)
176{
177 if (ENABLE_FEAT_ECV == FEAT_STATE_DISABLED) {
178 return false;
179 }
180
181 if (ENABLE_FEAT_ECV == FEAT_STATE_ALWAYS) {
182 return true;
183 }
184
185 return read_feat_ecv_id_field() != 0U;
186}
187
188static inline bool is_feat_ecv_v2_supported(void)
Jimmy Brisson83573892020-04-16 10:48:02 -0500189{
Andre Przywarac3464182022-11-17 17:30:43 +0000190 if (ENABLE_FEAT_ECV == FEAT_STATE_DISABLED) {
191 return false;
192 }
193
194 if (ENABLE_FEAT_ECV == FEAT_STATE_ALWAYS) {
195 return true;
196 }
197
198 return read_feat_ecv_id_field() >= ID_AA64MMFR0_EL1_ECV_SELF_SYNCH;
Jimmy Brisson83573892020-04-16 10:48:02 -0500199}
200
Andre Przywara436b4bb2023-02-22 17:55:59 +0000201static unsigned int read_feat_rng_id_field(void)
202{
203 return ISOLATE_FIELD(read_id_aa64isar0_el1(), ID_AA64ISAR0_RNDR);
204}
205
206static inline bool is_feat_rng_supported(void)
Tomas Pilar6fd816e2020-10-28 15:34:12 +0000207{
Andre Przywara436b4bb2023-02-22 17:55:59 +0000208 if (ENABLE_FEAT_RNG == FEAT_STATE_DISABLED) {
209 return false;
210 }
211
212 if (ENABLE_FEAT_RNG == FEAT_STATE_ALWAYS) {
213 return true;
214 }
215
216 return read_feat_rng_id_field() != 0U;
Tomas Pilar6fd816e2020-10-28 15:34:12 +0000217}
218
Mark Brownc37eee72023-03-14 20:13:03 +0000219static unsigned int read_feat_tcrx_id_field(void)
220{
221 return ISOLATE_FIELD(read_id_aa64mmfr3_el1(), ID_AA64MMFR3_EL1_TCRX);
222}
223
224static inline bool is_feat_tcr2_supported(void)
225{
226 if (ENABLE_FEAT_TCR2 == FEAT_STATE_DISABLED) {
227 return false;
228 }
229
230 if (ENABLE_FEAT_TCR2 == FEAT_STATE_ALWAYS) {
231 return true;
232 }
233
234 return read_feat_tcrx_id_field() != 0U;
235}
236
Mark Brown293a6612023-03-14 20:48:43 +0000237static unsigned int read_feat_s2poe_id_field(void)
238{
239 return ISOLATE_FIELD(read_id_aa64mmfr3_el1(), ID_AA64MMFR3_EL1_S2POE);
240}
241
242static inline bool is_feat_s2poe_supported(void)
243{
244 if (ENABLE_FEAT_S2POE == FEAT_STATE_DISABLED) {
245 return false;
246 }
247
248 if (ENABLE_FEAT_S2POE == FEAT_STATE_ALWAYS) {
249 return true;
250 }
251
252 return read_feat_s2poe_id_field() != 0U;
253}
254
255static unsigned int read_feat_s1poe_id_field(void)
256{
257 return ISOLATE_FIELD(read_id_aa64mmfr3_el1(), ID_AA64MMFR3_EL1_S1POE);
258}
259
260static inline bool is_feat_s1poe_supported(void)
261{
262 if (ENABLE_FEAT_S1POE == FEAT_STATE_DISABLED) {
263 return false;
264 }
265
266 if (ENABLE_FEAT_S1POE == FEAT_STATE_ALWAYS) {
267 return true;
268 }
269
270 return read_feat_s1poe_id_field() != 0U;
271}
272
273static inline bool is_feat_sxpoe_supported(void)
274{
275 return is_feat_s1poe_supported() || is_feat_s2poe_supported();
276}
277
278static unsigned int read_feat_s2pie_id_field(void)
279{
280 return ISOLATE_FIELD(read_id_aa64mmfr3_el1(), ID_AA64MMFR3_EL1_S2PIE);
281}
282
283static inline bool is_feat_s2pie_supported(void)
284{
285 if (ENABLE_FEAT_S2PIE == FEAT_STATE_DISABLED) {
286 return false;
287 }
288
289 if (ENABLE_FEAT_S2PIE == FEAT_STATE_ALWAYS) {
290 return true;
291 }
292
293 return read_feat_s2pie_id_field() != 0U;
294}
295
296static unsigned int read_feat_s1pie_id_field(void)
297{
298 return ISOLATE_FIELD(read_id_aa64mmfr3_el1(), ID_AA64MMFR3_EL1_S1PIE);
299}
300
301static inline bool is_feat_s1pie_supported(void)
302{
303 if (ENABLE_FEAT_S1PIE == FEAT_STATE_DISABLED) {
304 return false;
305 }
306
307 if (ENABLE_FEAT_S1PIE == FEAT_STATE_ALWAYS) {
308 return true;
309 }
310
311 return read_feat_s1pie_id_field() != 0U;
312}
313
314static inline bool is_feat_sxpie_supported(void)
315{
316 return is_feat_s1pie_supported() || is_feat_s2pie_supported();
317}
318
Andre Przywara2c550e32022-11-10 14:41:07 +0000319/*******************************************************************************
320 * Functions to identify the presence of the Activity Monitors Extension
321 ******************************************************************************/
322static unsigned int read_feat_amu_id_field(void)
323{
Andre Przywarabb0db3b2023-01-25 12:26:14 +0000324 return ISOLATE_FIELD(read_id_aa64pfr0_el1(), ID_AA64PFR0_AMU);
Andre Przywara2c550e32022-11-10 14:41:07 +0000325}
326
327static inline bool is_feat_amu_supported(void)
328{
Andre Przywara0b7f1b02023-03-21 13:53:19 +0000329 if (ENABLE_FEAT_AMU == FEAT_STATE_DISABLED) {
Andre Przywara2c550e32022-11-10 14:41:07 +0000330 return false;
331 }
332
Andre Przywara0b7f1b02023-03-21 13:53:19 +0000333 if (ENABLE_FEAT_AMU == FEAT_STATE_ALWAYS) {
Andre Przywara2c550e32022-11-10 14:41:07 +0000334 return true;
335 }
336
337 return read_feat_amu_id_field() >= ID_AA64PFR0_AMU_V1;
338}
339
Andre Przywara906776e2023-03-03 10:30:06 +0000340static inline bool is_feat_amuv1p1_supported(void)
johpow01fa59c6f2020-10-02 13:41:11 -0500341{
Andre Przywara906776e2023-03-03 10:30:06 +0000342 if (ENABLE_FEAT_AMUv1p1 == FEAT_STATE_DISABLED) {
343 return false;
344 }
345
346 if (ENABLE_FEAT_AMUv1p1 == FEAT_STATE_ALWAYS) {
347 return true;
348 }
349
Andre Przywara2c550e32022-11-10 14:41:07 +0000350 return read_feat_amu_id_field() >= ID_AA64PFR0_AMU_V1P1;
johpow01fa59c6f2020-10-02 13:41:11 -0500351}
352
Alexei Fedorov19933552020-05-26 13:16:41 +0100353/*
354 * Return MPAM version:
355 *
356 * 0x00: None Armv8.0 or later
357 * 0x01: v0.1 Armv8.4 or later
358 * 0x10: v1.0 Armv8.2 or later
359 * 0x11: v1.1 Armv8.4 or later
360 *
361 */
Andre Przywara84b86532022-11-17 16:42:09 +0000362static inline unsigned int read_feat_mpam_version(void)
Alexei Fedorov19933552020-05-26 13:16:41 +0100363{
364 return (unsigned int)((((read_id_aa64pfr0_el1() >>
365 ID_AA64PFR0_MPAM_SHIFT) & ID_AA64PFR0_MPAM_MASK) << 4) |
366 ((read_id_aa64pfr1_el1() >>
367 ID_AA64PFR1_MPAM_FRAC_SHIFT) & ID_AA64PFR1_MPAM_FRAC_MASK));
368}
369
Andre Przywara84b86532022-11-17 16:42:09 +0000370static inline bool is_feat_mpam_supported(void)
371{
372 if (ENABLE_MPAM_FOR_LOWER_ELS == FEAT_STATE_DISABLED) {
373 return false;
374 }
375
376 if (ENABLE_MPAM_FOR_LOWER_ELS == FEAT_STATE_ALWAYS) {
377 return true;
378 }
379
380 return read_feat_mpam_version() != 0U;
381}
382
Andre Przywaraf20ad902022-11-15 11:45:19 +0000383static inline unsigned int read_feat_hcx_id_field(void)
384{
Andre Przywarabb0db3b2023-01-25 12:26:14 +0000385 return ISOLATE_FIELD(read_id_aa64mmfr1_el1(), ID_AA64MMFR1_EL1_HCX);
Andre Przywaraf20ad902022-11-15 11:45:19 +0000386}
387
388static inline bool is_feat_hcx_supported(void)
johpow01f91e59f2021-08-04 19:38:18 -0500389{
Andre Przywaraf20ad902022-11-15 11:45:19 +0000390 if (ENABLE_FEAT_HCX == FEAT_STATE_DISABLED) {
391 return false;
392 }
393
394 if (ENABLE_FEAT_HCX == FEAT_STATE_ALWAYS) {
395 return true;
396 }
397
398 return read_feat_hcx_id_field() != 0U;
johpow01f91e59f2021-08-04 19:38:18 -0500399}
400
Juan Pablo Conde42305f22022-07-12 16:40:29 -0400401static inline bool is_feat_rng_trap_present(void)
402{
403 return (((read_id_aa64pfr1_el1() >> ID_AA64PFR1_EL1_RNDR_TRAP_SHIFT) &
404 ID_AA64PFR1_EL1_RNDR_TRAP_MASK)
405 == ID_AA64PFR1_EL1_RNG_TRAP_SUPPORTED);
406}
407
Zelalem Aweke79e3d292021-07-08 16:51:14 -0500408static inline unsigned int get_armv9_2_feat_rme_support(void)
409{
410 /*
411 * Return the RME version, zero if not supported. This function can be
412 * used as both an integer value for the RME version or compared to zero
413 * to detect RME presence.
414 */
415 return (unsigned int)(read_id_aa64pfr0_el1() >>
416 ID_AA64PFR0_FEAT_RME_SHIFT) & ID_AA64PFR0_FEAT_RME_MASK;
417}
418
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000419/*********************************************************************************
420 * Function to identify the presence of FEAT_SB (Speculation Barrier Instruction)
421 ********************************************************************************/
Andre Przywara46880dc2022-11-17 16:42:09 +0000422static inline unsigned int read_feat_sb_id_field(void)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000423{
Andre Przywara46880dc2022-11-17 16:42:09 +0000424 return ISOLATE_FIELD(read_id_aa64isar1_el1(), ID_AA64ISAR1_SB);
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000425}
426
427/*********************************************************************************
428 * Function to identify the presence of FEAT_CSV2_2 (Cache Speculation Variant 2)
429 ********************************************************************************/
Andre Przywara902c9022022-11-17 17:30:43 +0000430static inline unsigned int read_feat_csv2_id_field(void)
431{
432 return ISOLATE_FIELD(read_id_aa64pfr0_el1(), ID_AA64PFR0_CSV2);
433}
434
435static inline bool is_feat_csv2_2_supported(void)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000436{
Andre Przywara902c9022022-11-17 17:30:43 +0000437 if (ENABLE_FEAT_CSV2_2 == FEAT_STATE_DISABLED) {
438 return false;
439 }
440
441 if (ENABLE_FEAT_CSV2_2 == FEAT_STATE_ALWAYS) {
442 return true;
443 }
444
445 return read_feat_csv2_id_field() >= ID_AA64PFR0_CSV2_2_SUPPORTED;
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000446}
447
448/**********************************************************************************
449 * Function to identify the presence of FEAT_SPE (Statistical Profiling Extension)
450 *********************************************************************************/
Andre Przywaraf3e8cfc2022-11-17 16:42:09 +0000451static inline unsigned int read_feat_spe_id_field(void)
452{
453 return ISOLATE_FIELD(read_id_aa64dfr0_el1(), ID_AA64DFR0_PMS);
454}
455
456static inline bool is_feat_spe_supported(void)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000457{
Andre Przywaraf3e8cfc2022-11-17 16:42:09 +0000458 if (ENABLE_SPE_FOR_NS == FEAT_STATE_DISABLED) {
459 return false;
460 }
461
462 if (ENABLE_SPE_FOR_NS == FEAT_STATE_ALWAYS) {
463 return true;
464 }
465
466 return read_feat_spe_id_field() != 0U;
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000467}
468
469/*******************************************************************************
470 * Function to identify the presence of FEAT_SVE (Scalable Vector Extension)
471 ******************************************************************************/
Jayanth Dodderi Chidanandd62c6812023-03-07 10:43:19 +0000472static inline unsigned int read_feat_sve_id_field(void)
473{
474 return ISOLATE_FIELD(read_id_aa64pfr0_el1(), ID_AA64PFR0_SVE);
475}
476
477static inline bool is_feat_sve_supported(void)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000478{
Jayanth Dodderi Chidanandd62c6812023-03-07 10:43:19 +0000479 if (ENABLE_SVE_FOR_NS == FEAT_STATE_DISABLED) {
480 return false;
481 }
482
483 if (ENABLE_SVE_FOR_NS == FEAT_STATE_ALWAYS) {
484 return true;
485 }
486
487 return read_feat_sve_id_field() >= ID_AA64PFR0_SVE_SUPPORTED;
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000488}
489
490/*******************************************************************************
491 * Function to identify the presence of FEAT_RAS (Reliability,Availability,
492 * and Serviceability Extension)
493 ******************************************************************************/
494static inline bool is_armv8_2_feat_ras_present(void)
495{
496 return (((read_id_aa64pfr0_el1() >> ID_AA64PFR0_RAS_SHIFT) &
497 ID_AA64PFR0_RAS_MASK) != ID_AA64PFR0_RAS_NOT_SUPPORTED);
498}
499
500/**************************************************************************
501 * Function to identify the presence of FEAT_DIT (Data Independent Timing)
502 *************************************************************************/
503static inline bool is_armv8_4_feat_dit_present(void)
504{
505 return (((read_id_aa64pfr0_el1() >> ID_AA64PFR0_DIT_SHIFT) &
506 ID_AA64PFR0_DIT_MASK) == ID_AA64PFR0_DIT_SUPPORTED);
507}
508
Andre Przywara44e33e02022-11-17 16:42:09 +0000509static inline unsigned int read_feat_tracever_id_field(void)
510{
511 return ISOLATE_FIELD(read_id_aa64dfr0_el1(), ID_AA64DFR0_TRACEVER);
512}
513
514static inline bool is_feat_sys_reg_trace_supported(void)
515{
516 if (ENABLE_SYS_REG_TRACE_FOR_NS == FEAT_STATE_DISABLED) {
517 return false;
518 }
519
520 if (ENABLE_SYS_REG_TRACE_FOR_NS == FEAT_STATE_ALWAYS) {
521 return true;
522 }
523
524 return read_feat_tracever_id_field() != 0U;
525}
526
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000527/*************************************************************************
528 * Function to identify the presence of FEAT_TRF (TraceLift)
529 ************************************************************************/
Andre Przywara06ea44e2022-11-17 17:30:43 +0000530static inline unsigned int read_feat_trf_id_field(void)
531{
532 return ISOLATE_FIELD(read_id_aa64dfr0_el1(), ID_AA64DFR0_TRACEFILT);
533}
534
535static inline bool is_feat_trf_supported(void)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000536{
Andre Przywara06ea44e2022-11-17 17:30:43 +0000537 if (ENABLE_TRF_FOR_NS == FEAT_STATE_DISABLED) {
538 return false;
539 }
540
541 if (ENABLE_TRF_FOR_NS == FEAT_STATE_ALWAYS) {
542 return true;
543 }
544
545 return read_feat_trf_id_field() != 0U;
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000546}
547
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000548/********************************************************************************
549 * Function to identify the presence of FEAT_NV2 (Enhanced Nested Virtualization
550 * Support)
551 *******************************************************************************/
Andre Przywaraedc449d2023-01-27 14:09:20 +0000552static inline unsigned int read_feat_nv_id_field(void)
553{
554 return ISOLATE_FIELD(read_id_aa64mmfr2_el1(), ID_AA64MMFR2_EL1_NV);
555}
556
557static inline bool is_feat_nv2_supported(void)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000558{
Andre Przywaraedc449d2023-01-27 14:09:20 +0000559 if (CTX_INCLUDE_NEVE_REGS == FEAT_STATE_DISABLED) {
560 return false;
561 }
562
563 if (CTX_INCLUDE_NEVE_REGS == FEAT_STATE_ALWAYS) {
564 return true;
565 }
566
567 return read_feat_nv_id_field() >= ID_AA64MMFR2_EL1_NV2_SUPPORTED;
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000568}
569
Jayanth Dodderi Chidanand69316752022-05-09 12:33:03 +0100570/*******************************************************************************
571 * Function to identify the presence of FEAT_BRBE (Branch Record Buffer
572 * Extension)
573 ******************************************************************************/
Andre Przywarac97c5512022-11-17 16:42:09 +0000574static inline unsigned int read_feat_brbe_id_field(void)
575{
576 return ISOLATE_FIELD(read_id_aa64dfr0_el1(), ID_AA64DFR0_BRBE);
577}
578
579static inline bool is_feat_brbe_supported(void)
Jayanth Dodderi Chidanand69316752022-05-09 12:33:03 +0100580{
Andre Przywarac97c5512022-11-17 16:42:09 +0000581 if (ENABLE_BRBE_FOR_NS == FEAT_STATE_DISABLED) {
582 return false;
583 }
584
585 if (ENABLE_BRBE_FOR_NS == FEAT_STATE_ALWAYS) {
586 return true;
587 }
588
589 return read_feat_brbe_id_field() != 0U;
Jayanth Dodderi Chidanand69316752022-05-09 12:33:03 +0100590}
591
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +0100592/*******************************************************************************
593 * Function to identify the presence of FEAT_TRBE (Trace Buffer Extension)
594 ******************************************************************************/
Andre Przywara191eff62022-11-17 16:42:09 +0000595static inline unsigned int read_feat_trbe_id_field(void)
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +0100596{
Andre Przywara191eff62022-11-17 16:42:09 +0000597 return ISOLATE_FIELD(read_id_aa64dfr0_el1(), ID_AA64DFR0_TRACEBUFFER);
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +0100598}
Jayanth Dodderi Chidanand69316752022-05-09 12:33:03 +0100599
Andre Przywara191eff62022-11-17 16:42:09 +0000600static inline bool is_feat_trbe_supported(void)
601{
602 if (ENABLE_TRBE_FOR_NS == FEAT_STATE_DISABLED) {
603 return false;
604 }
605
606 if (ENABLE_TRBE_FOR_NS == FEAT_STATE_ALWAYS) {
607 return true;
608 }
609
610 return read_feat_trbe_id_field() != 0U;
611
612}
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000613/*******************************************************************************
614 * Function to identify the presence of FEAT_SMEx (Scalar Matrix Extension)
615 ******************************************************************************/
616static inline unsigned int read_feat_sme_fa64_id_field(void)
617{
618 return ISOLATE_FIELD(read_id_aa64smfr0_el1(), ID_AA64SMFR0_EL1_SME_FA64);
619}
620
621static inline unsigned int read_feat_sme_id_field(void)
622{
623 return ISOLATE_FIELD(read_id_aa64pfr1_el1(), ID_AA64PFR1_EL1_SME);
624}
625
626static inline bool is_feat_sme_supported(void)
627{
628 if (ENABLE_SME_FOR_NS == FEAT_STATE_DISABLED) {
629 return false;
630 }
631
632 if (ENABLE_SME_FOR_NS == FEAT_STATE_ALWAYS) {
633 return true;
634 }
635
636 return read_feat_sme_id_field() >= ID_AA64PFR1_EL1_SME_SUPPORTED;
637}
638
Antonio Nino Diazc326c342019-01-11 11:20:10 +0000639#endif /* ARCH_FEATURES_H */