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
a2aa682b
Commit
a2aa682b
authored
1 year ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
The FIFO can handle continuous input data without gap.
parent
1b3e141a
No related branches found
Branches containing commit
No related tags found
1 merge request
!336
Resolve L2SDP-958
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd
+4
-2
4 additions, 2 deletions
libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd
libraries/base/ring/src/vhdl/ring_lane.vhd
+3
-8
3 additions, 8 deletions
libraries/base/ring/src/vhdl/ring_lane.vhd
with
7 additions
and
10 deletions
libraries/base/dp/src/vhdl/dp_fifo_fill_eop.vhd
+
4
−
2
View file @
a2aa682b
...
@@ -45,8 +45,10 @@
...
@@ -45,8 +45,10 @@
-- that is a power of 2, so g_fifo_size = true_log_pow2(largest block size +
-- that is a power of 2, so g_fifo_size = true_log_pow2(largest block size +
-- c_fifo_tx_fill_margin).
-- c_fifo_tx_fill_margin).
-- Remark:
-- Remark:
-- * The dp_fifo_fill_eop cannot handle continues stream of blocks without a
-- * The dp_fifo_fill_eop can handle continues stream of blocks without a
-- gap between blocks it needs 1 cycle to process a block.
-- gap between blocks, as shown by tb_dp_fifo_fill_eop.vhd, because
-- snk_out.ready remains active and the FIFO does not run full. This was
-- fixed by Reinier in Nov 2021 as part of L2SDP-505.
--
--
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
libraries/base/ring/src/vhdl/ring_lane.vhd
+
3
−
8
View file @
a2aa682b
...
@@ -21,16 +21,11 @@
...
@@ -21,16 +21,11 @@
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
--
-- Author: R. van der Walle
-- Author: R. van der Walle
--
-- Purpose: Implement the function of a complete ring lane by combining ring_lane/tx.
-- Purpose: Implement the function of a complete ring lane by combining ring_lane/tx.
-- Description: See https://support.astron.nl/confluence/x/jyu7Ag
-- Description:
-- . See "L5 SDPFW Design Document: Ring" at https://support.astron.nl/confluence/x/jyu7Ag
-- Remark:
-- Remark:
-- . Note that the dp_fifo_fill_eop in dp_block_validate_err cannot handle
-- continues stream of blocks without a gap between blocks the dp_fifo_fill_eop
-- needs 1 cycle to process a block. Streaming without gaps may cause the fifo
-- to overflow. Bursts of blocks can be handled by increasing gvalidate_err_fifo_size.
-------------------------------------------------------------------------------
library
IEEE
,
common_lib
,
mm_lib
,
dp_lib
;
library
IEEE
,
common_lib
,
mm_lib
,
dp_lib
;
use
IEEE
.
std_logic_1164
.
all
;
use
IEEE
.
std_logic_1164
.
all
;
...
...
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