[dpdk-dev] [PATCH 5/5] net/sfc: handle already flushed Tx queue gracefully

2017-05-27 Thread Andrew Rybchenko
Tx queue may be already flushed because of previous Tx error or MC reboot. Signed-off-by: Andrew Rybchenko --- drivers/net/sfc/sfc_tx.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/net/sfc/sfc_tx.c b/drivers/net/sfc/sfc_tx.c index 9e426ca..fc439cb 100644 ---

[dpdk-dev] [PATCH 2/5] net/sfc/base: let caller know that queue is already flushed

2017-05-27 Thread Andrew Rybchenko
From: Andy Moreton Tx/Rx queue may be already flushed due to Tx/Rx error on the queue or MC reboot. Caller needs to know that the queue is already flushed to avoid waiting for flush done event. Signed-off-by: Andy Moreton Signed-off-by: Andrew Rybchenko --- drivers/net/sfc/base/ef10_ev.c | 7

[dpdk-dev] [PATCH 4/5] net/sfc: add Tx queue flush failed flag for sanity

2017-05-27 Thread Andrew Rybchenko
Avoid usage of flushing state when Tx queue flush init failed. Fixes: fed9aeb46c19 ("net/sfc: implement transmit path start / stop") Cc: sta...@dpdk.org Signed-off-by: Andrew Rybchenko --- drivers/net/sfc/sfc_tx.c | 2 +- drivers/net/sfc/sfc_tx.h | 2 ++ 2 files changed, 3 insertions(+), 1 dele

[dpdk-dev] [PATCH 3/5] net/sfc: handle already flushed Rx queue gracefully

2017-05-27 Thread Andrew Rybchenko
Rx queue may be already flushed because of previous Rx error or MC reboot. Signed-off-by: Andrew Rybchenko --- drivers/net/sfc/sfc_rx.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/net/sfc/sfc_rx.c b/drivers/net/sfc/sfc_rx.c index 122b657..325f32a 100644 ---

[dpdk-dev] [PATCH 1/5] net/sfc/base: fix incorrect error code usage in common code

2017-05-27 Thread Andrew Rybchenko
From: Andy Moreton MCDI results retuerned in req.emr_rc have already been translated from MC_CMD_ERR_* to errno names, so using an MC_CMD_ERR_* value is incorrect. Fixes: e7cd430c864f ("net/sfc/base: import SFN7xxx family support") Cc: sta...@dpdk.org Signed-off-by: Andy Moreton Signed-off-by:

[dpdk-dev] [PATCH 00/20] traffic manager on i40e and ixgbe

2017-05-27 Thread Wenzhuo Lu
Implement the traffic manager APIs on i40e and ixgbe. This patch set is based on the patch set, "ethdev: abstraction layer for QoS traffic management" http://dpdk.org/dev/patchwork/patch/24411/ http://dpdk.org/dev/patchwork/patch/24412/ Wenzhuo Lu (20): net/i40e: support getting TM ops net/i40

[dpdk-dev] [PATCH 02/20] net/i40e: support getting TM capability

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_capabilities_get. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_tm.c | 82 +- 1 file changed, 81 insertions(+), 1 deletion(-) diff --git a/drivers/net/i40e/i40e_tm.c b/drivers/net/i40e/i40e_t

[dpdk-dev] [PATCH 01/20] net/i40e: support getting TM ops

2017-05-27 Thread Wenzhuo Lu
To support QoS scheduler APIs, create a new C file for the TM (Traffic Management) ops but without any function implemented. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/Makefile | 1 + drivers/net/i40e/i40e_ethdev.c | 1 + drivers/net/i40e/i40e_ethdev.h | 2 ++ drivers/net/i40e/i40e_t

[dpdk-dev] [PATCH 03/20] net/i40e: support adding TM shaper profile

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_shaper_profile_add. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.c | 6 +++ drivers/net/i40e/i40e_ethdev.h | 18 +++ drivers/net/i40e/i40e_tm.c | 107 + 3 files changed, 131 ins

