SE/FS: Get rid of FULL_SYSTEM in the configs directory
[gem5.git] / configs / example / ruby_fs.py
1 # Copyright (c) 2009-2011 Advanced Micro Devices, Inc.
2 # All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met: redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer;
8 # redistributions in binary form must reproduce the above copyright
9 # notice, this list of conditions and the following disclaimer in the
10 # documentation and/or other materials provided with the distribution;
11 # neither the name of the copyright holders nor the names of its
12 # contributors may be used to endorse or promote products derived from
13 # this software without specific prior written permission.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #
27 # Authors: Brad Beckmann
28
29 #
30 # Full system configuraiton for ruby
31 #
32
33 import optparse
34 import os
35 import sys
36 from os.path import join as joinpath
37
38 import m5
39 from m5.defines import buildEnv
40 from m5.objects import *
41 from m5.util import addToPath, fatal
42
43 addToPath('../common')
44 addToPath('../ruby')
45
46 import Ruby
47
48 from FSConfig import *
49 from SysPaths import *
50 from Benchmarks import *
51 import Simulation
52 from Caches import *
53
54 # Get paths we might need. It's expected this file is in m5/configs/example.
55 config_path = os.path.dirname(os.path.abspath(__file__))
56 config_root = os.path.dirname(config_path)
57 m5_root = os.path.dirname(config_root)
58
59 parser = optparse.OptionParser()
60 # System options
61 parser.add_option("--kernel", action="store", type="string")
62 parser.add_option("--script", action="store", type="string")
63 # Benchmark options
64 parser.add_option("-b", "--benchmark", action="store", type="string",
65 dest="benchmark",
66 help="Specify the benchmark to run. Available benchmarks: %s"\
67 % DefinedBenchmarks)
68 parser.add_option("-o", "--options", default="",
69 help='The options to pass to the binary, use " " around the entire string')
70 parser.add_option("-i", "--input", default="", help="Read stdin from a file.")
71 parser.add_option("--output", default="", help="Redirect stdout to a file.")
72 parser.add_option("--errout", default="", help="Redirect stderr to a file.")
73
74 #
75 # Add the ruby specific and protocol specific options
76 #
77 Ruby.define_options(parser)
78
79 execfile(os.path.join(config_root, "common", "Options.py"))
80
81 (options, args) = parser.parse_args()
82
83 if args:
84 print "Error: script doesn't take any positional arguments"
85 sys.exit(1)
86
87 if options.benchmark:
88 try:
89 bm = Benchmarks[options.benchmark]
90 except KeyError:
91 print "Error benchmark %s has not been defined." % options.benchmark
92 print "Valid benchmarks are: %s" % DefinedBenchmarks
93 sys.exit(1)
94 else:
95 bm = [SysConfig()]
96
97 #
98 # currently ruby fs only works in simple timing mode because ruby does not
99 # support atomic accesses by devices. Also ruby_fs currently assumes
100 # that is running a checkpoints that were created by ALPHA_FS under atomic
101 # mode. Since switch cpus are not defined in these checkpoints, we don't
102 # fast forward with the atomic cpu and instead set the FutureClass to None.
103 # Therefore the cpus resolve to the correct names and unserialize correctly.
104 #
105 class CPUClass(TimingSimpleCPU): pass
106 test_mem_mode = 'timing'
107 FutureClass = None
108
109 CPUClass.clock = options.clock
110
111 if buildEnv['TARGET_ISA'] == "alpha":
112 system = makeLinuxAlphaRubySystem(test_mem_mode, bm[0])
113 elif buildEnv['TARGET_ISA'] == "x86":
114 system = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0], True)
115 setWorkCountOptions(system, options)
116 else:
117 fatal("incapable of building non-alpha or non-x86 full system!")
118
119 if options.kernel is not None:
120 system.kernel = binary(options.kernel)
121
122 if options.script is not None:
123 system.readfile = options.script
124
125 system.cpu = [CPUClass(cpu_id=i) for i in xrange(options.num_cpus)]
126 Ruby.create_system(options, system, system.piobus, system._dma_devices)
127
128
129 for (i, cpu) in enumerate(system.cpu):
130 #
131 # Tie the cpu ports to the correct ruby system ports
132 #
133 cpu.icache_port = system.ruby._cpu_ruby_ports[i].port
134 cpu.dcache_port = system.ruby._cpu_ruby_ports[i].port
135 if buildEnv['TARGET_ISA'] == "x86":
136 cpu.itb.walker.port = system.ruby._cpu_ruby_ports[i].port
137 cpu.dtb.walker.port = system.ruby._cpu_ruby_ports[i].port
138 cpu.interrupts.pio = system.piobus.port
139 cpu.interrupts.int_port = system.piobus.port
140
141 root = Root(full_system = True, system = system)
142
143 Simulation.run(options, root, system, FutureClass)