ruby_mem_test.py revision 9120:48eeef8a0997
16166Ssteve.reinhardt@amd.com# Copyright (c) 2006-2007 The Regents of The University of Michigan
26166Ssteve.reinhardt@amd.com# Copyright (c) 2009 Advanced Micro Devices, Inc.
36166Ssteve.reinhardt@amd.com# All rights reserved.
46166Ssteve.reinhardt@amd.com#
56166Ssteve.reinhardt@amd.com# Redistribution and use in source and binary forms, with or without
66166Ssteve.reinhardt@amd.com# modification, are permitted provided that the following conditions are
76166Ssteve.reinhardt@amd.com# met: redistributions of source code must retain the above copyright
86166Ssteve.reinhardt@amd.com# notice, this list of conditions and the following disclaimer;
96166Ssteve.reinhardt@amd.com# redistributions in binary form must reproduce the above copyright
106166Ssteve.reinhardt@amd.com# notice, this list of conditions and the following disclaimer in the
116166Ssteve.reinhardt@amd.com# documentation and/or other materials provided with the distribution;
126166Ssteve.reinhardt@amd.com# neither the name of the copyright holders nor the names of its
136166Ssteve.reinhardt@amd.com# contributors may be used to endorse or promote products derived from
146166Ssteve.reinhardt@amd.com# this software without specific prior written permission.
156166Ssteve.reinhardt@amd.com#
166166Ssteve.reinhardt@amd.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176166Ssteve.reinhardt@amd.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186166Ssteve.reinhardt@amd.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196166Ssteve.reinhardt@amd.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206166Ssteve.reinhardt@amd.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216166Ssteve.reinhardt@amd.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226166Ssteve.reinhardt@amd.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236166Ssteve.reinhardt@amd.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246166Ssteve.reinhardt@amd.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256166Ssteve.reinhardt@amd.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266166Ssteve.reinhardt@amd.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276166Ssteve.reinhardt@amd.com#
286166Ssteve.reinhardt@amd.com# Authors: Ron Dreslinski
296166Ssteve.reinhardt@amd.com#          Brad Beckmann
306166Ssteve.reinhardt@amd.com
316654Snate@binkert.orgimport m5
326166Ssteve.reinhardt@amd.comfrom m5.objects import *
336166Ssteve.reinhardt@amd.comfrom m5.defines import buildEnv
346289Snate@binkert.orgfrom m5.util import addToPath
356870Sdrh5@cs.wisc.eduimport os, optparse, sys
366289Snate@binkert.orgaddToPath('../common')
376166Ssteve.reinhardt@amd.comaddToPath('../ruby')
386166Ssteve.reinhardt@amd.comaddToPath('../topologies')
396166Ssteve.reinhardt@amd.com
406166Ssteve.reinhardt@amd.comimport Options
416289Snate@binkert.orgimport Ruby
426166Ssteve.reinhardt@amd.com
436166Ssteve.reinhardt@amd.com# Get paths we might need.  It's expected this file is in m5/configs/example.
446166Ssteve.reinhardt@amd.comconfig_path = os.path.dirname(os.path.abspath(__file__))
456166Ssteve.reinhardt@amd.comconfig_root = os.path.dirname(config_path)
466166Ssteve.reinhardt@amd.comm5_root = os.path.dirname(config_root)
47
48parser = optparse.OptionParser()
49Options.addCommonOptions(parser)
50
51parser.add_option("-l", "--maxloads", metavar="N", default=0,
52                  help="Stop after N loads")
53parser.add_option("--progress", type="int", default=1000,
54                  metavar="NLOADS",
55                  help="Progress message interval "
56                  "[default: %default]")
57parser.add_option("--num-dmas", type="int", default=0, help="# of dma testers")
58parser.add_option("--functional", type="int", default=0,
59                  help="percentage of accesses that should be functional")
60parser.add_option("--suppress-func-warnings", action="store_true",
61                  help="suppress warnings when functional accesses fail")
62
63#
64# Add the ruby specific and protocol specific options
65#
66Ruby.define_options(parser)
67
68execfile(os.path.join(config_root, "common", "Options.py"))
69
70(options, args) = parser.parse_args()
71
72#
73# Set the default cache size and associativity to be very small to encourage
74# races between requests and writebacks.
75#
76options.l1d_size="256B"
77options.l1i_size="256B"
78options.l2_size="512B"
79options.l3_size="1kB"
80options.l1d_assoc=2
81options.l1i_assoc=2
82options.l2_assoc=2
83options.l3_assoc=2
84
85if args:
86     print "Error: script doesn't take any positional arguments"
87     sys.exit(1)
88
89block_size = 64
90
91if options.num_cpus > block_size:
92     print "Error: Number of testers %d limited to %d because of false sharing" \
93           % (options.num_cpus, block_size)
94     sys.exit(1)
95
96#
97# Currently ruby does not support atomic or uncacheable accesses
98#
99cpus = [ MemTest(atomic = False,
100                 max_loads = options.maxloads,
101                 issue_dmas = False,
102                 percent_functional = options.functional,
103                 percent_uncacheable = 0,
104                 progress_interval = options.progress,
105                 suppress_func_warnings = options.suppress_func_warnings) \
106         for i in xrange(options.num_cpus) ]
107
108system = System(cpu = cpus,
109                funcmem = SimpleMemory(in_addr_map = False),
110                funcbus = NoncoherentBus(),
111                physmem = SimpleMemory())
112
113if options.num_dmas > 0:
114    dmas = [ MemTest(atomic = False,
115                     max_loads = options.maxloads,
116                     issue_dmas = True,
117                     percent_functional = 0,
118                     percent_uncacheable = 0,
119                     progress_interval = options.progress,
120                     suppress_func_warnings =
121                                        not options.suppress_func_warnings) \
122             for i in xrange(options.num_dmas) ]
123    system.dma_devices = dmas
124else:
125    dmas = []
126
127dma_ports = []
128for (i, dma) in enumerate(dmas):
129    dma_ports.append(dma.test)
130Ruby.create_system(options, system, dma_ports = dma_ports)
131
132#
133# The tester is most effective when randomization is turned on and
134# artifical delay is randomly inserted on messages
135#
136system.ruby.randomization = True
137
138assert(len(cpus) == len(system.ruby._cpu_ruby_ports))
139
140for (i, cpu) in enumerate(cpus):
141    #
142    # Tie the cpu memtester ports to the correct system ports
143    #
144    cpu.test = system.ruby._cpu_ruby_ports[i].slave
145    cpu.functional = system.funcbus.slave
146
147    #
148    # Since the memtester is incredibly bursty, increase the deadlock
149    # threshold to 5 million cycles
150    #
151    system.ruby._cpu_ruby_ports[i].deadlock_threshold = 5000000
152
153    #
154    # Ruby doesn't need the backing image of memory when running with
155    # the tester.
156    #
157    system.ruby._cpu_ruby_ports[i].access_phys_mem = False
158
159for (i, dma) in enumerate(dmas):
160    #
161    # Tie the dma memtester ports to the correct functional port
162    # Note that the test port has already been connected to the dma_sequencer
163    #
164    dma.functional = system.funcbus.slave
165
166# connect reference memory to funcbus
167system.funcbus.master = system.funcmem.port
168
169# -----------------------
170# run simulation
171# -----------------------
172
173root = Root( full_system = False, system = system )
174root.system.mem_mode = 'timing'
175
176# Not much point in this being higher than the L1 latency
177m5.ticks.setGlobalFrequency('1ns')
178
179# instantiate configuration
180m5.instantiate()
181
182# simulate until program terminates
183exit_event = m5.simulate(options.maxtick)
184
185print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()
186