We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29cedf2 commit 9943e75Copy full SHA for 9943e75
src/ctrl/flow_standby_i2c.sv
@@ -103,6 +103,12 @@ module flow_standby_i2c
103
acq_fifo_wdata_byte_id == AcqNackStart );
104
105
// 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
112
assign acq_fifo_depth_o = xfer_read ? 0 : {{(AcqFifoDepthWidth - 3){1'b0}},
113
state_d == PushDWordToTTIQueue,
114
transaction_byte_count[1:0]};
0 commit comments