Re: [dpdk-dev] [PATCH] net/mlx5: fix order of items in neon scatter func

2019-06-02 Thread Shahaf Shuler
Monday, May 27, 2019 9:50 AM, Dekel Peled: > Subject: RE: [dpdk-dev] [PATCH] net/mlx5: fix order of items in neon scatter > func > > PSB, thanks. > > > -Original Message- > > From: Shahaf Shuler > > Sent: Sunday, May 26, 2019 9:49 PM > > To: Dekel Peled ; Yongseok Koh > > > > Cc: dev@dpd

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix event handler uninstall

2019-06-02 Thread Shahaf Shuler
Monday, May 27, 2019 7:59 AM, Viacheslav Ovsiienko: > Subject: [dpdk-dev] [PATCH v2] net/mlx5: fix event handler uninstall > > When device is being closed and tries to unregister interrupt callback, there > is > a chance the handler is still active (called in context of > eal_intr_thread_main >

Re: [dpdk-dev] [PATCH v5 0/3] add actions to modify header fields

2019-06-02 Thread Dekel Peled
Hi, Please review/comment on v5 of this series so it can be accepted. http://patches.dpdk.org/cover/52974/ Regards, Dekel > -Original Message- > From: Dekel Peled > Sent: Monday, April 22, 2019 2:23 PM > To: Adrien Mazarguil ; > wenzhuo...@intel.com; jingjing...@intel.com; > bernard.ir

Re: [dpdk-dev] [PATCH] net/softnic: fix pipeline time calculation

2019-06-02 Thread Wang, Xiao W
> -Original Message- > From: Singh, Jasvinder > Sent: Friday, May 31, 2019 10:46 PM > To: Wang, Xiao W > Cc: dev@dpdk.org; Dumitrescu, Cristian ; > sta...@dpdk.org > Subject: RE: [PATCH] net/softnic: fix pipeline time calculation > > > > > -Original Message- > > From: Wang, X

[dpdk-dev] [Bug 290] RX packets in Virtio are corrupted in case of split to several mbufs

2019-06-02 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=290 Bug ID: 290 Summary: RX packets in Virtio are corrupted in case of split to several mbufs Product: DPDK Version: 19.05 Hardware: All OS: All Status: CONF

[dpdk-dev] [PATCH v1 01/58] net/octeontx2: add build infrastructure

2019-06-02 Thread jerinj
From: Jerin Jacob Adding bare minimum PMD library and doc build infrastructure. Signed-off-by: Jerin Jacob Signed-off-by: Kiran Kumar K Signed-off-by: Pavan Nikhilesh --- config/common_base| 5 +++ doc/guides/nics/features/octeontx2.ini| 8 doc/guid

[dpdk-dev] [PATCH v1 00/58] OCTEON TX2 Ethdev driver

2019-06-02 Thread jerinj
From: Jerin Jacob This patchset adds support for OCTEON TX2 ethdev driver. This patch set is depended on "OCTEON TX2 common and mempool driver" series. http://mails.dpdk.org/archives/dev/2019-June/133329.html This patches series also available at https://github.com/jerinjacobk/dpdk-octeontx2-n

[dpdk-dev] [PATCH v1 04/58] net/octeontx2: add devargs parsing functions

2019-06-02 Thread jerinj
From: Jerin Jacob add various devargs command line options supported by this driver. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh Signed-off-by: Kiran Kumar K --- drivers/net/octeontx2/Makefile | 3 +- drivers/net/octeontx2/meson.

[dpdk-dev] [PATCH v1 03/58] net/octeontx2: add device init and uninit

2019-06-02 Thread jerinj
From: Jerin Jacob Add basic init and uninit function which includes attaching LF device to probed PCIe device. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Sunil Kumar Kori Signed-off-by: Vamsi Attunuru --- drivers/net/octeontx2/Makefile | 1 + drivers/n

[dpdk-dev] [PATCH v1 02/58] net/octeontx2: add ethdev probe and remove

2019-06-02 Thread jerinj
From: Jerin Jacob add basic PCIe ethdev probe and remove. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_ethdev.c | 93 + drivers/net/octeontx2/otx2_ethdev.h | 27 + 2 files changed, 120 insertions(+) create mode

[dpdk-dev] [PATCH v1 07/58] net/octeontx2: add device configure operation

2019-06-02 Thread jerinj
From: Jerin Jacob Add device configure operation. This would call lf_alloc mailbox to allocate a NIX LF and upon return, AF will return the attributes for the select LF. Signed-off-by: Jerin Jacob Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_e

[dpdk-dev] [PATCH v1 06/58] net/octeontx2: add info get operation

2019-06-02 Thread jerinj
From: Jerin Jacob Add device information get operation. Signed-off-by: Jerin Jacob Signed-off-by: Vamsi Attunuru Signed-off-by: Harman Kalra --- doc/guides/nics/features/octeontx2.ini | 4 ++ doc/guides/nics/features/octeontx2_vec.ini | 4 ++ doc/guides/nics/features/octeontx2_vf.ini

[dpdk-dev] [PATCH v1 08/58] net/octeontx2: handle queue specific error interrupts

2019-06-02 Thread jerinj
From: Jerin Jacob Handle queue specific error interrupts. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_ethdev.c | 16 +- drivers/net/octeontx2/otx2_ethdev.h | 9 ++ drivers/net/octeontx2/otx2_ethdev_irq.c | 191

[dpdk-dev] [PATCH v1 05/58] net/octeontx2: handle device error interrupts

2019-06-02 Thread jerinj
From: Jerin Jacob Handle device specific error and ras interrupts. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Harman Kalra --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net/octeontx2/otx2_ethdev.c

[dpdk-dev] [PATCH v1 09/58] net/octeontx2: add context debug utils

2019-06-02 Thread jerinj
From: Jerin Jacob Add RQ,SQ,CQ context and CQE structure dump utils. Signed-off-by: Jerin Jacob Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile| 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net/octeontx2/otx2_ethdev.h | 4 + drivers/net/

[dpdk-dev] [PATCH v1 11/58] net/octeontx2: add link stats operations

2019-06-02 Thread jerinj
From: Vamsi Attunuru Add link stats related operations and mark respective items in the documentation. Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/nics/fea

[dpdk-dev] [PATCH v1 10/58] net/octeontx2: add register dump support

2019-06-02 Thread jerinj
From: Kiran Kumar K Add register dump support and mark Registers dump in features. Signed-off-by: Kiran Kumar K Signed-off-by: Jerin Jacob --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini |

[dpdk-dev] [PATCH v1 13/58] net/octeontx2: add extended stats operations

2019-06-02 Thread jerinj
From: Kiran Kumar K Add extended operations and updated the feature list. Signed-off-by: Kiran Kumar K Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 +

[dpdk-dev] [PATCH v1 12/58] net/octeontx2: add basic stats operation

2019-06-02 Thread jerinj
From: Kiran Kumar K Add basic stat operation and updated the feature list. Signed-off-by: Kiran Kumar K Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/nics/features/octeontx2_vf.ini | 2 +

[dpdk-dev] [PATCH v1 14/58] net/octeontx2: add promiscuous and allmulticast mode

2019-06-02 Thread jerinj
From: Vamsi Attunuru Add promiscuous and allmulticast mode for PF devices and update the respective feature list. Signed-off-by: Vamsi Attunuru Signed-off-by: Sunil Kumar Kori --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + drivers/net

[dpdk-dev] [PATCH v1 15/58] net/octeontx2: add unicast MAC filter

2019-06-02 Thread jerinj
From: Sunil Kumar Kori Add unicast MAC filter for PF device and update the respective feature list. Signed-off-by: Sunil Kumar Kori Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + drivers/net/octeontx2/otx

[dpdk-dev] [PATCH v1 16/58] net/octeontx2: add RSS support

2019-06-02 Thread jerinj
From: Vamsi Attunuru Add RSS support and expose RSS related functions to implement RSS action for rte_flow driver. Signed-off-by: Vamsi Attunuru Signed-off-by: Kiran Kumar K --- doc/guides/nics/features/octeontx2.ini | 4 + doc/guides/nics/features/octeontx2_vec.ini | 4 + doc/guides/

[dpdk-dev] [PATCH v1 17/58] net/octeontx2: add Rx queue setup and release

2019-06-02 Thread jerinj
From: Jerin Jacob Add Rx queue setup and release. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru --- drivers/net/octeontx2/otx2_ethdev.c | 310 drivers/net/octeontx2/otx2_ethdev.h | 51 + 2 files changed, 361 insert

[dpdk-dev] [PATCH v1 18/58] net/octeontx2: add Tx queue setup and release

2019-06-02 Thread jerinj
From: Jerin Jacob Add Tx queue setup and release. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_ethdev.c | 384 +++- drivers/net/octeontx2/otx2_ethdev.h | 24 ++ drivers/net/octeontx2/otx2_tx.h | 28 ++ 3 files changed

[dpdk-dev] [PATCH v1 19/58] net/octeontx2: handle port reconfigure

2019-06-02 Thread jerinj
From: Vamsi Attunuru setup tx & rx queues with the previous configuration during port reconfig, it handles cases like port reconfigure without reconfiguring tx & rx queues. Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_ethdev.c | 180 +++

[dpdk-dev] [PATCH v1 21/58] net/octeontx2: introduce traffic manager

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Introduce traffic manager infra and default hierarchy creation. Upon ethdev configure, a default hierarchy is created with one-to-one mapped tm nodes. This topology will be overridden when user explicitly creates and commits a new hierarchy using rte_tm interface. Signed

[dpdk-dev] [PATCH v1 23/58] net/octeontx2: configure TM HW resources

2019-06-02 Thread jerinj
From: Nithin Dabilpuram This patch sets up and configure hierarchy in hw nodes. Since all the registers are with RVU AF, register configuration is also done using mbox communication. Signed-off-by: Nithin Dabilpuram Signed-off-by: Krzysztof Kanas --- drivers/net/octeontx2/otx2_tm.c | 504

[dpdk-dev] [PATCH v1 20/58] net/octeontx2: add queue start and stop operations

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Add queue start and stop operations. Tx queue needs to update the flow control value, Which will be added in sub subsequent patch. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/feat

[dpdk-dev] [PATCH v1 22/58] net/octeontx2: alloc and free TM HW resources

2019-06-02 Thread jerinj
From: Krzysztof Kanas Allocate and free shaper/scheduler hardware resources for nodes of hirearchy levels in sw. Signed-off-by: Krzysztof Kanas Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_tm.c | 350 1 file changed, 350 insertions(+) diff

[dpdk-dev] [PATCH v1 26/58] net/octeontx2: add link status set operations

2019-06-02 Thread jerinj
From: Vamsi Attunuru Add support for setting the link up and down. Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_ethdev.c | 2 ++ drivers/net/octeontx2/otx2_ethdev.h | 2 ++ drivers/net/octeontx2/otx2_link.c | 49

[dpdk-dev] [PATCH v1 25/58] net/octeontx2: add ptype support

2019-06-02 Thread jerinj
From: Jerin Jacob The fields from CQE needs to be converted to ptype and rx ol flags in mbuf. This patch adds create lookup memory for those items to be used in Fastpath. Signed-off-by: Jerin Jacob Signed-off-by: Kiran Kumar K Signed-off-by: Harman Kalra --- doc/guides/nics/features/octeontx

[dpdk-dev] [PATCH v1 24/58] net/octeontx2: enable Tx through traffic manager

2019-06-02 Thread jerinj
From: Krzysztof Kanas This patch enables pkt transmit through traffic manager hierarchy by clearing software XOFF on the nodes and linking tx queues to corresponding leaf nodes. It also adds support to start and stop tx queue using traffic manager. Signed-off-by: Krzysztof Kanas Signed-off-by:

[dpdk-dev] [PATCH v1 28/58] net/octeontx2: add Rx and Tx descriptor operations

2019-06-02 Thread jerinj
From: Jerin Jacob Add Rx and Tx queue descriptor related operations. Signed-off-by: Jerin Jacob Signed-off-by: Kiran Kumar K --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/nics/features/octeontx2_vf.ini | 2 + drivers/net

[dpdk-dev] [PATCH v1 29/58] net/octeontx2: add module EEPROM dump

2019-06-02 Thread jerinj
From: Vamsi Attunuru add module EEPROM dump operation. Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + drivers/net/octeontx2/otx2_ethdev.c| 2 + d

[dpdk-dev] [PATCH v1 27/58] net/octeontx2: add queue info and pool supported operations

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Add Rx and Tx queue info get and pool ops supported operations. Signed-off-by: Nithin Dabilpuram Signed-off-by: Kiran Kumar K --- drivers/net/octeontx2/otx2_ethdev.c | 3 ++ drivers/net/octeontx2/otx2_ethdev.h | 5 +++ drivers/net/octeontx2/otx2_ethdev_ops.c

[dpdk-dev] [PATCH v1 31/58] net/octeontx2: add PTP base support

2019-06-02 Thread jerinj
From: Harman Kalra Add PTP enable and disable operations. Signed-off-by: Harman Kalra Signed-off-by: Zyta Szpak --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net/octeontx2/otx2_ethdev.c | 22 - drivers/net/octeontx2/otx2_ethdev.h |

[dpdk-dev] [PATCH v1 32/58] net/octeontx2: add remaining PTP operations

2019-06-02 Thread jerinj
From: Harman Kalra Add remaining PTP configuration/slowpath operations. Timesync feature is available only for PF devices. Signed-off-by: Harman Kalra Signed-off-by: Zyta Szpak --- doc/guides/nics/features/octeontx2.ini | 2 + drivers/net/octeontx2/otx2_ethdev.c| 6 ++ drivers/net/oct

[dpdk-dev] [PATCH v1 30/58] net/octeontx2: add flow control support

2019-06-02 Thread jerinj
From: Vamsi Attunuru Add flow control operations and exposed otx2_nix_update_flow_ctrl_mode() to enable on the configured mode in dev_start(). Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeon

[dpdk-dev] [PATCH v1 33/58] net/octeontx2: introducing flow driver

2019-06-02 Thread jerinj
From: Kiran Kumar K Introducing flow infra for octeontx2. This will be used to maintain rte_flow rules. Create, destroy, validate,query, flush, isolate flow operations will be supported. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_ethdev.h | 7 +-

[dpdk-dev] [PATCH v1 36/58] net/octeontx2: add flow MCAM utility functions

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding MCAM utility functions to alloc and write the entries. These will be used to arrange the flow rules based on priority. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.h | 6 +- drivers/net/octeontx2/otx2_flow_util

[dpdk-dev] [PATCH v1 34/58] net/octeontx2: flow utility functions

2019-06-02 Thread jerinj
From: Kiran Kumar K First pass rte_flow utility functions for octeontx2. These will be used to communicate with AF driver. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net

[dpdk-dev] [PATCH v1 37/58] net/octeontx2: add flow parsing for outer layers

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding functionality to parse outer layers from ld to lh. These will be used parse outer layers L2, L3, L4 and tunnel types. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build

[dpdk-dev] [PATCH v1 35/58] net/octeontx2: flow mailbox utility

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding mailbox utility functions for rte_flow. These will be used to alloc, reserve and write the entries to the device on request. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.h | 6 +- drivers/net/octeontx2/otx2_flo

[dpdk-dev] [PATCH v1 42/58] net/octeontx2: add flow init and fini

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding the flow init and fini functionality. These API will be called from dev init and will initialize and de-initialize the flow related memory. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.c | 315 +

[dpdk-dev] [PATCH v1 40/58] net/octeontx2: add flow operations

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding the initial flow ops like flow_create and flow_validate. These will be used to alloc and write flow rule to the device and validate the flow rule. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile| 1 + drivers/net/oct

[dpdk-dev] [PATCH v1 43/58] net/octeontx2: connect flow API to ethdev ops

2019-06-02 Thread jerinj
From: Vivek Sharma Connect rte_flow driver ops to ethdev via .filter_ctrl op. Signed-off-by: Vivek Sharma Signed-off-by: Kiran Kumar K --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + d

[dpdk-dev] [PATCH v1 38/58] net/octeontx2: adding flow parsing for inner layers

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding functionality to parse inner layers from la to lc. These will be used to parse inner layers L2, L3, L4 types. Signed-off-by: Kiran Kumar K --- drivers/net/octeontx2/otx2_flow_parse.c | 202 1 file changed, 202 insertions(+) diff --git a/driv

[dpdk-dev] [PATCH v1 39/58] net/octeontx2: add flow actions support

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding support to parse flow actions like drop, count, mark, rss, queue. On egress side, only drop and count actions were supported. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow_parse.c | 276 drivers

[dpdk-dev] [PATCH v1 41/58] net/octeontx2: add additional flow operations

2019-06-02 Thread jerinj
From: Kiran Kumar K Adding the initial flow ops like flow_create and flow_validate. These will be used to alloc and write flow rule to device and validate the flow rule. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.c | 197 ++

[dpdk-dev] [PATCH v1 44/58] net/octeontx2: implement VLAN utility functions

2019-06-02 Thread jerinj
From: Vivek Sharma Implement accessory functions needed for VLAN functionality. Introduce VLAN related structures as well. Maximum Vtag insertion size is controlled by SMQ configuration. This patch also configure SMQ for supporting upto double vtag insertion. Signed-off-by: Vivek Sharma --- d

[dpdk-dev] [PATCH v1 48/58] net/octeontx2: add FW version get operation

2019-06-02 Thread jerinj
From: Vamsi Attunuru Add firmware version get operation. Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + drivers/net/octeontx2/otx2_ethdev.c| 1 +

[dpdk-dev] [PATCH v1 45/58] net/octeontx2: support VLAN offloads

2019-06-02 Thread jerinj
From: Vivek Sharma Support configuring VLAN offloads for an ethernet device. Signed-off-by: Vivek Sharma --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/nics/features/octeontx2_vf.ini | 2 + drivers/net/octeontx2/otx2_et

[dpdk-dev] [PATCH v1 47/58] net/octeontx2: support VLAN TPID and PVID for Tx

2019-06-02 Thread jerinj
From: Vivek Sharma Implement support for setting VLAN TPID and PVID for Tx packets. Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_ethdev.c | 2 + drivers/net/octeontx2/otx2_ethdev.h | 5 + drivers/net/octeontx2/otx2_vlan.c | 191 3 files changed,

[dpdk-dev] [PATCH v1 51/58] net/octeontx2: add Rx vector version

2019-06-02 Thread jerinj
From: Jerin Jacob Add vector version of packet Receive function. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_rx.c | 259 +++- 1 file changed, 258 insertions(+), 1 deletion(-) diff --git a/drivers/net/octeontx2/otx2_rx

[dpdk-dev] [PATCH v1 49/58] net/octeontx2: add Rx burst support

2019-06-02 Thread jerinj
From: Jerin Jacob Add Rx burst support. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh Signed-off-by: Harman Kalra --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 2 +- drivers/net/octeontx2/otx2_ethdev.c |

[dpdk-dev] [PATCH v1 46/58] net/octeontx2: support VLAN filters

2019-06-02 Thread jerinj
From: Vivek Sharma Support setting up VLAN filters so as to allow tagged packet's reception after VLAN HW Filter offload is enabled. Signed-off-by: Vivek Sharma --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/

[dpdk-dev] [PATCH v1 53/58] net/octeontx2: add Tx multi segment version

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Add multi segment version of packet Transmit function. Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh --- drivers/net/octeontx2/otx2_ethdev.h | 4 ++ drivers/net/octeontx2/otx2_tx.c | 58 + drivers/net/octeontx2/otx2_tx.h |

[dpdk-dev] [PATCH v1 50/58] net/octeontx2: add Rx multi segment version

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Add multi segment version of packet Receive function. Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini |

[dpdk-dev] [PATCH v1 55/58] net/octeontx2: add device start operation

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Add device start operation and update the correct function pointers for Rx and Tx burst functions. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru Signed-off-by: Jerin Jacob --- drivers/net/octeontx2/otx2_ethdev.c | 180 dri

[dpdk-dev] [PATCH v1 54/58] net/octeontx2: add Tx vector version

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Add vector version of packet transmit function. Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh --- drivers/net/octeontx2/otx2_tx.c | 883 +++- 1 file changed, 882 insertions(+), 1 deletion(-) diff --git a/drivers/net/octeon

[dpdk-dev] [PATCH v1 52/58] net/octeontx2: add Tx burst support

2019-06-02 Thread jerinj
From: Jerin Jacob Add Tx burst support. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh Signed-off-by: Harman Kalra --- doc/guides/nics/features/octeontx2.ini | 5 + doc/guides/nics/features/octeontx2_vec.ini | 5 + doc/guides/nics/features

[dpdk-dev] [PATCH v1 56/58] net/octeontx2: add device stop and close operations

2019-06-02 Thread jerinj
From: Nithin Dabilpuram Add device stop, close and reset operations. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru --- drivers/net/octeontx2/otx2_ethdev.c | 70 + 1 file changed, 70 insertions(+) diff --git a/drivers/net/octeontx2/otx2_ethdev.c b

[dpdk-dev] [PATCH v1 58/58] doc: add Marvell OCTEON TX2 ethdev documentation

2019-06-02 Thread jerinj
From: Jerin Jacob Add Marvell OCTEON TX2 ethdev documentation. This patch also updates the MAINTAINERS file and shared library versions in release_19_08.rst. Cc: John McNamara Cc: Thomas Monjalon Signed-off-by: Jerin Jacob Signed-off-by: Vamsi Attunuru Signed-off-by: Kiran Kumar K Signed-

[dpdk-dev] [PATCH v1 57/58] net/octeontx2: add MTU set operation

2019-06-02 Thread jerinj
From: Vamsi Attunuru Add MTU set operation and MTU update feature. Signed-off-by: Vamsi Attunuru Signed-off-by: Sunil Kumar Kori --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + drivers/net/octeontx2/otx2_ethdev.c| 7 ++ driver

[dpdk-dev] [PATCH] eal: remove non-thread panic calls from init sequence

2019-06-02 Thread Arnon Warshavsky
This patch changes some void functions to return a value, so that the init sequence may tear down orderly instead of calling panic. The calls for launching core messaging threads were left in tact in all 3 eal implementations. This should be addressed in a different patchset. There are still cases

[dpdk-dev] [PATCH 00/11] add support for BCM57508 controller

2019-06-02 Thread Lance Richardson
NOTE: This patch series has dependencies on the "bnxt patchset" series that is currently under review. This patch series adds support to the bnxt PMD for the BCM57508 Ethernet controller (a.k.a the "Thor" controller). Patches 1-5 include cleanups and bug fixes for the existing driver. Patch 6 a

[dpdk-dev] [PATCH 04/11] net/bnxt: use consistent values for vnic RSS rule

2019-06-02 Thread Lance Richardson
Use consistent values for vnic->rss_rule. No functional change, these all equate to uint16_t 0x. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_hwrm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/bnxt/bnxt_

[dpdk-dev] [PATCH 01/11] net/bnxt: endianness conversions in cp ring macros

2019-06-02 Thread Lance Richardson
Descriptor fields in CP ring are in little-endian form, convert to CPU endian before performing arithmetic operations. Also use more general comparison when checking for ring index wrap. Fixes: f2a768d4d186 ("net/bnxt: add completion ring") Cc: sta...@dpdk.org Signed-off-by: Lance Richardson Rev

[dpdk-dev] [PATCH 02/11] net/bnxt: fix ring type macro name usage

2019-06-02 Thread Lance Richardson
Use consistent macro names for ring type values. (There is no functional change, the "alloc" and "free" values are identical.) Fixes: 6371b91fb66d ("net/bnxt: add ring alloc/free") Cc: sta...@dpdk.org Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_hwr

[dpdk-dev] [PATCH 05/11] net/bnxt: reset function earlier in initialization

2019-06-02 Thread Lance Richardson
Move function reset to beginnng of initialization sequence. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_ethdev.c | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bn

[dpdk-dev] [PATCH 07/11] net/bnxt: refactor doorbell handling

2019-06-02 Thread Lance Richardson
Reduce code duplication and prepare for newer controllers that use different doorbell protocols by refactoring doorbell handling code. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_cpr.h | 27 -- drivers/net/bnxt/bnxt_irq.c |

[dpdk-dev] [PATCH 06/11] net/bnxt: support extended hwrm request sizes

2019-06-02 Thread Lance Richardson
Enable support for extended request sizes. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt.h | 1 + drivers/net/bnxt/bnxt_hwrm.c | 31 ++- 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/drivers/net/bnx

[dpdk-dev] [PATCH 03/11] net/bnxt: fix width in stats ctx endian conversion

2019-06-02 Thread Lance Richardson
Use 32-bit conversion width when converting to 32-bit values. Fixes: 6371b91fb66d ("net/bnxt: add ring alloc/free") Cc: sta...@dpdk.org Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_hwrm.c | 8 1 file changed, 4 insertions(+), 4 deletions(-

[dpdk-dev] [PATCH 09/11] net/bnxt: add support for thor controller

2019-06-02 Thread Lance Richardson
This commit adds support to the bnxt PMD for devices based on the BCM57508 "thor" Ethernet controller. Signed-off-by: Ajit Kumar Khaparde Signed-off-by: Kalesh AP Signed-off-by: Lance Richardson --- drivers/net/bnxt/bnxt.h| 98 +++- drivers/net/bnxt/bnxt_cpr.h| 12 +- drivers

[dpdk-dev] [PATCH 08/11] net/bnxt: refactor ring allocation code

2019-06-02 Thread Lance Richardson
Reduce code duplication and prepare for supporting hardware with different ring allocation requirements by refactoring ring allocation code. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_ring.c | 167 ++- 1 file change

[dpdk-dev] [PATCH 10/11] net/bnxt: enable completion coalescing for thor

2019-06-02 Thread Lance Richardson
Enable completion coalescing for Thor-based adapters. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_hwrm.c | 42 +--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/drivers/net/bnxt/bnxt_hwrm.c b/driver

[dpdk-dev] [PATCH 11/11] net/bnxt: enable RSS for thor-based adapters

2019-06-02 Thread Lance Richardson
Enable rss support for thor-based adapters. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_ethdev.c | 69 ++-- drivers/net/bnxt/bnxt_hwrm.c | 190 +++-- drivers/net/bnxt/bnxt_hwrm.h | 6 +- drivers/net/bnxt/b

[dpdk-dev] [PATCH 11/11] net/bnxt: enable RSS for thor-based controllers

2019-06-02 Thread Lance Richardson
Make changes needed to support rss for thor-based controllers. Signed-off-by: Lance Richardson Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt_ethdev.c | 69 ++-- drivers/net/bnxt/bnxt_hwrm.c | 190 +++-- drivers/net/bnxt/bnxt_hwrm.h | 6 +-

[dpdk-dev] [PATCH v2] eal: remove non-thread panic calls from init sequence

2019-06-02 Thread Arnon Warshavsky
This patch changes some void functions to return a value, so that the init sequence may tear down orderly instead of calling panic. The calls for launching core messaging threads were left in tact in all 3 eal implementations. This should be addressed in a different patchset. There are still cases

[dpdk-dev] [PATCH 1/2] net/ipn3ke: add new register address

2019-06-02 Thread Andy Pei
ipn3ke can work on 10G mode and 25G mode. 10G mode and 25G mode has different MAC register address for statistics. This patch implemente statistics registers for 10G mode and 25G mode. Fixes: c01c748e4ae6 ("net/ipn3ke: add new driver") Cc: rosen...@intel.com Signed-off-by: Andy Pei --- drivers/

[dpdk-dev] [PATCH 2/2] net/ipn3ke: implementation of statistics

2019-06-02 Thread Andy Pei
This patch implemente statistics read and reset function for ipn3ke. Fixes: 70d6b7f550f4 ("net/ipn3ke: add representor") Cc: rosen...@intel.com Signed-off-by: Andy Pei --- drivers/net/ipn3ke/ipn3ke_representor.c | 3339 ++- 1 file changed, 3328 insertions(+), 11 dele

Re: [dpdk-dev] [PATCH 02/25] bus/fslmc: use new memory locking API

2019-06-02 Thread Shreyansh Jain
> -Original Message- > From: Anatoly Burakov > Sent: Wednesday, May 29, 2019 10:01 PM > To: dev@dpdk.org > Cc: Hemant Agrawal ; Shreyansh Jain > ; step...@networkplumber.org; > tho...@monjalon.net; david.march...@redhat.com > Subject: [PATCH 02/25] bus/fslmc: use new memory locking API >