summaryrefslogtreecommitdiff
path: root/tests/configs/arm_generic.py
diff options
context:
space:
mode:
authorAndreas Sandberg <Andreas.Sandberg@ARM.com>2013-01-07 13:05:52 -0500
committerAndreas Sandberg <Andreas.Sandberg@ARM.com>2013-01-07 13:05:52 -0500
commit5fb00e1df6b2b7d9db472d0c25765263ed1b839f (patch)
tree2f94ca554d9f92d1fe737ed98931856e43b52f6a /tests/configs/arm_generic.py
parente09e9fa279dec86b171b5e3efeb7057fa0d21cc9 (diff)
downloadgem5-5fb00e1df6b2b7d9db472d0c25765263ed1b839f.tar.xz
tests: Add CPU switching tests
This changeset adds a set of tests that stress the CPU switching code. It adds the following test configurations: * tsunami-switcheroo-full -- Alpha system (atomic, timing, O3) * realview-switcheroo-atomic -- ARM system (atomic<->atomic) * realview-switcheroo-timing -- ARM system (timing<->timing) * realview-switcheroo-o3 -- ARM system (O3<->O3) * realview-switcheroo-full -- ARM system (atomic, timing, O3) Reference data is provided for the 10.linux-boot test case. All of the tests trigger a CPU switch once per millisecond during the boot process. The in-order CPU model was not included in any of the tests as it does not support CPU handover.
Diffstat (limited to 'tests/configs/arm_generic.py')
-rw-r--r--tests/configs/arm_generic.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/configs/arm_generic.py b/tests/configs/arm_generic.py
index 07251f2d6..95f9b8bd1 100644
--- a/tests/configs/arm_generic.py
+++ b/tests/configs/arm_generic.py
@@ -93,3 +93,11 @@ class LinuxArmFSSystemUniprocessor(LinuxArmSystemBuilder,
def __init__(self, machine_type='RealView_PBX', **kwargs):
BaseFSSystemUniprocessor.__init__(self, **kwargs)
LinuxArmSystemBuilder.__init__(self, machine_type)
+
+
+class LinuxArmFSSwitcheroo(LinuxArmSystemBuilder, BaseFSSwitcheroo):
+ """Uniprocessor ARM system prepared for CPU switching"""
+
+ def __init__(self, machine_type='RealView_PBX', **kwargs):
+ BaseFSSwitcheroo.__init__(self, **kwargs)
+ LinuxArmSystemBuilder.__init__(self, machine_type)