------------------------------------------------------------------------------ -- This file is a part of the LPP VHDL IP LIBRARY -- Copyright (C) 2009 - 2012, Laboratory of Plasmas Physic - CNRS -- -- 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, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ------------------------------------------------------------------------------ -- Author : Jean-christophe PELLION -- Mail : jean-christophe.pellion@lpp.polytechnique.fr ------------------------------------------------------------------------------ LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; USE IEEE.numeric_std.ALL; LIBRARY lpp; USE lpp.lpp_memory.ALL; USE lpp.iir_filter.ALL; USE lpp.lpp_waveform_pkg.ALL; LIBRARY techmap; USE techmap.gencomp.ALL; ENTITY lpp_waveform_fifo_ctrl IS generic( offset : INTEGER := 0; length : INTEGER := 20 ); PORT( clk : IN STD_LOGIC; rstn : IN STD_LOGIC; run : IN STD_LOGIC; ren : IN STD_LOGIC; wen : IN STD_LOGIC; mem_re : OUT STD_LOGIC; mem_we : OUT STD_LOGIC; mem_addr_ren : out STD_LOGIC_VECTOR(6 DOWNTO 0); mem_addr_wen : out STD_LOGIC_VECTOR(6 DOWNTO 0); --------------------------------------------------------------------------- empty_almost : OUT STD_LOGIC; --occupancy is lesser than 16 * 32b empty : OUT STD_LOGIC; full_almost : OUT STD_LOGIC; --occupancy is greater than MAX - 5 * 32b full : OUT STD_LOGIC ); END ENTITY; ARCHITECTURE ar_lpp_waveform_fifo_ctrl OF lpp_waveform_fifo_ctrl IS SIGNAL sFull : STD_LOGIC; SIGNAL sFull_s : STD_LOGIC; SIGNAL sEmpty_s : STD_LOGIC; SIGNAL sEmpty : STD_LOGIC; SIGNAL sREN : STD_LOGIC; SIGNAL sWEN : STD_LOGIC; SIGNAL sRE : STD_LOGIC; SIGNAL sWE : STD_LOGIC; SIGNAL Waddr_vect : INTEGER RANGE 0 TO length := 0; SIGNAL Raddr_vect : INTEGER RANGE 0 TO length := 0; SIGNAL Waddr_vect_s : INTEGER RANGE 0 TO length := 0; SIGNAL Raddr_vect_s : INTEGER RANGE 0 TO length := 0; SIGNAL space_busy : INTEGER RANGE 0 TO length := 0; SIGNAL space_free : INTEGER RANGE 0 TO length := 0; BEGIN mem_re <= sRE; mem_we <= sWE; --============================= -- Read section --============================= sREN <= REN OR sEmpty; sRE <= NOT sREN; sEmpty_s <= '1' WHEN sEmpty = '1' AND Wen = '1' ELSE '1' WHEN sEmpty = '0' AND (Wen = '1' AND Ren = '0' AND Raddr_vect_s = Waddr_vect) ELSE '0'; Raddr_vect_s <= Raddr_vect +1 WHEN Raddr_vect < length -1 ELSE 0 ; PROCESS (clk, rstn) BEGIN IF(rstn = '0')then Raddr_vect <= 0; sempty <= '1'; ELSIF(clk'EVENT AND clk = '1')then IF run = '0' THEN Raddr_vect <= 0; sempty <= '1'; ELSE sEmpty <= sempty_s; IF(sREN = '0' and sempty = '0')then Raddr_vect <= Raddr_vect_s; END IF; END IF; END IF; END PROCESS; --============================= -- Write section --============================= sWEN <= WEN OR sFull; sWE <= NOT sWEN; sFull_s <= '1' WHEN Waddr_vect_s = Raddr_vect AND REN = '1' AND WEN = '0' ELSE '1' WHEN sFull = '1' AND REN = '1' ELSE '0'; Waddr_vect_s <= Waddr_vect +1 WHEN Waddr_vect < length -1 ELSE 0 ; PROCESS (clk, rstn) BEGIN IF(rstn = '0')then Waddr_vect <= 0; sfull <= '0'; ELSIF(clk'EVENT AND clk = '1')THEN IF run = '0' THEN Waddr_vect <= 0; sfull <= '0'; ELSE sfull <= sfull_s; IF(sWEN = '0' and sfull = '0')THEN Waddr_vect <= Waddr_vect_s; END IF; END IF; END IF; END PROCESS; mem_addr_wen <= std_logic_vector(to_unsigned((Waddr_vect + offset), mem_addr_wen'length)); mem_addr_ren <= std_logic_vector(to_unsigned((Raddr_vect + offset), mem_addr_ren'length)); ----------------------------------------------------------------------------- -- ----------------------------------------------------------------------------- --empty_almost <= '0' WHEN Waddr_vect > Raddr_vect AND ( Waddr_vect - Raddr_vect) > 15 ELSE -- '0' WHEN Waddr_vect < Raddr_vect AND (length + Waddr_vect - Raddr_vect) > 15 ELSE -- '1'; empty_almost <= '0' WHEN space_busy > 15 ELSE '1'; empty <= sEmpty; --full_almost <= '0' WHEN Waddr_vect > Raddr_vect AND (length + Raddr_vect - Waddr_vect) > 5 ELSE -- '0' WHEN Waddr_vect < Raddr_vect AND ( Raddr_vect - Waddr_vect) > 5 ELSE -- sfull WHEN Waddr_vect = Raddr_vect ELSE -- '1'; full_almost <= '0' WHEN space_free > 4 ELSE '1'; full <= sfull; ----------------------------------------------------------------------------- -- ----------------------------------------------------------------------------- space_busy <= length WHEN sfull = '1' ELSE length + Waddr_vect - Raddr_vect WHEN Waddr_vect < Raddr_vect ELSE Waddr_vect - Raddr_vect; space_free <= length - space_busy; END ARCHITECTURE;