Skip to content
GitLab
Explore
Sign in
Register
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
e158fc6c
Commit
e158fc6c
authored
1 year ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Correct use of v_busy and rst value.
parent
326ccc8a
Branches
Branches containing commit
No related tags found
1 merge request
!357
Move func_sdp_bdo_cep_hdr_field_sel_dest() from sdp_bdo_pkg to...
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/dp/src/vhdl/dp_packet_merge.vhd
+37
-37
37 additions, 37 deletions
libraries/base/dp/src/vhdl/dp_packet_merge.vhd
with
37 additions
and
37 deletions
libraries/base/dp/src/vhdl/dp_packet_merge.vhd
+
37
−
37
View file @
e158fc6c
...
@@ -46,6 +46,8 @@
...
@@ -46,6 +46,8 @@
-- . with g_align_at_sync=true the merge can be forced to restart at a snk_in.sync.
-- . with g_align_at_sync=true the merge can be forced to restart at a snk_in.sync.
-- . Optional flow control dependent on g_use_ready and g_pipeline_ready, see
-- . Optional flow control dependent on g_use_ready and g_pipeline_ready, see
-- description of dp_add_flow_control.
-- description of dp_add_flow_control.
-- . The input packets do not have to have equal length, because they are
-- merged based on counting their eop.
library
IEEE
,
common_lib
;
library
IEEE
,
common_lib
;
...
@@ -67,7 +69,7 @@ entity dp_packet_merge is
...
@@ -67,7 +69,7 @@ entity dp_packet_merge is
rst
:
in
std_logic
;
rst
:
in
std_logic
;
clk
:
in
std_logic
;
clk
:
in
std_logic
;
nof_pkt
:
in
std_logic_vector
(
ceil_log2
(
g_nof_pkt
+
1
)
-
1
downto
0
)
:
=
TO_UVEC
(
g_nof_pkt
,
ceil_log2
(
g_nof_pkt
+
1
));
nof_pkt
:
in
std_logic_vector
(
ceil_log2
(
g_nof_pkt
+
1
)
-
1
downto
0
)
:
=
to_uvec
(
g_nof_pkt
,
ceil_log2
(
g_nof_pkt
+
1
));
nof_pkt_out
:
out
std_logic_vector
(
ceil_log2
(
g_nof_pkt
+
1
)
-
1
downto
0
);
-- Valid at src_out.sop
nof_pkt_out
:
out
std_logic_vector
(
ceil_log2
(
g_nof_pkt
+
1
)
-
1
downto
0
);
-- Valid at src_out.sop
snk_out
:
out
t_dp_siso
;
snk_out
:
out
t_dp_siso
;
...
@@ -79,10 +81,13 @@ entity dp_packet_merge is
...
@@ -79,10 +81,13 @@ entity dp_packet_merge is
end
dp_packet_merge
;
end
dp_packet_merge
;
architecture
rtl
of
dp_packet_merge
is
architecture
rtl
of
dp_packet_merge
is
constant
c_nof_pkt_max
:
natural
:
=
g_nof_pkt
+
1
;
constant
c_nof_pkt_w
:
natural
:
=
ceil_log2
(
c_nof_pkt_max
);
type
t_reg
is
record
type
t_reg
is
record
nof_pkt
:
natural
range
0
to
g
_nof_pkt
+
1
;
nof_pkt
:
natural
range
0
to
c
_nof_pkt
_max
;
pkt_cnt
:
natural
range
0
to
g
_nof_pkt
+
1
;
pkt_cnt
:
natural
range
0
to
c
_nof_pkt
_max
;
align_cnt
:
natural
range
0
to
g
_nof_pkt
+
1
;
align_cnt
:
natural
range
0
to
c
_nof_pkt
_max
;
busy
:
std_logic
;
busy
:
std_logic
;
sync
:
std_logic
;
sync
:
std_logic
;
next_bsn
:
std_logic_vector
(
c_dp_stream_bsn_w
-
1
downto
0
);
next_bsn
:
std_logic_vector
(
c_dp_stream_bsn_w
-
1
downto
0
);
...
@@ -90,10 +95,12 @@ architecture rtl of dp_packet_merge is
...
@@ -90,10 +95,12 @@ architecture rtl of dp_packet_merge is
src_out
:
t_dp_sosi
;
src_out
:
t_dp_sosi
;
end
record
;
end
record
;
constant
c_reg_rst
:
t_reg
:
=
(
0
,
0
,
0
,
'0'
,
'0'
,
(
others
=>
'0'
),
'0'
,
c_dp_sosi_rst
);
signal
r
,
nxt_r
:
t_reg
;
signal
r
,
nxt_r
:
t_reg
;
begin
begin
-- Map logic function outputs to entity outputs
-- Map logic function outputs to entity outputs
nof_pkt_out
<=
TO_UVEC
(
r
.
nof_pkt
,
c
eil_log2
(
g
_nof_pkt
+
1
)
);
nof_pkt_out
<=
to_uvec
(
r
.
nof_pkt
,
c_nof_pkt
_w
);
u_dp_add_flow_control
:
entity
work
.
dp_add_flow_control
u_dp_add_flow_control
:
entity
work
.
dp_add_flow_control
generic
map
(
generic
map
(
...
@@ -124,7 +131,7 @@ begin
...
@@ -124,7 +131,7 @@ begin
v
:
=
r
;
v
:
=
r
;
----------------------------------------------------------------------------
----------------------------------------------------------------------------
-- Function
-- Function
: merge input packets into one output packet
-- _ _ _ _ _ _ _ _ _
-- _ _ _ _ _ _ _ _ _
-- snk_in.sop _____|0|_______|1|_______|2|_______|0|_______|1|_______|2|__________|0|_______|1|_______|2|_______
-- snk_in.sop _____|0|_______|1|_______|2|_______|0|_______|1|_______|2|__________|0|_______|1|_______|2|_______
-- _ _ _ _ _ _ _ _ _
-- _ _ _ _ _ _ _ _ _
...
@@ -150,29 +157,6 @@ begin
...
@@ -150,29 +157,6 @@ begin
end
if
;
end
if
;
end
if
;
end
if
;
-- capture nof_pkt between output packets when there is no merge busy
if
snk_in
.
sop
=
'1'
then
v
.
busy
:
=
'1'
;
end
if
;
if
snk_in
.
eop
=
'1'
then
if
r
.
pkt_cnt
=
r
.
nof_pkt
-
1
then
v
.
busy
:
=
'0'
;
end
if
;
end
if
;
if
g_align_at_sync
then
if
snk_in
.
sync
=
'1'
then
if
r
.
pkt_cnt
>
0
then
v
.
align_cnt
:
=
r
.
nof_pkt
-
r
.
pkt_cnt
;
-- = 0 when sync occurs at integer number of merged blocks, > 0 when (re)align to sync is needed
end
if
;
end
if
;
end
if
;
if
v
.
busy
=
'0'
and
v
.
src_out
.
eop
=
'1'
then
v
.
nof_pkt
:
=
TO_UINT
(
nof_pkt
)
-
r
.
align_cnt
;
-- use shorter next merge to (re)align to sync (when g_align_at_sync=false then r.align_cnt=0)
v
.
align_cnt
:
=
0
;
end
if
;
-- output packet bsn, sync, sop and eop
-- output packet bsn, sync, sop and eop
v
.
src_out
:
=
snk_in
;
v
.
src_out
:
=
snk_in
;
v
.
src_out
.
bsn
:
=
r
.
src_out
.
bsn
;
v
.
src_out
.
bsn
:
=
r
.
src_out
.
bsn
;
...
@@ -222,6 +206,29 @@ begin
...
@@ -222,6 +206,29 @@ begin
end
if
;
end
if
;
end
if
;
end
if
;
-- capture nof_pkt between output packets when there is no merge busy
-- . For determining busy, using snk_in.sop is functionally equivalent to
-- using v.src_out.sop, but using snk_in.sop may ease timing closure.
if
snk_in
.
sop
=
'1'
then
v
.
busy
:
=
'1'
;
end
if
;
if
v
.
src_out
.
eop
=
'1'
then
v
.
busy
:
=
'0'
;
end
if
;
if
g_align_at_sync
then
if
snk_in
.
sync
=
'1'
then
if
r
.
pkt_cnt
>
0
then
v
.
align_cnt
:
=
r
.
nof_pkt
-
r
.
pkt_cnt
;
-- = 0 when sync occurs at integer number of merged blocks, > 0 when (re)align to sync is needed
end
if
;
end
if
;
end
if
;
if
v
.
busy
=
'0'
then
v
.
nof_pkt
:
=
TO_UINT
(
nof_pkt
)
-
r
.
align_cnt
;
-- use shorter next merge to (re)align to sync (when g_align_at_sync=false then r.align_cnt=0)
v
.
align_cnt
:
=
0
;
end
if
;
-- force sosi control to inactive for no output when nof_pkt=0
-- force sosi control to inactive for no output when nof_pkt=0
if
r
.
nof_pkt
=
0
then
if
r
.
nof_pkt
=
0
then
v
.
src_out
.
valid
:
=
'0'
;
v
.
src_out
.
valid
:
=
'0'
;
...
@@ -234,14 +241,7 @@ begin
...
@@ -234,14 +241,7 @@ begin
----------------------------------------------------------------------------
----------------------------------------------------------------------------
-- Reset and nxt_r
-- Reset and nxt_r
if
rst
=
'1'
then
if
rst
=
'1'
then
v
.
nof_pkt
:
=
TO_UINT
(
nof_pkt
);
v
:
=
c_reg_rst
;
v
.
pkt_cnt
:
=
0
;
v
.
align_cnt
:
=
0
;
v
.
busy
:
=
'0'
;
v
.
sync
:
=
'0'
;
v
.
next_bsn
:
=
(
others
=>
'0'
);
v
.
bsn_err
:
=
'0'
;
v
.
src_out
:
=
c_dp_sosi_rst
;
end
if
;
end
if
;
nxt_r
<=
v
;
nxt_r
<=
v
;
...
...
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