Revert "core/refresher: synchronize valid"

This reverts commit 6620a91a22 because it fails to issue a refresh command
This commit is contained in:
2018-08-14 23:23:24 -04:00
parent a4be642d56
commit 16a852bda5
2 changed files with 5 additions and 6 deletions

View File

@ -329,7 +329,7 @@ class Multiplexer(Module, AutoCSR):
fsm.act("REFRESH",
steerer.sel[0].eq(STEER_REFRESH),
refresher.cmd.ready.eq(1),
If(~refresher.cmd.valid,
If(refresher.cmd.last,
NextState("READ")
)
)

View File

@ -45,16 +45,14 @@ class Refresher(Module):
self.comb += self.timer.wait.eq(settings.with_refresh & ~self.timer.done)
# Control FSM
cmd_valid = Signal()
self.submodules.fsm = fsm = FSM()
fsm.act("IDLE",
If(self.timer.done,
cmd_valid.eq(1),
NextState("WAIT_GRANT")
)
)
fsm.act("WAIT_GRANT",
cmd_valid.eq(1),
cmd.valid.eq(1),
If(cmd.ready,
seq_start.eq(1),
NextState("WAIT_SEQ")
@ -62,8 +60,9 @@ class Refresher(Module):
)
fsm.act("WAIT_SEQ",
If(seq_done,
cmd_valid.eq(0),
cmd.last.eq(1),
NextState("IDLE")
).Else(
cmd.valid.eq(1)
)
)
self.sync += cmd.valid.eq(cmd_valid)