[RFC v2] net/ice: add devargs to control link update

2024-10-22 Thread Mingjin Ye
This patch adds the ‘link_period’ devargs to adjust the link update period (microseconds), when the value is less than or equal to 0 it will be disabled, by default it is not enabled. Signed-off-by: Mingjin Ye --- v2: Fix using the wrong variable. --- doc/guides/nics/ice.rst | 7 driv

Re: [PATCH v2 0/4] net/mlx5: series to fix and improve tx trace capabilitie

2024-10-22 Thread Raslan Darawsheh
Hi, From: Slava Ovsiienko Sent: Monday, October 14, 2024 11:04 AM To: dev@dpdk.org Cc: Matan Azrad; Raslan Darawsheh; Ori Kam; Dariusz Sosnowski Subject: [PATCH v2 0/4] net/mlx5: series to fix and improve tx trace capabilitie Signed-off-by: Viacheslav Ovsiienko --- v1: https://inbox.dpdk.org/d

RE: [PATCH v7 1/5] power: refactor core power management library

2024-10-22 Thread Tummala, Sivaprasad
[AMD Official Use Only - AMD Internal Distribution Only] Hi Huisong, Please find my comments inline. > -Original Message- > From: lihuisong (C) > Sent: Tuesday, October 22, 2024 8:33 AM > To: Tummala, Sivaprasad ; > david.h...@intel.com; konstantin.anan...@huawei.com > Cc: dev@dpdk.org;

[PATCH v6 3/3] app/test: add test sm2 C1/Kp test cases

2024-10-22 Thread Arkadiusz Kusztal
This commit adds tests cases to be used when C1 or kP elliptic curve points need to be computed. Signed-off-by: Arkadiusz Kusztal --- app/test/test_cryptodev_asym.c | 138 - app/test/test_cryptodev_sm2_test_vectors.h | 112 - 2 files changed, 246 i

[PATCH v6 2/3] crypto/qat: add sm2 encryption/decryption function

2024-10-22 Thread Arkadiusz Kusztal
This commit adds SM2 elliptic curve based asymmetric encryption and decryption to the Intel QuickAssist Technology PMD. Signed-off-by: Arkadiusz Kusztal --- doc/guides/cryptodevs/features/qat.ini| 1 + doc/guides/rel_notes/release_24_11.rst| 4 + .../common/qat/qat_adf/icp_qa

[PATCH v6 1/3] cryptodev: add ec points to sm2 op

2024-10-22 Thread Arkadiusz Kusztal
In the case when PMD cannot support the full process of the SM2, but elliptic curve computation only, additional fields are needed to handle such a case. Points C1, kP therefore were added to the SM2 crypto operation struct. Signed-off-by: Arkadiusz Kusztal --- doc/guides/rel_notes/release_24_1

[PATCH v6 0/3] add ec points to sm2 op

2024-10-22 Thread Arkadiusz Kusztal
In the case when PMD cannot support the full process of the SM2, but elliptic curve computation only, additional fields are needed to handle such a case. v2: - rebased against the 24.11 code v3: - added feature flag - added QAT patches - added test patches v4: - replaced feature flag with capabili

Re: [PATCH v2] rawdev: add API to get device from index

2024-10-22 Thread David Marchand
On Tue, Oct 8, 2024 at 9:40 AM Akhil Goyal wrote: > > Added an internal API for PMDs to get raw device pointer > from a device id. > > Signed-off-by: Akhil Goyal > Reviewed-by: Hemant Agrawal Applied, thanks. Can someone send a followup patch cleaning raw/cnxk_bphy and raw/ifpga that implemen

[PATCH v4 12/22] event/cnxk: add CN20K device start

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add CN20K start function along with few cleanup API's to maintain sanity. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c | 103 +-- drivers/event/cnxk/cn20k_eventdev.c | 76 drivers/event/cnxk/cnxk_comm

[v4 08/42] bus/fslmc: upgrade with MC version 10.37

2024-10-22 Thread vanshika . shukla
From: Gagandeep Singh This patch upgrades the MC version compaitbility to 10.37 Signed-off-by: Gagandeep Singh Signed-off-by: Apeksha Gupta --- doc/guides/platform/dpaa2.rst | 4 +- drivers/bus/fslmc/mc/dpio.c | 94 - drivers/bus/fslmc/mc/fsl_dpcon.h

[v4 15/42] bus/fslmc: free VFIO group FD in case of add group failure

2024-10-22 Thread vanshika . shukla
From: Rohit Raj Free vfio_group_fd if add group fails to avoid resource leak Signed-off-by: Rohit Raj --- drivers/bus/fslmc/fslmc_vfio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/bus/fslmc/fslmc_vfio.c b/drivers/bus/fslmc/fslmc_vfio.c index 63e84cb4d8..3d46

[v4 16/42] bus/fslmc: dynamic IOVA mode configuration

