From 79a3091605e2188e5f50c522ce48ab6847cee344 Mon Sep 17 00:00:00 2001 From: Giacomo Travaglini Date: Tue, 6 Oct 2020 22:29:45 +0100 Subject: [PATCH] arch-arm: Default ArmSystem to AArch64 Change-Id: I4dad29086c0b3e50bd2011363cb23625811b4b27 Signed-off-by: Giacomo Travaglini Reviewed-by: Andreas Sandberg Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/35775 Maintainer: Andreas Sandberg Tested-by: kokoro --- src/arch/arm/ArmSystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/arm/ArmSystem.py b/src/arch/arm/ArmSystem.py index 0ca782fda..13f0c2dd2 100644 --- a/src/arch/arm/ArmSystem.py +++ b/src/arch/arm/ArmSystem.py @@ -60,7 +60,7 @@ class ArmSystem(System): "Reset address (ARMv8)") auto_reset_addr = Param.Bool(True, "Determine reset address from kernel entry point if no boot loader") - highest_el_is_64 = Param.Bool(False, + highest_el_is_64 = Param.Bool(True, "True if the register width of the highest implemented exception level " "is 64 bits (ARMv8)") phys_addr_range_64 = Param.UInt8(40, -- 2.30.2