1 |
2 |
danv |
-------------------------------------------------------------------------------
|
2 |
|
|
--
|
3 |
4 |
danv |
-- Copyright 2020
|
4 |
2 |
danv |
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
|
5 |
|
|
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
|
6 |
4 |
danv |
--
|
7 |
|
|
-- Licensed under the Apache License, Version 2.0 (the "License");
|
8 |
|
|
-- you may not use this file except in compliance with the License.
|
9 |
|
|
-- You may obtain a copy of the License at
|
10 |
|
|
--
|
11 |
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
12 |
|
|
--
|
13 |
|
|
-- Unless required by applicable law or agreed to in writing, software
|
14 |
|
|
-- distributed under the License is distributed on an "AS IS" BASIS,
|
15 |
|
|
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16 |
|
|
-- See the License for the specific language governing permissions and
|
17 |
|
|
-- limitations under the License.
|
18 |
2 |
danv |
--
|
19 |
|
|
-------------------------------------------------------------------------------
|
20 |
|
|
|
21 |
|
|
LIBRARY IEEE, common_pkg_lib, dp_pkg_lib;
|
22 |
|
|
USE IEEE.std_logic_1164.ALL;
|
23 |
|
|
USE IEEE.numeric_std.ALL;
|
24 |
|
|
USE common_pkg_lib.common_pkg.ALL;
|
25 |
|
|
USE dp_pkg_lib.dp_stream_pkg.ALL;
|
26 |
|
|
|
27 |
|
|
-- Purpose:
|
28 |
|
|
-- Typically used in dp_latency_adapter.
|
29 |
|
|
-- Description:
|
30 |
|
|
-- Increase the output ready latency by g_incr_latency compared to the input
|
31 |
|
|
-- ready latency g_in_latency. Hence the output latency becomes g_in_latency
|
32 |
|
|
-- + g_incr_latency.
|
33 |
|
|
-- Remark:
|
34 |
|
|
-- . The SOSI data stream signals (i.e. data, empty, channel, err) are passed
|
35 |
|
|
-- on as wires.
|
36 |
|
|
-- . The out_sync, out_val, out_sop and out_eop are internally AND with the
|
37 |
|
|
-- delayed src_in.ready, this is only truely necessary if the input ready
|
38 |
|
|
-- latency is 0, but it does not harm to do it also when the input ready
|
39 |
|
|
-- latency > 0. However to easy achieving P&R timing it is better to not have
|
40 |
|
|
-- unnessary logic in the combinatorial path of out_sync, out_val, out_sop
|
41 |
|
|
-- and out_eop, therefore the AND with reg_val is only generated when
|
42 |
|
|
-- g_in_latency=0.
|
43 |
|
|
|
44 |
|
|
ENTITY dp_latency_increase IS
|
45 |
|
|
GENERIC (
|
46 |
|
|
g_in_latency : NATURAL := 0; -- >= 0
|
47 |
|
|
g_incr_latency : NATURAL := 2 -- >= 0
|
48 |
|
|
);
|
49 |
|
|
PORT (
|
50 |
|
|
rst : IN STD_LOGIC;
|
51 |
|
|
clk : IN STD_LOGIC;
|
52 |
|
|
-- ST sink
|
53 |
|
|
snk_out : OUT t_dp_siso;
|
54 |
|
|
snk_in : IN t_dp_sosi;
|
55 |
|
|
-- ST source
|
56 |
|
|
src_in : IN t_dp_siso;
|
57 |
|
|
src_out : OUT t_dp_sosi
|
58 |
|
|
);
|
59 |
|
|
END dp_latency_increase;
|
60 |
|
|
|
61 |
|
|
|
62 |
|
|
ARCHITECTURE rtl OF dp_latency_increase IS
|
63 |
|
|
|
64 |
|
|
CONSTANT c_out_latency : NATURAL := g_in_latency + g_incr_latency;
|
65 |
|
|
|
66 |
|
|
SIGNAL reg_ready : STD_LOGIC_VECTOR(c_out_latency DOWNTO 0);
|
67 |
|
|
SIGNAL reg_val : STD_LOGIC;
|
68 |
|
|
|
69 |
|
|
SIGNAL i_snk_out : t_dp_siso := c_dp_siso_rdy;
|
70 |
|
|
|
71 |
|
|
BEGIN
|
72 |
|
|
|
73 |
|
|
-- Use i_snk_out with defaults to force unused snk_out bits and fields to '0'
|
74 |
|
|
snk_out <= i_snk_out;
|
75 |
|
|
|
76 |
|
|
-- Support wires only for g_incr_latency=0
|
77 |
|
|
no_latency : IF g_incr_latency=0 GENERATE
|
78 |
|
|
i_snk_out <= src_in; -- SISO
|
79 |
|
|
src_out <= snk_in; -- SOSI
|
80 |
|
|
END GENERATE no_latency;
|
81 |
|
|
|
82 |
|
|
gen_latency : IF g_incr_latency>0 GENERATE
|
83 |
|
|
-- SISO
|
84 |
|
|
reg_ready(0) <= src_in.ready; -- use reg_ready(0) to combinatorially store src_in.ready
|
85 |
|
|
p_clk : PROCESS(rst, clk)
|
86 |
|
|
BEGIN
|
87 |
|
|
IF rst='1' THEN
|
88 |
|
|
reg_ready(c_out_latency DOWNTO 1) <= (OTHERS=>'0');
|
89 |
|
|
ELSIF rising_edge(clk) THEN
|
90 |
|
|
reg_ready(c_out_latency DOWNTO 1) <= reg_ready(c_out_latency-1 DOWNTO 0);
|
91 |
|
|
END IF;
|
92 |
|
|
END PROCESS;
|
93 |
|
|
|
94 |
|
|
i_snk_out.xon <= src_in.xon; -- Pass on frame level flow control
|
95 |
|
|
i_snk_out.ready <= reg_ready(g_incr_latency); -- Adjust ready latency
|
96 |
|
|
|
97 |
|
|
-- SOSI
|
98 |
|
|
gen_out : IF g_in_latency/=0 GENERATE
|
99 |
|
|
src_out <= snk_in;
|
100 |
|
|
END GENERATE;
|
101 |
|
|
gen_zero_out : IF g_in_latency=0 GENERATE
|
102 |
|
|
reg_val <= reg_ready(c_out_latency);
|
103 |
|
|
|
104 |
|
|
p_src_out : PROCESS(snk_in, reg_val)
|
105 |
|
|
BEGIN
|
106 |
|
|
src_out <= snk_in;
|
107 |
|
|
src_out.sync <= snk_in.sync AND reg_val;
|
108 |
|
|
src_out.valid <= snk_in.valid AND reg_val;
|
109 |
|
|
src_out.sop <= snk_in.sop AND reg_val;
|
110 |
|
|
src_out.eop <= snk_in.eop AND reg_val;
|
111 |
|
|
END PROCESS;
|
112 |
|
|
END GENERATE;
|
113 |
|
|
END GENERATE gen_latency;
|
114 |
|
|
|
115 |
|
|
END rtl;
|