[dpdk-dev] [PATCH 06/20] net/i40e: support deleting TM node

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_delete. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_tm.c | 54 ++ 1 file changed, 54 insertions(+) diff --git a/drivers/net/i40e/i40e_tm.c b/drivers/net/i40e/i40e_tm.c index 6ebce77..2

[dpdk-dev] [PATCH 05/20] net/i40e: support adding TM node

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_add. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.h | 28 ++ drivers/net/i40e/i40e_tm.c | 223 + 2 files changed, 251 insertions(+) diff --git a/drivers/net/i40e/i40e_ethdev

[dpdk-dev] [PATCH 04/20] net/i40e: support deleting TM shaper profile

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_shaper_profile_delete. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_tm.c | 36 1 file changed, 36 insertions(+) diff --git a/drivers/net/i40e/i40e_tm.c b/drivers/net/i40e/i40e_tm.c index a71ff45..2

[dpdk-dev] [PATCH 07/20] net/i40e: support getting TM node type

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_type_get. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_tm.c | 35 +++ 1 file changed, 35 insertions(+) diff --git a/drivers/net/i40e/i40e_tm.c b/drivers/net/i40e/i40e_tm.c index 20172d5..899e88e 10

[dpdk-dev] [PATCH 08/20] net/i40e: support getting TM level capability

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_level_capabilities_get. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_tm.c | 67 ++ 1 file changed, 67 insertions(+) diff --git a/drivers/net/i40e/i40e_tm.c b/drivers/net/i40e/i40e_tm.c index

[dpdk-dev] [PATCH 09/20] net/i40e: support getting TM node capability

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_capabilities_get. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_tm.c | 57 ++ 1 file changed, 57 insertions(+) diff --git a/drivers/net/i40e/i40e_tm.c b/drivers/net/i40e/i40e_tm.c index

[dpdk-dev] [PATCH 11/20] net/ixgbe: support getting TM ops

2017-05-27 Thread Wenzhuo Lu
To support QoS scheduler APIs, create a new C file for the TM (Traffic Management) ops but without any function implemented. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/Makefile | 1 + drivers/net/ixgbe/ixgbe_ethdev.c | 1 + drivers/net/ixgbe/ixgbe_ethdev.h | 2 ++ drivers/net/ixgbe

[dpdk-dev] [PATCH 10/20] net/i40e: support committing TM hierarchy

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_hierarchy_commit. When calling this API, the driver tries to enable the TM configuration on HW. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.h | 9 drivers/net/i40e/i40e_tm.c | 105 ++

