Ruby.py revision 8612
111986Sandreas.sandberg@arm.com# Copyright (c) 2006-2007 The Regents of The University of Michigan
211986Sandreas.sandberg@arm.com# Copyright (c) 2009 Advanced Micro Devices, Inc.
311986Sandreas.sandberg@arm.com# All rights reserved.
411986Sandreas.sandberg@arm.com#
511986Sandreas.sandberg@arm.com# Redistribution and use in source and binary forms, with or without
611986Sandreas.sandberg@arm.com# modification, are permitted provided that the following conditions are
711986Sandreas.sandberg@arm.com# met: redistributions of source code must retain the above copyright
811986Sandreas.sandberg@arm.com# notice, this list of conditions and the following disclaimer;
911986Sandreas.sandberg@arm.com# redistributions in binary form must reproduce the above copyright
1011986Sandreas.sandberg@arm.com# notice, this list of conditions and the following disclaimer in the
1111986Sandreas.sandberg@arm.com# documentation and/or other materials provided with the distribution;
1211986Sandreas.sandberg@arm.com# neither the name of the copyright holders nor the names of its
1311986Sandreas.sandberg@arm.com# contributors may be used to endorse or promote products derived from
1411986Sandreas.sandberg@arm.com# this software without specific prior written permission.
1511986Sandreas.sandberg@arm.com#
1611986Sandreas.sandberg@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1711986Sandreas.sandberg@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1811986Sandreas.sandberg@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1911986Sandreas.sandberg@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2011986Sandreas.sandberg@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2111986Sandreas.sandberg@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2211986Sandreas.sandberg@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2311986Sandreas.sandberg@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2411986Sandreas.sandberg@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2511986Sandreas.sandberg@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2611986Sandreas.sandberg@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2711986Sandreas.sandberg@arm.com#
2811986Sandreas.sandberg@arm.com# Authors: Brad Beckmann
2911986Sandreas.sandberg@arm.com
3011986Sandreas.sandberg@arm.comimport math
3111986Sandreas.sandberg@arm.comimport m5
3211986Sandreas.sandberg@arm.comfrom m5.objects import *
3311986Sandreas.sandberg@arm.comfrom m5.defines import buildEnv
3411986Sandreas.sandberg@arm.com
3511986Sandreas.sandberg@arm.comdef define_options(parser):
3611986Sandreas.sandberg@arm.com    # ruby network options
3711986Sandreas.sandberg@arm.com    parser.add_option("--topology", type="string", default="Crossbar",
3811986Sandreas.sandberg@arm.com                 help="check src/mem/ruby/network/topologies for complete set")
3911986Sandreas.sandberg@arm.com    parser.add_option("--mesh-rows", type="int", default=1,
4011986Sandreas.sandberg@arm.com                      help="the number of rows in the mesh topology")
4111986Sandreas.sandberg@arm.com    parser.add_option("--garnet-network", type="string", default=None,
4211986Sandreas.sandberg@arm.com                      help="'fixed'|'flexible'")
4311986Sandreas.sandberg@arm.com    parser.add_option("--network-fault-model", action="store_true", default=False,
4411986Sandreas.sandberg@arm.com                      help="enable network fault model: see src/mem/ruby/network/fault_model/")
4511986Sandreas.sandberg@arm.com
4611986Sandreas.sandberg@arm.com    # ruby mapping options
4711986Sandreas.sandberg@arm.com    parser.add_option("--numa-high-bit", type="int", default=0,
4811986Sandreas.sandberg@arm.com                      help="high order address bit to use for numa mapping. " \
4911986Sandreas.sandberg@arm.com                           "0 = highest bit, not specified = lowest bit")
5011986Sandreas.sandberg@arm.com
5111986Sandreas.sandberg@arm.com    # ruby sparse memory options
5211986Sandreas.sandberg@arm.com    parser.add_option("--use-map", action="store_true", default=False)
5311986Sandreas.sandberg@arm.com    parser.add_option("--map-levels", type="int", default=4)
5411986Sandreas.sandberg@arm.com
5511986Sandreas.sandberg@arm.com    parser.add_option("--recycle-latency", type="int", default=10,
5611986Sandreas.sandberg@arm.com                      help="Recycle latency for ruby controller input buffers")
5711986Sandreas.sandberg@arm.com
5811986Sandreas.sandberg@arm.com    parser.add_option("--random_seed", type="int", default=1234,
5911986Sandreas.sandberg@arm.com                      help="Used for seeding the random number generator")
6011986Sandreas.sandberg@arm.com
6111986Sandreas.sandberg@arm.com    protocol = buildEnv['PROTOCOL']
6211986Sandreas.sandberg@arm.com    exec "import %s" % protocol
6311986Sandreas.sandberg@arm.com    eval("%s.define_options(parser)" % protocol)
6411986Sandreas.sandberg@arm.com
6511986Sandreas.sandberg@arm.comdef create_system(options, system, piobus = None, dma_devices = []):
6611986Sandreas.sandberg@arm.com
6711986Sandreas.sandberg@arm.com    system.ruby = RubySystem(clock = options.clock)
6811986Sandreas.sandberg@arm.com    ruby = system.ruby
6911986Sandreas.sandberg@arm.com
7011986Sandreas.sandberg@arm.com    protocol = buildEnv['PROTOCOL']
7111986Sandreas.sandberg@arm.com    exec "import %s" % protocol
7211986Sandreas.sandberg@arm.com    try:
7311986Sandreas.sandberg@arm.com        (cpu_sequencers, dir_cntrls, all_cntrls) = \
7411986Sandreas.sandberg@arm.com             eval("%s.create_system(options, system, piobus, \
7511986Sandreas.sandberg@arm.com                                    dma_devices, ruby)" \
7611986Sandreas.sandberg@arm.com                  % protocol)
7711986Sandreas.sandberg@arm.com    except:
7811986Sandreas.sandberg@arm.com        print "Error: could not create sytem for ruby protocol %s" % protocol
7911986Sandreas.sandberg@arm.com        raise
8011986Sandreas.sandberg@arm.com
8111986Sandreas.sandberg@arm.com    #
82    # Set the network classes based on the command line options
83    #
84    if options.garnet_network == "fixed":
85        class NetworkClass(GarnetNetwork_d): pass
86        class IntLinkClass(GarnetIntLink_d): pass
87        class ExtLinkClass(GarnetExtLink_d): pass
88        class RouterClass(GarnetRouter_d): pass
89    elif options.garnet_network == "flexible":
90        class NetworkClass(GarnetNetwork): pass
91        class IntLinkClass(GarnetIntLink): pass
92        class ExtLinkClass(GarnetExtLink): pass
93        class RouterClass(GarnetRouter): pass
94    else:
95        class NetworkClass(SimpleNetwork): pass
96        class IntLinkClass(SimpleIntLink): pass
97        class ExtLinkClass(SimpleExtLink): pass
98        class RouterClass(BasicRouter): pass
99
100    #
101    # Important: the topology must be created before the network and after the
102    # controllers.
103    #
104    exec "import %s" % options.topology
105    try:
106        net_topology = eval("%s.makeTopology(all_cntrls, options, \
107                                             IntLinkClass, ExtLinkClass, \
108                                             RouterClass)" \
109                            % options.topology)
110    except:
111        print "Error: could not create topology %s" % options.topology
112        raise
113
114    if options.network_fault_model:
115        assert(options.garnet_network == "fixed")
116        fault_model = FaultModel()
117        network = NetworkClass(ruby_system = ruby, topology = net_topology,\
118                               enable_fault_model=True, fault_model = fault_model)
119    else:
120        network = NetworkClass(ruby_system = ruby, topology = net_topology)
121
122    #
123    # Loop through the directory controlers.
124    # Determine the total memory size of the ruby system and verify it is equal
125    # to physmem.  However, if Ruby memory is using sparse memory in SE
126    # mode, then the system should not back-up the memory state with
127    # the Memory Vector and thus the memory size bytes should stay at 0.
128    # Also set the numa bits to the appropriate values.
129    #
130    total_mem_size = MemorySize('0B')
131
132    dir_bits = int(math.log(options.num_dirs, 2))
133
134    if options.numa_high_bit:
135        numa_bit = options.numa_high_bit
136    else:
137        # if not specified, use the lowest bits above the block offest
138        if dir_bits > 0:
139            # add 5 because bits 0-5 are the block offset
140            numa_bit = dir_bits + 5
141        else:
142            numa_bit = 6
143
144    for dir_cntrl in dir_cntrls:
145        total_mem_size.value += dir_cntrl.directory.size.value
146        dir_cntrl.directory.numa_high_bit = numa_bit
147
148    physmem_size = long(system.physmem.range.second) - \
149                     long(system.physmem.range.first) + 1
150    assert(total_mem_size.value == physmem_size)
151
152    ruby_profiler = RubyProfiler(ruby_system = ruby,
153                                 num_of_sequencers = len(cpu_sequencers))
154    ruby_tracer   = RubyTracer(ruby_system = ruby)
155
156    ruby.network = network
157    ruby.profiler = ruby_profiler
158    ruby.tracer = ruby_tracer
159    ruby.mem_size = total_mem_size
160    ruby._cpu_ruby_ports = cpu_sequencers
161    ruby.random_seed    = options.random_seed
162