]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: ethernet: ti: am65-cpsw: Fix max mtu to fit ethernet frames
authorSanjuán García, Jorge <Jorge.SanjuanGarcia@duagon.com>
Fri, 5 Jan 2024 08:55:43 +0000 (08:55 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Jan 2024 22:52:52 +0000 (14:52 -0800)
[ Upstream commit 64e47d8afb5ca533b27efc006405e5bcae2c4a7b ]

The value of AM65_CPSW_MAX_PACKET_SIZE represents the maximum length
of a received frame. This value is written to the register
AM65_CPSW_PORT_REG_RX_MAXLEN.

The maximum MTU configured on the network device should then leave
some room for the ethernet headers and frame check. Otherwise, if
the network interface is configured to its maximum mtu possible,
the frames will be larger than AM65_CPSW_MAX_PACKET_SIZE and will
get dropped as oversized.

The switch supports ethernet frame sizes between 64 and 2024 bytes
(including VLAN) as stated in the technical reference manual, so
define AM65_CPSW_MAX_PACKET_SIZE with that maximum size.

Fixes: 93a76530316a ("net: ethernet: ti: introduce am65x/j721e gigabit eth subsystem driver")
Signed-off-by: Jorge Sanjuan Garcia <jorge.sanjuangarcia@duagon.com>
Reviewed-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Reviewed-by: Siddharth Vadapalli <s-vadapalli@ti.com>
Link: https://lore.kernel.org/r/20240105085530.14070-2-jorge.sanjuangarcia@duagon.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/ti/am65-cpsw-nuss.c

index 4aa9477ac5977b9371931f072293cdcfc34e5ab7..1fa6f0dacd2de0c5d97c10777fded3e9b0fd87d7 100644 (file)
@@ -53,7 +53,7 @@
 #define AM65_CPSW_MAX_PORTS    8
 
 #define AM65_CPSW_MIN_PACKET_SIZE      VLAN_ETH_ZLEN
-#define AM65_CPSW_MAX_PACKET_SIZE      (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)
+#define AM65_CPSW_MAX_PACKET_SIZE      2024
 
 #define AM65_CPSW_REG_CTL              0x004
 #define AM65_CPSW_REG_STAT_PORT_EN     0x014
@@ -1985,7 +1985,8 @@ am65_cpsw_nuss_init_port_ndev(struct am65_cpsw_common *common, u32 port_idx)
        eth_hw_addr_set(port->ndev, port->slave.mac_addr);
 
        port->ndev->min_mtu = AM65_CPSW_MIN_PACKET_SIZE;
-       port->ndev->max_mtu = AM65_CPSW_MAX_PACKET_SIZE;
+       port->ndev->max_mtu = AM65_CPSW_MAX_PACKET_SIZE -
+                             (VLAN_ETH_HLEN + ETH_FCS_LEN);
        port->ndev->hw_features = NETIF_F_SG |
                                  NETIF_F_RXCSUM |
                                  NETIF_F_HW_CSUM |