[PATCH v8 1/3] node: support to add next node to ethdev Rx node

2024-01-01 Thread Rakesh Kudurumalla
By default all packets received on ethdev_rx node is forwarded to pkt_cls node.This patch provides library support to add a new node as next node to ethdev_rx node and forward packet to new node from rx node. Signed-off-by: Rakesh Kudurumalla --- v8: Doc correction lib/node/ethdev_ctrl.c

[PATCH v8 2/3] app/graph: add ethdev forward command

2024-01-01 Thread Rakesh Kudurumalla
Adds a txport to forward packet for every rxport Mapping will be used to forward packets to txport received on rxport Following commands are exposed: - ethdev forward " Signed-off-by: Rakesh Kudurumalla --- app/graph/cli.c| 1 + app/graph/ethdev.c | 63 +++

[PATCH v8 3/3] app/graph: implement port forward usecase

2024-01-01 Thread Rakesh Kudurumalla
Added portforward usecase.In this usecase packets received Rx port is forwarded to respective Tx port. Signed-off-by: Rakesh Kudurumalla --- app/graph/ethdev.c | 13 ++ app/graph/ethdev.h | 1 + app/graph/examples/l2fwd.cli |

[PATCH v2] net/iavf: fix vf startup coredump

2024-01-01 Thread Shiyang He
When the vf starts to request multiple queues, the pf sends a reset command to the vf. During the reset process, adminq sends an abnormal message to pf for an unknown reason, and the resource request fails resulting in a coredump. This patch fixes the issue by checking the reset state before reset

[PATCH v4 1/2] net/ice: reset Tx sched node during commit

2024-01-01 Thread Qi Zhang
1. Always reset all Tx scheduler at the begining of a commit action. This prevent unexpected remains from previous commit. 2. Reset all Tx scheduler nodes if a commit failed. For leaf node, stop queues which will remove sched node from scheduler tree, then start queues which will add sched node

[PATCH v4 2/2] net/ice: support Tx sched commit before dev_start

2024-01-01 Thread Qi Zhang
Currently Tx hierarchy commit only take effect if device already be started, as after a dev start / stop cycle, queues has been removed and added back which cause the Tx scheduler tree return to orignal topo. In this patch, the hierarchy commit function will simply return if device has not be star

[PATCH 1/2] net/ice: add Tx scheduling tree dump support

2024-01-01 Thread Qi Zhang
Added Testpmd CLI support for dumping Tx scheduling tree. Usage: testpmd>txsched dump The output file is in "dot" format, which can be converted into an image file using Graphviz. - In "brief" mode, all scheduling nodes in the tree are displayed. - In "detail" mode, each node's configuration

[PATCH 2/2] doc: add document for diagnostic utilities

2024-01-01 Thread Qi Zhang
Document CLI for diagnose purpose. Signed-off-by: Qi Zhang --- doc/guides/nics/ice.rst | 36 1 file changed, 36 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 820a385b06..29309abe4d 100644 --- a/doc/guides/nics/ice.rst +++

[PATCH v4 1/2] net/ice: add Tx scheduling tree dump support

2024-01-01 Thread Qi Zhang
Added Testpmd CLI support for dumping Tx scheduling tree. Usage: testpmd>txsched dump The output file is in "dot" format, which can be converted into an image file using Graphviz. - In "brief" mode, all scheduling nodes in the tree are displayed. - In "detail" mode, each node's configuration

[PATCH v4 2/2] doc: add document for diagnostic utilities

2024-01-01 Thread Qi Zhang
Document CLI for diagnose purpose. Signed-off-by: Qi Zhang --- doc/guides/nics/ice.rst | 36 1 file changed, 36 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 820a385b06..29309abe4d 100644 --- a/doc/guides/nics/ice.rst +++

[PATCH v5 1/2] net/ice: add Tx scheduling tree dump support

2024-01-01 Thread Qi Zhang
Added Testpmd CLI support for dumping Tx scheduling tree. Usage: testpmd>txsched dump The output file is in "dot" format, which can be converted into an image file using Graphviz. - In "brief" mode, all scheduling nodes in the tree are displayed. - In "detail" mode, each node's configuration

