summaryrefslogtreecommitdiff
path: root/configs/example
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2012-02-14 03:41:53 -0500
committerAndreas Hansson <andreas.hansson@arm.com>2012-02-14 03:41:53 -0500
commit00978170f3b42ea83280c1b8f4b1610f5e352394 (patch)
tree347650c916f5625cfc7c8920a3aca6b99f36f0d3 /configs/example
parent0d46708dc20c438d29bd724fb7d4b54d4d2f318a (diff)
downloadgem5-00978170f3b42ea83280c1b8f4b1610f5e352394.tar.xz
MEM: Fix master/slave ports in Ruby and non-regression scripts
This patch brings the Ruby and other scripts up to date with the introduction of the master/slave ports.
Diffstat (limited to 'configs/example')
-rw-r--r--configs/example/fs.py4
-rw-r--r--configs/example/ruby_direct_test.py2
-rw-r--r--configs/example/ruby_fs.py8
-rw-r--r--configs/example/ruby_mem_test.py2
-rw-r--r--configs/example/ruby_network_test.py2
-rw-r--r--configs/example/ruby_random_test.py2
-rw-r--r--configs/example/se.py4
7 files changed, 12 insertions, 12 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py
index 754a0b79b..4c2aeeefe 100644
--- a/configs/example/fs.py
+++ b/configs/example/fs.py
@@ -195,8 +195,8 @@ if len(bm) == 2:
drive_sys.kernel = binary(options.kernel)
drive_sys.iobridge = Bridge(delay='50ns', nack_delay='4ns',
ranges = [AddrRange(bm[1].mem())])
- drive_sys.iobridge.slave = drive_sys.iobus.port
- drive_sys.iobridge.master = drive_sys.membus.port
+ drive_sys.iobridge.slave = drive_sys.iobus.master
+ drive_sys.iobridge.master = drive_sys.membus.slave
drive_sys.init_param = options.init_param
root = makeDualRoot(True, test_sys, drive_sys, options.etherdump)
diff --git a/configs/example/ruby_direct_test.py b/configs/example/ruby_direct_test.py
index 28c7dde55..7f38d5431 100644
--- a/configs/example/ruby_direct_test.py
+++ b/configs/example/ruby_direct_test.py
@@ -102,7 +102,7 @@ for ruby_port in system.ruby._cpu_ruby_ports:
#
# Tie the ruby tester ports to the ruby cpu ports
#
- system.tester.cpuPort = ruby_port.port
+ system.tester.cpuPort = ruby_port.slave
# -----------------------
# run simulation
diff --git a/configs/example/ruby_fs.py b/configs/example/ruby_fs.py
index 04b99034c..869a10ef7 100644
--- a/configs/example/ruby_fs.py
+++ b/configs/example/ruby_fs.py
@@ -125,11 +125,11 @@ for (i, cpu) in enumerate(system.cpu):
#
# Tie the cpu ports to the correct ruby system ports
#
- cpu.icache_port = system.ruby._cpu_ruby_ports[i].port
- cpu.dcache_port = system.ruby._cpu_ruby_ports[i].port
+ cpu.icache_port = system.ruby._cpu_ruby_ports[i].slave
+ cpu.dcache_port = system.ruby._cpu_ruby_ports[i].slave
if buildEnv['TARGET_ISA'] == "x86":
- cpu.itb.walker.port = system.ruby._cpu_ruby_ports[i].port
- cpu.dtb.walker.port = system.ruby._cpu_ruby_ports[i].port
+ cpu.itb.walker.port = system.ruby._cpu_ruby_ports[i].slave
+ cpu.dtb.walker.port = system.ruby._cpu_ruby_ports[i].slave
cpu.interrupts.pio = system.piobus.master
cpu.interrupts.int_master = system.piobus.slave
cpu.interrupts.int_slave = system.piobus.master
diff --git a/configs/example/ruby_mem_test.py b/configs/example/ruby_mem_test.py
index 5b693f3f6..20c25e833 100644
--- a/configs/example/ruby_mem_test.py
+++ b/configs/example/ruby_mem_test.py
@@ -133,7 +133,7 @@ for (i, cpu) in enumerate(cpus):
#
# Tie the cpu memtester ports to the correct system ports
#
- cpu.test = system.ruby._cpu_ruby_ports[i].port
+ cpu.test = system.ruby._cpu_ruby_ports[i].slave
cpu.functional = system.funcmem.port
#
diff --git a/configs/example/ruby_network_test.py b/configs/example/ruby_network_test.py
index 79e6365af..aa93acd2f 100644
--- a/configs/example/ruby_network_test.py
+++ b/configs/example/ruby_network_test.py
@@ -109,7 +109,7 @@ for ruby_port in system.ruby._cpu_ruby_ports:
#
# Tie the cpu test ports to the ruby cpu port
#
- cpus[i].test = ruby_port.port
+ cpus[i].test = ruby_port.slave
ruby_port.access_phys_mem = False
i += 1
diff --git a/configs/example/ruby_random_test.py b/configs/example/ruby_random_test.py
index 4074b08f1..5e6d82372 100644
--- a/configs/example/ruby_random_test.py
+++ b/configs/example/ruby_random_test.py
@@ -110,7 +110,7 @@ for ruby_port in system.ruby._cpu_ruby_ports:
#
# Tie the ruby tester ports to the ruby cpu ports
#
- tester.cpuPort = ruby_port.port
+ tester.cpuPort = ruby_port.slave
#
# Tell each sequencer this is the ruby tester so that it
diff --git a/configs/example/se.py b/configs/example/se.py
index d7b876d46..de98fa002 100644
--- a/configs/example/se.py
+++ b/configs/example/se.py
@@ -190,8 +190,8 @@ for i in xrange(np):
system.cpu[i].workload = multiprocesses[i]
if options.ruby:
- system.cpu[i].icache_port = system.ruby._cpu_ruby_ports[i].port
- system.cpu[i].dcache_port = system.ruby._cpu_ruby_ports[i].port
+ system.cpu[i].icache_port = system.ruby._cpu_ruby_ports[i].slave
+ system.cpu[i].dcache_port = system.ruby._cpu_ruby_ports[i].slave
if options.fastmem:
system.cpu[0].physmem_port = system.physmem.port