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

Support g_fifo_af_xon

parent 8a428185
No related branches found
No related tags found
1 merge request!330Resolve L2SDP-942
......@@ -48,7 +48,8 @@ ENTITY dp_fifo_fill IS
g_use_complex : BOOLEAN := FALSE; -- TRUE feeds the concatenated complex fields (im & re) through the FIFO instead of the data field.
g_fifo_fill : NATURAL := 0;
g_fifo_size : NATURAL := 256; -- (32+2) * 256 = 1 M9K, g_data_w+2 for sop and eop
g_fifo_af_margin : NATURAL := 4; -- Nof words below max (full) at which fifo is considered almost full
g_fifo_af_margin : NATURAL := 4; -- >=4, Nof words below max (full) at which fifo is considered almost full for snk_out.ready
g_fifo_af_xon : NATURAL := 0; -- >=0, Nof words below max (full) at which fifo is considered almost full for snk_out.xon
g_fifo_rl : NATURAL := 1 -- use RL=0 for internal show ahead FIFO, default use RL=1 for internal normal FIFO
);
PORT (
......@@ -95,6 +96,7 @@ BEGIN
g_fifo_fill => g_fifo_fill,
g_fifo_size => g_fifo_size,
g_fifo_af_margin => g_fifo_af_margin,
g_fifo_af_xon => g_fifo_af_xon,
g_fifo_rl => g_fifo_rl
)
PORT MAP (
......
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