linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v4 0/4] Add FDMA support on ocelot switch driver
@ 2021-12-03 17:19 Clément Léger
  2021-12-03 17:19 ` [PATCH net-next v4 1/4] net: ocelot: export ocelot_ifh_port_set() to setup IFH Clément Léger
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Clément Léger @ 2021-12-03 17:19 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski, Rob Herring, Vladimir Oltean,
	Claudiu Manoil, Alexandre Belloni, UNGLinuxDriver, Andrew Lunn
  Cc: Clément Léger, netdev, devicetree, linux-kernel,
	Thomas Petazzoni, Denis Kirjanov, Julian Wiedmann

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


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2021-12-06 17:07 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-03 17:19 [PATCH net-next v4 0/4] Add FDMA support on ocelot switch driver Clément Léger
2021-12-03 17:19 ` [PATCH net-next v4 1/4] net: ocelot: export ocelot_ifh_port_set() to setup IFH Clément Léger
2021-12-04 13:08   ` Vladimir Oltean
2021-12-03 17:19 ` [PATCH net-next v4 2/4] net: ocelot: add and export ocelot_ptp_rx_timestamp() Clément Léger
2021-12-04 13:45   ` Vladimir Oltean
2021-12-03 17:19 ` [PATCH net-next v4 3/4] net: ocelot: add support for ndo_change_mtu Clément Léger
2021-12-04 13:45   ` Vladimir Oltean
2021-12-03 17:19 ` [PATCH net-next v4 4/4] net: ocelot: add FDMA support Clément Léger
2021-12-04  6:52   ` Clément Léger
2021-12-04 11:51     ` Vladimir Oltean
2021-12-04 13:43   ` Vladimir Oltean
2021-12-06  9:28     ` Clément Léger
2021-12-06 17:07       ` Vladimir Oltean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).