PoC.bus.stream.DeMux

Todo

No documentation available.

Entity Declaration:

 1    META_BITS          : natural                    := 8;
 2    META_REV_BITS      : natural                    := 2
 3  );
 4  port (
 5    Clock              : in  std_logic;
 6    Reset              : in  std_logic;
 7    -- Control interface
 8    DeMuxControl      : in  std_logic_vector(PORTS - 1 downto 0);
 9    -- IN Port
10    In_Valid          : in  std_logic;
11    In_Data            : in  std_logic_vector(DATA_BITS - 1 downto 0);
12    In_Meta            : in  std_logic_vector(META_BITS - 1 downto 0);
13    In_Meta_rev        : out std_logic_vector(META_REV_BITS - 1 downto 0);
14    In_SOF            : in  std_logic;
15    In_EOF            : in  std_logic;
16    In_Ack            : out std_logic;
17    -- OUT Ports
18    Out_Valid          : out std_logic_vector(PORTS - 1 downto 0);
19    Out_Data          : out T_SLM(PORTS - 1 downto 0, DATA_BITS - 1 downto 0);
20    Out_Meta          : out T_SLM(PORTS - 1 downto 0, META_BITS - 1 downto 0);
21    Out_Meta_rev      : in  T_SLM(PORTS - 1 downto 0, META_REV_BITS - 1 downto 0);
22    Out_SOF            : out std_logic_vector(PORTS - 1 downto 0);
23    Out_EOF            : out std_logic_vector(PORTS - 1 downto 0);
24    Out_Ack            : in  std_logic_vector(PORTS - 1 downto 0)
25  );
26end entity;
27
28
29architecture rtl of stream_DeMux is
30  subtype T_CHANNEL_INDEX is natural range 0 to PORTS - 1;