hyperbus: add a timeout for long bursts

This commit is contained in:
Franck Jullien 2022-04-27 17:39:48 +02:00
parent 665367fe67
commit 5220984df8
1 changed files with 22 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class HyperRAM(Module):
This core favors portability and ease of use over performance. This core favors portability and ease of use over performance.
""" """
def __init__(self, pads, latency=6): def __init__(self, frequency, pads, latency=6, Tcsm=4e-6):
self.pads = pads self.pads = pads
self.bus = bus = wishbone.Interface() self.bus = bus = wishbone.Interface()
@ -61,6 +61,25 @@ class HyperRAM(Module):
else: else:
self.specials += DifferentialOutput(clk, pads.clk_p, pads.clk_n) self.specials += DifferentialOutput(clk, pads.clk_p, pads.clk_n)
# Timeout counter --------------------------------------------------------------------------
timeout_value = int(Tcsm * frequency)
timeout_cnt = Signal(32)
timeout_rst = Signal()
timeout = Signal()
self.sync += [
If(timeout_rst,
timeout_cnt.eq(0),
timeout.eq(0)
).Else(
If(timeout_cnt < timeout_value,
timeout_cnt.eq(timeout_cnt + 1)
).Else(
timeout.eq(1)
)
),
]
# Clock Generation (sys_clk/4) ------------------------------------------------------------- # Clock Generation (sys_clk/4) -------------------------------------------------------------
self.sync += clk_phase.eq(clk_phase + 1) self.sync += clk_phase.eq(clk_phase + 1)
cases = {} cases = {}
@ -122,6 +141,7 @@ class HyperRAM(Module):
first = Signal() first = Signal()
self.submodules.fsm = fsm = FSM(reset_state="IDLE") self.submodules.fsm = fsm = FSM(reset_state="IDLE")
fsm.act("IDLE", fsm.act("IDLE",
timeout_rst.eq(1),
NextValue(first, 1), NextValue(first, 1),
If(bus.cyc & bus.stb, If(bus.cyc & bus.stb,
If(clk_phase == 0, If(clk_phase == 0,
@ -172,7 +192,7 @@ class HyperRAM(Module):
If(n == (states - 1), If(n == (states - 1),
NextValue(first, 0), NextValue(first, 0),
# Continue burst when a consecutive access is ready. # Continue burst when a consecutive access is ready.
If(bus.stb & bus.cyc & (bus.we == bus_we) & (bus.adr == (bus_adr + 1)), If(bus.stb & bus.cyc & (bus.we == bus_we) & (bus.adr == (bus_adr + 1)) & ~timeout,
# Latch Bus. # Latch Bus.
bus_latch.eq(1), bus_latch.eq(1),
# Early Write Ack (to allow bursting). # Early Write Ack (to allow bursting).