2024-10-22 Thread vanshika . shukla
From: Jun Yang IOVA mode should not be configured with CFLAGS because 1) User can perform "--iova-mode" to configure IOVA. 2) IOVA mode is determined by negotiation between multiple devices. Eal is in VA mode only when all devices support VA mode. Hence: 1) Remove RTE_LIBRTE_DPAA2_USE_PHYS_IO

[v4 14/42] bus/fslmc: enhance MC VFIO multiprocess support

2024-10-22 Thread vanshika . shukla
From: Jun Yang MC VFIO is not registered into RTE VFIO. Primary process registers MC vfio mp action for secondary process to request. VFIO/Container handlers are provided via CMSG. Primary process is responsible to connect MC VFIO group to container. In addition, MC VFIO code is refactored accor

[v4 13/42] bus/fslmc: get MC VFIO group FD directly

2024-10-22 Thread vanshika . shukla
From: Jun Yang Get vfio group fd directly from file system instead of from RTE API to avoid conflicting with PCIe VFIO. FSL MC VFIO should have it's own logic which doe NOT depend on RTE VFIO. Signed-off-by: Jun Yang --- drivers/bus/fslmc/fslmc_vfio.c | 88 ++ d

[v4 10/42] net/dpaa2: update DPNI link status method

2024-10-22 Thread vanshika . shukla
From: Brick Yang If SFP module is not connected to the port and flow control is configured using flow control API, link will show DOWN even after connecting the SFP module and fiber cable. This issue cannot be reproduced if only SFP module is connected and fiber cable is disconnected before conf

[v4 17/42] bus/fslmc: remove VFIO IRQ mapping

2024-10-22 Thread vanshika . shukla
From: Jun Yang Remove unused GITS translator VFIO mapping. Signed-off-by: Jun Yang --- drivers/bus/fslmc/fslmc_vfio.c | 50 -- 1 file changed, 50 deletions(-) diff --git a/drivers/bus/fslmc/fslmc_vfio.c b/drivers/bus/fslmc/fslmc_vfio.c index b0e7299bda..b48c784

[v4 19/42] bus/fslmc: fix coverity issue

2024-10-22 Thread vanshika . shukla
From: Rohit Raj Fix Issues reported by NXP Internal Coverity. Fixes: 64f131a82fbe ("bus/fslmc: add qbman debug") Cc: hemant.agra...@nxp.com Cc: sta...@dpdk.org Signed-off-by: Rohit Raj --- drivers/bus/fslmc/qbman/qbman_debug.c | 49 +-- 1 file changed, 32 insertions(+)

[v4 12/42] bus/fslmc: improve BMAN buffer acquire

2024-10-22 Thread vanshika . shukla
From: Jun Yang Ignore reserved bits of BMan acquire response number. Signed-off-by: Jun Yang --- drivers/bus/fslmc/qbman/qbman_portal.c | 26 -- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/drivers/bus/fslmc/qbman/qbman_portal.c b/drivers/bus/fslmc/q

[v4 20/42] bus/fslmc: change qbman eq desc from d to desc

2024-10-22 Thread vanshika . shukla
From: Rohit Raj Change qbman_eq_desc name to avoid redefining same variable. Signed-off-by: Rohit Raj --- drivers/bus/fslmc/qbman/qbman_portal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/bus/fslmc/qbman/qbman_portal.c b/drivers/bus/fslmc/qbman/qbman_porta

[v4 31/42] net/dpaa2: check if Soft parser is loaded

2024-10-22 Thread vanshika . shukla
From: Jun Yang Access sp instruction area to check if sp is loaded. Signed-off-by: Jun Yang Signed-off-by: Vanshika Shukla --- drivers/net/dpaa2/dpaa2_ethdev.c | 4 ++ drivers/net/dpaa2/dpaa2_ethdev.h | 2 + drivers/net/dpaa2/dpaa2_flow.c | 88 3 files cha

Re: [PATCH v3 3/4] bus/ifpga: use C linkage where appropriate in driver header

2024-10-22 Thread David Marchand
On Mon, Oct 21, 2024 at 8:01 PM Mattias Rönnblom wrote: > > On 2024-10-21 18:04, David Marchand wrote: > > This driver was missed when cleaning up most of the headers. > > > > Fixes: 719834a6849e ("use C linkage where appropriate in headers") > > > > Signed-off-by: David Marchand > > --- > > dr

[PATCH v4 20/22] event/cnxk: add Rx/Tx event vector support

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add Event vector support for CN20K Rx/Tx adapter. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 185 ++- drivers/event/cnxk/cn20k_tx_worker.h | 84 ++ drivers/event/cnxk/cn20k_worker.h| 63

[v4 41/42] net/dpaa2: add support for C-VLAN and MAC

2024-10-22 Thread vanshika . shukla
From: Vanshika Shukla This patch adds the support for DPDMUX_METHOD_C_VLAN_MAC method which implements DPDMUX based on C-VLAN and MAC address. Signed-off-by: Vanshika Shukla --- drivers/net/dpaa2/dpaa2_mux.c | 2 +- drivers/net/dpaa2/mc/fsl_dpdmux.h | 16 2 files changed,

