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
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
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
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
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
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(+)
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
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
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
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
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
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/
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
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
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
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
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
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/
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
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
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(+)
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,
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
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
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 |
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
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
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
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
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.
> > >
> > >
>
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
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 ++
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
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
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
> -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
> -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
> -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
> -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
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
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
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
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
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:
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
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:
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
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,
>>>
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
>
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
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
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
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(+)
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 |
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
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
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 +--
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
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
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
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
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
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
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 +
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
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 |
--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
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
68 matches
Mail list logo