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
3
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
93539288
Commit
93539288
authored
1 year ago
by
Tristan Gingold
Browse files
Options
Downloads
Patches
Plain Diff
xwr_core.vhd: add default value on IN ports
To ease the use of the record variants
parent
eb413a57
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/wrc_core/xwr_core.vhd
+8
-9
8 additions, 9 deletions
modules/wrc_core/xwr_core.vhd
with
8 additions
and
9 deletions
modules/wrc_core/xwr_core.vhd
+
8
−
9
View file @
93539288
...
...
@@ -6,7 +6,6 @@
-- Author : Grzegorz Daniluk <grzegorz.daniluk@cern.ch>
-- Company : CERN (BE-CO-HT)
-- Created : 2011-02-02
-- Last update: 2023-05-05
-- Platform : FPGA-generics
-- Standard : VHDL
-------------------------------------------------------------------------------
...
...
@@ -152,19 +151,19 @@ entity xwr_core is
-----------------------------------------
-- PHY I/f
-----------------------------------------
phy_ref_clk_i
:
in
std_logic
;
phy_ref_clk_i
:
in
std_logic
:
=
'0'
;
phy_tx_data_o
:
out
std_logic_vector
(
f_pcs_data_width
(
g_pcs_16bit
)
-1
downto
0
);
phy_tx_k_o
:
out
std_logic_vector
(
f_pcs_k_width
(
g_pcs_16bit
)
-1
downto
0
);
phy_tx_disparity_i
:
in
std_logic
;
phy_tx_enc_err_i
:
in
std_logic
;
phy_tx_disparity_i
:
in
std_logic
:
=
'0'
;
phy_tx_enc_err_i
:
in
std_logic
:
=
'0'
;
phy_rx_data_i
:
in
std_logic_vector
(
f_pcs_data_width
(
g_pcs_16bit
)
-1
downto
0
);
phy_rx_rbclk_i
:
in
std_logic
;
phy_rx_data_i
:
in
std_logic_vector
(
f_pcs_data_width
(
g_pcs_16bit
)
-1
downto
0
)
:
=
(
others
=>
'0'
)
;
phy_rx_rbclk_i
:
in
std_logic
:
=
'0'
;
phy_rx_rbclk_sampled_i
:
in
std_logic
:
=
'0'
;
phy_rx_k_i
:
in
std_logic_vector
(
f_pcs_k_width
(
g_pcs_16bit
)
-1
downto
0
);
phy_rx_enc_err_i
:
in
std_logic
;
phy_rx_bitslide_i
:
in
std_logic_vector
(
f_pcs_bts_width
(
g_pcs_16bit
)
-1
downto
0
);
phy_rx_k_i
:
in
std_logic_vector
(
f_pcs_k_width
(
g_pcs_16bit
)
-1
downto
0
)
:
=
(
others
=>
'0'
)
;
phy_rx_enc_err_i
:
in
std_logic
:
=
'0'
;
phy_rx_bitslide_i
:
in
std_logic_vector
(
f_pcs_bts_width
(
g_pcs_16bit
)
-1
downto
0
)
:
=
(
others
=>
'0'
)
;
phy_mdio_master_o
:
out
t_wishbone_master_out
;
phy_mdio_master_i
:
in
t_wishbone_master_in
:
=
cc_dummy_slave_out
;
...
...
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