config: ruby: rename _cpu_ruby_ports to _cpu_ports

This commit is contained in:
Nilay Vaish 2014-03-20 09:14:14 -05:00
parent f2059f8399
commit b5cc4c7604
12 changed files with 37 additions and 37 deletions

View file

@ -149,18 +149,18 @@ def build_test_system(np):
cpu.createThreads() cpu.createThreads()
cpu.createInterruptController() cpu.createInterruptController()
cpu.icache_port = test_sys.ruby._cpu_ruby_ports[i].slave cpu.icache_port = test_sys.ruby._cpu_ports[i].slave
cpu.dcache_port = test_sys.ruby._cpu_ruby_ports[i].slave cpu.dcache_port = test_sys.ruby._cpu_ports[i].slave
if buildEnv['TARGET_ISA'] == "x86": if buildEnv['TARGET_ISA'] == "x86":
cpu.itb.walker.port = test_sys.ruby._cpu_ruby_ports[i].slave cpu.itb.walker.port = test_sys.ruby._cpu_ports[i].slave
cpu.dtb.walker.port = test_sys.ruby._cpu_ruby_ports[i].slave cpu.dtb.walker.port = test_sys.ruby._cpu_ports[i].slave
cpu.interrupts.pio = test_sys.ruby._cpu_ruby_ports[i].master cpu.interrupts.pio = test_sys.ruby._cpu_ports[i].master
cpu.interrupts.int_master = test_sys.ruby._cpu_ruby_ports[i].slave cpu.interrupts.int_master = test_sys.ruby._cpu_ports[i].slave
cpu.interrupts.int_slave = test_sys.ruby._cpu_ruby_ports[i].master cpu.interrupts.int_slave = test_sys.ruby._cpu_ports[i].master
test_sys.ruby._cpu_ruby_ports[i].access_phys_mem = True test_sys.ruby._cpu_ports[i].access_phys_mem = True
# Create the appropriate memory controllers # Create the appropriate memory controllers
# and connect them to the IO bus # and connect them to the IO bus

View file

@ -115,9 +115,9 @@ Ruby.create_system(options, system)
system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock, system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
voltage_domain = system.voltage_domain) voltage_domain = system.voltage_domain)
assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) assert(options.num_cpus == len(system.ruby._cpu_ports))
for ruby_port in system.ruby._cpu_ruby_ports: for ruby_port in system.ruby._cpu_ports:
# #
# Tie the ruby tester ports to the ruby cpu ports # Tie the ruby tester ports to the ruby cpu ports
# #

View file

@ -144,26 +144,26 @@ system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
# #
system.ruby.randomization = True system.ruby.randomization = True
assert(len(cpus) == len(system.ruby._cpu_ruby_ports)) assert(len(cpus) == len(system.ruby._cpu_ports))
for (i, cpu) in enumerate(cpus): for (i, cpu) in enumerate(cpus):
# #
# Tie the cpu memtester ports to the correct system ports # Tie the cpu memtester ports to the correct system ports
# #
cpu.test = system.ruby._cpu_ruby_ports[i].slave cpu.test = system.ruby._cpu_ports[i].slave
cpu.functional = system.funcbus.slave cpu.functional = system.funcbus.slave
# #
# Since the memtester is incredibly bursty, increase the deadlock # Since the memtester is incredibly bursty, increase the deadlock
# threshold to 5 million cycles # threshold to 5 million cycles
# #
system.ruby._cpu_ruby_ports[i].deadlock_threshold = 5000000 system.ruby._cpu_ports[i].deadlock_threshold = 5000000
# #
# Ruby doesn't need the backing image of memory when running with # Ruby doesn't need the backing image of memory when running with
# the tester. # the tester.
# #
system.ruby._cpu_ruby_ports[i].access_phys_mem = False system.ruby._cpu_ports[i].access_phys_mem = False
for (i, dma) in enumerate(dmas): for (i, dma) in enumerate(dmas):
# #

