Re: [dpdk-dev] [PATCH v5 1/2] vhost: support inflight share memory protocol feature

2019-08-26 Thread Tiwei Bie
On Wed, Aug 07, 2019 at 02:24:59AM +0800, JinYu wrote: > This patch introduces two new messages VHOST_USER_GET_INFLIGHT_FD > and VHOST_USER_SET_INFLIGHT_FD to support transferring a shared > buffer between qemu and backend. > > Firstly, qemu uses VHOST_USER_GET_INFLIGHT_FD to get the > shared buff

Re: [dpdk-dev] [PATCH v4 1/2] app/test: add unit test cases for mbuf library APIs

2019-08-26 Thread Olivier Matz
Hi, Few minor comments below. You can add my ack in the v5 once fixed. On Thu, Aug 08, 2019 at 02:34:19PM +0100, Lavanya Govindarajan wrote: > Added new unit test cases to cover the below > functions defined in rte_mbuf.h > rte_validate_tx_offload, > rte_pktmbuf_alloc_bulk, > rte_pktmbuf_read, >

Re: [dpdk-dev] [PATCH v4 2/2] app/test: add unit test cases to mbuf

2019-08-26 Thread Olivier Matz
On Thu, Aug 08, 2019 at 02:34:20PM +0100, Lavanya Govindarajan wrote: > From: Pallantla Poornima > > Added UT for the below four functions in test_mbuf.c > rte_get_rx_ol_flag_list > rte_get_tx_ol_flag_list > rte_get_rx_ol_flag_name > rte_get_tx_ol_flag_name > > Signed-off-by: Pallantla Poornima

Re: [dpdk-dev] [PATCH] remove unneeded eal header inclusion

2019-08-26 Thread Bruce Richardson
On Mon, Aug 12, 2019 at 12:25:03PM +0100, Wiles, Keith wrote: > > > > On Aug 12, 2019, at 1:53 AM, David Marchand > > wrote: > > > > Restrict this header inclusion to its real users. > > > > Fixes: 028669bc9f0d ("eal: hide shared memory config") > > > > Signed-off-by: David Marchand > > Th

[dpdk-dev] [PATCH 00/12] FIPS improvements

2019-08-26 Thread michaelsh
From: Michael Shamis Added support for ECB mode in TDES and AES. Fixed some bugs in TDES and AES-GCM. Michael Shamis (12): examples/fips: added support for SHA algorithm in FIPS tests examples/fips: added support for TDES ECB mode in FIPS tests examples/fips: added support AES ECB mode in

[dpdk-dev] [PATCH 02/12] examples/fips: added support for TDES ECB mode in FIPS tests

2019-08-26 Thread michaelsh
From: Michael Shamis Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation.c| 1 + examples/fips_validation/fips_validation.h| 7 + .../fips_validation/fips_validation_tdes.c| 7 + examples/fips_validation/main.c | 27 ---

[dpdk-dev] [PATCH 03/12] examples/fips: added support AES ECB mode in FIPS tests

2019-08-26 Thread michaelsh
From: Michael Shamis Signed-off-by: Michael Shamis --- .../fips_validation/fips_validation_aes.c | 1 + examples/fips_validation/main.c | 96 +-- 2 files changed, 91 insertions(+), 6 deletions(-) diff --git a/examples/fips_validation/fips_validation_aes.c b/

[dpdk-dev] [PATCH 01/12] examples/fips: added support for SHA algorithm in FIPS tests

2019-08-26 Thread michaelsh
From: Michael Shamis Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/examples/fips_validation/fips_validation.c b/examples/fips_validation/fips_validation.c index 8d43b267e..80fd482a1

[dpdk-dev] [PATCH 09/12] examples/fips: fix KEY and PT output prints for TDES mode

2019-08-26 Thread michaelsh
From: Michael Shamis Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation.c | 20 1 file changed, 20 insertions(+) diff --git a/examples/fips_validation/fips_validation.c b/examples/fips_validation/fips_validation.c index 91e6d48e7..ba513672e 100644

[dpdk-dev] [PATCH 06/12] examples/fips: set initial IV in AES-GCM if configured only salt value

2019-08-26 Thread michaelsh
From: Michael Shamis Configurated AES-GCM IV may include only salt value which length is 12B. In this case driver should set second part of IV to initial value = 0x1. Signed-off-by: Michael Shamis --- examples/fips_validation/main.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletion

[dpdk-dev] [PATCH 04/12] examples/fips: fix bad return code in fips_test_parse_header()

2019-08-26 Thread michaelsh
From: Michael Shamis Returning correct error value by fips_test_parse_header() allows graceful exit of fips application. Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/fips_validati

[dpdk-dev] [PATCH 11/12] examples/fips: algorithm definition by folder if it's not in file

