DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 00/17] features and fixes on NXP eth devices
@ 2021-12-06 12:18 nipun.gupta
  2021-12-06 12:18 ` [PATCH 01/17] bus/fslmc: update MC to 10.29 nipun.gupta
                   ` (18 more replies)
  0 siblings, 19 replies; 68+ messages in thread
From: nipun.gupta @ 2021-12-06 12:18 UTC (permalink / raw)
  To: dev; +Cc: thomas, ferruh.yigit, hemant.agrawal

From: Nipun Gupta <nipun.gupta@nxp.com>

This series adds few features and important fixes on DPAA,
PFE and ENETC devices.

Features added:
- level 2 support for shaping on DPAA2
- loopback configuration for DPNI devices on DPAA2
- Multiple TXQ's enqueue for ordered queues for performance
- VFs support on ENETC

Fixes:
- fix unregistering interrupt handler on DPAA2
- fix timestamping for IEEE1588 on DPAA1
- fix 32 bit and PPC compilation for PFE

Apeksha Gupta (1):
  net/pfe: remove setting unused value

Gagandeep Singh (4):
  net/dpaa2: add support for level 2 in traffic management
  net/enetc: add support for VFs
  net/pfe: disable HW CRC stripping
  net/pfe: reduce driver initialization time

Jun Yang (4):
  net/dpaa2: support multiple txqs en-queue for ordered
  net/dpaa2: secondary process handling for dpni
  bus/fslmc: add and scan dprc devices
  net/dpaa2: support recycle loopback port

Nipun Gupta (4):
  bus/fslmc: update MC to 10.29
  bus/fslmc: use dmb oshst for synchronization before I/O
  net/dpaa: check status before configuring shared MAC
  net/dpaa: enable checksum for shared MAC interface

Rohit Raj (1):
  net/dpaa2: warn user in case of high nb desc

Sachin Saxena (1):
  net/pfe: fix for 32 bit and PPC compilation

Vanshika Shukla (2):
  net/dpaa2: fix unregistering interrupt handler
  net/dpaa2: fix timestamping for IEEE1588

 doc/guides/nics/dpaa2.rst                 |   2 +-
 drivers/bus/dpaa/base/fman/fman_hw.c      |  11 +
 drivers/bus/dpaa/include/fsl_fman.h       |   2 +
 drivers/bus/dpaa/version.map              |   1 +
 drivers/bus/fslmc/fslmc_bus.c             |  15 +-
 drivers/bus/fslmc/fslmc_vfio.c            |  18 +-
 drivers/bus/fslmc/mc/dprc.c               | 129 ++++
 drivers/bus/fslmc/mc/fsl_dpmng.h          |   2 +-
 drivers/bus/fslmc/mc/fsl_dprc.h           |  46 ++
 drivers/bus/fslmc/mc/fsl_dprc_cmd.h       |  48 ++
 drivers/bus/fslmc/meson.build             |   4 +-
 drivers/bus/fslmc/portal/dpaa2_hw_dprc.c  | 100 +++
 drivers/bus/fslmc/portal/dpaa2_hw_pvt.h   |  15 +-
 drivers/bus/fslmc/qbman/include/compat.h  |   4 +-
 drivers/bus/fslmc/rte_fslmc.h             |  10 +-
 drivers/event/dpaa2/dpaa2_eventdev.c      |  12 +-
 drivers/mempool/dpaa2/dpaa2_hw_mempool.c  |  23 +
 drivers/mempool/dpaa2/rte_dpaa2_mempool.h |  15 +
 drivers/mempool/dpaa2/version.map         |   1 +
 drivers/net/dpaa/dpaa_ethdev.c            |  17 +-
 drivers/net/dpaa2/base/dpaa2_hw_dpni.c    |   5 +-
 drivers/net/dpaa2/dpaa2_ethdev.c          | 117 +++-
 drivers/net/dpaa2/dpaa2_ethdev.h          |  38 +-
 drivers/net/dpaa2/dpaa2_ptp.c             |   8 +-
 drivers/net/dpaa2/dpaa2_recycle.c         | 780 ++++++++++++++++++++++
 drivers/net/dpaa2/dpaa2_rxtx.c            | 181 ++++-
 drivers/net/dpaa2/dpaa2_tm.c              | 563 +++++++++++++---
 drivers/net/dpaa2/dpaa2_tm.h              |  17 +-
 drivers/net/dpaa2/mc/dpdmux.c             |   8 +
 drivers/net/dpaa2/mc/dpkg.c               |   7 +-
 drivers/net/dpaa2/mc/dpni.c               | 417 ++++++++----
 drivers/net/dpaa2/mc/fsl_dpdmux.h         |   3 +
 drivers/net/dpaa2/mc/fsl_dpdmux_cmd.h     |   5 +-
 drivers/net/dpaa2/mc/fsl_dpni.h           | 173 +++--
 drivers/net/dpaa2/mc/fsl_dpni_cmd.h       | 137 ++--
 drivers/net/dpaa2/meson.build             |   1 +
 drivers/net/dpaa2/version.map             |   1 +
 drivers/net/enetc/enetc_ethdev.c          |  25 +-
 drivers/net/pfe/pfe_ethdev.c              |  10 +-
 drivers/net/pfe/pfe_hal.c                 |   4 +-
 drivers/net/pfe/pfe_hif.c                 |   9 +-
 drivers/net/pfe/pfe_hif_lib.c             |   3 +-
 42 files changed, 2532 insertions(+), 455 deletions(-)
 create mode 100644 drivers/bus/fslmc/mc/dprc.c
 create mode 100644 drivers/bus/fslmc/mc/fsl_dprc.h
 create mode 100644 drivers/bus/fslmc/mc/fsl_dprc_cmd.h
 create mode 100644 drivers/bus/fslmc/portal/dpaa2_hw_dprc.c
 create mode 100644 drivers/net/dpaa2/dpaa2_recycle.c

