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
Merge requests
!2
Replaced dp_fifo_fill_dc with dp_fifo_fill_eop in tr_10GbE
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Replaced dp_fifo_fill_dc with dp_fifo_fill_eop in tr_10GbE
STAT-263
into
master
Overview
1
Commits
1
Pipelines
0
Changes
1
Merged
Reinier van der Walle
requested to merge
STAT-263
into
master
5 years ago
Overview
1
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4a102d7e
1 commit,
5 years ago
1 file
+
10
−
9
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
libraries/io/tr_10GbE/src/vhdl/tr_10GbE.vhd
+
10
−
9
Options
@@ -229,17 +229,18 @@ BEGIN
@@ -229,17 +229,18 @@ BEGIN
);
);
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
-- TX: FIFO: dp_clk -> tx_clk and with fill level so we can deliver packets to the MAC fast enough
-- TX: FIFO: dp_clk -> tx_clk and with fill level
/eop trigger
so we can deliver packets to the MAC fast enough
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
gen_dp_fifo_fill_
dc
:
FOR
i
IN
0
TO
g_nof_macs
-1
GENERATE
gen_dp_fifo_fill_
eop
:
FOR
i
IN
0
TO
g_nof_macs
-1
GENERATE
u_dp_fifo_fill_
dc
:
ENTITY
dp_lib
.
dp_fifo_fill_
dc
u_dp_fifo_fill_
eop
:
ENTITY
dp_lib
.
dp_fifo_fill_
eop
GENERIC
MAP
(
GENERIC
MAP
(
g_technology
=>
g_technology
,
g_technology
=>
g_technology
,
g_data_w
=>
c_xgmii_data_w
,
g_use_dual_clock
=>
TRUE
,
g_empty_w
=>
c_tech_mac_10g_empty_w
,
g_data_w
=>
c_xgmii_data_w
,
g_use_empty
=>
TRUE
,
g_empty_w
=>
c_tech_mac_10g_empty_w
,
g_fifo_fill
=>
g_tx_fifo_fill
,
g_use_empty
=>
TRUE
,
g_fifo_size
=>
g_tx_fifo_size
g_fifo_fill
=>
g_tx_fifo_fill
,
g_fifo_size
=>
g_tx_fifo_size
)
)
PORT
MAP
(
PORT
MAP
(
wr_rst
=>
dp_rst
,
wr_rst
=>
dp_rst
,
Loading