2019-08-26 Thread michaelsh
From: Michael Shamis In order to find algorithm used the folder name if it is not defined within the file. Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation.c | 42 ++ 1 file changed, 42 insertions(+) diff --git a/examples/fips_validation/fips_vali

[dpdk-dev] [PATCH 07/12] examples/fips: keep digest after crypto text

2019-08-26 Thread michaelsh
From: Michael Shamis Fix of GCM FIPS bug: ICV was not copied after the crypto text in decryption operation so SAM failed to check authentication in GCM mode. Signed-off-by: Michael Shamis --- examples/fips_validation/main.c | 4 1 file changed, 4 insertions(+) diff --git a/examples/fips_

[dpdk-dev] [PATCH 05/12] examples/fips: AES-GCM vectors will use aead structure

2019-08-26 Thread michaelsh
From: Michael Shamis Before the fix AES-GCM vectores were defined by cipher_auth structure but handled by aead structure and that leads to FIPS test failure. Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation_gcm.c | 16 1 file changed, 8 insertions(+),

[dpdk-dev] [PATCH 10/12] examples/fips: supported IV, PT and CT init for TDES ECB mode

2019-08-26 Thread michaelsh
From: Michael Shamis Signed-off-by: Michael Shamis --- examples/fips_validation/main.c | 66 + 1 file changed, 50 insertions(+), 16 deletions(-) diff --git a/examples/fips_validation/main.c b/examples/fips_validation/main.c index 1d621f60a..3eda0f554 100644 ---

[dpdk-dev] [PATCH 08/12] examples/fips: AES-GCM decryption vectors fix

2019-08-26 Thread michaelsh
From: Michael Shamis AES-GCM CAVS vectors for decryption set PTlen (plain text length) but provide crypto text and application expected CTlen to be not null. Now we assign PTlen to CTlen in decryption scenario and it allows to application to handle AES-GCM decryption vectors. Signed-off-by: Mich

[dpdk-dev] [PATCH 12/12] examples/fips: erroneous overwrite of PLAINTEXT after DECRYPT

2019-08-26 Thread michaelsh
From: Michael Shamis fix erroneous overwrite of PLAINTEXT-line after [DECRYPT] tag Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/examples/fips_validation/fips_validation.c b/examples

Re: [dpdk-dev] [PATCH 1/2] timer: use rte_mp_msg to pass TSC hz to secondary procs

2019-08-26 Thread Bruce Richardson
On Thu, Aug 15, 2019 at 04:27:35AM -0700, Jim Harris wrote: > rte_eal_init() is much faster in secondary processes since > hugepages don't need to be zeroed. But there's still > non-trivial delays in the timer subsystem initialization > due to the 100ms sleep used to calculate TSC hz. So use > th

Re: [dpdk-dev] [PATCH 0/2] IXGBE vPMD changes for aarch64

2019-08-26 Thread Ferruh Yigit
On 8/26/2019 3:52 AM, Ruifeng Wang (Arm Technology China) wrote: > Hi Xiaolong, > >> -Original Message- >> From: Ye Xiaolong >> Sent: Sunday, August 25, 2019 09:34 >> To: Ruifeng Wang (Arm Technology China) >> Cc: jer...@marvell.com; Gavin Hu (Arm Technology China) >> ; dev@dpdk.org; Hon

[dpdk-dev] [PATCH 02/63] net/ice/base: add function to get FW mode

2019-08-26 Thread Qi Zhang
Add a helper function to get FW mode. The FW mode can be normal, debug, recovery or rollback. This makes ice_is_fw_in_rec_mode redundant, so remove it. Signed-off-by: Anirudh Venkataramanan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_common.c | 23 +

[dpdk-dev] [PATCH 03/63] net/ice/base: add support for NVM rollback detection

2019-08-26 Thread Qi Zhang
This patch adds code to detect NVM rollback. The rollback detection is done as part of the HW init flow. When NVM rollback is detected, a warning message is printed along with the FW/NVM version data. To do this, this patch adds a helper function ice_get_nvm_version. Also, a pointer to hw->nvm is

[dpdk-dev] [PATCH 01/63] net/ice/base: enhance NVM read

2019-08-26 Thread Qi Zhang
Add an option to read NVM from flash directly. Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_adminq_cmd.h | 22 ++ drivers/net/ice/base/ice_dcb.h| 1 + drivers/net/ice/base/ice_nvm.c| 12 +--- 3 files changed

[dpdk-dev] [PATCH 05/63] net/ice/base: store number of functions for the device

2019-08-26 Thread Qi Zhang
Store the number of functions the device has. This value can be very useful when calculating how to best allocate global resources. Signed-off-by: Kevin Scott Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_common.c | 6 +- drivers/net/ice/base/ice_

[dpdk-dev] [PATCH 04/63] net/ice/base: add support to init RXDID descs fields

2019-08-26 Thread Qi Zhang
Add new switch cases to init RXDID descs MD fields. Signed-off-by: Junfeng Guo Signed-off-by: Haiyue Wang Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_common.c| 91 drivers/net/ice/base/ice_lan_tx_rx.h | 6 ++

[dpdk-dev] [PATCH 00/63] net/ice/base: update base code

2019-08-26 Thread Qi Zhang
Key Features: 1) Add PPPoE, GTP protocol support for switch, FDIR, RSS 2) Add Flexible Descriptor support. 3) Improved package download. 4) Improved RSS to support inner header 5) Improved recipe management for switch rule Qi Zhang (63): net/ice/base: enhance NVM read net/ice/base: add funct

[dpdk-dev] [PATCH 06/63] net/ice/base: add read PBA module function

2019-08-26 Thread Qi Zhang
New support function added - ice_get_pfa_module_tlv(), the driver or other modules can make use of this function to read the pfa area. Signed-off-by: Tarun Singh Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_common.c | 66 ++

[dpdk-dev] [PATCH 08/63] net/ice/base: remove debug code

2019-08-26 Thread Qi Zhang
Remove firmware logging debug code. Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_adminq_cmd.h | 88 -- drivers/net/ice/base/ice_common.c | 223 -- drivers/net/ice/base/ice_common.h | 1 - drivers/n

[dpdk-dev] [PATCH 07/63] net/ice/base: correct argument port info

2019-08-26 Thread Qi Zhang
correct argument pi(port_info) passed in function ice_sched_get_first_node(), otherwise it will return the incorrect node. functions ice_sched_get_agg_node and ice_sched_cfg_sibl_node_prio: change argument from hw to pi for it to align to correct port. Moved saving tc node bw info from hardware s

[dpdk-dev] [PATCH 09/63] net/ice/base: add SFF EEPROM AQ Command

2019-08-26 Thread Qi Zhang
read/write module eeprom on i2c bus. Signed-off-by: Scott W Taylor Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_adminq_cmd.h | 29 ++ drivers/net/ice/base/ice_common.c | 46 +++ drivers/net/ice/b

[dpdk-dev] [PATCH 10/63] net/ice/base: improve debug print message

2019-08-26 Thread Qi Zhang
Improve debug print message. Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_common.c | 41 +++-- drivers/net/ice/base/ice_controlq.c | 10 + 2 files changed, 27 insertions(+), 24 deletions(-) diff --git a/driver

[dpdk-dev] [PATCH 12/63] net/ice/base: add helper functions for PHY caching

2019-08-26 Thread Qi Zhang
Add additional functions to aide in caching PHY configuration. In order to cache the initial modes, we need to determine the operating mode based on capabilities. Add helper functions for flow control and FEC to take a set of capabilities and return the operating mode matching those capabilities

[dpdk-dev] [PATCH 11/63] net/ice/base: add capabilities when in safe mode

2019-08-26 Thread Qi Zhang
The dynamic device personalization (DDP) file download onto the device can fail, and when this happens the driver has to transition to "safe mode" where only basic functionality is possible. The device though doesn't understand safe mode, and so the opcodes to discover device/function capabilities

[dpdk-dev] [PATCH 15/63] net/ice/base: add NVM pkg flag

2019-08-26 Thread Qi Zhang
Add flag for case where active package has been loaded from NVM. Signed-off-by: Ashish Shah Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flex_pipe.c | 1 + drivers/net/ice/base/ice_type.h | 1 + 2 files changed, 2 insertions(+) diff --git a/driv

[dpdk-dev] [PATCH 13/63] net/ice/base: add support for reading REPC statistics

2019-08-26 Thread Qi Zhang
The GLV_REPC register contains statistics for tracking received packets that are discarded due to certain errors. This register behaves differently from some of the other related statistics registers in two ways. First, it contains two 16bit statistics, and thus cannot be read as a 32bit or 40bit

[dpdk-dev] [PATCH 16/63] net/ice/base: move VSI to VSI group

2019-08-26 Thread Qi Zhang
Add function to add a VSI to a given VSIG and update package with this entry. The usual flow in XLT management would iterate through all characteristics of the input VSI and create a new VSIG and TCAMs till a matching characteristic is found. When a match is found the VSI is moved into a matching V

[dpdk-dev] [PATCH 18/63] net/ice/base: resolve static analysis issues

2019-08-26 Thread Qi Zhang
Coverity complains first_free can be -1 resulting in a negative shift left when k equals 0; i.e. the expression 1 << (first_free - k). Fix this by explicitly checking for this case. Cc: sta...@dpdk.org Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- dr

[dpdk-dev] [PATCH 14/63] net/ice/base: adjust DCB INIT for SW mode

2019-08-26 Thread Qi Zhang
Adjust ice_init_dcb to set the is_sw_lldp boolean in the case where the FW has been detected to be in an untenable state such that the driver should forcibly make sure it is off. This will ensure that the FW is in a known state. Signed-off-by: Dave Ertman Signed-off-by: Paul M Stillwell Jr Sign

[dpdk-dev] [PATCH 17/63] net/ice/base: enable masking for RSS and FD field vectors

2019-08-26 Thread Qi Zhang
Allow masking per word field on RSS and FD field vectors. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flex_pipe.c | 540 ++- drivers/net/ice/base/ice_flex_pipe.h | 5 + drivers/net/ice/base/

[dpdk-dev] [PATCH 19/63] net/ice/base: fix memory leak issue

2019-08-26 Thread Qi Zhang
Need to free new ice_vsig_prof if no valid ptype can be found. Fixes: d935fb5bb091 ("net/ice/base: fix packet type size") Cc: sta...@dpdk.org Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flex_pipe.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletio

[dpdk-dev] [PATCH 20/63] net/ice/base: check root pointer for validity

2019-08-26 Thread Qi Zhang
ice_sched_get_tc_node uses pi->root without checking for NULL. Add a check to prevent NULL pointer dereference. Signed-off-by: Anirudh Venkataramanan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_sched.c | 2 +- 1 file changed, 1 insertion(+), 1 deleti

[dpdk-dev] [PATCH 22/63] net/ice/base: correct overrun Coverty hit

2019-08-26 Thread Qi Zhang
Added boundary check for layer_num in function ice_sched_rm_rl_profile, and ice_sched_add_rl_profile. Cc: sta...@dpdk.org Tarun Singh Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_sched.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) dif

[dpdk-dev] [PATCH 21/63] net/ice/base: fix type-mismatch

2019-08-26 Thread Qi Zhang
The iterators are u8, but the values being compared against are u16s. It may not ever be the case that the comparison is against a value larger than the upper bound of the smaller type, but code analysis tools don't know that. Fixes: 93e84b1bfc92 ("net/ice/base: add basic Tx scheduler") Cc: sta...

[dpdk-dev] [PATCH 23/63] net/ice/base: update Boot Configuration Section read of NVM

2019-08-26 Thread Qi Zhang
Boot Configuration Section Block has been moved to the Preserved Field Area (PFA) of NVM. So, this patch updates the NVM reads that involve Boot Configuration Section. Signed-off-by: Md Fahad Iqbal Polash Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_d

[dpdk-dev] [PATCH 24/63] net/ice/base: add support for NVM access commands

2019-08-26 Thread Qi Zhang
Add a new structure, ice_nvm_access, used to request access to read or write certain NVM related registers. The structure is used by NVM Update to request read or write of specific NVM registers in order to perform updates. Additionally, there is a command to request the driver "features" structu

[dpdk-dev] [PATCH 27/63] net/ice/base: improve switch advanced rule

2019-08-26 Thread Qi Zhang
Correct algorithm to detect free field vector indexes to be used for recipe line result values. The code now scans all recipes that are associated with all the field vector being targed for a new recipe to detect which result indexes are unused. Change recipe chaining code to place recipe on a sin

[dpdk-dev] [PATCH 25/63] net/ice/base: add support for GTP and PPPoE protocols

2019-08-26 Thread Qi Zhang
Added switch protocol segments for both GTP and PPPOE protocols. Added RSS protocol segments for both GTP and PPPOE protocols. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flow.c | 105 ++-

[dpdk-dev] [PATCH 26/63] net/ice/base: add locks for flow functions

2019-08-26 Thread Qi Zhang
Wrap functions to search for flow profiles, add and remove RSS configurations with flow profile locks. This is to ensure that if several VFs and PFs are disabled at the same time functions that access the flow profile lists are thread safe. Signed-off-by: Vignesh Sridhar Signed-off-by: Paul M Sti

[dpdk-dev] [PATCH 28/63] net/ice/base: move function declaration

2019-08-26 Thread Qi Zhang
Improve code orgnization, move declaration of ice_cfg_tc_nod_bw_alloc and ice_cfg_rl_burst_size from ice_common.h to ice_nvm.h. Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_common.h | 8 drivers/net/ice/base/ice_nvm.h| 4 drivers/net/

[dpdk-dev] [PATCH 29/63] net/ice/base: add 16-byte Flex Rx Descriptor

2019-08-26 Thread Qi Zhang
Add 16-byte Flex RX descriptor structure definition. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_lan_tx_rx.h | 28 ++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/drivers/net/ice/b

[dpdk-dev] [PATCH 32/63] net/ice/base: add more opcode and macros

2019-08-26 Thread Qi Zhang
Add more opcode and macros according to hardware spec. 1. Add opcode for the NVM Update EMPR command. 2. Add opcode for NVM save factory settings 3. Add opcode for NVM Write/Write Activate calls 4. Add loopback reporting to get link response macros 5. Add link event defines macros Signed-off-by:

[dpdk-dev] [PATCH 33/63] net/ice/base: set status when global cfg lock is unavailable

