Skip to content

Commit 9943e75

Browse files
wkkunatmichalak
authored andcommitted
flow_standby_i2c: Document CombLoop
Signed-off-by: Wiktoria Kuna <[email protected]>
1 parent 29cedf2 commit 9943e75

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/ctrl/flow_standby_i2c.sv

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ module flow_standby_i2c
103103
acq_fifo_wdata_byte_id == AcqNackStart );
104104

105105
// TODO: Bug: Set proper ACQ FIFO depth
106+
// [LINT_ERROR: CombLoop] The signal 'acq_fifo_depth_o' is on a comb loop
107+
// path between the 'flow_standby_i2c' and 'i2c_target_fsm' modules, e.g.:
108+
// In 'flow_standby_i2c':
109+
// acq_fifo_wvalid_i -> state_d -> acq_fifo_depth_o
110+
// In 'i2c_target_fsm':
111+
// acq_fifo_depth_i -> stretch_addr -> acq_fifo_wvalid_o
106112
assign acq_fifo_depth_o = xfer_read ? 0 : {{(AcqFifoDepthWidth - 3){1'b0}},
107113
state_d == PushDWordToTTIQueue,
108114
transaction_byte_count[1:0]};

0 commit comments

Comments
 (0)