-- 
2.17.1


^ permalink raw reply	[flat|nested] 68+ messages in thread

end of thread, other threads:[~2022-02-01 11:03 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-06 12:18 [PATCH 00/17] features and fixes on NXP eth devices nipun.gupta
2021-12-06 12:18 ` [PATCH 01/17] bus/fslmc: update MC to 10.29 nipun.gupta
2021-12-06 12:18 ` [PATCH 02/17] bus/fslmc: use dmb oshst for synchronization before I/O nipun.gupta
2021-12-06 12:18 ` [PATCH 03/17] net/dpaa2: warn user in case of high nb desc nipun.gupta
2021-12-06 12:18 ` [PATCH 04/17] net/dpaa2: fix unregistering interrupt handler nipun.gupta
2021-12-06 12:18 ` [PATCH 05/17] net/dpaa2: fix timestamping for IEEE1588 nipun.gupta
2021-12-06 12:18 ` [PATCH 06/17] net/dpaa2: support multiple txqs en-queue for ordered nipun.gupta
2021-12-06 12:18 ` [PATCH 07/17] net/dpaa2: add support for level 2 in traffic management nipun.gupta
2021-12-06 12:18 ` [PATCH 08/17] net/dpaa2: secondary process handling for dpni nipun.gupta
2021-12-06 12:18 ` [PATCH 09/17] bus/fslmc: add and scan dprc devices nipun.gupta
2021-12-06 12:18 ` [PATCH 10/17] net/dpaa2: support recycle loopback port nipun.gupta
2021-12-06 12:18 ` [PATCH 11/17] net/dpaa: check status before configuring shared MAC nipun.gupta
2021-12-06 12:18 ` [PATCH 12/17] net/dpaa: enable checksum for shared MAC interface nipun.gupta
2021-12-06 12:18 ` [PATCH 13/17] net/enetc: add support for VFs nipun.gupta
2021-12-06 12:18 ` [PATCH 14/17] net/pfe: disable HW CRC stripping nipun.gupta
2021-12-06 12:18 ` [PATCH 15/17] net/pfe: reduce driver initialization time nipun.gupta
2021-12-06 12:18 ` [PATCH 16/17] net/pfe: remove setting unused value nipun.gupta
2021-12-06 12:18 ` [PATCH 17/17] net/pfe: fix for 32 bit and PPC compilation nipun.gupta
2021-12-27 16:16 ` [PATCH v2 00/16] features and fixes on NXP eth devices nipun.gupta
2021-12-27 16:16   ` [PATCH v2 01/16] bus/fslmc: update MC to 10.29 nipun.gupta
2021-12-27 16:16   ` [PATCH v2 02/16] bus/fslmc: use dmb oshst for synchronization before I/O nipun.gupta
2021-12-27 16:16   ` [PATCH v2 03/16] net/dpaa2: warn user in case of high nb desc nipun.gupta
2021-12-27 16:16   ` [PATCH v2 04/16] net/dpaa2: fix unregistering interrupt handler nipun.gupta
2021-12-27 16:16   ` [PATCH v2 05/16] net/dpaa2: fix timestamping for IEEE1588 nipun.gupta
2021-12-27 16:16   ` [PATCH v2 06/16] net/dpaa2: support multiple txqs en-queue for ordered nipun.gupta
2021-12-27 18:01     ` Stephen Hemminger
2022-01-03  5:47       ` Nipun Gupta
2022-01-03  8:39         ` Nipun Gupta
2021-12-27 16:16   ` [PATCH v2 07/16] net/dpaa2: add support for level 2 in traffic management nipun.gupta
2021-12-27 16:16   ` [PATCH v2 08/16] net/dpaa2: secondary process handling for dpni nipun.gupta
2021-12-27 16:16   ` [PATCH v2 09/16] bus/fslmc: add and scan dprc devices nipun.gupta
2021-12-27 16:16   ` [PATCH v2 10/16] net/dpaa2: support recycle loopback port nipun.gupta
2021-12-27 16:16   ` [PATCH v2 11/16] net/dpaa: check status before configuring shared MAC nipun.gupta
2021-12-27 16:16   ` [PATCH v2 12/16] net/dpaa: enable checksum for shared MAC interface nipun.gupta
2021-12-27 16:16   ` [PATCH v2 13/16] net/enetc: add support for VFs nipun.gupta
2021-12-27 16:16   ` [PATCH v2 14/16] net/pfe: disable HW CRC stripping nipun.gupta
2021-12-27 17:49     ` Stephen Hemminger
2022-01-03  6:09       ` Nipun Gupta
2021-12-27 16:16   ` [PATCH v2 15/16] net/pfe: reduce driver initialization time nipun.gupta
2021-12-27 17:57     ` Stephen Hemminger
2022-01-03  5:45       ` Nipun Gupta
2021-12-27 16:16   ` [PATCH v2 16/16] net/pfe: remove setting unused value nipun.gupta
2021-12-27 17:50   ` [PATCH v2 00/16] features and fixes on NXP eth devices Stephen Hemminger
2022-01-03  5:45     ` Nipun Gupta
2022-01-03 10:01 ` [PATCH v3 00/15] " nipun.gupta
2022-01-03 10:01   ` [PATCH v3 01/15] bus/fslmc: update MC to 10.29 nipun.gupta
2022-01-03 10:01   ` [PATCH v3 02/15] bus/fslmc: use dmb oshst for synchronization before I/O nipun.gupta
2022-01-03 10:01   ` [PATCH v3 03/15] net/dpaa2: warn user in case of high nb desc nipun.gupta
2022-01-03 10:01   ` [PATCH v3 04/15] net/dpaa2: fix unregistering interrupt handler nipun.gupta
2022-01-03 10:01   ` [PATCH v3 05/15] net/dpaa2: fix timestamping for IEEE1588 nipun.gupta
2022-01-03 10:01   ` [PATCH v3 06/15] net/dpaa2: support multiple txqs en-queue for ordered nipun.gupta
2022-01-03 10:01   ` [PATCH v3 07/15] net/dpaa2: add support for level 2 in traffic management nipun.gupta
2022-01-03 10:01   ` [PATCH v3 08/15] net/dpaa2: secondary process handling for dpni nipun.gupta
2022-01-03 10:01   ` [PATCH v3 09/15] bus/fslmc: add and scan dprc devices nipun.gupta
2022-01-03 10:01   ` [PATCH v3 10/15] net/dpaa2: support recycle loopback port nipun.gupta
2022-02-01  9:27     ` David Marchand
2022-02-01  9:34       ` Nipun Gupta
2022-02-01  9:43         ` Thomas Monjalon
2022-02-01  9:53           ` [PATCH] net/dpaa2: fix build with musl Thomas Monjalon
2022-02-01 10:10             ` Nipun Gupta
2022-02-01 11:03               ` Thomas Monjalon
2022-01-03 10:01   ` [PATCH v3 11/15] net/dpaa: check status before configuring shared MAC nipun.gupta
2022-01-03 10:01   ` [PATCH v3 12/15] net/dpaa: enable checksum for shared MAC interface nipun.gupta
2022-01-03 10:01   ` [PATCH v3 13/15] net/enetc: add support for VFs nipun.gupta
2022-01-03 10:01   ` [PATCH v3 14/15] net/pfe: reduce driver initialization time nipun.gupta
2022-01-03 10:01   ` [PATCH v3 15/15] net/pfe: remove setting unused value nipun.gupta
2022-01-12  6:05   ` [PATCH v3 00/15] features and fixes on NXP eth devices Hemant Agrawal
2022-01-20 15:26     ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).