netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/13][pull request] ice: iavf: add support for TC U32 filters on VFs
@ 2024-08-09 17:35 Tony Nguyen
  2024-08-09 17:36 ` [PATCH net-next 01/13] ice: add parser create and destroy skeleton Tony Nguyen
                   ` (12 more replies)
  0 siblings, 13 replies; 16+ messages in thread
From: Tony Nguyen @ 2024-08-09 17:35 UTC (permalink / raw)
  To: davem, kuba, pabeni, edumazet, netdev
  Cc: Tony Nguyen, ahmed.zaki, madhu.chittim, horms, hkelam

Ahmed Zaki says:

The Intel Ethernet 800 Series is designed with a pipeline that has
an on-chip programmable capability called Dynamic Device Personalization
(DDP). A DDP package is loaded by the driver during probe time. The DDP
package programs functionality in both the parser and switching blocks in
the pipeline, allowing dynamic support for new and existing protocols.
Once the pipeline is configured, the driver can identify the protocol and
apply any HW action in different stages, for example, direct packets to
desired hardware queues (flow director), queue groups or drop.

Patches 1-8 introduce a DDP package parser API that enables different
pipeline stages in the driver to learn the HW parser capabilities from 
the DDP package that is downloaded to HW. The parser library takes raw
packet patterns and masks (in binary) indicating the packet protocol fields
to be matched and generates the final HW profiles that can be applied at
the required stage. With this API, raw flow filtering for FDIR or RSS
could be done on new protocols or headers without any driver or Kernel
updates (only need to update the DDP package). These patches were submitted
before [1] but were not accepted mainly due to lack of a user.

Patches 9-11 extend the virtchnl support to allow the VF to request raw
flow director filters. Upon receiving the raw FDIR filter request, the PF
driver allocates and runs a parser lib instance and generates the hardware
profile definitions required to program the FDIR stage. These were also
submitted before [2].

Finally, patches 12 and 13 add TC U32 filter support to the iavf driver.
Using the parser API, the ice driver runs the raw patterns sent by the
user and then adds a new profile to the FDIR stage associated with the VF's
VSI. Refer to examples in patch 13 commit message.

[1]: https://lore.kernel.org/netdev/20230904021455.3944605-1-junfeng.guo@intel.com/
[2]: https://lore.kernel.org/intel-wired-lan/20230818064703.154183-1-junfeng.guo@intel.com/
---
iwl: https://lore.kernel.org/intel-wired-lan/20240725220810.12748-1-ahmed.zaki@intel.com/

The following are changes since commit 600a91931057bfec0afd665759c5574ed137cbea:
  Merge branch 'selftest-rds'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 40GbE

Ahmed Zaki (2):
  iavf: refactor add/del FDIR filters
  iavf: add support for offloading tc U32 cls filters

Junfeng Guo (11):
  ice: add parser create and destroy skeleton
  ice: parse and init various DDP parser sections
  ice: add debugging functions for the parser sections
  ice: add parser internal helper functions
  ice: add parser execution main loop
  ice: support turning on/off the parser's double vlan mode
  ice: add UDP tunnels support to the parser
  ice: add API for parser profile initialization
  virtchnl: support raw packet in protocol header
  ice: add method to disable FDIR SWAP option
  ice: enable FDIR filters from raw binary patterns for VFs

 drivers/net/ethernet/intel/iavf/iavf.h        |   30 +
 .../net/ethernet/intel/iavf/iavf_ethtool.c    |   59 +-
 drivers/net/ethernet/intel/iavf/iavf_fdir.c   |   89 +-
 drivers/net/ethernet/intel/iavf/iavf_fdir.h   |   13 +-
 drivers/net/ethernet/intel/iavf/iavf_main.c   |  160 +-
 .../net/ethernet/intel/iavf/iavf_virtchnl.c   |   25 +-
 drivers/net/ethernet/intel/ice/Makefile       |    2 +
 drivers/net/ethernet/intel/ice/ice_common.h   |    1 +
 drivers/net/ethernet/intel/ice/ice_ddp.c      |   10 +-
 drivers/net/ethernet/intel/ice/ice_ddp.h      |   13 +
 .../net/ethernet/intel/ice/ice_flex_pipe.c    |   99 +-
 .../net/ethernet/intel/ice/ice_flex_pipe.h    |    7 +-
 drivers/net/ethernet/intel/ice/ice_flow.c     |  109 +-
 drivers/net/ethernet/intel/ice/ice_flow.h     |    5 +
 drivers/net/ethernet/intel/ice/ice_parser.c   | 2430 +++++++++++++++++
 drivers/net/ethernet/intel/ice/ice_parser.h   |  540 ++++
 .../net/ethernet/intel/ice/ice_parser_rt.c    |  861 ++++++
 drivers/net/ethernet/intel/ice/ice_type.h     |    1 +
 drivers/net/ethernet/intel/ice/ice_vf_lib.h   |    8 +
 drivers/net/ethernet/intel/ice/ice_virtchnl.c |    4 +
 .../ethernet/intel/ice/ice_virtchnl_fdir.c    |  403 ++-
 include/linux/avf/virtchnl.h                  |   13 +-
 22 files changed, 4792 insertions(+), 90 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/ice/ice_parser.c
 create mode 100644 drivers/net/ethernet/intel/ice/ice_parser.h
 create mode 100644 drivers/net/ethernet/intel/ice/ice_parser_rt.c

-- 
2.42.0


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

end of thread, other threads:[~2024-08-10  5:06 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-09 17:35 [PATCH net-next 00/13][pull request] ice: iavf: add support for TC U32 filters on VFs Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 01/13] ice: add parser create and destroy skeleton Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 02/13] ice: parse and init various DDP parser sections Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 03/13] ice: add debugging functions for the " Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 04/13] ice: add parser internal helper functions Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 05/13] ice: add parser execution main loop Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 06/13] ice: support turning on/off the parser's double vlan mode Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 07/13] ice: add UDP tunnels support to the parser Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 08/13] ice: add API for parser profile initialization Tony Nguyen
2024-08-10  5:06   ` Jakub Kicinski
2024-08-09 17:36 ` [PATCH net-next 09/13] virtchnl: support raw packet in protocol header Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 10/13] ice: add method to disable FDIR SWAP option Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 11/13] ice: enable FDIR filters from raw binary patterns for VFs Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 12/13] iavf: refactor add/del FDIR filters Tony Nguyen
2024-08-09 17:36 ` [PATCH net-next 13/13] iavf: add support for offloading tc U32 cls filters Tony Nguyen
2024-08-10  5:05   ` Jakub Kicinski

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).