DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 00/20] bnxt patches
@ 2020-07-06  8:24 Somnath Kotur
  2020-07-06  8:24 ` [dpdk-dev] [PATCH 01/20] net/bnxt: vxlan encap and decap with src property enabled Somnath Kotur
                   ` (19 more replies)
  0 siblings, 20 replies; 22+ messages in thread
From: Somnath Kotur @ 2020-07-06  8:24 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

From: Somath Kotur <somnath.kotur@broadcom.com>

Added support for the following in host-based flow management
* VLAN push
* VLAN pop
* TF-ULP support for NAT (L3/L4 rewrite based)
* Enabling flow control ops on the VF rep device for full 
  offload

Jay Ding (2):
  net/bnxt: Updated hsi_struct_def_dpdk.h
  nxt/bnxt: Added HWRM support for global cfg

Kishore Padmanabha (16):
  net/bnxt: vxlan encap and decap with src property enabled
  net/bnxt: add support vlan header bitmap
  net/bnxt: add support for negative conditional opcodes
  net/bnxt: add validations to dpdk port id and phy port parsing
  net/bnxt: add support for index opcode constant
  net/bnxt: cleanup and refactoring
  net/bnxt: add support for vlan push and vlan pop actions
  net/bnxt: remove vnic and vport act bits from template matching
  net/bnxt: fix vxlan outer ip protocol id encapsulation
  net/bnxt: add number of vlan tags in the computed field list
  net/bnxt: enable support for PF and VF port action items
  net/bnxt: port configuration changes to support full offload
  net/bnxt: add support for conditional opcodes for mapper result table
  net/bnxt: add support for nat rte action items
  net/bnxt: add support for tp src/dst rte action items
  net/bnxt: use VF vnic when port action is for a VF rep port

Somnath Kotur (2):
  net/bnxt: enable flow ctrl ops for the VF-rep device
  net/bnxt: use byte/pkt count shift/masks from the device template

 drivers/net/bnxt/bnxt.h                        |    5 +
 drivers/net/bnxt/bnxt_ethdev.c                 |    9 +-
 drivers/net/bnxt/bnxt_reps.c                   |    3 +-
 drivers/net/bnxt/hsi_struct_def_dpdk.h         | 1486 +++++++++++++++++++++++-
 drivers/net/bnxt/tf_core/tf_em_host.c          |    2 +-
 drivers/net/bnxt/tf_core/tf_msg.c              |  118 +-
 drivers/net/bnxt/tf_core/tf_session.c          |    8 +
 drivers/net/bnxt/tf_ulp/bnxt_tf_common.h       |    8 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c             |   17 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c        |   34 +-
 drivers/net/bnxt/tf_ulp/ulp_def_rules.c        |   11 +-
 drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c           |   27 +-
 drivers/net/bnxt/tf_ulp/ulp_fc_mgr.h           |    6 +-
 drivers/net/bnxt/tf_ulp/ulp_mapper.c           |  101 +-
 drivers/net/bnxt/tf_ulp/ulp_mapper.h           |    2 +-
 drivers/net/bnxt/tf_ulp/ulp_matcher.c          |   10 +-
 drivers/net/bnxt/tf_ulp/ulp_port_db.c          |  105 +-
 drivers/net/bnxt/tf_ulp/ulp_port_db.h          |   55 +
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.c       |  739 +++++++++---
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.h       |   52 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_act.c  |    6 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h |  179 +--
 drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c  |   44 +-
 drivers/net/bnxt/tf_ulp/ulp_template_struct.h  |    9 +-
 24 files changed, 2680 insertions(+), 356 deletions(-)

-- 
2.7.4


^ permalink raw reply	[flat|nested] 22+ messages in thread
* [dpdk-dev] [PATCH 00/20] bnxt patches
@ 2020-07-23 11:13 Somnath Kotur
  0 siblings, 0 replies; 22+ messages in thread
From: Somnath Kotur @ 2020-07-23 11:13 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

Some fixes, cleanups and changes to augment pre-existing
support in infrastructure

Please apply

Kishore Padmanabha (7):
  net/bnxt: nat global registers support
  net/bnxt: parif for offload miss rules
  net/bnxt: nat template changes
  net/bnxt: configure parif for the egress rules
  net/bnxt: ignore VLAN priority mask
  net/bnxt: add egress template with VLAN tag match
  net/bnxt: tcam table processing support for search and alloc

Mike Baucom (9):
  net/bnxt: add shadow tcam capability with search
  net/bnxt: ulp mapper changes to use tcam search
  net/bnxt: add tf hash API
  net/bnxt: modify tf shadow tcam to use common tf hash
  net/bnxt: added shadow table capability with search
  net/bnxt: ulp mapper changes to use tbl search
  net/bnxt: shadow tcam and tbl reference count modification
  net/bnxt: added templates for search before alloc
  net/bnxt: enabled shadow tables during session open

Somnath Kotur (1):
  net/bnxt: cleanup of VF-representor dev ops

Venkat Duvvuru (3):
  net/bnxt: skip mark id injection into mbuf
  net/bnxt: fix port default rule create and destroy
  net/bnxt: delete VF FW rules when a representor is created

 drivers/net/bnxt/bnxt.h                         |   6 +-
 drivers/net/bnxt/bnxt_ethdev.c                  |  81 +--
 drivers/net/bnxt/bnxt_hwrm.c                    |  49 ++
 drivers/net/bnxt/bnxt_hwrm.h                    |   2 +
 drivers/net/bnxt/bnxt_reps.c                    |  94 +--
 drivers/net/bnxt/bnxt_rxr.c                     |   3 +
 drivers/net/bnxt/bnxt_txq.h                     |   1 -
 drivers/net/bnxt/bnxt_txr.c                     |   6 +-
 drivers/net/bnxt/hsi_struct_def_dpdk.h          | 138 ++++
 drivers/net/bnxt/meson.build                    |   1 +
 drivers/net/bnxt/tf_core/Makefile               |   1 +
 drivers/net/bnxt/tf_core/tf_core.c              | 139 +++-
 drivers/net/bnxt/tf_core/tf_core.h              | 174 +++++
 drivers/net/bnxt/tf_core/tf_device_p4.c         |   4 +-
 drivers/net/bnxt/tf_core/tf_hash.c              | 106 +++
 drivers/net/bnxt/tf_core/tf_hash.h              |  27 +
 drivers/net/bnxt/tf_core/tf_shadow_tbl.c        | 766 +++++++++++++++++++++-
 drivers/net/bnxt/tf_core/tf_shadow_tbl.h        | 124 ++--
 drivers/net/bnxt/tf_core/tf_shadow_tcam.c       | 818 +++++++++++++++++++++++-
 drivers/net/bnxt/tf_core/tf_shadow_tcam.h       | 258 ++++----
 drivers/net/bnxt/tf_core/tf_tbl.c               | 246 ++++++-
 drivers/net/bnxt/tf_core/tf_tbl.h               |  22 +-
 drivers/net/bnxt/tf_core/tf_tcam.c              | 300 ++++++++-
 drivers/net/bnxt/tf_core/tf_tcam.h              |  31 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c              |  97 ++-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.h              |  18 +-
 drivers/net/bnxt/tf_ulp/ulp_def_rules.c         | 127 +++-
 drivers/net/bnxt/tf_ulp/ulp_flow_db.c           |   2 +-
 drivers/net/bnxt/tf_ulp/ulp_flow_db.h           |   2 +-
 drivers/net/bnxt/tf_ulp/ulp_mapper.c            | 505 ++++++++++-----
 drivers/net/bnxt/tf_ulp/ulp_port_db.c           |   2 +
 drivers/net/bnxt/tf_ulp/ulp_port_db.h           |   1 +
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.c        |  81 +++
 drivers/net/bnxt/tf_ulp/ulp_template_db_act.c   | 434 ++++++++-----
 drivers/net/bnxt/tf_ulp/ulp_template_db_class.c | 556 ++++++++++++++--
 drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h  |  73 ++-
 drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c   |   4 +-
 drivers/net/bnxt/tf_ulp/ulp_template_struct.h   |   8 +-
 38 files changed, 4457 insertions(+), 850 deletions(-)
 create mode 100644 drivers/net/bnxt/tf_core/tf_hash.c
 create mode 100644 drivers/net/bnxt/tf_core/tf_hash.h

-- 
2.7.4


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

end of thread, other threads:[~2020-07-23 11:18 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-06  8:24 [dpdk-dev] [PATCH 00/20] bnxt patches Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 01/20] net/bnxt: vxlan encap and decap with src property enabled Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 02/20] net/bnxt: add support vlan header bitmap Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 03/20] net/bnxt: add support for negative conditional opcodes Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 04/20] net/bnxt: add validations to dpdk port id and phy port parsing Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 05/20] net/bnxt: add support for index opcode constant Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 06/20] net/bnxt: updated hsi_struct_def_dpdk.h Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 07/20] nxt/bnxt: added HWRM support for global cfg Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 08/20] net/bnxt: cleanup and refactoring Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 09/20] net/bnxt: add support for vlan push and vlan pop actions Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 10/20] net/bnxt: remove vnic and vport act bits from template matching Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 11/20] net/bnxt: fix vxlan outer ip protocol id encapsulation Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 12/20] net/bnxt: add number of vlan tags in the computed field list Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 13/20] net/bnxt: enable support for PF and VF port action items Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 14/20] net/bnxt: port configuration changes to support full offload Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 15/20] net/bnxt: add support for conditional opcodes for mapper result table Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 16/20] net/bnxt: add support for nat rte action items Somnath Kotur
2020-07-06  8:24 ` [dpdk-dev] [PATCH 17/20] net/bnxt: add support for tp src/dst " Somnath Kotur
2020-07-06  8:25 ` [dpdk-dev] [PATCH 18/20] net/bnxt: use VF vnic when port action is for a VF rep port Somnath Kotur
2020-07-06  8:25 ` [dpdk-dev] [PATCH 19/20] net/bnxt: enable flow ctrl ops for the VF-rep device Somnath Kotur
2020-07-06  8:25 ` [dpdk-dev] [PATCH 20/20] net/bnxt: use byte/pkt count shift/masks from the device template Somnath Kotur
2020-07-23 11:13 [dpdk-dev] [PATCH 00/20] bnxt patches Somnath Kotur

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