storage: simplify run length encoder...

This commit is contained in:
Florent Kermarrec 2014-05-22 18:13:27 +02:00
parent 0bc1cd6f77
commit 9a059336bf
1 changed files with 29 additions and 41 deletions

View File

@ -18,56 +18,44 @@ class RunLengthEncoder(Module, AutoCSR):
### ###
enable = self._r_enable.storage enable = self._r_enable.storage
stb_i = self.sink.stb
dat_i = self.sink.dat
# Register Input fsm = FSM(reset_state="BYPASS")
stb_i_d = Signal() self.submodules += fsm
dat_i_d = Signal(width)
sink_d = rec_dat(width)
self.sync += If(self.sink.stb, sink_d.eq(self.sink))
cnt = Signal(max=length)
cnt_inc = Signal()
cnt_reset = Signal()
cnt_max = Signal()
self.sync += \ self.sync += \
If(stb_i, If(cnt_reset,
dat_i_d.eq(dat_i), cnt.eq(1),
stb_i_d.eq(stb_i) ).Elif(cnt_inc,
cnt.eq(cnt+1)
) )
self.comb += cnt_max.eq(cnt == length)
# Detect change
change = Signal() change = Signal()
self.comb += change.eq(stb_i & (~enable | (dat_i_d != dat_i))) self.comb += change.eq(self.sink.stb & (self.sink.dat != sink_d.dat))
change_d = Signal() fsm.act("BYPASS",
change_rising = Signal() sink_d.connect(self.source),
self.sync += If(stb_i, change_d.eq(change)) cnt_reset.eq(1),
self.comb += change_rising.eq(stb_i & (change & ~change_d)) If(enable & ~change & self.sink.stb, NextState("COUNT"))
# Generate RLE word
rle_cnt = Signal(max=length)
rle_max = Signal()
self.comb += If(rle_cnt == length, rle_max.eq(enable))
self.sync += \
If(change | rle_max,
rle_cnt.eq(0)
).Else(
rle_cnt.eq(rle_cnt + 1)
) )
# Mux RLE word and data fsm.act("COUNT",
stb_o = self.source.stb cnt_inc.eq(self.sink.stb),
dat_o = self.source.dat If(change | cnt_max | ~enable,
self.source.stb.eq(1),
self.comb += \ self.source.dat[width-1].eq(1), # Set RLE bit
If(change_rising & ~rle_max, self.source.dat[:flen(cnt)].eq(cnt),
stb_o.eq(1), NextState("BYPASS")
dat_o[width-1].eq(1),
dat_o[:flen(rle_cnt)].eq(rle_cnt)
).Elif(change_d | rle_max,
stb_o.eq(stb_i_d),
dat_o.eq(dat_i_d)
).Else(
stb_o.eq(0),
) )
),
class Recorder(Module, AutoCSR): class Recorder(Module, AutoCSR):
def __init__(self, width, depth): def __init__(self, width, depth):