test: Use SimpleMemory for atomic full-system tests
authorAndreas Hansson <andreas.hansson@arm.com>
Fri, 1 Nov 2013 15:56:14 +0000 (11:56 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Fri, 1 Nov 2013 15:56:14 +0000 (11:56 -0400)
Keep it simple and use the SimpleMemory rather than the DRAM
controller model for atomic full-system tests.

tests/configs/pc-simple-atomic.py
tests/configs/realview-simple-atomic-dual.py
tests/configs/realview-simple-atomic.py
tests/configs/realview-switcheroo-atomic.py
tests/configs/tsunami-simple-atomic-dual.py
tests/configs/tsunami-simple-atomic.py

index 94a06ed6f2f48c7dedc955c3fc22818136289ea7..dba38215216abbf79aa3e8da1182359b03dc9290 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from x86_generic import *
 
 root = LinuxX86FSSystemUniprocessor(mem_mode='atomic',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=SimpleMemory,
                                     cpu_class=AtomicSimpleCPU).create_root()
index 0d6b11cf6ce8ac9ad228e101309cd959d4db251c..32d66f6afa03664cfe67e9f88107b7075bf11917 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from arm_generic import *
 
 root = LinuxArmFSSystem(mem_mode='atomic',
-                        mem_class=DDR3_1600_x64,
+                        mem_class=SimpleMemory,
                         cpu_class=AtomicSimpleCPU,
                         num_cpus=2).create_root()
index a440de29129fe2a3db88702310d3be2d4c338f7a..b51954879c641d6319250c2b25af9392129d74ab 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from arm_generic import *
 
 root = LinuxArmFSSystemUniprocessor(mem_mode='atomic',
-                                    mem_class=DDR3_1600_x64,
+                                    mem_class=SimpleMemory,
                                     cpu_class=AtomicSimpleCPU).create_root()
 
index bab11ebe64260bfd3a6aab7a4fe4448a37d64000..abcfb5179df43e9a9ddf92a5902c8613475e42a1 100644 (file)
@@ -40,7 +40,7 @@ from arm_generic import *
 import switcheroo
 
 root = LinuxArmFSSwitcheroo(
-    mem_class=DDR3_1600_x64,
+    mem_class=SimpleMemory,
     cpu_classes=(AtomicSimpleCPU, AtomicSimpleCPU)
     ).create_root()
 
index 9f827d9d9ca9e12888dae6b54b23556d9d7cb258..f54015cd36ca07d26dce9c4b12d4aa85333d9d88 100644 (file)
@@ -39,6 +39,6 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystem(mem_mode='atomic',
-                          mem_class=DDR3_1600_x64,
+                          mem_class=SimpleMemory,
                           cpu_class=AtomicSimpleCPU,
                           num_cpus=2).create_root()
index 8c486204c9be7ae6c1f5c73563dc6694f12cc369..0cc19e0924dc6b24a99ae7b73bf9105cae54c1ae 100644 (file)
@@ -39,5 +39,5 @@ from m5.objects import *
 from alpha_generic import *
 
 root = LinuxAlphaFSSystemUniprocessor(mem_mode='atomic',
-                                      mem_class=DDR3_1600_x64,
+                                      mem_class=SimpleMemory,
                                       cpu_class=AtomicSimpleCPU).create_root()