[PATCH v4 09/22] event/cnxk: add CN20K event port quiesce

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add CN20K event port quiesce function. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 60 + 1 file changed, 60 insertions(+) diff --git a/drivers/event/cnxk/cn20k_eventdev.c b/drivers/event/cnxk/cn20k_eventdev.c inde

[PATCH v4 18/22] event/cnxk: support CN20K Tx adapter fast path

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add support for event eth Tx adapter fastpath operations. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 29 +++ drivers/event/cnxk/cn20k_tx_worker.h | 176 +++ drivers/event/cnxk/meson.build | 20

[v4 39/42] net/dpaa2: add API to get endpoint name

2024-10-22 Thread vanshika . shukla
From: Jun Yang Export API in rte_pmd_dpaa2.h Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_ethdev.c | 24 drivers/net/dpaa2/dpaa2_ethdev.h | 4 drivers/net/dpaa2/rte_pmd_dpaa2.h | 3 +++ drivers/net/dpaa2/version.map | 1 + 4 files changed, 32 inser

[v4 30/42] net/dpaa2: add GTP flow support

2024-10-22 Thread vanshika . shukla
From: Jun Yang Configure gtp flow to support RSS and FS. Check FAF of parser result to identify GTP frame. Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_flow.c | 172 ++--- 1 file changed, 138 insertions(+), 34 deletions(-) diff --git a/drivers/net/dpaa2/dpaa

[v4 33/42] net/dpaa2: add flow support for IPsec AH and ESP

2024-10-22 Thread vanshika . shukla
From: Jun Yang Support AH/ESP flow with SPI field. Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_flow.c | 528 - 1 file changed, 385 insertions(+), 143 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2_flow.c b/drivers/net/dpaa2/dpaa2_flow.c index 018ffec

[v4 27/42] net/dpaa2: add VXLAN distribution support

2024-10-22 Thread vanshika . shukla
From: Jun Yang Extracts from vxlan header for distribution. The vxlan header is set by soft parser code in soft parser context located from offset 43 of parser results: vxlan protocol is identified by vxlan bit of frame attribute flags. The parser result extracts are added for this functionali

[v4 18/42] bus/fslmc: create dpaa2 device with it's object

2024-10-22 Thread vanshika . shukla
From: Jun Yang Create dpaa2 device with object instead of object ID. Assign each dpaa2 object with it's container. Signed-off-by: Jun Yang --- drivers/bus/fslmc/bus_fslmc_driver.h | 39 drivers/bus/fslmc/fslmc_vfio.c | 3 +- drivers/bus/fslmc/portal/dpaa

[v4 04/42] net/dpaa2: add support to dump dpdmux counters

2024-10-22 Thread vanshika . shukla
From: Hemant Agrawal This patch add supports to dump dpdmux counters as they are required to identify the reasons for packet drop in dpdmux. Signed-off-by: Hemant Agrawal Signed-off-by: Rohit Raj --- drivers/net/dpaa2/dpaa2_mux.c | 84 +++ drivers/net/dpaa2/rte

[v4 35/42] net/dpaa2: support software taildrop

2024-10-22 Thread vanshika . shukla
From: Gagandeep Singh Add software based taildrop support. Signed-off-by: Gagandeep Singh --- drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 2 +- drivers/net/dpaa2/dpaa2_rxtx.c | 24 +++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/drivers/bus/fslm

[v4 37/42] net/dpaa2: improve DPDMUX error behavior settings

2024-10-22 Thread vanshika . shukla
From: Sachin Saxena compatible with MC v10.36 or later Signed-off-by: Sachin Saxena --- drivers/net/dpaa2/dpaa2_mux.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2_mux.c b/drivers/net/dpaa2/dpaa2_mux.c index f4b8d481af..13de7d5783 10064

[v4 36/42] net/dpaa2: check IOVA before sending MC command

2024-10-22 Thread vanshika . shukla
From: Jun Yang Convert VA to IOVA and check IOVA before sending parameter to MC. Invalid IOVA of parameter sent to MC will cause system stuck and not be recovered unless power reset. IOVA is not checked in data path because: 1) MC is not involved and error can be recovered. 2) IOVA check impacts

[v4 28/42] net/dpaa2: protocol inside tunnel distribution

2024-10-22 Thread vanshika . shukla
From: Jun Yang Control flow by protocols inside tunnel. The tunnel flow items applied by application are in order from outer to inner. The inner items start from tunnel item, something like vxlan, GRE etc. For example: flow create 0 ingress pattern ipv4 / vxlan / ipv6 / end actions pf /

[v4 29/42] net/dpaa2: eCPRI support by parser result

2024-10-22 Thread vanshika . shukla
From: Jun Yang Soft parser extracts ECPRI header and message to specified areas of parser result. Flow is classified according to the ECPRI extracts from praser result. This implementation supports ECPRI over ethernet/vlan/UDP and various types/messages combinations. Signed-off-by: Jun Yang ---

