Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
b5c65658
Commit
b5c65658
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Added sequence data valid counter.
parent
ab5b6170
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/base/diag/src/vhdl/diag_rx_seq.vhd
+20
-1
20 additions, 1 deletion
libraries/base/diag/src/vhdl/diag_rx_seq.vhd
libraries/base/diag/src/vhdl/diag_tx_seq.vhd
+22
-1
22 additions, 1 deletion
libraries/base/diag/src/vhdl/diag_tx_seq.vhd
with
42 additions
and
2 deletions
libraries/base/diag/src/vhdl/diag_rx_seq.vhd
+
20
−
1
View file @
b5c65658
...
@@ -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
;
This diff is collapsed.
Click to expand it.
libraries/base/diag/src/vhdl/diag_tx_seq.vhd
+
22
−
1
View file @
b5c65658
...
@@ -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
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment