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
d871b584
Commit
d871b584
authored
9 years ago
by
Zanting
Browse files
Options
Downloads
Patches
Plain Diff
Changed generics of io_ddr_diag entity to match changes
parent
e587e420
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
boards/uniboard1/designs/unb1_ddr3/src/vhdl/node_unb1_ddr3.vhd
+9
-8
9 additions, 8 deletions
...s/uniboard1/designs/unb1_ddr3/src/vhdl/node_unb1_ddr3.vhd
with
9 additions
and
8 deletions
boards/uniboard1/designs/unb1_ddr3/src/vhdl/node_unb1_ddr3.vhd
+
9
−
8
View file @
d871b584
...
...
@@ -94,7 +94,7 @@ ARCHITECTURE str OF node_unb1_ddr3 IS
CONSTANT
c_rd_data_w
:
NATURAL
:
=
g_st_dat_w
;
CONSTANT
c_data_w
:
NATURAL
:
=
g_st_dat_w
;
CONSTANT
c_wr_fifo_depth
:
NATURAL
:
=
1
28
;
-- >=16 , defined at DDR side of the FIFO.
CONSTANT
c_wr_fifo_depth
:
NATURAL
:
=
1
024
;
-- >=16 , defined at DDR side of the FIFO.
CONSTANT
c_rd_fifo_depth
:
NATURAL
:
=
1024
;
-- >=16 AND >g_tech_ddr.maxburstsize, defined at DDR side of the FIFO.
CONSTANT
c_use_bg
:
BOOLEAN
:
=
FALSE
;
...
...
@@ -117,15 +117,16 @@ BEGIN
u_mms_io_ddr_diag
:
ENTITY
io_ddr_lib
.
mms_io_ddr_diag
GENERIC
MAP
(
-- System
g_technology
=>
g_technology
,
g_dp_data_w
=>
g_st_dat_w
,
g_dp_seq_dat_w
=>
c_seq_dat_w
,
g_dp_fifo_depth
=>
c_rd_fifo_depth
,
g_technology
=>
g_technology
,
g_dp_data_w
=>
g_st_dat_w
,
g_dp_seq_dat_w
=>
c_seq_dat_w
,
g_dp_wr_fifo_depth
=>
c_wr_fifo_depth
,
g_dp_rd_fifo_depth
=>
c_rd_fifo_depth
,
-- IO_DDR
g_io_tech_ddr
=>
g_tech_ddr
,
g_io_tech_ddr
=>
g_tech_ddr
,
-- DIAG data buffer
g_db_use_db
=>
c_use_db
,
g_db_buf_nof_data
=>
c_buf_nof_data
g_db_use_db
=>
c_use_db
,
g_db_buf_nof_data
=>
c_buf_nof_data
)
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