[v4 34/42] net/dpaa2: fix memory corruption in TM

2024-10-22 Thread vanshika . shukla
From: Gagandeep Singh driver was reserving memory in an array for 8 queues only, but it can support many more queues configuration. This patch fixes the memory corruption issue by defining the queue array with correct size. Fixes: 72100f0dee21 ("net/dpaa2: support level 2 in traffic management"

[v4 32/42] net/dpaa2: soft parser flow verification

2024-10-22 Thread vanshika . shukla
From: Jun Yang Add flow supported by soft parser to verification list. Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_flow.c | 84 +- 1 file changed, 51 insertions(+), 33 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2_flow.c b/drivers/net/dpaa2/dpaa2_fl

[PATCH v4 14/22] event/cnxk: add CN20K xstats, selftest and dump

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add selftest to verify SSO, xstats to get queue specific stats and add function to dump internal state of SSO. Signed-off-by: Pavan Nikhilesh --- app/test/test_eventdev.c| 7 +++ drivers/event/cnxk/cn20k_eventdev.c | 12 drive

[PATCH v4 06/22] event/cnxk: add CN20K event port configuration

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add SSO HWS a.k.a event port setup, release, link, unlink functions. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c | 63 ++- drivers/event/cnxk/cn20k_eventdev.c | 174 drivers/event/cnxk/cn20k_eventdev.h

[PATCH v4 13/22] event/cnxk: add CN20K device stop and close

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add event device stop and close callback functions. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 21 + 1 file changed, 21 insertions(+) diff --git a/drivers/event/cnxk/cn20k_eventdev.c b/drivers/event/cnxk/cn20k_eventdev.c

[PATCH v4 11/22] event/cnxk: add CN20K event port preschedule

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add CN20K event port preschedule modify and preschedule functions. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/hw/ssow.h | 1 + drivers/event/cnxk/cn20k_eventdev.c | 2 ++ drivers/event/cnxk/cn20k_worker.c | 30 + drivers/e

[PATCH v4 10/22] event/cnxk: add CN20K event port profile switch

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add CN20K event port profile switch. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 1 + drivers/event/cnxk/cn20k_worker.c | 11 +++ drivers/event/cnxk/cn20k_worker.h | 1 + 3 files changed, 13 insertions(+) diff --git a/drivers/ev

[PATCH] web: adding section to explain recheck rebase option

2024-10-22 Thread Patrick Robb
The UNH-IOL Community Lab now supports an option to re-apply a patch series for a recheck request to a specific branch before starting the retests. This commit updates the dpdk testing page, adding an explanation of the rebase option and how it compares to the basic recheck function, and provides a

Re: [PATCH v6 12/47] net/bnxt: tf_ulp: add vxlan-gpe base support

2024-10-22 Thread Ajit Khaparde
On Tue, Oct 22, 2024 at 9:07 AM Sriharsha Basavapatna wrote: > > On Mon, Oct 21, 2024 at 9:24 PM Stephen Hemminger > wrote: > > > > On Mon, 21 Oct 2024 13:55:32 +0530 > > Sriharsha Basavapatna wrote: > > > > > From: Randy Schacher > > > > > > - Adds vxlan-gpe into ulp layer > > > - Adds vxlan-g

[v4 00/42] DPAA2 specific patches

2024-10-22 Thread vanshika . shukla
From: Vanshika Shukla This series includes: -> Fixes and enhancements for NXP DPAA2 drivers. -> Upgrade with MC version 10.37 -> Enhancements in DPDMUX code -> Fixes for coverity issues reported V2 changes: Fixed the broken compilation for clang in: "net/dpaa2: dpdmux single flow/multipl

[v4 06/42] bus/fslmc: add close API to close DPAA2 device

2024-10-22 Thread vanshika . shukla
From: Rohit Raj Add rte_fslmc_close API to close all the DPAA2 devices while closing the DPDK application. Signed-off-by: Rohit Raj --- drivers/bus/fslmc/bus_fslmc_driver.h | 3 + drivers/bus/fslmc/fslmc_bus.c| 13 drivers/bus/fslmc/fslmc_vfio.c | 87 +++

[v4 11/42] net/dpaa2: add new PMD API to check dpaa platform version

2024-10-22 Thread vanshika . shukla
From: Jun Yang This patch add support to check the DPAA platform type from the applications. Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_ethdev.c | 16 +--- drivers/net/dpaa2/dpaa2_flow.c| 5 ++--- drivers/net/dpaa2/rte_pmd_dpaa2.h | 4 drivers/net/dpaa2/version

[v4 07/42] net/dpaa2: dpdmux: add support for CVLAN

2024-10-22 Thread vanshika . shukla
From: Vanshika Shukla This patch adds the support for DPDMUX_METHOD_C_VLAN_MAC method which implements DPDMUX based on C-VLAN and MAC address. Signed-off-by: Vanshika Shukla --- drivers/net/dpaa2/dpaa2_mux.c | 59 +-- drivers/net/dpaa2/mc/fsl_dpdmux.h | 18 +

[v4 03/42] net/dpaa2: add proper MTU debugging print

2024-10-22 Thread vanshika . shukla
From: Apeksha Gupta This patch add proper debug info for check information of max-pkt-len and configured params. also store MTU Signed-off-by: Apeksha Gupta Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_ethdev.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/d

[v4 02/42] net/dpaa2: support PTP packet one-step timestamp

2024-10-22 Thread vanshika . shukla
From: Vanshika Shukla This patch adds PTP one-step timestamping support. dpni_set_single_step_cfg() MC API is utilized with offset provided to insert correction time on frame. Signed-off-by: Vanshika Shukla --- drivers/net/dpaa2/dpaa2_ethdev.c | 61 +++ drivers/net

[v4 01/42] net/dpaa2: enhance Tx scatter-gather mempool

2024-10-22 Thread vanshika . shukla
From: Jun Yang Create TX SG pool only for primary process and lookup this pool in secondary process. Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_ethdev.c | 46 +++- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2_ethde

[v4 09/42] net/dpaa2: support link state for eth interfaces

2024-10-22 Thread vanshika . shukla
From: Rohit Raj This patch add support to update the duplex value along with link status and link speed after setting the link UP. Signed-off-by: Rohit Raj --- drivers/net/dpaa2/dpaa2_ethdev.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/drivers/net/dpaa

[v4 05/42] bus/fslmc: change dpcon close as internal symbol

2024-10-22 Thread vanshika . shukla
From: Hemant Agrawal This patch marks dpcon_close API as internal symbol and also adds it into version map file Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/mc/fsl_dpcon.h | 3 ++- drivers/bus/fslmc/version.map| 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/driv

[v4 42/42] net/dpaa2: dpdmux single flow/multiple rules support

2024-10-22 Thread vanshika . shukla
From: Jun Yang Support multiple extractions as well as hardware descriptions instead of hard code. Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_ethdev.h | 1 + drivers/net/dpaa2/dpaa2_flow.c | 22 -- drivers/net/dpaa2/dpaa2_mux.c| 393 --- dr

[v4 25/42] net/dpaa2: enhancement of raw flow extract

2024-10-22 Thread vanshika . shukla
From: Jun Yang Support combination of RAW extract and header extracts. RAW extract can start from any absolute offset. TBD: relative offset support. To support relative offset of previous L3 protocol item, extracts should be expanded to identify if the frame is: vlan or none-vlan. To support re

[v4 24/42] net/dpaa2: dump Rx parser result

2024-10-22 Thread vanshika . shukla
From: Jun Yang export DPAA2_PRINT_RX_PARSER_RESULT=1 is used to dump RX parser result and frame attribute flags generated by hardware parser and soft parser. The parser results are converted to big endian described in RM. The areas set by soft parser are dump as well. Signed-off-by: Jun Yang --

[v4 26/42] net/dpaa2: frame attribute flags parser

2024-10-22 Thread vanshika . shukla
From: Jun Yang FAF parser extracts are used to identify protocol type instead of extracts of previous protocol' type. FAF starts from offset 2 to include user defined flags which will be used for soft protocol distribution. Signed-off-by: Jun Yang --- drivers/net/dpaa2/dpaa2_flow.c | 475 +

[v4 22/42] net/dpaa2: change miss flow ID macro name

2024-10-22 Thread vanshika . shukla
From: Rohit Raj Remove miss flow id macro name to DPNI_FS_MISS_DROP since its conflicting with enum. Also, set default miss flow id to 0. Signed-off-by: Rohit Raj --- drivers/net/dpaa2/dpaa2_flow.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2

[v4 21/42] bus/fslmc: introduce VFIO DMA mapping API for fslmc

2024-10-22 Thread vanshika . shukla
From: Jun Yang Declare rte_fslmc_vfio_mem_dmamap and rte_fslmc_vfio_mem_dmaunmap in bus_fslmc_driver.h for external usage. Signed-off-by: Jun Yang --- drivers/bus/fslmc/bus_fslmc_driver.h | 7 ++- drivers/bus/fslmc/fslmc_bus.c| 2 +- drivers/bus/fslmc/fslmc_vfio.c

[PATCH v4 16/22] event/cnxk: support CN20K Rx adapter fast path

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add support for event eth Rx adapter fastpath operations. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 122 - drivers/event/cnxk/cn20k_worker.c | 54 -- drivers/event/cnxk/cn20k_worker.h | 165

[PATCH v4 19/22] common/cnxk: add SSO event aggregator

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add configuration APIs for CN20K SSO event aggregator which allows SSO to generate event vectors. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/hw/sso.h| 33 drivers/common/cnxk/roc_mbox.h | 21 +++ drivers/common/cnxk/roc_model.h | 13 ++

[PATCH v4 15/22] event/cnxk: support CN20K Rx adapter

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add support for CN20K event eth Rx adapter. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 121 +++- drivers/event/cnxk/cn20k_eventdev.h | 4 + 2 files changed, 124 insertions(+), 1 deletion(-) diff --git a/drivers/even

[PATCH v4 17/22] event/cnxk: support CN20K Tx adapter

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add support for event eth Tx adapter. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 126 +++ drivers/event/cnxk/cn20k_eventdev.h | 4 + drivers/event/cnxk/cn20k_tx_worker.h | 16 3 files changed, 146 insertions(

[PATCH v4 21/22] common/cnxk: update timer base code

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Update event timer base code to support configuring HW accelerated timer arm and cancel. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/hw/tim.h| 5 ++ drivers/common/cnxk/roc_mbox.h | 38 - drivers/common/cnxk/roc_tim.c | 84 ++

[PATCH v4 22/22] event/cnxk: add CN20K timer adapter

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add event timer adapter support for CN20K platform. Implement new HWWQE insertion feature supported by CN20K platform. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/roc_tim.c| 6 +- drivers/event/cnxk/cn20k_eventdev.c | 16 ++- drivers/event/cnxk/cn20

[v4 40/42] net/dpaa2: support VLAN traffic splitting

2024-10-22 Thread vanshika . shukla
From: Vanshika Shukla This patch adds support for adding rules in DPDMUX to split VLAN traffic based on VLAN ids. Signed-off-by: Vanshika Shukla --- drivers/net/dpaa2/dpaa2_mux.c | 20 1 file changed, 20 insertions(+) diff --git a/drivers/net/dpaa2/dpaa2_mux.c b/drivers/n

[PATCH v4 01/22] event/cnxk: use stdatomic API

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Replace gcc inbuilt __atomic_xxx intrinsics with rte_atomic_xxx API. Signed-off-by: Pavan Nikhilesh --- Depends-on: series-33602 ("event/cnxk: fix getwork write data on reconfig") v2 Changes: - Rebase and remove single dequeue and enqueue functions. v3 Changes: - Remove _

[PATCH v4 02/22] common/cnxk: implement SSO HW info

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add SSO HW info mbox to get hardware capabilities, and reuse them instead of depending on hardcoded values. Remove redundant includes. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/roc_mbox.h | 28 ++ drivers/common/cnxk/roc_sso.c

[PATCH v4 03/22] event/cnxk: add CN20K specific device probe

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add platform specific event device probe and remove, also add event device info get function. Signed-off-by: Pavan Nikhilesh --- doc/guides/eventdevs/cnxk.rst | 23 --- doc/guides/rel_notes/release_24_11.rst | 3 + drivers/common/cnxk/roc_sso.c | 10

[PATCH v4 08/22] event/cnxk: add CN20K SSO dequeue fast path

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add CN20K SSO GWS event dequeue fastpath functions. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 5 + drivers/event/cnxk/cn20k_worker.c | 54 +++ drivers/event/cnxk/cn20k_worker.h | 137 +++- 3 files chang

[PATCH v4 07/22] event/cnxk: add CN20K SSO enqueue fast path

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add CN20K SSO GWS fastpath event device enqueue functions. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 20 +- drivers/event/cnxk/cn20k_worker.c | 384 drivers/event/cnxk/cn20k_worker.h | 21 ++ drivers/event/

[PATCH v4 04/22] event/cnxk: add CN20K device config

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add CN20K event device configuration that attaches the requested number of SSO HWS(event ports) and HWGRP(event queues) LFs to the RVU PF/VF. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn20k_eventdev.c | 36 + 1 file changed, 36 inse

[PATCH v4 05/22] event/cnxk: add CN20k event queue configuration

2024-10-22 Thread pbhagavatula
From: Pavan Nikhilesh Add setup and release functions for event queues i.e. SSO HWGRPs. Allocate buffers in DRAM that hold inflight events. Register device args to modify inflight event buffer count, HWGRP QoS and stash. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c |

[v4 38/42] net/dpaa2: store drop priority in mbuf

2024-10-22 Thread vanshika . shukla
From: Apeksha Gupta store drop priority in mbuf from fd. Signed-off-by: Sachin Saxena Signed-off-by: Apeksha Gupta --- drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 1 + drivers/net/dpaa2/dpaa2_rxtx.c | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/bus/fslmc/portal/dpaa2_hw

Re: [PATCH] web: adding section to explain recheck rebase option

2024-10-22 Thread Patrick Robb
I absentmindedly sent this to the dev mailing list instead of the web mailing list... I will resubmit.

Re: [RFC v3 0/2] An API for Stashing Packets into CPU caches

2024-10-22 Thread Stephen Hemminger
On Tue, 22 Oct 2024 18:37:09 + Wathsala Wathawana Vithanage wrote: > > 2. The API's should be used in the drivers and core, not exposed up > > to the application. Most of the hot data structures are in the > > drivers now. > > > PMDs don't know which CPU and cache level to use

eal: -n or -r options are ignored when --in-memory is used

2024-10-22 Thread Igor Gutorov
Hi, I've noticed an issue of `rte_memory_get_nchannel()` or `rte_memory_get_nrank()` always returning zero regardless of the -n or -r options set. I think this is due to `--in-memory` forcing `conf->no_shconf = 1` [1], which leads to `rte_eal_memdevice_init()` never being executed [2]. I do not

Re: [PATCH dpdk] meson: properly disable docs

2024-10-22 Thread Bruce Richardson
On Tue, Oct 22, 2024 at 05:31:47PM +0200, Robin Jarry wrote: > Bruce Richardson, Oct 22, 2024 at 17:25: > > No strong objection to this. Just FYI, the reason it is currently done as > > it is in the build, is that even if you configure a build without the docs > > enabled, you can just build the do

RE: Including contigmem in core dumps

2024-10-22 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Tuesday, 22 October 2024 17.39 > > On Tue, 22 Oct 2024 17:47:11 +0300 > Dmitry Kozlyuk wrote: > > > 2024-10-22 07:41 (UTC-0500), Lewis Donzis: > > > I've been wondering why we exclude memory allocated by > > > eal_get_virtual_

Re: [PATCH] ixgbe: Removed FreeBSD forcing wait in ixgbe_dev_link_update_share()

2024-10-22 Thread Lewis Donzis
- On Oct 22, 2024, at 10:34 AM, Stephen Hemminger step...@networkplumber.org wrote: > On Tue, 22 Oct 2024 09:42:05 -0500 > l...@perftech.com wrote: > >> From: Lewis Donzis >> >> Forcing wait true prevents checking link status without delay, because the >> function will wait more than 10

Re: [PATCH v6 06/47] net/bnxt: tf_core: TF support flow scale query

2024-10-22 Thread Sriharsha Basavapatna
On Mon, Oct 21, 2024 at 9:43 PM Stephen Hemminger wrote: > > On Mon, 21 Oct 2024 13:55:26 +0530 > Sriharsha Basavapatna wrote: > > > From: Shuanglin Wang > > > > TF supports the flow scale query feature for OVS application. > > The resource usage is tracked when opening a TF session > > or addin

[PATCH v4 2/4] net/ice: improve Tx scheduler graph output

2024-10-22 Thread Bruce Richardson
The function to dump the TX scheduler topology only adds to the chart nodes connected to TX queues or for the flow director VSI. Change the function to work recursively from the root node and thereby include all scheduler nodes, whether in use or not, in the dump. Also, improve the output of the T

[PATCH v4 4/4] net/ice: limit the number of queues to sched capabilities

2024-10-22 Thread Bruce Richardson
Rather than assuming that each VSI can hold up to 256 queue pairs, or the reported device limit, query the available nodes in the scheduler tree to check that we are not overflowing the limit for number of child scheduling nodes at each level. Do this by multiplying max_children for each level beyo

[PATCH v4 3/4] net/ice: add option to choose DDP package file

2024-10-22 Thread Bruce Richardson
The "Dynamic Device Personalization" package is loaded at initialization time by the driver, but the specific package file loaded depends upon what package file is found first by searching through a hard-coded list of firmware paths. To enable greater control over the package loading, we can add a

[PATCH v4 0/4] updates for net/ice driver

2024-10-22 Thread Bruce Richardson
This patchset contains a set of updates for the ice driver, a number of which are in the area of the "rte_tm" APIs for Tx scheduling. These patches were previously submitted as part of a larger set[1], but separating them out here for easier review and merge ahead of the more substantial changes f

[PATCH v4 1/4] net/ice: detect stopping a flow-director queue twice

2024-10-22 Thread Bruce Richardson
If the flow-director queue is stopped at some point during the running of an application, the shutdown procedure for the port issues an error as it tries to stop the queue a second time, and fails to do so. We can eliminate this error by setting the tail-register pointer to NULL on stop, and checki

Re: [PATCH 01/10] event/dsw: remove single event enqueue and dequeue

2024-10-22 Thread Jerin Jacob
On Mon, Oct 21, 2024 at 3:04 PM Mattias Rönnblom wrote: > > Provide only burst enqueue and dequeue. > > Signed-off-by: Mattias Rönnblom Series applied to dpdk-next-eventdev/for-main. Thanks. Also, Squashed https://patches.dpdk.org/project/dpdk/patch/20241022045950.9975-1-pbhagavat...@marvell.c

Re: [PATCH v2 07/73] net/ntnic: add NT flow profile management implementation

2024-10-22 Thread Stephen Hemminger
On Tue, 22 Oct 2024 18:54:24 +0200 Serhii Iliushyk wrote: > diff --git a/drivers/net/ntnic/include/flow_api.h > b/drivers/net/ntnic/include/flow_api.h > index 790b2f6b03..748da89262 100644 > --- a/drivers/net/ntnic/include/flow_api.h > +++ b/drivers/net/ntnic/include/flow_api.h > @@ -61,6 +61,10

Re: [PATCH v2 08/73] net/ntnic: add create/destroy implementation for NT flows

2024-10-22 Thread Stephen Hemminger
On Tue, 22 Oct 2024 18:54:25 +0200 Serhii Iliushyk wrote: > diff --git a/drivers/net/ntnic/include/flow_api.h > b/drivers/net/ntnic/include/flow_api.h > index 748da89262..667dad6d5f 100644 > --- a/drivers/net/ntnic/include/flow_api.h > +++ b/drivers/net/ntnic/include/flow_api.h > @@ -68,6 +68,9

Re: [PATCH v10] examples/ptp: replace terms master and slave

2024-10-22 Thread Ajit Khaparde
On Tue, Oct 22, 2024 at 9:39 AM Stephen Hemminger wrote: > > On Fri, 14 Jun 2024 08:41:07 -0700 > Stephen Hemminger wrote: > > > Remove one of the few remaining uses of master/slave. > > > > The IEEE 1588 standard has been updated to remove the use > > of master-slave terminology. Change the samp

[PATCH v2 60/73] net/ntnic: add TSM module

2024-10-22 Thread Serhii Iliushyk
From: Oleksandr Kolomeiets fpga map was extended with tsm module support which enable statistics functionality. Signed-off-by: Oleksandr Kolomeiets --- doc/guides/nics/features/ntnic.ini| 1 + .../supported/nthw_fpga_9563_055_049_.c | 394 +- .../nthw/suppor

[PATCH v2 46/73] net/ntnic: add MAC Tx module

2024-10-22 Thread Serhii Iliushyk
From: Oleksandr Kolomeiets The Media Access Control Transmit module contains counters that keep track on transmitted packets. Signed-off-by: Oleksandr Kolomeiets --- .../supported/nthw_fpga_9563_055_049_.c | 38 ++- .../ntnic/nthw/supported/nthw_fpga_mod_defs.h | 3 +- .

[PATCH v2 73/73] net/ntnic: add meter documentation

2024-10-22 Thread Serhii Iliushyk
From: Danylo Vodopianov ntnic.ini was extended with rte_flow action meter support. Signed-off-by: Danylo Vodopianov --- doc/guides/nics/features/ntnic.ini | 1 + doc/guides/nics/ntnic.rst | 1 + doc/guides/rel_notes/release_24_11.rst | 1 + 3 files changed, 3 insertions(+) di

[PATCH v2 54/73] net/ntnic: add statistics API

2024-10-22 Thread Serhii Iliushyk
From: Danylo Vodopianov Statistics init, setup, get, reset APIs and their implementation were added. Statistics fpga defines were added. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/adapter/nt4ga_adapter.c | 29 +- .../net/ntnic/adapter/nt4ga_stat/nt4ga_stat.c | 192 +

[PATCH v2 61/73] net/ntnic: add xstats

2024-10-22 Thread Serhii Iliushyk
From: Danylo Vodopianov Extended statistics implementation and initialization were added. eth_dev_ops api was extended with new xstats apis. Signed-off-by: Danylo Vodopianov --- doc/guides/nics/features/ntnic.ini| 1 + drivers/net/ntnic/include/ntnic_stat.h| 36 + drive

[PATCH v2 70/73] net/ntnic: add age documentation

2024-10-22 Thread Serhii Iliushyk
ntnic.rst document was exntede with age feature specification. ntnic.ini was extended with rte_flow action age support. Signed-off-by: Serhii Iliushyk --- doc/guides/nics/features/ntnic.ini | 1 + doc/guides/nics/ntnic.rst | 18 ++ doc/guides/rel_notes/release_2

[PATCH v2 62/73] net/ntnic: added flow statistics

2024-10-22 Thread Serhii Iliushyk
From: Danylo Vodopianov xstats was extended with flow statistics support. Additional counters that shows learn, unlearn, lps, aps and other. Signed-off-by: Danylo Vodopianov --- .../net/ntnic/adapter/nt4ga_stat/nt4ga_stat.c | 40 drivers/net/ntnic/include/hw_mod_backend.h| 3 + dr

[PATCH v2 71/73] net/ntnic: add meter API

2024-10-22 Thread Serhii Iliushyk
Add meter API and implementation to the profile inline. management functions were extended with meter flow support. Signed-off-by: Serhii Iliushyk --- drivers/net/ntnic/include/flow_api.h | 1 + drivers/net/ntnic/include/flow_api_engine.h | 5 + .../flow_api/profile_inline/flm_ev

[PATCH v2 67/73] net/ntnic: add info and configure flow API

2024-10-22 Thread Serhii Iliushyk
From: Danylo Vodopianov Inline profile was extended with flow info and create APIS. Module which operate with age queue was extended with create and free operations. Signed-off-by: Danylo Vodopianov --- v2 * Fix usage of the rte_atomic --- drivers/net/ntnic/include/flow_api.h | 3 +

  1   2   3   4   >