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

improved description of dp_fifo_core_arr

parent 3271701f
No related branches found
No related tags found
1 merge request!113Resolve L2SDP-391
...@@ -26,24 +26,22 @@ ...@@ -26,24 +26,22 @@
-- Pass sop and eop along with the data through the FIFO if g_use_ctrl=TRUE. -- Pass sop and eop along with the data through the FIFO if g_use_ctrl=TRUE.
-- Default the RL=1, use g_fifo_rl=0 for a the show ahead FIFO. -- Default the RL=1, use g_fifo_rl=0 for a the show ahead FIFO.
-- Description: -- Description:
-- Provide the sink ready for FIFO write control and use source ready for -- Similar to dp_fifo_core but for multiple synchronous inputs. All data fields
-- FIFO read access. The sink ready output is derived from FIFO almost full. -- of the in sosi's are concatenated in addition to the the control signals of
-- Data without framing can use g_use_ctrl=FALSE to avoid implementing two -- in_sosi_arr(0) and in_aux. So the control signals of in_sosi_arr(1 TO g_nof_streams-1)
-- data bits for sop and eop in the FIFO word width. Idem for g_use_sync, -- are not used. It is useful to have dp_fifo_core_arr to ensure that all inputs
-- g_use_empty, g_use_channel, g_use_error and g_use_aux. -- are crossed over to the rd_clk domain on the same clock cycle, this cannot
-- be guaranteed when using multiple dp_fifo_core instances. For single clock,
-- dp_fifo_core_arr is also useful as it saves logic on the control signals since
-- it only uses the control signals of in_sosi_arr(0).
-- Remark: -- Remark:
-- . The bsn, empty, channel and error fields are valid at the sop and or eop. -- . dp_fifo_core_arr is not built on top of dp_fifo_core as the input of dp_fifo_core
-- Therefore alternatively these fields can be passed on through a separate -- is of type t_dp_sosi which has a limited size and could cause issues when concatenating
-- FIFO, with only one entry per frame, to save FIFO memory in case -- multiple input streams.
-- concatenating them makes the FIFO word width larger than a standard
-- memory data word width.
-- . The FIFO makes that the src_in.ready and snk_out.ready are not
-- combinatorially connected, so this can ease the timing closure for the
-- ready signal.
-- . It is assumed all inputs are synchronous (identical control signals). -- . It is assumed all inputs are synchronous (identical control signals).
-- If the inputs are asynchronous, better use multiple instances of -- If the inputs are asynchronous, better use multiple instances of
-- dp_fifo_core. -- dp_fifo_core.
-- . It is possible to use additonal signals to the fifo using in_aux/out_aux. -- . It is possible to add additonal signals to the fifo using in_aux/out_aux.
LIBRARY IEEE, common_lib, technology_lib; LIBRARY IEEE, common_lib, technology_lib;
USE IEEE.STD_LOGIC_1164.ALL; USE IEEE.STD_LOGIC_1164.ALL;
...@@ -307,5 +305,4 @@ BEGIN ...@@ -307,5 +305,4 @@ BEGIN
src_out => out_aux_sosi src_out => out_aux_sosi
); );
END str; END str;
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