dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/15] dpaa2: Fixes and enhancements for DPMAC, stats, and parser
@ 2025-10-14  6:40 Prashant Gupta
  2025-10-14  6:40 ` [PATCH 01/15] net/dpaa2: fix uninitialized variable issue Prashant Gupta
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Prashant Gupta @ 2025-10-14  6:40 UTC (permalink / raw)
  To: dev, stephen, david.marchand

From: Prashant Gupta <nxg06376@lsv03583.swis.in-blr01.nxp.com>

This patch series introduces a set of improvements and bug fixes for the DPAA2 Ethernet driver. Key highlights include:

- Fixes for checksum parsing and error queue buffer handling
- Enhancements to flow rule resizing and parser result prefetching
- Addition of DPMAC MC header support and Policer statistics per traffic class
- Support for eCPRI header/message dump and DPMAC counters
- Upgrade of fslmc base firmware to version 10.39.0
- Introduction of devargs to drop parse-failed packets in hardware

These changes improve robustness, observability, and performance of the DPAA2 driver stack.


Brick Yang (2):
  net/dpaa2: fix L3/L4 csum results in packet parse
  net/dpaa2: fix to recv packets with additional parse errors

Hemant Agrawal (3):
  drivers: dpaa2 upgrade fslmc base FW to 10.39.0
  net/dpaa2: replace global variable to driver flag
  net/dpaa2: add devargs to drop parse packets in HW

Ioana Ciornei (1):
  net/dpaa2: setup the speed cap based on the actual MAC

Jun Yang (4):
  net/dpaa2: fix error frame dump issue
  net/dpaa2: fix flow rule's resizing issue
  net/dpaa2: optimize to prefetch next parser result
  net/dpaa2: add eCPRI header and message dump

Prashant Gupta (4):
  net/dpaa2: fix uninitialized variable issue
  net/dpaa2: fix to free buffers from error queue
  net/dpaa2: add dpmac MC header file
  net/dpaa2: add Policer stats for each TC

Vanshika Shukla (1):
  net/dpaa2: support dpmac counters in stats

 .mailmap                                     |   1 +
 doc/guides/nics/dpaa2.rst                    |   4 +
 doc/guides/rel_notes/release_25_11.rst       |   3 +
 drivers/bus/fslmc/bus_fslmc_driver.h         |   1 +
 drivers/bus/fslmc/mc/dpbp.c                  |  78 ++-
 drivers/bus/fslmc/mc/dprc.c                  |   2 +
 drivers/bus/fslmc/mc/fsl_dpbp.h              |  41 +-
 drivers/bus/fslmc/mc/fsl_dpmng.h             |   4 +-
 drivers/bus/fslmc/mc/fsl_dprc.h              |   1 +
 drivers/net/dpaa2/base/dpaa2_hw_dpni.c       |   3 +-
 drivers/net/dpaa2/base/dpaa2_hw_dpni_annot.h |  10 +-
 drivers/net/dpaa2/dpaa2_ethdev.c             | 350 +++++++++++-
 drivers/net/dpaa2/dpaa2_ethdev.h             |  65 ++-
 drivers/net/dpaa2/dpaa2_flow.c               | 123 ++++-
 drivers/net/dpaa2/dpaa2_mux.c                |   8 +-
 drivers/net/dpaa2/dpaa2_parse_dump.h         | 124 +++++
 drivers/net/dpaa2/dpaa2_rxtx.c               | 124 +++--
 drivers/net/dpaa2/mc/dpkg.c                  |   7 +-
 drivers/net/dpaa2/mc/dpni.c                  |  50 +-
 drivers/net/dpaa2/mc/dprtc.c                 |  38 +-
 drivers/net/dpaa2/mc/fsl_dpdmux.h            |  13 +-
 drivers/net/dpaa2/mc/fsl_dpkg.h              |   7 +-
 drivers/net/dpaa2/mc/fsl_dpmac.h             | 526 +++++++++++++++++++
 drivers/net/dpaa2/mc/fsl_dpni.h              |  37 +-
 drivers/net/dpaa2/mc/fsl_dpni_cmd.h          |  15 +-
 drivers/net/dpaa2/mc/fsl_dprtc.h             |  39 +-
 drivers/net/dpaa2/mc/fsl_dprtc_cmd.h         |   7 +-
 27 files changed, 1518 insertions(+), 163 deletions(-)
 create mode 100644 drivers/net/dpaa2/mc/fsl_dpmac.h

-- 
2.25.1


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 00/15] dpaa2: Fixes and enhancements for DPMAC, stats, and parser
@ 2025-10-14  6:00 Prashant Gupta
  2025-10-14  6:00 ` [PATCH 03/15] net/dpaa2: fix L3/L4 csum results in packet parse Prashant Gupta
  0 siblings, 1 reply; 17+ messages in thread
From: Prashant Gupta @ 2025-10-14  6:00 UTC (permalink / raw)
  To: dev, stephen, david.marchand

From: Prashant Gupta <nxg06376@lsv03583.swis.in-blr01.nxp.com>

This patch series introduces a set of improvements and bug fixes for the DPAA2 Ethernet driver. Key highlights include:

- Fixes for checksum parsing and error queue buffer handling
- Enhancements to flow rule resizing and parser result prefetching
- Addition of DPMAC MC header support and Policer statistics per traffic class
- Support for eCPRI header/message dump and DPMAC counters
- Upgrade of fslmc base firmware to version 10.39.0
- Introduction of devargs to drop parse-failed packets in hardware

These changes improve robustness, observability, and performance of the DPAA2 driver stack.


Brick Yang (2):
  net/dpaa2: fix L3/L4 csum results in packet parse
  net/dpaa2: fix to recv packets with additional parse errors

