2016-08-10 17:26:34 +02:00
|
|
|
# Copyright (c) 2010-2013, 2016 ARM Limited
|
2010-08-23 18:18:40 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# The license below extends only to copyright in the software and shall
|
|
|
|
# not be construed as granting a license to any other intellectual
|
|
|
|
# property including but not limited to intellectual property relating
|
|
|
|
# to a hardware implementation of the functionality of the software
|
|
|
|
# licensed hereunder. You may use the software subject to the license
|
|
|
|
# terms below provided that you ensure that this notice is replicated
|
|
|
|
# unmodified and in its entirety in all distributions of the software,
|
|
|
|
# modified or unmodified, in source code or in binary form.
|
|
|
|
#
|
2014-03-20 14:03:09 +01:00
|
|
|
# Copyright (c) 2012-2014 Mark D. Hill and David A. Wood
|
|
|
|
# Copyright (c) 2009-2011 Advanced Micro Devices, Inc.
|
2007-01-03 06:52:30 +01:00
|
|
|
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
2006-08-16 20:42:44 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met: redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer;
|
|
|
|
# redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution;
|
|
|
|
# neither the name of the copyright holders nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
# Authors: Ali Saidi
|
2014-03-20 14:03:09 +01:00
|
|
|
# Brad Beckmann
|
2006-08-16 20:42:44 +02:00
|
|
|
|
2009-09-23 00:24:16 +02:00
|
|
|
import optparse
|
|
|
|
import sys
|
2006-08-16 20:42:44 +02:00
|
|
|
|
|
|
|
import m5
|
2009-09-23 00:24:16 +02:00
|
|
|
from m5.defines import buildEnv
|
|
|
|
from m5.objects import *
|
|
|
|
from m5.util import addToPath, fatal
|
2008-06-13 07:09:06 +02:00
|
|
|
|
2009-09-23 00:24:16 +02:00
|
|
|
addToPath('../common')
|
2014-03-20 14:03:09 +01:00
|
|
|
addToPath('../ruby')
|
|
|
|
|
|
|
|
import Ruby
|
2008-06-13 07:09:06 +02:00
|
|
|
|
2006-08-16 20:42:44 +02:00
|
|
|
from FSConfig import *
|
|
|
|
from SysPaths import *
|
|
|
|
from Benchmarks import *
|
2006-10-27 22:32:26 +02:00
|
|
|
import Simulation
|
2010-02-25 19:13:40 +01:00
|
|
|
import CacheConfig
|
2013-08-19 09:52:34 +02:00
|
|
|
import MemConfig
|
2006-10-30 22:51:46 +01:00
|
|
|
from Caches import *
|
2012-03-28 18:01:53 +02:00
|
|
|
import Options
|
2006-10-30 20:01:34 +01:00
|
|
|
|
2006-10-17 20:08:49 +02:00
|
|
|
|
2013-04-22 19:20:32 +02:00
|
|
|
# Check if KVM support has been enabled, we might need to do VM
|
|
|
|
# configuration if that's the case.
|
|
|
|
have_kvm_support = 'BaseKvmCPU' in globals()
|
|
|
|
def is_kvm_cpu(cpu_class):
|
|
|
|
return have_kvm_support and cpu_class != None and \
|
|
|
|
issubclass(cpu_class, BaseKvmCPU)
|
|
|
|
|
2014-12-05 01:42:07 +01:00
|
|
|
def cmd_line_template():
|
|
|
|
if options.command_line and options.command_line_file:
|
|
|
|
print "Error: --command-line and --command-line-file are " \
|
|
|
|
"mutually exclusive"
|
|
|
|
sys.exit(1)
|
|
|
|
if options.command_line:
|
|
|
|
return options.command_line
|
|
|
|
if options.command_line_file:
|
|
|
|
return open(options.command_line_file).read().strip()
|
|
|
|
return None
|
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
def build_test_system(np):
|
2014-12-05 01:42:07 +01:00
|
|
|
cmdline = cmd_line_template()
|
2014-03-20 15:14:08 +01:00
|
|
|
if buildEnv['TARGET_ISA'] == "alpha":
|
2014-12-05 01:42:07 +01:00
|
|
|
test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0], options.ruby,
|
|
|
|
cmdline=cmdline)
|
2014-03-20 15:14:08 +01:00
|
|
|
elif buildEnv['TARGET_ISA'] == "mips":
|
2014-12-05 01:42:07 +01:00
|
|
|
test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0], cmdline=cmdline)
|
2014-03-20 15:14:08 +01:00
|
|
|
elif buildEnv['TARGET_ISA'] == "sparc":
|
2014-12-05 01:42:07 +01:00
|
|
|
test_sys = makeSparcSystem(test_mem_mode, bm[0], cmdline=cmdline)
|
2014-03-20 15:14:08 +01:00
|
|
|
elif buildEnv['TARGET_ISA'] == "x86":
|
|
|
|
test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0],
|
2014-12-05 01:42:07 +01:00
|
|
|
options.ruby, cmdline=cmdline)
|
2014-03-20 15:14:08 +01:00
|
|
|
elif buildEnv['TARGET_ISA'] == "arm":
|
2014-10-30 05:18:27 +01:00
|
|
|
test_sys = makeArmSystem(test_mem_mode, options.machine_type,
|
|
|
|
options.num_cpus, bm[0], options.dtb_filename,
|
2014-12-05 01:42:07 +01:00
|
|
|
bare_metal=options.bare_metal,
|
2015-04-08 22:56:06 +02:00
|
|
|
cmdline=cmdline,
|
2016-08-10 17:26:34 +02:00
|
|
|
external_memory=options.external_memory_system,
|
|
|
|
ruby=options.ruby)
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.enable_context_switch_stats_dump:
|
|
|
|
test_sys.enable_context_switch_stats_dump = True
|
2006-08-16 20:42:44 +02:00
|
|
|
else:
|
2014-03-20 15:14:08 +01:00
|
|
|
fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
|
2006-10-17 20:08:49 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
# Set the cache line size for the entire system
|
|
|
|
test_sys.cache_line_size = options.cacheline_size
|
2009-04-26 11:04:32 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
# Create a top-level voltage domain
|
|
|
|
test_sys.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
|
2013-08-19 09:52:28 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
# Create a source clock for the system and set the clock period
|
|
|
|
test_sys.clk_domain = SrcClockDomain(clock = options.sys_clock,
|
|
|
|
voltage_domain = test_sys.voltage_domain)
|
2013-08-19 09:52:28 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
# Create a CPU voltage domain
|
|
|
|
test_sys.cpu_voltage_domain = VoltageDomain()
|
sim: Add the notion of clock domains to all ClockedObjects
This patch adds the notion of source- and derived-clock domains to the
ClockedObjects. As such, all clock information is moved to the clock
domain, and the ClockedObjects are grouped into domains.
The clock domains are either source domains, with a specific clock
period, or derived domains that have a parent domain and a divider
(potentially chained). For piece of logic that runs at a derived clock
(a ratio of the clock its parent is running at) the necessary derived
clock domain is created from its corresponding parent clock
domain. For now, the derived clock domain only supports a divider,
thus ensuring a lower speed compared to its parent. Multiplier
functionality implies a PLL logic that has not been modelled yet
(create a separate clock instead).
The clock domains should be used as a mechanism to provide a
controllable clock source that affects clock for every clocked object
lying beneath it. The clock of the domain can (in a future patch) be
controlled by a handler responsible for dynamic frequency scaling of
the respective clock domains.
All the config scripts have been retro-fitted with clock domains. For
the System a default SrcClockDomain is created. For CPUs that run at a
different speed than the system, there is a seperate clock domain
created. This domain incorporates the CPU and the associated
caches. As before, Ruby runs under its own clock domain.
The clock period of all domains are pre-computed, such that no virtual
functions or multiplications are needed when calling
clockPeriod. Instead, the clock period is pre-computed when any
changes occur. For this to be possible, each clock domain tracks its
children.
2013-06-27 11:49:49 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
# Create a source clock for the CPUs and set the clock period
|
|
|
|
test_sys.cpu_clk_domain = SrcClockDomain(clock = options.cpu_clock,
|
|
|
|
voltage_domain =
|
|
|
|
test_sys.cpu_voltage_domain)
|
2013-06-27 11:49:49 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.kernel is not None:
|
|
|
|
test_sys.kernel = binary(options.kernel)
|
2006-12-23 06:51:19 +01:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.script is not None:
|
|
|
|
test_sys.readfile = options.script
|
2006-12-23 06:51:19 +01:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.lpae:
|
|
|
|
test_sys.have_lpae = True
|
arm: Add support for ARMv8 (AArch64 & AArch32)
Note: AArch64 and AArch32 interworking is not supported. If you use an AArch64
kernel you are restricted to AArch64 user-mode binaries. This will be addressed
in a later patch.
Note: Virtualization is only supported in AArch32 mode. This will also be fixed
in a later patch.
Contributors:
Giacomo Gabrielli (TrustZone, LPAE, system-level AArch64, AArch64 NEON, validation)
Thomas Grocutt (AArch32 Virtualization, AArch64 FP, validation)
Mbou Eyole (AArch64 NEON, validation)
Ali Saidi (AArch64 Linux support, code integration, validation)
Edmund Grimley-Evans (AArch64 FP)
William Wang (AArch64 Linux support)
Rene De Jong (AArch64 Linux support, performance opt.)
Matt Horsnell (AArch64 MP, validation)
Matt Evans (device models, code integration, validation)
Chris Adeniyi-Jones (AArch64 syscall-emulation)
Prakash Ramrakhyani (validation)
Dam Sunwoo (validation)
Chander Sudanthi (validation)
Stephan Diestelhorst (validation)
Andreas Hansson (code integration, performance opt.)
Eric Van Hensbergen (performance opt.)
Gabe Black
2014-01-24 22:29:34 +01:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.virtualisation:
|
|
|
|
test_sys.have_virtualization = True
|
arm: Add support for ARMv8 (AArch64 & AArch32)
Note: AArch64 and AArch32 interworking is not supported. If you use an AArch64
kernel you are restricted to AArch64 user-mode binaries. This will be addressed
in a later patch.
Note: Virtualization is only supported in AArch32 mode. This will also be fixed
in a later patch.
Contributors:
Giacomo Gabrielli (TrustZone, LPAE, system-level AArch64, AArch64 NEON, validation)
Thomas Grocutt (AArch32 Virtualization, AArch64 FP, validation)
Mbou Eyole (AArch64 NEON, validation)
Ali Saidi (AArch64 Linux support, code integration, validation)
Edmund Grimley-Evans (AArch64 FP)
William Wang (AArch64 Linux support)
Rene De Jong (AArch64 Linux support, performance opt.)
Matt Horsnell (AArch64 MP, validation)
Matt Evans (device models, code integration, validation)
Chris Adeniyi-Jones (AArch64 syscall-emulation)
Prakash Ramrakhyani (validation)
Dam Sunwoo (validation)
Chander Sudanthi (validation)
Stephan Diestelhorst (validation)
Andreas Hansson (code integration, performance opt.)
Eric Van Hensbergen (performance opt.)
Gabe Black
2014-01-24 22:29:34 +01:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
test_sys.init_param = options.init_param
|
2012-01-10 01:08:20 +01:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
# For now, assign all the CPUs to the same clock domain
|
|
|
|
test_sys.cpu = [TestCPUClass(clk_domain=test_sys.cpu_clk_domain, cpu_id=i)
|
|
|
|
for i in xrange(np)]
|
2007-10-08 21:19:58 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
if is_kvm_cpu(TestCPUClass) or is_kvm_cpu(FutureClass):
|
|
|
|
test_sys.vm = KvmVM()
|
2013-04-22 19:20:32 +02:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.ruby:
|
|
|
|
# Check for timing mode because ruby does not support atomic accesses
|
|
|
|
if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
|
|
|
|
print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
|
|
|
|
sys.exit(1)
|
2014-03-20 14:03:09 +01:00
|
|
|
|
2014-11-06 12:41:44 +01:00
|
|
|
Ruby.create_system(options, True, test_sys, test_sys.iobus,
|
|
|
|
test_sys._dma_ports)
|
2014-03-20 14:03:09 +01:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
# Create a seperate clock domain for Ruby
|
|
|
|
test_sys.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
|
|
|
|
voltage_domain = test_sys.voltage_domain)
|
2014-03-20 14:03:09 +01:00
|
|
|
|
2014-11-19 02:17:29 +01:00
|
|
|
# Connect the ruby io port to the PIO bus,
|
|
|
|
# assuming that there is just one such port.
|
|
|
|
test_sys.iobus.master = test_sys.ruby._io_port.slave
|
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
for (i, cpu) in enumerate(test_sys.cpu):
|
|
|
|
#
|
|
|
|
# Tie the cpu ports to the correct ruby system ports
|
|
|
|
#
|
|
|
|
cpu.clk_domain = test_sys.cpu_clk_domain
|
|
|
|
cpu.createThreads()
|
|
|
|
cpu.createInterruptController()
|
2014-03-20 14:03:09 +01:00
|
|
|
|
2014-03-20 15:14:14 +01:00
|
|
|
cpu.icache_port = test_sys.ruby._cpu_ports[i].slave
|
|
|
|
cpu.dcache_port = test_sys.ruby._cpu_ports[i].slave
|
2014-03-20 14:03:09 +01:00
|
|
|
|
2016-08-10 17:26:34 +02:00
|
|
|
if buildEnv['TARGET_ISA'] in ("x86", "arm"):
|
2014-03-20 15:14:14 +01:00
|
|
|
cpu.itb.walker.port = test_sys.ruby._cpu_ports[i].slave
|
|
|
|
cpu.dtb.walker.port = test_sys.ruby._cpu_ports[i].slave
|
2014-03-20 14:03:09 +01:00
|
|
|
|
2016-08-10 17:26:34 +02:00
|
|
|
if buildEnv['TARGET_ISA'] in "x86":
|
2015-09-30 18:14:19 +02:00
|
|
|
cpu.interrupts[0].pio = test_sys.ruby._cpu_ports[i].master
|
|
|
|
cpu.interrupts[0].int_master = test_sys.ruby._cpu_ports[i].slave
|
|
|
|
cpu.interrupts[0].int_slave = test_sys.ruby._cpu_ports[i].master
|
2014-03-20 14:03:09 +01:00
|
|
|
|
|
|
|
else:
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.caches or options.l2cache:
|
|
|
|
# By default the IOCache runs at the system clock
|
|
|
|
test_sys.iocache = IOCache(addr_ranges = test_sys.mem_ranges)
|
|
|
|
test_sys.iocache.cpu_side = test_sys.iobus.master
|
|
|
|
test_sys.iocache.mem_side = test_sys.membus.slave
|
2015-04-08 22:56:06 +02:00
|
|
|
elif not options.external_memory_system:
|
2014-03-20 15:14:08 +01:00
|
|
|
test_sys.iobridge = Bridge(delay='50ns', ranges = test_sys.mem_ranges)
|
|
|
|
test_sys.iobridge.slave = test_sys.iobus.master
|
|
|
|
test_sys.iobridge.master = test_sys.membus.slave
|
|
|
|
|
|
|
|
# Sanity check
|
2014-03-20 14:03:09 +01:00
|
|
|
if options.fastmem:
|
2014-03-20 15:14:08 +01:00
|
|
|
if TestCPUClass != AtomicSimpleCPU:
|
|
|
|
fatal("Fastmem can only be used with atomic CPU!")
|
|
|
|
if (options.caches or options.l2cache):
|
|
|
|
fatal("You cannot use fastmem in combination with caches!")
|
|
|
|
|
2014-12-23 15:31:17 +01:00
|
|
|
if options.simpoint_profile:
|
|
|
|
if not options.fastmem:
|
|
|
|
# Atomic CPU checked with fastmem option already
|
|
|
|
fatal("SimPoint generation should be done with atomic cpu and fastmem")
|
|
|
|
if np > 1:
|
|
|
|
fatal("SimPoint generation not supported with more than one CPUs")
|
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
for i in xrange(np):
|
|
|
|
if options.fastmem:
|
|
|
|
test_sys.cpu[i].fastmem = True
|
2014-12-23 15:31:17 +01:00
|
|
|
if options.simpoint_profile:
|
|
|
|
test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
|
2014-03-20 15:14:08 +01:00
|
|
|
if options.checker:
|
|
|
|
test_sys.cpu[i].addCheckerCpu()
|
|
|
|
test_sys.cpu[i].createThreads()
|
|
|
|
|
2015-12-07 23:42:16 +01:00
|
|
|
# If elastic tracing is enabled when not restoring from checkpoint and
|
|
|
|
# when not fast forwarding using the atomic cpu, then check that the
|
|
|
|
# TestCPUClass is DerivO3CPU or inherits from DerivO3CPU. If the check
|
|
|
|
# passes then attach the elastic trace probe.
|
|
|
|
# If restoring from checkpoint or fast forwarding, the code that does this for
|
|
|
|
# FutureCPUClass is in the Simulation module. If the check passes then the
|
|
|
|
# elastic trace probe is attached to the switch CPUs.
|
|
|
|
if options.elastic_trace_en and options.checkpoint_restore == None and \
|
|
|
|
not options.fast_forward:
|
|
|
|
CpuConfig.config_etrace(TestCPUClass, test_sys.cpu, options)
|
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
CacheConfig.config_cache(options, test_sys)
|
2015-11-03 19:17:56 +01:00
|
|
|
|
2014-03-20 15:14:08 +01:00
|
|
|
MemConfig.config_mem(options, test_sys)
|
|
|
|
|
|
|
|
return test_sys
|
|
|
|
|
|
|
|
def build_drive_system(np):
|
|
|
|
# driver system CPU is always simple, so is the memory
|
|
|
|
# Note this is an assignment of a class, not an instance.
|
|
|
|
DriveCPUClass = AtomicSimpleCPU
|
|
|
|
drive_mem_mode = 'atomic'
|
|
|
|
DriveMemClass = SimpleMemory
|
2014-03-20 14:03:09 +01:00
|
|
|
|
2014-12-05 01:42:07 +01:00
|
|
|
cmdline = cmd_line_template()
|
2009-09-23 00:24:16 +02:00
|
|
|
if buildEnv['TARGET_ISA'] == 'alpha':
|
2014-12-05 01:42:07 +01:00
|
|
|
drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1], cmdline=cmdline)
|
2009-09-23 00:24:16 +02:00
|
|
|
elif buildEnv['TARGET_ISA'] == 'mips':
|
2014-12-05 01:42:07 +01:00
|
|
|
drive_sys = makeLinuxMipsSystem(drive_mem_mode, bm[1], cmdline=cmdline)
|
2009-09-23 00:24:16 +02:00
|
|
|
elif buildEnv['TARGET_ISA'] == 'sparc':
|
2014-12-05 01:42:07 +01:00
|
|
|
drive_sys = makeSparcSystem(drive_mem_mode, bm[1], cmdline=cmdline)
|
2009-09-23 00:24:16 +02:00
|
|
|
elif buildEnv['TARGET_ISA'] == 'x86':
|
2014-12-05 01:42:07 +01:00
|
|
|
drive_sys = makeLinuxX86System(drive_mem_mode, np, bm[1],
|
|
|
|
cmdline=cmdline)
|
2010-08-23 18:18:40 +02:00
|
|
|
elif buildEnv['TARGET_ISA'] == 'arm':
|
2015-01-04 00:51:48 +01:00
|
|
|
drive_sys = makeArmSystem(drive_mem_mode, options.machine_type, np,
|
|
|
|
bm[1], options.dtb_filename, cmdline=cmdline)
|
2012-01-10 01:08:20 +01:00
|
|
|
|
2013-08-19 09:52:28 +02:00
|
|
|
# Create a top-level voltage domain
|
|
|
|
drive_sys.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
|
|
|
|
|
sim: Add the notion of clock domains to all ClockedObjects
This patch adds the notion of source- and derived-clock domains to the
ClockedObjects. As such, all clock information is moved to the clock
domain, and the ClockedObjects are grouped into domains.
The clock domains are either source domains, with a specific clock
period, or derived domains that have a parent domain and a divider
(potentially chained). For piece of logic that runs at a derived clock
(a ratio of the clock its parent is running at) the necessary derived
clock domain is created from its corresponding parent clock
domain. For now, the derived clock domain only supports a divider,
thus ensuring a lower speed compared to its parent. Multiplier
functionality implies a PLL logic that has not been modelled yet
(create a separate clock instead).
The clock domains should be used as a mechanism to provide a
controllable clock source that affects clock for every clocked object
lying beneath it. The clock of the domain can (in a future patch) be
controlled by a handler responsible for dynamic frequency scaling of
the respective clock domains.
All the config scripts have been retro-fitted with clock domains. For
the System a default SrcClockDomain is created. For CPUs that run at a
different speed than the system, there is a seperate clock domain
created. This domain incorporates the CPU and the associated
caches. As before, Ruby runs under its own clock domain.
The clock period of all domains are pre-computed, such that no virtual
functions or multiplications are needed when calling
clockPeriod. Instead, the clock period is pre-computed when any
changes occur. For this to be possible, each clock domain tracks its
children.
2013-06-27 11:49:49 +02:00
|
|
|
# Create a source clock for the system and set the clock period
|
2014-03-20 15:14:08 +01:00
|
|
|
drive_sys.clk_domain = SrcClockDomain(clock = options.sys_clock,
|
|
|
|
voltage_domain = drive_sys.voltage_domain)
|
sim: Add the notion of clock domains to all ClockedObjects
This patch adds the notion of source- and derived-clock domains to the
ClockedObjects. As such, all clock information is moved to the clock
domain, and the ClockedObjects are grouped into domains.
The clock domains are either source domains, with a specific clock
period, or derived domains that have a parent domain and a divider
(potentially chained). For piece of logic that runs at a derived clock
(a ratio of the clock its parent is running at) the necessary derived
clock domain is created from its corresponding parent clock
domain. For now, the derived clock domain only supports a divider,
thus ensuring a lower speed compared to its parent. Multiplier
functionality implies a PLL logic that has not been modelled yet
(create a separate clock instead).
The clock domains should be used as a mechanism to provide a
controllable clock source that affects clock for every clocked object
lying beneath it. The clock of the domain can (in a future patch) be
controlled by a handler responsible for dynamic frequency scaling of
the respective clock domains.
All the config scripts have been retro-fitted with clock domains. For
the System a default SrcClockDomain is created. For CPUs that run at a
different speed than the system, there is a seperate clock domain
created. This domain incorporates the CPU and the associated
caches. As before, Ruby runs under its own clock domain.
The clock period of all domains are pre-computed, such that no virtual
functions or multiplications are needed when calling
clockPeriod. Instead, the clock period is pre-computed when any
changes occur. For this to be possible, each clock domain tracks its
children.
2013-06-27 11:49:49 +02:00
|
|
|
|
2013-08-19 09:52:28 +02:00
|
|
|
# Create a CPU voltage domain
|
|
|
|
drive_sys.cpu_voltage_domain = VoltageDomain()
|
|
|
|
|
sim: Add the notion of clock domains to all ClockedObjects
This patch adds the notion of source- and derived-clock domains to the
ClockedObjects. As such, all clock information is moved to the clock
domain, and the ClockedObjects are grouped into domains.
The clock domains are either source domains, with a specific clock
period, or derived domains that have a parent domain and a divider
(potentially chained). For piece of logic that runs at a derived clock
(a ratio of the clock its parent is running at) the necessary derived
clock domain is created from its corresponding parent clock
domain. For now, the derived clock domain only supports a divider,
thus ensuring a lower speed compared to its parent. Multiplier
functionality implies a PLL logic that has not been modelled yet
(create a separate clock instead).
The clock domains should be used as a mechanism to provide a
controllable clock source that affects clock for every clocked object
lying beneath it. The clock of the domain can (in a future patch) be
controlled by a handler responsible for dynamic frequency scaling of
the respective clock domains.
All the config scripts have been retro-fitted with clock domains. For
the System a default SrcClockDomain is created. For CPUs that run at a
different speed than the system, there is a seperate clock domain
created. This domain incorporates the CPU and the associated
caches. As before, Ruby runs under its own clock domain.
The clock period of all domains are pre-computed, such that no virtual
functions or multiplications are needed when calling
clockPeriod. Instead, the clock period is pre-computed when any
changes occur. For this to be possible, each clock domain tracks its
children.
2013-06-27 11:49:49 +02:00
|
|
|
# Create a source clock for the CPUs and set the clock period
|
2013-08-19 09:52:28 +02:00
|
|
|
drive_sys.cpu_clk_domain = SrcClockDomain(clock = options.cpu_clock,
|
|
|
|
voltage_domain =
|
|
|
|
drive_sys.cpu_voltage_domain)
|
2013-06-27 11:49:49 +02:00
|
|
|
|
sim: Add the notion of clock domains to all ClockedObjects
This patch adds the notion of source- and derived-clock domains to the
ClockedObjects. As such, all clock information is moved to the clock
domain, and the ClockedObjects are grouped into domains.
The clock domains are either source domains, with a specific clock
period, or derived domains that have a parent domain and a divider
(potentially chained). For piece of logic that runs at a derived clock
(a ratio of the clock its parent is running at) the necessary derived
clock domain is created from its corresponding parent clock
domain. For now, the derived clock domain only supports a divider,
thus ensuring a lower speed compared to its parent. Multiplier
functionality implies a PLL logic that has not been modelled yet
(create a separate clock instead).
The clock domains should be used as a mechanism to provide a
controllable clock source that affects clock for every clocked object
lying beneath it. The clock of the domain can (in a future patch) be
controlled by a handler responsible for dynamic frequency scaling of
the respective clock domains.
All the config scripts have been retro-fitted with clock domains. For
the System a default SrcClockDomain is created. For CPUs that run at a
different speed than the system, there is a seperate clock domain
created. This domain incorporates the CPU and the associated
caches. As before, Ruby runs under its own clock domain.
The clock period of all domains are pre-computed, such that no virtual
functions or multiplications are needed when calling
clockPeriod. Instead, the clock period is pre-computed when any
changes occur. For this to be possible, each clock domain tracks its
children.
2013-06-27 11:49:49 +02:00
|
|
|
drive_sys.cpu = DriveCPUClass(clk_domain=drive_sys.cpu_clk_domain,
|
|
|
|
cpu_id=0)
|
2013-01-07 19:05:35 +01:00
|
|
|
drive_sys.cpu.createThreads()
|
2012-03-01 18:37:02 +01:00
|
|
|
drive_sys.cpu.createInterruptController()
|
2011-02-04 05:23:00 +01:00
|
|
|
drive_sys.cpu.connectAllPorts(drive_sys.membus)
|
2007-08-09 00:43:12 +02:00
|
|
|
if options.fastmem:
|
2012-04-03 09:50:14 +02:00
|
|
|
drive_sys.cpu.fastmem = True
|
2007-08-01 23:39:16 +02:00
|
|
|
if options.kernel is not None:
|
|
|
|
drive_sys.kernel = binary(options.kernel)
|
2013-01-07 19:05:38 +01:00
|
|
|
|
2013-04-22 19:20:32 +02:00
|
|
|
if is_kvm_cpu(DriveCPUClass):
|
|
|
|
drive_sys.vm = KvmVM()
|
|
|
|
|
Bridge: Remove NACKs in the bridge and unify with packet queue
This patch removes the NACKing in the bridge, as the split
request/response busses now ensure that protocol deadlocks do not
occur, i.e. the message-dependency chain is broken by always allowing
responses to make progress without being stalled by requests. The
NACKs had limited support in the system with most components ignoring
their use (with a suitable call to panic), and as the NACKs are no
longer needed to avoid protocol deadlocks, the cleanest way is to
simply remove them.
The bridge is the starting point as this is the only place where the
NACKs are created. A follow-up patch will remove the code that deals
with NACKs in the endpoints, e.g. the X86 table walker and DMA
port. Ultimately the type of packet can be complete removed (until
someone sees a need for modelling more complex protocols, which can
now be done in parts of the system since the port and interface is
split).
As a consequence of the NACK removal, the bridge now has to send a
retry to a master if the request or response queue was full on the
first attempt. This change also makes the bridge ports very similar to
QueuedPorts, and a later patch will change the bridge to use these. A
first step in this direction is taken by aligning the name of the
member functions, as done by this patch.
A bit of tidying up has also been done as part of the simplifications.
Surprisingly, this patch has no impact on any of the
regressions. Hence, there was never any NACKs issued. In a follow-up
patch I would suggest changing the size of the bridge buffers set in
FSConfig.py to also test the situation where the bridge fills up.
2012-08-22 17:39:58 +02:00
|
|
|
drive_sys.iobridge = Bridge(delay='50ns',
|
2013-01-07 19:05:38 +01:00
|
|
|
ranges = drive_sys.mem_ranges)
|
2012-02-14 09:41:53 +01:00
|
|
|
drive_sys.iobridge.slave = drive_sys.iobus.master
|
|
|
|
drive_sys.iobridge.master = drive_sys.membus.slave
|
2007-08-01 23:39:16 +02:00
|
|
|
|
2013-08-19 09:52:27 +02:00
|
|
|
# Create the appropriate memory controllers and connect them to the
|
|
|
|
# memory bus
|
2013-08-19 09:52:33 +02:00
|
|
|
drive_sys.mem_ctrls = [DriveMemClass(range = r)
|
2013-08-19 09:52:27 +02:00
|
|
|
for r in drive_sys.mem_ranges]
|
|
|
|
for i in xrange(len(drive_sys.mem_ctrls)):
|
|
|
|
drive_sys.mem_ctrls[i].port = drive_sys.membus.master
|
|
|
|
|
2012-01-10 01:08:20 +01:00
|
|
|
drive_sys.init_param = options.init_param
|
2014-03-20 15:14:08 +01:00
|
|
|
|
|
|
|
return drive_sys
|
|
|
|
|
|
|
|
# Add options
|
|
|
|
parser = optparse.OptionParser()
|
|
|
|
Options.addCommonOptions(parser)
|
|
|
|
Options.addFSOptions(parser)
|
|
|
|
|
|
|
|
# Add the ruby specific and protocol specific options
|
|
|
|
if '--ruby' in sys.argv:
|
|
|
|
Ruby.define_options(parser)
|
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
if args:
|
|
|
|
print "Error: script doesn't take any positional arguments"
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
# system under test can be any CPU
|
|
|
|
(TestCPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)
|
|
|
|
|
|
|
|
# Match the memories with the CPUs, based on the options for the test system
|
|
|
|
TestMemClass = Simulation.setMemClass(options)
|
|
|
|
|
|
|
|
if options.benchmark:
|
|
|
|
try:
|
|
|
|
bm = Benchmarks[options.benchmark]
|
|
|
|
except KeyError:
|
|
|
|
print "Error benchmark %s has not been defined." % options.benchmark
|
|
|
|
print "Valid benchmarks are: %s" % DefinedBenchmarks
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
if options.dual:
|
2015-01-16 21:12:03 +01:00
|
|
|
bm = [SysConfig(disk=options.disk_image, rootdev=options.root_device,
|
2015-03-19 09:06:14 +01:00
|
|
|
mem=options.mem_size, os_type=options.os_type),
|
2015-01-16 21:12:03 +01:00
|
|
|
SysConfig(disk=options.disk_image, rootdev=options.root_device,
|
2015-03-19 09:06:14 +01:00
|
|
|
mem=options.mem_size, os_type=options.os_type)]
|
2014-03-20 15:14:08 +01:00
|
|
|
else:
|
2015-01-16 21:12:03 +01:00
|
|
|
bm = [SysConfig(disk=options.disk_image, rootdev=options.root_device,
|
2015-03-19 09:06:14 +01:00
|
|
|
mem=options.mem_size, os_type=options.os_type)]
|
2014-03-20 15:14:08 +01:00
|
|
|
|
|
|
|
np = options.num_cpus
|
|
|
|
|
|
|
|
test_sys = build_test_system(np)
|
|
|
|
if len(bm) == 2:
|
|
|
|
drive_sys = build_drive_system(np)
|
2012-01-28 16:24:34 +01:00
|
|
|
root = makeDualRoot(True, test_sys, drive_sys, options.etherdump)
|
2016-01-07 23:33:47 +01:00
|
|
|
elif len(bm) == 1 and options.dist:
|
|
|
|
# This system is part of a dist-gem5 simulation
|
|
|
|
root = makeDistRoot(test_sys,
|
|
|
|
options.dist_rank,
|
|
|
|
options.dist_size,
|
|
|
|
options.dist_server_name,
|
|
|
|
options.dist_server_port,
|
|
|
|
options.dist_sync_repeat,
|
|
|
|
options.dist_sync_start,
|
|
|
|
options.ethernet_linkspeed,
|
|
|
|
options.ethernet_linkdelay,
|
|
|
|
options.etherdump);
|
2006-08-16 20:42:44 +02:00
|
|
|
elif len(bm) == 1:
|
2012-01-28 16:24:34 +01:00
|
|
|
root = Root(full_system=True, system=test_sys)
|
2006-08-16 20:42:44 +02:00
|
|
|
else:
|
|
|
|
print "Error I don't know how to create more than 2 systems."
|
|
|
|
sys.exit(1)
|
|
|
|
|
2011-01-19 20:48:00 +01:00
|
|
|
if options.timesync:
|
|
|
|
root.time_sync_enable = True
|
|
|
|
|
2011-12-01 09:15:26 +01:00
|
|
|
if options.frame_capture:
|
|
|
|
VncServer.frame_capture = True
|
|
|
|
|
2012-06-07 15:05:31 +02:00
|
|
|
Simulation.setWorkCountOptions(test_sys, options)
|
2006-11-02 01:25:09 +01:00
|
|
|
Simulation.run(options, root, test_sys, FutureClass)
|