OpenCores
URL https://opencores.org/ocsvn/astron_fifo/astron_fifo/trunk

Subversion Repositories astron_fifo

[/] [astron_fifo/] [trunk/] [common_rl_decrease.vhd] - Diff between revs 2 and 3

Only display areas with differences | Details | Blame | View Log

Rev 2 Rev 3
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
--
-- Copyright (C) 2013
-- Copyright 2020
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- JIVE (Joint Institute for VLBI in Europe) <http://www.jive.nl/>
 
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
--
-- This program is free software: you can redistribute it and/or modify
-- Licensed under the Apache License, Version 2.0 (the "License");
-- it under the terms of the GNU General Public License as published by
-- you may not use this file except in compliance with the License.
-- the Free Software Foundation, either version 3 of the License, or
-- You may obtain a copy of the License at
-- (at your option) any later version.
 
--
--
-- This program is distributed in the hope that it will be useful,
--     http://www.apache.org/licenses/LICENSE-2.0
-- 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
-- Unless required by applicable law or agreed to in writing, software
-- along with this program.  If not, see <http://www.gnu.org/licenses/>.
-- distributed under the License is distributed on an "AS IS" BASIS,
 
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-- See the License for the specific language governing permissions and
 
-- limitations under the License.
--
--
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 
 
-- >>> Ported from UniBoard dp_latency_adapter for fixed RL 0 --> 1
-- >>> Ported from UniBoard dp_latency_adapter for fixed RL 0 --> 1
 
 
LIBRARY IEEE;
LIBRARY IEEE;
USE IEEE.std_logic_1164.ALL;
USE IEEE.std_logic_1164.ALL;
 
 
-- Purpose: Adapt from ready latency 1 to 0 to make a look ahead FIFO
-- Purpose: Adapt from ready latency 1 to 0 to make a look ahead FIFO
-- Description: -
-- Description: -
-- Remark:
-- Remark:
-- . A show ahead FIFO with RL=0 does not need a rd_emp output signal, because
-- . A show ahead FIFO with RL=0 does not need a rd_emp output signal, because
--   with RL=0 the rd_val='0' when it is empty (so emp <= NOT rd_val).
--   with RL=0 the rd_val='0' when it is empty (so emp <= NOT rd_val).
 
 
 
 
ENTITY common_rl_decrease IS
ENTITY common_rl_decrease IS
  GENERIC (
  GENERIC (
    g_adapt       : BOOLEAN := TRUE;    -- default when TRUE then decrease sink RL 1 to source RL 0, else then implement wires
    g_adapt       : BOOLEAN := TRUE;    -- default when TRUE then decrease sink RL 1 to source RL 0, else then implement wires
    g_dat_w       : NATURAL := 18
    g_dat_w       : NATURAL := 18
  );
  );
  PORT (
  PORT (
    rst           : IN  STD_LOGIC;
    rst           : IN  STD_LOGIC;
    clk           : IN  STD_LOGIC;
    clk           : IN  STD_LOGIC;
    -- ST sink: RL = 1
    -- ST sink: RL = 1
    snk_out_ready : OUT STD_LOGIC;
    snk_out_ready : OUT STD_LOGIC;
    snk_in_dat    : IN  STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0);
    snk_in_dat    : IN  STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0);
    snk_in_val    : IN  STD_LOGIC := 'X';
    snk_in_val    : IN  STD_LOGIC := 'X';
    -- ST source: RL = 0
    -- ST source: RL = 0
    src_in_ready  : IN  STD_LOGIC;
    src_in_ready  : IN  STD_LOGIC;
    src_out_dat   : OUT STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0);
    src_out_dat   : OUT STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0);
    src_out_val   : OUT STD_LOGIC
    src_out_val   : OUT STD_LOGIC
  );
  );
END common_rl_decrease;
END common_rl_decrease;
 
 
 
 
ARCHITECTURE rtl OF common_rl_decrease IS
ARCHITECTURE rtl OF common_rl_decrease IS
 
 
  -- Internally use streaming record for the SOSI, for the SISO.ready directly use src_in_ready
  -- Internally use streaming record for the SOSI, for the SISO.ready directly use src_in_ready
  TYPE t_sosi IS RECORD  -- Source Out or Sink In
  TYPE t_sosi IS RECORD  -- Source Out or Sink In
    data     : STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0);
    data     : STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0);
    valid    : STD_LOGIC;
    valid    : STD_LOGIC;
  END RECORD;
  END RECORD;
 
 
  TYPE t_sosi_arr IS ARRAY (INTEGER RANGE <>) OF t_sosi;
  TYPE t_sosi_arr IS ARRAY (INTEGER RANGE <>) OF t_sosi;
 
 
  CONSTANT c_sosi_rst : t_sosi := ((OTHERS=>'0'), '0');
  CONSTANT c_sosi_rst : t_sosi := ((OTHERS=>'0'), '0');
 
 
  -- SOSI IO  
  -- SOSI IO  
  SIGNAL snk_in       : t_sosi;
  SIGNAL snk_in       : t_sosi;
  SIGNAL src_out      : t_sosi;
  SIGNAL src_out      : t_sosi;
 
 
  -- The default FIFO has ready latency RL = 1, need to use input RL + 1 words for the buf array, to go to output RL = 0 for show ahead FIFO
  -- The default FIFO has ready latency RL = 1, need to use input RL + 1 words for the buf array, to go to output RL = 0 for show ahead FIFO
  SIGNAL buf          : t_sosi_arr(1 DOWNTO 0);
  SIGNAL buf          : t_sosi_arr(1 DOWNTO 0);
  SIGNAL nxt_buf      : t_sosi_arr(1 DOWNTO 0);
  SIGNAL nxt_buf      : t_sosi_arr(1 DOWNTO 0);
 
 
BEGIN
BEGIN
 
 
  gen_wires : IF g_adapt=FALSE GENERATE
  gen_wires : IF g_adapt=FALSE GENERATE
    snk_out_ready <= src_in_ready;
    snk_out_ready <= src_in_ready;
 
 
    src_out_dat   <= snk_in_dat;
    src_out_dat   <= snk_in_dat;
    src_out_val   <= snk_in_val;
    src_out_val   <= snk_in_val;
  END GENERATE;
  END GENERATE;
 
 
  gen_adapt : IF g_adapt=TRUE GENERATE
  gen_adapt : IF g_adapt=TRUE GENERATE
    snk_in.data  <= snk_in_dat;
    snk_in.data  <= snk_in_dat;
    snk_in.valid <= snk_in_val;
    snk_in.valid <= snk_in_val;
 
 
    src_out_dat <= src_out.data;
    src_out_dat <= src_out.data;
    src_out_val <= src_out.valid;
    src_out_val <= src_out.valid;
 
 
    -- Buf[0] contains the FIFO output with zero ready latency
    -- Buf[0] contains the FIFO output with zero ready latency
    src_out <= buf(0);
    src_out <= buf(0);
 
 
    p_clk : PROCESS(rst, clk)
    p_clk : PROCESS(rst, clk)
    BEGIN
    BEGIN
      IF rst='1' THEN
      IF rst='1' THEN
        buf <= (OTHERS=>c_sosi_rst);
        buf <= (OTHERS=>c_sosi_rst);
      ELSIF rising_edge(clk) THEN
      ELSIF rising_edge(clk) THEN
        buf <= nxt_buf;
        buf <= nxt_buf;
      END IF;
      END IF;
    END PROCESS;
    END PROCESS;
 
 
    p_snk_out_ready : PROCESS(buf, src_in_ready, snk_in)
    p_snk_out_ready : PROCESS(buf, src_in_ready, snk_in)
    BEGIN
    BEGIN
      snk_out_ready <= '0';
      snk_out_ready <= '0';
      IF src_in_ready='1' THEN
      IF src_in_ready='1' THEN
        -- Default snk_out_ready when src_in_ready.
        -- Default snk_out_ready when src_in_ready.
        snk_out_ready <= '1';
        snk_out_ready <= '1';
      ELSE
      ELSE
        -- Extra snk_out_ready to look ahead for RL = 0.
        -- Extra snk_out_ready to look ahead for RL = 0.
        IF buf(0).valid='0' THEN
        IF buf(0).valid='0' THEN
          snk_out_ready <= '1';
          snk_out_ready <= '1';
        ELSIF buf(1).valid='0' THEN
        ELSIF buf(1).valid='0' THEN
          snk_out_ready <= NOT(snk_in.valid);
          snk_out_ready <= NOT(snk_in.valid);
        END IF;
        END IF;
      END IF;
      END IF;
    END PROCESS;
    END PROCESS;
 
 
    p_buf : PROCESS(buf, src_in_ready, snk_in)
    p_buf : PROCESS(buf, src_in_ready, snk_in)
    BEGIN
    BEGIN
      -- Keep or shift the buf dependent on src_in_ready, no need to explicitly check buf().valid
      -- Keep or shift the buf dependent on src_in_ready, no need to explicitly check buf().valid
      nxt_buf <= buf;
      nxt_buf <= buf;
      IF src_in_ready='1' THEN
      IF src_in_ready='1' THEN
        nxt_buf(0) <= buf(1);
        nxt_buf(0) <= buf(1);
        nxt_buf(1).valid <= '0';  -- not strictly necessary, but robust
        nxt_buf(1).valid <= '0';  -- not strictly necessary, but robust
      END IF;
      END IF;
 
 
      -- Put input data at the first available location dependent on src_in_ready, no need to explicitly check snk_in_val
      -- Put input data at the first available location dependent on src_in_ready, no need to explicitly check snk_in_val
      IF buf(0).valid='0' THEN
      IF buf(0).valid='0' THEN
        nxt_buf(0) <= snk_in;
        nxt_buf(0) <= snk_in;
      ELSE
      ELSE
        IF buf(1).valid='0' THEN
        IF buf(1).valid='0' THEN
          IF src_in_ready='0' THEN
          IF src_in_ready='0' THEN
            nxt_buf(1) <= snk_in;
            nxt_buf(1) <= snk_in;
          ELSE
          ELSE
            nxt_buf(0) <= snk_in;
            nxt_buf(0) <= snk_in;
          END IF;
          END IF;
        END IF;
        END IF;
      END IF;
      END IF;
    END PROCESS;
    END PROCESS;
  END GENERATE;
  END GENERATE;
 
 
END rtl;
END rtl;
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.