Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq

2021-04-24 Thread Richael Zhuang
> -Original Message- > From: Burakov, Anatoly > Sent: Friday, April 23, 2021 7:38 PM > To: Richael Zhuang ; dev@dpdk.org > Cc: nd ; David Hunt > Subject: Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq > > On 22-Apr-21 11:02 AM, Richael Zhuang wrote: > > > > > >>

[dpdk-dev] [PATCH v4 0/8] baseband: add NXP LA12xx driver

2021-04-24 Thread Hemant Agrawal
This series introduces the BBDEV LA12xx poll mode driver (PMD) to support an implementation for offloading High Phy processing functions like LDPC Encode / Decode 5GNR wireless acceleration function, using PCI based LA12xx Software defined radio. Please check the documentation patch for more info.

[dpdk-dev] [PATCH v4 1/8] bbdev: add network order data capability

2021-04-24 Thread Hemant Agrawal
This patch intoduces a new capability of the bbdev device to process the LDPC data in network byte order. Signed-off-by: Hemant Agrawal --- doc/guides/bbdevs/features/default.ini | 1 + doc/guides/prog_guide/bbdev.rst| 6 ++ lib/bbdev/rte_bbdev_op.h | 8 ++-- 3 file

[dpdk-dev] [PATCH v4 2/8] baseband: introduce NXP LA12xx driver

2021-04-24 Thread Hemant Agrawal
This patch introduce the baseband device drivers for NXP's LA1200 series software defined baseband modem. Signed-off-by: Nipun Gupta Signed-off-by: Hemant Agrawal --- drivers/baseband/la12xx/bbdev_la12xx.c| 109 ++ .../baseband/la12xx/bbdev_la12xx_pmd_logs.h | 26

[dpdk-dev] [PATCH v4 3/8] baseband/la12xx: add devargs for max queues

2021-04-24 Thread Hemant Agrawal
This patch adds dev args to take max queues as input Signed-off-by: Nipun Gupta Signed-off-by: Hemant Agrawal --- drivers/baseband/la12xx/bbdev_la12xx.c | 72 +- 1 file changed, 70 insertions(+), 2 deletions(-) diff --git a/drivers/baseband/la12xx/bbdev_la12xx.c b/dri

[dpdk-dev] [PATCH v4 4/8] baseband/la12xx: add support for multiple modems

2021-04-24 Thread Hemant Agrawal
This patch add support for multiple modems by assigning a modem id as dev args in vdev creation. Signed-off-by: Hemant Agrawal --- drivers/baseband/la12xx/bbdev_la12xx.c | 64 +++--- drivers/baseband/la12xx/bbdev_la12xx.h | 56 +++ drivers/baseband/la12xx/

[dpdk-dev] [PATCH v4 5/8] baseband/la12xx: add queue and modem config support

2021-04-24 Thread Hemant Agrawal
This patch add support for connecting with modem and creating the ipc channel as queues with modem for the exchange of data. Signed-off-by: Nipun Gupta Signed-off-by: Hemant Agrawal --- doc/guides/bbdevs/index.rst| 1 + doc/guides/bbdevs/la12xx.rst | 81 +++ doc

[dpdk-dev] [PATCH v4 6/8] baseband/la12xx: add enqueue and dequeue support

2021-04-24 Thread Hemant Agrawal
Add support for enqueue and dequeue the LDPC enc/dec from the modem device. Signed-off-by: Nipun Gupta Signed-off-by: Hemant Agrawal --- doc/guides/bbdevs/features/la12xx.ini | 14 + doc/guides/bbdevs/la12xx.rst | 46 +++ drivers/baseband/la12xx/bbdev_la12xx.c | 334 +++

[dpdk-dev] [PATCH v4 7/8] app/bbdev: enable la12xx for bbdev

