drtio: ensure 2 cycles between frames on the link

This gives time for setting chan_sel before cmd on CRI.
pull/1212/head
Sebastien Bourdeauducq 2018-09-11 22:18:42 +08:00
parent 251b9a2b0d
commit 051bafbfd9
3 changed files with 11 additions and 0 deletions

View File

@ -208,6 +208,10 @@ class RTPacketMaster(Module):
self.sync.rtio += If(tsc_value_load, tsc_value.eq(self.tsc_value))
tx_fsm.act("IDLE",
# Ensure 2 cycles between frames on the link.
NextState("READY")
)
tx_fsm.act("READY",
If(sr_buf_readable,
If(sr_notwrite,
Case(sr_address[0], {

View File

@ -110,6 +110,10 @@ class RTPacketRepeater(Module):
self.submodules += tx_fsm
tx_fsm.act("IDLE",
# Ensure 2 cycles between frames on the link.
NextState("READY")
)
tx_fsm.act("READY",
If(self.set_time_stb,
tsc_value_load.eq(1),
NextState("SET_TIME")

View File

@ -27,6 +27,7 @@ class TestRepeater(unittest.TestCase):
pt, pr, ts, dut = create_dut(nwords)
def send():
yield
yield ts.eq(0x12345678)
yield dut.set_time_stb.eq(1)
while not (yield dut.set_time_ack):
@ -61,6 +62,7 @@ class TestRepeater(unittest.TestCase):
pt, pr, ts, dut = create_dut(nwords)
def send():
yield
for channel, timestamp, address, data in test_writes:
yield dut.cri.chan_sel.eq(channel)
yield dut.cri.timestamp.eq(timestamp)
@ -96,6 +98,7 @@ class TestRepeater(unittest.TestCase):
def send_requests():
for i in range(10):
yield
yield dut.cri.chan_sel.eq(i << 16)
yield dut.cri.cmd.eq(cri.commands["get_buffer_space"])
yield