Skip to content
Snippets Groups Projects
Commit 4a102d7e authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

Replaced dp_fifo_fill_dc with dp_fifo_fill_eop in tr_10GbE

parent 63f267c2
No related branches found
No related tags found
1 merge request!2Replaced dp_fifo_fill_dc with dp_fifo_fill_eop in tr_10GbE
...@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment