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
7933fe54
Commit
7933fe54
authored
10 years ago
by
Pepping
Browse files
Options
Downloads
Patches
Plain Diff
Replaced port types
parent
34e73b1c
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/unb1_reorder/src/vhdl/unb1_reorder.vhd
+11
-7
11 additions, 7 deletions
applications/unb1_reorder/src/vhdl/unb1_reorder.vhd
with
11 additions
and
7 deletions
applications/unb1_reorder/src/vhdl/unb1_reorder.vhd
+
11
−
7
View file @
7933fe54
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
--
--
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
LIBRARY
IEEE
,
common_lib
,
unb1_board_lib
,
dp_lib
,
io_ddr_lib
,
eth_lib
,
technology_lib
,
tech_ddr_lib
,
diag_lib
,
reorder_lib
;
LIBRARY
IEEE
,
common_lib
,
unb1_board_lib
,
dp_lib
,
eth_lib
,
technology_lib
,
tech_ddr_lib
,
diag_lib
,
reorder_lib
;
USE
IEEE
.
STD_LOGIC_1164
.
ALL
;
USE
IEEE
.
STD_LOGIC_1164
.
ALL
;
USE
IEEE
.
NUMERIC_STD
.
ALL
;
USE
IEEE
.
NUMERIC_STD
.
ALL
;
USE
common_lib
.
common_pkg
.
ALL
;
USE
common_lib
.
common_pkg
.
ALL
;
...
@@ -31,7 +31,7 @@ USE technology_lib.technology_select_pkg.ALL;
...
@@ -31,7 +31,7 @@ USE technology_lib.technology_select_pkg.ALL;
USE
tech_ddr_lib
.
tech_ddr_pkg
.
ALL
;
USE
tech_ddr_lib
.
tech_ddr_pkg
.
ALL
;
USE
eth_lib
.
eth_pkg
.
ALL
;
USE
eth_lib
.
eth_pkg
.
ALL
;
USE
diag_lib
.
diag_pkg
.
ALL
;
USE
diag_lib
.
diag_pkg
.
ALL
;
USE
reorder_lib
.
reorder_pkg
.
ALL
;
USE
reorder_lib
.
reorder_pkg
.
ALL
;
ENTITY
unb1_reorder
IS
ENTITY
unb1_reorder
IS
GENERIC
(
GENERIC
(
...
@@ -69,9 +69,13 @@ ENTITY unb1_reorder IS
...
@@ -69,9 +69,13 @@ ENTITY unb1_reorder IS
ETH_SGOUT
:
OUT
STD_LOGIC
;
ETH_SGOUT
:
OUT
STD_LOGIC
;
-- SO-DIMM Memory Bank I
-- SO-DIMM Memory Bank I
MB_I_IN
:
IN
t_tech_ddr_phy_in_arr
(
sel_a_b
(
g_sim
,
1
,
g_use_MB_I
)
-1
DOWNTO
0
);
-- MB_I_IN : IN t_tech_ddr_phy_in_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0);
MB_I_IO
:
INOUT
t_tech_ddr_phy_io_arr
(
sel_a_b
(
g_sim
,
1
,
g_use_MB_I
)
-1
DOWNTO
0
);
-- MB_I_IO : INOUT t_tech_ddr_phy_io_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0);
MB_I_OU
:
OUT
t_tech_ddr_phy_ou_arr
(
sel_a_b
(
g_sim
,
1
,
g_use_MB_I
)
-1
DOWNTO
0
)
-- MB_I_OU : OUT t_tech_ddr_phy_ou_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0)
MB_I_IN
:
IN
t_tech_ddr3_phy_in_arr
(
sel_a_b
(
g_sim
,
1
,
g_use_MB_I
)
-1
DOWNTO
0
);
MB_I_IO
:
INOUT
t_tech_ddr3_phy_io_arr
(
sel_a_b
(
g_sim
,
1
,
g_use_MB_I
)
-1
DOWNTO
0
);
MB_I_OU
:
OUT
t_tech_ddr3_phy_ou_arr
(
sel_a_b
(
g_sim
,
1
,
g_use_MB_I
)
-1
DOWNTO
0
)
);
);
END
unb1_reorder
;
END
unb1_reorder
;
...
@@ -81,7 +85,7 @@ ARCHITECTURE str OF unb1_reorder IS
...
@@ -81,7 +85,7 @@ ARCHITECTURE str OF unb1_reorder IS
-- Constant definitions for ctrl_unb_common
-- Constant definitions for ctrl_unb_common
CONSTANT
c_design_name
:
STRING
:
=
"unb1_reorder"
;
CONSTANT
c_design_name
:
STRING
:
=
"unb1_reorder"
;
CONSTANT
c_design_note
:
STRING
:
=
"Reference Reorder"
;
CONSTANT
c_design_note
:
STRING
:
=
"Reference Reorder"
;
CONSTANT
c_fw_version
:
t_unb1_board_fw_version
:
=
(
0
,
8
);
-- firmware version x.y
CONSTANT
c_fw_version
:
t_unb1_board_fw_version
:
=
(
0
,
10
);
-- firmware version x.y
CONSTANT
c_use_phy
:
t_c_unb1_board_use_phy
:
=
(
1
,
0
,
0
,
0
,
1
,
0
,
0
,
1
);
CONSTANT
c_use_phy
:
t_c_unb1_board_use_phy
:
=
(
1
,
0
,
0
,
0
,
1
,
0
,
0
,
1
);
CONSTANT
c_aux
:
t_c_unb1_board_aux
:
=
c_unb1_board_aux
;
CONSTANT
c_aux
:
t_c_unb1_board_aux
:
=
c_unb1_board_aux
;
CONSTANT
c_app_led_en
:
BOOLEAN
:
=
TRUE
;
CONSTANT
c_app_led_en
:
BOOLEAN
:
=
TRUE
;
...
@@ -450,7 +454,7 @@ BEGIN
...
@@ -450,7 +454,7 @@ BEGIN
GENERIC
MAP
(
GENERIC
MAP
(
g_sim
=>
g_sim
,
g_sim
=>
g_sim
,
g_use_MB_I
=>
g_use_MB_I
,
g_use_MB_I
=>
g_use_MB_I
,
g_tech_ddr
=>
g_tech_ddr
,
--
g_tech_ddr => g_tech_ddr,
g_nof_streams
=>
c_nof_streams
,
g_nof_streams
=>
c_nof_streams
,
g_in_dat_w
=>
c_in_dat_w
,
g_in_dat_w
=>
c_in_dat_w
,
g_ena_pre_transp
=>
c_ena_pre_transp
,
g_ena_pre_transp
=>
c_ena_pre_transp
,
...
...
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