PoC.net.udp.RX¶
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | entity udp_RX is
generic (
DEBUG : boolean := FALSE;
IP_VERSION : positive := 6
);
port (
Clock : in std_logic; --
Reset : in std_logic; --
-- STATUS port
Error : out std_logic;
-- IN port
In_Valid : in std_logic;
In_Data : in T_SLV_8;
In_SOF : in std_logic;
In_EOF : in std_logic;
In_Ack : out std_logic;
In_Meta_rst : out std_logic;
In_Meta_SrcMACAddress_nxt : out std_logic;
In_Meta_SrcMACAddress_Data : in T_SLV_8;
In_Meta_DestMACAddress_nxt : out std_logic;
In_Meta_DestMACAddress_Data : in T_SLV_8;
In_Meta_EthType : in T_SLV_16;
In_Meta_SrcIPAddress_nxt : out std_logic;
In_Meta_SrcIPAddress_Data : in T_SLV_8;
In_Meta_DestIPAddress_nxt : out std_logic;
In_Meta_DestIPAddress_Data : in T_SLV_8;
-- In_Meta_TrafficClass : in T_SLV_8;
-- In_Meta_FlowLabel : in T_SLV_24;
In_Meta_Length : in T_SLV_16;
In_Meta_Protocol : in T_SLV_8;
-- OUT port
Out_Valid : out std_logic;
Out_Data : out T_SLV_8;
Out_SOF : out std_logic;
Out_EOF : out std_logic;
Out_Ack : in std_logic;
Out_Meta_rst : in std_logic;
Out_Meta_SrcMACAddress_nxt : in std_logic;
Out_Meta_SrcMACAddress_Data : out T_SLV_8;
Out_Meta_DestMACAddress_nxt : in std_logic;
Out_Meta_DestMACAddress_Data : out T_SLV_8;
Out_Meta_EthType : out T_SLV_16;
Out_Meta_SrcIPAddress_nxt : in std_logic;
Out_Meta_SrcIPAddress_Data : out T_SLV_8;
Out_Meta_DestIPAddress_nxt : in std_logic;
Out_Meta_DestIPAddress_Data : out T_SLV_8;
-- Out_Meta_TrafficClass : out T_SLV_8;
-- Out_Meta_FlowLabel : out T_SLV_24;
Out_Meta_Length : out T_SLV_16;
Out_Meta_Protocol : out T_SLV_8;
Out_Meta_SrcPort : out T_SLV_16;
Out_Meta_DestPort : out T_SLV_16
);
end entity;
|