View file

@ -120,7 +120,7 @@ system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
voltage_domain = system.voltage_domain) voltage_domain = system.voltage_domain)
i = 0 i = 0
for ruby_port in system.ruby._cpu_ruby_ports: for ruby_port in system.ruby._cpu_ports:
# #
# Tie the cpu test ports to the ruby cpu port # Tie the cpu test ports to the ruby cpu port
# #

View file

@ -112,9 +112,9 @@ Ruby.create_system(options, system)
system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock, system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
voltage_domain = system.voltage_domain) voltage_domain = system.voltage_domain)
assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) assert(options.num_cpus == len(system.ruby._cpu_ports))
tester.num_cpus = len(system.ruby._cpu_ruby_ports) tester.num_cpus = len(system.ruby._cpu_ports)
# #
# The tester is most effective when randomization is turned on and # The tester is most effective when randomization is turned on and
@ -122,7 +122,7 @@ tester.num_cpus = len(system.ruby._cpu_ruby_ports)
# #
system.ruby.randomization = True system.ruby.randomization = True
for ruby_port in system.ruby._cpu_ruby_ports: for ruby_port in system.ruby._cpu_ports:
# #
# Tie the ruby tester ports to the ruby cpu read and write ports # Tie the ruby tester ports to the ruby cpu read and write ports
# #

View file

@ -233,10 +233,10 @@ if options.ruby:
null = True) null = True)
options.use_map = True options.use_map = True
Ruby.create_system(options, system) Ruby.create_system(options, system)
assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) assert(options.num_cpus == len(system.ruby._cpu_ports))
for i in xrange(np): for i in xrange(np):
ruby_port = system.ruby._cpu_ruby_ports[i] ruby_port = system.ruby._cpu_ports[i]
# Create the interrupt controller and connect its ports to Ruby # Create the interrupt controller and connect its ports to Ruby
# Note that the interrupt controller is always present but only # Note that the interrupt controller is always present but only

View file

@ -200,6 +200,6 @@ def create_system(options, system, piobus = None, dma_ports = []):
if buildEnv['TARGET_ISA'] == "x86": if buildEnv['TARGET_ISA'] == "x86":
cpu_seq.pio_slave_port = piobus.master cpu_seq.pio_slave_port = piobus.master
ruby._cpu_ruby_ports = cpu_sequencers ruby._cpu_ports = cpu_sequencers
ruby.num_of_sequencers = len(cpu_sequencers) ruby.num_of_sequencers = len(cpu_sequencers)
ruby.random_seed = options.random_seed ruby.random_seed = options.random_seed

View file

@ -104,9 +104,9 @@ Ruby.create_system(options, system)
system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock, system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
voltage_domain = system.voltage_domain) voltage_domain = system.voltage_domain)
assert(len(cpus) == len(system.ruby._cpu_ruby_ports)) assert(len(cpus) == len(system.ruby._cpu_ports))
for (i, ruby_port) in enumerate(system.ruby._cpu_ruby_ports): for (i, ruby_port) in enumerate(system.ruby._cpu_ports):
# #
# Tie the cpu test and functional ports to the ruby cpu ports and # Tie the cpu test and functional ports to the ruby cpu ports and
# physmem, respectively # physmem, respectively

View file

