Re: [dpdk-dev] [PATCH v4 3/5] vhost: add apis for datapath configuration

2018-03-31 Thread Maxime Coquelin
On 03/10/2018 11:01 AM, Zhihong Wang wrote: This patch adds APIs for datapath configuration. The did of the vhost-user socket can be set to identify the backend device, in this case each vhost-user socket can have only 1 connection. The did is set to -1 by default when the software datapath is

Re: [dpdk-dev] [PATCH v4 4/5] vhost: adapt vhost lib for selective datapath

2018-03-31 Thread Maxime Coquelin
On 03/10/2018 11:01 AM, Zhihong Wang wrote: This patch adapts vhost lib for selective datapath by calling device ops at the corresponding stage. Signed-off-by: Zhihong Wang --- Changes in v4: 1. Remove the "engine" concept in the lib. --- Changes in v2: 1. Ensure negotiated capabilitie

Re: [dpdk-dev] [PATCH v4 2/5] vhost: support selective datapath

2018-03-31 Thread Maxime Coquelin
On 03/10/2018 11:01 AM, Zhihong Wang wrote: + uint64_t *size); +/* Device ops */ +struct rte_vdpa_dev_ops { + vdpa_dev_queue_num_get_t queue_num_get; + vdpa_dev_feature_get_tfeature_get; + vdpa_dev_feature_get_tprotocol_feature_get; I would prefer them

Re: [dpdk-dev] [PATCH v4 5/5] vhost: add apis for live migration

2018-03-31 Thread Maxime Coquelin
On 03/10/2018 11:01 AM, Zhihong Wang wrote: This patch adds APIs to enable live migration for non-builtin data paths. At src side, last_avail/used_idx from the device need to be set into the virtio_net structure, and the log_base and log_size from the virtio_net structure need to be set into t

[dpdk-dev] [PATCH v4 3/7] crypto/virtio: core code of virtio crypto PMD

2018-03-31 Thread Jay Zhou
The virtio crypto device has two types of queues, data queue and control queue. It has one data queue at least and has one and only one control queue. For example, if a virtio crypto device has N queues, then [0, N-2] is the data queue index, N-1 is the control queue index. The virtio crypto PMD pr

[dpdk-dev] [PATCH v4 5/7] doc: add virtio crypto PMD guide

2018-03-31 Thread Jay Zhou
Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- doc/guides/cryptodevs/features/virtio.ini | 26 +++ doc/guides/cryptodevs/index.rst | 1 + doc/guides/cryptodevs/virtio.rst | 117 ++ 3 files changed, 144 insertions(+)

[dpdk-dev] [PATCH v4 0/7] crypto: add virtio poll mode driver

2018-03-31 Thread Jay Zhou
This patch series introduce virtio crypto poll mode driver. Since it is limited by the vhost crypto backend of the virtio-crypto, this patch series only supports a limited subset of crypto services. Only the following algorithms are tested: Cipher algorithms: - RTE_CRYPTO_CIPHER_AES_CBC (128-bi

[dpdk-dev] [PATCH v4 1/7] crypto/virtio: add virtio related fundamental functions

2018-03-31 Thread Jay Zhou
Since there does not have the common virtio library, we have to put these files here. They are basically the same with virtio net related files with some minor changes. Meanwhile, adding virtio crypto PMD related release note for 18.05. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: F

[dpdk-dev] [PATCH v4 2/7] crypto/virtio: add crypto related session structure

2018-03-31 Thread Jay Zhou
This structure will be used in the following patches, especially at creating and destroying crypto sessions. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- drivers/crypto/virtio/virtio_crypto_algs.h | 27 +++ 1 file changed, 27 insertions(+) cre

[dpdk-dev] [PATCH v4 6/7] test/crypto: add function tests for virtio crypto PMD

2018-03-31 Thread Jay Zhou
Only RTE_CRYPTO_CIPHER_AES_CBC cipher algorithm are tested as unit test, it is supported both by the cryptodev-backend-builtin and cryptodev-vhost-user of qemu side. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- test/test/test_cryptodev.c | 49

[dpdk-dev] [PATCH v4 4/7] crypto/virtio: add makefile

2018-03-31 Thread Jay Zhou
The virtio crypto PMD driver can be compiled now. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- drivers/crypto/Makefile| 1 + drivers/crypto/virtio/Makefile | 31 ++ .../virtio/rte_pmd_virtio_crypto_v

[dpdk-dev] [PATCH v4 7/7] MAINTAINERS: add myself as virtio crypto PMD maintainer

2018-03-31 Thread Jay Zhou
Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- MAINTAINERS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 75d3e92..24c5af8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -718,6 +718,12 @@ F: drivers/crypto/snow3g/ F: doc/guides/

Re: [dpdk-dev] [PATCH v4 0/7] crypto: add virtio poll mode driver

2018-03-31 Thread Zhoujian (jay)
I find that my dpdk-next-crypto repo is not the newest, I'll send a new version. Sorry about that. Regards, Jay > -Original Message- > From: Zhoujian (jay) > Sent: Saturday, March 31, 2018 3:49 PM > To: dev@dpdk.org > Cc: pablo.de.lara.gua...@intel.com; roy.fan.zh...@intel.com; > tho...@m

[dpdk-dev] [PATCH v5 0/7] crypto: add virtio poll mode driver

2018-03-31 Thread Jay Zhou
This patch series introduce virtio crypto poll mode driver. Since it is limited by the vhost crypto backend of the virtio-crypto, this patch series only supports a limited subset of crypto services. Only the following algorithms are tested: Cipher algorithms: - RTE_CRYPTO_CIPHER_AES_CBC (128-bi

[dpdk-dev] [PATCH v5 1/7] crypto/virtio: add virtio related fundamental functions

2018-03-31 Thread Jay Zhou
Since there does not have the common virtio library, we have to put these files here. They are basically the same with virtio net related files with some minor changes. Meanwhile, adding virtio crypto PMD related release note for 18.05. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: F

[dpdk-dev] [PATCH v5 6/7] test/crypto: add function tests for virtio crypto PMD

2018-03-31 Thread Jay Zhou
Only RTE_CRYPTO_CIPHER_AES_CBC cipher algorithm are tested as unit test, it is supported both by the cryptodev-backend-builtin and cryptodev-vhost-user of qemu side. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- test/test/test_cryptodev.c | 48

[dpdk-dev] [PATCH v5 4/7] crypto/virtio: add makefile

2018-03-31 Thread Jay Zhou
The virtio crypto PMD driver can be compiled now. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- drivers/crypto/Makefile| 1 + drivers/crypto/virtio/Makefile | 31 ++ .../virtio/rte_pmd_virtio_crypto_v

[dpdk-dev] [PATCH v5 7/7] MAINTAINERS: add myself as virtio crypto PMD maintainer

2018-03-31 Thread Jay Zhou
Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- MAINTAINERS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index b262e55..5424e74 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -724,6 +724,12 @@ F: drivers/crypto/snow3g/ F: doc/guides/

[dpdk-dev] [PATCH v5 2/7] crypto/virtio: add crypto related session structure

2018-03-31 Thread Jay Zhou
This structure will be used in the following patches, especially at creating and destroying crypto sessions. Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- drivers/crypto/virtio/virtio_crypto_algs.h | 27 +++ 1 file changed, 27 insertions(+) cre

[dpdk-dev] [PATCH v5 3/7] crypto/virtio: core code of virtio crypto PMD

2018-03-31 Thread Jay Zhou
The virtio crypto device has two types of queues, data queue and control queue. It has one data queue at least and has one and only one control queue. For example, if a virtio crypto device has N queues, then [0, N-2] is the data queue index, N-1 is the control queue index. The virtio crypto PMD pr

[dpdk-dev] [PATCH v5 5/7] doc: add virtio crypto PMD guide

2018-03-31 Thread Jay Zhou
Signed-off-by: Jay Zhou Reviewed-by: Fan Zhang Acked-by: Fan Zhang --- doc/guides/cryptodevs/features/virtio.ini | 26 +++ doc/guides/cryptodevs/index.rst | 1 + doc/guides/cryptodevs/virtio.rst | 117 ++ 3 files changed, 144 insertions(+)

Re: [dpdk-dev] [PATCH v3 1/4] eal/vfio: add support for multiple container

2018-03-31 Thread Maxime Coquelin
On 03/31/2018 04:29 AM, Xiao Wang wrote: From: Junjie Chen Currently eal vfio framework binds vfio group fd to the default container fd, while in some cases, e.g. vDPA (vhost data path acceleration), we want to set vfio group to a new container and program DMA mapping via this new container,

Re: [dpdk-dev] [PATCH v3 2/4] net/virtio: skip device probe in vdpa mode

2018-03-31 Thread Maxime Coquelin
Hi Xiao, On 03/31/2018 04:29 AM, Xiao Wang wrote: If we want a virtio device to work in vDPA (vhost data path acceleration) mode, we could add a "vdpa=1" devarg for this device to specify the mode. This patch let virtio pmd skip device probe when detecting this parameter. Signed-off-by: Xiao W

Re: [dpdk-dev] [PATCH v3 3/4] net/ifcvf: add ifcvf vdpa driver

2018-03-31 Thread Maxime Coquelin
On 03/31/2018 04:29 AM, Xiao Wang wrote: The IFCVF vDPA (vhost data path acceleration) driver provides support for the Intel FPGA 100G VF (IFCVF). IFCVF's datapath is virtio ring compatible, it works as a HW vhost backend which can send/receive packets to/from virtio directly by DMA. Different

Re: [dpdk-dev] [PATCH v3 4/4] net/ifcvf: add driver document and release note

2018-03-31 Thread Maxime Coquelin
On 03/31/2018 04:29 AM, Xiao Wang wrote: Signed-off-by: Xiao Wang --- doc/guides/nics/features/ifcvf.ini | 8 doc/guides/nics/ifcvf.rst | 85 ++ doc/guides/nics/index.rst | 1 + doc/guides/rel_notes/release_18_05.rst |

Re: [dpdk-dev] [PATCH v3 2/4] net/virtio: skip device probe in vdpa mode

2018-03-31 Thread Thomas Monjalon
Hi, 31/03/2018 13:13, Maxime Coquelin: > On 03/31/2018 04:29 AM, Xiao Wang wrote: > > If we want a virtio device to work in vDPA (vhost data path acceleration) > > mode, we could add a "vdpa=1" devarg for this device to specify the mode. > > > > This patch let virtio pmd skip device probe when de

Re: [dpdk-dev] Build is broken in dpdk-next-net

2018-03-31 Thread Neil Horman
On Fri, Mar 30, 2018 at 10:47:09PM +0800, Tonghao Zhang wrote: > I rebuild it on ubuntu 17.10 and cash it. I use the 'RTE_SET_USED' to fix it. > > > diff --git a/lib/librte_vhost/fd_man.c b/lib/librte_vhost/fd_man.c > index 771675718..f11803191 100644 > --- a/lib/librte_vhost/fd_man.c > +++ b/lib

Re: [dpdk-dev] [PATCH v6] eal: provide API for querying valid socket id's

2018-03-31 Thread Burakov, Anatoly
On 27-Mar-18 5:24 PM, Thomas Monjalon wrote: 22/03/2018 13:36, Anatoly Burakov: --- a/lib/librte_eal/common/include/rte_eal.h +++ b/lib/librte_eal/common/include/rte_eal.h @@ -57,6 +57,9 @@ enum rte_proc_type_t { struct rte_config { uint32_t master_lcore; /**< Id of the master lc

Re: [dpdk-dev] Build is broken in dpdk-next-net

2018-03-31 Thread Gaëtan Rivet
On Sat, Mar 31, 2018 at 09:33:43AM -0400, Neil Horman wrote: > On Fri, Mar 30, 2018 at 10:47:09PM +0800, Tonghao Zhang wrote: > > I rebuild it on ubuntu 17.10 and cash it. I use the 'RTE_SET_USED' to fix > > it. > > > > > > diff --git a/lib/librte_vhost/fd_man.c b/lib/librte_vhost/fd_man.c > > i

Re: [dpdk-dev] Build is broken in dpdk-next-net

2018-03-31 Thread Neil Horman
On Sat, Mar 31, 2018 at 05:09:47PM +0200, Gaëtan Rivet wrote: > On Sat, Mar 31, 2018 at 09:33:43AM -0400, Neil Horman wrote: > > On Fri, Mar 30, 2018 at 10:47:09PM +0800, Tonghao Zhang wrote: > > > I rebuild it on ubuntu 17.10 and cash it. I use the 'RTE_SET_USED' to fix > > > it. > > > > > > >

Re: [dpdk-dev] [PATCH v4 09/20] eal/dev: implement device iteration initialization

2018-03-31 Thread Gaëtan Rivet
On Fri, Mar 30, 2018 at 04:22:15PM +, Wiles, Keith wrote: > > > > On Mar 30, 2018, at 10:53 AM, Gaëtan Rivet wrote: > > > > Hello Keith, > > Hello Gaëtan, > > >>> + layers[i].kvlist = rte_kvargs_parse(copy, NULL); > >>> + free(copy); > >> > >> I am sorry this method of no

[dpdk-dev] [PATCH v4 2/3] Add Intel FPGA BUS Rawdev Driver

2018-03-31 Thread Rosen Xu
Signed-off-by: Rosen Xu Signed-off-by: Yanglong Wu --- config/common_base | 1 + drivers/raw/Makefile | 1 + drivers/raw/ifpga_rawdev/Makefile | 34 ++ drivers/raw/ifpga_rawdev/ifpga_rawdev.c| 594 ++

[dpdk-dev] [PATCH v4 0/3] Introduce Intel FPGA BUS

2018-03-31 Thread Rosen Xu
Intel FPGA BUS in DPDK - This patch set introduces Intel FPGA BUS support in DPDK. v4 updates: === - Remove all modifications from eal - Create vdev to take IFPGA parameters configuration - AFU Device Driver bind to AFU Device by uuid - Take more test in scenar

[dpdk-dev] [PATCH v4 1/3] Add Intel FPGA BUS Lib Code

2018-03-31 Thread Rosen Xu
Signed-off-by: Rosen Xu --- config/common_base | 5 + drivers/bus/Makefile| 1 + drivers/bus/ifpga/Makefile | 33 ++ drivers/bus/ifpga/ifpga_bus.c | 517 drivers/bus/ifpga/ifpga_commo

Re: [dpdk-dev] Build is broken in dpdk-next-net

2018-03-31 Thread Gaëtan Rivet
On Sat, Mar 31, 2018 at 11:27:55AM -0400, Neil Horman wrote: > On Sat, Mar 31, 2018 at 05:09:47PM +0200, Gaëtan Rivet wrote: > > On Sat, Mar 31, 2018 at 09:33:43AM -0400, Neil Horman wrote: > > > On Fri, Mar 30, 2018 at 10:47:09PM +0800, Tonghao Zhang wrote: > > > > I rebuild it on ubuntu 17.10 and

Re: [dpdk-dev] [PATCH v3 1/6] Add Intel FPGA BUS Command Parse Code

2018-03-31 Thread Xu, Rosen
> -Original Message- > From: Gaëtan Rivet [mailto:gaetan.ri...@6wind.com] > Sent: Wednesday, March 28, 2018 21:26 > To: Xu, Rosen > Cc: dev@dpdk.org; Doherty, Declan ; > Richardson, Bruce ; shreyansh.j...@nxp.com; > Zhang, Tianfei ; Wu, Hao > Subject: Re: [PATCH v3 1/6] Add Intel FPGA B

Re: [dpdk-dev] [PATCH v3 2/6] config/common_base: Add Intel FPGA Build Configuration Macro

2018-03-31 Thread Xu, Rosen
> -Original Message- > From: Gaëtan Rivet [mailto:gaetan.ri...@6wind.com] > Sent: Wednesday, March 28, 2018 21:27 > To: Xu, Rosen > Cc: dev@dpdk.org; Doherty, Declan ; > Richardson, Bruce ; shreyansh.j...@nxp.com; > Zhang, Tianfei ; Wu, Hao > Subject: Re: [PATCH v3 2/6] config/common_ba

Re: [dpdk-dev] [PATCH v3 3/6] mk/rte.app.mk: Add Intel FPGA Bus Build Configuration Macro To App Script

2018-03-31 Thread Xu, Rosen
> -Original Message- > From: Gaëtan Rivet [mailto:gaetan.ri...@6wind.com] > Sent: Wednesday, March 28, 2018 21:29 > To: Xu, Rosen > Cc: dev@dpdk.org; Doherty, Declan ; > Richardson, Bruce ; shreyansh.j...@nxp.com; > Zhang, Tianfei ; Wu, Hao > Subject: Re: [PATCH v3 3/6] mk/rte.app.mk: A

Re: [dpdk-dev] [PATCH v3 4/6] drivers/bus: Add Intel FPGA Bus Lib Code

2018-03-31 Thread Xu, Rosen
> -Original Message- > From: Gaëtan Rivet [mailto:gaetan.ri...@6wind.com] > Sent: Wednesday, March 28, 2018 21:52 > To: Xu, Rosen > Cc: dev@dpdk.org; Doherty, Declan ; > Richardson, Bruce ; shreyansh.j...@nxp.com; > Zhang, Tianfei ; Wu, Hao > Subject: Re: [PATCH v3 4/6] drivers/bus: Add

Re: [dpdk-dev] [PATCH] net/nfp: support new HW offloads API

2018-03-31 Thread Alejandro Lucero
On Tue, Mar 27, 2018 at 7:25 PM, Ferruh Yigit wrote: > On 3/15/2018 2:30 PM, Alejandro Lucero wrote: > > In next 18.05 the old hw offload API will be removed. This patch adds > > support for just the new hw offload API. > > > > Signed-off-by: Alejandro Lucero > > <...> > > > - if (rxmode->en

Re: [dpdk-dev] [PATCH 1/4] net/nfp: add NFP CPP support

2018-03-31 Thread Alejandro Lucero
On Fri, Mar 30, 2018 at 11:37 AM, Ferruh Yigit wrote: > On 3/23/2018 5:35 PM, Alejandro Lucero wrote: > > CPP refers to the internal NFP Command Push Pull bus. This patch allows > > to create CPP commands from user space allowing to access any single > > part of the chip. > > > > This CPP interfa

Re: [dpdk-dev] [PATCH 3/4] doc: update NFP guide

2018-03-31 Thread Alejandro Lucero
On Fri, Mar 30, 2018 at 11:37 AM, Ferruh Yigit wrote: > On 3/23/2018 5:35 PM, Alejandro Lucero wrote: > > New CPP interface changes the way firmware upload is managed by > > the PMD. It also supports different firmware file names for > > having specific firmware aplications per card. > > > > Sign

[dpdk-dev] [PATCH v7 1/3] eal: rename IPC sync request to pending request

2018-03-31 Thread Anatoly Burakov
Originally, there was only one type of request which was used for multiprocess synchronization (hence the name - sync request). However, now that we are going to have two types of requests, synchronous and asynchronous, having it named "sync request" is very confusing, so we will rename it to "pen

[dpdk-dev] [PATCH v7 2/3] eal: rename mp_request to mp_request_sync

2018-03-31 Thread Anatoly Burakov
Rename rte_mp_request to rte_mp_request_sync to indicate that this request will be done synchronously (as opposed to asynchronous request, which comes in next patch). Also, fix alphabetical ordering for .map file. Signed-off-by: Anatoly Burakov Suggested-by: Thomas Monjalon --- Notes: v7:

[dpdk-dev] [PATCH v7 3/3] eal: add asynchronous request API to DPDK IPC

2018-03-31 Thread Anatoly Burakov
This API is similar to the blocking API that is already present, but reply will be received in a separate callback by the caller (callback specified at the time of request, rather than registering for it in advance). Under the hood, we create a separate thread to deal with replies to asynchronous

[dpdk-dev] [PATCH v7] eal: provide API for querying valid socket id's

2018-03-31 Thread Anatoly Burakov
During lcore scan, find all socket ID's and store them, and provide public API to query valid socket id's. This will break the ABI, so bump ABI version. Also, remove deprecation notice corresponding to this change. Signed-off-by: Anatoly Burakov Acked-by: Gowrishankar Muthukrishnan --- Notes:

Re: [dpdk-dev] Build is broken in dpdk-next-net

2018-03-31 Thread Neil Horman
On Sat, Mar 31, 2018 at 06:21:41PM +0200, Gaëtan Rivet wrote: > On Sat, Mar 31, 2018 at 11:27:55AM -0400, Neil Horman wrote: > > On Sat, Mar 31, 2018 at 05:09:47PM +0200, Gaëtan Rivet wrote: > > > On Sat, Mar 31, 2018 at 09:33:43AM -0400, Neil Horman wrote: > > > > On Fri, Mar 30, 2018 at 10:47:09P

Re: [dpdk-dev] [PATCH v2] net/bnxt: convert to SPDX license tag

2018-03-31 Thread Ferruh Yigit
On 3/30/2018 7:10 PM, Scott Branden wrote: > Hi Ferruh, > > > On 18-03-30 03:35 AM, Ferruh Yigit wrote: >> On 3/29/2018 5:40 PM, Ajit Khaparde wrote: >>> From: Scott Branden >>> >>> Update the license header on bnxt files to be the standard >>> BSD-3-Clause license used for the rest of DPDK, >>>

Re: [dpdk-dev] Survey for final decision about per-port offload API

2018-03-31 Thread Zhang, Qi Z
Hi Thomas: > -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Friday, March 30, 2018 9:48 PM > To: dev@dpdk.org > Cc: Ajit Khaparde ; Jerin Jacob > ; Shijith Thotton > ; Santosh Shukla > ; Rahul Lakkireddy > ; John Daley ; Lu, > Wenzhuo ; Ananyev, Konstantin >

Re: [dpdk-dev] Survey for final decision about per-port offload API

2018-03-31 Thread Shahaf Shuler
Friday, March 30, 2018 4:48 PM, Thomas Monjalon: > Subject: Survey for final decision about per-port offload API > > There are some discussions about a specific part of the offload API: > "To enable per-port offload, the offload should be set on both > device configuration and queue se

[dpdk-dev] [PATCH 00/14] net/qede/base: update PMD version to 2.8.0.1

2018-03-31 Thread Rasesh Mody
Hi, This patch set updates QEDE base driver to use FW version 8.33.12.0. It contains some base driver enhancements and fixes. The PMD version is updated to 2.8.0.1. Please apply. Thanks! -Rasesh Rasesh Mody (14): net/qede/base: use path ID for HW init net/qede/base: protect DMAE transaction

[dpdk-dev] [PATCH 01/14] net/qede/base: use path ID for HW init

2018-03-31 Thread Rasesh Mody
Use the path ID as the phase ID when running the engine phase of the HW init Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_dev.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/qede/base/ecore_dev.c b/drivers/net/qede/base/ecore_dev.c index 744d

[dpdk-dev] [PATCH 02/14] net/qede/base: protect DMAE transactions

2018-03-31 Thread Rasesh Mody
Protect DMAE transactions with a spinlock instead of a mutex Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore.h |6 -- drivers/net/qede/base/ecore_dev.c |6 +++--- drivers/net/qede/base/ecore_hw.c | 30 +++--- 3 files changed, 26 insertions(+)

[dpdk-dev] [PATCH 03/14] net/qede/base: add DMAE sanity check

2018-03-31 Thread Rasesh Mody
Add DMA engine sanity check during the engine initialization and before PF inititialization Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_dev.c |5 +++ drivers/net/qede/base/ecore_hw.c | 69 drivers/net/qede/base/ecore_hw.h |

[dpdk-dev] [PATCH 04/14] net/qede/base: upgrade FW to 8.33.12.0

2018-03-31 Thread Rasesh Mody
This patch adds changes to support new firmware 8.33.12.0. The changes consist of FW bug fixes and enhancements. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/common_hsi.h|8 +- drivers/net/qede/base/ecore_cxt.c | 10 +- drivers/net/qede/base/ecore_cxt.h

[dpdk-dev] [PATCH 05/14] net/qede/base: symantic changes

2018-03-31 Thread Rasesh Mody
The changes included in this patch are for - formatting - comment rework/addtions - relocate FW info, version related code - convert: __le16 to u16 __le32 to u32 etc. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_hsi_common.h | 89 +++- drivers/net

[dpdk-dev] [PATCH 07/14] net/qede/base: allow changing VF MAC address

2018-03-31 Thread Rasesh Mody
This patch allows VF to change its own MAC address regardless of MAC set by PF Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_iov_api.h | 11 ++ drivers/net/qede/base/ecore_proto_if.h |3 +++ drivers/net/qede/base/ecore_sriov.c| 36 +--

[dpdk-dev] [PATCH 06/14] net/qede/base: add new chain API

2018-03-31 Thread Rasesh Mody
Add new API ecore_chain_set_cons() and fix page index setting in ecore_chain_set_prod(). The new API is for future use. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_chain.h | 49 ++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/dri

[dpdk-dev] [PATCH 09/14] net/qede/base: refine error handling

2018-03-31 Thread Rasesh Mody
Adjust the verbosity of the log messages and add preventive checks for errors. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_cxt.c | 20 ++-- drivers/net/qede/base/ecore_dcbx.c|2 +- drivers/net/qede/base/ecore_dev.c | 179 - driver

[dpdk-dev] [PATCH 10/14] net/qede/base: add stats counter for link state

2018-03-31 Thread Rasesh Mody
Add link_change_count counter to track number of link state transitions Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_dev_api.h |1 + drivers/net/qede/base/ecore_l2.c | 10 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/net/qede/base/eco

[dpdk-dev] [PATCH 08/14] net/qede/base: add MFW support for driver load timeout

2018-03-31 Thread Rasesh Mody
Add SPQ timeout base driver parameter support management FW timeout values other than default and none. Have fallback mechanism for old MFWs. Reduce the defult timeout to 1 sec. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_dev.c | 66 +++-- drivers

[dpdk-dev] [PATCH 11/14] net/qede/base: add APIs for xcvr

2018-03-31 Thread Rasesh Mody
Add API to query transceiver info and to retrieve link speed. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore_mcp.c | 199 - drivers/net/qede/base/ecore_mcp_api.h | 46 drivers/net/qede/base/mcp_public.h|1 + 3 files changed, 243

[dpdk-dev] [PATCH 14/14] net/qede: update PMD version to 2.8.0.1

2018-03-31 Thread Rasesh Mody
Signed-off-by: Rasesh Mody --- drivers/net/qede/qede_ethdev.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/qede/qede_ethdev.h b/drivers/net/qede/qede_ethdev.h index baae22d..4737c8f 100644 --- a/drivers/net/qede/qede_ethdev.h +++ b/drivers/net/qede/qede_ethde

[dpdk-dev] [PATCH 12/14] net/qede/base: fix to support OVLAN mode

2018-03-31 Thread Rasesh Mody
This fix allows driver to program NIC configuration to support OVLAN mode in multi-function scenario Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore.h |6 ++ drivers/net/qede/base/ecore_dcbx.c|5 + drivers/net/qede/base/ecore_dcbx_api.h|1 +

[dpdk-dev] [PATCH 13/14] net/qede/base: add packet pacing support

2018-03-31 Thread Rasesh Mody
Add packet pacing support for PFs. ecore client can request for enabling packet pacing at init time, if requested then ecore is going to skip MCoS and SRIOV configurations. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore.h | 16 ++- drivers/net/qede/b

[dpdk-dev] [PATCH] net/bnx2x: convert to new Rx offloads API

2018-03-31 Thread Rasesh Mody
From: Harish Patil Ethdev RX offloads API has changed since: commit ce17eddefc20 ("ethdev: introduce Rx queue offloads API") This patch makes use of DEV_RX_OFFLOAD_JUMBO_FRAME offload flag to advertise jumbo frame support. Signed-off-by: Harish Patil --- drivers/net/bnx2x/bnx2x_ethdev.c |

Re: [dpdk-dev] [PATCH v6 2/8] ethdev: add switch identifier parameter to port

2018-03-31 Thread Shahaf Shuler
--Shahaf > -Original Message- > From: Doherty, Declan [mailto:declan.dohe...@intel.com] > Sent: Thursday, March 29, 2018 6:13 PM > To: Shahaf Shuler ; dev@dpdk.org > Cc: Alex Rosenbaum ; Ferruh Yigit > ; Thomas Monjalon ; Qi > Zhang ; Alejandro Lucero > ; Andrew Rybchenko > ; Mohammad A

Re: [dpdk-dev] [PATCH v6 4/8] ethdev: Add port representor device flag

2018-03-31 Thread Shahaf Shuler
Thursday, March 29, 2018 5:53 PM, Doherty, Declan: > On 29/03/2018 7:13 AM, Shahaf Shuler wrote: > > Wednesday, March 28, 2018 4:54 PM, Declan Doherty: > >> Subject: [dpdk-dev][PATCH v6 4/8] ethdev: Add port representor device > >> flag > >> > >> Add new device flag to specify that ethdev port is a