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
c1f9638e
Commit
c1f9638e
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Port to RadioHDL.
parent
126fd129
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/base/common/hdllib.cfg
+1
-1
1 addition, 1 deletion
libraries/base/common/hdllib.cfg
libraries/base/common/src/vhdl/common_mem_mux.vhd
+108
-0
108 additions, 0 deletions
libraries/base/common/src/vhdl/common_mem_mux.vhd
with
109 additions
and
1 deletion
libraries/base/common/hdllib.cfg
+
1
−
1
View file @
c1f9638e
...
@@ -127,7 +127,7 @@ synth_files =
...
@@ -127,7 +127,7 @@ synth_files =
$UNB/Firmware/modules/common/src/vhdl/common_fifo_rd.vhd
$UNB/Firmware/modules/common/src/vhdl/common_fifo_rd.vhd
$UNB/Firmware/modules/common/src/vhdl/common_blockreg.vhd
$UNB/Firmware/modules/common/src/vhdl/common_blockreg.vhd
$UNB/Firmware/modules/common/src/vhdl/common_fifo_dc_lock_control.vhd
$UNB/Firmware/modules/common/src/vhdl/common_fifo_dc_lock_control.vhd
$UNB/Firmware/modules/common/
src/vhdl/common_mem_mux.vhd
src/vhdl/common_mem_mux.vhd
$UNB/Firmware/modules/common/src/vhdl/common_reg_cross_domain.vhd
$UNB/Firmware/modules/common/src/vhdl/common_reg_cross_domain.vhd
$UNB/Firmware/modules/common/src/vhdl/common_reg_r_w.vhd
$UNB/Firmware/modules/common/src/vhdl/common_reg_r_w.vhd
$UNB/Firmware/modules/common/src/vhdl/common_reg_r_w_dc.vhd
$UNB/Firmware/modules/common/src/vhdl/common_reg_r_w_dc.vhd
...
...
This diff is collapsed.
Click to expand it.
libraries/base/common/src/vhdl/common_mem_mux.vhd
0 → 100644
+
108
−
0
View file @
c1f9638e
-------------------------------------------------------------------------------
--
-- Copyright (C) 2011
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Purpose: Combines an array of MM interfaces into a single MM interface.
-- Description:
-- The common_mem_mux unit combines an array of mosi's and miso's to one
-- single set of mosi and miso. Should be used to decrease the amount of
-- memory interfaces to the SOPC.
-- Remarks:
-- . In simulation selecting an unused element address will cause a simulation
-- failure. Therefore the element_address is only accepted when it is in the
-- g_nof_mosi-1 DOWNTO 0 range.
--
-------------------------------------------------------------------------------
LIBRARY
IEEE
,
common_lib
;
USE
IEEE
.
STD_LOGIC_1164
.
ALL
;
USE
common_lib
.
common_pkg
.
ALL
;
USE
common_lib
.
common_mem_pkg
.
ALL
;
ENTITY
common_mem_mux
IS
GENERIC
(
g_nof_mosi
:
POSITIVE
:
=
256
;
-- Number of memory interfaces in the array.
g_mult_addr_w
:
POSITIVE
:
=
8
;
-- Address width of each memory-interface element in the array.
g_rd_latency
:
NATURAL
:
=
0
);
PORT
(
clk
:
IN
STD_LOGIC
:
=
'0'
;
-- only used when g_rd_latency > 0
mosi
:
IN
t_mem_mosi
;
miso
:
OUT
t_mem_miso
;
mosi_arr
:
OUT
t_mem_mosi_arr
(
g_nof_mosi
-
1
DOWNTO
0
);
miso_arr
:
IN
t_mem_miso_arr
(
g_nof_mosi
-
1
DOWNTO
0
)
:
=
(
OTHERS
=>
c_mem_miso_rst
)
);
END
common_mem_mux
;
ARCHITECTURE
rtl
OF
common_mem_mux
IS
CONSTANT
c_upper_limit
:
NATURAL
:
=
g_mult_addr_w
+
ceil_log2
(
g_nof_mosi
);
SIGNAL
element_address_arr
:
t_natural_arr
(
0
TO
g_rd_latency
);
BEGIN
gen_multiple
:
IF
(
g_nof_mosi
>
1
)
GENERATE
-- The activated element of the array is detected here
element_address_arr
(
0
)
<=
TO_UINT
(
mosi
.
address
(
c_upper_limit
-1
DOWNTO
g_mult_addr_w
));
-- Master access, can be write or read
p_mosi_arr
:
PROCESS
(
mosi
,
element_address_arr
)
BEGIN
FOR
I
IN
0
TO
g_nof_mosi
-1
LOOP
mosi_arr
(
I
)
<=
mosi
;
mosi_arr
(
I
)
.
rd
<=
'0'
;
mosi_arr
(
I
)
.
wr
<=
'0'
;
IF
I
=
element_address_arr
(
0
)
THEN
mosi_arr
(
I
)
.
rd
<=
mosi
.
rd
;
mosi_arr
(
I
)
.
wr
<=
mosi
.
wr
;
END
IF
;
END
LOOP
;
END
PROCESS
;
-- Pipeline the address of the activated element to account for the read latency
p_clk
:
PROCESS
(
clk
)
BEGIN
IF
rising_edge
(
clk
)
THEN
element_address_arr
(
1
TO
g_rd_latency
)
<=
element_address_arr
(
0
TO
g_rd_latency
-1
);
END
IF
;
END
PROCESS
;
-- Slave response to read access after g_rd_latency clk cycles
p_miso
:
PROCESS
(
miso_arr
,
element_address_arr
)
BEGIN
miso
<=
c_mem_miso_rst
;
FOR
I
IN
0
TO
g_nof_mosi
-1
LOOP
IF
I
=
element_address_arr
(
g_rd_latency
)
THEN
miso
<=
miso_arr
(
I
);
END
IF
;
END
LOOP
;
END
PROCESS
;
END
GENERATE
;
gen_single
:
IF
(
g_nof_mosi
=
1
)
GENERATE
mosi_arr
(
0
)
<=
mosi
;
miso
<=
miso_arr
(
0
);
END
GENERATE
;
END
rtl
;
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