memtest.py revision 10750:30efc3828bb4
112855Sgabeblack@google.com# Copyright (c) 2015 ARM Limited
212855Sgabeblack@google.com# All rights reserved.
312855Sgabeblack@google.com#
412855Sgabeblack@google.com# The license below extends only to copyright in the software and shall
512855Sgabeblack@google.com# not be construed as granting a license to any other intellectual
612855Sgabeblack@google.com# property including but not limited to intellectual property relating
712855Sgabeblack@google.com# to a hardware implementation of the functionality of the software
812855Sgabeblack@google.com# licensed hereunder.  You may use the software subject to the license
912855Sgabeblack@google.com# terms below provided that you ensure that this notice is replicated
1012855Sgabeblack@google.com# unmodified and in its entirety in all distributions of the software,
1112855Sgabeblack@google.com# modified or unmodified, in source code or in binary form.
1212855Sgabeblack@google.com#
1312855Sgabeblack@google.com# Copyright (c) 2006-2007 The Regents of The University of Michigan
1412855Sgabeblack@google.com# All rights reserved.
1512855Sgabeblack@google.com#
1612855Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without
1712855Sgabeblack@google.com# modification, are permitted provided that the following conditions are
1812855Sgabeblack@google.com# met: redistributions of source code must retain the above copyright
1912855Sgabeblack@google.com# notice, this list of conditions and the following disclaimer;
2012855Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright
2112855Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the
2212855Sgabeblack@google.com# documentation and/or other materials provided with the distribution;
2312855Sgabeblack@google.com# neither the name of the copyright holders nor the names of its
2412855Sgabeblack@google.com# contributors may be used to endorse or promote products derived from
2512855Sgabeblack@google.com# this software without specific prior written permission.
2612855Sgabeblack@google.com#
2712855Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2812855Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2912855Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
3012855Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
3112855Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3212855Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3312855Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3412855Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3512855Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3612855Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3712855Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3812855Sgabeblack@google.com#
3912855Sgabeblack@google.com# Authors: Ron Dreslinski
4012855Sgabeblack@google.com#          Andreas Hansson
4112855Sgabeblack@google.com
4212855Sgabeblack@google.comimport optparse
4312855Sgabeblack@google.comimport random
4412855Sgabeblack@google.comimport sys
4512855Sgabeblack@google.com
4612855Sgabeblack@google.comimport m5
4712855Sgabeblack@google.comfrom m5.objects import *
4812855Sgabeblack@google.com
4912855Sgabeblack@google.com# This example script stress tests the memory system by creating false
5012855Sgabeblack@google.com# sharing in a tree topology. At the bottom of the tree is a shared
5112855Sgabeblack@google.com# memory, and then at each level a number of testers are attached,
5212855Sgabeblack@google.com# along with a number of caches that them selves fan out to subtrees
5312855Sgabeblack@google.com# of testers and caches. Thus, it is possible to create a system with
5412855Sgabeblack@google.com# arbitrarily deep cache hierarchies, sharing or no sharing of caches,
5512855Sgabeblack@google.com# and testers not only at the L1s, but also at the L2s, L3s etc.
5612855Sgabeblack@google.com
5712855Sgabeblack@google.comparser = optparse.OptionParser()
5812855Sgabeblack@google.com
5912855Sgabeblack@google.comparser.add_option("-a", "--atomic", action="store_true",
6012855Sgabeblack@google.com                  help="Use atomic (non-timing) mode")
6112855Sgabeblack@google.comparser.add_option("-b", "--blocking", action="store_true",
6212855Sgabeblack@google.com                  help="Use blocking caches")
6312855Sgabeblack@google.comparser.add_option("-l", "--maxloads", metavar="N", default=0,
6412855Sgabeblack@google.com                  help="Stop after N loads")
6512855Sgabeblack@google.comparser.add_option("-m", "--maxtick", type="int", default=m5.MaxTick,
6612855Sgabeblack@google.com                  metavar="T",
6712855Sgabeblack@google.com                  help="Stop after T ticks")
6812855Sgabeblack@google.com
6912855Sgabeblack@google.com# The tree specification consists of two colon-separated lists of one
7012855Sgabeblack@google.com# or more integers, one for the caches, and one for the testers. The
7112855Sgabeblack@google.com# first integer is the number of caches/testers closest to main
7212855Sgabeblack@google.com# memory. Each cache then fans out to a subtree. The last integer in
7312855Sgabeblack@google.com# the list is the number of caches/testers associated with the
7412855Sgabeblack@google.com# uppermost level of memory. The other integers (if any) specify the
7512855Sgabeblack@google.com# number of caches/testers connected at each level of the crossbar
7612855Sgabeblack@google.com# hierarchy. The tester string should have one element more than the
7712855Sgabeblack@google.com# cache string as there should always be testers attached to the
7812855Sgabeblack@google.com# uppermost caches.
7912855Sgabeblack@google.com
8012855Sgabeblack@google.comparser.add_option("-c", "--caches", type="string", default="2:2:1",
8112855Sgabeblack@google.com                  help="Colon-separated cache hierarchy specification, "
8212855Sgabeblack@google.com                  "see script comments for details "
8312855Sgabeblack@google.com                  "[default: %default]")
8412855Sgabeblack@google.comparser.add_option("-t", "--testers", type="string", default="1:1:0:2",
8512855Sgabeblack@google.com                  help="Colon-separated tester hierarchy specification, "
8612855Sgabeblack@google.com                  "see script comments for details "
8712855Sgabeblack@google.com                  "[default: %default]")
88parser.add_option("-f", "--functional", type="int", default=0,
89                  metavar="PCT",
90                  help="Target percentage of functional accesses "
91                  "[default: %default]")
92parser.add_option("-u", "--uncacheable", type="int", default=0,
93                  metavar="PCT",
94                  help="Target percentage of uncacheable accesses "
95                  "[default: %default]")
96parser.add_option("-r", "--random", action="store_true",
97                  help="Generate a random tree topology")
98parser.add_option("--progress", type="int", default=100000,
99                  metavar="NLOADS",
100                  help="Progress message interval "
101                  "[default: %default]")
102parser.add_option("--sys-clock", action="store", type="string",
103                  default='1GHz',
104                  help = """Top-level clock for blocks running at system
105                  speed""")
106
107(options, args) = parser.parse_args()
108
109if args:
110     print "Error: script doesn't take any positional arguments"
111     sys.exit(1)
112
113# Get the total number of testers
114def numtesters(cachespec, testerspec):
115     # Determine the tester multiplier for each level as the
116     # elements are per subsystem and it fans out
117     multiplier = [1]
118     for c in cachespec:
119          multiplier.append(multiplier[-1] * c)
120
121     total = 0
122     for t, m in zip(testerspec, multiplier):
123          total += t * m
124
125     return total
126
127block_size = 64
128
129# Start by parsing the command line options and do some basic sanity
130# checking
131if options.random:
132     # Generate a tree with a valid number of testers
133     while True:
134          tree_depth = random.randint(1, 4)
135          cachespec = [random.randint(1, 3) for i in range(tree_depth)]
136          testerspec = [random.randint(1, 3) for i in range(tree_depth + 1)]
137          if numtesters(cachespec, testerspec) < block_size:
138               break
139
140     print "Generated random tree -c", ':'.join(map(str, cachespec)), \
141         "-t", ':'.join(map(str, testerspec))
142else:
143     try:
144          cachespec = [int(x) for x in options.caches.split(':')]
145          testerspec = [int(x) for x in options.testers.split(':')]
146     except:
147          print "Error: Unable to parse caches or testers option"
148          sys.exit(1)
149
150     if len(cachespec) < 1:
151          print "Error: Must have at least one level of caches"
152          sys.exit(1)
153
154     if len(cachespec) != len(testerspec) - 1:
155          print "Error: Testers must have one element more than caches"
156          sys.exit(1)
157
158     if testerspec[-1] == 0:
159          print "Error: Must have testers at the uppermost level"
160          sys.exit(1)
161
162     for t in testerspec:
163          if t < 0:
164               print "Error: Cannot have a negative number of testers"
165               sys.exit(1)
166
167     for c in cachespec:
168          if c < 1:
169               print "Error: Must have 1 or more caches at each level"
170               sys.exit(1)
171
172     if numtesters(cachespec, testerspec) > block_size:
173          print "Error: Limited to %s testers because of false sharing" \
174              % (block_size)
175          sys.exit(1)
176
177# Define a prototype L1 cache that we scale for all successive levels
178proto_l1 = BaseCache(size = '32kB', assoc = 4,
179                     hit_latency = 1, response_latency = 1,
180                     tgts_per_mshr = 8, is_top_level = True)
181
182if options.blocking:
183     proto_l1.mshrs = 1
184else:
185     proto_l1.mshrs = 4
186
187cache_proto = [proto_l1]
188
189# Now add additional cache levels (if any) by scaling L1 params, the
190# first element is Ln, and the last element L1
191for scale in cachespec[:-1]:
192     # Clone previous level and update params
193     prev = cache_proto[0]
194     next = prev()
195     next.size = prev.size * scale
196     next.hit_latency = prev.hit_latency * 10
197     next.response_latency = prev.response_latency * 10
198     next.assoc = prev.assoc * scale
199     next.mshrs = prev.mshrs * scale
200     next.is_top_level = False
201     cache_proto.insert(0, next)
202
203# Make a prototype for the tester to be used throughout
204proto_tester = MemTest(max_loads = options.maxloads,
205                       percent_functional = options.functional,
206                       percent_uncacheable = options.uncacheable,
207                       progress_interval = options.progress)
208
209# Set up the system along with a simple memory and reference memory
210system = System(physmem = SimpleMemory(),
211                cache_line_size = block_size)
212
213system.voltage_domain = VoltageDomain(voltage = '1V')
214
215system.clk_domain = SrcClockDomain(clock =  options.sys_clock,
216                        voltage_domain = system.voltage_domain)
217
218# For each level, track the next subsys index to use
219next_subsys_index = [0] * (len(cachespec) + 1)
220
221# Recursive function to create a sub-tree of the cache and tester
222# hierarchy
223def make_cache_level(ncaches, prototypes, level, next_cache):
224     global next_subsys_index, proto_l1, testerspec, proto_tester
225
226     index = next_subsys_index[level]
227     next_subsys_index[level] += 1
228
229     # Create a subsystem to contain the crossbar and caches, and
230     # any testers
231     subsys = SubSystem()
232     setattr(system, 'l%dsubsys%d' % (level, index), subsys)
233
234     # The levels are indexing backwards through the list
235     ntesters = testerspec[len(cachespec) - level]
236
237     # Scale the progress threshold as testers higher up in the tree
238     # (smaller level) get a smaller portion of the overall bandwidth,
239     # and also make the interval of packet injection longer for the
240     # testers closer to the memory (larger level) to prevent them
241     # hogging all the bandwidth
242     limit = (len(cachespec) - level + 1) * 100000000
243     testers = [proto_tester(interval = 10 * (level * level + 1),
244                             progress_check = limit) \
245                     for i in xrange(ntesters)]
246     if ntesters:
247          subsys.tester = testers
248
249     if level != 0:
250          # Create a crossbar and add it to the subsystem, note that
251          # we do this even with a single element on this level
252          xbar = L2XBar()
253          subsys.xbar = xbar
254          if next_cache:
255               xbar.master = next_cache.cpu_side
256
257          # Create and connect the caches, both the ones fanning out
258          # to create the tree, and the ones used to connect testers
259          # on this level
260          tree_caches = [prototypes[0]() for i in xrange(ncaches[0])]
261          tester_caches = [proto_l1() for i in xrange(ntesters)]
262
263          subsys.cache = tester_caches + tree_caches
264          for cache in tree_caches:
265               cache.mem_side = xbar.slave
266               make_cache_level(ncaches[1:], prototypes[1:], level - 1, cache)
267          for tester, cache in zip(testers, tester_caches):
268               tester.port = cache.cpu_side
269               cache.mem_side = xbar.slave
270     else:
271          if not next_cache:
272               print "Error: No next-level cache at top level"
273               sys.exit(1)
274
275          if ntesters > 1:
276               # Create a crossbar and add it to the subsystem
277               xbar = L2XBar()
278               subsys.xbar = xbar
279               xbar.master = next_cache.cpu_side
280               for tester in testers:
281                    tester.port = xbar.slave
282          else:
283               # Single tester
284               testers[0].port = next_cache.cpu_side
285
286# Top level call to create the cache hierarchy, bottom up
287make_cache_level(cachespec, cache_proto, len(cachespec), None)
288
289# Connect the lowest level crossbar to the memory
290last_subsys = getattr(system, 'l%dsubsys0' % len(cachespec))
291last_subsys.xbar.master = system.physmem.port
292
293root = Root(full_system = False, system = system)
294if options.atomic:
295    root.system.mem_mode = 'atomic'
296else:
297    root.system.mem_mode = 'timing'
298
299# The system port is never used in the tester so merely connect it
300# to avoid problems
301root.system.system_port = last_subsys.xbar.slave
302
303# Instantiate configuration
304m5.instantiate()
305
306# Simulate until program terminates
307exit_event = m5.simulate(options.maxtick)
308
309print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()
310