mbox series

[net-next,v12,00/12] Introduce RVU representors

Message ID 20241107160839.23707-1-gakula@marvell.com (mailing list archive)
Headers show
Series Introduce RVU representors | expand

Message

Geetha sowjanya Nov. 7, 2024, 4:08 p.m. UTC
This series adds representor support for each rvu devices.
When switchdev mode is enabled, representor netdev is registered
for each rvu device. In implementation of representor model, 
one NIX HW LF with multiple SQ and RQ is reserved, where each
RQ and SQ of the LF are mapped to a representor. A loopback channel
is reserved to support packet path between representors and VFs.
CN10K silicon supports 2 types of MACs, RPM and SDP. This
patch set adds representor support for both RPM and SDP MAC
interfaces.

- Patch 1: Implements basic representor driver.
- Patch 2: Add devlink support to create representor netdevs that
  can be used to manage VFs.
- Patch 3: Implements basec netdev_ndo_ops.
- Patch 4: Installs tcam rules to route packets between representor and
	   VFs.
- Patch 5: Enables fetching VF stats via representor interface
- Patch 6: Adds support to sync link state between representors and VFs .
- Patch 7: Enables configuring VF MTU via representor netdevs.
- Patch 8: Adds representors for sdp MAC.
- Patch 9: Adds devlink port support.
- Patch 10: Implements offload stats.
- Patch 11: Implements tc offload support.
- patch 12: Adds documentation for rvu port representor.


#devlink dev
pci/0002:1c:00.0

Command to create PF/VF representor
#devlink dev eswitch set pci/0002:1c:00.0 mode switchdev

# ip link show
	Rpf1vf0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000 link/ether f6:43:83:ee:26:21 brd ff:ff:ff:ff:ff:ff
	Rpf1vf1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000 link/ether 12:b2:54:0e:24:54 brd ff:ff:ff:ff:ff:ff
	Rpf1vf2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000 link/ether 4a:12:c4:4c:32:62 brd ff:ff:ff:ff:ff:ff
	Rpf1vf3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000 link/ether ca:cb:68:0e:e2:6e brd ff:ff:ff:ff:ff:ff
	Rpf2vf0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000 link/ether 06:cc:ad:b4:f0:93 brd ff:ff:ff:ff:ff:ff


~# devlink port
	pci/0002:1c:00.0/0: type eth netdev Rpf1vf0 flavour physical port 0 splittable false
	pci/0002:1c:00.0/1: type eth netdev Rpf1vf1 flavour pcivf controller 0 pfnum 1 vfnum 1 external false splittable false
	pci/0002:1c:00.0/2: type eth netdev Rpf1vf2 flavour pcivf controller 0 pfnum 1 vfnum 2 external false splittable false
	pci/0002:1c:00.0/3: type eth netdev Rpf1vf3 flavour pcivf controller 0 pfnum 1 vfnum 3 external false splittable false

-----------
v11:v1:
  - Submitted refactoring changes as a separate patch set.
	https://lore.kernel.org/netdev/20241023161843.15543-1-gakula@marvell.com/T/
  - Moved documentation to a separate patch.
  - patch 9: Added code changes to forward updated mac address to VF.
  - Implemented TC offload support.

v10-v11:
  - As suggested by "Jiri Pirko" adjusted the documentation.
  - Added more commit description to patch1. 

v9-v10:
  - Fixed build warning w.r.t documentation.

v8-v9:
   - Updated the documentation.

v7-v8:
   - Implemented offload stats ndo.
   - Added documentation.

v6-v7:
  - Rebased on top net-next branch.

v5-v6:
  - Addressed review comments provided by "Simon Horman".
  - Added review tag. 

v4-v5:
  - Patch 3: Removed devm_* usage in rvu_rep_create()
  - Patch 3: Fixed build warnings.

v3-v4: 
 - Patch 2 & 3: Fixed coccinelle reported warnings.
 - Patch 10: Added devlink port support.

v2-v3:
 - Used extack for error messages.
 - As suggested reworked commit messages.
 - Fixed sparse warning.

v1-v2:
 -Fixed build warnings.
 -Address review comments provided by "Kalesh Anakkur Purayil".


Geetha sowjanya (12):
  octeontx2-pf: RVU representor driver
  octeontx2-pf: Create representor netdev
  octeontx2-pf: Add basic net_device_ops
  octeontx2-af: Add packet path between representor and VF
  octeontx2-pf: Get VF stats via representor
  octeontx2-pf: Add support to sync link state between representor and
    VFs
  octeontx2-pf: Configure VF mtu via representor
  octeontx2-pf: Add representors for sdp MAC
  octeontx2-pf: Add devlink port support
  octeontx2-pf: Implement offload stats ndo for representors
  octeontx2-pf: Add TC offload support
  Documentation: octeontx2: Add Documentation for RVU repsentors

 .../ethernet/marvell/octeontx2.rst            | 102 +++
 .../net/ethernet/marvell/octeontx2/Kconfig    |   8 +
 .../ethernet/marvell/octeontx2/af/Makefile    |   3 +-
 .../ethernet/marvell/octeontx2/af/common.h    |   1 +
 .../net/ethernet/marvell/octeontx2/af/mbox.h  |  75 ++
 .../net/ethernet/marvell/octeontx2/af/rvu.h   |  30 +-
 .../marvell/octeontx2/af/rvu_debugfs.c        |  27 -
 .../marvell/octeontx2/af/rvu_devlink.c        |   3 +
 .../ethernet/marvell/octeontx2/af/rvu_nix.c   |  49 +-
 .../marvell/octeontx2/af/rvu_npc_fs.c         |  14 +-
 .../ethernet/marvell/octeontx2/af/rvu_reg.h   |   1 +
 .../ethernet/marvell/octeontx2/af/rvu_rep.c   | 468 ++++++++++
 .../marvell/octeontx2/af/rvu_struct.h         |  26 +
 .../marvell/octeontx2/af/rvu_switch.c         |  20 +-
 .../ethernet/marvell/octeontx2/nic/Makefile   |   2 +
 .../ethernet/marvell/octeontx2/nic/cn10k.c    |   4 +-
 .../ethernet/marvell/octeontx2/nic/cn10k.h    |   2 +-
 .../marvell/octeontx2/nic/otx2_common.c       |  54 +-
 .../marvell/octeontx2/nic/otx2_common.h       |  75 +-
 .../marvell/octeontx2/nic/otx2_devlink.c      |  49 +
 .../marvell/octeontx2/nic/otx2_flows.c        |   5 -
 .../ethernet/marvell/octeontx2/nic/otx2_pf.c  |  77 +-
 .../ethernet/marvell/octeontx2/nic/otx2_tc.c  |  25 +-
 .../marvell/octeontx2/nic/otx2_txrx.c         |  29 +-
 .../marvell/octeontx2/nic/otx2_txrx.h         |   3 +-
 .../ethernet/marvell/octeontx2/nic/otx2_vf.c  |  14 +-
 .../net/ethernet/marvell/octeontx2/nic/rep.c  | 864 ++++++++++++++++++
 .../net/ethernet/marvell/octeontx2/nic/rep.h  |  54 ++
 28 files changed, 1953 insertions(+), 131 deletions(-)
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/af/rvu_rep.c
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/rep.c
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/rep.h

Comments

patchwork-bot+netdevbpf@kernel.org Nov. 13, 2024, noon UTC | #1
Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:

On Thu, 7 Nov 2024 21:38:27 +0530 you wrote:
> This series adds representor support for each rvu devices.
> When switchdev mode is enabled, representor netdev is registered
> for each rvu device. In implementation of representor model,
> one NIX HW LF with multiple SQ and RQ is reserved, where each
> RQ and SQ of the LF are mapped to a representor. A loopback channel
> is reserved to support packet path between representors and VFs.
> CN10K silicon supports 2 types of MACs, RPM and SDP. This
> patch set adds representor support for both RPM and SDP MAC
> interfaces.
> 
> [...]

Here is the summary with links:
  - [net-next,v12,01/12] octeontx2-pf: RVU representor driver
    https://git.kernel.org/netdev/net-next/c/222a4eea9c6b
  - [net-next,v12,02/12] octeontx2-pf: Create representor netdev
    https://git.kernel.org/netdev/net-next/c/3937b7308d4f
  - [net-next,v12,03/12] octeontx2-pf: Add basic net_device_ops
    https://git.kernel.org/netdev/net-next/c/22f858796758
  - [net-next,v12,04/12] octeontx2-af: Add packet path between representor and VF
    https://git.kernel.org/netdev/net-next/c/683645a2317e
  - [net-next,v12,05/12] octeontx2-pf: Get VF stats via representor
    https://git.kernel.org/netdev/net-next/c/940754a21dec
  - [net-next,v12,06/12] octeontx2-pf: Add support to sync link state between representor and VFs
    https://git.kernel.org/netdev/net-next/c/b8fea84a0468
  - [net-next,v12,07/12] octeontx2-pf: Configure VF mtu via representor
    https://git.kernel.org/netdev/net-next/c/3392f9190373
  - [net-next,v12,08/12] octeontx2-pf: Add representors for sdp MAC
    https://git.kernel.org/netdev/net-next/c/2f7f33a09516
  - [net-next,v12,09/12] octeontx2-pf: Add devlink port support
    https://git.kernel.org/netdev/net-next/c/9ed0343f561e
  - [net-next,v12,10/12] octeontx2-pf: Implement offload stats ndo for representors
    https://git.kernel.org/netdev/net-next/c/d8dec30b5165
  - [net-next,v12,11/12] octeontx2-pf: Adds TC offload support
    https://git.kernel.org/netdev/net-next/c/6c40ca957fe5
  - [net-next,v12,12/12] Documentation: octeontx2: Add Documentation for RVU representors
    https://git.kernel.org/netdev/net-next/c/6050b04dca8e

You are awesome, thank you!