Skip to content

Commit adda219

Browse files
authored
stream_arbiter_flushable: Do not lock prio arbiter (#222)
Setting `LockIn` while `ExtPrio = 1'b1` is disallowed by the `rr_arb_tree` and has no effect. Furthermore, locking a decision with a possibly lower priority violates the intent of the priority arbiter. Therefore, clear the `LockIn` parameter for the priority arbiter. Signed-off-by: Nils Wistoff <[email protected]>
1 parent f4d6406 commit adda219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stream_arbiter_flushable.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module stream_arbiter_flushable #(
5858
.DataType (DATA_T),
5959
.ExtPrio (1'b1),
6060
.AxiVldRdy (1'b1),
61-
.LockIn (1'b1)
61+
.LockIn (1'b0)
6262
) i_arbiter (
6363
.clk_i,
6464
.rst_ni,

0 commit comments

Comments
 (0)