Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 76FE0C433FE for ; Fri, 3 Dec 2021 17:20:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1358488AbhLCRXW (ORCPT ); Fri, 3 Dec 2021 12:23:22 -0500 Received: from relay12.mail.gandi.net ([217.70.178.232]:50061 "EHLO relay12.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1353361AbhLCRXV (ORCPT ); Fri, 3 Dec 2021 12:23:21 -0500 Received: (Authenticated sender: clement.leger@bootlin.com) by relay12.mail.gandi.net (Postfix) with ESMTPSA id C5C38200003; Fri, 3 Dec 2021 17:19:53 +0000 (UTC) From: =?UTF-8?q?Cl=C3=A9ment=20L=C3=A9ger?= To: "David S. Miller" , Jakub Kicinski , Rob Herring , Vladimir Oltean , Claudiu Manoil , Alexandre Belloni , UNGLinuxDriver@microchip.com, Andrew Lunn Cc: =?UTF-8?q?Cl=C3=A9ment=20L=C3=A9ger?= , netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Thomas Petazzoni , Denis Kirjanov , Julian Wiedmann Subject: [PATCH net-next v4 0/4] Add FDMA support on ocelot switch driver Date: Fri, 3 Dec 2021 18:19:12 +0100 Message-Id: <20211203171916.378735-1-clement.leger@bootlin.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series adds support for the Frame DMA present on the VSC7514 switch. The FDMA is able to extract and inject packets on the various ethernet interfaces present on the switch. While adding FDMA support, bindings were switched from .txt to .yaml and MAC address reading from device-tree was added for testing purposes. ------------------ Changes in V4: - Use regmap for register access - Removed yaml bindings convertion as well as mac address from dt - Removed pre-computed IFH for the moment - Fixed timestamp reading for PTP in FDMA - Fixed wrong exit path for fdma netdev init - Removed spinlock from TX cleanup - Add asynchronous RX chan stop before refilling - Reduce CH_SAFE wait time to 10us - Reduce waiting time for channel to be safe - Completely rework rx to use page recycling (code from gianfar) - Reenable MTU change support since FDMA now supports it transparently - Split TX and RX ring size - Larger RX size to lower page allocation rate - Add static key to check for FDMA to be enabled in fast path Changes in V3: - Add timeouts for hardware registers read - Add cleanup path in fdma_init - Rework injection and extraction to used ring like structure - Added PTP support to FDMA - Use pskb_expand_head instead of skb_copy_expand in xmit - Drop jumbo support - Use of_get_ethdev_address - Add ocelot_fdma_netdev_init/deinit Changes in V2: - Read MAC for each port and not as switch base MAC address - Add missing static for some functions in ocelot_fdma.c - Split change_mtu from fdma commit - Add jumbo support for register based xmit - Move precomputed header into ocelot_port struct - Remove use of QUIRK_ENDIAN_LITTLE due to misconfiguration for tests - Remove fragmented packet sending which has not been tested Clément Léger (4): net: ocelot: export ocelot_ifh_port_set() to setup IFH net: ocelot: add and export ocelot_ptp_rx_timestamp() net: ocelot: add support for ndo_change_mtu net: ocelot: add FDMA support drivers/net/ethernet/mscc/Makefile | 1 + drivers/net/ethernet/mscc/ocelot.c | 59 +- drivers/net/ethernet/mscc/ocelot.h | 3 + drivers/net/ethernet/mscc/ocelot_fdma.c | 885 +++++++++++++++++++++ drivers/net/ethernet/mscc/ocelot_fdma.h | 177 +++++ drivers/net/ethernet/mscc/ocelot_net.c | 39 +- drivers/net/ethernet/mscc/ocelot_vsc7514.c | 8 + include/soc/mscc/ocelot.h | 9 + 8 files changed, 1155 insertions(+), 26 deletions(-) create mode 100644 drivers/net/ethernet/mscc/ocelot_fdma.c create mode 100644 drivers/net/ethernet/mscc/ocelot_fdma.h -- 2.34.1