PoC.bus.stream.Mirror

Todo

No documentation available.

Entity Declaration:

 1  generic (
 2    PORTS             : positive                  := 2;
 3    DATA_BITS         : positive                  := 8;
 4    META_BITS         : T_POSVEC                  := (0 => 8);
 5    META_LENGTH       : T_POSVEC                  := (0 => 16)
 6  );
 7  port (
 8    Clock             : in  std_logic;
 9    Reset             : in  std_logic;
10    -- IN Port
11    In_Valid          : in  std_logic;
12    In_Data           : in  std_logic_vector(DATA_BITS - 1 downto 0);
13    In_SOF            : in  std_logic;
14    In_EOF            : in  std_logic;
15    In_Ack            : out std_logic;
16    In_Meta_rst       : out std_logic;
17    In_Meta_nxt       : out std_logic_vector(META_BITS'length - 1 downto 0);
18    In_Meta_Data      : in  std_logic_vector(isum(META_BITS) - 1 downto 0);
19    -- OUT Port
20    Out_Valid         : out std_logic_vector(PORTS - 1 downto 0);
21    Out_Data          : out T_SLM(PORTS - 1 downto 0, DATA_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    Out_Meta_rst      : in  std_logic_vector(PORTS - 1 downto 0);
26    Out_Meta_nxt      : in  T_SLM(PORTS - 1 downto 0, META_BITS'length - 1 downto 0);
27    Out_Meta_Data     : out T_SLM(PORTS - 1 downto 0, isum(META_BITS) - 1 downto 0)
28  );
29end entity;