From 004478222406bd43054c43e3779d03e575ab143e Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Thu, 17 Apr 2025 00:34:22 -0700 Subject: [PATCH] eth: Remove FIFO pipeline registers for statistics FIFOs in distributed RAM Signed-off-by: Alex Forencich --- rtl/eth/taxi_eth_mac_stats.sv | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtl/eth/taxi_eth_mac_stats.sv b/rtl/eth/taxi_eth_mac_stats.sv index 1fb5b61..bc746a4 100644 --- a/rtl/eth/taxi_eth_mac_stats.sv +++ b/rtl/eth/taxi_eth_mac_stats.sv @@ -226,6 +226,7 @@ tx_stats_inst ( taxi_axis_async_fifo #( .DEPTH(32), + .RAM_PIPELINE(0), .FRAME_FIFO(1'b0), .DROP_BAD_FRAME(1'b0), .DROP_WHEN_FULL(1'b0) @@ -389,6 +390,7 @@ rx_stats_inst ( taxi_axis_async_fifo #( .DEPTH(32), + .RAM_PIPELINE(0), .FRAME_FIFO(1'b0), .DROP_BAD_FRAME(1'b0), .DROP_WHEN_FULL(1'b0)