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

Use ref_sync as capture moment for the running MM total counts in dp_block_validate_err.

parent efb07bad
No related branches found
No related tags found
1 merge request!283Resolve L2SDP-696
......@@ -115,6 +115,10 @@ BEGIN
);
-- Validate error field
-- . Use ref_sync as capture moment for the running MM total counts in dp_block_validate_err.
-- The rx_packet_sosi does not have rx_packet_sosi.sync, because it carries encoded packets
-- and because the rx_packet_sosi can carry packets from multiple sources (so multiple sync
-- intervals multiplexed on one lane).
u_dp_block_validate_err : ENTITY dp_lib.dp_block_validate_err
GENERIC MAP (
g_cnt_w => c_word_w, -- <= c_word_w = 32
......@@ -123,12 +127,15 @@ BEGIN
g_min_block_size => c_packet_size,
g_nof_err_counts => g_nof_err_counts,
g_fifo_size => c_packet_size, -- can be same as g_max_block_size as src_in.ready = '1'
g_use_sync => FALSE, -- no need to pass on ref_sync
g_data_w => g_data_w
)
PORT MAP (
dp_rst => dp_rst,
dp_clk => dp_clk,
ref_sync => ref_sync,
snk_in => packet_sosi,
src_out => validated_sosi,
......
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