summaryrefslogtreecommitdiff
path: root/src/arch/arm/ArmSystem.py
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2016-05-31 12:14:40 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2016-05-31 12:14:40 +0100
commitc661cc75eca97989d72c513550b7a63e995a3982 (patch)
tree7529a4312605adf8717c4e05535bcc3283ada588 /src/arch/arm/ArmSystem.py
parent9d4a42e8c5fd2409922250f63a788a38bdfc2c46 (diff)
downloadgem5-c661cc75eca97989d72c513550b7a63e995a3982.tar.xz
arm: Enable LPAE support by default
LPAE has been tested with Linux 4.4 and seems to work just fine. Let's enable it by default. Change-Id: Id88c6e3c91ae9c353279d42f2aa1f8a78485bd32 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Gabor Dozsa <gabor.dozsa@arm.com>
Diffstat (limited to 'src/arch/arm/ArmSystem.py')
-rw-r--r--src/arch/arm/ArmSystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/ArmSystem.py b/src/arch/arm/ArmSystem.py
index 9bb939c5e..adbf2093e 100644
--- a/src/arch/arm/ArmSystem.py
+++ b/src/arch/arm/ArmSystem.py
@@ -63,7 +63,7 @@ class ArmSystem(System):
"True if Security Extensions are implemented")
have_virtualization = Param.Bool(False,
"True if Virtualization Extensions are implemented")
- have_lpae = Param.Bool(False, "True if LPAE is implemented")
+ have_lpae = Param.Bool(True, "True if LPAE is implemented")
highest_el_is_64 = Param.Bool(False,
"True if the register width of the highest implemented exception level "
"is 64 bits (ARMv8)")