PoC.net.ipv6.TX

Todo

No documentation available.

Entity Declaration:

 1  generic (
 2    DEBUG                           : boolean             := FALSE
 3  );
 4  port (
 5    Clock                           : in  std_logic;                --
 6    Reset                           : in  std_logic;                --
 7    -- IN port
 8    In_Valid                        : in  std_logic;
 9    In_Data                         : in  T_SLV_8;
10    In_SOF                          : in  std_logic;
11    In_EOF                          : in  std_logic;
12    In_Ack                          : out std_logic;
13    In_Meta_rst                     : out std_logic;
14    In_Meta_SrcIPv6Address_nxt      : out std_logic;
15    In_Meta_SrcIPv6Address_Data     : in  T_SLV_8;
16    In_Meta_DestIPv6Address_nxt     : out std_logic;
17    In_Meta_DestIPv6Address_Data    : in  T_SLV_8;
18    In_Meta_TrafficClass            : in  T_SLV_8;
19    In_Meta_FlowLabel               : in  T_SLV_24; --STD_LOGIC_VECTOR(19 downto 0);
20    In_Meta_Length                  : in  T_SLV_16;
21    In_Meta_NextHeader              : in  T_SLV_8;
22    -- to NDP layer
23    NDP_NextHop_Query               : out std_logic;
24    NDP_NextHop_IPv6Address_rst     : in  std_logic;
25    NDP_NextHop_IPv6Address_nxt     : in  std_logic;
26    NDP_NextHop_IPv6Address_Data    : out T_SLV_8;
27    -- from NDP layer
28    NDP_NextHop_Valid               : in  std_logic;
29    NDP_NextHop_MACAddress_rst      : out std_logic;
30    NDP_NextHop_MACAddress_nxt      : out std_logic;
31    NDP_NextHop_MACAddress_Data     : in  T_SLV_8;
32    -- OUT port
33    Out_Valid                       : out std_logic;
34    Out_Data                        : out T_SLV_8;
35    Out_SOF                         : out std_logic;
36    Out_EOF                         : out std_logic;
37    Out_Ack                         : in  std_logic;
38    Out_Meta_rst                    : in  std_logic;
39    Out_Meta_DestMACAddress_nxt     : in  std_logic;
40    Out_Meta_DestMACAddress_Data    : out T_SLV_8
41  );
42end entity;