Skip to content

Commit 77e0d27

Browse files
wkkunakgugala
authored andcommitted
CCC: Fix BDCAST RSTACT handling
In case of the broadcasted RSTACT the 'command_addr' is irrelevant. Reserved-byte header is already decoded in the primary I3C target FSM. In accordance to: MIPI I3C Basic v1.1.1 Fig. 76 RSTACT Format 1: Broadcast. Signed-off-by: Wiktoria Kuna <[email protected]>
1 parent 112d14f commit 77e0d27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ctrl/ccc.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ module ccc
923923
end
924924
// rstact (broadcast)
925925
`I3C_BCAST_RSTACT: begin
926-
if (state_q == RxDefByteTbit && bus_rx_done_i && ~is_byte_rsvd_addr) begin
926+
if (state_q == RxDefByteTbit && bus_rx_done_i) begin
927927
rst_action_valid <= 1'b1;
928928
end else begin
929929
rst_action_valid <= 1'b0;

0 commit comments

Comments
 (0)