Skip to content
Snippets Groups Projects
Commit 183eaf40 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Use c_sync_timeout_xst for XST ring.

parent e49fabf5
No related branches found
No related tags found
1 merge request!353Resolve L2SDP-962
...@@ -435,6 +435,7 @@ architecture str of sdp_station is ...@@ -435,6 +435,7 @@ architecture str of sdp_station is
constant c_validate_channel : boolean := true; constant c_validate_channel : boolean := true;
constant c_validate_channel_mode : string := "="; constant c_validate_channel_mode : string := "=";
constant c_sync_timeout : natural := sel_a_b(g_sim, g_sim_sync_timeout, c_sdp_N_clk_sync_timeout); constant c_sync_timeout : natural := sel_a_b(g_sim, g_sim_sync_timeout, c_sdp_N_clk_sync_timeout);
constant c_sync_timeout_xst : natural := sel_a_b(g_sim, g_sim_sync_timeout, c_sdp_N_clk_sync_timeout_xst);
-- Use same Tx FIFO size for all lanes in the ring to ease the code, no need to optimize Tx FIFO RAM usage per lane. -- Use same Tx FIFO size for all lanes in the ring to ease the code, no need to optimize Tx FIFO RAM usage per lane.
-- The tr_10GbE uses dp_fifo_fill_eop, so rely on releasing packets (beamlets, crosslets) at eop instead -- The tr_10GbE uses dp_fifo_fill_eop, so rely on releasing packets (beamlets, crosslets) at eop instead
...@@ -1224,7 +1225,7 @@ begin ...@@ -1224,7 +1225,7 @@ begin
g_bsn_at_sync_check_channel => c_bsn_at_sync_check_channel, g_bsn_at_sync_check_channel => c_bsn_at_sync_check_channel,
g_validate_channel => c_validate_channel, g_validate_channel => c_validate_channel,
g_validate_channel_mode => c_validate_channel_mode, g_validate_channel_mode => c_validate_channel_mode,
g_sync_timeout => c_sync_timeout g_sync_timeout => c_sync_timeout_xst
) )
port map ( port map (
mm_rst => mm_rst, mm_rst => mm_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