Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fmc-tdc-1ns-5cha-gw
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
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
This is an archived project. Repository and other project resources are read-only.
fmc-projects
fmc-tdc
fmc-tdc-1ns-5cha-gw
Commits
4f827cec
Commit
4f827cec
authored
7 years ago
by
Grzegorz Daniluk
Browse files
Options
Downloads
Patches
Plain Diff
top/svec: disconnect WRPC from FMC EEPROM, now we use Flash
parent
4c7d3f56
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hdl/ip_cores/wr-cores
+1
-1
1 addition, 1 deletion
hdl/ip_cores/wr-cores
hdl/top/svec/wr_svec_tdc.vhd
+2
-11
2 additions, 11 deletions
hdl/top/svec/wr_svec_tdc.vhd
with
3 additions
and
12 deletions
wr-cores
@
b60287ce
Subproject commit
6a425a6fb1c02ed5b28e88c39c618cb9b014a9c7
Subproject commit
b60287ce85eb32009ea7509394728bc58d53cc9a
This diff is collapsed.
Click to expand it.
hdl/top/svec/wr_svec_tdc.vhd
+
2
−
11
View file @
4f827cec
...
...
@@ -449,9 +449,6 @@ architecture rtl of wr_svec_tdc is
-- White Rabbit signals to clks_rsts_manager
signal
tm_dac_value
:
std_logic_vector
(
23
downto
0
);
signal
tm_dac_wr_p
:
std_logic_vector
(
1
downto
0
);
-- White Rabbit to mezzanine EEPROM
signal
wrc_scl_out
,
wrc_scl_in
:
std_logic
;
signal
wrc_sda_out
,
wrc_sda_in
:
std_logic
;
-- White Rabbit to SFP EEPROM
signal
sfp_scl_out
,
sfp_scl_in
:
std_logic
;
signal
sfp_sda_out
,
sfp_sda_in
:
std_logic
;
...
...
@@ -543,10 +540,6 @@ begin
sfp_tx_fault_i
=>
sfp_tx_fault_i
,
sfp_tx_disable_o
=>
sfp_tx_disable_o
,
sfp_los_i
=>
sfp_los_i
,
eeprom_sda_i
=>
wrc_sda_in
,
eeprom_sda_o
=>
wrc_sda_out
,
eeprom_scl_i
=>
wrc_scl_in
,
eeprom_scl_o
=>
wrc_scl_out
,
onewire_i
=>
wrc_owr_data
,
onewire_oen_o
=>
wrc_owr_oe
,
uart_rxd_i
=>
uart_rxd_i
,
...
...
@@ -753,10 +746,8 @@ begin
clk_125m_tdc_o
=>
tdc1_125m_clk
);
tdc1_scl_b
<=
'0'
when
(
tdc1_scl_oen
=
'0'
or
wrc_scl_out
=
'0'
)
else
'Z'
;
tdc1_sda_b
<=
'0'
when
(
tdc1_sda_oen
=
'0'
or
wrc_sda_out
=
'0'
)
else
'Z'
;
wrc_scl_in
<=
tdc1_scl_b
;
wrc_sda_in
<=
tdc1_sda_b
;
tdc1_scl_b
<=
'0'
when
(
tdc1_scl_oen
=
'0'
)
else
'Z'
;
tdc1_sda_b
<=
'0'
when
(
tdc1_sda_oen
=
'0'
)
else
'Z'
;
tdc1_scl_in
<=
tdc1_scl_b
;
tdc1_sda_in
<=
tdc1_sda_b
;
...
...
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