[dpdk-dev] [PATCH 12/20] net/ixgbe: support getting TM capability

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_capabilities_get. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_tm.c | 90 +++- 1 file changed, 89 insertions(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/ixgbe_tm.c b/drivers/net/ixgbe/ixg

[dpdk-dev] [PATCH 14/20] net/ixgbe: support deleting TM shaper profile

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_shaper_profile_delete. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_tm.c | 37 + 1 file changed, 37 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_tm.c b/drivers/net/ixgbe/ixgbe_tm.c index 89e

[dpdk-dev] [PATCH 15/20] net/ixgbe: support adding TM node

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_add. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_ethdev.h | 35 ++ drivers/net/ixgbe/ixgbe_tm.c | 259 +++ 2 files changed, 294 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_et

[dpdk-dev] [PATCH 13/20] net/ixgbe: support adding TM shaper profile

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_shaper_profile_add. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_ethdev.c | 6 +++ drivers/net/ixgbe/ixgbe_ethdev.h | 21 drivers/net/ixgbe/ixgbe_tm.c | 111 +++ 3 files changed, 13

[dpdk-dev] [PATCH 16/20] net/ixgbe: support deleting TM node

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_delete. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_tm.c | 60 1 file changed, 60 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_tm.c b/drivers/net/ixgbe/ixgbe_tm.c index 16e8f8

[dpdk-dev] [PATCH 18/20] net/ixgbe: support getting TM level capability

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_level_capabilities_get. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_tm.c | 78 1 file changed, 78 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_tm.c b/drivers/net/ixgbe/ixgbe_tm.c i

[dpdk-dev] [PATCH 17/20] net/ixgbe: support getting TM node type

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_type_get. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_tm.c | 35 +++ 1 file changed, 35 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_tm.c b/drivers/net/ixgbe/ixgbe_tm.c index 39ec272..68b2

[dpdk-dev] [PATCH 20/20] net/ixgbe: support committing TM hierarchy

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_hierarchy_commit. When calling this API, the driver tries to enable the TM configuration on HW. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_ethdev.c | 8 ++--- drivers/net/ixgbe/ixgbe_ethdev.h | 2 ++ drivers/net/ixgbe/ixgbe_tm.c

[dpdk-dev] [PATCH 19/20] net/ixgbe: support getting TM node capability

2017-05-27 Thread Wenzhuo Lu
Add the support of the Traffic Management API, rte_tm_node_capabilities_get. Signed-off-by: Wenzhuo Lu --- drivers/net/ixgbe/ixgbe_tm.c | 63 1 file changed, 63 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_tm.c b/drivers/net/ixgbe/ixgbe_tm.c in

[dpdk-dev] [PATCH 2/7] ethdev: add support of restoration of queue state

2017-05-27 Thread Wei Dai
As dev->dev_ops->dev_start may change dev->data->rx_queue_state[] and dev->data->tx_queue_state[], this patch adds rxq_restore_state[] and txq_restore_state[ ] for restoration. In the restoration process, PMD should start or stop each Rx or Tx queue according to dev->data->rx_restore_state[] or dev

[dpdk-dev] [PATCH 0/7] NIC port restoration

2017-05-27 Thread Wei Dai
Sometimes configuration and run time environment in PMD layer of a running port is changed and the port has to stop all bi-directional traffic and initialize the port device and restore its configurations and traffic again. Such this procedure can be regarded as restoration. Some customers

[dpdk-dev] [PATCH 1/7] ethdev: add support of NIC restoration

2017-05-27 Thread Wei Dai
The steps of NIC restoration process include following items in order: dev_stop, dev_uninit, dev_init, dev_configure with stored configuration, setup each Rx and Tx queue with previous configurations and dev_start. Signed-off-by: Wei Dai --- lib/librte_ether/rte_ethdev.c | 102 +

[dpdk-dev] [PATCH 3/7] ethdev: add support of restoration of port status

2017-05-27 Thread Wei Dai
As dev->data->dev_link.link_status may change when the port is initialized again, this patch adds dev->data->restore_link for restoration. In the restoration process, ethdev layer can restore link status as up or down by comparing dev->data->restore_link.link_status and dev->data->dev_link.link_sta

[dpdk-dev] [PATCH 6/7] net/ixgbe: add support of restoration

2017-05-27 Thread Wei Dai
export dev_uninit and dev_init for restoration to reset port but keep same port id. Signed-off-by: Wei Dai --- drivers/net/ixgbe/ixgbe_ethdev.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c index 2083cde..64b8a78 10064

[dpdk-dev] [PATCH 4/7] ethdev: add support of MTU restoration

2017-05-27 Thread Wei Dai
Signed-off-by: Wei Dai --- lib/librte_ether/rte_ethdev.c | 23 +-- lib/librte_ether/rte_ethdev.h | 1 + 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index af8ccf6..0d9544c 100644 --- a/lib/librte

[dpdk-dev] [PATCH 7/7] net/i40e: add support of restoration

2017-05-27 Thread Wei Dai
export dev_uninit and dev_init for restoration to reset port but keep same port id. Signed-off-by: Wei Dai --- drivers/net/i40e/i40e_ethdev.c| 2 ++ drivers/net/i40e/i40e_ethdev_vf.c | 5 + 2 files changed, 7 insertions(+) diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i

[dpdk-dev] [PATCH 5/7] ethdev: add support of restoration of multicast addr

2017-05-27 Thread Wei Dai
Signed-off-by: Wei Dai --- lib/librte_ether/rte_ethdev.c | 31 ++- lib/librte_ether/rte_ethdev.h | 2 ++ 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 0d9544c..78609f5 100644 --- a/li

[dpdk-dev] [PATCH 2/3] net/ixgbe/base: disable X550EM-x 1GBASE-T led switch support

2017-05-27 Thread Wei Dai
This patch disables X550EM_X 1Gbase-t led_[on|off] support since the LEDs are wired to the PHY and the driver can not access the PHY. led_[on|off] supportis disabled by setting the function pointer to NULL. init_led_link_act is also set to NULL. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/

[dpdk-dev] [PATCH 3/3] net/ixgbe/base: update version to 2017.05.16

2017-05-27 Thread Wei Dai
* Remove PHY access for some 1G ports * Disable X550EM-x 1GBASE-T led switch support Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README index a61617b..8c833b4 1

[dpdk-dev] [PATCH 1/3] net/ixgbe/base: remove PHY access for some 1G ports

2017-05-27 Thread Wei Dai
This patch removes some some 1GBASE-T PHY access since the FW configures the PHY. SW shall not configure or initialize link. Accessing the PHY would require the use of MDI clause 22 which should be avoided in high layer driver code. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c

Re: [dpdk-dev] [RFC] Add Membership Library

2017-05-27 Thread Vincent Jardin
Why duplicating Jyri's libbloom - https://github.com/jvirkki/libbloom - for this DPDK capability? Why not showing that you can contribute to libbloom and make it linkable with the DPDK? There are so many duplicated code... Thank you, Vincent

[dpdk-dev] [RFC Patch 01/39] eal: add Bus log type

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Shreyansh Jain --- lib/librte_eal/common/include/rte_log.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/include/rte_log.h b/lib/librte_eal/common/include/rte_log.h index 3419138..4d001f5 100644 --- a/lib/librte_eal/common/include/rte_log.h +++ b/lib/li

[dpdk-dev] [RFC Patch 00/39] Introduce NXP DPAA Bus, Mempool and PMD

2017-05-27 Thread Shreyansh Jain
Series based on net-next/master (8c79ce3) :: This is an RFC! :: Introduction This patch series adds NXP's QorIQ-Layerscape DPAA Architecture based bus driver, mempool driver and PMD. This version of driver supports NXP LS1043A/LS1023A, LS1046A/LS1026A family of network SoCs. [R1] D

[dpdk-dev] [RFC Patch 03/39] config: add NXP DPAA SoC build configuration

2017-05-27 Thread Shreyansh Jain
This patch adds skeleton build configuration for DPAA platform. Signed-off-by: Shreyansh Jain --- config/defconfig_arm64-dpaa-linuxapp-gcc | 39 mk/machine/dpaa/rte.vars.mk | 61 2 files changed, 100 insertions(+) create mode 10

[dpdk-dev] [RFC Patch 02/39] eal: add support for 24 40 and 48 bit operations

2017-05-27 Thread Shreyansh Jain
From: Hemant Agrawal Bit Swap and LE<=>BE conversions for 23, 40 and 48 bit width Signed-off-by: Hemant Agrawal --- .../common/include/generic/rte_byteorder.h | 78 ++ 1 file changed, 78 insertions(+) diff --git a/lib/librte_eal/common/include/generic/rte_byteorder

[dpdk-dev] [RFC Patch 04/39] bus/dpaa: introduce NXP DPAA Bus driver skeleton

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Shreyansh Jain Signed-off-by: Hemant Agrawal --- MAINTAINERS | 5 + config/common_base| 3 + config/defconfig_arm64-dpaa-linuxapp-gcc | 7 ++ drivers/bus/Makefile | 3 + drivers/bus/dpaa/Makefile

[dpdk-dev] [RFC Patch 05/39] bus/dpaa: add compatibility and helper macros

2017-05-27 Thread Shreyansh Jain
From: Hemant Agrawal Linked list, bit operations and compatibility macros. Signed-off-by: Geoff Thorpe Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/include/compat.h| 330 +++ drivers/bus/dpaa/include/dpaa_bits.h | 65 +++ drivers/bus/dpaa/include

[dpdk-dev] [RFC Patch 07/39] bus/dpaa: introducing FMan configurations

2017-05-27 Thread Shreyansh Jain
FMan or Frame Manager, inspects traffic, splits it into queueson ingress. It is also responsible for directing traffic on queues on egress. This patch introduces FMan configurational interfaces. This layer is used by Bus driver for configuring the hardware block. Signed-off-by: Geoff Thorpe Sign

[dpdk-dev] [RFC Patch 11/39] bus/dpaa: add routines for managing a RB tree

2017-05-27 Thread Shreyansh Jain
QMAN frames are managed over a RB tree data structure. This patch introduces necessary routines for implementing a RB tree. Signed-off-by: Geoff Thorpe Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/include/dpaa_rbtree.h | 143 +

[dpdk-dev] [RFC Patch 08/39] bus/dpaa: add FMan hardware operations

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Geoff Thorpe Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/Makefile | 1 + drivers/bus/dpaa/base/fman/fman_hw.c | 606 ++ drivers/bus/dpaa/include/fman.h | 2 + drivers/bus/dpaa/incl

[dpdk-dev] [RFC Patch 13/39] bus/dpaa: add QMan driver core routines

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Geoff Thorpe Signed-off-by: Roy Pledge Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/Makefile |2 + drivers/bus/dpaa/base/qbman/dpaa_alloc.c | 88 ++ drivers/bus/dpaa/base/qbman/qman.c| 2402 ++

[dpdk-dev] [RFC Patch 10/39] bus/dpaa: add layer for interrupt emulation using pthread

2017-05-27 Thread Shreyansh Jain
An interrupt manager is implemented by emulating over pthreads. Handlers are registered by QBMAN layer for being notified about any interrupt request from DPAA blocks in userspace. Signed-off-by: Roy Pledge Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/Makefi

[dpdk-dev] [RFC Patch 15/39] bus/dpaa: add support for FMAN frame queue lookup

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Geoff Thorpe Signed-off-by: Roy Pledge Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/base/qbman/qman.c| 99 ++- drivers/bus/dpaa/base/qbman/qman_driver.c | 7 ++- drivers/bus/dpaa/base/qbman/qman_priv.h |

[dpdk-dev] [RFC Patch 18/39] bus/dpaa: integrate DPAA Bus with hardware blocks

2017-05-27 Thread Shreyansh Jain
Now that QBMAN (QMAN, BMAN) and FMAN drivers are available, this patch integrates the DPAA Bus driver for using the drivers for scanning devices and calling the PMD registered probe callbacks. Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/dpaa_bus.c

[dpdk-dev] [RFC Patch 12/39] bus/dpaa: add QMAN interface driver

2017-05-27 Thread Shreyansh Jain
The Queue Manager (QMan) is a hardware queue management block that allows software and accelerators on the datapath to enqueue and dequeue frames in order to communicate. This part of QBMAN DPAA Block. Signed-off-by: Geoff Thorpe Signed-off-by: Roy Pledge Signed-off-by: Hemant Agrawal Signed-o

[dpdk-dev] [RFC Patch 14/39] bus/dpaa: add BMAN driver core

2017-05-27 Thread Shreyansh Jain
The Buffer Manager (BMan) is a hardware buffer pool management block that allows software and accelerators on the datapath to acquire and release buffers in order to build frames. This patch adds the core routines. Signed-off-by: Geoff Thorpe Signed-off-by: Roy Pledge Signed-off-by: Hemant Agra

[dpdk-dev] [RFC Patch 23/39] net/dpaa: add NXP DPAA PMD driver skeleton

2017-05-27 Thread Shreyansh Jain
A skeleton which would be called after bus device scan. It currently fails to identify the device. Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- MAINTAINERS | 1 + drivers/net/dpaa/Makefile | 64 + drivers/net/dpaa/dpaa_

[dpdk-dev] [RFC Patch 24/39] config: enable NXP DPAA PMD compilation

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Shreyansh Jain --- config/defconfig_arm64-dpaa-linuxapp-gcc | 11 +++ drivers/net/Makefile | 2 ++ mk/rte.app.mk| 5 + 3 files changed, 18 insertions(+) diff --git a/config/defconfig_arm64-dpaa-linuxapp-gcc b/config/de

[dpdk-dev] [RFC Patch 25/39] net/dpaa: add support for Tx and Rx queue setup

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/Makefile | 4 + drivers/net/dpaa/dpaa_ethdev.c| 271 - drivers/net/dpaa/dpaa_ethdev.h| 7 + drivers/net/dpaa/dpaa_rxtx.c

[dpdk-dev] [RFC Patch 21/39] drivers: enable compilation of DPAA Mempool driver

2017-05-27 Thread Shreyansh Jain
This patch also adds configuration necessary for compilation of DPAA Mempool driver into the DPAA specific config file. CONFIG_RTE_MBUF_DEFAULT_MEMPOOL_OPS=dpaa is also configured to allow applications to use DPAA mempool as default. Signed-off-by: Shreyansh Jain --- config/defconfig_arm64-dpaa-

[dpdk-dev] [RFC Patch 28/39] net/dpaa: add support for jumbo frames

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 16 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/features/dpaa.in

[dpdk-dev] [RFC Patch 26/39] net/dpaa: add support for MTU update

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 21 + 2 files changed, 22 insertions(+) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/features/dpaa.ini index 29b

[dpdk-dev] [RFC Patch 27/39] net/dpaa: add support for link status update

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 42 +++ 2 files changed, 43 insertions(+) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/features/

[dpdk-dev] [RFC Patch 30/39] net/dpaa: add support for multicast toggle

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 2 ++ drivers/net/dpaa/dpaa_ethdev.c| 21 + 2 files changed, 23 insertions(+) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/features/dpaa.ini index 23

[dpdk-dev] [RFC Patch 09/39] bus/dpaa: enable DPAA IOCTL portal driver

2017-05-27 Thread Shreyansh Jain
Userspace applications interact with DPAA blocks using this IOCTL driver. Signed-off-by: Geoff Thorpe Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/Makefile | 4 +- drivers/bus/dpaa/base/qbman/process.c | 331 ++

[dpdk-dev] [RFC Patch 29/39] net/dpaa: add support for promiscuous toggle

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 21 + 2 files changed, 22 insertions(+) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/features/dpaa.ini index aaa

[dpdk-dev] [RFC Patch 06/39] bus/dpaa: add OF parser for device scanning

2017-05-27 Thread Shreyansh Jain
This layer is used by Bus driver's scan function. Devices are parsed using OF parser and added to DPAA device list. Signed-off-by: Geoff Thorpe Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/Makefile | 7 + drivers/bus/dpaa/base/fman/of.c | 576 ++

[dpdk-dev] [RFC Patch 31/39] net/dpaa: add support for basic stats

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 20 2 files changed, 21 insertions(+) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/features/dpaa.ini index 2644

[dpdk-dev] [RFC Patch 34/39] net/dpaa: add support for hashed RSS

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 1 + drivers/net/dpaa/dpaa_ethdev.h| 10 ++ drivers/net/dpaa/dpaa_rxtx.c | 2 +- 4 files changed, 13 insertions(+), 1 deletion(-) diff

[dpdk-dev] [RFC Patch 32/39] net/dpaa: add support for device info

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/net/dpaa/dpaa_ethdev.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/drivers/net/dpaa/dpaa_ethdev.c b/drivers/net/dpaa/dpaa_ethdev.c index d076da5..5d406be 100644 --- a/drivers/net/dpaa/dpaa_ethdev.

[dpdk-dev] [RFC Patch 33/39] net/dpaa: support for checksum offload

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 2 + drivers/net/dpaa/dpaa_ethdev.c| 8 drivers/net/dpaa/dpaa_rxtx.c | 88 +++ 3 files changed, 98 insertions(+) diff --git a/doc/guides/nics/f

[dpdk-dev] [RFC Patch 35/39] net/dpaa: add support for MAC address update

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/net/dpaa/dpaa_ethdev.c | 55 ++ 1 file changed, 55 insertions(+) diff --git a/drivers/net/dpaa/dpaa_ethdev.c b/drivers/net/dpaa/dpaa_ethdev.c index b9669ef..856b229 100644 --- a/drive

[dpdk-dev] [RFC Patch 36/39] net/dpaa: add support for packet type parsing

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 22 drivers/net/dpaa/dpaa_rxtx.c | 75 +++ 3 files changed, 98 insertions(+) diff --git a/doc/guide

[dpdk-dev] [RFC Patch 38/39] net/dpaa: add support for flow control

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_ethdev.c| 112 ++ 2 files changed, 113 insertions(+) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/feature

[dpdk-dev] [RFC Patch 17/39] bus/dpaa: add fman flow control threshold setting

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Geoff Thorpe Signed-off-by: Roy Pledge Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/base/fman/fman_hw.c | 28 drivers/bus/dpaa/include/fsl_fman.h | 7 +++ 2 files changed, 35 insertions(+) diff --git a/drive

[dpdk-dev] [RFC Patch 37/39] net/dpaa: add support for Scattered Rx

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- doc/guides/nics/features/dpaa.ini | 1 + drivers/net/dpaa/dpaa_rxtx.c | 157 ++ 2 files changed, 158 insertions(+) diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/feature

Re: [dpdk-dev] [RFC Patch 01/39] eal: add Bus log type

2017-05-27 Thread Shreyansh Jain
On Saturday 27 May 2017 03:54 PM, Shreyansh Jain wrote: Signed-off-by: Shreyansh Jain --- lib/librte_eal/common/include/rte_log.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/include/rte_log.h b/lib/librte_eal/common/include/rte_log.h index 3419138..4d001f5 10064

[dpdk-dev] [RFC Patch 19/39] doc: add NXP DPAA PMD documentation

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- MAINTAINERS | 2 + doc/guides/nics/dpaa.rst | 360 ++ doc/guides/nics/features/dpaa.ini | 8 + doc/guides/nics/index.rst | 1 + 4 files changed, 371 in

[dpdk-dev] [RFC Patch 20/39] mempool/dpaa: add support for NXP DPAA Mempool

2017-05-27 Thread Shreyansh Jain
This Mempool driver works with DPAA BMan hardware block. This block manages data buffers in memory, and provides efficient interface with other hardware and software components for buffer requests. This patch adds support for BMan. Compilation would be enabled in subsequent patches. Signed-off-by

[dpdk-dev] [RFC Patch 16/39] bus/dpaa: add BMan hardware interfaces

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Geoff Thorpe Signed-off-by: Roy Pledge Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- drivers/bus/dpaa/Makefile | 1 + drivers/bus/dpaa/base/qbman/bman.c| 394 + drivers/bus/dpaa/base/qbman/bman.h| 550 ++

[dpdk-dev] [RFC Patch 39/39] net/dpaa: add packet dump for debugging

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Hemant Agrawal Signed-off-by: Shreyansh Jain --- config/defconfig_arm64-dpaa-linuxapp-gcc | 2 ++ drivers/net/dpaa/dpaa_ethdev.c | 42 drivers/net/dpaa/dpaa_rxtx.c | 36 +++ 3 files changed, 80 inserti

[dpdk-dev] [RFC Patch 22/39] maintainers: claim ownership of DPAA Mempool driver

2017-05-27 Thread Shreyansh Jain
Signed-off-by: Shreyansh Jain --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index e2b0415..b50bd33 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -392,6 +392,7 @@ NXP dpaa M: Hemant Agrawal M: Shreyansh Jain F: drivers/bus/dpaa/ +F: drivers/memp

Re: [dpdk-dev] [PATCH v3 1/3] lib: add Generic Receive Offload API framework

2017-05-27 Thread Ananyev, Konstantin
> -Original Message- > From: Hu, Jiayu > Sent: Saturday, May 27, 2017 4:42 AM > To: Ananyev, Konstantin > Cc: dev@dpdk.org; Wiles, Keith ; > yuanhan@linux.intel.com > Subject: Re: [PATCH v3 1/3] lib: add Generic Receive Offload API framework > > On Sat, May 27, 2017 at 07:10:21AM +

[dpdk-dev] stable release 17.02.1 patches review and test

2017-05-27 Thread Yuanhan Liu
Hi all, Here is a list of patches targeted for stable release 17.02.1. Please help review and test. The planned date for the final release is 2th, Jun. Before that, please shout if anyone has objections with these patches being applied. These patches are located at branch 17.02 of dpdk-stable rep

[dpdk-dev] [PATCH 0/2] LACP control packet filtering offload

2017-05-27 Thread Tomasz Kulasek
1. Overview Packet processing in the current path for bonding in mode 4, requires parse all packets in the fast path, to classify and process LACP packets. The idea of performance improvement is to use hardware offloads to improve packet classification. 2. Scope of work a) Optimiza