@ -78,16 +78,16 @@ for (i, cpu) in enumerate(system.cpu):
# create the interrupt controller # create the interrupt controller
cpu.createInterruptController() cpu.createInterruptController()
# Tie the cpu ports to the correct ruby system ports # Tie the cpu ports to the correct ruby system ports
cpu.icache_port = system.ruby._cpu_ruby_ports[i].slave cpu.icache_port = system.ruby._cpu_ports[i].slave
cpu.dcache_port = system.ruby._cpu_ruby_ports[i].slave cpu.dcache_port = system.ruby._cpu_ports[i].slave
cpu.itb.walker.port = system.ruby._cpu_ruby_ports[i].slave cpu.itb.walker.port = system.ruby._cpu_ports[i].slave
cpu.dtb.walker.port = system.ruby._cpu_ruby_ports[i].slave cpu.dtb.walker.port = system.ruby._cpu_ports[i].slave
cpu.interrupts.pio = system.ruby._cpu_ruby_ports[i].master cpu.interrupts.pio = system.ruby._cpu_ports[i].master
cpu.interrupts.int_master = system.ruby._cpu_ruby_ports[i].slave cpu.interrupts.int_master = system.ruby._cpu_ports[i].slave
cpu.interrupts.int_slave = system.ruby._cpu_ruby_ports[i].master cpu.interrupts.int_slave = system.ruby._cpu_ports[i].master
# Set access_phys_mem to True for ruby port # Set access_phys_mem to True for ruby port
system.ruby._cpu_ruby_ports[i].access_phys_mem = True system.ruby._cpu_ports[i].access_phys_mem = True
system.physmem = [DDR3_1600_x64(range = r) system.physmem = [DDR3_1600_x64(range = r)
for r in system.mem_ranges] for r in system.mem_ranges]

View file

@ -92,7 +92,7 @@ Ruby.create_system(options, system)
system.ruby.clk_domain = SrcClockDomain(clock = '1GHz', system.ruby.clk_domain = SrcClockDomain(clock = '1GHz',
voltage_domain = system.voltage_domain) voltage_domain = system.voltage_domain)
assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) assert(options.num_cpus == len(system.ruby._cpu_ports))
# #
# The tester is most effective when randomization is turned on and # The tester is most effective when randomization is turned on and
@ -100,7 +100,7 @@ assert(options.num_cpus == len(system.ruby._cpu_ruby_ports))
# #
system.ruby.randomization = True system.ruby.randomization = True
for ruby_port in system.ruby._cpu_ruby_ports: for ruby_port in system.ruby._cpu_ports:
# #
# Tie the ruby tester ports to the ruby cpu read and write ports # Tie the ruby tester ports to the ruby cpu read and write ports
# #

View file

@ -83,7 +83,7 @@ Ruby.create_system(options, system)
# Create a separate clock domain for Ruby # Create a separate clock domain for Ruby
system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock) system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock)
assert(options.num_cpus == len(system.ruby._cpu_ruby_ports)) assert(options.num_cpus == len(system.ruby._cpu_ports))
for (i, cpu) in enumerate(system.cpu): for (i, cpu) in enumerate(system.cpu):
# create the interrupt controller # create the interrupt controller
@ -92,7 +92,7 @@ for (i, cpu) in enumerate(system.cpu):
# #
# Tie the cpu ports to the ruby cpu ports # Tie the cpu ports to the ruby cpu ports
# #
cpu.connectAllPorts(system.ruby._cpu_ruby_ports[i]) cpu.connectAllPorts(system.ruby._cpu_ports[i])
# ----------------------- # -----------------------
# run simulation # run simulation

View file

@ -85,7 +85,7 @@ Ruby.create_system(options, system)
system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock, system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
voltage_domain = system.voltage_domain) voltage_domain = system.voltage_domain)
assert(len(system.ruby._cpu_ruby_ports) == 1) assert(len(system.ruby._cpu_ports) == 1)
# create the interrupt controller # create the interrupt controller
cpu.createInterruptController() cpu.createInterruptController()
@ -94,7 +94,7 @@ cpu.createInterruptController()
# Tie the cpu cache ports to the ruby cpu ports and # Tie the cpu cache ports to the ruby cpu ports and
# physmem, respectively # physmem, respectively
# #
cpu.connectAllPorts(system.ruby._cpu_ruby_ports[0]) cpu.connectAllPorts(system.ruby._cpu_ports[0])
# ----------------------- # -----------------------
# run simulation # run simulation