litex/migen/actorlib/sim.py

99 lines
2.6 KiB
Python
Raw Normal View History

from migen.fhdl.std import *
from migen.flow.actor import *
2012-12-14 09:55:38 -05:00
from migen.flow.transactions import *
# Generators yield None or a tuple of Tokens.
# Tokens for Sink endpoints are pulled and the "value" field filled in.
# Tokens for Source endpoints are pushed according to their "value" field.
#
# NB: the possibility to push several tokens at once is important to interact
# with actors that only accept a group of tokens when all of them are available.
class TokenExchanger(Module):
def __init__(self, generator, actor):
self.generator = generator
self.actor = actor
self.active = set()
2012-12-14 13:16:22 -05:00
self.busy = True
self.done = False
def _process_transactions(self, s):
completed = set()
for token in self.active:
2013-04-10 13:12:42 -04:00
ep = getattr(self.actor, token.endpoint)
if isinstance(ep, Sink):
if s.rd(ep.ack) and s.rd(ep.stb):
2013-04-10 13:12:42 -04:00
token.value = s.multiread(ep.payload)
completed.add(token)
s.wr(ep.ack, 0)
elif isinstance(ep, Source):
if s.rd(ep.ack) and s.rd(ep.stb):
completed.add(token)
s.wr(ep.stb, 0)
else:
raise TypeError
self.active -= completed
2012-12-14 13:16:22 -05:00
if not self.active:
self.busy = True
def _update_control_signals(self, s):
for token in self.active:
2013-04-10 13:12:42 -04:00
ep = getattr(self.actor, token.endpoint)
if isinstance(ep, Sink):
s.wr(ep.ack, 1)
elif isinstance(ep, Source):
2013-04-10 13:12:42 -04:00
s.multiwrite(ep.payload, token.value)
s.wr(ep.stb, 1)
else:
raise TypeError
def _next_transactions(self):
try:
transactions = next(self.generator)
except StopIteration:
self.done = True
2012-12-14 13:16:22 -05:00
self.busy = False
transactions = None
if isinstance(transactions, Token):
self.active = {transactions}
2013-04-10 13:12:42 -04:00
elif isinstance(transactions, (tuple, list, set)):
self.active = set(transactions)
elif transactions is None:
self.active = set()
else:
raise TypeError
if self.active and all(transaction.idle_wait for transaction in self.active):
2012-12-14 13:16:22 -05:00
self.busy = False
def do_simulation(self, s):
if not self.done:
if self.active:
self._process_transactions(s)
if not self.active:
self._next_transactions()
self._update_control_signals(s)
do_simulation.initialize = True
2012-11-17 08:15:51 -05:00
2013-04-10 13:12:42 -04:00
class SimActor(Module):
def __init__(self, generator):
self.busy = Signal()
self.submodules.token_exchanger = TokenExchanger(generator, self)
2012-11-17 08:15:51 -05:00
2013-04-10 13:12:42 -04:00
def do_simulation(self, s):
2012-12-14 13:16:22 -05:00
s.wr(self.busy, self.token_exchanger.busy)
2013-04-10 13:12:42 -04:00
def _dumper_gen(prefix):
while True:
t = Token("result")
yield t
if len(t.value) > 1:
s = str(t.value)
else:
s = str(list(t.value.values())[0])
print(prefix + s)
2012-11-23 18:00:07 -05:00
class Dumper(SimActor):
def __init__(self, layout, prefix=""):
2013-04-10 13:12:42 -04:00
self.result = Sink(layout)
SimActor.__init__(self, _dumper_gen(prefix))