PoC.net.ndp.FSMQuery

Todo

No documentation available.

Entity Declaration:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
entity ndp_FSMQuery is
  port (
    Clock                           : in  std_logic;
    Reset                           : in  std_logic;
    
    NextHop_Query                   : in  std_logic;
    NextHop_IPv6Address_rst         : out std_logic;
    NextHop_IPv6Address_nxt         : out std_logic;
    NextHop_IPv6Address_Data        : in  T_SLV_8;
    
    NextHop_Valid                   : out std_logic;
    NextHop_MACAddress_rst          : in  std_logic;
    NextHop_MACAddress_nxt          : in  std_logic;
    NextHop_MACAddress_Data         : out T_SLV_8;
    
    DCache_Lookup                   : out std_logic;
    DCache_IPv6Address_rst          : in std_logic;
    DCache_IPv6Address_nxt          : in std_logic;
    DCache_IPv6Address_Data         : out T_SLV_8;
    
    DCache_CacheResult              : in  T_CACHE_RESULT;
    DCache_NextHopIPv6Address_rst   : out std_logic;
    DCache_NextHopIPv6Address_nxt   : out std_logic;
    DCache_NextHopIPv6Address_Data  : in  T_SLV_8;
    DCache_PathMUT                  : in  T_SLV_16;
    
    NCache_Lookup                   : out std_logic;
    NCache_IPv6Address_rst          : in std_logic;
    NCache_IPv6Address_nxt          : in std_logic;
    NCache_IPv6Address_Data         : out T_SLV_8;
    
    NCache_CacheResult              : in  T_CACHE_RESULT;
    NCache_MACAddress_rst           : out std_logic;
    NCache_MACAddress_nxt           : out std_logic;
    NCache_MACAddress_Data          : in  T_SLV_8;
    NCache_Reachability             : in  T_NET_NDP_REACHABILITY_STATE
  );
end entity;