[dpdk-dev] [PATCH 1/2] LACP control packet filtering offload

2017-05-27 Thread Tomasz Kulasek
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. When this option is enabled all slaves must su

[dpdk-dev] [PATCH 2/2] test-pmd: add set bonding slow_queue hw/sw

2017-05-27 Thread Tomasz Kulasek
This patch adds new command: set bonding slow_queue sw|hw "set bonding slow_queue hw" sets hardware management of slow packets and chooses simplified paths for tx/rx bursts. "set bonding slow_queue sw" turns back to the software handling of slow packets. This option is default. Signed-of

Re: [dpdk-dev] [PATCH v3 1/3] lib: add Generic Receive Offload API framework

2017-05-27 Thread Jiayu Hu
Hi Konstantin, On Sat, May 27, 2017 at 07:12:16PM +0800, Ananyev, Konstantin wrote: > > > > -Original Message- > > From: Hu, Jiayu > > Sent: Saturday, May 27, 2017 4:42 AM > > To: Ananyev, Konstantin > > Cc: dev@dpdk.org; Wiles, Keith ; > > yuanhan@linux.intel.com > > Subject: Re:

[dpdk-dev] [PATCH] net/i40e: extended list of operations for ddp processing

2017-05-27 Thread Andrey Chilikin
This patch adds ability to remove already loaded profile or write profile without registering it Signed-off-by: Andrey Chilikin --- drivers/net/i40e/rte_pmd_i40e.c | 165 --- drivers/net/i40e/rte_pmd_i40e.h |6 +- 2 files changed, 141 insertions(+), 30 de

