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
2a3cf224
Commit
2a3cf224
authored
8 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Use func_wpfb_maximum_sop_latency() to set dp_fifo_info size.
parent
a4b10b99
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/dsp/wpfb/src/vhdl/wpfb_unit_dev.vhd
+19
-6
19 additions, 6 deletions
libraries/dsp/wpfb/src/vhdl/wpfb_unit_dev.vhd
with
19 additions
and
6 deletions
libraries/dsp/wpfb/src/vhdl/wpfb_unit_dev.vhd
+
19
−
6
View file @
2a3cf224
...
@@ -369,7 +369,14 @@ end entity wpfb_unit_dev;
...
@@ -369,7 +369,14 @@ end entity wpfb_unit_dev;
architecture
str
of
wpfb_unit_dev
is
architecture
str
of
wpfb_unit_dev
is
constant
c_nof_stats
:
natural
:
=
2
**
g_wpfb
.
nof_chan
*
g_wpfb
.
nof_points
/
g_wpfb
.
wb_factor
;
constant
c_nof_channels
:
natural
:
=
2
**
g_wpfb
.
nof_chan
;
constant
c_nof_data_per_block
:
natural
:
=
c_nof_channels
*
g_wpfb
.
nof_points
;
constant
c_nof_valid_per_block
:
natural
:
=
c_nof_data_per_block
/
g_wpfb
.
wb_factor
;
constant
c_nof_stats
:
natural
:
=
c_nof_valid_per_block
;
constant
c_maximum_sop_latency
:
natural
:
=
func_wpfb_maximum_sop_latency
(
g_wpfb
);
constant
c_fil_ppf
:
t_fil_ppf
:
=
(
g_wpfb
.
wb_factor
,
constant
c_fil_ppf
:
t_fil_ppf
:
=
(
g_wpfb
.
wb_factor
,
g_wpfb
.
nof_chan
,
g_wpfb
.
nof_chan
,
...
@@ -403,8 +410,6 @@ architecture str of wpfb_unit_dev is
...
@@ -403,8 +410,6 @@ architecture str of wpfb_unit_dev is
constant
c_bg_data_file_index_arr
:
t_nat_natural_arr
:
=
array_init
(
0
,
4
,
1
);
constant
c_bg_data_file_index_arr
:
t_nat_natural_arr
:
=
array_init
(
0
,
4
,
1
);
constant
c_bg_data_file_prefix
:
string
:
=
"UNUSED"
;
constant
c_bg_data_file_prefix
:
string
:
=
"UNUSED"
;
constant
c_output_frame_size
:
natural
:
=
c_nof_stats
;
signal
ram_st_sst_mosi_arr
:
t_mem_mosi_arr
(
g_wpfb
.
nof_wb_streams
*
g_wpfb
.
wb_factor
-1
downto
0
);
signal
ram_st_sst_mosi_arr
:
t_mem_mosi_arr
(
g_wpfb
.
nof_wb_streams
*
g_wpfb
.
wb_factor
-1
downto
0
);
signal
ram_st_sst_miso_arr
:
t_mem_miso_arr
(
g_wpfb
.
nof_wb_streams
*
g_wpfb
.
wb_factor
-1
downto
0
)
:
=
(
others
=>
c_mem_miso_rst
);
signal
ram_st_sst_miso_arr
:
t_mem_miso_arr
(
g_wpfb
.
nof_wb_streams
*
g_wpfb
.
wb_factor
-1
downto
0
)
:
=
(
others
=>
c_mem_miso_rst
);
...
@@ -601,7 +606,7 @@ begin
...
@@ -601,7 +606,7 @@ begin
u_dp_block_gen
:
entity
dp_lib
.
dp_block_gen
u_dp_block_gen
:
entity
dp_lib
.
dp_block_gen
generic
map
(
generic
map
(
g_use_src_in
=>
FALSE
,
g_use_src_in
=>
FALSE
,
g_nof_data
=>
c_
output_frame_size
,
g_nof_data
=>
c_
nof_valid_per_block
,
g_preserve_sync
=>
FALSE
,
g_preserve_sync
=>
FALSE
,
g_preserve_bsn
=>
FALSE
g_preserve_bsn
=>
FALSE
)
)
...
@@ -616,8 +621,16 @@ begin
...
@@ -616,8 +621,16 @@ begin
-- Add sync and BSN
-- Add sync and BSN
u_dp_fifo_info
:
entity
dp_lib
.
dp_fifo_info
u_dp_fifo_info
:
entity
dp_lib
.
dp_fifo_info
generic
map
(
generic
map
(
g_use_sync
=>
TRUE
,
g_use_sync
=>
TRUE
,
g_use_bsn
=>
TRUE
g_use_bsn
=>
TRUE
,
g_use_channel
=>
FALSE
,
g_use_empty
=>
FALSE
,
g_use_error
=>
FALSE
,
g_bsn_w
=>
c_dp_stream_bsn_w
,
g_empty_w
=>
c_dp_stream_empty_w
,
g_channel_w
=>
c_dp_stream_channel_w
,
g_error_w
=>
c_dp_stream_error_w
,
g_fifo_size
=>
c_maximum_sop_latency
)
)
port
map
(
port
map
(
rst
=>
dp_rst
,
rst
=>
dp_rst
,
...
...
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