DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 00/14] bnxt patches
@ 2020-07-17  9:49 Somnath Kotur
  2020-07-17  9:49 ` [dpdk-dev] [PATCH 01/14] net/bnxt: changes to support new RM and multi-region Somnath Kotur
                   ` (14 more replies)
  0 siblings, 15 replies; 52+ messages in thread
From: Somnath Kotur @ 2020-07-17  9:49 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

some changes , cleanup/fixes in the TF-ULP layer

Farah Smith (2):
  net/bnxt: initialize table scope rm parameters
  net/bnxt: fix em message size

Jay Ding (1):
  net/bnxt: replace NAT IPv4 action SRC/DEST

Kishore Padmanabha (6):
  net/bnxt: enable default flows in truflow mode
  net/bnxt: add protocol header info based on proto field data
  net/bnxt: fix dereference of a null pointer
  net/bnxt: default egress rule changes
  net/bnxt: update cfa truflow resource allocation numbers
  net/bnxt: enable support for exact match templates

Peter Spreadborough (1):
  net/bnxt: changes to support new RM and multi-region

Randy Schacher (2):
  net/bnxt: clean up em message definition
  net/bnxt: change header to SPDX-License

Somnath Kotur (2):
  net/bnxt: fix to avoid accumulation of flow counters
  net/bnxt: add debug logs to the TF-ULP layer

 drivers/net/bnxt/bnxt_ethdev.c                     |     5 +-
 drivers/net/bnxt/meson.build                       |     2 +
 drivers/net/bnxt/tf_core/cfa_resource_types.h      |   207 +-
 drivers/net/bnxt/tf_core/tf_core.h                 |    16 +-
 drivers/net/bnxt/tf_core/tf_device_p4.h            |    13 +-
 drivers/net/bnxt/tf_core/tf_em_common.c            |     2 +-
 drivers/net/bnxt/tf_core/tf_msg.c                  |     3 +-
 drivers/net/bnxt/tf_core/tf_util.c                 |    18 +-
 drivers/net/bnxt/tf_ulp/Makefile                   |    10 +
 drivers/net/bnxt/tf_ulp/bnxt_tf_common.h           |     6 +
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c                 |    41 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.h                 |     9 +
 drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c            |    10 +
 drivers/net/bnxt/tf_ulp/ulp_def_rules.c            |    11 +-
 drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c               |     4 +-
 drivers/net/bnxt/tf_ulp/ulp_mapper.c               |   130 +-
 drivers/net/bnxt/tf_ulp/ulp_mark_mgr.c             |     8 +-
 drivers/net/bnxt/tf_ulp/ulp_matcher.c              |     4 +
 drivers/net/bnxt/tf_ulp/ulp_port_db.c              |     8 +-
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.c           |   180 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_act.c      |  2547 ++-
 drivers/net/bnxt/tf_ulp/ulp_template_db_class.c    | 17417 ++++++++++++++++---
 drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h     |   328 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_field.h    |   959 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c      |   478 +-
 drivers/net/bnxt/tf_ulp/ulp_template_debug.c       |   595 +
 drivers/net/bnxt/tf_ulp/ulp_template_debug.h       |   329 +
 drivers/net/bnxt/tf_ulp/ulp_template_debug_proto.h |    72 +
 drivers/net/bnxt/tf_ulp/ulp_template_struct.h      |     1 +
 drivers/net/bnxt/tf_ulp/ulp_tf_debug.c             |  1161 ++
 drivers/net/bnxt/tf_ulp/ulp_tf_debug.h             |    26 +
 drivers/net/bnxt/tf_ulp/ulp_utils.c                |     2 +-
 32 files changed, 20858 insertions(+), 3744 deletions(-)
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_debug.c
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_debug.h
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_debug_proto.h
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_tf_debug.c
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_tf_debug.h

-- 
2.7.4


^ permalink raw reply	[flat|nested] 52+ messages in thread
* [dpdk-dev] [PATCH 00/14] bnxt patches
@ 2020-07-17 14:10 Somnath Kotur
  2020-07-17 14:17 ` Somnath Kotur
  0 siblings, 1 reply; 52+ messages in thread
From: Somnath Kotur @ 2020-07-17 14:10 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

From: Venkat Duvvuru <venkatkumar.duvvuru@broadcom.com>

Some changes, cleanups/fixes in the TF-ULP layer

Farah Smith (2):
  net/bnxt: initialize table scope rm parameters
  net/bnxt: fix em message size

Jay Ding (1):
  net/bnxt: replace NAT IPv4 action SRC/DEST

Kishore Padmanabha (6):
  net/bnxt: enable default flows in truflow mode
  net/bnxt: add protocol header info based on proto field data
  net/bnxt: fix dereference of a null pointer
  net/bnxt: default egress rule changes
  net/bnxt: update cfa truflow resource allocation numbers
  net/bnxt: enable support for exact match templates

Peter Spreadborough (1):
  net/bnxt: changes to support new RM and multi-region

Randy Schacher (2):
  net/bnxt: clean up em message definition
  net/bnxt: change header to SPDX-License

Somnath Kotur (2):
  net/bnxt: fix to avoid accumulation of flow counters
  net/bnxt: remove unnecessary debug log

 drivers/net/bnxt/bnxt_ethdev.c                  |     5 +-
 drivers/net/bnxt/tf_core/cfa_resource_types.h   |   207 +-
 drivers/net/bnxt/tf_core/tf_core.h              |    16 +-
 drivers/net/bnxt/tf_core/tf_device_p4.h         |    13 +-
 drivers/net/bnxt/tf_core/tf_em_common.c         |     2 +-
 drivers/net/bnxt/tf_core/tf_msg.c               |     3 +-
 drivers/net/bnxt/tf_core/tf_util.c              |    18 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c              |    35 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.h              |     9 +
 drivers/net/bnxt/tf_ulp/ulp_def_rules.c         |    11 +-
 drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c            |     4 +-
 drivers/net/bnxt/tf_ulp/ulp_mapper.c            |     3 -
 drivers/net/bnxt/tf_ulp/ulp_mark_mgr.c          |     8 +-
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.c        |   180 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_act.c   |  2547 +++-
 drivers/net/bnxt/tf_ulp/ulp_template_db_class.c | 17417 ++++++++++++++++++----
 drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h  |   328 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_field.h |   959 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c   |   478 +-
 drivers/net/bnxt/tf_ulp/ulp_template_struct.h   |     1 +
 20 files changed, 18533 insertions(+), 3711 deletions(-)

-- 
2.7.4


^ permalink raw reply	[flat|nested] 52+ messages in thread
* [dpdk-dev] [PATCH 00/14] bnxt patches
@ 2020-10-17  6:27 Venkat Duvvuru
  0 siblings, 0 replies; 52+ messages in thread
From: Venkat Duvvuru @ 2020-10-17  6:27 UTC (permalink / raw)
  To: dev; +Cc: Venkat Duvvuru

This patchset has support for vxlan decap full offload,
SR device support in tf_core and a few bug fixes.

Farah Smith (3):
  net/bnxt: map table scope API
  net/bnxt: table scope to PF Mapping for SR and Wh+
  net/bnxt: update SR ULP resource counts

Jay Ding (2):
  net/bnxt: add stingray support
  net/bnxt: changes to support 2 table scopes

Kishore Padmanabha (2):
  net/bnxt: add support for parent flow accumulation counters
  net/bnxt: add mapper support for wildcard TCAM entry

Peter Spreadborough (2):
  net/bnxt: device cleanup of FW
  net/bnxt: add build option for EM slot allocation

Somnath Kotur (2):
  net/bnxt: fix infinite loop in flow query count API
  net/bnxt: use cfa pair alloc for configuring reps

Venkat Duvvuru (3):
  net/bnxt: refactor flow id allocation
  net/bnxt: add support for VXLAN decap templates
  net/bnxt: add VXLAN decap offload support

 drivers/net/bnxt/bnxt.h                            |    6 +-
 drivers/net/bnxt/bnxt_ethdev.c                     |    2 +
 drivers/net/bnxt/bnxt_hwrm.c                       |   60 +-
 drivers/net/bnxt/bnxt_hwrm.h                       |    2 -
 drivers/net/bnxt/bnxt_reps.c                       |   18 +-
 drivers/net/bnxt/hcapi/hcapi_cfa.h                 |   39 +-
 drivers/net/bnxt/meson.build                       |    1 +
 drivers/net/bnxt/tf_core/cfa_resource_types.h      |   95 +-
 drivers/net/bnxt/tf_core/tf_core.c                 |   57 +-
 drivers/net/bnxt/tf_core/tf_core.h                 |   57 +-
 drivers/net/bnxt/tf_core/tf_device.c               |    9 +-
 drivers/net/bnxt/tf_core/tf_device.h               |   47 +-
 drivers/net/bnxt/tf_core/tf_device_p4.c            |   69 +-
 drivers/net/bnxt/tf_core/tf_device_p4.h            |    6 +
 drivers/net/bnxt/tf_core/tf_device_p45.h           |  105 +
 drivers/net/bnxt/tf_core/tf_em.h                   |   25 +-
 drivers/net/bnxt/tf_core/tf_em_common.c            |  175 +-
 drivers/net/bnxt/tf_core/tf_em_common.h            |   27 +-
 drivers/net/bnxt/tf_core/tf_em_host.c              |   31 +-
 drivers/net/bnxt/tf_core/tf_global_cfg.c           |    4 +-
 drivers/net/bnxt/tf_core/tf_global_cfg.h           |   42 +-
 drivers/net/bnxt/tf_core/tf_msg.c                  |   13 +-
 drivers/net/bnxt/tf_core/tf_msg.h                  |    4 +-
 drivers/net/bnxt/tf_core/tf_session.h              |   16 +-
 drivers/net/bnxt/tf_core/tf_tbl.h                  |    3 +
 drivers/net/bnxt/tf_core/tfp.c                     |   19 +
 drivers/net/bnxt/tf_core/tfp.h                     |   16 +
 drivers/net/bnxt/tf_ulp/bnxt_tf_common.h           |    4 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c                 |   50 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.h                 |   12 +
 drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c            |  129 +-
 drivers/net/bnxt/tf_ulp/ulp_def_rules.c            |   48 +-
 drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c               |  133 +-
 drivers/net/bnxt/tf_ulp/ulp_fc_mgr.h               |   19 +
 drivers/net/bnxt/tf_ulp/ulp_flow_db.c              |  475 +++-
 drivers/net/bnxt/tf_ulp/ulp_flow_db.h              |   46 +
 drivers/net/bnxt/tf_ulp/ulp_mapper.c               |   83 +-
 drivers/net/bnxt/tf_ulp/ulp_mapper.h               |    6 +-
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.c           |   85 +-
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.h           |   12 +
 drivers/net/bnxt/tf_ulp/ulp_template_db_class.c    |  962 +++++---
 drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h     |   42 +-
 drivers/net/bnxt/tf_ulp/ulp_template_db_field.h    |  363 ++-
 .../net/bnxt/tf_ulp/ulp_template_db_stingray_act.c |  116 +-
 .../bnxt/tf_ulp/ulp_template_db_stingray_class.c   | 2493 ++++++++++++++++----
 drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c      |    9 +-
 .../net/bnxt/tf_ulp/ulp_template_db_wh_plus_act.c  |  116 +-
 .../bnxt/tf_ulp/ulp_template_db_wh_plus_class.c    | 2489 +++++++++++++++----
 drivers/net/bnxt/tf_ulp/ulp_template_struct.h      |    7 +
 drivers/net/bnxt/tf_ulp/ulp_tun.c                  |  310 +++
 drivers/net/bnxt/tf_ulp/ulp_tun.h                  |   92 +
 drivers/net/bnxt/tf_ulp/ulp_utils.c                |  125 +
 drivers/net/bnxt/tf_ulp/ulp_utils.h                |   48 +-
 53 files changed, 7185 insertions(+), 2037 deletions(-)
 create mode 100644 drivers/net/bnxt/tf_core/tf_device_p45.h
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_tun.c
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_tun.h

-- 
2.7.4


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

end of thread, other threads:[~2020-10-17  6:28 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-17  9:49 [dpdk-dev] [PATCH 00/14] bnxt patches Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 01/14] net/bnxt: changes to support new RM and multi-region Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 02/14] net/bnxt: initialize table scope rm parameters Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 03/14] net/bnxt: enable default flows in truflow mode Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 04/14] net/bnxt: fix to avoid accumulation of flow counters Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 05/14] net/bnxt: add protocol header info based on proto field data Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 06/14] net/bnxt: fix em message size Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 07/14] net/bnxt: replace NAT IPv4 action SRC/DEST Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 08/14] net/bnxt: clean up em message definition Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 09/14] net/bnxt: change header to SPDX-License Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 10/14] net/bnxt: fix dereference of a null pointer Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 11/14] net/bnxt: default egress rule changes Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 12/14] net/bnxt: update cfa truflow resource allocation numbers Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 13/14] net/bnxt: enable support for exact match templates Somnath Kotur
2020-07-17  9:49 ` [dpdk-dev] [PATCH 14/14] net/bnxt: add debug logs to the TF-ULP layer Somnath Kotur
2020-07-17 14:14 ` [dpdk-dev] [PATCH v2 00/14] bnxt patches Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 01/14] net/bnxt: changes to support new RM and multi-region Somnath Kotur
2020-07-17 14:34     ` Thomas Monjalon
2020-07-17 14:14   ` [dpdk-dev] [PATCH 02/14] net/bnxt: initialize table scope rm parameters Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 03/14] net/bnxt: enable default flows in truflow mode Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 04/14] net/bnxt: fix to avoid accumulation of flow counters Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 05/14] net/bnxt: add protocol header info based on proto field data Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 06/14] net/bnxt: fix em message size Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 07/14] net/bnxt: replace NAT IPv4 action SRC/DEST Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 08/14] net/bnxt: clean up em message definition Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 09/14] net/bnxt: change header to SPDX-License Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 10/14] net/bnxt: fix dereference of a null pointer Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 11/14] net/bnxt: default egress rule changes Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 12/14] net/bnxt: update cfa truflow resource allocation numbers Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 13/14] net/bnxt: enable support for exact match templates Somnath Kotur
2020-07-17 14:14   ` [dpdk-dev] [PATCH 14/14] net/bnxt: remove unnecessary debug log Somnath Kotur
2020-07-18  7:25   ` [dpdk-dev] [PATCH v3 00/14] bnxt patches Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 01/14] net/bnxt: modify resource management scheme Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 02/14] net/bnxt: initialize table scope parameter Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 03/14] net/bnxt: enable default flows in truflow mode Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 04/14] net/bnxt: fix to avoid accumulation of flow counters Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 05/14] net/bnxt: add protocol header info based on proto field data Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 06/14] net/bnxt: fix exact match message size Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 07/14] net/bnxt: use NAT IPv4 action Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 08/14] net/bnxt: remove unused macro Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 09/14] net/bnxt: change header to use SPDX license Ajit Khaparde
2020-07-23  4:35       ` Stephen Hemminger
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 10/14] net/bnxt: fix dereference of a null pointer Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 11/14] net/bnxt: modify default egress rule for VF representor Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 12/14] net/bnxt: update truflow resource allocation numbers Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 13/14] net/bnxt: enable support for exact match templates Ajit Khaparde
2020-07-18  7:25     ` [dpdk-dev] [PATCH v3 14/14] net/bnxt: remove unnecessary debug log Ajit Khaparde
2020-07-20 15:02     ` [dpdk-dev] [PATCH v3 00/14] bnxt patches Ajit Khaparde
2020-07-17 14:10 [dpdk-dev] [PATCH " Somnath Kotur
2020-07-17 14:17 ` Somnath Kotur
2020-07-17 14:28   ` Thomas Monjalon
2020-10-17  6:27 Venkat Duvvuru

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