PoC.net.udp.RX
Todo
No documentation available.
Entity Declaration:
1 generic (
2 DEBUG : boolean := FALSE;
3 IP_VERSION : positive := 6
4 );
5 port (
6 Clock : in std_logic; --
7 Reset : in std_logic; --
8 -- STATUS port
9 Error : out std_logic;
10 -- IN port
11 In_Valid : in std_logic;
12 In_Data : in T_SLV_8;
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_SrcMACAddress_nxt : out std_logic;
18 In_Meta_SrcMACAddress_Data : in T_SLV_8;
19 In_Meta_DestMACAddress_nxt : out std_logic;
20 In_Meta_DestMACAddress_Data : in T_SLV_8;
21 In_Meta_EthType : in T_SLV_16;
22 In_Meta_SrcIPAddress_nxt : out std_logic;
23 In_Meta_SrcIPAddress_Data : in T_SLV_8;
24 In_Meta_DestIPAddress_nxt : out std_logic;
25 In_Meta_DestIPAddress_Data : in T_SLV_8;
26-- In_Meta_TrafficClass : in T_SLV_8;
27-- In_Meta_FlowLabel : in T_SLV_24;
28 In_Meta_Length : in T_SLV_16;
29 In_Meta_Protocol : in T_SLV_8;
30 -- OUT port
31 Out_Valid : out std_logic;
32 Out_Data : out T_SLV_8;
33 Out_SOF : out std_logic;
34 Out_EOF : out std_logic;
35 Out_Ack : in std_logic;
36 Out_Meta_rst : in std_logic;
37 Out_Meta_SrcMACAddress_nxt : in std_logic;
38 Out_Meta_SrcMACAddress_Data : out T_SLV_8;
39 Out_Meta_DestMACAddress_nxt : in std_logic;
40 Out_Meta_DestMACAddress_Data : out T_SLV_8;
41 Out_Meta_EthType : out T_SLV_16;
42 Out_Meta_SrcIPAddress_nxt : in std_logic;
43 Out_Meta_SrcIPAddress_Data : out T_SLV_8;
44 Out_Meta_DestIPAddress_nxt : in std_logic;
45 Out_Meta_DestIPAddress_Data : out T_SLV_8;
46-- Out_Meta_TrafficClass : out T_SLV_8;
47-- Out_Meta_FlowLabel : out T_SLV_24;
48 Out_Meta_Length : out T_SLV_16;
49 Out_Meta_Protocol : out T_SLV_8;
50 Out_Meta_SrcPort : out T_SLV_16;
51 Out_Meta_DestPort : out T_SLV_16
52 );
53end entity;