From: Ashish Gupta <Ashish.Gupta@caviumnetworks.com>
To: pablo.de.lara.guarch@intel.com
Cc: dev@dpdk.org, narayanaprasad.athreya@cavium.com,
mahipal.challa@cavium.com,
Shally Verma <shally.verma@caviumnetworks.com>
Subject: [dpdk-dev] [PATCH v3 0/6] compress: add Octeontx ZIP compression PMD
Date: Sat, 21 Jul 2018 00:34:41 +0530 [thread overview]
Message-ID: <20180720190447.7979-1-Ashish.Gupta@caviumnetworks.com> (raw)
From: Shally Verma <shally.verma@caviumnetworks.com>
This patch series add compression PMD for cavium octeontx ZIP module
in DPDK compress drivers.
Currently PMD only tested for deflate, stateless compression
and decompression with direct memory buffers.
Changes in v3:
- update doc
- add comp feature flags
- remove stateful pmd ops
- update pmd name and logtype as per naming conventions
Changes in v2:
- enable OCTEONTX_ZIPVF bydefault, and remove static debug flag
- fix meson build in compress/driver/octeontx
- fix 32-bit compiler error
- remove global declared data structure
- header files in alphabetical order
- update doc with correct feature support
V1 support:
Octeontx ZIP PMD implementation
Confuguration and Makefile changes to build Octeontx ZIP PMD
Documentation ZIP PMD
Build support in driver/compress meson for Octeontx ZIP PMD
TBDs:
Scatter Gather support,
Stateful compression/decompression,
test for performance
This patchset is dependent upon compressdev API.
Ashish Gupta (6):
compress/octeontx: add octeontx zip PMD
compress/octeontx: add device setup PMD ops
compress/octeontx: add xform and stream create support
compress/octeontx: add ops enq deq apis
doc: add Octeonx zip guide
usertools: update devbind for octeontx zip device
MAINTAINERS | 5 +
config/common_base | 5 +
doc/guides/compressdevs/features/octeontx.ini | 10 +
doc/guides/compressdevs/index.rst | 1 +
doc/guides/compressdevs/octeontx.rst | 107 ++++
drivers/compress/Makefile | 1 +
drivers/compress/meson.build | 2 +-
drivers/compress/octeontx/Makefile | 30 +
drivers/compress/octeontx/include/zip_regs.h | 712 +++++++++++++++++++++
drivers/compress/octeontx/meson.build | 11 +
drivers/compress/octeontx/otx_zip.c | 183 ++++++
drivers/compress/octeontx/otx_zip.h | 352 ++++++++++
drivers/compress/octeontx/otx_zip_pmd.c | 640 ++++++++++++++++++
.../octeontx/rte_pmd_octeontx_compress_version.map | 3 +
mk/rte.app.mk | 1 +
usertools/dpdk-devbind.py | 9 +
16 files changed, 2071 insertions(+), 1 deletion(-)
create mode 100644 doc/guides/compressdevs/features/octeontx.ini
create mode 100644 doc/guides/compressdevs/octeontx.rst
create mode 100644 drivers/compress/octeontx/Makefile
create mode 100644 drivers/compress/octeontx/include/zip_regs.h
create mode 100644 drivers/compress/octeontx/meson.build
create mode 100644 drivers/compress/octeontx/otx_zip.c
create mode 100644 drivers/compress/octeontx/otx_zip.h
create mode 100644 drivers/compress/octeontx/otx_zip_pmd.c
create mode 100644 drivers/compress/octeontx/rte_pmd_octeontx_compress_version.map
--
2.14.3
next reply other threads:[~2018-07-20 18:42 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-20 19:04 Ashish Gupta [this message]
2018-07-20 19:04 ` [dpdk-dev] [PATCH v3 1/6] compress/octeontx: add octeontx zip PMD Ashish Gupta
2018-07-20 19:04 ` [dpdk-dev] [PATCH v3 2/6] compress/octeontx: add device setup PMD ops Ashish Gupta
2018-07-20 19:04 ` [dpdk-dev] [PATCH v3 3/6] compress/octeontx: add xform and stream create support Ashish Gupta
2018-07-20 19:04 ` [dpdk-dev] [PATCH v3 4/6] compress/octeontx: add ops enq deq apis Ashish Gupta
2018-07-23 22:40 ` De Lara Guarch, Pablo
2018-07-24 8:22 ` Verma, Shally
2018-07-20 19:04 ` [dpdk-dev] [PATCH v3 5/6] doc: add Octeonx zip guide Ashish Gupta
2018-07-20 19:04 ` [dpdk-dev] [PATCH v3 6/6] usertools: update devbind for octeontx zip device Ashish Gupta
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=20180720190447.7979-1-Ashish.Gupta@caviumnetworks.com \
--to=ashish.gupta@caviumnetworks.com \
--cc=dev@dpdk.org \
--cc=mahipal.challa@cavium.com \
--cc=narayanaprasad.athreya@cavium.com \
--cc=pablo.de.lara.guarch@intel.com \
--cc=shally.verma@caviumnetworks.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).