DPDK patches and discussions
 help / color / mirror / Atom feed
From: Hemant Agrawal <hemant.agrawal@oss.nxp.com>
To: Gagandeep Singh <g.singh@nxp.com>, dev@dpdk.org
Cc: hemant.agrawal@nxp.com
Subject: Re: [PATCH v5 00/11] NXP DPAA2 driver enhancements and fixes
Date: Thu, 19 Jun 2025 11:10:09 +0530	[thread overview]
Message-ID: <d1257137-ca00-4744-9617-e53a6e2b3a26@oss.nxp.com> (raw)
In-Reply-To: <20250613021125.790614-1-g.singh@nxp.com>


On 13-06-2025 07:41, Gagandeep Singh wrote:
> V1-logs:
> This patch series introduces enhancements and fixes to the
> NXP DPAA2 Ethernet driver.
> It includes support for
>   - software taildrop on ordered queues.
>   - setup speed capabilities.
>   - DPAA2 resource version.
>   - MAC level statistics.
>   - improve PA-VA conversion.
>   - add buffer pool depletion state configuration.
>   - fixes for shaper rate and buffer prepration.
>
> V2-Changes:
>   - Fix compilation issue on UB2404-32
>
> V3-Changes:
>   - Fix missing license information in fsl_dpmac.h
>
> V4-Changes:
>   - Rebased the series to main branch top.
>
> V5-Changes:
>   - Fix spelling error
>
> Apeksha Gupta (4):
>    net/dpaa2: add dpmac MC header file
>    net/dpaa2: support dpmac counters in stats
>    net/dpaa2: support dpmac Tx stats
>    net/dpaa2: support dpmac Tx stats in xstats
>
> Gagandeep Singh (2):
>    net/dpaa2: fix shaper rate
>    net/dpaa2: enable software taildrop for ordered queues
>
> Ioana Ciornei (2):
>    net/dpaa2: retrieve DPNI API version at init time
>    net/dpaa2: setup the speed cap based on the actual MAC
>
> Jun Yang (2):
>    net/dpaa2: fix issue of extract buffer preparation
>    mempool/dpaa2: use unified VA to IOVA conversion
>
> Vanshika Shukla (1):
>    bus/fslmc: add DPBP APIs for setting depletion thresholds
>
>   .mailmap                                  |   1 +
>   doc/guides/platform/dpaa2.rst             |   2 +-
>   drivers/bus/fslmc/mc/dpbp.c               |  78 +++-
>   drivers/bus/fslmc/mc/fsl_dpbp.h           |  41 +-
>   drivers/mempool/dpaa2/dpaa2_hw_mempool.c  | 248 ++++++----
>   drivers/mempool/dpaa2/dpaa2_hw_mempool.h  |   1 +
>   drivers/mempool/dpaa2/rte_dpaa2_mempool.h |  12 +
>   drivers/net/dpaa2/dpaa2_ethdev.c          | 276 +++++++++++-
>   drivers/net/dpaa2/dpaa2_ethdev.h          |  36 +-
>   drivers/net/dpaa2/dpaa2_rxtx.c            |  24 +-
>   drivers/net/dpaa2/dpaa2_tm.c              |  68 ++-
>   drivers/net/dpaa2/mc/dpni.c               |  50 +-
>   drivers/net/dpaa2/mc/fsl_dpmac.h          | 526 ++++++++++++++++++++++
>   drivers/net/dpaa2/mc/fsl_dpni.h           |   8 +-
>   drivers/net/dpaa2/mc/fsl_dpni_cmd.h       |  15 +-
>   15 files changed, 1238 insertions(+), 148 deletions(-)
>   create mode 100644 drivers/net/dpaa2/mc/fsl_dpmac.h

Series-

Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>


  parent reply	other threads:[~2025-06-19  5:40 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-30  7:13 [PATCH " Gagandeep Singh
2025-05-30  7:13 ` [PATCH 01/11] net/dpaa2: fix issue of extract buffer preparation Gagandeep Singh
2025-05-30  7:13 ` [PATCH 02/11] net/dpaa2: fix shaper rate Gagandeep Singh
2025-05-30  7:13 ` [PATCH 03/11] bus/fslmc: add DPBP APIs for setting depletion thresholds Gagandeep Singh
2025-05-30  7:13 ` [PATCH 04/11] mempool/dpaa2: use unified VA to IOVA conversion Gagandeep Singh
2025-05-30  7:13 ` [PATCH 05/11] net/dpaa2: add dpmac MC header file Gagandeep Singh
2025-05-30  7:13 ` [PATCH 06/11] net/dpaa2: support dpmac counters in stats Gagandeep Singh
2025-05-30  7:13 ` [PATCH 07/11] net/dpaa2: support dpmac Tx stats Gagandeep Singh
2025-05-30  7:13 ` [PATCH 08/11] net/dpaa2: support dpmac Tx stats in xstats Gagandeep Singh
2025-05-30  7:13 ` [PATCH 09/11] net/dpaa2: retrieve DPNI API version at init time Gagandeep Singh
2025-05-30  7:13 ` [PATCH 10/11] net/dpaa2: setup the speed cap based on the actual MAC Gagandeep Singh
2025-05-30  7:13 ` [PATCH 11/11] net/dpaa2: enable software taildrop for ordered queues Gagandeep Singh
2025-06-02 10:40 ` [PATCH v2 00/11] NXP DPAA2 driver enhancements and fixes Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 01/11] net/dpaa2: fix issue of extract buffer preparation Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 02/11] net/dpaa2: fix shaper rate Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 03/11] bus/fslmc: add DPBP APIs for setting depletion thresholds Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 04/11] mempool/dpaa2: use unified VA to IOVA conversion Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 05/11] net/dpaa2: add dpmac MC header file Gagandeep Singh
2025-06-04 20:01     ` Stephen Hemminger
2025-06-02 10:40   ` [PATCH v2 06/11] net/dpaa2: support dpmac counters in stats Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 07/11] net/dpaa2: support dpmac Tx stats Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 08/11] net/dpaa2: support dpmac Tx stats in xstats Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 09/11] net/dpaa2: retrieve DPNI API version at init time Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 10/11] net/dpaa2: setup the speed cap based on the actual MAC Gagandeep Singh
2025-06-02 10:40   ` [PATCH v2 11/11] net/dpaa2: enable software taildrop for ordered queues Gagandeep Singh
2025-06-09  2:54   ` [PATCH v3 00/11] NXP DPAA2 driver enhancements and fixes Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 01/11] net/dpaa2: fix issue of extract buffer preparation Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 02/11] net/dpaa2: fix shaper rate Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 03/11] bus/fslmc: add DPBP APIs for setting depletion thresholds Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 04/11] mempool/dpaa2: use unified VA to IOVA conversion Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 05/11] net/dpaa2: add dpmac MC header file Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 06/11] net/dpaa2: support dpmac counters in stats Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 07/11] net/dpaa2: support dpmac Tx stats Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 08/11] net/dpaa2: support dpmac Tx stats in xstats Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 09/11] net/dpaa2: retrieve DPNI API version at init time Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 10/11] net/dpaa2: setup the speed cap based on the actual MAC Gagandeep Singh
2025-06-09  2:54     ` [PATCH v3 11/11] net/dpaa2: enable software taildrop for ordered queues Gagandeep Singh
2025-06-11 10:51     ` [PATCH v4 00/11] NXP DPAA2 driver enhancements and fixes Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 01/11] net/dpaa2: fix issue of extract buffer preparation Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 02/11] net/dpaa2: fix shaper rate Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 03/11] bus/fslmc: add DPBP APIs for setting depletion thresholds Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 04/11] mempool/dpaa2: use unified VA to IOVA conversion Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 05/11] net/dpaa2: add dpmac MC header file Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 06/11] net/dpaa2: support dpmac counters in stats Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 07/11] net/dpaa2: support dpmac Tx stats Gagandeep Singh
2025-06-11 16:50         ` Stephen Hemminger
2025-06-11 10:51       ` [PATCH v4 08/11] net/dpaa2: support dpmac Tx stats in xstats Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 09/11] net/dpaa2: retrieve DPNI API version at init time Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 10/11] net/dpaa2: setup the speed cap based on the actual MAC Gagandeep Singh
2025-06-11 10:51       ` [PATCH v4 11/11] net/dpaa2: enable software taildrop for ordered queues Gagandeep Singh
2025-06-13  2:11       ` [PATCH v5 00/11] NXP DPAA2 driver enhancements and fixes Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 01/11] net/dpaa2: fix issue of extract buffer preparation Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 02/11] net/dpaa2: fix shaper rate Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 03/11] bus/fslmc: add DPBP APIs for setting depletion thresholds Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 04/11] mempool/dpaa2: use unified VA to IOVA conversion Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 05/11] net/dpaa2: add dpmac MC header file Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 06/11] net/dpaa2: support dpmac counters in stats Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 07/11] net/dpaa2: support dpmac Tx stats Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 08/11] net/dpaa2: support dpmac Tx stats in xstats Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 09/11] net/dpaa2: retrieve DPNI API version at init time Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 10/11] net/dpaa2: setup the speed cap based on the actual MAC Gagandeep Singh
2025-06-13  2:11         ` [PATCH v5 11/11] net/dpaa2: enable software taildrop for ordered queues Gagandeep Singh
2025-06-19  5:40         ` Hemant Agrawal [this message]
2025-06-09 16:42 ` [PATCH 00/11] NXP DPAA2 driver enhancements and fixes Stephen Hemminger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d1257137-ca00-4744-9617-e53a6e2b3a26@oss.nxp.com \
    --to=hemant.agrawal@oss.nxp.com \
    --cc=dev@dpdk.org \
    --cc=g.singh@nxp.com \
    --cc=hemant.agrawal@nxp.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).