summaryrefslogtreecommitdiff
path: root/configs/example
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2007-10-08 15:19:58 -0400
committerAli Saidi <saidi@eecs.umich.edu>2007-10-08 15:19:58 -0400
commita630d77ec5cb208db5fe581f11ca2f7a01b3d7ce (patch)
treebde6b7613b95395bf3c7db4510ed535b8b068c42 /configs/example
parent8858b0b667a7982604070b3f4a73fcdc76513b76 (diff)
downloadgem5-a630d77ec5cb208db5fe581f11ca2f7a01b3d7ce.tar.xz
Configuration: Move iocache outside of processors loop so it works for MP systems
--HG-- extra : convert_revision : 0ba563555a94eb22a6d4e402388e75e70d3556c2
Diffstat (limited to 'configs/example')
-rw-r--r--configs/example/fs.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py
index ea525bf41..74ee875a3 100644
--- a/configs/example/fs.py
+++ b/configs/example/fs.py
@@ -119,16 +119,19 @@ if options.l2cache:
test_sys.l2.mem_side = test_sys.membus.port
test_sys.cpu = [TestCPUClass(cpu_id=i) for i in xrange(np)]
+
+if options.caches:
+ test_sys.bridge.filter_ranges_a=[AddrRange(0, Addr.max)]
+ test_sys.bridge.filter_ranges_b=[AddrRange(0, size='8GB')]
+ test_sys.iocache = IOCache(mem_side_filter_ranges=[AddrRange(0, Addr.max)],
+ cpu_side_filter_ranges=[AddrRange(0x8000000000, Addr.max)])
+ test_sys.iocache.cpu_side = test_sys.iobus.port
+ test_sys.iocache.mem_side = test_sys.membus.port
+
for i in xrange(np):
if options.caches:
test_sys.cpu[i].addPrivateSplitL1Caches(L1Cache(size = '32kB'),
L1Cache(size = '64kB'))
- test_sys.bridge.filter_ranges_a=[AddrRange(0, Addr.max)]
- test_sys.bridge.filter_ranges_b=[AddrRange(0, size='8GB')]
- test_sys.iocache = IOCache(mem_side_filter_ranges=[AddrRange(0, Addr.max)],
- cpu_side_filter_ranges=[AddrRange(0x8000000000, Addr.max)])
- test_sys.iocache.cpu_side = test_sys.iobus.port
- test_sys.iocache.mem_side = test_sys.membus.port
if options.l2cache:
test_sys.cpu[i].connectMemPorts(test_sys.tol2bus)
else: