Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit core collection
Manage
Activity
Members
Labels
Plan
Issues
33
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit core collection
Commits
ee358ebe
Commit
ee358ebe
authored
5 years ago
by
Grzegorz Daniluk
Browse files
Options
Downloads
Patches
Plain Diff
low phase drift: add RX synchronizer
parent
01ba8d54
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
platform/xilinx/wr_gtp_phy/virtex6-low-phase-drift/wr_gtx_phy_virtex6_lp.vhd
+11
-1
11 additions, 1 deletion
...gtp_phy/virtex6-low-phase-drift/wr_gtx_phy_virtex6_lp.vhd
with
11 additions
and
1 deletion
platform/xilinx/wr_gtp_phy/virtex6-low-phase-drift/wr_gtx_phy_virtex6_lp.vhd
+
11
−
1
View file @
ee358ebe
...
...
@@ -251,6 +251,7 @@ architecture rtl of wr_gtx_phy_virtex6_lp is
signal
rx_k_int
:
std_logic_vector
(
1
downto
0
);
signal
rx_data_int
:
std_logic_vector
(
15
downto
0
);
signal
rx_data_raw
,
rx_data_raw_d
:
std_logic_vector
(
19
downto
0
);
signal
rx_data_raw_gtx
:
std_logic_vector
(
19
downto
0
);
signal
rx_disp_err
,
rx_code_err
:
std_logic_vector
(
1
downto
0
);
...
...
@@ -482,7 +483,7 @@ begin -- rtl
-- RXBYTEISALIGNED_OUT => open,
-- RXCOMMADET_OUT => open,
-- RXSLIDE_IN => '0',
RXDATA_OUT
=>
rx_data_raw
,
RXDATA_OUT
=>
rx_data_raw
_gtx
,
RXRECCLK_OUT
=>
rx_rec_clk_bufin
,
RXUSRCLK2_IN
=>
rx_rec_clk
,
RXCDRRESET_IN
=>
rx_cdr_reset_a
,
...
...
@@ -514,6 +515,15 @@ begin -- rtl
TXPLLLKDET_OUT
=>
txpll_lockdet
,
TXRESETDONE_OUT
=>
gtx_tx_rst_done
);
RX_DAT_ANTI_META
:
gc_sync_register
generic
map
(
g_width
=>
20
)
port
map
(
clk_i
=>
rx_rec_clk
,
rst_n_a_i
=>
'1'
,
--gtx_rst,
d_i
=>
rx_data_raw_gtx
,
q_o
=>
rx_data_raw
);
mgtrefclk_in
<=
'0'
&
clk_gtx_i
;
rx_synced
<=
'0'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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