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
f0f3ffd4
Commit
f0f3ffd4
authored
5 years ago
by
Reinier van der Walle
Browse files
Options
Downloads
Patches
Plain Diff
Removed unused signal and removed latch
parent
9b2a32ce
No related branches found
No related tags found
1 merge request
!11
Resolve L2SDP-28
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd
+10
-8
10 additions, 8 deletions
libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd
with
10 additions
and
8 deletions
libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd
+
10
−
8
View file @
f0f3ffd4
...
@@ -119,21 +119,23 @@ ARCHITECTURE rtl OF dp_fifo_fill_eop IS
...
@@ -119,21 +119,23 @@ ARCHITECTURE rtl OF dp_fifo_fill_eop IS
SIGNAL
i_src_out
:
t_dp_sosi
;
SIGNAL
i_src_out
:
t_dp_sosi
;
SIGNAL
nxt_src_out
:
t_dp_sosi
;
SIGNAL
nxt_src_out
:
t_dp_sosi
;
-- Signals for g_fifo_rl=1
-- EOP clock domain crossing signals
SIGNAL
hold_src_in
:
t_dp_siso
;
SIGNAL
pend_src_out
:
t_dp_sosi
;
SIGNAL
reg_wr_eop_cnt
:
STD_LOGIC_VECTOR
(
c_word_w
-1
DOWNTO
0
);
SIGNAL
reg_wr_eop_cnt
:
STD_LOGIC_VECTOR
(
c_word_w
-1
DOWNTO
0
);
SIGNAL
reg_rd_eop_cnt
:
STD_LOGIC_VECTOR
(
c_word_w
-1
DOWNTO
0
);
SIGNAL
reg_rd_eop_cnt
:
STD_LOGIC_VECTOR
(
c_word_w
-1
DOWNTO
0
);
SIGNAL
wr_eop_done
:
STD_LOGIC
;
SIGNAL
wr_eop_done
:
STD_LOGIC
;
SIGNAL
wr_eop_new
:
STD_LOGIC
;
SIGNAL
wr_eop_new
:
STD_LOGIC
;
SIGNAL
prev_snk_in_eop
:
STD_LOGIC
;
SIGNAL
rd_eop_new
:
STD_LOGIC
;
SIGNAL
rd_eop_new
:
STD_LOGIC
;
SIGNAL
wr_eop_busy
:
STD_LOGIC
;
SIGNAL
wr_eop_busy
:
STD_LOGIC
;
SIGNAL
wr_eop_cnt
:
NATURAL
:
=
0
;
SIGNAL
wr_eop_cnt
:
NATURAL
:
=
0
;
SIGNAL
rd_eop_cnt
:
NATURAL
:
=
0
;
SIGNAL
rd_eop_cnt
:
NATURAL
:
=
0
;
SIGNAL
eop_cnt
:
INTEGER
:
=
0
;
SIGNAL
eop_cnt
:
INTEGER
:
=
0
;
SIGNAL
nxt_eop_cnt
:
INTEGER
:
=
0
;
SIGNAL
nxt_eop_cnt
:
INTEGER
:
=
0
;
-- Signals for g_fifo_rl=1
SIGNAL
hold_src_in
:
t_dp_siso
;
SIGNAL
pend_src_out
:
t_dp_sosi
;
BEGIN
BEGIN
-- Output monitor FIFO filling
-- Output monitor FIFO filling
...
@@ -324,7 +326,7 @@ BEGIN
...
@@ -324,7 +326,7 @@ BEGIN
nxt_src_out
.
sop
<=
'0'
;
nxt_src_out
.
sop
<=
'0'
;
nxt_src_out
.
eop
<=
'0'
;
nxt_src_out
.
eop
<=
'0'
;
nxt_src_out
.
sync
<=
'0'
;
nxt_src_out
.
sync
<=
'0'
;
nxt_eop_cnt
<=
eop_cnt
;
IF
rd_eop_new
=
'1'
THEN
IF
rd_eop_new
=
'1'
THEN
nxt_eop_cnt
<=
eop_cnt
+
rd_eop_cnt
;
nxt_eop_cnt
<=
eop_cnt
+
rd_eop_cnt
;
END
IF
;
END
IF
;
...
@@ -413,7 +415,7 @@ BEGIN
...
@@ -413,7 +415,7 @@ BEGIN
nxt_src_out
.
sop
<=
'0'
;
nxt_src_out
.
sop
<=
'0'
;
nxt_src_out
.
eop
<=
'0'
;
nxt_src_out
.
eop
<=
'0'
;
nxt_src_out
.
sync
<=
'0'
;
nxt_src_out
.
sync
<=
'0'
;
nxt_eop_cnt
<=
eop_cnt
;
IF
rd_eop_new
=
'1'
THEN
IF
rd_eop_new
=
'1'
THEN
nxt_eop_cnt
<=
eop_cnt
+
rd_eop_cnt
;
nxt_eop_cnt
<=
eop_cnt
+
rd_eop_cnt
;
END
IF
;
END
IF
;
...
...
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