fs.py (10747:3fe41011333d) fs.py (10780:46070443051e)
1# Copyright (c) 2010-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license
9# terms below provided that you ensure that this notice is replicated
10# unmodified and in its entirety in all distributions of the software,
11# modified or unmodified, in source code or in binary form.
12#
13# Copyright (c) 2012-2014 Mark D. Hill and David A. Wood
14# Copyright (c) 2009-2011 Advanced Micro Devices, Inc.
15# Copyright (c) 2006-2007 The Regents of The University of Michigan
16# All rights reserved.
17#
18# Redistribution and use in source and binary forms, with or without
19# modification, are permitted provided that the following conditions are
20# met: redistributions of source code must retain the above copyright
21# notice, this list of conditions and the following disclaimer;
22# redistributions in binary form must reproduce the above copyright
23# notice, this list of conditions and the following disclaimer in the
24# documentation and/or other materials provided with the distribution;
25# neither the name of the copyright holders nor the names of its
26# contributors may be used to endorse or promote products derived from
27# this software without specific prior written permission.
28#
29# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40#
41# Authors: Ali Saidi
42# Brad Beckmann
43
44import optparse
45import sys
46
47import m5
48from m5.defines import buildEnv
49from m5.objects import *
50from m5.util import addToPath, fatal
51
52addToPath('../common')
53addToPath('../ruby')
54
55import Ruby
56
57from FSConfig import *
58from SysPaths import *
59from Benchmarks import *
60import Simulation
61import CacheConfig
62import MemConfig
63from Caches import *
64import Options
65
66
67# Check if KVM support has been enabled, we might need to do VM
68# configuration if that's the case.
69have_kvm_support = 'BaseKvmCPU' in globals()
70def is_kvm_cpu(cpu_class):
71 return have_kvm_support and cpu_class != None and \
72 issubclass(cpu_class, BaseKvmCPU)
73
74def cmd_line_template():
75 if options.command_line and options.command_line_file:
76 print "Error: --command-line and --command-line-file are " \
77 "mutually exclusive"
78 sys.exit(1)
79 if options.command_line:
80 return options.command_line
81 if options.command_line_file:
82 return open(options.command_line_file).read().strip()
83 return None
84
85def build_test_system(np):
86 cmdline = cmd_line_template()
87 if buildEnv['TARGET_ISA'] == "alpha":
88 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0], options.ruby,
89 cmdline=cmdline)
90 elif buildEnv['TARGET_ISA'] == "mips":
91 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0], cmdline=cmdline)
92 elif buildEnv['TARGET_ISA'] == "sparc":
93 test_sys = makeSparcSystem(test_mem_mode, bm[0], cmdline=cmdline)
94 elif buildEnv['TARGET_ISA'] == "x86":
95 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0],
96 options.ruby, cmdline=cmdline)
97 elif buildEnv['TARGET_ISA'] == "arm":
98 test_sys = makeArmSystem(test_mem_mode, options.machine_type,
99 options.num_cpus, bm[0], options.dtb_filename,
100 bare_metal=options.bare_metal,
1# Copyright (c) 2010-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license
9# terms below provided that you ensure that this notice is replicated
10# unmodified and in its entirety in all distributions of the software,
11# modified or unmodified, in source code or in binary form.
12#
13# Copyright (c) 2012-2014 Mark D. Hill and David A. Wood
14# Copyright (c) 2009-2011 Advanced Micro Devices, Inc.
15# Copyright (c) 2006-2007 The Regents of The University of Michigan
16# All rights reserved.
17#
18# Redistribution and use in source and binary forms, with or without
19# modification, are permitted provided that the following conditions are
20# met: redistributions of source code must retain the above copyright
21# notice, this list of conditions and the following disclaimer;
22# redistributions in binary form must reproduce the above copyright
23# notice, this list of conditions and the following disclaimer in the
24# documentation and/or other materials provided with the distribution;
25# neither the name of the copyright holders nor the names of its
26# contributors may be used to endorse or promote products derived from
27# this software without specific prior written permission.
28#
29# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40#
41# Authors: Ali Saidi
42# Brad Beckmann
43
44import optparse
45import sys
46
47import m5
48from m5.defines import buildEnv
49from m5.objects import *
50from m5.util import addToPath, fatal
51
52addToPath('../common')
53addToPath('../ruby')
54
55import Ruby
56
57from FSConfig import *
58from SysPaths import *
59from Benchmarks import *
60import Simulation
61import CacheConfig
62import MemConfig
63from Caches import *
64import Options
65
66
67# Check if KVM support has been enabled, we might need to do VM
68# configuration if that's the case.
69have_kvm_support = 'BaseKvmCPU' in globals()
70def is_kvm_cpu(cpu_class):
71 return have_kvm_support and cpu_class != None and \
72 issubclass(cpu_class, BaseKvmCPU)
73
74def cmd_line_template():
75 if options.command_line and options.command_line_file:
76 print "Error: --command-line and --command-line-file are " \
77 "mutually exclusive"
78 sys.exit(1)
79 if options.command_line:
80 return options.command_line
81 if options.command_line_file:
82 return open(options.command_line_file).read().strip()
83 return None
84
85def build_test_system(np):
86 cmdline = cmd_line_template()
87 if buildEnv['TARGET_ISA'] == "alpha":
88 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0], options.ruby,
89 cmdline=cmdline)
90 elif buildEnv['TARGET_ISA'] == "mips":
91 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0], cmdline=cmdline)
92 elif buildEnv['TARGET_ISA'] == "sparc":
93 test_sys = makeSparcSystem(test_mem_mode, bm[0], cmdline=cmdline)
94 elif buildEnv['TARGET_ISA'] == "x86":
95 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0],
96 options.ruby, cmdline=cmdline)
97 elif buildEnv['TARGET_ISA'] == "arm":
98 test_sys = makeArmSystem(test_mem_mode, options.machine_type,
99 options.num_cpus, bm[0], options.dtb_filename,
100 bare_metal=options.bare_metal,
101 cmdline=cmdline)
101 cmdline=cmdline,
102 external_memory=options.external_memory_system)
102 if options.enable_context_switch_stats_dump:
103 test_sys.enable_context_switch_stats_dump = True
104 else:
105 fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
106
107 # Set the cache line size for the entire system
108 test_sys.cache_line_size = options.cacheline_size
109
110 # Create a top-level voltage domain
111 test_sys.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
112
113 # Create a source clock for the system and set the clock period
114 test_sys.clk_domain = SrcClockDomain(clock = options.sys_clock,
115 voltage_domain = test_sys.voltage_domain)
116
117 # Create a CPU voltage domain
118 test_sys.cpu_voltage_domain = VoltageDomain()
119
120 # Create a source clock for the CPUs and set the clock period
121 test_sys.cpu_clk_domain = SrcClockDomain(clock = options.cpu_clock,
122 voltage_domain =
123 test_sys.cpu_voltage_domain)
124
125 if options.kernel is not None:
126 test_sys.kernel = binary(options.kernel)
127
128 if options.script is not None:
129 test_sys.readfile = options.script
130
131 if options.lpae:
132 test_sys.have_lpae = True
133
134 if options.virtualisation:
135 test_sys.have_virtualization = True
136
137 test_sys.init_param = options.init_param
138
139 # For now, assign all the CPUs to the same clock domain
140 test_sys.cpu = [TestCPUClass(clk_domain=test_sys.cpu_clk_domain, cpu_id=i)
141 for i in xrange(np)]
142
143 if is_kvm_cpu(TestCPUClass) or is_kvm_cpu(FutureClass):
144 test_sys.vm = KvmVM()
145
146 if options.ruby:
147 # Check for timing mode because ruby does not support atomic accesses
148 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
149 print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
150 sys.exit(1)
151
152 Ruby.create_system(options, True, test_sys, test_sys.iobus,
153 test_sys._dma_ports)
154
155 # Create a seperate clock domain for Ruby
156 test_sys.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
157 voltage_domain = test_sys.voltage_domain)
158
159 # Connect the ruby io port to the PIO bus,
160 # assuming that there is just one such port.
161 test_sys.iobus.master = test_sys.ruby._io_port.slave
162
163 for (i, cpu) in enumerate(test_sys.cpu):
164 #
165 # Tie the cpu ports to the correct ruby system ports
166 #
167 cpu.clk_domain = test_sys.cpu_clk_domain
168 cpu.createThreads()
169 cpu.createInterruptController()
170
171 cpu.icache_port = test_sys.ruby._cpu_ports[i].slave
172 cpu.dcache_port = test_sys.ruby._cpu_ports[i].slave
173
174 if buildEnv['TARGET_ISA'] == "x86":
175 cpu.itb.walker.port = test_sys.ruby._cpu_ports[i].slave
176 cpu.dtb.walker.port = test_sys.ruby._cpu_ports[i].slave
177
178 cpu.interrupts.pio = test_sys.ruby._cpu_ports[i].master
179 cpu.interrupts.int_master = test_sys.ruby._cpu_ports[i].slave
180 cpu.interrupts.int_slave = test_sys.ruby._cpu_ports[i].master
181
182 else:
183 if options.caches or options.l2cache:
184 # By default the IOCache runs at the system clock
185 test_sys.iocache = IOCache(addr_ranges = test_sys.mem_ranges)
186 test_sys.iocache.cpu_side = test_sys.iobus.master
187 test_sys.iocache.mem_side = test_sys.membus.slave
103 if options.enable_context_switch_stats_dump:
104 test_sys.enable_context_switch_stats_dump = True
105 else:
106 fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
107
108 # Set the cache line size for the entire system
109 test_sys.cache_line_size = options.cacheline_size
110
111 # Create a top-level voltage domain
112 test_sys.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
113
114 # Create a source clock for the system and set the clock period
115 test_sys.clk_domain = SrcClockDomain(clock = options.sys_clock,
116 voltage_domain = test_sys.voltage_domain)
117
118 # Create a CPU voltage domain
119 test_sys.cpu_voltage_domain = VoltageDomain()
120
121 # Create a source clock for the CPUs and set the clock period
122 test_sys.cpu_clk_domain = SrcClockDomain(clock = options.cpu_clock,
123 voltage_domain =
124 test_sys.cpu_voltage_domain)
125
126 if options.kernel is not None:
127 test_sys.kernel = binary(options.kernel)
128
129 if options.script is not None:
130 test_sys.readfile = options.script
131
132 if options.lpae:
133 test_sys.have_lpae = True
134
135 if options.virtualisation:
136 test_sys.have_virtualization = True
137
138 test_sys.init_param = options.init_param
139
140 # For now, assign all the CPUs to the same clock domain
141 test_sys.cpu = [TestCPUClass(clk_domain=test_sys.cpu_clk_domain, cpu_id=i)
142 for i in xrange(np)]
143
144 if is_kvm_cpu(TestCPUClass) or is_kvm_cpu(FutureClass):
145 test_sys.vm = KvmVM()
146
147 if options.ruby:
148 # Check for timing mode because ruby does not support atomic accesses
149 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
150 print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
151 sys.exit(1)
152
153 Ruby.create_system(options, True, test_sys, test_sys.iobus,
154 test_sys._dma_ports)
155
156 # Create a seperate clock domain for Ruby
157 test_sys.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
158 voltage_domain = test_sys.voltage_domain)
159
160 # Connect the ruby io port to the PIO bus,
161 # assuming that there is just one such port.
162 test_sys.iobus.master = test_sys.ruby._io_port.slave
163
164 for (i, cpu) in enumerate(test_sys.cpu):
165 #
166 # Tie the cpu ports to the correct ruby system ports
167 #
168 cpu.clk_domain = test_sys.cpu_clk_domain
169 cpu.createThreads()
170 cpu.createInterruptController()
171
172 cpu.icache_port = test_sys.ruby._cpu_ports[i].slave
173 cpu.dcache_port = test_sys.ruby._cpu_ports[i].slave
174
175 if buildEnv['TARGET_ISA'] == "x86":
176 cpu.itb.walker.port = test_sys.ruby._cpu_ports[i].slave
177 cpu.dtb.walker.port = test_sys.ruby._cpu_ports[i].slave
178
179 cpu.interrupts.pio = test_sys.ruby._cpu_ports[i].master
180 cpu.interrupts.int_master = test_sys.ruby._cpu_ports[i].slave
181 cpu.interrupts.int_slave = test_sys.ruby._cpu_ports[i].master
182
183 else:
184 if options.caches or options.l2cache:
185 # By default the IOCache runs at the system clock
186 test_sys.iocache = IOCache(addr_ranges = test_sys.mem_ranges)
187 test_sys.iocache.cpu_side = test_sys.iobus.master
188 test_sys.iocache.mem_side = test_sys.membus.slave
188 else:
189 elif not options.external_memory_system:
189 test_sys.iobridge = Bridge(delay='50ns', ranges = test_sys.mem_ranges)
190 test_sys.iobridge.slave = test_sys.iobus.master
191 test_sys.iobridge.master = test_sys.membus.slave
192
193 # Sanity check
194 if options.fastmem:
195 if TestCPUClass != AtomicSimpleCPU:
196 fatal("Fastmem can only be used with atomic CPU!")
197 if (options.caches or options.l2cache):
198 fatal("You cannot use fastmem in combination with caches!")
199
200 if options.simpoint_profile:
201 if not options.fastmem:
202 # Atomic CPU checked with fastmem option already
203 fatal("SimPoint generation should be done with atomic cpu and fastmem")
204 if np > 1:
205 fatal("SimPoint generation not supported with more than one CPUs")
206
207 for i in xrange(np):
208 if options.fastmem:
209 test_sys.cpu[i].fastmem = True
210 if options.simpoint_profile:
211 test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
212 if options.checker:
213 test_sys.cpu[i].addCheckerCpu()
214 test_sys.cpu[i].createThreads()
215
216 CacheConfig.config_cache(options, test_sys)
217 MemConfig.config_mem(options, test_sys)
218
219 return test_sys
220
221def build_drive_system(np):
222 # driver system CPU is always simple, so is the memory
223 # Note this is an assignment of a class, not an instance.
224 DriveCPUClass = AtomicSimpleCPU
225 drive_mem_mode = 'atomic'
226 DriveMemClass = SimpleMemory
227
228 cmdline = cmd_line_template()
229 if buildEnv['TARGET_ISA'] == 'alpha':
230 drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1], cmdline=cmdline)
231 elif buildEnv['TARGET_ISA'] == 'mips':
232 drive_sys = makeLinuxMipsSystem(drive_mem_mode, bm[1], cmdline=cmdline)
233 elif buildEnv['TARGET_ISA'] == 'sparc':
234 drive_sys = makeSparcSystem(drive_mem_mode, bm[1], cmdline=cmdline)
235 elif buildEnv['TARGET_ISA'] == 'x86':
236 drive_sys = makeLinuxX86System(drive_mem_mode, np, bm[1],
237 cmdline=cmdline)
238 elif buildEnv['TARGET_ISA'] == 'arm':
239 drive_sys = makeArmSystem(drive_mem_mode, options.machine_type, np,
240 bm[1], options.dtb_filename, cmdline=cmdline)
241
242 # Create a top-level voltage domain
243 drive_sys.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
244
245 # Create a source clock for the system and set the clock period
246 drive_sys.clk_domain = SrcClockDomain(clock = options.sys_clock,
247 voltage_domain = drive_sys.voltage_domain)
248
249 # Create a CPU voltage domain
250 drive_sys.cpu_voltage_domain = VoltageDomain()
251
252 # Create a source clock for the CPUs and set the clock period
253 drive_sys.cpu_clk_domain = SrcClockDomain(clock = options.cpu_clock,
254 voltage_domain =
255 drive_sys.cpu_voltage_domain)
256
257 drive_sys.cpu = DriveCPUClass(clk_domain=drive_sys.cpu_clk_domain,
258 cpu_id=0)
259 drive_sys.cpu.createThreads()
260 drive_sys.cpu.createInterruptController()
261 drive_sys.cpu.connectAllPorts(drive_sys.membus)
262 if options.fastmem:
263 drive_sys.cpu.fastmem = True
264 if options.kernel is not None:
265 drive_sys.kernel = binary(options.kernel)
266
267 if is_kvm_cpu(DriveCPUClass):
268 drive_sys.vm = KvmVM()
269
270 drive_sys.iobridge = Bridge(delay='50ns',
271 ranges = drive_sys.mem_ranges)
272 drive_sys.iobridge.slave = drive_sys.iobus.master
273 drive_sys.iobridge.master = drive_sys.membus.slave
274
275 # Create the appropriate memory controllers and connect them to the
276 # memory bus
277 drive_sys.mem_ctrls = [DriveMemClass(range = r)
278 for r in drive_sys.mem_ranges]
279 for i in xrange(len(drive_sys.mem_ctrls)):
280 drive_sys.mem_ctrls[i].port = drive_sys.membus.master
281
282 drive_sys.init_param = options.init_param
283
284 return drive_sys
285
286# Add options
287parser = optparse.OptionParser()
288Options.addCommonOptions(parser)
289Options.addFSOptions(parser)
290
291# Add the ruby specific and protocol specific options
292if '--ruby' in sys.argv:
293 Ruby.define_options(parser)
294
295(options, args) = parser.parse_args()
296
297if args:
298 print "Error: script doesn't take any positional arguments"
299 sys.exit(1)
300
301# system under test can be any CPU
302(TestCPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)
303
304# Match the memories with the CPUs, based on the options for the test system
305TestMemClass = Simulation.setMemClass(options)
306
307if options.benchmark:
308 try:
309 bm = Benchmarks[options.benchmark]
310 except KeyError:
311 print "Error benchmark %s has not been defined." % options.benchmark
312 print "Valid benchmarks are: %s" % DefinedBenchmarks
313 sys.exit(1)
314else:
315 if options.dual:
316 bm = [SysConfig(disk=options.disk_image, rootdev=options.root_device,
317 mem=options.mem_size, os_type=options.os_type),
318 SysConfig(disk=options.disk_image, rootdev=options.root_device,
319 mem=options.mem_size, os_type=options.os_type)]
320 else:
321 bm = [SysConfig(disk=options.disk_image, rootdev=options.root_device,
322 mem=options.mem_size, os_type=options.os_type)]
323
324np = options.num_cpus
325
326test_sys = build_test_system(np)
327if len(bm) == 2:
328 drive_sys = build_drive_system(np)
329 root = makeDualRoot(True, test_sys, drive_sys, options.etherdump)
330elif len(bm) == 1:
331 root = Root(full_system=True, system=test_sys)
332else:
333 print "Error I don't know how to create more than 2 systems."
334 sys.exit(1)
335
336if options.timesync:
337 root.time_sync_enable = True
338
339if options.frame_capture:
340 VncServer.frame_capture = True
341
342Simulation.setWorkCountOptions(test_sys, options)
343Simulation.run(options, root, test_sys, FutureClass)
190 test_sys.iobridge = Bridge(delay='50ns', ranges = test_sys.mem_ranges)
191 test_sys.iobridge.slave = test_sys.iobus.master
192 test_sys.iobridge.master = test_sys.membus.slave
193
194 # Sanity check
195 if options.fastmem:
196 if TestCPUClass != AtomicSimpleCPU:
197 fatal("Fastmem can only be used with atomic CPU!")
198 if (options.caches or options.l2cache):
199 fatal("You cannot use fastmem in combination with caches!")
200
201 if options.simpoint_profile:
202 if not options.fastmem:
203 # Atomic CPU checked with fastmem option already
204 fatal("SimPoint generation should be done with atomic cpu and fastmem")
205 if np > 1:
206 fatal("SimPoint generation not supported with more than one CPUs")
207
208 for i in xrange(np):
209 if options.fastmem:
210 test_sys.cpu[i].fastmem = True
211 if options.simpoint_profile:
212 test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
213 if options.checker:
214 test_sys.cpu[i].addCheckerCpu()
215 test_sys.cpu[i].createThreads()
216
217 CacheConfig.config_cache(options, test_sys)
218 MemConfig.config_mem(options, test_sys)
219
220 return test_sys
221
222def build_drive_system(np):
223 # driver system CPU is always simple, so is the memory
224 # Note this is an assignment of a class, not an instance.
225 DriveCPUClass = AtomicSimpleCPU
226 drive_mem_mode = 'atomic'
227 DriveMemClass = SimpleMemory
228
229 cmdline = cmd_line_template()
230 if buildEnv['TARGET_ISA'] == 'alpha':
231 drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1], cmdline=cmdline)
232 elif buildEnv['TARGET_ISA'] == 'mips':
233 drive_sys = makeLinuxMipsSystem(drive_mem_mode, bm[1], cmdline=cmdline)
234 elif buildEnv['TARGET_ISA'] == 'sparc':
235 drive_sys = makeSparcSystem(drive_mem_mode, bm[1], cmdline=cmdline)
236 elif buildEnv['TARGET_ISA'] == 'x86':
237 drive_sys = makeLinuxX86System(drive_mem_mode, np, bm[1],
238 cmdline=cmdline)
239 elif buildEnv['TARGET_ISA'] == 'arm':
240 drive_sys = makeArmSystem(drive_mem_mode, options.machine_type, np,
241 bm[1], options.dtb_filename, cmdline=cmdline)
242
243 # Create a top-level voltage domain
244 drive_sys.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
245
246 # Create a source clock for the system and set the clock period
247 drive_sys.clk_domain = SrcClockDomain(clock = options.sys_clock,
248 voltage_domain = drive_sys.voltage_domain)
249
250 # Create a CPU voltage domain
251 drive_sys.cpu_voltage_domain = VoltageDomain()
252
253 # Create a source clock for the CPUs and set the clock period
254 drive_sys.cpu_clk_domain = SrcClockDomain(clock = options.cpu_clock,
255 voltage_domain =
256 drive_sys.cpu_voltage_domain)
257
258 drive_sys.cpu = DriveCPUClass(clk_domain=drive_sys.cpu_clk_domain,
259 cpu_id=0)
260 drive_sys.cpu.createThreads()
261 drive_sys.cpu.createInterruptController()
262 drive_sys.cpu.connectAllPorts(drive_sys.membus)
263 if options.fastmem:
264 drive_sys.cpu.fastmem = True
265 if options.kernel is not None:
266 drive_sys.kernel = binary(options.kernel)
267
268 if is_kvm_cpu(DriveCPUClass):
269 drive_sys.vm = KvmVM()
270
271 drive_sys.iobridge = Bridge(delay='50ns',
272 ranges = drive_sys.mem_ranges)
273 drive_sys.iobridge.slave = drive_sys.iobus.master
274 drive_sys.iobridge.master = drive_sys.membus.slave
275
276 # Create the appropriate memory controllers and connect them to the
277 # memory bus
278 drive_sys.mem_ctrls = [DriveMemClass(range = r)
279 for r in drive_sys.mem_ranges]
280 for i in xrange(len(drive_sys.mem_ctrls)):
281 drive_sys.mem_ctrls[i].port = drive_sys.membus.master
282
283 drive_sys.init_param = options.init_param
284
285 return drive_sys
286
287# Add options
288parser = optparse.OptionParser()
289Options.addCommonOptions(parser)
290Options.addFSOptions(parser)
291
292# Add the ruby specific and protocol specific options
293if '--ruby' in sys.argv:
294 Ruby.define_options(parser)
295
296(options, args) = parser.parse_args()
297
298if args:
299 print "Error: script doesn't take any positional arguments"
300 sys.exit(1)
301
302# system under test can be any CPU
303(TestCPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)
304
305# Match the memories with the CPUs, based on the options for the test system
306TestMemClass = Simulation.setMemClass(options)
307
308if options.benchmark:
309 try:
310 bm = Benchmarks[options.benchmark]
311 except KeyError:
312 print "Error benchmark %s has not been defined." % options.benchmark
313 print "Valid benchmarks are: %s" % DefinedBenchmarks
314 sys.exit(1)
315else:
316 if options.dual:
317 bm = [SysConfig(disk=options.disk_image, rootdev=options.root_device,
318 mem=options.mem_size, os_type=options.os_type),
319 SysConfig(disk=options.disk_image, rootdev=options.root_device,
320 mem=options.mem_size, os_type=options.os_type)]
321 else:
322 bm = [SysConfig(disk=options.disk_image, rootdev=options.root_device,
323 mem=options.mem_size, os_type=options.os_type)]
324
325np = options.num_cpus
326
327test_sys = build_test_system(np)
328if len(bm) == 2:
329 drive_sys = build_drive_system(np)
330 root = makeDualRoot(True, test_sys, drive_sys, options.etherdump)
331elif len(bm) == 1:
332 root = Root(full_system=True, system=test_sys)
333else:
334 print "Error I don't know how to create more than 2 systems."
335 sys.exit(1)
336
337if options.timesync:
338 root.time_sync_enable = True
339
340if options.frame_capture:
341 VncServer.frame_capture = True
342
343Simulation.setWorkCountOptions(test_sys, options)
344Simulation.run(options, root, test_sys, FutureClass)