Additional authenticated data (AAD) information was duplicated
in the authentication transform and in the crypto
operation structures.
Since AAD length is not meant to be changed in a same session,
it is removed from the crypto operation structure.
Signed-off-by: Pablo de Lara
Acked-by: Akhil Go
For wireless algorithms (SNOW3G, KASUMI, ZUC),
the IV for the authentication algorithms (F9, UIA2 and EIA3)
was taken from the AAD parameter, as there was no IV parameter
in the authentication structure.
Now that IV is available for all algorithms, there is need
to keep doing this, so AAD is not u
Digest length was duplicated in the authentication transform
and the crypto operation structures.
Since digest length is not expected to change in a same
session, it is removed from the crypto operation.
Also, the length has been shrunk to 16 bits,
which should be sufficient for any digest.
Sign
AES-GMAC is an authentication algorithm, based on AES-GCM
without encryption. To simplify its usage, now it can be used
setting the authentication parameters, without requiring
to concatenate a ciphering transform.
Therefore, it is not required to set AAD, but authentication
data length and offset
Some extra functions have been created to avoid
too many nested conditionals.
Signed-off-by: Pablo de Lara
Acked-by: Akhil Goyal
---
examples/l2fwd-crypto/main.c | 125 ++-
1 file changed, 77 insertions(+), 48 deletions(-)
diff --git a/examples/l2fwd-cry
AEAD algorithms such as AES-GCM needed to be
used as a concatenation of a cipher transform and
an authentication transform.
Instead, a new transform and functions to handle it
are created to support these kind of algorithms,
making their use easier.
Signed-off-by: Pablo de Lara
Acked-by: Akhil G
Since there is a new operation type (AEAD), add parameters
for this in the application.
Signed-off-by: Pablo de Lara
Acked-by: Akhil Goyal
---
doc/guides/sample_app_ug/ipsec_secgw.rst | 32 +++--
examples/ipsec-secgw/ipsec.h | 1 +
examples/ipsec-secgw/sa.c| 1
AEAD operation parameters can be set in the new
aead structure, in the crypto operation.
This structure is within a union with the cipher
and authentication parameters, since operations can be:
- AEAD: using the aead structure
- Cipher only: using only the cipher structure
- Auth only: using only
Since there is a new operation type (AEAD), add parameters
for this in the application.
Signed-off-by: Pablo de Lara
Acked-by: Akhil Goyal
---
doc/guides/sample_app_ug/l2_forward_crypto.rst | 24 +-
examples/l2fwd-crypto/main.c | 388 +
2 files changed
Since there is a new operation type (AEAD), add parameters
for this in the application.
Signed-off-by: Pablo de Lara
Acked-by: Akhil Goyal
---
app/test-crypto-perf/cperf_ops.c | 138 ++-
app/test-crypto-perf/cperf_options.h | 22 +++-
app/test-cr
Now that AAD is only used in AEAD algorithms,
there is no need to keep AAD in the authentication
structure.
Signed-off-by: Pablo de Lara
Acked-by: Akhil Goyal
---
app/test-crypto-perf/cperf_ops.c | 2 --
doc/guides/prog_guide/cryptodev_lib.rst | 6 --
doc/guides/rel_notes/release
Now that all the structures/functions for AEAD algorithms
are in place, migrate the two supported algorithms
AES-GCM and AES-CCM to these, instead of using
cipher and authentication parameters.
Signed-off-by: Pablo de Lara
Acked-by: Akhil Goyal
---
doc/guides/sample_app_ug/ipsec_secgw.rst
Refactor vmxnet3_post_rx_bufs() to call vmxnet3_renew_desc()
to update the newly allocated mbufs. While here, relocate the
relevant comments to vmxnet3_renew_desc().
Signed-off-by: Chas Williams
---
drivers/net/vmxnet3/vmxnet3_rxtx.c | 61 +-
1 file changed,
> -Original Message-
> From: De Lara Guarch, Pablo
> Sent: Thursday, June 29, 2017 12:16 PM
> To: Trahe, Fiona ; Griffin, John
> ; Jain, Deepak K
> Cc: dev@dpdk.org; De Lara Guarch, Pablo ;
> sta...@dpdk.org
> Subject: [PATCH] crypto/qat: fix typo
>
> Fixed a comment in QAT, referring t
29/06/2017 18:35, Van Haaren, Harry:
> 3) The problem;
>If a service core runs the SW PMD schedule() function (option 2) *AND*
>the application lcore runs schedule() func (option 1), the result is that
>two threads are concurrently running a multi-thread unsafe function.
Which function
From: Akhil Goyal
This patchset updates dpaa2_sec crypto driver with following:
- optimization in data path for memory allocation
- add support for additional AES algorithms like AES-GCM and AES-CTR
- Update test cases in test_cryptodev for all the supported test cases.
- Update documentation for
From: Akhil Goyal
rte_malloc uses common memory area for all cores.
Now rte_malloc are replaced by per device mempool to allocate
space for FLE. This removes contention and improves performance.
Signed-off-by: Akhil Goyal
---
drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 7 +++
drivers/crypt
From: Akhil Goyal
AES-GCM support is added as per the AEAD type of crypto
operations.
Support for AES-CTR is also added.
Signed-off-by: Akhil Goyal
---
drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 315 ++--
drivers/crypto/dpaa2_sec/dpaa2_sec_priv.h | 98 ++---
2
From: Akhil Goyal
dpaa2_sec test cases updated for various supported
crypto alogorithms.
Signed-off-by: Akhil Goyal
---
test/test/test_cryptodev.c | 94
test/test/test_cryptodev_aes_test_vectors.h | 78 +++
test/test/test_cryp
From: Akhil Goyal
Signed-off-by: Akhil Goyal
---
doc/guides/cryptodevs/dpaa2_sec.rst | 9 -
doc/guides/cryptodevs/features/dpaa2_sec.ini | 6 ++
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/doc/guides/cryptodevs/dpaa2_sec.rst
b/doc/guides/cryptodevs/dpaa2
Hi,
> -Original Message-
> From: Sekhar, Ashwin [mailto:ashwin.sek...@cavium.com]
> Sent: Tuesday, May 2, 2017 9:05 AM
> To: Jacob, Jerin ;
> jianbo@linaro.org
> Cc: Marohn, Byron ; De Lara Guarch, Pablo
> ; dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH v3] efd: support lookup using ne
29/06/2017 20:22, Jan Blunck:
> --- a/lib/librte_eal/common/eal_common_dev.c
> +++ b/lib/librte_eal/common/eal_common_dev.c
> +int rte_eal_device_detach(struct rte_device *dev)
[...]
> int rte_eal_dev_detach(const char *name)
I would be in favor of breaking the API without notice,
and keep the na
29/06/2017 20:22, Jan Blunck:
> Using the new generic API allows attach and detach to be backwards
> compatible while decoupling from the concrete bus implementations.
>
> Signed-off-by: Jan Blunck
> ---
> int rte_eal_dev_attach(const char *name, const char *devargs)
> {
> - struct rte_pci_
Hi Akhil
> -Original Message-
> From: akhil.go...@nxp.com [mailto:akhil.go...@nxp.com]
> Sent: Thursday, June 29, 2017 9:49 PM
> To: dev@dpdk.org
> Cc: hemant.agra...@nxp.com; De Lara Guarch, Pablo
> ; Doherty, Declan
> ; Akhil Goyal
> Subject: [PATCH 5/5] doc: update documentation for dp
21/06/2017 08:28, Pablo de Lara:
> +#ifndef _RTE_CRYPTODEV_PCI_H_
> +#define _RTE_CRYPTODEV_PCI_H_
> +
> +#include
> +#include
The build fails because of the brackets instead of quotes.
In a fresh build the cryptodev header is not available while
compiling cryptodev.
I am fixing it directly in m
24/06/2017 12:37, Pablo de Lara:
> http://dpdk.org/git/next/dpdk-next-crypto
Pulled after your last changes plus a build fix.
Thanks
Hi Pablo,
On 6/30/2017 2:37 AM, De Lara Guarch, Pablo wrote:
Hi Akhil
-Original Message-
From: akhil.go...@nxp.com [mailto:akhil.go...@nxp.com]
Sent: Thursday, June 29, 2017 9:49 PM
To: dev@dpdk.org
Cc: hemant.agra...@nxp.com; De Lara Guarch, Pablo
; Doherty, Declan
; Akhil Goyal
Subj
In function cmd_show_bonding_config_parsed() use number
represent the bond type,in order more detailed,add bond
type description otherwise we may confused about the number
type.
And also,The primary port just use in mode active backup
and tlb,so,when the mode is the active backup or tlb we
show th
Hi Stephen,
On Thu, Jun 29, 2017 at 10:51:50AM -0700, Stephen Hemminger wrote:
> On Thu, 29 Jun 2017 18:58:59 +0800
> Jiayu Hu wrote:
>
> > + /* allocate a reassembly table for TCP/IPv4 GRO */
> > + uint32_t tcp_item_num = RTE_MIN(item_num,
> > + RTE_GRO_MAX_BURST_ITEM_NUM)
Hi Jerin,
This patch set looks good. For the series:
Acked-by: Gage Eads
> -Original Message-
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Thursday, June 29, 2017 9:20 AM
> To: dev@dpdk.org
> Cc: Richardson, Bruce ; Van Haaren, Harry
> ; hemant.agra...@nxp.com; Ead
> -Original Message-
> From: Hu, Jiayu
> Sent: Thursday, June 29, 2017 6:59 PM
> To: dev@dpdk.org
> Cc: Ananyev, Konstantin ; Tan, Jianfeng
> ; y...@fridaylinux.org; step...@networkplumber.org;
> Wu, Jingjing ; Bie, Tiwei ; Yao,
> Lei A ; Hu, Jiayu
> Subject: [PATCH v8 3/3] app/testpmd:
On Thu, Jun 29, 2017 at 5:55 AM, Ferruh Yigit
wrote:
> Just question, would this cause larger frames than expected in application?
No. It just initializes the hardware early. The bp->eth_dev->data->mtu
still
controls what goes to the application.
On Thu, Jun 29, 2017 at 5:55 AM, Ferruh Yigit
wrote:
> On 6/29/2017 3:51 AM, Ajit Khaparde wrote:
> > This patch fixes some link related issues that can occur because:
> >
> > bnxt_hwrm_port_phy_cfg() was setting enables inappropriately.
> > bnxt_hwrm_port_phy_qcfg() was overly complex.
> > bnxt_
In function cmd_show_bonding_config_parsed() used number represent
the bond type,in order more detailed,add bond type description
otherwise we may confused about the number type.
And also,the primary port just use in mode active backup and tlb,
so,when the mode is active backup or tlb show the prim
-Original Message-
> Date: Tue, 27 Jun 2017 16:16:01 +0300
> From: ilia.kura...@intel.com
> To: dev@dpdk.org
> CC: konstantin.anan...@intel.com, keith.wi...@intel.com,
> dmitry.gala...@intel.com, Ilia Kurakin
> Subject: [dpdk-dev] [PATCH] ether: add support for vtune task tracing
> X-Mail
> -Original Message-
> From: Stephen Hemminger [mailto:step...@networkplumber.org]
> Sent: Friday, June 30, 2017 1:28 AM
> To: Wu, Jingjing
> Cc: Gaëtan Rivet ; Guo, Jia ;
> Zhang, Helin ; Richardson, Bruce
> ; Ananyev, Konstantin
> ; Liu, Yuanhan ;
> dev@dpdk.org
> Subject: Re: [dpdk-de
> -Original Message-
> From: Guo, Jia
> Sent: Thursday, June 29, 2017 12:38 PM
> To: Zhang, Helin ; Wu, Jingjing
>
> Cc: dev@dpdk.org; Guo, Jia
> Subject: [PATCH v3 1/2] eal: add uevent api for hot plug
>
> From: "Guo, Jia"
>
> This patch aim to add a variable "uevent_fd" in structur
> -Original Message-
> From: Guo, Jia
> Sent: Thursday, June 29, 2017 12:38 PM
> To: Zhang, Helin ; Wu, Jingjing
>
> Cc: dev@dpdk.org; Guo, Jia
> Subject: [PATCH v3 2/2] net/i40e: add hot plug monitor in i40e
>
> From: "Guo, Jia"
>
> This patch enable the hot plug feature in i40e, by
-Original Message-
> Date: Thu, 29 Jun 2017 16:57:08 +0100
> From: Bruce Richardson
> To: "Van Haaren, Harry"
> CC: "dev@dpdk.org" , 'Jerin Jacob'
> , "tho...@monjalon.net"
> , "Wiles, Keith"
> Subject: Re: Service lcores and Application lcores
> User-Agent: Mutt/1.8.1 (2017-04-11)
>
Tested-by: Peng, Yuan
- Tested commit bbe569daa7e99b36d44b12bb3d23ddfbc26d383c+the 5 patches.
- OS: 4.8.6-300.fc25.x86_64
- GCC: gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC)
- CPU: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
- NIC: Ethernet controller [0200]: Intel Corporation Ethernet Contro
Tested-by: Peng, Yuan
- Tested commit bbe569daa7e99b36d44b12bb3d23ddfbc26d383c+the 5 patches.
- OS: 4.8.6-300.fc25.x86_64
- GCC: gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC)
- CPU: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
- NIC: Ethernet controller [0200]: Intel Corporation Ethernet Contro
> -Original Message-
> From: Jain, Deepak K
> Sent: Thursday, June 29, 2017 8:46 PM
> To: De Lara Guarch, Pablo ; Trahe, Fiona
> ; Griffin, John
> Cc: dev@dpdk.org; sta...@dpdk.org
> Subject: RE: [PATCH] crypto/qat: fix typo
>
>
>
> > -Original Message-
> > From: De Lara Guarc
This patch enables TCP/IPv4 GRO library in csum forwarding engine.
By default, GRO is turned off. Users can use command "gro (on|off)
(port_id)" to enable or disable GRO for a given port. If a port is
enabled GRO, all TCP/IPv4 packets received from the port are performed
GRO. Besides, users can set
Generic Receive Offload (GRO) is a widely used SW-based offloading
technique to reduce per-packet processing overhead. It gains performance
by reassembling small packets into large ones. Therefore, we propose to
support GRO in DPDK.
To enable more flexibility to applications, DPDK GRO is implement
Generic Receive Offload (GRO) is a widely used SW-based offloading
technique to reduce per-packet processing overhead. It gains
performance by reassembling small packets into large ones. This
patchset is to support GRO in DPDK. To support GRO, this patch
implements a GRO API framework.
To enable m
In this patch, we introduce five APIs to support TCP/IPv4 GRO.
- gro_tcp_tbl_create: create a TCP reassembly table, which is used to
merge packets.
- gro_tcp_tbl_destroy: free memory space of a TCP reassembly table.
- gro_tcp_tbl_timeout_flush: flush timeout packets from a TCP
reassembly ta
> -Original Message-
> From: Wu, Jingjing
> Sent: Wednesday, June 28, 2017 5:11 PM
> To: Dai, Wei ; tho...@monjalon.net; Lu, Wenzhuo
> ; Ananyev, Konstantin
> ; Zhang, Helin
> Cc: dev@dpdk.org
> Subject: RE: [PATCH v2 4/5] app/testpmd: add command to test NIC reset
>
>
>
> > -Origin
On 6/29/2017 11:29 AM, Ilya Maximets wrote:
Currently EAL allocates hugepages one by one not paying attention
from which NUMA node allocation was done.
Such behaviour leads to allocation failure if number of available
hugepages for application limited by cgroups or hugetlbfs and
memory requested
-Original Message-
> Date: Tue, 27 Jun 2017 14:12:20 +0100
> From: "Hunt, David"
> To: Jerin Jacob
> CC: Harry van Haaren , dev@dpdk.org, Gage Eads
> , Bruce Richardson
> Subject: Re: [dpdk-dev] [PATCH 1/3] examples/eventdev_pipeline: added
> sample app
> User-Agent: Mozilla/5.0 (Windo
On 06/29/2017 08:07 AM, Ivan Dyukov wrote:
On 06/28/2017 03:54 PM, Maxime Coquelin wrote:
On 06/28/2017 02:40 PM, Ivan Dyukov wrote:
To compare enabled features in current device we must use bit
mask instead of bit position.
CC: sta...@dpdk.org
Fixes: c843af3aa13e ("vhost: access header on
On 06/29/2017 08:13 AM, Tan, Jianfeng wrote:
-Original Message-
From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ivan Dyukov
Sent: Wednesday, June 28, 2017 8:41 PM
To: y...@fridaylinux.org; maxime.coque...@redhat.com; dev@dpdk.org
Cc: i.maxim...@samsung.com; heetae82@samsung.
Hi,
I would like to propose to have more people able to commit
in master branch, and make releases.
The goal is to have some backups to make sure there is always
someone to take this role in case of accident or long vacations.
It will require to well document the procedures and make sure
rights a
On 06/29/2017 09:21 AM, Maxime Coquelin wrote:
On 06/29/2017 08:07 AM, Ivan Dyukov wrote:
On 06/28/2017 03:54 PM, Maxime Coquelin wrote:
On 06/28/2017 02:40 PM, Ivan Dyukov wrote:
To compare enabled features in current device we must use bit
mask instead of bit position.
CC: sta...@dpdk
Agree with jingjing.
That patch is definitely not for generic fashion of hot plug, the uevent just
give the adding approach to monitor the remove event even if the driver not
add it as interrupt , we know mlx driver have already implement the event of
remove interrupt into their infinite fram
On Wed, Jun 28, 2017 at 7:03 PM, Thomas Monjalon wrote:
> 27/06/2017 20:55, Jan Blunck:
>> On Wed, Jun 21, 2017 at 1:30 AM, Gaetan Rivet wrote:
>> > /**
>> > + * Find a bus capable of identifying a device.
>> > + *
>> > + * @param str
>> > + * A device identifier (PCI address, virtual PMD name
The MTU feature support check has to be done against MTU
feature bit mask, and not bit position.
Cc: sta...@dpdk.org
Fixes: 72e8543093df ("vhost: add API to get MTU value")
Signed-off-by: Maxime Coquelin
---
This is a follow-up of Ivan's patch, which made me check I didn't
introduced same bug e
> -Original Message-
> From: Maxime Coquelin [mailto:maxime.coque...@redhat.com]
> Sent: Thursday, June 29, 2017 3:58 PM
> To: dev@dpdk.org; y...@fridaylinux.org
> Cc: i.dyu...@samsung.com; Tan, Jianfeng; sta...@dpdk.org; Maxime
> Coquelin
> Subject: [PATCH] vhost: fix MTU device feature
> -Original Message-
> From: Maxime Coquelin [mailto:maxime.coque...@redhat.com]
> Sent: Thursday, June 29, 2017 3:27 PM
> To: Tan, Jianfeng; Ivan Dyukov; y...@fridaylinux.org; dev@dpdk.org
> Cc: i.maxim...@samsung.com; heetae82@samsung.com;
> sta...@dpdk.org
> Subject: Re: [dpdk-dev]
29/06/2017 09:56, Jan Blunck:
> On Wed, Jun 28, 2017 at 7:03 PM, Thomas Monjalon wrote:
> > 27/06/2017 20:55, Jan Blunck:
> >> On Wed, Jun 21, 2017 at 1:30 AM, Gaetan Rivet
> >> wrote:
> >> > /**
> >> > + * Find a bus capable of identifying a device.
> >> > + *
> >> > + * @param str
> >> > + *
Reset a NIC by calling dev_uninit and then dev_init.
Go through same way in NIC PCI remove without release of
ethdev resource and then NIC PCI probe function without
ethdev resource allocation.
Signed-off-by: Wei Dai
---
drivers/net/ixgbe/ixgbe_ethdev.c | 38 +
A DPDK application can reset a NIC and keep its port id afterwards.
It means that all SW resources allocated in ethdev layer should be
kept and SW and HW resources of the NIC in PMD need to be reset
in similar way that it runs PCI dev_uninit() and then dev_init().
The sequence of dev_uninit() and
Sometimes a port have to be reset. After reset, if the port goes
through PCI remove() and then PCI probe() for restoration, its
port id may be changed and this is not expected by some customer
DPDK application.
Normally, PCI probe() includes two parts: one is in rte_ethdev layer
and the other is ca
Reset a NIC by calling dev_uninit() and then dev_init().
Go through the same way in NIC PCI remove without release
of ethdev resource and then NIC PCI probe function without
ethdev resource allocation.
Signed-off-by: Wei Dai
---
drivers/net/i40e/i40e_ethdev.c| 16
drivers/ne
When PF is reset, a message will show it.
User can run the command "port reset port_id"
to reset the VF port and to keep same port id without any
without any configuration.
And then user can run "start port_id" to reconfigure
its forwarding mode and parmaters as previous.
To avoid crash, current fo
Moved duplicated, and occasionally outdated, doc sections from each
of the sample app guides chapters to a common chapter at the start.
This reduces the duplication in the docs and provides a single
point of reference for compiling the sample apps.
Fixes: d0dff9ba445e ("doc: sample application us
On 27/05/17 12:27, Tomasz Kulasek wrote:
New API funtions implemented:
rte_eth_bond_8023ad_slow_queue_enable(uint8_t port_id);
rte_eth_bond_8023ad_slow_queue_disable(uint8_t port_id);
rte_eth_bond_8023ad_slow_queue_enable should be called before bonding port
start to enable new path.
W
-Original Message-
> Date: Wed, 28 Jun 2017 20:46:04 +0530
> From: Nipun Gupta
> To: dev@dpdk.org
> CC: hemant.agra...@nxp.com, jerin.ja...@caviumnetworks.com,
> harry.van.haa...@intel.com, bruce.richard...@intel.com,
> gage.e...@intel.com, shreyansh.j...@nxp.com, Nipun Gupta
>
> Subje
Signed-off-by: RongQiang Xie
---
app/test-pmd/cmdline.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index fcbc6b1..4eac498 100755
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -4456,7 +4456,7 @@ static void cmd
Hi,
This patch set contains minor enhancements and bug fixes for QEDE PMD.
It updates the driver version to 2.5.1.1. The patch set is tested
against dpdk-next-net.
Thanks!
Rasesh
Harish Patil (3):
net/qede: fix DMA memory leak
net/qede: add notifying HW errors
net/qede: limit ring size to
From: Harish Patil
Log HW errmsg on the stdout and do minimal handling to prevent HW
attentions from being reasserted.
Signed-off-by: Harish Patil
Signed-off-by: Rasesh Mody
---
drivers/net/qede/base/bcm_osal.c | 32
drivers/net/qede/base/bcm_osal.h |6
From: Harish Patil
Implement the macro OSAL_DMA_FREE_COHERENT to release DMA memories.
Track all DMA memory allocations using an array of memzone pointers and
use that to free memory resoureces along with other resource deallocation.
With this change there is no need to alter the base code to add
From: Harish Patil
Since nb_max is a u16 it can store value upto 65535 only (not 64K), but
this value is not a power-of-2. So limit the ring sizes to 32K.
Signed-off-by: Harish Patil
---
drivers/net/qede/qede_ethdev.c |4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/d
Convert DP_NOTICE() to DP_ERR() as appropriate in PMD files.
Change DP_NOTICE() macro to make use of boolean flag to log
it as error message or informational message.
Signed-off-by: Rasesh Mody
---
drivers/net/qede/qede_ethdev.c | 20 +---
drivers/net/qede/qede_logs.h | 23
Set allow management FW dump flag during HW prepare.
Signed-off-by: Rasesh Mody
---
drivers/net/qede/base/ecore.h |2 +-
drivers/net/qede/base/ecore_dev.c |1 +
drivers/net/qede/base/ecore_dev_api.h |3 +++
drivers/net/qede/base/ecore_mcp.c |3 +--
drivers/net/qed
Changes include
- comment modifications
- adds tracing during initialization
- adds/removes new lines
Signed-off-by: Rasesh Mody
---
drivers/net/qede/base/bcm_osal.c | 14 --
drivers/net/qede/qede_ethdev.c | 11 +++
drivers/net/qede/qede_rxtx.c |6 +++---
3 f
Add missing check for VNI field while adding unicast filter.
Signed-off-by: Rasesh Mody
---
drivers/net/qede/qede_ethdev.c |1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/qede/qede_ethdev.c b/drivers/net/qede/qede_ethdev.c
index ad264ba..a0616a4 100644
--- a/drivers/net/qede/q
Use rte_pktmbuf_alloc() API instead of rte_mbuf_raw_alloc().
Signed-off-by: Rasesh Mody
---
drivers/net/qede/qede_rxtx.c |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/qede/qede_rxtx.c b/drivers/net/qede/qede_rxtx.c
index 8063233..6b047a3 100644
--- a/drivers/
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 9a93286..510b6e2 100644
--- a/drivers/net/qede/qede_ethdev.h
+++ b/drivers/net/qede/qede_ethde
On Thu, Jun 29, 2017 at 09:56:30AM +0200, Jan Blunck wrote:
> On Wed, Jun 28, 2017 at 7:03 PM, Thomas Monjalon wrote:
> > 27/06/2017 20:55, Jan Blunck:
> >> On Wed, Jun 21, 2017 at 1:30 AM, Gaetan Rivet
> >> wrote:
> >> > /**
> >> > + * Find a bus capable of identifying a device.
> >> > + *
> >
> -Original Message-
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com]
> Sent: Thursday, June 29, 2017 14:56
> To: Nipun Gupta
> Cc: dev@dpdk.org; Hemant Agrawal ;
> harry.van.haa...@intel.com; bruce.richard...@intel.com;
> gage.e...@intel.com; Shreyansh Jain
> Subject: Re: [P
The following patch set adds NXP DPAA2 HW based eventdev
implementation to the next-eventdev tree.
The patchset consists of the following:
- DPCON support required by DPAA2 eventdev
- DPCI support in fslmc bus
- Interrupt support in QBMAN
- Implemetation of eventdev API's for DPAA2
- Documentation
This patch removes the existing static call for dpio and dpbp
create and add them to object registration framework.
This patch also changes the vfio mc object processing to use
the framework.
Signed-off-by: Hemant Agrawal
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/fslmc_vfio.c
From: Hemant Agrawal
Signed-off-by: Hemant Agrawal
---
drivers/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/Makefile b/drivers/Makefile
index a04a01f..7fef66d 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -39,5 +39,6 @@ DEPDIRS-net := bus mempool
DIRS-$(CONFIG
From: Hemant Agrawal
There are muliple help mc object, which are not an independent
device, but they are required for dpaa2 based devices.
This framework allows registration and handling of all such
mc devices.
Signed-off-by: Hemant Agrawal
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/fsl
Signed-off-by: Nipun Gupta
Acked-by: Jerin Jacob
---
MAINTAINERS| 4 ++
config/defconfig_arm64-dpaa2-linuxapp-gcc | 6 ++
drivers/event/Makefile | 2 +
drivers/event/dpaa2/Makefile | 52
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/Makefile | 3 +-
drivers/bus/fslmc/fslmc_vfio.h | 1 +
drivers/bus/fslmc/mc/dpcon.c| 230 +++
drivers/bus/fslmc/mc/fsl_dpcon.h| 238
Registering dpcon as dpaa2 type device handling initialization,
allocation and freeing of the device
Signed-off-by: Nipun Gupta
---
drivers/event/dpaa2/Makefile | 8 ++
drivers/event/dpaa2/dpaa2_eventdev.h | 18 +
drivers/event/dpaa2/dpaa2_hw_dpcon.c | 139
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/Makefile | 1 +
drivers/bus/fslmc/mc/dpci.c | 307 +
drivers/bus/fslmc/mc/fsl_dpci.h | 404
drivers/bus/fslmc/mc/fsl_dpci_cmd.h | 147 ++
From: Hemant Agrawal
Signed-off-by: Hemant Agrawal
---
drivers/bus/fslmc/rte_bus_fslmc_version.map | 8
1 file changed, 8 insertions(+)
diff --git a/drivers/bus/fslmc/rte_bus_fslmc_version.map
b/drivers/bus/fslmc/rte_bus_fslmc_version.map
index 783c3e5..01a7939 100644
--- a/drivers/b
Stashing can also be configured by other drivers (for instance
event driver) passing cpu_id as an argument. This change
facilitates the same.
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/portal/dpaa2_hw_dpio.c| 14 ++
drivers/bus/fslmc/portal/dpaa2_hw_dpio.h| 4
dri
Signed-off-by: Nipun Gupta
---
drivers/event/dpaa2/dpaa2_eventdev.c | 157 ++-
drivers/event/dpaa2/dpaa2_eventdev.h | 23 +
2 files changed, 176 insertions(+), 4 deletions(-)
diff --git a/drivers/event/dpaa2/dpaa2_eventdev.c
b/drivers/event/dpaa2/dpaa2_event
Registering dpci as dpaa2 type device handling initialization,
allocation and freeing of the device
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/Makefile | 1 +
drivers/bus/fslmc/fslmc_vfio.h | 1 +
drivers/bus/fslmc/portal/dpaa2_hw_dpci.c | 179 ++
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/mc/dpio.c | 44 +
drivers/bus/fslmc/mc/fsl_dpio.h | 30
drivers/bus/fslmc/portal/dpaa2_hw_dpio.h| 1 +
drivers/bus/fslmc/rte_bus_fslmc_version.map | 2 ++
4 files ch
This patch adds all the configuration API's for DPAA2 eventdev
including device config, start, stop & port and queue
related API's
Signed-off-by: Nipun Gupta
---
drivers/event/dpaa2/dpaa2_eventdev.c | 283 ++-
drivers/event/dpaa2/dpaa2_eventdev.h | 22 +++
2 file
This patch adds the QBMAN API which support multiple enqueue
descriptors.
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h | 14 +
drivers/bus/fslmc/qbman/qbman_portal.c | 70 ++
drivers/bus/fslmc/rte_bus_fslmc_version.map
qbman_get_dqrr_idx() API is required with constant dqrr entry
in the eventdev driver. Also, this routine is not updating the
dqrr. So, this patch updates its input argument to a const type.
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h | 2 +-
drivers/bus/fslm
Signed-off-by: Nipun Gupta
---
drivers/event/dpaa2/dpaa2_eventdev.c | 170 +--
1 file changed, 163 insertions(+), 7 deletions(-)
diff --git a/drivers/event/dpaa2/dpaa2_eventdev.c
b/drivers/event/dpaa2/dpaa2_eventdev.c
index c00db7a..a7f8516 100644
--- a/drivers/e
Dequeue from event device needs to process the event on
the basis of the hardware queue from which it is dequeued.
A callback is added into dpaa2_queue structure, to enable
event dequeue functionality to call that processing routine.
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/portal/dpaa2_
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/fslmc_vfio.c | 34 ++
drivers/bus/fslmc/fslmc_vfio.h | 3 +++
2 files changed, 37 insertions(+)
diff --git a/drivers/bus/fslmc/fslmc_vfio.c b/drivers/bus/fslmc/fslmc_vfio.c
index 6ebf779..d8e3add 100644
--- a/drive
Eventdev requires portal interrupts to handle timeout in the
event dequeue. This patch provides mechanism to enable the
portal interrupts.
Signed-off-by: Nipun Gupta
---
drivers/bus/fslmc/portal/dpaa2_hw_dpio.c | 108 -
drivers/bus/fslmc/portal/dpaa2_hw_pvt.h
1 - 100 of 209 matches
Mail list logo