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
95ed205f
Commit
95ed205f
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Added xgmii_rx_ready_arr port.
parent
67f384a9
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/technology/10gbase_r/tech_10gbase_r.vhd
+3
-2
3 additions, 2 deletions
libraries/technology/10gbase_r/tech_10gbase_r.vhd
libraries/technology/10gbase_r/tech_10gbase_r_arria10.vhd
+3
-2
3 additions, 2 deletions
libraries/technology/10gbase_r/tech_10gbase_r_arria10.vhd
with
6 additions
and
4 deletions
libraries/technology/10gbase_r/tech_10gbase_r.vhd
+
3
−
2
View file @
95ed205f
...
...
@@ -42,7 +42,8 @@ ENTITY tech_10gbase_r IS
rst_156
:
IN
STD_LOGIC
;
-- XGMII interface
xgmii_tx_ready_arr
:
OUT
STD_LOGIC_VECTOR
(
g_nof_channels
-1
DOWNTO
0
);
xgmii_tx_ready_arr
:
OUT
STD_LOGIC_VECTOR
(
g_nof_channels
-1
DOWNTO
0
);
-- can be used for xon flow control
xgmii_rx_ready_arr
:
OUT
STD_LOGIC_VECTOR
(
g_nof_channels
-1
DOWNTO
0
);
-- typically leave not connected
xgmii_tx_dc_arr
:
IN
t_xgmii_dc_arr
(
g_nof_channels
-1
DOWNTO
0
);
-- 72 bit
xgmii_rx_dc_arr
:
OUT
t_xgmii_dc_arr
(
g_nof_channels
-1
DOWNTO
0
);
-- 72 bit
...
...
@@ -62,7 +63,7 @@ BEGIN
GENERIC
MAP
(
g_sim
,
g_nof_channels
)
PORT
MAP
(
tr_ref_clk_644
,
clk_156
,
rst_156
,
xgmii_tx_ready_arr
,
xgmii_tx_dc_arr
,
xgmii_rx_dc_arr
,
xgmii_tx_ready_arr
,
xgmii_rx_ready_arr
,
xgmii_tx_dc_arr
,
xgmii_rx_dc_arr
,
tx_serial_arr
,
rx_serial_arr
);
END
GENERATE
;
...
...
This diff is collapsed.
Click to expand it.
libraries/technology/10gbase_r/tech_10gbase_r_arria10.vhd
+
3
−
2
View file @
95ed205f
...
...
@@ -46,7 +46,8 @@ ENTITY tech_10gbase_r_arria10 IS
rst_156
:
IN
STD_LOGIC
;
-- XGMII interface
xgmii_tx_ready_arr
:
OUT
STD_LOGIC_VECTOR
(
g_nof_channels
-1
DOWNTO
0
);
xgmii_tx_ready_arr
:
OUT
STD_LOGIC_VECTOR
(
g_nof_channels
-1
DOWNTO
0
);
-- can be used for xon flow control
xgmii_rx_ready_arr
:
OUT
STD_LOGIC_VECTOR
(
g_nof_channels
-1
DOWNTO
0
);
-- typically leave not connected
xgmii_tx_dc_arr
:
IN
t_xgmii_dc_arr
(
g_nof_channels
-1
DOWNTO
0
);
-- 72 bit
xgmii_rx_dc_arr
:
OUT
t_xgmii_dc_arr
(
g_nof_channels
-1
DOWNTO
0
);
-- 72 bit
...
...
@@ -167,7 +168,7 @@ BEGIN
tx_cal_busy
=>
cal_busy_arr
(
I
DOWNTO
I
),
rx_analogreset
=>
rx_analogreset_arr
(
I
DOWNTO
I
),
rx_digitalreset
=>
rx_digitalreset_arr
(
I
DOWNTO
I
),
rx_ready
=>
OPEN
,
rx_ready
=>
xgmii_rx_ready_arr
(
I
DOWNTO
I
)
,
rx_is_lockedtodata
=>
rx_is_lockedtodata_arr
(
I
DOWNTO
I
),
rx_cal_busy
=>
rx_cal_busy_arr
(
I
DOWNTO
I
)
);
...
...
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