forked from M-Labs/artiq
106 lines
3.5 KiB
Python
106 lines
3.5 KiB
Python
from migen import *
|
|
|
|
from artiq.gateware.rtio.sed import layouts
|
|
from artiq.gateware.rtio.sed.lane_distributor import *
|
|
from artiq.gateware.rtio.sed.fifos import *
|
|
from artiq.gateware.rtio.sed.gates import *
|
|
from artiq.gateware.rtio.sed.output_driver import *
|
|
|
|
|
|
__all__ = ["SED"]
|
|
|
|
|
|
class SED(Module):
|
|
def __init__(self, channels, glbl_fine_ts_width, mode,
|
|
lane_count=8, fifo_depth=128, enable_spread=True,
|
|
quash_channels=[], report_buffer_space=False, interface=None):
|
|
if mode == "sync":
|
|
lane_dist_cdr = lambda x: x
|
|
fifos_cdr = lambda x: x
|
|
gates_cdr = lambda x: x
|
|
output_driver_cdr = lambda x: x
|
|
elif mode == "async":
|
|
lane_dist_cdr = ClockDomainsRenamer("rsys")
|
|
fifos_cdr = ClockDomainsRenamer({"write": "rsys", "read": "rio"})
|
|
gates_cdr = ClockDomainsRenamer("rio")
|
|
output_driver_cdr = ClockDomainsRenamer("rio")
|
|
else:
|
|
raise ValueError
|
|
|
|
seqn_width = layouts.seqn_width(lane_count, fifo_depth)
|
|
|
|
self.submodules.lane_dist = lane_dist_cdr(
|
|
LaneDistributor(lane_count, seqn_width,
|
|
layouts.fifo_payload(channels),
|
|
[channel.interface.o.delay for channel in channels],
|
|
glbl_fine_ts_width,
|
|
enable_spread=enable_spread,
|
|
quash_channels=quash_channels,
|
|
interface=interface))
|
|
self.submodules.fifos = fifos_cdr(
|
|
FIFOs(lane_count, fifo_depth,
|
|
layouts.fifo_payload(channels), mode, report_buffer_space))
|
|
self.submodules.gates = gates_cdr(
|
|
Gates(lane_count, seqn_width,
|
|
layouts.fifo_payload(channels),
|
|
layouts.output_network_payload(channels, glbl_fine_ts_width)))
|
|
self.submodules.output_driver = output_driver_cdr(
|
|
OutputDriver(channels, glbl_fine_ts_width, lane_count, seqn_width))
|
|
|
|
for o, i in zip(self.lane_dist.output, self.fifos.input):
|
|
self.comb += o.connect(i)
|
|
for o, i in zip(self.fifos.output, self.gates.input):
|
|
self.comb += o.connect(i)
|
|
for o, i in zip(self.gates.output, self.output_driver.input):
|
|
self.comb += i.eq(o)
|
|
|
|
if report_buffer_space:
|
|
self.comb += [
|
|
self.cri.o_buffer_space_valid.eq(1),
|
|
self.cri.o_buffer_space.eq(self.fifos.buffer_space)
|
|
]
|
|
|
|
@property
|
|
def cri(self):
|
|
return self.lane_dist.cri
|
|
|
|
# in CRI clock domain
|
|
@property
|
|
def minimum_coarse_timestamp(self):
|
|
return self.lane_dist.minimum_coarse_timestamp
|
|
|
|
# in I/O clock domain
|
|
@property
|
|
def coarse_timestamp(self):
|
|
return self.gates.coarse_timestamp
|
|
|
|
# in CRI clock domain
|
|
@property
|
|
def sequence_error(self):
|
|
return self.lane_dist.sequence_error
|
|
|
|
# in CRI clock domain
|
|
@property
|
|
def sequence_error_channel(self):
|
|
return self.lane_dist.sequence_error_channel
|
|
|
|
# in I/O clock domain
|
|
@property
|
|
def collision(self):
|
|
return self.output_driver.collision
|
|
|
|
# in I/O clock domain
|
|
@property
|
|
def collision_channel(self):
|
|
return self.output_driver.collision_channel
|
|
|
|
# in I/O clock domain
|
|
@property
|
|
def busy(self):
|
|
return self.output_driver.busy
|
|
|
|
# in I/O clock domain
|
|
@property
|
|
def busy_channel(self):
|
|
return self.output_driver.busy_channel
|