Skip to content

Commit ec08047

Browse files
committedMar 27, 2015
mibuild/sim: use the same architecture we use for others backends
1 parent de31103 commit ec08047

File tree

5 files changed

+44
-18
lines changed

5 files changed

+44
-18
lines changed
 

‎mibuild/platforms/sim.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from mibuild.generic_platform import *
2-
from mibuild.sim.verilator import VerilatorPlatform
2+
from mibuild.sim import SimPlatform
33

44
class SimPins(Pins):
55
def __init__(self, n):
@@ -31,13 +31,13 @@ def __init__(self, n):
3131
),
3232
]
3333

34-
class Platform(VerilatorPlatform):
34+
class Platform(SimPlatform):
3535
is_sim = True
3636
default_clk_name = "sys_clk"
3737
default_clk_period = 1000 # on modern computers simulate at ~ 1MHz
3838

3939
def __init__(self):
40-
VerilatorPlatform.__init__(self, "SIM", _io)
40+
SimPlatform.__init__(self, "SIM", _io)
4141

4242
def do_finalize(self, fragment):
4343
pass

‎mibuild/sim/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from mibuild.sim.platform import SimPlatform

‎mibuild/sim/common.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sim_special_overrides = {}

‎mibuild/sim/platform.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from mibuild.generic_platform import GenericPlatform
2+
from mibuild.sim import common, verilator
3+
4+
class SimPlatform(GenericPlatform):
5+
def __init__(self, *args, toolchain="verilator", **kwargs):
6+
GenericPlatform.__init__(self, *args, **kwargs)
7+
if toolchain == "verilator":
8+
self.toolchain = verilator.SimVerilatorToolchain()
9+
else:
10+
raise ValueError("Unknown toolchain")
11+
12+
def get_verilog(self, *args, special_overrides=dict(), **kwargs):
13+
so = dict(common.sim_special_overrides)
14+
so.update(special_overrides)
15+
return GenericPlatform.get_verilog(self, *args, special_overrides=so, **kwargs)
16+
17+
def build(self, *args, **kwargs):
18+
return self.toolchain.build(self, *args, **kwargs)
19+

‎mibuild/sim/verilator.py

+20-15
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@
77
from migen.fhdl.structure import _Fragment
88
from mibuild.generic_platform import *
99

10-
def _build_tb(platform, serial, template):
10+
from mibuild import tools
11+
from mibuild.sim import common
12+
13+
def _build_tb(platform, vns, serial, template):
1114

1215
def io_name(ressource, subsignal=None):
1316
res = platform.lookup_request(ressource)
1417
if subsignal is not None:
1518
res = getattr(res, subsignal)
16-
return platform.vns.get_name(res)
19+
return vns.get_name(res)
1720

1821
ios = """
1922
#define SYS_CLK dut->{sys_clk}
@@ -79,7 +82,7 @@ def io_name(ressource, subsignal=None):
7982
f.close()
8083
tools.write_to_file("dut_tb.cpp", content)
8184

82-
def _build_sim(platform, build_name, include_paths, sim_path, serial, verbose):
85+
def _build_sim(platform, vns, build_name, include_paths, sim_path, serial, verbose):
8386
include = ""
8487
for path in include_paths:
8588
include += "-I"+path+" "
@@ -95,7 +98,7 @@ def _build_sim(platform, build_name, include_paths, sim_path, serial, verbose):
9598
build_script_file = "build_" + build_name + ".sh"
9699
tools.write_to_file(build_script_file, build_script_contents, force_unix=True)
97100

98-
_build_tb(platform, serial, os.path.join("..", sim_path,"dut_tb.cpp"))
101+
_build_tb(platform, vns, serial, os.path.join("..", sim_path,"dut_tb.cpp"))
99102
if verbose:
100103
r = subprocess.call(["bash", build_script_file])
101104
else:
@@ -112,32 +115,34 @@ def _run_sim(build_name):
112115
if r != 0:
113116
raise OSError("Subprocess failed")
114117

115-
class VerilatorPlatform(GenericPlatform):
118+
class SimVerilatorToolchain:
116119
# XXX fir sim_path
117-
def build(self, soc, build_dir="build", build_name="top",
120+
def build(self, platform, fragment, build_dir="build", build_name="top",
118121
sim_path="../migen/mibuild/sim/", serial="console",
119122
run=True, verbose=False):
120123
tools.mkdir_noerror(build_dir)
121124
os.chdir(build_dir)
122125

123-
self.soc = soc
124-
fragment = soc.get_fragment()
125-
self.finalize(fragment)
126-
v_src, vns = self.get_verilog(fragment)
127-
named_sc, named_pc = self.resolve_signals(vns)
128-
self.vns = vns
126+
if not isinstance(fragment, _Fragment):
127+
fragment = fragment.get_fragment()
128+
platform.finalize(fragment)
129+
130+
v_src, vns = platform.get_verilog(fragment)
131+
named_sc, named_pc = platform.resolve_signals(vns)
129132
v_file = "dut.v"
130133
tools.write_to_file(v_file, v_src)
131134

132135
include_paths = []
133-
for source in self.sources:
136+
for source in platform.sources:
134137
path = os.path.dirname(source[0]).replace("\\", "\/")
135138
if path not in include_paths:
136139
include_paths.append(path)
137-
include_paths += self.verilog_include_paths
138-
_build_sim(self, build_name, include_paths, sim_path, serial, verbose)
140+
include_paths += platform.verilog_include_paths
141+
_build_sim(platform, vns, build_name, include_paths, sim_path, serial, verbose)
139142

140143
if run:
141144
_run_sim(build_name)
142145

143146
os.chdir("..")
147+
148+
return vns

0 commit comments

Comments
 (0)