litex/migen/uio/ioo.py

82 lines
2.5 KiB
Python
Raw Normal View History

2012-11-17 13:54:50 -05:00
from migen.fhdl.structure import *
2013-02-22 11:56:35 -05:00
from migen.fhdl.specials import Memory
2012-11-17 13:54:50 -05:00
from migen.flow.actor import *
2012-12-14 09:55:38 -05:00
from migen.flow.transactions import *
from migen.actorlib.sim import TokenExchanger
2012-11-23 10:23:24 -05:00
from migen.bus import wishbone, memory
2012-11-17 16:25:42 -05:00
from migen.bus.transactions import *
from migen.uio.trampoline import Trampoline
2012-11-17 13:54:50 -05:00
class UnifiedIOObject(Actor):
def __init__(self, dataflow=None, buses={}):
if dataflow is not None:
2012-12-18 08:54:33 -05:00
Actor.__init__(self, *dataflow)
2012-11-17 13:54:50 -05:00
self.buses = buses
2012-11-23 10:23:24 -05:00
self._memories = set(v for v in self.buses.values() if isinstance(v, Memory))
def get_fragment(self):
2013-02-22 11:56:35 -05:00
return Fragment(specials={self._memories})
2012-11-17 13:55:33 -05:00
(_WAIT_COMPLETE, _WAIT_POLL) = range(2)
class UnifiedIOSimulation(UnifiedIOObject):
def __init__(self, generator, dataflow=None, buses={}):
self.generator = Trampoline(generator)
2012-12-18 08:54:33 -05:00
UnifiedIOObject.__init__(self, dataflow, buses)
2012-11-17 13:55:33 -05:00
self.callers = []
self.busname_to_caller_id = {}
if dataflow is not None:
2012-11-17 16:25:42 -05:00
self.callers.append(TokenExchanger(self.dispatch_g(0), self))
2012-11-17 13:55:33 -05:00
for k, v in self.buses.items():
caller_id = len(self.callers)
self.busname_to_caller_id[k] = caller_id
2012-11-17 16:25:42 -05:00
g = self.dispatch_g(caller_id)
2012-11-17 13:55:33 -05:00
if isinstance(v, wishbone.Interface):
caller = wishbone.Initiator(g, v)
2012-11-23 10:23:24 -05:00
elif isinstance(v, Memory):
caller = memory.Initiator(g, v)
2012-11-17 13:55:33 -05:00
else:
raise NotImplementedError
self.callers.append(caller)
self.dispatch_state = _WAIT_COMPLETE
self.dispatch_caller = 0
self.pending_transaction = None
def identify_transaction(self, t):
if isinstance(t, Token):
return 0
elif isinstance(t, TRead) or isinstance(t, TWrite):
if t.busname is None:
if len(self.busname_to_caller_id) != 1:
raise TypeError
else:
return list(self.busname_to_caller_id.values())[0]
else:
return self.busname_to_caller_id[t.busname]
else:
raise TypeError
def dispatch_g(self, caller_id):
while True:
if self.dispatch_state == _WAIT_COMPLETE and self.dispatch_caller == caller_id:
transaction = next(self.generator)
tr_cid = self.identify_transaction(transaction)
self.dispatch_caller = tr_cid
if tr_cid == caller_id:
yield transaction
else:
self.pending_transaction = transaction
self.dispatch_state = _WAIT_POLL
yield None
elif self.dispatch_state == _WAIT_POLL and self.dispatch_caller == caller_id:
self.dispatch_state = _WAIT_COMPLETE
yield self.pending_transaction
else:
yield None
def get_fragment(self):
2012-12-18 08:54:33 -05:00
f = UnifiedIOObject.get_fragment(self)
2012-11-23 10:23:24 -05:00
return sum([c.get_fragment() for c in self.callers], f)