DPDK patches and discussions
 help / color / mirror / Atom feed
From: nipun.gupta@nxp.com
To: dev@dpdk.org
Cc: thomas@monjalon.net, G.Singh@nxp.com, hemant.agrawal@nxp.com,
	gakhil@marvell.com
Subject: [PATCH v3 0/6] move DPAA2 QDMA driver freom raw to dma
Date: Thu,  5 May 2022 14:35:16 +0530	[thread overview]
Message-ID: <20220505090522.9638-1-nipun.gupta@nxp.com> (raw)
In-Reply-To: <20220421123054.22442-1-nipun.gupta@nxp.com>

From: Nipun Gupta <nipun.gupta@nxp.com>

This change removes the DPAA2 QDMA raw driver and adds the
QDMA driver in dma set of drivers. The underlying I/O
framework remains intact, whereas the configuration part
is done as per the DMA API support.

Changes in v2:
- Fix checkpath errors
- Fix documentation compilation

Changes in v3:
- Add the missing doc/dmadevs/dpaa2.rst file

Nipun Gupta (6):
  raw/dpaa2_qdma: remove dpaa2 QDMA driver from raw
  dma/dpaa2: introduce DPAA2 DMA driver skeleton
  dma/dpaa2: support basic operations
  dma/dpaa2: add PMD apis for additional configuration
  dma/dpaa2: support DMA operations
  dma/dpaa2: support statistics

 MAINTAINERS                                   |   11 +-
 doc/api/doxy-api.conf.in                      |    2 +-
 .../dpaa2_qdma.rst => dmadevs/dpaa2.rst}      |   17 +-
 doc/guides/dmadevs/index.rst                  |    1 +
 doc/guides/platform/dpaa2.rst                 |    4 +-
 doc/guides/rawdevs/index.rst                  |    1 -
 drivers/bus/fslmc/rte_fslmc.h                 |    1 +
 .../dpaa2_qdma => dma/dpaa2}/dpaa2_qdma.c     | 1248 ++++++++---------
 .../dpaa2_qdma => dma/dpaa2}/dpaa2_qdma.h     |  195 ++-
 .../dpaa2}/dpaa2_qdma_logs.h                  |    2 +-
 drivers/dma/dpaa2/meson.build                 |   18 +
 drivers/dma/dpaa2/rte_pmd_dpaa2_qdma.h        |  173 +++
 drivers/dma/dpaa2/version.map                 |   11 +
 drivers/dma/meson.build                       |    1 +
 drivers/raw/dpaa2_qdma/meson.build            |    7 -
 drivers/raw/dpaa2_qdma/rte_pmd_dpaa2_qdma.h   |  204 ---
 drivers/raw/dpaa2_qdma/version.map            |    7 -
 drivers/raw/meson.build                       |    1 -
 18 files changed, 864 insertions(+), 1040 deletions(-)
 rename doc/guides/{rawdevs/dpaa2_qdma.rst => dmadevs/dpaa2.rst} (75%)
 rename drivers/{raw/dpaa2_qdma => dma/dpaa2}/dpaa2_qdma.c (57%)
 rename drivers/{raw/dpaa2_qdma => dma/dpaa2}/dpaa2_qdma.h (77%)
 rename drivers/{raw/dpaa2_qdma => dma/dpaa2}/dpaa2_qdma_logs.h (97%)
 create mode 100644 drivers/dma/dpaa2/meson.build
 create mode 100644 drivers/dma/dpaa2/rte_pmd_dpaa2_qdma.h
 create mode 100644 drivers/dma/dpaa2/version.map
 delete mode 100644 drivers/raw/dpaa2_qdma/meson.build
 delete mode 100644 drivers/raw/dpaa2_qdma/rte_pmd_dpaa2_qdma.h
 delete mode 100644 drivers/raw/dpaa2_qdma/version.map

-- 
2.17.1


  parent reply	other threads:[~2022-05-05  9:05 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-21 12:30 [PATCH " nipun.gupta
2022-04-21 12:30 ` [PATCH 1/6] raw/dpaa2_qdma: remove dpaa2 QDMA driver from raw nipun.gupta
2022-04-21 12:30 ` [PATCH 2/6] dma/dpaa2: introduce DPAA2 DMA driver skeleton nipun.gupta
2022-04-21 12:30 ` [PATCH 3/6] dma/dpaa2: support basic operations nipun.gupta
2022-04-21 12:30 ` [PATCH 4/6] dma/dpaa2: add PMD apis for additional configuration nipun.gupta
2022-04-21 12:30 ` [PATCH 5/6] dma/dpaa2: support DMA operations nipun.gupta
2022-04-21 12:30 ` [PATCH 6/6] dma/dpaa2: support statistics nipun.gupta
2022-05-05  7:31 ` [PATCH v2 0/6] move DPAA2 QDMA driver freom raw to dma nipun.gupta
2022-05-05  7:31   ` [PATCH v2 1/6] raw/dpaa2_qdma: remove dpaa2 QDMA driver from raw nipun.gupta
2022-05-05  7:31   ` [PATCH v2 2/6] dma/dpaa2: introduce DPAA2 DMA driver skeleton nipun.gupta
2022-05-05  7:31   ` [PATCH v2 3/6] dma/dpaa2: support basic operations nipun.gupta
2022-05-05  7:31   ` [PATCH v2 4/6] dma/dpaa2: add PMD apis for additional configuration nipun.gupta
2022-05-05  7:31   ` [PATCH v2 5/6] dma/dpaa2: support DMA operations nipun.gupta
2022-05-05  7:31   ` [PATCH v2 6/6] dma/dpaa2: support statistics nipun.gupta
2022-05-05  9:05 ` nipun.gupta [this message]
2022-05-05  9:05   ` [PATCH v3 1/6] raw/dpaa2_qdma: remove dpaa2 QDMA driver from raw nipun.gupta
2022-05-05  9:05   ` [PATCH v3 2/6] dma/dpaa2: introduce DPAA2 DMA driver skeleton nipun.gupta
2022-05-05  9:05   ` [PATCH v3 3/6] dma/dpaa2: support basic operations nipun.gupta
2022-05-05  9:05   ` [PATCH v3 4/6] dma/dpaa2: add PMD apis for additional configuration nipun.gupta
2022-05-05  9:05   ` [PATCH v3 5/6] dma/dpaa2: support DMA operations nipun.gupta
2022-05-05  9:05   ` [PATCH v3 6/6] dma/dpaa2: support statistics nipun.gupta
2022-05-26  6:00   ` [PATCH v3 0/6] move DPAA2 QDMA driver freom raw to dma Hemant Agrawal
2022-05-31 15:29     ` 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=20220505090522.9638-1-nipun.gupta@nxp.com \
    --to=nipun.gupta@nxp.com \
    --cc=G.Singh@nxp.com \
    --cc=dev@dpdk.org \
    --cc=gakhil@marvell.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=thomas@monjalon.net \
    /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).