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
7a61db55
Commit
7a61db55
authored
3 years ago
by
Reinier van der Walle
Browse files
Options
Downloads
Patches
Plain Diff
updated node_sdp_correlator
parent
59535c8a
No related branches found
No related tags found
1 merge request
!191
Resolve L2SDP-291
Pipeline
#23497
passed
3 years ago
Stage: simulation
Stage: synthesis
Stage: hardware
Pipeline: sdptr
#23498
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
applications/lofar2/libraries/sdp/src/vhdl/node_sdp_correlator.vhd
+54
-4
54 additions, 4 deletions
...ons/lofar2/libraries/sdp/src/vhdl/node_sdp_correlator.vhd
libraries/base/ring/hdllib.cfg
+1
-0
1 addition, 0 deletions
libraries/base/ring/hdllib.cfg
with
55 additions
and
4 deletions
applications/lofar2/libraries/sdp/src/vhdl/node_sdp_correlator.vhd
+
54
−
4
View file @
7a61db55
...
@@ -50,7 +50,8 @@ ENTITY node_sdp_correlator IS
...
@@ -50,7 +50,8 @@ ENTITY node_sdp_correlator IS
in_sosi_arr
:
IN
t_dp_sosi_arr
(
c_sdp_P_pfb
-1
DOWNTO
0
);
in_sosi_arr
:
IN
t_dp_sosi_arr
(
c_sdp_P_pfb
-1
DOWNTO
0
);
xst_udp_sosi
:
OUT
t_dp_sosi
;
xst_udp_sosi
:
OUT
t_dp_sosi
;
xst_udp_siso
:
IN
t_dp_siso
;
xst_udp_siso
:
IN
t_dp_siso
;
from_ri_sosi
:
IN
t_dp_sosi
:
=
c_dp_sosi_rst
;
to_ri_sosi
:
OUT
t_dp_sosi
;
mm_rst
:
IN
STD_LOGIC
;
mm_rst
:
IN
STD_LOGIC
;
mm_clk
:
IN
STD_LOGIC
;
mm_clk
:
IN
STD_LOGIC
;
...
@@ -91,6 +92,11 @@ ARCHITECTURE str OF node_sdp_correlator IS
...
@@ -91,6 +92,11 @@ ARCHITECTURE str OF node_sdp_correlator IS
SIGNAL
quant_sosi_arr
:
t_dp_sosi_arr
(
c_sdp_P_pfb
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_dp_sosi_rst
);
SIGNAL
quant_sosi_arr
:
t_dp_sosi_arr
(
c_sdp_P_pfb
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_dp_sosi_rst
);
SIGNAL
dp_bsn_sync_scheduler_src_out
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
SIGNAL
dp_bsn_sync_scheduler_src_out
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
SIGNAL
xsel_sosi
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
SIGNAL
xsel_sosi
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
SIGNAL
local_sosi
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
SIGNAL
ring_mux_sosi
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
SIGNAL
rx_sosi_sosi
:
t_dp_sosi
:
=
c_dp_sosi_rst
;
SIGNAL
crosslets_sosi_arr
:
t_dp_sosi_arr
(
g_P_sq
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_dp_sosi_rst
);
SIGNAL
crosslets_sosi_arr
:
t_dp_sosi_arr
(
g_P_sq
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_dp_sosi_rst
);
SIGNAL
crosslets_mosi_arr
:
t_mem_mosi_arr
(
g_P_sq
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_mem_mosi_rst
);
SIGNAL
crosslets_mosi_arr
:
t_mem_mosi_arr
(
g_P_sq
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_mem_mosi_rst
);
SIGNAL
crosslets_miso_arr
:
t_mem_miso_arr
(
g_P_sq
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_mem_miso_rst
);
SIGNAL
crosslets_miso_arr
:
t_mem_miso_arr
(
g_P_sq
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_mem_miso_rst
);
...
@@ -154,17 +160,61 @@ BEGIN
...
@@ -154,17 +160,61 @@ BEGIN
---------------------------------------------------------------
---------------------------------------------------------------
-- Repack 32b to 64b
-- Repack 32b to 64b
---------------------------------------------------------------
---------------------------------------------------------------
-- Not implemented yet
u_dp_repack_data_local
:
ENTITY
dp_lib
.
dp_repack_data
GENERIC
MAP
(
g_in_dat_w
=>
c_word_w
,
g_in_nof_words
=>
c_longword_sz
/
c_word_sz
,
g_out_dat_w
=>
c_longword_w
,
g_out_nof_words
=>
1
)
PORT
MAP
(
rst
=>
dp_rst
,
clk
=>
dp_clk
,
snk_in
=>
xsel_sosi
,
src_out
=>
local_sosi
);
---------------------------------------------------------------
---------------------------------------------------------------
-- ring_mux
-- ring_mux
---------------------------------------------------------------
---------------------------------------------------------------
-- Not implemented yet
u_ring_mux
:
ENTITY
ring_lib
.
ring_mux
GENERIC
MAP
(
g_bsn_w
=>
c_longword_w
,
-- TODO Correct these generics!
g_data_w
=>
c_longword_w
,
g_in_chanel_w
=>
c_word_w
,
g_error_w
=>
c_word_w
,
g_fifo_size
=>
array_init
(
1024
,
2
)
)
PORT
MAP
(
dp_clk
=>
dp_clk
,
dp_rst
=>
dp_rst
,
remote_sosi
=>
from_ri_sosi
,
local_sosi
=>
local_sosi
,
mux_sosi
=>
ring_mux_sosi
);
to_ri_sosi
<=
ring_mux_sosi
;
---------------------------------------------------------------
---------------------------------------------------------------
-- Repack 64b to 32b
-- Repack 64b to 32b
---------------------------------------------------------------
---------------------------------------------------------------
-- Not implemented yet
u_dp_repack_data_rx
:
ENTITY
dp_lib
.
dp_repack_data
GENERIC
MAP
(
g_in_dat_w
=>
c_longword_w
,
g_in_nof_words
=>
1
,
g_out_dat_w
=>
c_word_w
,
g_out_nof_words
=>
c_longword_sz
/
c_word_sz
)
PORT
MAP
(
rst
=>
dp_rst
,
clk
=>
dp_clk
,
snk_in
=>
xsel_sosi
,
src_out
=>
local_sosi
);
---------------------------------------------------------------
---------------------------------------------------------------
-- dp_demux
-- dp_demux
...
...
This diff is collapsed.
Click to expand it.
libraries/base/ring/hdllib.cfg
+
1
−
0
View file @
7a61db55
...
@@ -6,6 +6,7 @@ hdl_lib_technology =
...
@@ -6,6 +6,7 @@ hdl_lib_technology =
synth_files
=
synth_files
=
src/vhdl/ring_pkg.vhd
src/vhdl/ring_pkg.vhd
src/vhdl/ring_mux.vhd
src/vhdl/ring_lane_info_reg.vhd
src/vhdl/ring_lane_info_reg.vhd
src/vhdl/ring_lane_info.vhd
src/vhdl/ring_lane_info.vhd
src/vhdl/ring_info.vhd
src/vhdl/ring_info.vhd
...
...
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