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
70eb1406
Commit
70eb1406
authored
3 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Clarified g_use_mm_output.
parent
bbf845f8
No related branches found
No related tags found
1 merge request
!156
Added first version of dp_bsn_align_v2.vhd with mmp and tb. This was...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/dp/src/vhdl/dp_bsn_align_v2.vhd
+7
-4
7 additions, 4 deletions
libraries/base/dp/src/vhdl/dp_bsn_align_v2.vhd
with
7 additions
and
4 deletions
libraries/base/dp/src/vhdl/dp_bsn_align_v2.vhd
+
7
−
4
View file @
70eb1406
...
@@ -76,12 +76,12 @@ ENTITY dp_bsn_align_v2 IS
...
@@ -76,12 +76,12 @@ ENTITY dp_bsn_align_v2 IS
-- Streaming input
-- Streaming input
in_sosi_arr
:
IN
t_dp_sosi_arr
(
g_nof_streams
-1
DOWNTO
0
);
in_sosi_arr
:
IN
t_dp_sosi_arr
(
g_nof_streams
-1
DOWNTO
0
);
-- Output via local MM interface in dp_clk domain
-- Output via local MM interface in dp_clk domain
, when g_use_mm_output = TRUE.
mm_sosi
:
OUT
t_dp_sosi
;
-- streaming information that signals that an output block can be read
mm_sosi
:
OUT
t_dp_sosi
;
-- streaming information that signals that an output block can be read
mm_copi
:
IN
t_mem_copi
;
-- read access to output block, all output streams share same mm_copi
mm_copi
:
IN
t_mem_copi
:
=
c_mem_copi_rst
;
-- read access to output block, all output streams share same mm_copi
mm_cipo_arr
:
OUT
t_mem_cipo_arr
(
g_nof_streams
-1
DOWNTO
0
);
mm_cipo_arr
:
OUT
t_mem_cipo_arr
(
g_nof_streams
-1
DOWNTO
0
);
-- Output via streaming DP interface
-- Output via streaming DP interface
, when g_use_mm_output = TRUE.
out_sosi_arr
:
OUT
t_dp_sosi_arr
(
g_nof_streams
-1
DOWNTO
0
)
out_sosi_arr
:
OUT
t_dp_sosi_arr
(
g_nof_streams
-1
DOWNTO
0
)
);
);
END
dp_bsn_align_v2
;
END
dp_bsn_align_v2
;
...
@@ -189,7 +189,7 @@ ARCHITECTURE rtl OF dp_bsn_align_v2 IS
...
@@ -189,7 +189,7 @@ ARCHITECTURE rtl OF dp_bsn_align_v2 IS
BEGIN
BEGIN
mm_sosi
<=
r
.
mm_sosi
;
mm_sosi
<=
r
.
mm_sosi
WHEN
g_use_mm_output
=
TRUE
ELSE
c_dp_sosi_rst
;
p_reg
:
PROCESS
(
dp_clk
,
dp_rst
)
p_reg
:
PROCESS
(
dp_clk
,
dp_rst
)
BEGIN
BEGIN
...
@@ -337,6 +337,9 @@ BEGIN
...
@@ -337,6 +337,9 @@ BEGIN
-- . output via DP streaming interface
-- . output via DP streaming interface
out_sosi_arr
<=
d
.
out_sosi_arr
;
out_sosi_arr
<=
d
.
out_sosi_arr
;
-- . no output via MM interface
mm_cipo_arr
<=
(
OTHERS
=>
c_mem_cipo_rst
);
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