[PATCH v2 0/3] Introduce UADK compression driver

2024-05-25 Thread Zhangfei Gao
Introduce a new compress PMD for hardware accelerators based on UADK [1]. UADK is a framework for user applications to access hardware accelerators. UADK relies on IOMMU SVA (Shared Virtual Address) feature, which share the same page table between IOMMU and MMU. Thereby user application can direct

[PATCH v2 1/3] compress/uadk: Introduce UADK compression driver

2024-05-25 Thread Zhangfei Gao
Introduce a new compression & decompression PMD for hardware accelerators based on UADK [1]. UADK is a framework for user applications to access hardware accelerators. UADK relies on IOMMU SVA (Shared Virtual Address) feature, which shares the same page table between IOMMU and MMU. Thereby user ap

[PATCH v2 2/3] compress/uadk: support basic operations

2024-05-25 Thread Zhangfei Gao
Support the basic dev control operations: configure, close, start, stop, infos_get, and queue pairs operations, etc. Signed-off-by: Zhangfei Gao --- drivers/compress/uadk/uadk_compress_pmd.c | 279 +- .../compress/uadk/uadk_compress_pmd_private.h | 16 + 2 files changed, 294

[PATCH v2 3/3] compress/uadk: support burst enqueue/dequeue

2024-05-25 Thread Zhangfei Gao
This commit adds the burst enqueue and dequeue operations, and adds compressdev uadk info to doc Signed-off-by: Zhangfei Gao --- MAINTAINERS | 6 ++ doc/guides/compressdevs/index.rst | 1 + doc/guides/compressdevs/uadk.rst | 98 +++

Re: [PATCH v3 1/7] eal: generic 64 bit counter

2024-05-25 Thread Mattias Rönnblom
On 2024-05-14 17:35, Stephen Hemminger wrote: This header implements 64 bit counters that are NOT atomic but are safe against load/store splits on 32 bit platforms. Signed-off-by: Stephen Hemminger Acked-by: Morten Brørup --- lib/eal/include/meson.build | 1 + lib/eal/include/rte_counter