DPDK patches and discussions
 help / color / mirror / Atom feed
From: <jerinj@marvell.com>
To: <dev@dpdk.org>
Cc: <skoteshwar@marvell.com>, Jerin Jacob <jerinj@marvell.com>
Subject: [dpdk-dev]  [PATCH v1 0/9] OCTEON TX2 DMA driver
Date: Sat, 1 Jun 2019 23:50:21 +0530	[thread overview]
Message-ID: <20190601182030.8282-1-jerinj@marvell.com> (raw)

From: Jerin Jacob <jerinj@marvell.com>

This patchset adds support for OCTEON TX2 DMA driver as DPDK rawdevice.

This patch set is depended on "OCTEON TX2 common and mempool driver" series.
http://mails.dpdk.org/archives/dev/2019-June/133329.html

This patches series also available at https://github.com/jerinjacobk/dpdk-dma
including the dependency patches for quick download and review.

Satha Rao (9):
  raw/octeontx2_dma: add build infra and device probe
  raw/octeontx2_dma: update probe function
  raw/octeontx2_dma: add device configuration
  raw/octeontx2_dma: add device close operation
  raw/octeontx2_dma: add enqueue operation
  raw/octeontx2_dma: add dequeue and device control operations
  raw/octeontx2_dma: add driver self test
  usertools: add octeontx2 DMA device
  raw/octeontx2_dma: add documentation

 MAINTAINERS                                   |   6 +
 config/common_base                            |   5 +
 doc/guides/platform/octeontx2.rst             |   5 +
 doc/guides/rawdevs/index.rst                  |   1 +
 doc/guides/rawdevs/octeontx2_dma.rst          | 114 +++++
 drivers/raw/Makefile                          |   1 +
 drivers/raw/meson.build                       |   2 +-
 drivers/raw/octeontx2_dma/Makefile            |  30 ++
 drivers/raw/octeontx2_dma/meson.build         |  18 +
 drivers/raw/octeontx2_dma/otx2_dpi_msg.c      | 105 +++++
 drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c   | 438 ++++++++++++++++++
 drivers/raw/octeontx2_dma/otx2_dpi_rawdev.h   | 196 ++++++++
 drivers/raw/octeontx2_dma/otx2_dpi_test.c     | 216 +++++++++
 .../rte_pmd_octeontx2_dma_version.map         |   4 +
 mk/rte.app.mk                                 |   1 +
 usertools/dpdk-devbind.py                     |   8 +
 16 files changed, 1149 insertions(+), 1 deletion(-)
 create mode 100644 doc/guides/rawdevs/octeontx2_dma.rst
 create mode 100644 drivers/raw/octeontx2_dma/Makefile
 create mode 100644 drivers/raw/octeontx2_dma/meson.build
 create mode 100644 drivers/raw/octeontx2_dma/otx2_dpi_msg.c
 create mode 100644 drivers/raw/octeontx2_dma/otx2_dpi_rawdev.c
 create mode 100644 drivers/raw/octeontx2_dma/otx2_dpi_rawdev.h
 create mode 100644 drivers/raw/octeontx2_dma/otx2_dpi_test.c
 create mode 100644 drivers/raw/octeontx2_dma/rte_pmd_octeontx2_dma_version.map

-- 
2.21.0


             reply	other threads:[~2019-06-01 18:20 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-01 18:20 jerinj [this message]
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 1/9] raw/octeontx2_dma: add build infra and device probe jerinj
2019-06-03 11:17   ` Luca Boccassi
2019-06-06  8:32     ` Jerin Jacob Kollanukkaran
2019-06-06  8:49       ` Luca Boccassi
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 2/9] raw/octeontx2_dma: update probe function jerinj
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 3/9] raw/octeontx2_dma: add device configuration jerinj
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 4/9] raw/octeontx2_dma: add device close operation jerinj
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 5/9] raw/octeontx2_dma: add enqueue operation jerinj
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 6/9] raw/octeontx2_dma: add dequeue and device control operations jerinj
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 7/9] raw/octeontx2_dma: add driver self test jerinj
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 8/9] usertools: add octeontx2 DMA device jerinj
2019-06-01 18:20 ` [dpdk-dev] [PATCH v1 9/9] raw/octeontx2_dma: add documentation jerinj
2019-07-05  8:37 ` [dpdk-dev] [PATCH v2 0/8] OCTEON TX2 DMA driver jerinj
2019-07-05  8:37   ` [dpdk-dev] [PATCH v2 1/8] raw/octeontx2_dma: add build infra and device probe jerinj
2019-07-05  8:37   ` [dpdk-dev] [PATCH v2 2/8] raw/octeontx2_dma: update probe function jerinj
2019-07-05  8:38   ` [dpdk-dev] [PATCH v2 3/8] raw/octeontx2_dma: add device configuration jerinj
2019-07-05  8:38   ` [dpdk-dev] [PATCH v2 4/8] raw/octeontx2_dma: add device close operation jerinj
2019-07-05  8:38   ` [dpdk-dev] [PATCH v2 5/8] raw/octeontx2_dma: add enqueue operation jerinj
2019-07-05  8:38   ` [dpdk-dev] [PATCH v2 6/8] raw/octeontx2_dma: add dequeue and device control operations jerinj
2019-07-05  8:38   ` [dpdk-dev] [PATCH v2 7/8] raw/octeontx2_dma: add driver self test jerinj
2019-07-05  8:38   ` [dpdk-dev] [PATCH v2 8/8] usertools: add octeontx2 DMA device binding jerinj
2019-07-05 10:45   ` [dpdk-dev] [PATCH v2 0/8] OCTEON TX2 DMA driver Thomas Monjalon

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=20190601182030.8282-1-jerinj@marvell.com \
    --to=jerinj@marvell.com \
    --cc=dev@dpdk.org \
    --cc=skoteshwar@marvell.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).