forked from M-Labs/artiq
drtio: ensure 2 cycles between frames on the link
This gives time for setting chan_sel before cmd on CRI.
This commit is contained in:
parent
251b9a2b0d
commit
051bafbfd9
|
@ -208,6 +208,10 @@ class RTPacketMaster(Module):
|
||||||
self.sync.rtio += If(tsc_value_load, tsc_value.eq(self.tsc_value))
|
self.sync.rtio += If(tsc_value_load, tsc_value.eq(self.tsc_value))
|
||||||
|
|
||||||
tx_fsm.act("IDLE",
|
tx_fsm.act("IDLE",
|
||||||
|
# Ensure 2 cycles between frames on the link.
|
||||||
|
NextState("READY")
|
||||||
|
)
|
||||||
|
tx_fsm.act("READY",
|
||||||
If(sr_buf_readable,
|
If(sr_buf_readable,
|
||||||
If(sr_notwrite,
|
If(sr_notwrite,
|
||||||
Case(sr_address[0], {
|
Case(sr_address[0], {
|
||||||
|
|
|
@ -110,6 +110,10 @@ class RTPacketRepeater(Module):
|
||||||
self.submodules += tx_fsm
|
self.submodules += tx_fsm
|
||||||
|
|
||||||
tx_fsm.act("IDLE",
|
tx_fsm.act("IDLE",
|
||||||
|
# Ensure 2 cycles between frames on the link.
|
||||||
|
NextState("READY")
|
||||||
|
)
|
||||||
|
tx_fsm.act("READY",
|
||||||
If(self.set_time_stb,
|
If(self.set_time_stb,
|
||||||
tsc_value_load.eq(1),
|
tsc_value_load.eq(1),
|
||||||
NextState("SET_TIME")
|
NextState("SET_TIME")
|
||||||
|
|
|
@ -27,6 +27,7 @@ class TestRepeater(unittest.TestCase):
|
||||||
pt, pr, ts, dut = create_dut(nwords)
|
pt, pr, ts, dut = create_dut(nwords)
|
||||||
|
|
||||||
def send():
|
def send():
|
||||||
|
yield
|
||||||
yield ts.eq(0x12345678)
|
yield ts.eq(0x12345678)
|
||||||
yield dut.set_time_stb.eq(1)
|
yield dut.set_time_stb.eq(1)
|
||||||
while not (yield dut.set_time_ack):
|
while not (yield dut.set_time_ack):
|
||||||
|
@ -61,6 +62,7 @@ class TestRepeater(unittest.TestCase):
|
||||||
pt, pr, ts, dut = create_dut(nwords)
|
pt, pr, ts, dut = create_dut(nwords)
|
||||||
|
|
||||||
def send():
|
def send():
|
||||||
|
yield
|
||||||
for channel, timestamp, address, data in test_writes:
|
for channel, timestamp, address, data in test_writes:
|
||||||
yield dut.cri.chan_sel.eq(channel)
|
yield dut.cri.chan_sel.eq(channel)
|
||||||
yield dut.cri.timestamp.eq(timestamp)
|
yield dut.cri.timestamp.eq(timestamp)
|
||||||
|
@ -96,6 +98,7 @@ class TestRepeater(unittest.TestCase):
|
||||||
|
|
||||||
def send_requests():
|
def send_requests():
|
||||||
for i in range(10):
|
for i in range(10):
|
||||||
|
yield
|
||||||
yield dut.cri.chan_sel.eq(i << 16)
|
yield dut.cri.chan_sel.eq(i << 16)
|
||||||
yield dut.cri.cmd.eq(cri.commands["get_buffer_space"])
|
yield dut.cri.cmd.eq(cri.commands["get_buffer_space"])
|
||||||
yield
|
yield
|
||||||
|
|
Loading…
Reference in New Issue