Skip to content
Snippets Groups Projects
Commit 3d2282d4 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

Added dedicated mem constant.

parent 6059a772
No related branches found
No related tags found
1 merge request!33Added si_arr.vhd
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- --
-- Copyright 2020 -- Copyright 2020
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/> -- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands -- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
-- --
-- Licensed under the Apache License, Version 2.0 (the "License"); -- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License. -- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at -- You may obtain a copy of the License at
-- --
-- http://www.apache.org/licenses/LICENSE-2.0 -- http://www.apache.org/licenses/LICENSE-2.0
-- --
-- Unless required by applicable law or agreed to in writing, software -- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS, -- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and -- See the License for the specific language governing permissions and
-- limitations under the License. -- limitations under the License.
-- --
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- --
-- Author: R. van der Walle -- Author: R. van der Walle
-- Purpose: Array wrapper for Spectral inversion. -- Purpose: Array wrapper for Spectral inversion.
-- Description: -- Description:
-- . Adds array support and Memory Mapped enable interface to si.vhd. -- . Adds array support and Memory Mapped enable interface to si.vhd.
-- Remark: -- Remark:
-- . See si.vhd for more detail. -- . See si.vhd for more detail.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
LIBRARY IEEE, common_lib, dp_lib; LIBRARY IEEE, common_lib, dp_lib;
USE IEEE.STD_LOGIC_1164.ALL; USE IEEE.STD_LOGIC_1164.ALL;
USE common_lib.common_pkg.ALL; USE common_lib.common_pkg.ALL;
USE common_lib.common_mem_pkg.ALL; USE common_lib.common_mem_pkg.ALL;
USE dp_lib.dp_stream_pkg.ALL; USE dp_lib.dp_stream_pkg.ALL;
ENTITY si_arr IS ENTITY si_arr IS
GENERIC ( GENERIC (
g_nof_streams : NATURAL := 1; g_nof_streams : NATURAL := 1;
g_pipeline : NATURAL := 1; -- 0 for wires, 1 for output pipeline g_pipeline : NATURAL := 1; -- 0 for wires, 1 for output pipeline
g_dat_w : NATURAL := 18 g_dat_w : NATURAL := 18
); );
PORT ( PORT (
in_sosi_arr : IN t_dp_sosi_arr(g_nof_streams-1 DOWNTO 0); in_sosi_arr : IN t_dp_sosi_arr(g_nof_streams-1 DOWNTO 0);
out_sosi_arr : OUT t_dp_sosi_arr(g_nof_streams-1 DOWNTO 0); out_sosi_arr : OUT t_dp_sosi_arr(g_nof_streams-1 DOWNTO 0);
reg_si_mosi : IN t_mem_mosi := c_mem_mosi_rst; reg_si_mosi : IN t_mem_mosi := c_mem_mosi_rst;
reg_si_miso : OUT t_mem_miso; reg_si_miso : OUT t_mem_miso;
mm_rst : IN STD_LOGIC; mm_rst : IN STD_LOGIC;
mm_clk : IN STD_LOGIC; mm_clk : IN STD_LOGIC;
dp_clk : IN STD_LOGIC; dp_clk : IN STD_LOGIC;
dp_rst : IN STD_LOGIC dp_rst : IN STD_LOGIC
); );
END si_arr; END si_arr;
ARCHITECTURE str OF si_arr IS ARCHITECTURE str OF si_arr IS
SIGNAL reg_si_en : STD_LOGIC_VECTOR(c_mem_reg.dat_w*c_mem_reg.nof_dat-1 DOWNTO 0); CONSTANT c_si_mem_reg : t_c_mem := (c_mem_reg_rd_latency, 1, 1, 1, '0');
BEGIN SIGNAL reg_si_en : STD_LOGIC_VECTOR(c_si_mem_reg.dat_w*c_si_mem_reg.nof_dat-1 DOWNTO 0);
u_mms_common_reg : ENTITY common_lib.mms_common_reg BEGIN
GENERIC MAP (
g_mm_reg => c_mem_reg u_mms_common_reg : ENTITY common_lib.mms_common_reg
) GENERIC MAP (
PORT MAP ( g_mm_reg => c_si_mem_reg
mm_rst => mm_rst, )
mm_clk => mm_clk, PORT MAP (
st_rst => dp_rst, mm_rst => mm_rst,
st_clk => dp_clk, mm_clk => mm_clk,
st_rst => dp_rst,
reg_mosi => reg_si_mosi, st_clk => dp_clk,
reg_miso => reg_si_miso,
reg_mosi => reg_si_mosi,
in_reg => reg_si_en, reg_miso => reg_si_miso,
out_reg => reg_si_en
); in_reg => reg_si_en,
out_reg => reg_si_en
gen_nof_streams : FOR I in 0 TO g_nof_streams-1 GENERATE );
u_si : ENTITY work.si
GENERIC MAP ( gen_nof_streams : FOR I in 0 TO g_nof_streams-1 GENERATE
g_pipeline => g_pipeline, u_si : ENTITY work.si
g_dat_w => g_dat_w GENERIC MAP (
) g_pipeline => g_pipeline,
PORT MAP ( g_dat_w => g_dat_w
in_sosi => in_sosi_arr(I), )
out_sosi => out_sosi_arr(I), PORT MAP (
si_en => reg_si_en(0), in_sosi => in_sosi_arr(I),
clk => dp_clk, out_sosi => out_sosi_arr(I),
rst => dp_rst si_en => reg_si_en(0),
); clk => dp_clk,
END GENERATE; rst => dp_rst
);
END str; END GENERATE;
END str;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment