[PATCH] build: add missing arch define for Arm

2021-12-17 Thread Ruifeng Wang
As per design document, RTE_ARCH is the name of the architecture. However, the definition was missing on Arm with meson build. It impacts applications that refers to this string. Added for Arm builds. Fixes: b1d48c41189a ("build: support ARM with meson") Cc: sta...@dpdk.org Signed-off-by: Ruifen

[PATCH v3 00/29] New features and improvements in cnxk crypto PMD

2021-12-17 Thread Anoob Joseph
New features and fixes to cnxk crypto PMDs - Support for more algorithms in lookaside crypto & protocol - Support for copy & set DF bit - Support for CPT CTX update - Support for security session stats in cn10k Changes in v3 - Fixed build error from CI Changes in v2 - Support for copy & set DSCP

[PATCH v3 01/29] common/cnxk: define minor opcodes for MISC opcode

2021-12-17 Thread Anoob Joseph
MISC CPT instruction behaves differently based on minor opcode. Define the missing minor opcodes for MISC major opcode. Signed-off-by: Aakash Sasidharan Signed-off-by: Anoob Joseph --- drivers/common/cnxk/roc_se.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/

[PATCH v3 02/29] common/cnxk: add aes-xcbc key derive

2021-12-17 Thread Anoob Joseph
Add support for AES-XCBC key derivation. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/meson.build | 1 + drivers/common/cnxk/roc_aes.c | 208 drivers/common/cnxk/roc_aes.h | 14 +++ drivers/common/cnxk/roc_api.h | 3 + drivers/common/cn

[PATCH v3 03/29] common/cnxk: add bit fields for params

2021-12-17 Thread Anoob Joseph
From: Archana Muniganti Added new structure with bit fields for params. Signed-off-by: Archana Muniganti --- drivers/common/cnxk/roc_ie_on.h | 30 +- drivers/crypto/cnxk/cn9k_ipsec.c | 16 +--- 2 files changed, 42 insertions(+), 4 deletions(-) diff --

[PATCH v3 04/29] common/cnxk: fix reset of fields

2021-12-17 Thread Anoob Joseph
Copy DF/DSCP fields would get set based on ipsec_xform in the code preceding this. Setting it again would cause the options to be reset. Fixes: 78d03027f2cc ("common/cnxk: add IPsec common code") Cc: scha...@marvell.com Signed-off-by: Anoob Joseph --- drivers/common/cnxk/cnxk_security.c | 4 ---

[PATCH v3 05/29] common/cnxk: verify input args

2021-12-17 Thread Anoob Joseph
Add input arg verification. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/hw/cpt.h | 2 ++ drivers/common/cnxk/roc_cpt.c | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/common/cnxk/hw/cpt.h b/drivers/common/cnxk/hw/cpt.h index 919f842..ccc7af4 100644 --- a/

[PATCH v3 06/29] common/cnxk: update completion code

2021-12-17 Thread Anoob Joseph
Update completion code to match v1.19 microcode release. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/roc_ie_ot.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/common/cnxk/roc_ie_ot.h b/drivers/common/cnxk/roc_ie_ot.h index 5b61902..923656f 100644 --- a/d

[PATCH v3 07/29] crypto/cnxk: only enable queues that are allocated

2021-12-17 Thread Anoob Joseph
From: Shijith Thotton Only enable/disable queue pairs that are allocated during cryptodev start/stop. Fixes: 6a95dbc1a291 ("crypto/cnxk: add dev start and dev stop") Signed-off-by: Shijith Thotton --- drivers/crypto/cnxk/cnxk_cryptodev_ops.c | 13 +++-- 1 file changed, 11 insertions(+

[PATCH v3 08/29] crypto/cnxk: add lookaside IPsec AES-CBC-HMAC-SHA256 support

2021-12-17 Thread Anoob Joseph
From: Tejasree Kondoj Adding AES-CBC-HMAC-SHA256 support to lookaside IPsec PMD. Signed-off-by: Tejasree Kondoj --- doc/guides/cryptodevs/cnxk.rst| 39 +++ doc/guides/rel_notes/release_22_03.rst| 4 +++ drivers/common/cnxk/cnxk_security.c

[PATCH v3 09/29] crypto/cnxk: clear session data before populating

2021-12-17 Thread Anoob Joseph
Clear session data before populating fields to not have garbage data. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_ipsec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/crypto/cnxk/cn10k_ipsec.c b/drivers/crypto/cnxk/cn10k_ipsec.c index 93eab1b..1bd127e 100644 --- a

[PATCH v3 10/29] crypto/cnxk: update max sec crypto caps

2021-12-17 Thread Anoob Joseph
Update the macro to include newly added ciphers. Updated the functions populating caps to throw error when max is exceeded. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_cryptodev.h | 2 +- drivers/crypto/cnxk/cnxk_cryptodev_capabilities.c | 8 ++-- 2 files changed, 7

[PATCH v3 11/29] crypto/cnxk: write CPT CTX through microcode op

2021-12-17 Thread Anoob Joseph
From: Tejasree Kondoj Adding support to write CPT CTX through microcode op(SET_CTX) for cn10k lookaside PMD. Signed-off-by: Tejasree Kondoj --- drivers/crypto/cnxk/cn10k_ipsec.c | 121 -- 1 file changed, 89 insertions(+), 32 deletions(-) diff --git a/driver

[PATCH v3 12/29] crypto/cnxk: support cnxk lookaside IPsec HMAC-SHA384/512

2021-12-17 Thread Anoob Joseph
From: Tejasree Kondoj Adding HMAC-SHA384/512 support to cnxk lookaside IPsec. Signed-off-by: Tejasree Kondoj --- doc/guides/cryptodevs/cnxk.rst| 4 ++ doc/guides/rel_notes/release_22_03.rst| 2 + drivers/common/cnxk/cnxk_security.c | 36 +

[PATCH v3 13/29] crypto/cnxk: account for CPT CTX updates and flush delays

2021-12-17 Thread Anoob Joseph
CPT CTX write with microcode would require CPT flush to complete to have DRAM updated with the SA. Since datapath requires SA direction field, introduce a new flag for the same. Session destroy path is also updated to clear sa.valid bit using CTX reload operation. Session is updated with marker t

[PATCH v3 14/29] crypto/cnxk: use struct sizes for ctx writes

2021-12-17 Thread Anoob Joseph
CTX writes only require the lengths are 8B aligned. Use the struct size directly. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_ipsec.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/crypto/cnxk/cn10k_ipsec.c b/drivers/crypto/cnxk/cn10k_ipse

[PATCH v3 15/29] crypto/cnxk: add security session stats get

2021-12-17 Thread Anoob Joseph
From: Ankur Dwivedi Adds the security session stats get op for cn10k. Signed-off-by: Ankur Dwivedi --- drivers/crypto/cnxk/cn10k_ipsec.c | 55 +++ drivers/crypto/cnxk/cnxk_cryptodev_capabilities.c | 1 + drivers/crypto/cnxk/cnxk_cryptodev_sec.c |

[PATCH v3 16/29] crypto/cnxk: add skip for unsupported cases

2021-12-17 Thread Anoob Joseph
Add skip for transport mode tests that are not supported. Also, updated the transport mode path to configure IP version as v4. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn9k_ipsec.c | 53 +++- 1 file changed, 47 insertions(+), 6 deletions(-) diff --

[PATCH v3 17/29] crypto/cnxk: add context reload for IV

2021-12-17 Thread Anoob Joseph
From: Tejasree Kondoj Adding context reload in datapath for IV in debug mode. Signed-off-by: Tejasree Kondoj --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 7 --- drivers/crypto/cnxk/cn10k_ipsec_la_ops.h | 10 -- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/dr

[PATCH v3 18/29] crypto/cnxk: handle null chained ops

2021-12-17 Thread Anoob Joseph
Verification doesn't cover cases when NULL auth/cipher is provided as a chain. Removed the separate function for verification and added a replacement function which calls the appropriate downstream functions. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_cryptodev_ops.c | 189

[PATCH v3 19/29] crypto/cnxk: fix inflight cnt calculation

2021-12-17 Thread Anoob Joseph
Inflight count calculation is updated to cover wrap around cases where head can become smaller than tail. Reported-by: Kiran Kumar K Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_cryptodev_ops.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/

[PATCH v3 20/29] crypto/cnxk: use atomics to access CPT res

2021-12-17 Thread Anoob Joseph
The memory would be updated by hardware. Use atomics to read the same. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/hw/cpt.h | 2 ++ drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 24 drivers/crypto/cnxk/cn9k_cryptodev_ops.c | 28 +++---

[PATCH v3 21/29] crypto/cnxk: add more info on command timeout

2021-12-17 Thread Anoob Joseph
Print more info when command timeout happens. Print software and hardware queue information. Signed-off-by: Anoob Joseph Signed-off-by: Tejasree Kondoj --- drivers/common/cnxk/hw/cpt.h | 11 drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 1 + drivers/crypto/cnxk/cn9k_cryptod

[PATCH v3 22/29] crypto/cnxk: support lookaside IPsec AES-CTR

2021-12-17 Thread Anoob Joseph
From: Tejasree Kondoj Adding AES-CTR support to cnxk CPT in lookaside IPsec mode. Signed-off-by: Tejasree Kondoj --- doc/guides/cryptodevs/cnxk.rst| 2 ++ doc/guides/rel_notes/release_22_03.rst| 1 + drivers/common/cnxk/cnxk_security.c | 6 +

[PATCH v3 23/29] crypto/cnxk: fix extend tail calculation

2021-12-17 Thread Anoob Joseph
If the packet size to be incremented after IPsec processing is less than size of hdr (size incremented before submitting), then extend_tail can become negative. Allow negative values for the variable. Fixes: 67a87e89561c ("crypto/cnxk: add cn9k lookaside IPsec datapath") Cc: march...@marvell.com

[PATCH v3 24/29] crypto/cnxk: add aes xcbc and null cipher

2021-12-17 Thread Anoob Joseph
Add support for AES XCBC and NULL cipher. Signed-off-by: Anoob Joseph --- doc/guides/cryptodevs/cnxk.rst| 4 + doc/guides/rel_notes/release_22_03.rst| 2 + drivers/common/cnxk/cnxk_security.c | 48 drivers/common/cnxk/roc_ie_on.h

[PATCH v3 25/29] crypto/cnxk: add copy and set DF

2021-12-17 Thread Anoob Joseph
Add support for copy and set DF bit. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn9k_ipsec.c | 7 ++- drivers/crypto/cnxk/cnxk_cryptodev_capabilities.c | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/cnxk/cn9k_ipsec.c b/drivers/cr

[PATCH v3 26/29] crypto/cnxk: add aes cmac

2021-12-17 Thread Anoob Joseph
Add support for AES CMAC auth algorithm. Signed-off-by: Anoob Joseph --- doc/guides/cryptodevs/cnxk.rst| 1 + doc/guides/cryptodevs/features/cn10k.ini | 37 +++--- doc/guides/cryptodevs/features/cn9k.ini | 37 +++--- doc/guides/rel_notes/re

[PATCH v3 27/29] crypto/cnxk: add per pkt IV in lookaside IPsec debug mode

2021-12-17 Thread Anoob Joseph
From: Archana Muniganti For cn9k, use HW GEN IV as default and add per pkt IV in lookaside IPsec debug mode. Debug mode helps to verify lookaside PMD using known outbound vectors in lookaside autotest. Signed-off-by: Archana Muniganti --- drivers/common/cnxk/roc_ie_on.h | 7

[PATCH v3 28/29] crypto/cnxk: enable copy dscp

2021-12-17 Thread Anoob Joseph
Copy DSCP is supported. Enable it in capabilities. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_cryptodev_capabilities.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/crypto/cnxk/cnxk_cryptodev_capabilities.c b/drivers/crypto/cnxk/cnxk_cryptodev_capabilities.c index f7

[PATCH v3 29/29] crypto/cnxk: update microcode completion handling

2021-12-17 Thread Anoob Joseph
Update microcode completion code handling to update the required mbuf & crypto op flags. IP checksum good case is now reported by specific microcode completion code. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 59 ++- drivers/crypto/cnx

Re: [PATCH v2 0/7] ixgbe SFP handling fixes

2021-12-17 Thread Thomas Monjalon
06/12/2021 23:19, Stephen Douthit: > Hello all, Hello, it seems to be your first contribution, welcome! > We have several platforms based on Intel's C3000 series of SoCs that > have integrated ixgbe devices (X550EM) operating in the "Native SFI" > mode (the 0x15c4 device ID). For ixgbe patches,

[PATCH] app/testpmd: fix external buffer allocation

2021-12-17 Thread Dmitry Kozlyuk
External pinned buffer memory (--mp-alloc=xbuf) was allocated as multiple IOVA-contiguous memzones of 2M size and 2M alignment. Due to the malloc overhead and the alignment requirement, each 2M memzone consumed 4M of hugepage memory: 2M of usable memory + X of malloc overhead + (2M-X) padding. The

RE: [PATCH 05/12] gen: add raw packet data API and tests

2021-12-17 Thread Van Haaren, Harry
+CC Thomas; > -Original Message- > From: Jerin Jacob > Sent: Wednesday, December 15, 2021 12:41 PM > To: Randles, Ronan > Cc: dpdk-dev ; Van Haaren, Harry > > Subject: Re: [PATCH 05/12] gen: add raw packet data API and tests > > On Tue, Dec 14, 2021 at 7:43 PM Ronan Randles > wrote: >

[PATCH] examples/ipsec-secgw: fix default flow rule creation

2021-12-17 Thread Nithin Dabilpuram
Fix default flow rule to create after ethdev start to align wit RTE flow spec. Fixes: 513f192b5fd4 ("examples/ipsec-secgw: add default flow for inline Rx") Cc: adwiv...@marvell.com Cc: sta...@dpdk.org Signed-off-by: Nithin Dabilpuram --- examples/ipsec-secgw/ipsec-secgw.c | 7 --- 1 file ch

Re: [PATCH] net/mlx5: fix metadata endianness in modify field action

2021-12-17 Thread Ferruh Yigit
On 12/16/2021 9:50 AM, Slava Ovsiienko wrote: Hi, Ferruh -Original Message- From: Ferruh Yigit Sent: Tuesday, December 7, 2021 15:45 To: Slava Ovsiienko ; dev@dpdk.org Cc: Matan Azrad ; Raslan Darawsheh ; sta...@dpdk.org Subject: Re: [PATCH] net/mlx5: fix metadata endianness in modify

[PATCH] kernel/kni: retry the xmit in case ring is full

2021-12-17 Thread Tudor Cornea
This patch attempts to avoid dropping packets that are to be transmitted, in case there is no space in the KNI ring. We have a use case in which we leverage the Linux TCP / IP stack for control plane, and some protocols might be sensitive to packet drops. This might mean that the sender (Kernel)

RE: [RFC] cryptodev: asymmetric crypto random number source

2021-12-17 Thread Kusztal, ArkadiuszX
> -Original Message- > From: Ramkumar Balu > Sent: Monday, December 13, 2021 10:27 AM > To: Akhil Goyal ; Kusztal, ArkadiuszX > ; Anoob Joseph ; Zhang, > Roy Fan > Cc: dev@dpdk.org > Subject: RE: [RFC] cryptodev: asymmetric crypto random number source > > > ++Ram for openssl > > > > > EC

RE: [RFC] Cryptodev: use rte_crypto_vec, group big-endian constraints

2021-12-17 Thread Kusztal, ArkadiuszX
From: Zhang, Roy Fan Sent: Thursday, December 16, 2021 4:05 PM To: Akhil Goyal ; Kusztal, ArkadiuszX ; Anoob Joseph Cc: dev@dpdk.org; Ramkumar Balu Subject: RE: [RFC] Cryptodev: use rte_crypto_vec, group big-endian constraints Hi, From: Akhil Goyal mailto:gak...@marvell.com>> Sent: Monday,

Re: [PATCH 05/12] gen: add raw packet data API and tests

2021-12-17 Thread Thomas Monjalon
17/12/2021 12:40, Van Haaren, Harry: > I could ramble on a bit more, but mostly diminishing returns I think... > I'll just use this email as a reply to Thomas' tweet; > https://twitter.com/tmonjalo/status/1337313985662771201 My original question was to know available applications, not integrating

Re: [PATCH] kernel/kni: retry the xmit in case ring is full

2021-12-17 Thread Stephen Hemminger
On Fri, 17 Dec 2021 17:00:32 +0200 Tudor Cornea wrote: > This patch attempts to avoid dropping packets that are to be > transmitted, in case there is no space in the KNI ring. > > We have a use case in which we leverage the Linux TCP / IP stack for > control plane, and some protocols might be se

mlx5: unitialized warning

2021-12-17 Thread Stephen Hemminger
Building current main branch with gcc (Debian 10.2.1-6) 10.2.1 20210110 [1843/3131] Compiling C object drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_flow_meter.c.o ../drivers/net/mlx5/mlx5_flow_meter.c: In function ‘mlx5_flow_meter_create’: ../drivers/net/mlx5/mlx5_flow_meter.c:1170:33: warning:

[PATCH] eal: fix data race in multi-process support

2021-12-17 Thread Stephen Hemminger
If DPDK is built with thread sanitizer it reports a race in setting of multiprocess file descriptor. The fix is to use atomic operations when updating mp_fd. Simple example: $ dpdk-testpmd -l 1-3 --no-huge EAL: Detected CPU lcores: 16 EAL: Detected NUMA nodes: 1 EAL: Static memory layout is select

[PATCH] eal: fix data race in multi-process support

2021-12-17 Thread Stephen Hemminger
If DPDK is built with thread sanitizer it reports a race in setting of multiprocess file descriptor. The fix is to use atomic operations when updating mp_fd. Simple example: $ dpdk-testpmd -l 1-3 --no-huge ... EAL: Error - exiting with code: 1 Cause: Creation of mbuf pool for socket 0 failed: Ca

DTS WG discussions

2021-12-17 Thread Honnappa Nagarahalli
BEGIN:VCALENDAR METHOD:REQUEST PRODID:Microsoft Exchange Server 2010 VERSION:2.0 BEGIN:VTIMEZONE TZID:Central Standard Time BEGIN:STANDARD DTSTART:16010101T02 TZOFFSETFROM:-0500 TZOFFSETTO:-0600 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 END:STANDARD BEGIN:DAYLIGHT DTSTART:16010101T02000

RE: mlx5: unitialized warning

2021-12-17 Thread Dmitry Kozlyuk
> Building current main branch with gcc (Debian 10.2.1-6) 10.2.1 20210110 > > > [1843/3131] Compiling C object > drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_flow_meter.c.o > ../drivers/net/mlx5/mlx5_flow_meter.c: In function > ‘mlx5_flow_meter_create’: > ../drivers/net/mlx5/mlx5_flow_meter.c:11

Re: mlx5: unitialized warning

2021-12-17 Thread Stephen Hemminger
On Fri, 17 Dec 2021 19:01:31 + Dmitry Kozlyuk wrote: > > Building current main branch with gcc (Debian 10.2.1-6) 10.2.1 20210110 > > > > > > [1843/3131] Compiling C object > > drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_flow_meter.c.o > > ../drivers/net/mlx5/mlx5_flow_meter.c: In function

RE: mlx5: unitialized warning

2021-12-17 Thread Dmitry Kozlyuk
> > I don't see this warning with gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04). [...] > > It maybe because I was testing with thread santizer enabled and compiler > was doing different optimizations. Reproduced with -Dc_args=-fsanitize=thread, thanks!

Re: [PATCH 3/7] net/bonding: change mbuf pool and ring allocation

2021-12-17 Thread Sanford, Robert
Hello Connor, Thank you for the questions and comments. I will repeat the questions, followed by my answers. Q: Could you be more detailed, why is mbuf pool caching not needed? A: The short answer: under certain conditions, we can run out of buffers from that small, LACPDU-mempool. We actually

Re: mlx5: unitialized warning

2021-12-17 Thread Stephen Hemminger
On Fri, 17 Dec 2021 19:28:26 + Dmitry Kozlyuk wrote: > > > I don't see this warning with gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04). > [...] > > > > It maybe because I was testing with thread santizer enabled and compiler > > was doing different optimizations. > > Reproduced with -Dc_arg

Ramaxel roadmap for 22.03

2021-12-17 Thread Yanling Song
Please find below Ramaxel roadmap for v22.03 release: Introduce SPNIC driver for Ramaxel's SPNxx serial NIC cards into DPDK 22.03. Ramaxel Memory Technology is a company which supply a lot of electric products in several fields: storage, communication, PCB... SPNxxx is a serial PCIE interface NIC

[PATCH v1 01/25] drivers/net: introduce a new PMD driver

2021-12-17 Thread Yanling Song
Introduce a new PMD driver which names spnic. Now, this driver only implements module entry without doing anything else. Signed-off-by: Yanling Song --- drivers/net/meson.build | 1 + drivers/net/spnic/base/meson.build| 26 drivers/net/spnic/base/spnic_compat.h | 188 ++

[PATCH v1 00/25] Net/SPNIC: support SPNIC into DPDK 22.03

2021-12-17 Thread Yanling Song
The patchsets introduce SPNIC driver for Ramaxel's SPNxx serial NIC cards into DPDK 22.03. Ramaxel Memory Technology is a company which supply a lot of electric products: storage, communication, PCB... SPNxxx is a serial PCIE interface NIC cards: SPN110: 2 PORTs *25G SPN120: 4 PORTs *25G SPN130:

[PATCH v1 02/25] net/spnic: initialize the HW interface

2021-12-17 Thread Yanling Song
Add HW interface registers and initialize the HW interface. Signed-off-by: Yanling Song --- drivers/net/spnic/base/meson.build | 2 + drivers/net/spnic/base/spnic_csr.h | 104 drivers/net/spnic/base/spnic_hwdev.c | 41 ++ drivers/net/spnic/base/spnic_hwdev.h | 29 + drivers/net/spni

[PATCH v1 05/25] net/spnic: add mgmt module

2021-12-17 Thread Yanling Song
Mgmt module manage the message gerenated from the hardware. This patch implements mgmt module initialization, related event processing and message command definition. Signed-off-by: Yanling Song --- drivers/net/spnic/base/meson.build | 4 +- drivers/net/spnic/base/spnic_cmd.h | 222

[PATCH v1 07/25] net/spnic: add interface handling cmdq message

2021-12-17 Thread Yanling Song
This commit adds cmdq_sync_cmd_direct_resp() and cmdq_sync_cmd_detail_resp() interfaces by which driver can send cmdq message using wqe a data structure describe the buffer. Signed-off-by: Yanling Song --- drivers/net/spnic/base/meson.build | 1 + drivers/net/spnic/base/spnic_cmdq.c| 6

[PATCH v1 06/25] net/spnic: add cmdq and work queue

2021-12-17 Thread Yanling Song
This commit introduce cmdq and work queue which can be used to send bulk message data(up to 2KB) to hardware. cmdq provides a mechanism to encapsulate the message to be sent and handle the response data or status. work queue is used to manager the wqe in which includes message data buffer descripti

[PATCH v1 03/25] net/spnic: add mbox message channel

2021-12-17 Thread Yanling Song
This patch adds a message channel named mbox which can send message form PF/VF driver to hardware or sned message from VF to PF. Signed-off-by: Yanling Song --- drivers/net/spnic/base/meson.build |3 +- drivers/net/spnic/base/spnic_hwdev.c | 69 ++ drivers/net/spnic/base/spnic_hwdev.h |

[PATCH v1 04/25] net/spnic: introduce event queue

2021-12-17 Thread Yanling Song
This patch introduce event queue to receive response message from hardware or destiation function when a source function send mbox to it. This commit implements the related data structure, initialization and interfaces handling the message. Signed-off-by: Yanling Song --- drivers/net/spnic/base/

[PATCH v1 08/25] net/spnic: add hardware info initialization

2021-12-17 Thread Yanling Song
This commits add hardware info initialization, including that device capability initialization, common feature negotiation, and two interfaces spnic_get_board_info(), spnic_get_mgmt_version() to get hardware info and firmware version. Signed-off-by: Yanling Song --- drivers/net/spnic/base/meson.

[PATCH v1 09/25] net/spnic: support MAC and link event handling

2021-12-17 Thread Yanling Song
This commit adds interfaces to add/remove MAC addresses and registers related ops to struct eth_dev_ops. Furthermore, this commit adds callback to handle link events. Signed-off-by: Yanling Song --- drivers/net/spnic/base/meson.build | 3 +- drivers/net/spnic/base/spnic_hw_cfg.c| 12

[PATCH v1 11/25] net/spnic: add queue pairs context initialization

2021-12-17 Thread Yanling Song
This patch adds the initialization of Tx/Rx queues context and negotiation of NIC features. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_hw_comm.c | 101 drivers/net/spnic/base/spnic_hw_comm.h | 6 + drivers/net/spnic/base/spnic_nic_cfg.c | 76 +++ drivers/net/spnic/base/

[PATCH v1 10/25] net/spnic: add function info initialization

2021-12-17 Thread Yanling Song
This patch mainly implements function info initialization including mtu, link state, port state, port info and cos as well as the definition of the corresponding data structure. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_hw_cfg.c | 43 +++ drivers/net/spnic/base/spnic_hw_cfg.

[PATCH v1 13/25] net/spnic: support Rx congfiguration

2021-12-17 Thread Yanling Song
This patch Rx/Tx configuration including Rx csum offload, LRO, RSS, VLAN filter and VLAN offload. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_nic_cfg.c | 525 + drivers/net/spnic/base/spnic_nic_cfg.h | 387 ++ drivers/net/spnic/spnic_ethde

[PATCH v1 14/25] net/spnic: add port/vport enable

2021-12-17 Thread Yanling Song
This patch adds interface to enable port/vport so that the hardware would receive packets to host. Signed-off-by: Yanling Song --- drivers/net/spnic/spnic_ethdev.c | 46 1 file changed, 46 insertions(+) diff --git a/drivers/net/spnic/spnic_ethdev.c b/drivers/net

[PATCH v1 12/25] net/spnic: support mbuf handling of Tx/Rx

2021-12-17 Thread Yanling Song
This patch defines a wqe data structure for hardware to learn the sge info and offload info of packet. Furthermore, this commit implements the interfaces to fill wqe with DPDK mbuf. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_nic_cfg.c | 23 ++ drivers/net/spnic/base/spnic_nic_

[PATCH v1 18/25] net/spnic: support VLAN filtering and offloading

2021-12-17 Thread Yanling Song
This commit implements vlan_filter_set() and vlan_offload_set() to support VLAN filtering and offloading. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_nic_cfg.c | 8 ++ drivers/net/spnic/spnic_ethdev.c | 121 + 2 files changed, 129 insertions(+) d

[PATCH v1 15/25] net/spnic: support IO packets handling

2021-12-17 Thread Yanling Song
This patch implements rx_pkt_burst() and tx_pkt_burst() to hanld IO packets. For Tx packets, this commit implements parsing ol_flags of mbuf and filling those offload info on wqe so that hardware can process the packets correctly. Furthermore, this commit allocates a mempool to cover scenes with t

[PATCH v1 16/25] net/spnic: add device configure/version/info

2021-12-17 Thread Yanling Song
This commit adds the callbacks to configure queue number and mtu as well as query configuration information and firmware version. Signed-off-by: Yanling Song --- drivers/net/spnic/spnic_ethdev.c | 148 ++- 1 file changed, 146 insertions(+), 2 deletions(-) diff --git

[PATCH v1 19/25] net/spnic: support promiscuous and allmulticast Rx modes

2021-12-17 Thread Yanling Song
This commit implements promiscuous_enable/disable() and allmulticast_enable/disable() to configure promiscuous or allmulticast Rx modes. Note: promiscuous rx mode is only supported by PF. Signed-off-by: Yanling Song --- drivers/net/spnic/spnic_ethdev.c | 156 +++ 1 fi

[PATCH v1 17/25] net/spnic: support RSS configuration update and get

2021-12-17 Thread Yanling Song
This commit implements rss_hash_update and rss_hash_conf_get. Signed-off-by: Yanling Song --- drivers/net/spnic/spnic_ethdev.c | 235 +++ 1 file changed, 235 insertions(+) diff --git a/drivers/net/spnic/spnic_ethdev.c b/drivers/net/spnic/spnic_ethdev.c index c97f15e8

[PATCH v1 21/25] net/spnic: support getting Tx/Rx queues info

2021-12-17 Thread Yanling Song
This patch implements rxq_info_get() and txq_info_get() to support getting queue depth and mbuf pool info of specified Tx/Rx queue. Signed-off-by: Yanling Song --- drivers/net/spnic/spnic_ethdev.c | 21 + 1 file changed, 21 insertions(+) diff --git a/drivers/net/spnic/spnic_

[PATCH v1 20/25] net/spnic: support flow control

2021-12-17 Thread Yanling Song
This commit implements flow control operations to support related syscalls. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_nic_cfg.c | 53 ++ drivers/net/spnic/base/spnic_nic_cfg.h | 25 + drivers/net/spnic/spnic_ethdev.c | 77 +

[PATCH v1 23/25] net/spnic: support VFIO interrupt

2021-12-17 Thread Yanling Song
This commit supports VFIO interrupt for Rx queue and asynchronous event, and implements rx_queue_intr_disable() and rx_queue_intr_enable() to disable/enable the interrupt of specified Rx queue. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_eqs.c | 11 ++ drivers/net/spnic/spnic_e

[PATCH v1 22/25] net/spnic: net/spnic: support xstats statistics

2021-12-17 Thread Yanling Song
This commit implements DFX statistics of physical port, function, Rx queues and Tx queues, which includes MAC statistic, unicast/multicast/broadcast packets statistic, rx_mbuf, tx_busy and etc. Signed-off-by: Yanling Song --- drivers/net/spnic/base/spnic_nic_cfg.c | 118 ++ drivers/net/spnic

[PATCH v1 24/25] net/spnic: support Tx/Rx queue start/stop

2021-12-17 Thread Yanling Song
This commit support starting or stopping a specified Rx/Tx queue For Rx queue: when startting rx queue, mbuf will be allocated and fill rq wqe with mbuf info, then add the qid to indirect table of RSS. if the first rx queue is started, the valid bit in function table will be setted so that the

[PATCH v1 25/25] net/spnic: add doc infrastructure

2021-12-17 Thread Yanling Song
This patch adds doc infrastructure for spnic PMD driver. Signed-off-by: Yanling Song --- MAINTAINERS| 6 +++ doc/guides/nics/features/spnic.ini | 40 doc/guides/nics/spnic.rst | 61 ++ 3 files changed, 107 inserti