summaryrefslogtreecommitdiff
path: root/src/arch/arm/system.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/system.hh')
-rw-r--r--src/arch/arm/system.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/arm/system.hh b/src/arch/arm/system.hh
index e7696a4fd..2e236f722 100644
--- a/src/arch/arm/system.hh
+++ b/src/arch/arm/system.hh
@@ -89,6 +89,11 @@ class ArmSystem : public System
const bool _haveVirtualization;
/**
+ * True if this system implements the Crypto Extension
+ */
+ const bool _haveCrypto;
+
+ /**
* Pointer to the Generic Timer wrapper.
*/
GenericTimer *_genericTimer;
@@ -177,6 +182,11 @@ class ArmSystem : public System
*/
bool haveVirtualization() const { return _haveVirtualization; }
+ /** Returns true if this system implements the Crypto
+ * Extension
+ */
+ bool haveCrypto() const { return _haveCrypto; }
+
/** Sets the pointer to the Generic Timer. */
void setGenericTimer(GenericTimer *generic_timer)
{