From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Lunn Subject: Re: [PATCH 0/3]: net: dsa: mt7530: support MT7530 in the MT7621 SoC Date: Fri, 30 Nov 2018 14:37:51 +0100 Message-ID: <20181130133751.GC11747@lunn.ch> References: <20181130075737.8041-1-gerg@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: sean.wang@mediatek.com, vivien.didelot@savoirfairelinux.com, f.fainelli@gmail.com, netdev@vger.kernel.org, blogic@openwrt.org, neil@brown.name To: gerg@kernel.org Return-path: Received: from vps0.lunn.ch ([185.16.172.187]:55820 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726070AbeLAAr0 (ORCPT ); Fri, 30 Nov 2018 19:47:26 -0500 Content-Disposition: inline In-Reply-To: <20181130075737.8041-1-gerg@kernel.org> Sender: netdev-owner@vger.kernel.org List-ID: > 1. TX packets are not getting an IP header checksum via the normal > off-loaded checksumming when in DSA mode. I have to switch off > NETIF_F_IP_CSUM, so the software stack generates the checksum. > That checksum offloading works ok when not using the 7530 DSA driver. With some vendors MAC hardware, there is a field in the descriptor to indicate how big a VLAN tag the frame has. The hardware can then use this information to skip over the VLAN tags to find the IP header, and then perform checksuming. You might be able to re-use that, consider the DSA header as part of the VLAN header. Other vendors, there is no way i've found to get hadware offload of checksumming working. Andrew