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
a0681826
Commit
a0681826
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Renamed trc_rst into tr_rst. Use '_arr' for tech_xaui ports.
parent
c19e141e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/tr_xaui/src/vhdl/tr_xaui.vhd
+23
-24
23 additions, 24 deletions
libraries/io/tr_xaui/src/vhdl/tr_xaui.vhd
with
23 additions
and
24 deletions
libraries/io/tr_xaui/src/vhdl/tr_xaui.vhd
+
23
−
24
View file @
a0681826
...
...
@@ -100,7 +100,7 @@ ARCHITECTURE str OF tr_xaui IS
SIGNAL
i_rx_rst
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
i_tx_rst
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
SIGNAL
tr
c
_rst
:
STD_LOGIC
;
SIGNAL
tr_rst
:
STD_LOGIC
;
SIGNAL
i_rx_clk
:
STD_LOGIC_VECTOR
(
g_nof_xaui
-1
DOWNTO
0
);
--XGMII data and control combined:
...
...
@@ -160,30 +160,29 @@ BEGIN
g_nof_xaui
=>
g_nof_xaui
)
PORT
MAP
(
tr_clk
=>
tr_clk
,
trc_rst
=>
trc_rst
,
tr_clk
=>
tr_clk
,
mm_rst
=>
mm_rst
,
mm_clk
=>
mm_clk
,
mm_rst
=>
mm_rst
,
mm_clk
=>
mm_clk
,
cal_rec_clk
=>
cal_rec_clk
,
cal_rec_clk
=>
cal_rec_clk
,
tx_clk
=>
tx_clk
,
rx_clk
=>
i_rx_clk
,
tx_clk
_arr
=>
tx_clk
,
rx_clk
_arr
=>
i_rx_clk
,
crc_rx_ready
=>
crc_rx_ready
,
crc_tx_ready
=>
crc_tx_ready
,
crc_rx_ready
_arr
=>
crc_rx_ready
,
crc_tx_ready
_arr
=>
crc_tx_ready
,
a_rx_channelaligned
=>
a_rx_channelaligned
,
a_rx_channelaligned
_arr
=>
a_rx_channelaligned
,
xgmii_tx_dc
=>
xgmii_tx_dc
,
xgmii_rx_dc
=>
xgmii_rx_dc
,
xgmii_tx_dc
_arr
=>
xgmii_tx_dc
,
xgmii_rx_dc
_arr
=>
xgmii_rx_dc
,
xaui_rx
=>
xaui_rx
,
xaui_tx
=>
xaui_tx
,
xaui_rx
_arr
=>
xaui_rx
,
xaui_tx
_arr
=>
xaui_tx
,
xaui_mosi
=>
xaui_mosi
,
xaui_miso
=>
xaui_miso
xaui_mosi
=>
xaui_mosi
,
xaui_miso
=>
xaui_miso
);
END
GENERATE
;
...
...
@@ -195,7 +194,7 @@ BEGIN
)
PORT
MAP
(
tr_clk
=>
tr_clk
,
tr
c
_rst
=>
tr
c
_rst
,
tr_rst
=>
tr_rst
,
cal_rec_clk
=>
cal_rec_clk
,
...
...
@@ -218,7 +217,7 @@ BEGIN
-----------------------------------------------------------------------------
-- Clock and reset generation
-----------------------------------------------------------------------------
u_areset_tr
c
_rst
:
ENTITY
common_lib
.
common_areset
u_areset_tr_rst
:
ENTITY
common_lib
.
common_areset
GENERIC
MAP
(
g_rst_level
=>
'1'
,
g_delay_len
=>
4
...
...
@@ -226,7 +225,7 @@ BEGIN
PORT
MAP
(
clk
=>
tr_clk
,
in_rst
=>
'0'
,
out_rst
=>
tr
c
_rst
out_rst
=>
tr_rst
);
gen_nof_xaui
:
FOR
i
IN
g_nof_xaui
-1
DOWNTO
0
GENERATE
...
...
@@ -338,7 +337,7 @@ BEGIN
PORT
MAP
(
gs_sim
=>
g_sim
,
rst
=>
tr
c
_rst
,
rst
=>
tr_rst
,
clk
=>
tr_clk
,
mdio_en_evt
=>
mdio_en_evt
(
i
),
...
...
@@ -363,7 +362,7 @@ BEGIN
mm_rst
=>
mm_rst
,
mm_clk
=>
mm_clk
,
mdio_rst
=>
tr
c
_rst
,
mdio_rst
=>
tr_rst
,
mdio_clk
=>
tr_clk
,
sla_in
=>
mdio_mosi_arr
(
i
),
...
...
@@ -391,7 +390,7 @@ BEGIN
g_mdio_post_rst_cycles
=>
250000
)
PORT
MAP
(
rst
=>
tr
c
_rst
,
rst
=>
tr_rst
,
clk
=>
tr_clk
,
mdio_rst
=>
ctlr_mdio_rst
(
i
),
...
...
@@ -420,7 +419,7 @@ BEGIN
g_mdio_post_rst_cycles
=>
250000
)
PORT
MAP
(
rst
=>
tr
c
_rst
,
rst
=>
tr_rst
,
clk
=>
tr_clk
,
mdio_rst
=>
ctlr_mdio_rst
(
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