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
212d3e05
Commit
212d3e05
authored
3 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Adddd some more instances for no gaps.
parent
75cd0184
No related branches found
No related tags found
1 merge request
!132
Renamed proc_dp_verify_sync_v2() into overloaded proc_dp_verify_sync() and...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/base/dp/tb/vhdl/tb_tb_dp_bsn_sync_scheduler.vhd
+15
-11
15 additions, 11 deletions
libraries/base/dp/tb/vhdl/tb_tb_dp_bsn_sync_scheduler.vhd
with
15 additions
and
11 deletions
libraries/base/dp/tb/vhdl/tb_tb_dp_bsn_sync_scheduler.vhd
+
15
−
11
View file @
212d3e05
...
@@ -58,22 +58,26 @@ BEGIN
...
@@ -58,22 +58,26 @@ BEGIN
-- * Use g_nof_input_sync > g_block_size, because the fractional sync pattern
-- * Use g_nof_input_sync > g_block_size, because the fractional sync pattern
-- will repeat within g_block_size number of g_pps_interval's
-- will repeat within g_block_size number of g_pps_interval's
u_output_is_input
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
170
);
-- 170/10 = 17 block/sync, = in_sosi
u_output_is_input
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
170
);
-- 170/10 = 17 block/sync, = in_sosi
u_output_is_input_no_gaps
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
5
,
0
,
85
);
-- 85/5 = 17 block/sync, = in_sosi
u_output_is_input_no_gaps
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
5
,
0
,
85
);
-- 85/5 = 17 block/sync, = in_sosi
u_sync_interval_0_5x
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
85
);
-- 85/10 = 8.5 block/sync, factor 85/170 = 0.5,
u_sync_interval_0_5x
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
85
);
-- 85/10 = 8.5 block/sync, factor 85/170 = 0.5,
u_sync_interval_1_5x
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
255
);
-- 255/10 = 25.5 block/sync, factor 255/170 = 1.5,
u_sync_interval_1_5x
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
255
);
-- 255/10 = 25.5 block/sync, factor 255/170 = 1.5,
u_sync_interval_prime_251
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
251
);
-- 251.10 = 25.1 block/sync, 251 is a prime
u_sync_interval_prime_251
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
251
);
-- 251.10 = 25.1 block/sync, 251 is a prime
u_short_block_4_3_15
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
4
,
3
,
3
,
15
);
-- 15/3 = 5 block/sync,
u_short_block_4_3_15
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
4
,
3
,
3
,
15
);
-- 15/3 = 5 block/sync,
u_short_block_5_3_16
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
5
,
3
,
3
,
16
);
-- 16/3 = 5.33 block/sync,
u_short_block_5_3_16
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
5
,
3
,
3
,
16
);
-- 16/3 = 5.33 block/sync,
u_short_block_6_3_17
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
6
,
3
,
3
,
17
);
-- 17/3 = 5.66 block/sync,
u_short_block_6_3_17
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
6
,
3
,
3
,
17
);
-- 17/3 = 5.66 block/sync,
u_short_block_no_gaps_4_3_15
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
4
,
3
,
0
,
15
);
-- 15/3 = 5 block/sync,
u_short_block_no_gaps_5_3_16
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
5
,
3
,
0
,
16
);
-- 16/3 = 5.33 block/sync,
u_short_block_no_gaps_6_3_17
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
6
,
3
,
0
,
17
);
-- 17/3 = 5.66 block/sync,
-- TODO: dp_bsn_sync_scheduler works for g_block_size = 2, but expected_out_enable in tb_dp_bsn_sync_scheduler only works for g_block_size > 2
-- TODO: dp_bsn_sync_scheduler works for g_block_size = 2, but expected_out_enable in tb_dp_bsn_sync_scheduler only works for g_block_size > 2
-- u_short_block_no_gaps : ENTITY work.tb_dp_bsn_sync_scheduler GENERIC MAP (c_nof_input_sync, 7, 2, 0, 16);
-- 16/2 = 8 block/sync,
-- u_short_block_no_gaps
: ENTITY work.tb_dp_bsn_sync_scheduler GENERIC MAP (c_nof_input_sync, 7, 2, 0,
16); -- 16/2 = 8 block/sync,
u_fraction_half
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
45
);
-- 45/10 = 4.5 block/sync
u_fraction_half
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
45
);
-- 45/10 = 4.5 block/sync
u_fraction_0
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
50
);
-- 50/10 = 5 block / sync
u_fraction_0
:
ENTITY
work
.
tb_dp_bsn_sync_scheduler
GENERIC
MAP
(
c_nof_input_sync
,
17
,
10
,
3
,
50
);
-- 50/10 = 5 block / sync
END
tb
;
END
tb
;
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