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
be71db59
Commit
be71db59
authored
3 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused I2C busses. Connect dual eth_clk.
parent
7395f2f5
No related branches found
No related tags found
1 merge request
!172
Resolve L2SDP-546
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/lofar2/designs/lofar2_unb2c_sdp_station/tb/vhdl/tb_lofar2_unb2c_sdp_station.vhd
+4
-19
4 additions, 19 deletions
...unb2c_sdp_station/tb/vhdl/tb_lofar2_unb2c_sdp_station.vhd
with
4 additions
and
19 deletions
applications/lofar2/designs/lofar2_unb2c_sdp_station/tb/vhdl/tb_lofar2_unb2c_sdp_station.vhd
+
4
−
19
View file @
be71db59
...
@@ -101,14 +101,10 @@ ARCHITECTURE tb OF tb_lofar2_unb2c_sdp_station IS
...
@@ -101,14 +101,10 @@ ARCHITECTURE tb OF tb_lofar2_unb2c_sdp_station IS
SIGNAL
INTB
:
STD_LOGIC
;
SIGNAL
INTB
:
STD_LOGIC
;
SIGNAL
eth_clk
:
STD_LOGIC
:
=
'0'
;
SIGNAL
eth_clk
:
STD_LOGIC
:
=
'0'
;
SIGNAL
eth_clk_slv
:
STD_LOGIC_VECTOR
(
c_unb2c_board_nof_eth
-1
downto
0
);
SIGNAL
eth_txp
:
STD_LOGIC_VECTOR
(
c_unb2c_board_nof_eth
-1
downto
0
);
SIGNAL
eth_txp
:
STD_LOGIC_VECTOR
(
c_unb2c_board_nof_eth
-1
downto
0
);
SIGNAL
eth_rxp
:
STD_LOGIC_VECTOR
(
c_unb2c_board_nof_eth
-1
downto
0
);
SIGNAL
eth_rxp
:
STD_LOGIC_VECTOR
(
c_unb2c_board_nof_eth
-1
downto
0
);
SIGNAL
sens_scl
:
STD_LOGIC
;
SIGNAL
sens_sda
:
STD_LOGIC
;
SIGNAL
pmbus_scl
:
STD_LOGIC
;
SIGNAL
pmbus_sda
:
STD_LOGIC
;
-- back transceivers
-- back transceivers
SIGNAL
JESD204B_SERIAL_DATA
:
STD_LOGIC_VECTOR
((
c_unb2c_board_tr_jesd204b
.
bus_w
*
c_unb2c_board_tr_jesd204b
.
nof_bus
)
-1
downto
0
);
SIGNAL
JESD204B_SERIAL_DATA
:
STD_LOGIC_VECTOR
((
c_unb2c_board_tr_jesd204b
.
bus_w
*
c_unb2c_board_tr_jesd204b
.
nof_bus
)
-1
downto
0
);
SIGNAL
JESD204B_REFCLK
:
STD_LOGIC
:
=
'1'
;
SIGNAL
JESD204B_REFCLK
:
STD_LOGIC
:
=
'1'
;
...
@@ -124,14 +120,11 @@ BEGIN
...
@@ -124,14 +120,11 @@ BEGIN
eth_clk
<=
(
NOT
eth_clk
)
OR
tb_end
AFTER
c_eth_clk_period
/
2
;
-- Ethernet ref clock (125 MHz)
eth_clk
<=
(
NOT
eth_clk
)
OR
tb_end
AFTER
c_eth_clk_period
/
2
;
-- Ethernet ref clock (125 MHz)
JESD204B_REFCLK
<=
(
NOT
JESD204B_REFCLK
)
OR
tb_end
AFTER
c_bck_ref_clk_period
/
2
;
-- JESD sample clock (200MHz)
JESD204B_REFCLK
<=
(
NOT
JESD204B_REFCLK
)
OR
tb_end
AFTER
c_bck_ref_clk_period
/
2
;
-- JESD sample clock (200MHz)
eth_clk_slv
<=
(
OTHERS
=>
eth_clk
);
INTA
<=
'H'
;
-- pull up
INTA
<=
'H'
;
-- pull up
INTB
<=
'H'
;
-- pull up
INTB
<=
'H'
;
-- pull up
sens_scl
<=
'H'
;
-- pull up
sens_sda
<=
'H'
;
-- pull up
pmbus_scl
<=
'H'
;
-- pull up
pmbus_sda
<=
'H'
;
-- pull up
-- External PPS
-- External PPS
proc_common_gen_pulse
(
10
,
c_pps_period
,
'1'
,
pps_rst
,
ext_clk
,
pps
);
proc_common_gen_pulse
(
10
,
c_pps_period
,
'1'
,
pps_rst
,
ext_clk
,
pps
);
jesd204b_sysref
<=
pps
;
jesd204b_sysref
<=
pps
;
...
@@ -161,16 +154,8 @@ BEGIN
...
@@ -161,16 +154,8 @@ BEGIN
ID
=>
c_id
,
ID
=>
c_id
,
TESTIO
=>
open
,
TESTIO
=>
open
,
-- I2C Interface to Sensors
SENS_SC
=>
sens_scl
,
SENS_SD
=>
sens_sda
,
PMBUS_SC
=>
pmbus_scl
,
PMBUS_SD
=>
pmbus_sda
,
PMBUS_ALERT
=>
open
,
-- 1GbE Control Interface
-- 1GbE Control Interface
ETH_CLK
=>
eth_clk
,
ETH_CLK
=>
eth_clk
_slv
,
ETH_SGIN
=>
eth_rxp
,
ETH_SGIN
=>
eth_rxp
,
ETH_SGOUT
=>
eth_txp
,
ETH_SGOUT
=>
eth_txp
,
...
...
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