2021-04-24 Thread Hemant Agrawal
this patch adds la12xx driver in test bbdev Signed-off-by: Hemant Agrawal --- app/test-bbdev/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test-bbdev/meson.build b/app/test-bbdev/meson.build index 57335641f0..75fd87ae2d 100644 --- a/app/test-bbdev/meson.build +++ b/app/t

[dpdk-dev] [PATCH v4 8/8] app/bbdev: add test vectors for transport blocks

2021-04-24 Thread Hemant Agrawal
From: Nipun Gupta This patch adds two test vectors for transport block in network byte order: - LDPC encode for Transport Block - LDPC decode for Transport block Signed-off-by: Nipun Gupta --- app/test-bbdev/test_vectors/ldpc_dec_tb.data | 122 +++ app/test-bbdev/test_vectors/l

Re: [dpdk-dev] [PATCH v4 1/8] bbdev: add network order data capability

2021-04-24 Thread Chautru, Nicolas
+ Thomas, Akhil In case this is for release 21.05 isn't it a bit late for introducing a new API change? > -Original Message- > From: Hemant Agrawal > Sent: Saturday, April 24, 2021 3:37 AM > To: dev@dpdk.org; gak...@marvell.com; Chautru, Nicolas > > Cc: david.march...@redhat.com; Hema

Re: [dpdk-dev] [PATCH v4 8/8] app/bbdev: add test vectors for transport blocks

2021-04-24 Thread Chautru, Nicolas
> -Original Message- > From: Hemant Agrawal > Sent: Saturday, April 24, 2021 3:37 AM > > From: Nipun Gupta > > This patch adds two test vectors for transport block in network byte > order: > - LDPC encode for Transport Block > - LDPC decode for Transport block > > Signed-off-by: Nip

Re: [dpdk-dev] [PATCH v4 5/8] baseband/la12xx: add queue and modem config support

2021-04-24 Thread Chautru, Nicolas
> -Original Message- > From: Hemant Agrawal > Sent: Saturday, April 24, 2021 3:37 AM > Subject: [PATCH v4 5/8] baseband/la12xx: add queue and modem config > support > > This patch add support for connecting with modem and creating the ipc > channel as queues with modem for the exchange

Re: [dpdk-dev] [PATCH] bnxt: skip getting statistics for queues not started

2021-04-24 Thread Ajit Khaparde
On Wed, Apr 21, 2021 at 4:09 PM Stephen Hemminger wrote: > > An application using rte_flow may define a large number of queues > but only use a small subset of them at any one time. > > Since querying the status of each queue requires a request/spin/reply > with the firmware, optimize by skipping

Re: [dpdk-dev] [PATCH] net/bnxt: remove unnecessary forward declaration

2021-04-24 Thread Ajit Khaparde
On Wed, Apr 21, 2021 at 8:50 PM Kalesh A P wrote: > > From: Kalesh AP > > This patch removes several redundant forward declarations of > functions and structure. > > Fixes: 0b42b92ae429 ("net/bnxt: fix xstats by id") > Fixes: cf4f055a6578 ("net/bnxt: remove EEM system memory support") > Cc: sta..

Re: [dpdk-dev] [PATCH] net/bnxt: fix to remove unused function parameters

2021-04-24 Thread Ajit Khaparde
On Thu, Apr 22, 2021 at 9:57 PM Kalesh A P wrote: > > From: Kalesh AP > > 1. Clean up unused function parameters. > 2. Declare no external referenced function as static and remove >their prototye from the header file. > > Fixes: ec77c6298301 ("net/bnxt: add stats context allocation") > Fixes:

Re: [dpdk-dev] [RFC] net/ionic: update MTU calculations

2021-04-24 Thread Andrew Boyer
> On Apr 23, 2021, at 7:42 AM, Ferruh Yigit wrote: > > On 12/15/2020 12:26 PM, Ferruh Yigit wrote: >> On 12/10/2020 2:46 AM, Andrew Boyer wrote: >>> This RFC is in response to the threads about testpmd mtu settings >>> and the deprecation of max-rx-pkt-len. >>> >>> It took us a while to figur

Re: [dpdk-dev] [PATCH] net/bnxt: drop the unused attribute

2021-04-24 Thread Ajit Khaparde
On Thu, Apr 22, 2021 at 10:00 PM Kalesh A P wrote: > > From: Kalesh AP > > Remove "__rte_unused" instances that are wrongly marked. > > Signed-off-by: Kalesh AP > Reviewed-by: Somnath Kotur > Reviewed-by: Ajit Khaparde Patch applied to dpdk-next-net-brcm. > --- > drivers/net/bnxt/bnxt_reps.c

Re: [dpdk-dev] [PATCH] net/bnxt: use bnxt_ prefix on global function

2021-04-24 Thread Ajit Khaparde
On Fri, Apr 23, 2021 at 2:04 PM Stephen Hemminger wrote: > > When statically linked the function prandom_bytes is exposed > and might conflict with something in application. All driver > functions should use same prefix. > > Fixes: 9738793f28ec ("net/bnxt: add VNIC functions and structs") > Signed

Re: [dpdk-dev] [PATCH v2] doc: fix formatting in testpmd user guide

2021-04-24 Thread Li, Xiaoyun
Hi > -Original Message- > From: Yigit, Ferruh > Sent: Saturday, April 24, 2021 00:30 > To: Li, Xiaoyun ; Ori Kam ; Bing Zhao > > Cc: Yigit, Ferruh ; dev@dpdk.org; Ajit Khaparde > > Subject: [PATCH v2] doc: fix formatting in testpmd user guide > > From: Ajit Khaparde > > Fix formattin

Re: [dpdk-dev] [PATCH 1/2] app/testpmd: fix integer overflow during get DCB conf

2021-04-24 Thread Li, Xiaoyun
Hi > -Original Message- > From: Min Hu (Connor) > Sent: Thursday, April 22, 2021 15:04 > To: dev@dpdk.org > Cc: Yigit, Ferruh ; Li, Xiaoyun > Subject: [PATCH 1/2] app/testpmd: fix integer overflow during get DCB conf > > From: Chengchang Tang > > In C, constant is treated as integer.

Re: [dpdk-dev] [PATCH v1] raw/ifpga: fix ifpga device name format

2021-04-24 Thread Zhang, Qi Z
> -Original Message- > From: Xu, Rosen > Sent: Thursday, April 22, 2021 7:13 PM > To: Huang, Wei ; dev@dpdk.org; Zhang, Qi Z > > Cc: sta...@dpdk.org; Zhang, Tianfei ; Yigit, Ferruh > > Subject: RE: [PATCH v1] raw/ifpga: fix ifpga device name format > > Hi, > > > -Original Messag

Re: [dpdk-dev] [PATCH 2/2] app/testpmd: fix max queue number when configure Tx offloads

2021-04-24 Thread Li, Xiaoyun
> -Original Message- > From: Min Hu (Connor) > Sent: Thursday, April 22, 2021 15:04 > To: dev@dpdk.org > Cc: Yigit, Ferruh ; Li, Xiaoyun > Subject: [PATCH 2/2] app/testpmd: fix max queue number when configure Tx > offloads > > From: Chengchang Tang > > When txq offload is configured,

Re: [dpdk-dev] [PATCH v5] net/iavf: fix hash configuration on i40e VF

2021-04-24 Thread Xing, Beilei
> -Original Message- > From: Zhang, AlvinX > Sent: Thursday, April 22, 2021 1:08 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Zhang, AlvinX ; sta...@dpdk.org > Subject: [PATCH v5] net/iavf: fix hash configuration on i40e VF > > In i40evf PMD, the VF directly accesses the h

[dpdk-dev] [PATCH v2] net/i40e: extend VF reset waiting time

2021-04-24 Thread Wenjun Wu
When resetting VF, VF will issue reset command to PF, wait a fixed amount of time, and assume VF reset is done. However, due to the change of dpdk related library content, the original delay is not enough. When we use DPDK PF instead of kernel PF, it may cause VF start error. This patch extend VF

Re: [dpdk-dev] [PATCH v2] net/i40e: extend VF reset waiting time

2021-04-24 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Wenjun Wu > Sent: Sunday, April 25, 2021 10:03 AM > To: dev@dpdk.org; Xing, Beilei > Cc: Wu, Wenjun1 > Subject: [dpdk-dev] [PATCH v2] net/i40e: extend VF reset waiting time > > When resetting VF, VF will issue reset command to PF, wait a

Re: [dpdk-dev] [PATCH 1/2] app/testpmd: fix integer overflow during get DCB conf

2021-04-24 Thread Min Hu (Connor)
在 2021/4/25 10:05, Li, Xiaoyun 写道: Hi -Original Message- From: Min Hu (Connor) Sent: Thursday, April 22, 2021 15:04 To: dev@dpdk.org Cc: Yigit, Ferruh ; Li, Xiaoyun Subject: [PATCH 1/2] app/testpmd: fix integer overflow during get DCB conf From: Chengchang Tang In C, constant is

[dpdk-dev] [Bug 687] [dpdk-21.05] unit_tests_power/power_cpufreq: unit test failed

2021-04-24 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=687 Bug ID: 687 Summary: [dpdk-21.05] unit_tests_power/power_cpufreq: unit test failed Product: DPDK Version: unspecified Hardware: x86 OS: Linux Status: UNC

[dpdk-dev] [PATCH] net/iavf: fix PF returning error

2021-04-24 Thread Alvin Zhang
When the command sent by VF to PF fails, iavf may need to run different code paths according to the specific reason of the failure (not supported or other reasons). This patch adds support of identifying PF return error type. Fixes: 22b123a36d07 ("net/avf: initialize PMD") Cc: sta...@dpdk.org Si

[dpdk-dev] [PATCH v6] net/iavf: fix RSS configuration on i40e VF

2021-04-24 Thread Alvin Zhang
The iavf does not support configuring RSS type on i40e VF, because the i40e kernel driver does not support VIRTCHNL_VF_OFFLOAD_ADV_RSS_PF capability. This patch adds support of RSS type configuration for i40e VF by sending VIRTCHNL_OP_SET_RSS_HENA message to the PF after checking that the PF does

[dpdk-dev] [PATCH] net/ice: fix mbuf fast freeing

2021-04-24 Thread Alvin Zhang
As i40e support per queue MBUF_FAST_FREE, ice should have the same implemenation. Fixes: 6eac0b7fde95 ("net/ice: support advance Rx/Tx") Cc: sta...@dpdk.org Signed-off-by: Alvin Zhang --- drivers/net/ice/ice_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ne

Re: [dpdk-dev] [PATCH v6] net/iavf: fix RSS configuration on i40e VF

2021-04-24 Thread Xing, Beilei
> -Original Message- > From: Zhang, AlvinX > Sent: Sunday, April 25, 2021 1:09 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Zhang, AlvinX ; sta...@dpdk.org > Subject: [PATCH v6] net/iavf: fix RSS configuration on i40e VF > > The iavf does not support configuring RSS type o

[dpdk-dev] [PATCH v2] net/ice: fix mbuf fast freeing

2021-04-24 Thread Alvin Zhang
As i40e support per queue MBUF_FAST_FREE, ice should have the same implementation. Fixes: 6eac0b7fde95 ("net/ice: support advance Rx/Tx") Cc: sta...@dpdk.org Signed-off-by: Alvin Zhang --- drivers/net/ice/ice_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/n

Re: [dpdk-dev] [PATCH v6] net/iavf: fix RSS configuration on i40e VF

2021-04-24 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Xing, Beilei > Sent: Sunday, April 25, 2021 1:17 PM > To: Zhang, AlvinX ; Wu, Jingjing > > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v6] net/iavf: fix RSS configuration on i40e VF > > > > > -Original Message-

Re: [dpdk-dev] [PATCH v2] net/ice: fix mbuf fast freeing

2021-04-24 Thread Zhang, Qi Z
> -Original Message- > From: Zhang, AlvinX > Sent: Sunday, April 25, 2021 1:19 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Zhang, AlvinX ; sta...@dpdk.org > Subject: [PATCH v2] net/ice: fix mbuf fast freeing > > As i40e support per queue MBUF_FAST_FREE, ice should have the same > impleme

[dpdk-dev] [PATCH v3 1/2] spinlock: use wfe to reduce contention on aarch64

2021-04-24 Thread Ruifeng Wang
From: Gavin Hu In acquiring a spinlock, cores repeatedly poll the lock variable. This is replaced by rte_wait_until_equal API. Running the micro benchmarking and the testpmd and l3fwd traffic tests on ThunderX2, Ampere eMAG80 and Arm N1SDP, everything went well and no notable performance gain no

[dpdk-dev] Use WFE for spinlock and ring

2021-04-24 Thread Ruifeng Wang
The rte_wait_until_equal_xxx APIs abstract the functionality of 'polling for a memory location to become equal to a given value'[1]. Use the API for the rte spinlock and ring implementations. With the wait until equal APIs being stable, changes will not impact ABI. [1] http://patches.dpdk.org/cov

[dpdk-dev] [PATCH v3 2/2] ring: use wfe to wait for ring tail update on aarch64

2021-04-24 Thread Ruifeng Wang
Instead of polling for tail to be updated, use wfe instruction. Signed-off-by: Gavin Hu Signed-off-by: Ruifeng Wang Reviewed-by: Steve Capper Reviewed-by: Ola Liljedahl Reviewed-by: Honnappa Nagarahalli Acked-by: Konstantin Ananyev --- lib/ring/rte_ring_c11_pvt.h | 4 ++-- lib/ring/rte_

Re: [dpdk-dev] [PATCH] net/iavf: fix PF returning error

2021-04-24 Thread Xing, Beilei
> -Original Message- > From: Zhang, AlvinX > Sent: Sunday, April 25, 2021 1:05 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Zhang, AlvinX ; sta...@dpdk.org > Subject: [PATCH] net/iavf: fix PF returning error > > When the command sent by VF to PF fails, iavf may need to run

Re: [dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2021-04-24 Thread Ruifeng Wang
> -Original Message- > From: David Marchand > Sent: Thursday, March 25, 2021 10:58 PM > To: Honnappa Nagarahalli > Cc: dev ; nd ; tho...@monjalon.net; > jer...@marvell.com; Ruifeng Wang ; Phil Yang > ; Joyce Kong ; Ananyev, > Konstantin > Subject: Re: [dpdk-dev] [PATCH v2 0/2] Use WFE fo

Re: [dpdk-dev] [PATCH v2] doc: fix formatting in testpmd user guide

2021-04-24 Thread Bing Zhao
Hi, > -Original Message- > From: Ferruh Yigit > Sent: Saturday, April 24, 2021 12:30 AM > To: Xiaoyun Li ; Ori Kam ; > Bing Zhao > Cc: Ferruh Yigit ; dev@dpdk.org; Ajit > Khaparde > Subject: [PATCH v2] doc: fix formatting in testpmd user guide > > External email: Use caution opening li

[dpdk-dev] [PATCH v2] common/iavf: fix wrong order of protocol header types

2021-04-24 Thread Ting Xu
The new virtchnl protocol header types for IPv4 and IPv6 fragment are not added in order, which will break ABI. Move them to the end of the list. Signed-off-by: Ting Xu Fixes: e6a42fd9158b ("common/iavf: add protocol header for IP fragment") Cc: sta...@dpdk.org --- drivers/common/iavf/virtchnl.h