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
aba3085a
Commit
aba3085a
authored
1 year ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Correct using g_use_dp_latency_adapter.
parent
511e01df
No related branches found
No related tags found
1 merge request
!353
Resolve L2SDP-962
Pipeline
#57692
passed
1 year ago
Stage: linting
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/dp/src/vhdl/dp_packet_unmerge.vhd
+4
-8
4 additions, 8 deletions
libraries/base/dp/src/vhdl/dp_packet_unmerge.vhd
with
4 additions
and
8 deletions
libraries/base/dp/src/vhdl/dp_packet_unmerge.vhd
+
4
−
8
View file @
aba3085a
...
@@ -58,7 +58,7 @@
...
@@ -58,7 +58,7 @@
-- src_in.ready is used registered.
-- src_in.ready is used registered.
-- . The p_reg increases the ready latency (RL) by 1, because p_comb does
-- . The p_reg increases the ready latency (RL) by 1, because p_comb does
-- not use src_in.ready, instead p_comb drives d.src_out based on the
-- not use src_in.ready, instead p_comb drives d.src_out based on the
-- snk_in.sop, eop, valid. Therefore
c
_use_dp_latency_adapter = true is
-- snk_in.sop, eop, valid. Therefore
g
_use_dp_latency_adapter = true is
-- needed to restore the RL from 2 to 1 for the src_out the output. The
-- needed to restore the RL from 2 to 1 for the src_out the output. The
-- alternative is to use a dp_pipeline to register d.src_out in
-- alternative is to use a dp_pipeline to register d.src_out in
-- combination with src_in.ready at the input, to keep RL at 1.
-- combination with src_in.ready at the input, to keep RL at 1.
...
@@ -103,14 +103,10 @@ architecture rtl of dp_packet_unmerge is
...
@@ -103,14 +103,10 @@ architecture rtl of dp_packet_unmerge is
constant
c_reg_rst
:
t_reg
:
=
(
0
,
0
,
c_dp_sosi_rst
);
constant
c_reg_rst
:
t_reg
:
=
(
0
,
0
,
c_dp_sosi_rst
);
constant
c_use_dp_latency_adapter
:
boolean
:
=
false
;
signal
r
:
t_reg
;
signal
r
:
t_reg
;
signal
d
:
t_reg
;
signal
d
:
t_reg
;
-- Signals for c_use_dp_latency_adapter = false
-- Signals for g_use_dp_latency_adapter = true
-- Signals for c_use_dp_latency_adapter = true
signal
dp_latency_adapter_snk_out
:
t_dp_siso
;
signal
dp_latency_adapter_snk_out
:
t_dp_siso
;
signal
dp_latency_adapter_snk_in
:
t_dp_sosi
;
signal
dp_latency_adapter_snk_in
:
t_dp_sosi
;
signal
dp_latency_adapter_src_in
:
t_dp_siso
;
signal
dp_latency_adapter_src_in
:
t_dp_siso
;
...
@@ -123,7 +119,7 @@ begin
...
@@ -123,7 +119,7 @@ begin
end
generate
;
end
generate
;
gen_use_src_in_ready
:
if
g_use_src_in_ready
=
true
generate
gen_use_src_in_ready
:
if
g_use_src_in_ready
=
true
generate
gen_dp_pipeline
:
if
c
_use_dp_latency_adapter
=
false
generate
gen_dp_pipeline
:
if
g
_use_dp_latency_adapter
=
false
generate
u_dp_pipeline
:
entity
work
.
dp_pipeline
u_dp_pipeline
:
entity
work
.
dp_pipeline
port
map
(
port
map
(
rst
=>
rst
,
rst
=>
rst
,
...
@@ -137,7 +133,7 @@ begin
...
@@ -137,7 +133,7 @@ begin
);
);
end
generate
;
end
generate
;
gen_dp_latency_adapter
:
if
c
_use_dp_latency_adapter
=
true
generate
gen_dp_latency_adapter
:
if
g
_use_dp_latency_adapter
=
true
generate
snk_out
<=
dp_latency_adapter_snk_out
;
snk_out
<=
dp_latency_adapter_snk_out
;
dp_latency_adapter_snk_in
<=
r
.
src_out
;
dp_latency_adapter_snk_in
<=
r
.
src_out
;
...
...
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