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

Added sequence data valid counter.

parent ab5b6170
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,7 @@ ENTITY diag_rx_seq IS ...@@ -52,6 +52,7 @@ ENTITY diag_rx_seq IS
GENERIC ( GENERIC (
g_input_reg : BOOLEAN := FALSE; -- Use unregistered input to save logic, use registered input to ease achieving timing constrains. g_input_reg : BOOLEAN := FALSE; -- Use unregistered input to save logic, use registered input to ease achieving timing constrains.
g_sel : STD_LOGIC := '1'; -- '0' = PRSG, '1' = COUNTER g_sel : STD_LOGIC := '1'; -- '0' = PRSG, '1' = COUNTER
g_cnt_w : NATURAL := c_word_w;
g_dat_w : NATURAL := 12; g_dat_w : NATURAL := 12;
g_diag_res_w : NATURAL := 16 g_diag_res_w : NATURAL := 16
); );
...@@ -67,7 +68,8 @@ ENTITY diag_rx_seq IS ...@@ -67,7 +68,8 @@ ENTITY diag_rx_seq IS
diag_res_val : OUT STD_LOGIC; diag_res_val : OUT STD_LOGIC;
-- ST input -- ST input
in_dat : IN STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0); in_cnt : OUT STD_LOGIC_VECTOR(g_cnt_w-1 DOWNTO 0); -- count valid input test sequence data
in_dat : IN STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0); -- input test sequence data
in_val : IN STD_LOGIC -- gaps are allowed, however diag_res requires at least 2 valid in_dat to report a valid result in_val : IN STD_LOGIC -- gaps are allowed, however diag_res requires at least 2 valid in_dat to report a valid result
); );
END diag_rx_seq; END diag_rx_seq;
...@@ -280,4 +282,21 @@ BEGIN ...@@ -280,4 +282,21 @@ BEGIN
END IF; END IF;
END PROCESS; END PROCESS;
------------------------------------------------------------------------------
-- Count number of valid input data
------------------------------------------------------------------------------
u_common_counter : ENTITY common_lib.common_counter
GENERIC MAP (
g_latency => 1, -- default 1 for registered count output, use 0 for immediate combinatorial count output
g_width => g_cnt_w
)
PORT MAP (
rst => rst,
clk => clk,
clken => clken,
cnt_clr => diag_dis, -- synchronous cnt_clr is only interpreted when clken is active
cnt_en => in_val,
count => in_cnt
);
END rtl; END rtl;
...@@ -39,6 +39,7 @@ ENTITY diag_tx_seq IS ...@@ -39,6 +39,7 @@ ENTITY diag_tx_seq IS
GENERIC ( GENERIC (
g_sel : STD_LOGIC := '1'; -- '0' = PRSG, '1' = COUNTER g_sel : STD_LOGIC := '1'; -- '0' = PRSG, '1' = COUNTER
g_init : NATURAL := 0; -- init value for out_dat when diag_en = '0' g_init : NATURAL := 0; -- init value for out_dat when diag_en = '0'
g_cnt_w : NATURAL := c_word_w;
g_dat_w : NATURAL -- >= 1, test data width g_dat_w : NATURAL -- >= 1, test data width
); );
PORT ( PORT (
...@@ -51,7 +52,8 @@ ENTITY diag_tx_seq IS ...@@ -51,7 +52,8 @@ ENTITY diag_tx_seq IS
diag_dat : IN STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0) := TO_UVEC(g_init, g_dat_w); -- init value for out_dat when diag_en = '0' diag_dat : IN STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0) := TO_UVEC(g_init, g_dat_w); -- init value for out_dat when diag_en = '0'
-- ST output -- ST output
diag_req : IN STD_LOGIC := '1'; -- '1' = request output, '0' = halt output diag_req : IN STD_LOGIC := '1'; -- '1' = request output, '0' = halt output
out_dat : OUT STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0); -- test sequence data out_cnt : OUT STD_LOGIC_VECTOR(g_cnt_w-1 DOWNTO 0); -- count valid output test sequence data
out_dat : OUT STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0); -- output test sequence data
out_val : OUT STD_LOGIC -- '1' when out_dat is valid out_val : OUT STD_LOGIC -- '1' when out_dat is valid
); );
END diag_tx_seq; END diag_tx_seq;
...@@ -61,6 +63,8 @@ ARCHITECTURE rtl OF diag_tx_seq IS ...@@ -61,6 +63,8 @@ ARCHITECTURE rtl OF diag_tx_seq IS
CONSTANT c_lfsr_nr : NATURAL := g_dat_w - c_common_lfsr_first; CONSTANT c_lfsr_nr : NATURAL := g_dat_w - c_common_lfsr_first;
SIGNAL diag_dis : STD_LOGIC;
SIGNAL prsg : STD_LOGIC_VECTOR(out_dat'RANGE); SIGNAL prsg : STD_LOGIC_VECTOR(out_dat'RANGE);
SIGNAL nxt_prsg : STD_LOGIC_VECTOR(out_dat'RANGE); SIGNAL nxt_prsg : STD_LOGIC_VECTOR(out_dat'RANGE);
SIGNAL cntr : STD_LOGIC_VECTOR(out_dat'RANGE); SIGNAL cntr : STD_LOGIC_VECTOR(out_dat'RANGE);
...@@ -71,6 +75,8 @@ ARCHITECTURE rtl OF diag_tx_seq IS ...@@ -71,6 +75,8 @@ ARCHITECTURE rtl OF diag_tx_seq IS
BEGIN BEGIN
diag_dis <= NOT diag_en;
p_clk : PROCESS (rst, clk) p_clk : PROCESS (rst, clk)
BEGIN BEGIN
IF rst='1' THEN IF rst='1' THEN
...@@ -100,4 +106,19 @@ BEGIN ...@@ -100,4 +106,19 @@ BEGIN
nxt_out_dat <= prsg WHEN diag_sel='0' ELSE cntr; nxt_out_dat <= prsg WHEN diag_sel='0' ELSE cntr;
nxt_out_val <= diag_en AND diag_req; -- 'en' for entire test on/off, 'req' for dynamic invalid gaps in the stream nxt_out_val <= diag_en AND diag_req; -- 'en' for entire test on/off, 'req' for dynamic invalid gaps in the stream
-- Count number of valid output data
u_common_counter : ENTITY common_lib.common_counter
GENERIC MAP (
g_latency => 1, -- default 1 for registered count output, use 0 for immediate combinatorial count output
g_width => g_cnt_w
)
PORT MAP (
rst => rst,
clk => clk,
clken => clken,
cnt_clr => diag_dis, -- synchronous cnt_clr is only interpreted when clken is active
cnt_en => nxt_out_val,
count => out_cnt
);
END rtl; END rtl;
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