2019-08-26 Thread Qi Zhang
To download the DDP file to the device, a PF first has to grab the global configuration lock. When a PF can't grab this lock, set hw->pkg_dwnld_status to ICE_AQ_RC_EEXIST. Signed-off-by: Anirudh Venkataramanan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/

[dpdk-dev] [PATCH 30/63] net/ice/base: add 32-byte Flex Rx Desc for Comms package

2019-08-26 Thread Qi Zhang
Add 32-byte Flex RX Descriptor structure definition to match the Comms package's design. Signed-off-by: Junfeng Guo Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_lan_tx_rx.h | 40 1 file changed, 40 insertions(+) d

[dpdk-dev] [PATCH 31/63] net/ice/base: update flag bits to current specification

2019-08-26 Thread Qi Zhang
Currently the VLAN ice_flg64_bits are off by 1. Fix this by setting the ICE_FLG_EVLAN_x8100 flag to 14, which also updates ICE_FLG_EVLAN_x9100 to 15 and ICE_FLG_VLAN_x8100 to 16. Signed-off-by: Brett Creeley Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ic

[dpdk-dev] [PATCH 36/63] net/ice/base: add support for not locking sideband queue

2019-08-26 Thread Qi Zhang
For certain PTP clock adjustments, there is a use case for locking the sideband queue at a higher level and performing an atomic series of operations while the sideband queue is locked. To accommodate this use case, split ice_sw_send_cmd() into a version that takes the lock and a version that does

[dpdk-dev] [PATCH 37/63] net/ice/base: associate recipes by profile type

2019-08-26 Thread Qi Zhang
Change recipe to profile association logic to determine the profile type to determine if a profile is compatible with the rule being added. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flex_pipe.c | 87 +++

[dpdk-dev] [PATCH 34/63] net/ice/base: initialize driver NVM data earlier

2019-08-26 Thread Qi Zhang
The driver detects and warns about FW rollback mode before getting the NVM version (through ice_init_nvm) which results in "0.00 0x0 0.0.0" being printed. Fix this by calling ice_init_nvm earlier. This could have been fixed by moving ice_print_rollback_msg as well, but it made more sense to move i

[dpdk-dev] [PATCH 35/63] net/ice/base: add function to configure Tx AQ command

2019-08-26 Thread Qi Zhang
This function is needed by the driver to move PSM leaf nodes to a new parent. Additionally, add struct ice_aqc_move_txqs to struct ice_aq_desc so driver code can access it. Signed-off-by: Ben Shelton Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_admin

[dpdk-dev] [PATCH 40/63] net/ice/base: improve switch chained recipe

2019-08-26 Thread Qi Zhang
When updating switch database with chained recipes from firmware, where a null pointer derefence was occurring due to looking into a sub-recipe entry which is not filled in. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_protoc

[dpdk-dev] [PATCH 39/63] net/ice/base: update UDP tunnel switch training packets

2019-08-26 Thread Qi Zhang
Change UDP tunnel training packets for the switch to work for both Geneve and VXLAN cases. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_switch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/

[dpdk-dev] [PATCH 38/63] net/ice/base: return switch error on invalid match criteria

2019-08-26 Thread Qi Zhang
Fixing ice_add_adv_rule to return an error when an invalid match criteria is requested by the caller. This happens when the protocol and offset pair is not supported by the package. This change required a fix for the offset in the VXLAN GPE header, and also found an issue with NVGRE where the pack

[dpdk-dev] [PATCH 42/63] net/ice/base: add routine for tunnel port query

2019-08-26 Thread Qi Zhang
Add ice_get_open_tunnel_port routine, which can be used to find an open tunnel port for creating switch and flow director training packets. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flex_pipe.c | 22 ++

[dpdk-dev] [PATCH 41/63] net/ice/base: move and add some help function and macros

2019-08-26 Thread Qi Zhang
ice_ilog2 computes the integer log base 2 of the value (0 is undefined) ice_is_pow2 returns true if the value is a power of 2 (0 is not a power of 2). Move the functions to ice_type.h and wrap them so that components can strip or conditionally-compile out these implementations in lieu of their own

[dpdk-dev] [PATCH 46/63] net/ice/base: add RSS support for PPPoE and GTPU

2019-08-26 Thread Qi Zhang
Added RSS support for PPPoE with inner TCP and UDP. Added RSS support for GTPU with IPv4 and IPv6. Signed-off-by: Zhirun Yan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flow.c | 38 -- drivers/net/ice/base/ice_flow

[dpdk-dev] [PATCH 43/63] net/ice/base: ptype group consolidation

2019-08-26 Thread Qi Zhang
This patch is an optimization to decrease the number of TCAM entries used in the profile blocks, especially for RSS. To be most effective this will also require a package change in order to decrease the number of PTYPE groups necessary to program RSS, FD and ACL rules. Signed-off-by: Dan Nowlin S

[dpdk-dev] [PATCH 48/63] net/ice/base: fix flag settings in AQ call

2019-08-26 Thread Qi Zhang
Removed setting Read flag in the Get Allocated Resource Descriptors AQ command (0x020A). The read flag is not required for this command and causes the FW to return an error. Fixes: d781ccbdd15d ("net/ice/base: add functions to get allocated resources") Cc: sta...@dpdk.org Signed-off-by: Dan Nowli

[dpdk-dev] [PATCH 47/63] net/ice/base: remove unnecessary conditional check

2019-08-26 Thread Qi Zhang
There is no reason to do this conditional check before the assignment so simply remove it. Signed-off-by: Bruce Allan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_switch.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/n

[dpdk-dev] [PATCH 45/63] net/ice/base: packet encapsulation for RSS

2019-08-26 Thread Qi Zhang
RSS configurations calls currently support only non-tunneled packets, which uses outer-first IPs. Adding another call to configure RSS for tunneled packets which will enable hashing on inner-last IP. RSS hash will only be done on the innermost IP. - Update RSS configuration calls to take packet seg

[dpdk-dev] [PATCH 49/63] net/ice/base: refactor removal of VLAN promiscuous rules

2019-08-26 Thread Qi Zhang
Currently ice_clear_vsi_promisc() detects if the VLAN ID sent is not 0 and sets the recipe_id to ICE_SW_LKUP_PROMISC_VLAN in that case and ICE_SW_LKUP_PROMISC if the VLAN_ID is 0. However this doesn't allow VLAN 0 promiscuous rules to be removed, but they can be added. Fix this by checking if the p

[dpdk-dev] [PATCH 44/63] net/ice/base: fix for RSS hash on inner UDP port

2019-08-26 Thread Qi Zhang
Before this patch, only outer IP with inner UDP port can appear in RSS hash, because the extraction sequence uses outer IP protocol ID with Inner UDP protocol ID. ICE_PROT_UDP_OF always extracts the TUNNELED UDP port values (i.e., 4789 for VXLAN). ICE_PROT_UDP_IL_OR_S will extract NON-TUNNELED UDP

[dpdk-dev] [PATCH 51/63] net/ice/base: update switch training packets with open ports

2019-08-26 Thread Qi Zhang
This patch updates UDP tunneled training packets with an appropriate UDP dest port. For the correct profile to be chosen, an open tunnel port must be included in the training packet. Added GENEVE tunnel labels in the test package in order to test GENEVE tunnel rule creation. Signed-off-by: Dan No

[dpdk-dev] [PATCH 50/63] net/ice/base: maximize switch recipe words per line

2019-08-26 Thread Qi Zhang
Remove grouping rules to maximize the number of words placed into a recipe line. This will allow more recipes to be added by reducing the number of result indices required. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_switch.

[dpdk-dev] [PATCH 52/63] net/ice/base: remove unnecessary dummy packet finding

2019-08-26 Thread Qi Zhang
We don't need to find a dummy packet when removing a rule so remove the call to get the dummy packet. This also obviates some variables so remove them also. Also reduce the scope of rule_buf_sz. Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_switch.c |

[dpdk-dev] [PATCH 55/63] net/ice/base: update to register definition file

2019-08-26 Thread Qi Zhang
Added register definitions for GL_MDCK_TX_TDPU and GL_MDET_TX_TDPU. Signed-off-by: Bruce Allan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_hw_autogen.h | 34 ++ 1 file changed, 34 insertions(+) diff --git a/drivers/ne

[dpdk-dev] [PATCH 53/63] net/ice/base: remove unnecessary if branch

2019-08-26 Thread Qi Zhang
We are already in the branch "if (fm_list->vsi_count == 1)" no need to exit and re-enter. Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_switch.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/net/ice/base/ice_switch.c b/drivers/net/ice/ba

[dpdk-dev] [PATCH 57/63] net/ice/base: delay less

2019-08-26 Thread Qi Zhang
Shorten the delay for SQ responses, but increase the number of loops. Max delay time is unchanged, but some operations complete much more quickly. In the process, add a new define to make the delay count and delay time more explicit, and simplify the code so it's the same for both switch and NIC m

[dpdk-dev] [PATCH 59/63] net/ice/base: remove Rx flex descriptor programming

2019-08-26 Thread Qi Zhang
Removing Rx flex descriptor metadata and flag programming from shared code. As per HAS these registers cannot be written to as they are read only. While non-secure NVMs allow write access to them, secure images will not. The programming for all fields per RxDID is now handled in the comms package.

[dpdk-dev] [PATCH 56/63] net/ice/base: replace open-code duplication

2019-08-26 Thread Qi Zhang
Use BIT_ULL() instead of ICE_FLOW_HASH_FLD() which does the same bit shift operation. Signed-off-by: Bruce Allan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flow.h | 24 +++- 1 file changed, 11 insertions(+), 13 deletions(-) diff

[dpdk-dev] [PATCH 54/63] net/ice/base: correct abbreviations

2019-08-26 Thread Qi Zhang
Correct abbreviation issues found by running abbrevcheck. Signed-off-by: Tony Nguyen Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_common.c| 4 ++-- drivers/net/ice/base/ice_controlq.c | 2 +- drivers/net/ice/base/ice_controlq.h | 2 +- driver

[dpdk-dev] [PATCH 58/63] net/ice/base: add AQC get link topology handle support

2019-08-26 Thread Qi Zhang
Add AQC get link topology handle support. This is needed to determine Direct Attach (DA) or backplane media type for PHY types that support either. Get link topology handle cage node type request can be used to determine if a cage is present or not. If a cage is present for PHY types that supports

[dpdk-dev] [PATCH 60/63] net/ice/base: enable RSS with ether layer for PPPoE

2019-08-26 Thread Qi Zhang
Add these two ptype(MAC_PPPOD_PAY and MAC_PPPOE_PAY) in outer mac bitmap, so it can hash for outer mac. Signed-off-by: Zhirun Yan Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flow.c | 8 ++-- drivers/net/ice/base/ice_flow.h | 5 + 2 files chan

Re: [dpdk-dev] [PATCH 0/2] IXGBE vPMD changes for aarch64

2019-08-26 Thread Ruifeng Wang (Arm Technology China)
> -Original Message- > From: Ferruh Yigit > Sent: Monday, August 26, 2019 18:40 > To: Ruifeng Wang (Arm Technology China) ; Ye > Xiaolong > Cc: jer...@marvell.com; Gavin Hu (Arm Technology China) > ; dev@dpdk.org; Honnappa Nagarahalli > ; nd ; Kevin Traynor > ; Luca Boccassi > Subject:

[dpdk-dev] [PATCH 62/63] net/ice/base: update profile to recipe bitmap array

2019-08-26 Thread Qi Zhang
Correctly update profile to recipe bitmap array after adding and associating recipes. This fixes an issue where determining unused recipe result index slots was incorrect. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_switch.c

[dpdk-dev] [PATCH 63/63] net/ice/base: ignore inverse switch recipes

2019-08-26 Thread Qi Zhang
When looking for an existing recipes, never choose an inverse recipe as these are used for anti-spoofing. Choosing inverse recipes for source MAC address rules was causing errors while adding the rule. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- dri

[dpdk-dev] [PATCH 61/63] net/ice/base: add GENEVE offset

2019-08-26 Thread Qi Zhang
Add Geneve offset for tunneled packets to allow dummy packets to be properly created. Signed-off-by: Doug Dziggel Signed-off-by: Paul M Stillwell Jr Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_switch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ice/base/ice_swit

[dpdk-dev] [PATCH v1] net/memif: optimized with one-way barrier

2019-08-26 Thread Phil Yang
Using 'rte_mb' to synchronize the shared ring head/tail between producer and consumer will stall the pipeline and damage performance on the weak memory model platforms, such like aarch64. Meanwhile update the shared ring head and tail are observable and ordered between CPUs on IA. Optimized this f

Re: [dpdk-dev] [PATCH v1] net/memif: optimized with one-way barrier

2019-08-26 Thread Phil Yang (Arm Technology China)
+ Gavin > -Original Message- > From: dev On Behalf Of Phil Yang > Sent: Monday, August 26, 2019 7:00 PM > To: jgraj...@cisco.com; dev@dpdk.org > Cc: tho...@monjalon.net; jer...@marvell.com; Honnappa Nagarahalli > ; damar...@cisco.com; nd > > Subject: [dpdk-dev] [PATCH v1] net/memif: opti

[dpdk-dev] [PATCH v1] net/ixgbe: fix Rx/Tx queue interrupt for X552/557 devices

2019-08-26 Thread junyux . jiang
From: Jiang JunyuX X552/557 devices don't map interrupt vector before enabling Rx/Tx queue interrupt. Fixes: d2e72774e58c ("ixgbe/base: support X550") Signed-off-by: Jiang JunyuX --- drivers/net/ixgbe/ixgbe_ethdev.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/driver

Re: [dpdk-dev] [PATCH] net/null: replace BSD text with SPDX id

2019-08-26 Thread Ferruh Yigit
On 8/26/2019 4:15 AM, Takanari Hayama wrote: > > On 2019/08/26 10:07, Tetsuya Mukawa wrote: >> 2019年8月17日(土) 5:43 Stephen Hemminger : >>> >>> Replace the boilerplate BSD license text with the equivalent >>> SPDX license id. >>> >>> Signed-off-by: Stephen Hemminger >>> Acked-by: Tetsuya Mukawa >

[dpdk-dev] [PATCH v4 01/11] crypto/nitrox: add Nitrox build and doc skeleton

