PoC.bus.stream.DeMux

Todo

No documentation available.

Entity Declaration:

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