PoC.net.ndp.DestinationCache

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
entity ndp_DestinationCache is
  generic (
    CLOCK_FREQ_MHZ            : REAL                                  := 125.0;         -- 125 MHz
    REPLACEMENT_POLICY        : string                                := "LRU";
    TAG_BYTE_ORDER            : T_BYTE_ORDER                          := BIG_ENDIAN;
    DATA_BYTE_ORDER           : T_BYTE_ORDER                          := BIG_ENDIAN;
    INITIAL_CACHE_CONTENT     : T_NET_NDP_DESTINATIONCACHE_VECTOR
  );
  port (
    Clock                     : in  std_logic;                                  --
    Reset                     : in  std_logic;                                  --
    
    Lookup                    : in  std_logic;
    IPv6Address_rst           : out std_logic;
    IPv6Address_nxt           : out std_logic;
    IPv6Address_Data          : in  T_SLV_8;
    
    CacheResult               : out T_CACHE_RESULT;
    NextHopIPv6Address_rst    : in  std_logic;
    NextHopIPv6Address_nxt    : in  std_logic;
    NextHopIPv6Address_Data   : out T_SLV_8;
    PathMTU                   : out T_SLV_16
  );
end entity;