blob: b799697fbeee7c3625ce92a311895ba0e6486ec0 [file] [log] [blame]
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001#
2# Copyright (c) 2022, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# This file lists all the checks related to the Architectural Feature
8# Enablement flags, based on the Architectural version.
9
10# Enable the features which are mandatory from ARCH version 8.1 and upwards.
11ifeq "8.1" "$(word 1, $(sort 8.1 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
12ENABLE_FEAT_PAN = 1
13ENABLE_FEAT_VHE = 1
14endif
15
Manish Pandeyd419e222023-02-13 12:39:17 +000016# Enable the features which are mandatory from ARCH version 8.2 and upwards.
17ifeq "8.2" "$(word 1, $(sort 8.2 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
18ENABLE_FEAT_RAS = 1
19endif
20
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +000021# Enable the features which are mandatory from ARCH version 8.4 and upwards.
22ifeq "8.4" "$(word 1, $(sort 8.4 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
23ENABLE_FEAT_DIT = 1
24ENABLE_FEAT_SEL2 = 1
25endif
26
27# Enable the features which are mandatory from ARCH version 8.5 and upwards.
28ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
29ENABLE_FEAT_SB = 1
30endif
31
32# Enable the features which are mandatory from ARCH version 8.6 and upwards.
33ifeq "8.6" "$(word 1, $(sort 8.6 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
34ENABLE_FEAT_FGT = 1
35ENABLE_FEAT_ECV = 1
36endif
37
38# Enable the features which are mandatory from ARCH version 8.7 and upwards.
39ifeq "8.7" "$(word 1, $(sort 8.7 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
40ENABLE_FEAT_HCX = 1
41endif