Skip to content
GitLab
Explore
Sign in
Register
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
1f13ff8f
Commit
1f13ff8f
authored
3 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into
L2SDP-440
parents
99f01690
c5e3fe1a
No related branches found
No related tags found
1 merge request
!205
Added g_sepa_switch_en to support mitigation of quantization noise crosstalk...
Pipeline
#25254
passed
3 years ago
Stage: simulation
Stage: synthesis
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/dp/tb/vhdl/tb_mmp_dp_bsn_align_v2.vhd
+5
-5
5 additions, 5 deletions
libraries/base/dp/tb/vhdl/tb_mmp_dp_bsn_align_v2.vhd
with
5 additions
and
5 deletions
libraries/base/dp/tb/vhdl/tb_mmp_dp_bsn_align_v2.vhd
+
5
−
5
View file @
1f13ff8f
...
...
@@ -211,35 +211,35 @@ BEGIN
-- Read stream enable bits, default '1' after power up
FOR
I
IN
0
TO
c_nof_streams
-1
LOOP
proc_mem_mm_bus_rd
(
I
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_rd
(
2
*
I
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_rd_latency
(
1
,
mm_clk
);
ASSERT
reg_bsn_align_cipo
.
rddata
(
0
)
=
'1'
REPORT
"Wrong stream disable for output "
&
int_to_str
(
I
)
SEVERITY
ERROR
;
END
LOOP
;
-- Write stream enable bits for stream_en_arr
FOR
I
IN
0
TO
c_nof_streams
-1
LOOP
proc_mem_mm_bus_wr
(
I
,
0
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_wr
(
2
*
I
,
0
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
END
LOOP
;
proc_common_wait_some_cycles
(
mm_clk
,
c_cross_clock_domain_latency
);
proc_common_wait_some_cycles
(
dp_clk
,
c_cross_clock_domain_latency
);
-- Read stream enable bits, should now be '0'
FOR
I
IN
0
TO
c_nof_streams
-1
LOOP
proc_mem_mm_bus_rd
(
I
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_rd
(
2
*
I
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_rd_latency
(
1
,
mm_clk
);
ASSERT
reg_bsn_align_cipo
.
rddata
(
0
)
=
'0'
REPORT
"Wrong BSN align stream enable for output "
&
int_to_str
(
I
)
SEVERITY
ERROR
;
END
LOOP
;
-- Write stream enable bits for stream_en_arr
FOR
I
IN
0
TO
c_nof_streams
-1
LOOP
proc_mem_mm_bus_wr
(
I
,
1
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_wr
(
2
*
I
,
1
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
END
LOOP
;
proc_common_wait_some_cycles
(
mm_clk
,
c_cross_clock_domain_latency
);
proc_common_wait_some_cycles
(
dp_clk
,
c_cross_clock_domain_latency
);
-- Read stream enable bits, should now be '1'
FOR
I
IN
0
TO
c_nof_streams
-1
LOOP
proc_mem_mm_bus_rd
(
I
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_rd
(
2
*
I
,
mm_clk
,
reg_bsn_align_cipo
,
reg_bsn_align_copi
);
proc_mem_mm_bus_rd_latency
(
1
,
mm_clk
);
ASSERT
reg_bsn_align_cipo
.
rddata
(
0
)
=
'1'
REPORT
"Wrong BSN align stream enable for output "
&
int_to_str
(
I
)
SEVERITY
ERROR
;
END
LOOP
;
...
...
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