Hemant Agrawal (3):
  drivers: dpaa2 upgrade fslmc base FW to 10.39.0
  net/dpaa2: replace global variable to driver flag
  net/dpaa2: add devargs to drop parse packets in HW

Ioana Ciornei (1):
  net/dpaa2: setup the speed cap based on the actual MAC

Jun Yang (4):
  net/dpaa2: fix error frame dump issue
  net/dpaa2: fix flow rule's resizing issue
  net/dpaa2: optimize to prefetch next parser result
  net/dpaa2: add eCPRI header and message dump

Prashant Gupta (4):
  net/dpaa2: fix uninitialized variable issue
  net/dpaa2: fix to free buffers from error queue
  net/dpaa2: add dpmac MC header file
  net/dpaa2: add Policer stats for each TC

Vanshika Shukla (1):
  net/dpaa2: support dpmac counters in stats

 .mailmap                                     |   1 +
 doc/guides/nics/dpaa2.rst                    |   4 +
 doc/guides/rel_notes/release_25_11.rst       |   3 +
 drivers/bus/fslmc/bus_fslmc_driver.h         |   1 +
 drivers/bus/fslmc/mc/dpbp.c                  |  78 ++-
 drivers/bus/fslmc/mc/dprc.c                  |   2 +
 drivers/bus/fslmc/mc/fsl_dpbp.h              |  41 +-
 drivers/bus/fslmc/mc/fsl_dpmng.h             |   4 +-
 drivers/bus/fslmc/mc/fsl_dprc.h              |   1 +
 drivers/net/dpaa2/base/dpaa2_hw_dpni.c       |   3 +-
 drivers/net/dpaa2/base/dpaa2_hw_dpni_annot.h |  10 +-
 drivers/net/dpaa2/dpaa2_ethdev.c             | 350 +++++++++++-
 drivers/net/dpaa2/dpaa2_ethdev.h             |  65 ++-
 drivers/net/dpaa2/dpaa2_flow.c               | 123 ++++-
 drivers/net/dpaa2/dpaa2_mux.c                |   8 +-
 drivers/net/dpaa2/dpaa2_parse_dump.h         | 124 +++++
 drivers/net/dpaa2/dpaa2_rxtx.c               | 124 +++--
 drivers/net/dpaa2/mc/dpkg.c                  |   7 +-
 drivers/net/dpaa2/mc/dpni.c                  |  50 +-
 drivers/net/dpaa2/mc/dprtc.c                 |  38 +-
 drivers/net/dpaa2/mc/fsl_dpdmux.h            |  13 +-
 drivers/net/dpaa2/mc/fsl_dpkg.h              |   7 +-
 drivers/net/dpaa2/mc/fsl_dpmac.h             | 526 +++++++++++++++++++
 drivers/net/dpaa2/mc/fsl_dpni.h              |  37 +-
 drivers/net/dpaa2/mc/fsl_dpni_cmd.h          |  15 +-
 drivers/net/dpaa2/mc/fsl_dprtc.h             |  39 +-
 drivers/net/dpaa2/mc/fsl_dprtc_cmd.h         |   7 +-
 27 files changed, 1518 insertions(+), 163 deletions(-)
 create mode 100644 drivers/net/dpaa2/mc/fsl_dpmac.h

-- 
2.25.1


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

end of thread, other threads:[~2025-10-14  7:23 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-14  6:40 [PATCH 00/15] dpaa2: Fixes and enhancements for DPMAC, stats, and parser Prashant Gupta
2025-10-14  6:40 ` [PATCH 01/15] net/dpaa2: fix uninitialized variable issue Prashant Gupta
2025-10-14  6:40 ` [PATCH 02/15] net/dpaa2: fix to free buffers from error queue Prashant Gupta
2025-10-14  6:40 ` [PATCH 03/15] net/dpaa2: fix L3/L4 csum results in packet parse Prashant Gupta
2025-10-14  6:40 ` [PATCH 04/15] net/dpaa2: fix to recv packets with additional parse errors Prashant Gupta
2025-10-14  6:40 ` [PATCH 05/15] net/dpaa2: fix error frame dump issue Prashant Gupta
2025-10-14  6:40 ` [PATCH 06/15] net/dpaa2: fix flow rule's resizing issue Prashant Gupta
2025-10-14  6:40 ` [PATCH 07/15] net/dpaa2: add dpmac MC header file Prashant Gupta
2025-10-14  6:40 ` [PATCH 08/15] net/dpaa2: support dpmac counters in stats Prashant Gupta
2025-10-14  6:40 ` [PATCH 09/15] net/dpaa2: setup the speed cap based on the actual MAC Prashant Gupta
2025-10-14  6:40 ` [PATCH 10/15] drivers: dpaa2 upgrade fslmc base FW to 10.39.0 Prashant Gupta
2025-10-14  6:40 ` [PATCH 11/15] net/dpaa2: replace global variable to driver flag Prashant Gupta
2025-10-14  6:40 ` [PATCH 12/15] net/dpaa2: add devargs to drop parse packets in HW Prashant Gupta
2025-10-14  6:40 ` [PATCH 13/15] net/dpaa2: optimize to prefetch next parser result Prashant Gupta
2025-10-14  6:40 ` [PATCH 14/15] net/dpaa2: add eCPRI header and message dump Prashant Gupta
2025-10-14  6:40 ` [PATCH 15/15] net/dpaa2: add Policer stats for each TC Prashant Gupta
  -- strict thread matches above, loose matches on Subject: below --
2025-10-14  6:00 [PATCH 00/15] dpaa2: Fixes and enhancements for DPMAC, stats, and parser Prashant Gupta
2025-10-14  6:00 ` [PATCH 03/15] net/dpaa2: fix L3/L4 csum results in packet parse Prashant Gupta

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).