summaryrefslogtreecommitdiff
path: root/configs/ruby/Ruby.py
diff options
context:
space:
mode:
authorAkash Bagdia <akash.bagdia@arm.com>2013-06-27 05:49:49 -0400
committerAkash Bagdia <akash.bagdia@arm.com>2013-06-27 05:49:49 -0400
commit597d2aa3a661587268e3d79cf4726212329fb4af (patch)
tree6497e3bda726c4e5c9734dc46a3df23a2806ad34 /configs/ruby/Ruby.py
parent076d04a653f5a4252c6c16e010ad0d7bf36c1674 (diff)
downloadgem5-597d2aa3a661587268e3d79cf4726212329fb4af.tar.xz
config: Rename clock option to Ruby clock
This patch changes the 'clock' option to 'ruby-clock' as it is only used by Ruby.
Diffstat (limited to 'configs/ruby/Ruby.py')
-rw-r--r--configs/ruby/Ruby.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/configs/ruby/Ruby.py b/configs/ruby/Ruby.py
index a11ff53c3..5c5e84197 100644
--- a/configs/ruby/Ruby.py
+++ b/configs/ruby/Ruby.py
@@ -48,6 +48,10 @@ def define_options(parser):
# By default, ruby uses the simple timing cpu
parser.set_defaults(cpu_type="timing")
+ parser.add_option("--ruby-clock", action="store", type="string",
+ default='2GHz',
+ help="Clock for blocks running at Ruby system's speed")
+
# ruby network options
parser.add_option("--topology", type="string", default="Crossbar",
help="check src/mem/ruby/network/topologies for complete set")
@@ -91,7 +95,7 @@ def create_topology(controllers, options):
def create_system(options, system, piobus = None, dma_ports = []):
- system.ruby = RubySystem(clock = options.clock,
+ system.ruby = RubySystem(clock = options.ruby_clock,
stats_filename = options.ruby_stats,
no_mem_vec = options.use_map)
ruby = system.ruby