arch-arm: Add missing Armv8.1 extensions to the enum

Change-Id: I90c7eb2b22d317f5a60b020c731948681e9f91a1
Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/51014
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
Giacomo Travaglini
2021-09-22 17:56:28 +01:00
parent 24dfe8a41c
commit e77ebef6b6
3 changed files with 30 additions and 2 deletions

View File

@@ -49,6 +49,9 @@ class ArmExtension(ScopedEnum):
'FEAT_VHE',
'FEAT_PAN',
'FEAT_LSE',
'FEAT_HPDS',
'FEAT_VMID16',
'FEAT_RDM',
# Armv8.2
'FEAT_SVE',
@@ -97,7 +100,8 @@ class Armv8(ArmRelease):
class ArmDefaultRelease(Armv8):
extensions = Armv8.extensions + [
'FEAT_SVE', 'FEAT_LSE', 'FEAT_PAN', 'FEAT_SEL2'
'FEAT_SVE', 'FEAT_LSE', 'FEAT_PAN',
'FEAT_HPDS', 'FEAT_VMID16', 'FEAT_RDM', 'FEAT_SEL2'
]
class ArmSystem(System):