Skip to content
Snippets Groups Projects

Replaced dp_fifo_fill_dc with dp_fifo_fill_eop in tr_10GbE

Merged Reinier van der Walle requested to merge STAT-263 into master
1 file
+ 10
9
Compare changes
  • Side-by-side
  • Inline
@@ -229,17 +229,18 @@ BEGIN
@@ -229,17 +229,18 @@ BEGIN
);
);
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
-- TX: FIFO: dp_clk -> tx_clk and with fill level so we can deliver packets to the MAC fast enough
-- TX: FIFO: dp_clk -> tx_clk and with fill level/eop trigger so we can deliver packets to the MAC fast enough
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
gen_dp_fifo_fill_dc : FOR i IN 0 TO g_nof_macs-1 GENERATE
gen_dp_fifo_fill_eop : FOR i IN 0 TO g_nof_macs-1 GENERATE
u_dp_fifo_fill_dc : ENTITY dp_lib.dp_fifo_fill_dc
u_dp_fifo_fill_eop : ENTITY dp_lib.dp_fifo_fill_eop
GENERIC MAP (
GENERIC MAP (
g_technology => g_technology,
g_technology => g_technology,
g_data_w => c_xgmii_data_w,
g_use_dual_clock => TRUE,
g_empty_w => c_tech_mac_10g_empty_w,
g_data_w => c_xgmii_data_w,
g_use_empty => TRUE,
g_empty_w => c_tech_mac_10g_empty_w,
g_fifo_fill => g_tx_fifo_fill,
g_use_empty => TRUE,
g_fifo_size => g_tx_fifo_size
g_fifo_fill => g_tx_fifo_fill,
 
g_fifo_size => g_tx_fifo_size
)
)
PORT MAP (
PORT MAP (
wr_rst => dp_rst,
wr_rst => dp_rst,
Loading