Re: [dpdk-dev] [PATCH v3 1/3] lib: add Generic Receive Offload API framework

2017-05-27 Thread Ananyev, Konstantin
Hi Jiayu, > > Hi Konstantin, > > On Sat, May 27, 2017 at 07:12:16PM +0800, Ananyev, Konstantin wrote: > > > > > > > -Original Message- > > > From: Hu, Jiayu > > > Sent: Saturday, May 27, 2017 4:42 AM > > > To: Ananyev, Konstantin > > > Cc: dev@dpdk.org; Wiles, Keith ; > > > yuanhan...

[dpdk-dev] [PATCH] net/mlx5: implement drop action in hardware classifier

2017-05-27 Thread Shachar Beiser
The current drop action is implemented as a queue tail drop, requiring to instantiate multiple WQs to maintain high drop rate. This commit, implements the drop action in hardware classifier. This enables to reduce the amount of contexts needed for the drop, without affecting the drop rate. Signed-

[dpdk-dev] [PATCH] net/mlx5: implement drop action in hardware classifier

2017-05-27 Thread Shachar Beiser
The current drop action is implemented as a queue tail drop, requiring to instantiate multiple WQs to maintain high drop rate. This commit, implements the drop action in hardware classifier. This enables to reduce the amount of contexts needed for the drop, without affecting the drop rate. Signed-