2019-08-26 Thread Nagadheeraj Rottela
Add bare minimum Nitrox PMD library and doc build infrastructure and claim responsibility by updating the maintainers file. Signed-off-by: Nagadheeraj Rottela --- MAINTAINERS | 7 ++ config/common_base | 5 + doc/guides

[dpdk-dev] [PATCH v4 00/11] add Nitrox crypto device support

2019-08-26 Thread Nagadheeraj Rottela
Add the Nitrox PMD to support Nitrox crypto device. --- v4: * Added wmb between pending_count store and sr pointer store in enqueue operation. This is required to safely read sr in dequeue operation. v3: * Add SHA224 and SHA256 HMAC algorithms v2: * Fix compilation error on AARCH64. * Fix check

[dpdk-dev] [PATCH v4 02/11] crypto/nitrox: add PCI probe and remove routines

2019-08-26 Thread Nagadheeraj Rottela
Add pci probe, remove and hardware init routines. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/Makefile| 1 + drivers/crypto/nitrox/meson.build | 1 + drivers/crypto/nitrox/nitrox_csr.h| 28 + drivers/crypto/nitrox/nitrox_device.c | 105 ++

[dpdk-dev] [PATCH v4 03/11] crypto/nitrox: create Nitrox symmetric cryptodev

2019-08-26 Thread Nagadheeraj Rottela
Add Nitrox symmetric cryptodev with no operations. Cryptodev operations will be added in the next set of patches. Also, registered nitrox log type. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/Makefile| 2 + drivers/crypto/nitrox/meson.build | 2 + drivers/crypto/ni

[dpdk-dev] [PATCH v4 05/11] crypto/nitrox: add software queue management functionality

2019-08-26 Thread Nagadheeraj Rottela
Add software queue management code corresponding to queue pair setup and release functions. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/Makefile| 2 + drivers/crypto/nitrox/meson.build | 2 + drivers/crypto/nitrox/nitrox_qp.c | 74 +++

[dpdk-dev] [PATCH v4 04/11] crypto/nitrox: add basic symmetric cryptodev operations

2019-08-26 Thread Nagadheeraj Rottela
Add the following cryptodev operations, - dev_configure - dev_start - dev_stop - dev_close - dev_infos_get Signed-off-by: Nagadheeraj Rottela --- doc/guides/cryptodevs/features/nitrox.ini | 38 doc/guides/cryptodevs/nitrox.rst| 37 +++ drivers/crypto/ni

[dpdk-dev] [PATCH v4 06/11] crypto/nitrox: add hardware queue management functionality

2019-08-26 Thread Nagadheeraj Rottela
Add hardware queue management code corresponding to queue pair setup and release functions. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/nitrox_csr.h | 13 drivers/crypto/nitrox/nitrox_hal.c | 151 + drivers/crypto/nitrox/nitrox_hal.h | 1

[dpdk-dev] [PATCH v4 07/11] crypto/nitrox: add session management operations

2019-08-26 Thread Nagadheeraj Rottela
Add all the session management operations. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/nitrox_sym.c | 323 - drivers/crypto/nitrox/nitrox_sym_ctx.h | 85 + 2 files changed, 405 insertions(+), 3 deletions(-) create mode 100644 drivers

[dpdk-dev] [PATCH v4 08/11] crypto/nitrox: add burst enqueue and dequeue operations

2019-08-26 Thread Nagadheeraj Rottela
Add burst enqueue and dequeue operations along with interface for symmetric request manager. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/nitrox_qp.h | 60 +++ drivers/crypto/nitrox/nitrox_sym.c| 128 +- drivers/crypto/nitrox/nitrox_sy

[dpdk-dev] [PATCH v4 09/11] crypto/nitrox: add cipher auth crypto chain processing

2019-08-26 Thread Nagadheeraj Rottela
Add cipher auth crypto chain processing functionality in symmetric request manager. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/nitrox_sym_reqmgr.c | 427 +- 1 file changed, 425 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/nitrox/nitrox_

[dpdk-dev] [PATCH v4 10/11] test/crypto: add tests for Nitrox PMD

2019-08-26 Thread Nagadheeraj Rottela
Add hmac(sha1), cbc(aes) authenc tests in the test mechanism. Signed-off-by: Nagadheeraj Rottela --- app/test/test_cryptodev.c | 52 ++ app/test/test_cryptodev.h | 1 + app/test/test_cryptodev_aes_test_vectors.h | 30 +++-

[dpdk-dev] [PATCH v4 11/11] crypto/nitrox: add SHA224 and SHA256 HMAC algorithms

2019-08-26 Thread Nagadheeraj Rottela
Add SHA224 and SHA256 HMAC algorithms and it's corresponding tests. Signed-off-by: Nagadheeraj Rottela --- app/test/test_cryptodev_aes_test_vectors.h | 18 +++ doc/guides/cryptodevs/features/nitrox.ini | 2 ++ drivers/crypto/nitrox/nitrox_sym.c | 6 drivers

  1   2   >