This series collects correctness fixes, cleanups and feature additions
across the NXP DPAA bus, net, mempool and DMA drivers.
1. Bus/fman infrastructure cleanups (patches 01, 02, 13)
- Refine fman symbol naming and fix unintended global scope.
- Scan the maximum BPID count from the device tree rather than
using a compile-time constant.
- Improve the DPAA bus log macro and fix bus-detection logic.
2. BMI Tx statistics (patch 03)
- Extend fman_hw to read Tx BMI registers and expose the counters
through the xstats interface.
3. Process-type guards (patch 04)
- Add secondary-process checks in the net, DMA and crypto drivers
to prevent segfaults when operations valid only in the primary
process are called from a secondary.
4. FQ shutdown hardening (patches 05-11)
- Introduce helpers for qman channel and work-queue lookup so that
FQ teardown is driven by the FQ descriptor instead of ad-hoc
parameters.
- Add channel validation and CGR cleanup to the shutdown path.
- Clean up the Tx-confirmation FQ on device stop and remove a
redundant shutdown call from Rx queue setup.
5. net/dpaa improvements (patches 12, 14, 15)
- Optimise FM de-configuration to avoid redundant portal drains.
- Streamline FMC MAC-type parsing.
- Report an error when deferred-start mode is requested (not
supported by the driver).
6. mempool/dpaa (patches 16-17)
- Optimise multi-entry buffer-pool acquire/release operations.
- Release the BPID in the driver destructor to avoid resource leaks
across repeated bind/unbind cycles.
7. dma/dpaa (patch 18)
- Add SG-list data validation and a workaround for erratum
ERR050757.
8. net/dpaa ONIC support (patch 19)
- Add port-type checks for ONIC (Open Network Interface Card)
shared-Ethernet ports.
Changes in v3:
- Fix out-of-bounds rte_memcpy in bman_release_fast (squashed into
patch 16): when num == 1 the source pointer bm_bufs[1] is one past
the array end; guard the copy with "if (num > 1)".
Gagandeep Singh (2):
bus/dpaa: enhance DPAA FQ shutdown
dma/dpaa: add SG data validation and ERR050757 fix
Hemant Agrawal (5):
net/dpaa: clean Tx confirmation FQ on device stop
net/dpaa: remove redundant FQ shutdown from Rx queue setup
net/dpaa: optimize FM deconfig
bus/dpaa: improve log macro and fix bus detection
net/dpaa: report error on using deferred start
Jun Yang (10):
bus/dpaa: refine fman naming and fix global scope
bus/dpaa: scan max BPID from DTS
drivers: add BMI Tx statistics
bus/dpaa: define helpers for qman channel and wq
drivers: shutdown DPAA FQ by fq descriptor
bus/dpaa: improve FQ shutdown with channel validation
drivers: add DPAA cgrid cleanup support
net/dpaa: optimize FMC MAC type parsing
drivers: optimize DPAA multi-entry buffer pool operations
drivers: release DPAA bpid on driver destructor
Prashant Gupta (1):
drivers: add process-type guards for secondary process
Vanshika Shukla (1):
net/dpaa: add ONIC port checks
drivers/bus/dpaa/base/fman/fman.c | 23 ++--
drivers/bus/dpaa/base/fman/fman_hw.c | 108 ++++++++---------
drivers/bus/dpaa/base/qbman/bman.c | 59 ++++------
drivers/bus/dpaa/base/qbman/bman_driver.c | 48 +++++---
drivers/bus/dpaa/base/qbman/qman.c | 115 ++++++++++--------
drivers/bus/dpaa/base/qbman/qman.h | 23 +++-
drivers/bus/dpaa/base/qbman/qman_driver.c | 29 ++++-
drivers/bus/dpaa/dpaa_bus.c | 35 ++++--
drivers/bus/dpaa/dpaa_bus_base_symbols.c | 4 +
drivers/bus/dpaa/include/fman.h | 30 ++++-
drivers/bus/dpaa/include/fsl_bman.h | 49 ++++++--
drivers/bus/dpaa/include/fsl_qman.h | 22 +++-
drivers/crypto/dpaa_sec/dpaa_sec.c | 3 -
drivers/dma/dpaa/dpaa_qdma.c | 103 ++++++++++++----
drivers/mempool/dpaa/dpaa_mempool.c | 75 ++++++++++--
drivers/mempool/dpaa/dpaa_mempool.h | 3 +-
drivers/net/dpaa/dpaa_ethdev.c | 132 ++++++++++++++++-----
drivers/net/dpaa/dpaa_ethdev.h | 22 +++-
drivers/net/dpaa/dpaa_flow.c | 137 +++++++++++++---------
drivers/net/dpaa/dpaa_flow.h | 7 +-
drivers/net/dpaa/dpaa_fmc.c | 73 +++++++-----
21 files changed, 748 insertions(+), 352 deletions(-)
--
2.25.1