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
0306fe4b
Commit
0306fe4b
authored
9 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Added g_sim_model. Renamed instances.
parent
201f8808
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/io/ddr/src/vhdl/mms_io_ddr.vhd
+9
-5
9 additions, 5 deletions
libraries/io/ddr/src/vhdl/mms_io_ddr.vhd
with
9 additions
and
5 deletions
libraries/io/ddr/src/vhdl/mms_io_ddr.vhd
+
9
−
5
View file @
0306fe4b
...
...
@@ -31,6 +31,7 @@ USE dp_lib.dp_stream_pkg.ALL;
ENTITY
mms_io_ddr
IS
GENERIC
(
g_sim_model
:
BOOLEAN
:
=
FALSE
;
g_technology
:
NATURAL
:
=
c_tech_select_default
;
g_tech_ddr
:
t_c_tech_ddr
;
g_cross_domain_dvr_ctlr
:
BOOLEAN
:
=
TRUE
;
...
...
@@ -83,7 +84,8 @@ ENTITY mms_io_ddr IS
rd_fifo_usedw
:
OUT
STD_LOGIC_VECTOR
(
ceil_log2
(
g_rd_fifo_depth
*
(
func_tech_ddr_ctlr_data_w
(
g_tech_ddr
)
/
g_rd_data_w
)
)
-1
DOWNTO
0
);
rd_sosi
:
OUT
t_dp_sosi
;
rd_siso
:
IN
t_dp_siso
;
-- DDR3 pass on termination control from master to slave controller
term_ctrl_out
:
OUT
t_tech_ddr3_phy_terminationcontrol
;
term_ctrl_in
:
IN
t_tech_ddr3_phy_terminationcontrol
:
=
c_tech_ddr3_phy_terminationcontrol_rst
;
...
...
@@ -111,7 +113,7 @@ ARCHITECTURE str OF mms_io_ddr IS
BEGIN
-- Combine the reg map of io_ddr and io_ddr_reg
u_
m
m_mux
:
ENTITY
common_lib
.
common_mem_mux
u_
common_me
m_mux
:
ENTITY
common_lib
.
common_mem_mux
GENERIC
MAP
(
g_nof_mosi
=>
2
,
g_mult_addr_w
=>
ceil_log2
(
8
)
...
...
@@ -123,8 +125,9 @@ BEGIN
miso_arr
=>
reg_io_ddr_miso_arr
);
u_ddr_mem_ctrl
:
ENTITY
work
.
io_ddr
GENERIC
MAP
(
u_io_ddr
:
ENTITY
work
.
io_ddr
GENERIC
MAP
(
g_sim_model
=>
g_sim_model
,
g_technology
=>
g_technology
,
g_tech_ddr
=>
g_tech_ddr
,
g_cross_domain_dvr_ctlr
=>
FALSE
,
...
...
@@ -192,7 +195,8 @@ BEGIN
phy4_ou
=>
phy4_ou
);
u_ddr_reg
:
ENTITY
work
.
io_ddr_reg
-- MM register map for DDR controller write and read access control via MM
u_io_ddr_reg
:
ENTITY
work
.
io_ddr_reg
PORT
MAP
(
-- Clocks and reset
mm_rst
=>
mm_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