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

Default support jumbo frames.

parent ac961afe
Branches
No related tags found
Loading
......@@ -914,7 +914,7 @@ BEGIN
GENERIC MAP (
g_technology => g_technology,
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_level => 1 -- 0 = use IP model (equivalent to g_sim = FALSE); 1 = use fast serdes model;
)
......
......@@ -53,7 +53,7 @@ ENTITY eth_stream IS
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_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_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
-- = 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.
-- Use g_jumbo_en = TRUE for frame_len <= 9000 octets (jumbo frames).
g_jumbo_en : BOOLEAN := FALSE
g_jumbo_en : BOOLEAN := TRUE
);
PORT (
-- Clocks and reset
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment