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
1d241d54
Commit
1d241d54
authored
3 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Use g_sim_sdp : t_sdp_sim := c_sdp_sim to overrule default SDP HW parameters in simulation.
parent
258ae9d5
No related branches found
No related tags found
1 merge request
!175
Added t_sdp_sim. Add func_sdp_get_stat_*() functions to determine the header...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/lofar2/libraries/sdp/src/vhdl/sdp_station.vhd
+8
-4
8 additions, 4 deletions
applications/lofar2/libraries/sdp/src/vhdl/sdp_station.vhd
with
8 additions
and
4 deletions
applications/lofar2/libraries/sdp/src/vhdl/sdp_station.vhd
+
8
−
4
View file @
1d241d54
...
...
@@ -44,7 +44,8 @@ USE eth_lib.eth_pkg.ALL;
ENTITY
sdp_station
IS
GENERIC
(
g_technology
:
NATURAL
:
=
c_tech_arria10_e1sg
;
g_sim
:
BOOLEAN
:
=
FALSE
;
--Overridden by TB
g_sim
:
BOOLEAN
:
=
FALSE
;
-- Overridden by TB
g_sim_sdp
:
t_sdp_sim
:
=
c_sdp_sim
;
-- Used when g_sim = TRUE, otherwise use HW defaults
g_wpfb
:
t_wpfb
:
=
c_sdp_wpfb_subbands
;
g_bsn_nof_clk_per_sync
:
NATURAL
:
=
c_sdp_N_clk_per_sync
;
-- Default 200M, overide for short simulation
g_scope_selected_subband
:
NATURAL
:
=
0
;
...
...
@@ -459,6 +460,7 @@ BEGIN
u_fsub
:
ENTITY
work
.
node_sdp_filterbank
GENERIC
MAP
(
g_sim
=>
g_sim
,
g_sim_sdp
=>
g_sim_sdp
,
g_wpfb
=>
g_wpfb
,
g_scope_selected_subband
=>
g_scope_selected_subband
)
...
...
@@ -508,8 +510,9 @@ BEGIN
gen_use_xsub
:
IF
g_use_xsub
GENERATE
u_xsub
:
ENTITY
work
.
node_sdp_correlator
GENERIC
MAP
(
g_sim
=>
g_sim
,
g_P_sq
=>
g_P_sq
g_sim
=>
g_sim
,
g_sim_sdp
=>
g_sim_sdp
,
g_P_sq
=>
g_P_sq
)
PORT
MAP
(
dp_clk
=>
dp_clk
,
...
...
@@ -554,7 +557,8 @@ BEGIN
u_bf
:
ENTITY
work
.
node_sdp_beamformer
GENERIC
MAP
(
g_sim
=>
g_sim
,
g_beamset_id
=>
beamset_id
,
g_sim_sdp
=>
g_sim_sdp
,
g_beamset_id
=>
beamset_id
,
g_scope_selected_beamlet
=>
g_scope_selected_subband
)
PORT
MAP
(
...
...
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