Skip to content
Snippets Groups Projects
Commit 17c00f82 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Default support jumbo frames.

parent ac961afe
No related branches found
No related tags found
1 merge request!300Resolve L2SDP-878
...@@ -914,7 +914,7 @@ BEGIN ...@@ -914,7 +914,7 @@ BEGIN
GENERIC MAP ( GENERIC MAP (
g_technology => g_technology, g_technology => g_technology,
g_rx_udp_port => TO_UINT(c_eth_rx_udp_port), -- = 0x1771 = 6001 g_rx_udp_port => TO_UINT(c_eth_rx_udp_port), -- = 0x1771 = 6001
g_jumbo_en => FALSE, g_jumbo_en => TRUE,
g_sim => g_sim, g_sim => g_sim,
g_sim_level => 1 -- 0 = use IP model (equivalent to g_sim = FALSE); 1 = use fast serdes model; g_sim_level => 1 -- 0 = use IP model (equivalent to g_sim = FALSE); 1 = use fast serdes model;
) )
......
...@@ -53,7 +53,7 @@ ENTITY eth_stream IS ...@@ -53,7 +53,7 @@ ENTITY eth_stream IS
g_technology : NATURAL := c_tech_select_default; g_technology : NATURAL := c_tech_select_default;
g_ETH_PHY : STRING := "LVDS"; -- "LVDS" (default): uses LVDS IOs for ctrl_unb_common, "XCVR": uses tranceiver PHY g_ETH_PHY : STRING := "LVDS"; -- "LVDS" (default): uses LVDS IOs for ctrl_unb_common, "XCVR": uses tranceiver PHY
g_rx_udp_port : NATURAL := TO_UINT(c_eth_rx_udp_port); g_rx_udp_port : NATURAL := TO_UINT(c_eth_rx_udp_port);
g_jumbo_en : BOOLEAN := FALSE; g_jumbo_en : BOOLEAN := TRUE;
g_sim : BOOLEAN := FALSE; g_sim : BOOLEAN := FALSE;
g_sim_level : NATURAL := 0 -- 0 = use IP model (equivalent to g_sim = FALSE); 1 = use fast serdes model; g_sim_level : NATURAL := 0 -- 0 = use IP model (equivalent to g_sim = FALSE); 1 = use fast serdes model;
); );
......
...@@ -39,7 +39,7 @@ ENTITY tech_tse_setup IS ...@@ -39,7 +39,7 @@ ENTITY tech_tse_setup IS
-- = FALSE for frame_len <= 1500 octets. If frame is longer then this -- = FALSE for frame_len <= 1500 octets. If frame is longer then this
-- yields invalid length flag in rx_sosi.err, but data is still received. -- yields invalid length flag in rx_sosi.err, but data is still received.
-- Use g_jumbo_en = TRUE for frame_len <= 9000 octets (jumbo frames). -- Use g_jumbo_en = TRUE for frame_len <= 9000 octets (jumbo frames).
g_jumbo_en : BOOLEAN := FALSE g_jumbo_en : BOOLEAN := TRUE
); );
PORT ( PORT (
-- Clocks and reset -- Clocks and reset
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment