1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
-- Copyright (c) 2013 Nuand LLC
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-- THE SOFTWARE.
library ieee ;
use ieee.std_logic_1164.all ;
use ieee.numeric_std.all ;
entity sync_fifo is
generic (
DEPTH : positive := 32 ;
WIDTH : positive := 16 ;
READ_AHEAD : boolean := true
) ;
port (
areset : in std_logic ;
clock : in std_logic ;
-- FIFO Status information
full : out std_logic ;
empty : out std_logic ;
used_words : out natural range 0 to DEPTH ;
-- FIFO Input Side
data_in : in std_logic_vector(WIDTH-1 downto 0) ;
write_en : in std_logic ;
-- FIFO Output Side
data_out : out std_logic_vector(WIDTH-1 downto 0) ;
read_en : in std_logic
) ;
end entity ; -- sync_fifo
architecture arch of sync_fifo is
-- House keeping
signal write_address : natural range 0 to DEPTH-1 ;
signal read_address : natural range 0 to DEPTH-1 ;
signal used : natural range 0 to DEPTH ;
-- Dual port RAM
type ram_t is array(0 to DEPTH-1) of std_logic_vector(WIDTH-1 downto 0) ;
signal ram : ram_t ;
begin
empty <= '1' when used = 0 else '0' ;
full <= '1' when used = DEPTH else '0' ;
used_words <= used ;
follow_used_words : process( clock, areset )
begin
if( areset = '1' ) then
used <= 0 ;
write_address <= 0 ;
read_address <= 0 ;
elsif( rising_edge(clock) ) then
if( write_en = '1' ) then
if( read_en = '0' ) then
if( used < DEPTH ) then
write_address <= (write_address + 1) mod DEPTH ;
used <= used + 1 ;
else
report "Trying to write a full FIFO!" severity error ;
end if ;
end if ;
else
if( read_en = '1' ) then
if( used > 0 ) then
read_address <= (read_address + 1) mod DEPTH ;
used <= used - 1 ;
else
report "Trying to read an empty FIFO!" severity error ;
end if ;
end if ;
end if ;
end if ;
end process ;
access_ram : process( clock )
begin
if( rising_edge( clock ) ) then
data_out <= ram(read_address) ;
if( write_en = '1' ) then
ram(write_address) <= data_in ;
end if ;
end if ;
end process ;
end architecture ; -- arch
|