forked from M-Labs/artiq
unify rtio/drtio kernel interface
This commit is contained in:
parent
07ad00c1ca
commit
0c1a76d668
|
@ -4,24 +4,7 @@ from migen.genlib.cdc import MultiReg
|
||||||
from misoc.interconnect.csr import *
|
from misoc.interconnect.csr import *
|
||||||
|
|
||||||
from artiq.gateware.rtio.cdc import RTIOCounter
|
from artiq.gateware.rtio.cdc import RTIOCounter
|
||||||
|
from artiq.gateware.rtio.kernel_csrs import KernelCSRs
|
||||||
|
|
||||||
class _KernelCSRs(AutoCSR):
|
|
||||||
def __init__(self):
|
|
||||||
# chan_sel must be written at least 1 cycle before we
|
|
||||||
# and held stable until the transaction is complete.
|
|
||||||
# timestamp must be written at least 1 cycle before we.
|
|
||||||
self.chan_sel = CSRStorage(16)
|
|
||||||
self.o_data = CSRStorage(64)
|
|
||||||
self.o_address = CSRStorage(16)
|
|
||||||
self.o_timestamp = CSRStorage(64)
|
|
||||||
self.o_we = CSR()
|
|
||||||
self.o_status = CSRStatus(3)
|
|
||||||
self.o_underflow_reset = CSR()
|
|
||||||
self.o_sequence_error_reset = CSR()
|
|
||||||
|
|
||||||
self.counter = CSRStatus(64)
|
|
||||||
self.counter_update = CSR()
|
|
||||||
|
|
||||||
|
|
||||||
class _CSRs(AutoCSR):
|
class _CSRs(AutoCSR):
|
||||||
|
@ -45,7 +28,7 @@ class _CSRs(AutoCSR):
|
||||||
|
|
||||||
class RTController(Module):
|
class RTController(Module):
|
||||||
def __init__(self, rt_packets, channel_count, fine_ts_width):
|
def __init__(self, rt_packets, channel_count, fine_ts_width):
|
||||||
self.kcsrs = _KernelCSRs()
|
self.kcsrs = KernelCSRs()
|
||||||
self.csrs = _CSRs()
|
self.csrs = _CSRs()
|
||||||
|
|
||||||
chan_sel = Signal(16)
|
chan_sel = Signal(16)
|
||||||
|
|
|
@ -5,9 +5,9 @@ from migen import *
|
||||||
from migen.genlib.record import Record
|
from migen.genlib.record import Record
|
||||||
from migen.genlib.fifo import AsyncFIFO
|
from migen.genlib.fifo import AsyncFIFO
|
||||||
from migen.genlib.resetsync import AsyncResetSynchronizer
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
||||||
from misoc.interconnect.csr import *
|
|
||||||
|
|
||||||
from artiq.gateware.rtio import rtlink
|
from artiq.gateware.rtio import rtlink
|
||||||
|
from artiq.gateware.rtio.kernel_csrs import KernelCSRs
|
||||||
from artiq.gateware.rtio.cdc import *
|
from artiq.gateware.rtio.cdc import *
|
||||||
|
|
||||||
|
|
||||||
|
@ -265,36 +265,6 @@ class LogChannel:
|
||||||
self.overrides = []
|
self.overrides = []
|
||||||
|
|
||||||
|
|
||||||
class _KernelCSRs(AutoCSR):
|
|
||||||
def __init__(self, chan_sel_width,
|
|
||||||
data_width, address_width, full_ts_width):
|
|
||||||
self.reset = CSRStorage(reset=1)
|
|
||||||
self.reset_phy = CSRStorage(reset=1)
|
|
||||||
self.chan_sel = CSRStorage(chan_sel_width)
|
|
||||||
|
|
||||||
if data_width:
|
|
||||||
self.o_data = CSRStorage(data_width)
|
|
||||||
if address_width:
|
|
||||||
self.o_address = CSRStorage(address_width)
|
|
||||||
self.o_timestamp = CSRStorage(full_ts_width)
|
|
||||||
self.o_we = CSR()
|
|
||||||
self.o_status = CSRStatus(5)
|
|
||||||
self.o_underflow_reset = CSR()
|
|
||||||
self.o_sequence_error_reset = CSR()
|
|
||||||
self.o_collision_reset = CSR()
|
|
||||||
self.o_busy_reset = CSR()
|
|
||||||
|
|
||||||
if data_width:
|
|
||||||
self.i_data = CSRStatus(data_width)
|
|
||||||
self.i_timestamp = CSRStatus(full_ts_width)
|
|
||||||
self.i_re = CSR()
|
|
||||||
self.i_status = CSRStatus(2)
|
|
||||||
self.i_overflow_reset = CSR()
|
|
||||||
|
|
||||||
self.counter = CSRStatus(full_ts_width)
|
|
||||||
self.counter_update = CSR()
|
|
||||||
|
|
||||||
|
|
||||||
class RTIO(Module):
|
class RTIO(Module):
|
||||||
def __init__(self, channels, full_ts_width=63, guard_io_cycles=20):
|
def __init__(self, channels, full_ts_width=63, guard_io_cycles=20):
|
||||||
data_width = max(rtlink.get_data_width(c.interface)
|
data_width = max(rtlink.get_data_width(c.interface)
|
||||||
|
@ -308,10 +278,7 @@ class RTIO(Module):
|
||||||
self.address_width = address_width
|
self.address_width = address_width
|
||||||
self.fine_ts_width = fine_ts_width
|
self.fine_ts_width = fine_ts_width
|
||||||
|
|
||||||
# CSRs
|
self.kcsrs = KernelCSRs()
|
||||||
self.kcsrs = _KernelCSRs(bits_for(len(channels)-1),
|
|
||||||
data_width, address_width,
|
|
||||||
full_ts_width)
|
|
||||||
|
|
||||||
# Clocking/Reset
|
# Clocking/Reset
|
||||||
# Create rsys, rio and rio_phy domains based on sys and rtio
|
# Create rsys, rio and rio_phy domains based on sys and rtio
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
from misoc.interconnect.csr import *
|
||||||
|
|
||||||
|
|
||||||
|
class KernelCSRs(AutoCSR):
|
||||||
|
def __init__(self):
|
||||||
|
self.reset = CSRStorage(reset=1)
|
||||||
|
self.reset_phy = CSRStorage(reset=1)
|
||||||
|
self.chan_sel = CSRStorage(16)
|
||||||
|
|
||||||
|
self.o_data = CSRStorage(32)
|
||||||
|
self.o_address = CSRStorage(16)
|
||||||
|
self.o_timestamp = CSRStorage(64)
|
||||||
|
self.o_we = CSR()
|
||||||
|
self.o_status = CSRStatus(5)
|
||||||
|
self.o_underflow_reset = CSR()
|
||||||
|
self.o_sequence_error_reset = CSR()
|
||||||
|
self.o_collision_reset = CSR()
|
||||||
|
self.o_busy_reset = CSR()
|
||||||
|
|
||||||
|
self.i_data = CSRStatus(32)
|
||||||
|
self.i_timestamp = CSRStatus(64)
|
||||||
|
self.i_re = CSR()
|
||||||
|
self.i_status = CSRStatus(2)
|
||||||
|
self.i_overflow_reset = CSR()
|
||||||
|
|
||||||
|
self.counter = CSRStatus(64)
|
||||||
|
self.counter_update = CSR()
|
Loading…
Reference in New Issue