PoC.net.icmpv4.RX
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 -- CSE interface
8 Command : in T_NET_ICMPV4_RX_COMMAND;
9 Status : out T_NET_ICMPV4_RX_STATUS;
10 Error : out T_NET_ICMPV4_RX_ERROR;
11 -- IN port
12 In_Valid : in std_logic;
13 In_Data : in T_SLV_8;
14 In_SOF : in std_logic;
15 In_EOF : in std_logic;
16 In_Ack : out std_logic;
17 In_Meta_rst : out std_logic;
18 In_Meta_SrcMACAddress_nxt : out std_logic;
19 In_Meta_SrcMACAddress_Data : in T_SLV_8;
20 In_Meta_DestMACAddress_nxt : out std_logic;
21 In_Meta_DestMACAddress_Data : in T_SLV_8;
22 In_Meta_SrcIPv4Address_nxt : out std_logic;
23 In_Meta_SrcIPv4Address_Data : in T_SLV_8;
24 In_Meta_DestIPv4Address_nxt : out std_logic;
25 In_Meta_DestIPv4Address_Data : in T_SLV_8;
26 In_Meta_Length : in T_SLV_16;
27 -- OUT Port
28 Out_Meta_rst : in std_logic;
29 Out_Meta_SrcMACAddress_nxt : in std_logic;
30 Out_Meta_SrcMACAddress_Data : out T_SLV_8;
31 Out_Meta_DestMACAddress_nxt : in std_logic;
32 Out_Meta_DestMACAddress_Data : out T_SLV_8;
33 Out_Meta_SrcIPv4Address_nxt : in std_logic;
34 Out_Meta_SrcIPv4Address_Data : out T_SLV_8;
35 Out_Meta_DestIPv4Address_nxt : in std_logic;
36 Out_Meta_DestIPv4Address_Data : out T_SLV_8;
37 Out_Meta_Length : out T_SLV_16;
38 Out_Meta_Type : out T_SLV_8;
39 Out_Meta_Code : out T_SLV_8;
40 Out_Meta_Identification : out T_SLV_16;
41 Out_Meta_SequenceNumber : out T_SLV_16;
42 Out_Meta_Payload_nxt : in std_logic;
43 Out_Meta_Payload_last : out std_logic;
44 Out_Meta_Payload_Data : out T_SLV_8
45 );
46end entity;