[PATCH v5 2/2] doc: add document for diagnostic utilities

2024-01-01 Thread Qi Zhang
Document CLI for diagnose purpose. Signed-off-by: Qi Zhang --- doc/guides/nics/ice.rst | 36 1 file changed, 36 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 820a385b06..29309abe4d 100644 --- a/doc/guides/nics/ice.rst +++

[PATCH v6 1/2] net/ice: add Tx scheduling tree dump support

2024-01-01 Thread Qi Zhang
Added Testpmd CLI support for dumping Tx scheduling tree. Usage: testpmd>txsched dump The output file is in "dot" format, which can be converted into an image file using Graphviz. - In "brief" mode, all scheduling nodes in the tree are displayed. - In "detail" mode, each node's configuration

[PATCH v6 2/2] doc: add document for ice diagnostic utilities

2024-01-01 Thread Qi Zhang
Document CLI for diagnose purpose. Signed-off-by: Qi Zhang --- v6: - fix title doc/guides/nics/ice.rst | 36 1 file changed, 36 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 820a385b06..29309abe4d 100644 --- a/doc/guide

[PATCH v7 1/2] net/ice: add Tx scheduling tree dump support

2024-01-01 Thread Qi Zhang
Added Testpmd CLI support for dumping Tx scheduling tree. Usage: testpmd>txsched dump The output file is in "dot" format, which can be converted into an image file using Graphviz. - In "brief" mode, all scheduling nodes in the tree are displayed. - In "detail" mode, each node's configuration

[PATCH v7 2/2] doc: add document for ice diagnostic utilities

2024-01-01 Thread Qi Zhang
Document ice specific testpmd CLI for diagnose purpose. Signed-off-by: Qi Zhang --- v6: - fix title doc/guides/nics/ice.rst | 36 1 file changed, 36 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 820a385b06..29309abe4d 10

RE: [PATCH] net/ice: support FEC feature

2024-01-01 Thread Zhang, Qi Z
> -Original Message- > From: Yang, Qiming > Sent: Monday, December 11, 2023 12:23 PM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Yang, Qiming > > Subject: [PATCH] net/ice: support FEC feature > > This patch enable three FEC related ops in ice driver. As no speed information > can get from

[PATCH v2 00/24] Fixes and improvements in crypto cnxk

2024-01-01 Thread Anoob Joseph
Add following features - TLS record processing offload (TLS 1.2-1.3, DTLS 1.2) - Rx inject to allow lookaside packets to be injected to ethdev Rx - Use PDCP_CHAIN opcode instead of PDCP opcode for cipher-only and auth only cases - PMD API to submit instructions directly to hardware Changes in v2

[PATCH v2 01/24] common/cnxk: fix memory leak

2024-01-01 Thread Anoob Joseph
From: Akhil Goyal dev_init() acquires some resources which need to be cleaned in case a failure is observed afterwards. Fixes: c045d2e5cbbc ("common/cnxk: add CPT configuration") Signed-off-by: Akhil Goyal --- drivers/common/cnxk/roc_cpt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(

[PATCH v2 02/24] crypto/cnxk: use common macro

2024-01-01 Thread Anoob Joseph
Having different macros for same purpose may cause issues if one is updated without updating the other. Use same macro by including the header. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_cryptodev.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/c

[PATCH v2 03/24] crypto/cnxk: fallback to SG if headroom is not available

2024-01-01 Thread Anoob Joseph
From: Tejasree Kondoj Falling back to SG mode for cn9k lookaside IPsec if headroom is not available. Signed-off-by: Tejasree Kondoj --- drivers/crypto/cnxk/cn9k_ipsec_la_ops.h | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/crypto/cnxk/cn9k_ipsec_la_ops.h b/

[PATCH v2 04/24] crypto/cnxk: return microcode completion code

2024-01-01 Thread Anoob Joseph
Return microcode completion code in case of errors. This allows applications to check the failure reasons in more granularity. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/crypto/cnxk/cn10k_cryptodev_ops.c

[PATCH v2 05/24] crypto/cnxk: fix ECDH pubkey verify in cn9k

2024-01-01 Thread Anoob Joseph
From: Gowrishankar Muthukrishnan Fix ECDH pubkey verify in cn9k. Fixes: baae0994fa96 ("crypto/cnxk: support ECDH") Signed-off-by: Gowrishankar Muthukrishnan --- drivers/crypto/cnxk/cn9k_cryptodev_ops.c | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/drivers/cr

[PATCH v2 06/24] crypto/cnxk: enable digest gen for zero len input

2024-01-01 Thread Anoob Joseph
From: Aakash Sasidharan With zero length input, digest generation fails with incorrect value. Fix this by completely avoiding the gather component when the input packet has zero data length. Signed-off-by: Aakash Sasidharan --- drivers/crypto/cnxk/cnxk_se.h | 2 +- 1 file changed, 1 insertion(

[PATCH v2 07/24] crypto/cnxk: enable Rx inject in security lookaside

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add Rx inject fastpath API. Add devargs to specify an LF to be used for Rx inject. When the RX inject feature flag is enabled: 1. Reserve a CPT LF to use for RX Inject mode. 2. Enable RXC and disable full packet mode for that LF. Signed-off-by: Anoob Joseph Signed-off

[PATCH v2 08/24] common/cnxk: add Rx inject configs

2024-01-01 Thread Anoob Joseph
From: Rahul Bhansali Add Rx inject config for feature enable/disable, and store Rx chan value per port. Signed-off-by: Rahul Bhansali --- drivers/common/cnxk/roc_idev.c | 44 + drivers/common/cnxk/roc_idev.h | 5 drivers/common/cnxk/roc_idev_priv.h |

[PATCH v2 09/24] crypto/cnxk: Rx inject config update

2024-01-01 Thread Anoob Joseph
From: Rahul Bhansali - Update chan in CPT inst from port's Rx chan - Set Rx inject config in Idev struct Signed-off-by: Rahul Bhansali --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 4 +++- drivers/crypto/cnxk/cn10k_ipsec.c | 3 +++ drivers/crypto/cnxk/cnxk_cryptodev.h | 1 + dri

[PATCH v2 10/24] crypto/cnxk: enable Rx inject for 103

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Enable Rx inject feature for 103XX Signed-off-by: Vidya Sagar Velumuri --- drivers/crypto/cnxk/cnxk_cryptodev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/cnxk/cnxk_cryptodev.c b/drivers/crypto/cnxk/cnxk_cryptodev.c index b168

[PATCH v2 11/24] crypto/cnxk: rename security caps as IPsec security caps

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Security capabilities would vary between IPsec and other new offloads. Rename existing security caps to indicate that they are IPsec specific ones. Rename and change the scope of common functions, inorder to avoid code duplication. These functions can be used by both I

[PATCH v2 12/24] common/cnxk: update opad-ipad gen to handle TLS

2024-01-01 Thread Anoob Joseph
For TLS opcodes, ipad is at the offset 64 as compared to the packed implementation for IPsec. Extend the function to handle TLS contexts as well. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- drivers/common/cnxk/cnxk_security.c | 15 --- drivers/common/cnxk/cnx

[PATCH v2 13/24] common/cnxk: add TLS record contexts

2024-01-01 Thread Anoob Joseph
Add TLS record read and write contexts. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- drivers/common/cnxk/roc_cpt.h | 4 +- drivers/common/cnxk/roc_ie_ot_tls.h | 199 drivers/common/cnxk/roc_se.h| 11 ++ 3 files changed, 211 in

[PATCH v2 14/24] crypto/cnxk: separate IPsec from security common code

2024-01-01 Thread Anoob Joseph
The current structs and functions assume only IPsec offload. Separate it out to allow for addition of TLS. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- drivers/crypto/cnxk/cn10k_cryptodev.c | 2 +- drivers/crypto/cnxk/cn10k_cryptodev_sec.c | 127

[PATCH v2 15/24] crypto/cnxk: add TLS record session ops

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add TLS record session ops for creating and destroying security sessions. Add support for both read and write sessions. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- drivers/crypto/cnxk/cn10k_cryptodev_sec.h | 8 + drivers/crypto/cnxk/cn10k_t

[PATCH v2 16/24] crypto/cnxk: add TLS record datapath handling

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add support for TLS record handling in datapath. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 57 +++- drivers/crypto/cnxk/cn10k_cryptodev_sec.c | 7 + drivers/crypto/cnxk/cn10k_tls_ops.h |

[PATCH v2 17/24] crypto/cnxk: add TLS capability

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add TLS 1.2 record read and write capability. Add DTLS 1.2 record read and write capability. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- doc/guides/rel_notes/release_24_03.rst| 2 + drivers/common/cnxk/hw/cpt.h |

[PATCH v2 18/24] crypto/cnxk: add PMD APIs for raw submission to CPT

2024-01-01 Thread Anoob Joseph
Add PMD APIs to allow applications to directly submit CPT instructions to hardware. Signed-off-by: Anoob Joseph --- doc/api/doxy-api-index.md | 1 + doc/api/doxy-api.conf.in | 1 + doc/guides/rel_notes/release_24_03.rst| 1 + drivers/crypto/cnxk/cn10k_cryp

[PATCH v2 19/24] crypto/cnxk: replace PDCP with PDCP chain opcode

2024-01-01 Thread Anoob Joseph
From: Tejasree Kondoj Replacing PDCP opcode with PDCP chain opcode. Signed-off-by: Tejasree Kondoj --- drivers/common/cnxk/roc_se.c | 331 +- drivers/common/cnxk/roc_se.h | 18 +- drivers/crypto/cnxk/cnxk_se.h | 96 +- 3 files changed, 135 insertions

[PATCH v2 20/24] crypto/cnxk: validate the combinations supported in TLS

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Validate the cipher and auth combination to allow only the ones supported by hardware. Signed-off-by: Vidya Sagar Velumuri --- drivers/crypto/cnxk/cn10k_tls.c | 35 - 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/driver

[PATCH v2 21/24] crypto/cnxk: use a single function for opad ipad

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Use a single function for opad and ipad generation for IPsec, TLS and flexi crypto. Signed-off-by: Vidya Sagar Velumuri --- drivers/common/cnxk/cnxk_security.c | 65 ++--- drivers/common/cnxk/cnxk_security.h | 5 --- drivers/common/cnxk/roc_s

[PATCH v2 22/24] crypto/cnxk: add support for TLS 1.3

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add support for TLS-1.3. Signed-off-by: Vidya Sagar Velumuri --- drivers/common/cnxk/roc_ie_ot_tls.h | 50 +-- drivers/crypto/cnxk/cn10k_cryptodev_sec.h | 3 +- drivers/crypto/cnxk/cn10k_tls.c | 159 +- 3 files changed, 136

[PATCH v2 23/24] crypto/cnxk: add TLS 1.3 capability

2024-01-01 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add TLS 1.3 record read and write capability Signed-off-by: Vidya Sagar Velumuri --- doc/guides/rel_notes/release_24_03.rst| 4 +- .../crypto/cnxk/cnxk_cryptodev_capabilities.c | 92 +++ 2 files changed, 94 insertions(+), 2 deletions(-) diff

[PATCH v2 24/24] crypto/cnxk: add CPT SG mode debug

2024-01-01 Thread Anoob Joseph
From: Tejasree Kondoj Adding CPT SG mode debug dump. Signed-off-by: Tejasree Kondoj --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 135 +- drivers/crypto/cnxk/cnxk_cryptodev_ops.h | 7 ++ 2 files changed, 141 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/cnx

RE: [PATCH v7 1/2] net/ice: add Tx scheduling tree dump support

2024-01-01 Thread Wu, Wenjun1
> -Original Message- > From: Zhang, Qi Z > Sent: Tuesday, January 2, 2024 8:40 PM > To: Yang, Qiming ; Wu, Wenjun1 > > Cc: dev@dpdk.org; Zhang, Qi Z > Subject: [PATCH v7 1/2] net/ice: add Tx scheduling tree dump support > > Added Testpmd CLI support for dumping Tx scheduling tree. > >

RE: [PATCH v8 2/3] app/graph: add ethdev forward command

2024-01-01 Thread Sunil Kumar Kori
> -Original Message- > From: Rakesh Kudurumalla > Sent: Monday, January 1, 2024 2:07 PM > To: Sunil Kumar Kori ; Rakesh Kudurumalla > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin > Kumar Dabilpuram > Subject: [PATCH v8 2/3] app/graph: add ethdev forward command > > Adds a txpo

RE: [PATCH v8 3/3] app/graph: implement port forward usecase

2024-01-01 Thread Sunil Kumar Kori
> -Original Message- > From: Rakesh Kudurumalla > Sent: Monday, January 1, 2024 2:07 PM > To: Sunil Kumar Kori ; Rakesh Kudurumalla > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin > Kumar Dabilpuram > Subject: [PATCH v8 3/3] app/graph: implement port forward usecase > > Added p

RE: [PATCH v7 2/2] doc: add document for ice diagnostic utilities

2024-01-01 Thread Yang, Qiming
> -Original Message- > From: Zhang, Qi Z > Sent: Tuesday, January 2, 2024 8:40 PM > To: Yang, Qiming ; Wu, Wenjun1 > > Cc: dev@dpdk.org; Zhang, Qi Z > Subject: [PATCH v7 2/2] doc: add document for ice diagnostic utilities > > Document ice specific testpmd CLI for diagnose purpose. >

[PATCH v9 1/3] node: support to add next node to ethdev Rx node

2024-01-01 Thread Rakesh Kudurumalla
By default all packets received on ethdev_rx node is forwarded to pkt_cls node.This patch provides library support to add a new node as next node to ethdev_rx node and forward packet to new node from rx node. Signed-off-by: Rakesh Kudurumalla --- v9: Resolve memory issue lib/node/ethdev_ctrl.c

[PATCH v9 3/3] app/graph: implement port forward usecase

2024-01-01 Thread Rakesh Kudurumalla
Added portforward usecase.In this usecase packets received Rx port is forwarded to respective Tx port. Signed-off-by: Rakesh Kudurumalla Acked-by: Sunil Kumar Kori --- app/graph/ethdev.c | 13 ++ app/graph/ethdev.h | 1 + app/graph/examples

[PATCH v9 2/3] app/graph: add ethdev forward command

2024-01-01 Thread Rakesh Kudurumalla
Adds a txport to forward packet for every rxport Mapping will be used to forward packets to txport received on rxport Following commands are exposed: - ethdev forward " Signed-off-by: Rakesh Kudurumalla Acked-by: Sunil Kumar Kori --- app/graph/cli.c| 1 + app/graph/ethde

[PATCH v10 1/3] node: support to add next node to ethdev Rx node

2024-01-01 Thread Rakesh Kudurumalla
By default all packets received on ethdev_rx node is forwarded to pkt_cls node.This patch provides library support to add a new node as next node to ethdev_rx node and forward packet to new node from rx node. Signed-off-by: Rakesh Kudurumalla --- v10: Code style lib/node/ethdev_ctrl.c | 48

[PATCH v10 2/3] app/graph: add ethdev forward command

2024-01-01 Thread Rakesh Kudurumalla
Adds a txport to forward packet for every rxport Mapping will be used to forward packets to txport received on rxport Following commands are exposed: - ethdev forward " Signed-off-by: Rakesh Kudurumalla Acked-by: Sunil Kumar Kori --- app/graph/cli.c| 1 + app/graph/ethde

[PATCH v10 3/3] app/graph: implement port forward usecase

2024-01-01 Thread Rakesh Kudurumalla
Added portforward usecase.In this usecase packets received Rx port is forwarded to respective Tx port. Signed-off-by: Rakesh Kudurumalla Acked-by: Sunil Kumar Kori --- app/graph/ethdev.c | 13 ++ app/graph/ethdev.h | 1 + app/graph/examples