Skip to content

Commit

Permalink
Generate tx_limit statistics output when hitting the CPLH/CPLD buffer…
Browse files Browse the repository at this point in the history
… limit

Signed-off-by: Alex Forencich <[email protected]>
  • Loading branch information
alexforencich committed Jan 14, 2024
1 parent 2f03f20 commit b856007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/dma_if_pcie_rd.v
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ always @* begin
stat_rd_req_start_valid_next = 1'b0;
stat_rd_op_table_full_next = op_tag_fifo_rd_ptr_reg == op_tag_fifo_wr_ptr_reg;
stat_rd_no_tags_next = !req_pcie_tag_valid_reg;
stat_rd_tx_limit_next = (TX_SEQ_NUM_ENABLE && !active_tx_count_av_reg);
stat_rd_tx_limit_next = (TX_SEQ_NUM_ENABLE && !active_tx_count_av_reg) || !active_cplh_fc_av_reg || !active_cpld_fc_av_reg;
stat_rd_tx_stall_next = tx_rd_req_tlp_valid_reg && !tx_rd_req_tlp_ready;

req_pcie_addr_next = req_pcie_addr_reg;
Expand Down

0 comments on commit b856007

Please sign in to comment.