From: Nipun Gupta <nipun.gupta@nxp.com>
To: "thomas@monjalon.net" <thomas@monjalon.net>,
Hemant Agrawal <hemant.agrawal@nxp.com>,
Shreyansh Jain <shreyansh.jain@nxp.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH v5 0/7] Introduce DPAA2 Command Interface raw driver
Date: Fri, 4 May 2018 07:15:18 +0000 [thread overview]
Message-ID: <HE1PR0401MB2425A8816D365FF06488E329E6860@HE1PR0401MB2425.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <1525365233-5956-1-git-send-email-nipun.gupta@nxp.com>
There is an intermediate patch compilation break. Will fix this and resend.
Apologies for this and I will take care of this from next time.
Thanks,
Nipun
> -----Original Message-----
> From: Nipun Gupta
> Sent: Thursday, May 3, 2018 10:04 PM
> To: thomas@monjalon.net; Hemant Agrawal <hemant.agrawal@nxp.com>;
> Shreyansh Jain <shreyansh.jain@nxp.com>
> Cc: dev@dpdk.org; Nipun Gupta <nipun.gupta@nxp.com>
> Subject: [PATCH v5 0/7] Introduce DPAA2 Command Interface raw driver
>
> This patch set introduces DPAA2 based Command Interface
> device driver.
>
> This driver is provides communication between the GPP and
> AIOP Firmware.
>
> This patchset is based on top of:
> https://dpdk.org/dev/patchwork/patch/39246/
>
> Patches 1-3:
> Makes necessary changes and fixes in the DPAA2 bus and
> mempool region
> Patches 4-6:
> Add the DPAA2 CMDIF driver
> Patches 7:
> Update the respective documentation
>
> Changes in v2:
> - Move CMDIF compilation to common_linuxapp
> - Support physical addressing mode
>
> Changes in v3:
> - Rebased over DPAA2 QDMA patches
> - Updated logging adding Data Path logs too
> - Fix up error handling in patch 3
> - Merged the two separate doc patches (patch 7)
>
> Changes in v4:
> - Added meson build support
>
> Changes in v5:
> - Fixed shared build for x86
>
> Nipun Gupta (7):
> mempool/dpaa2: add functions exposed to DPDK applications
> bus/fslmc: expose API to free dpci device
> bus/fslmc: keep Tx queues information for DPCI devices too
> raw/dpaa2_cmdif: introduce DPAA2 command interface driver
> raw/dpaa2_cmdif: add attribute get functionality
> raw/dpaa2_cmdif: support enqueue dequeue operations
> doc: add DPAA2 CMDIF rawdev guide
>
> MAINTAINERS | 5 +
> config/common_base | 5 +
> config/common_linuxapp | 1 +
> doc/api/doxy-api-index.md | 2 +
> doc/api/doxy-api.conf | 2 +
> doc/guides/rawdevs/dpaa2_cmdif.rst | 144 ++++++++++
> doc/guides/rawdevs/index.rst | 1 +
> doc/guides/rel_notes/release_18_05.rst | 11 +
> drivers/bus/fslmc/portal/dpaa2_hw_dpci.c | 86 ++++--
> drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 3 +-
> drivers/bus/fslmc/rte_bus_fslmc_version.map | 1 +
> drivers/event/dpaa2/dpaa2_eventdev.c | 10 +-
> drivers/mempool/dpaa2/Makefile | 2 +
> drivers/mempool/dpaa2/dpaa2_hw_mempool.c | 30 +++
> drivers/mempool/dpaa2/rte_dpaa2_mempool.h | 53 ++++
> .../mempool/dpaa2/rte_mempool_dpaa2_version.map | 8 +
> drivers/raw/Makefile | 1 +
> drivers/raw/dpaa2_cmdif/Makefile | 36 +++
> drivers/raw/dpaa2_cmdif/dpaa2_cmdif.c | 300
> +++++++++++++++++++++
> drivers/raw/dpaa2_cmdif/dpaa2_cmdif_logs.h | 46 ++++
> drivers/raw/dpaa2_cmdif/meson.build | 9 +
> drivers/raw/dpaa2_cmdif/rte_pmd_dpaa2_cmdif.h | 35 +++
> .../dpaa2_cmdif/rte_pmd_dpaa2_cmdif_version.map | 4 +
> drivers/raw/meson.build | 2 +-
> mk/rte.app.mk | 1 +
> 25 files changed, 768 insertions(+), 30 deletions(-)
> create mode 100644 doc/guides/rawdevs/dpaa2_cmdif.rst
> create mode 100644 drivers/mempool/dpaa2/rte_dpaa2_mempool.h
> create mode 100644 drivers/raw/dpaa2_cmdif/Makefile
> create mode 100644 drivers/raw/dpaa2_cmdif/dpaa2_cmdif.c
> create mode 100644 drivers/raw/dpaa2_cmdif/dpaa2_cmdif_logs.h
> create mode 100644 drivers/raw/dpaa2_cmdif/meson.build
> create mode 100644 drivers/raw/dpaa2_cmdif/rte_pmd_dpaa2_cmdif.h
> create mode 100644
> drivers/raw/dpaa2_cmdif/rte_pmd_dpaa2_cmdif_version.map
>
> --
> 1.9.1
next prev parent reply other threads:[~2018-05-04 7:15 UTC|newest]
Thread overview: 71+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-22 9:34 [dpdk-dev] [PATCH 0/9] " Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 1/9] mempool/dpaa2: add functions exposed to DPDK applications Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 2/9] bus/fslmc: expose API to free dpci device Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 3/9] bus/fslmc: keep Tx queues information for DPCI devices too Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 4/9] bus/fslmc: add preprocessors to get flc and frc from fd Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 5/9] raw/dpaa2_cmdif: introduce DPAA2 command interface driver Nipun Gupta
2018-02-22 13:12 ` Shreyansh Jain
2018-02-23 6:35 ` Nipun Gupta
2018-02-22 14:31 ` Jerin Jacob
2018-02-23 6:35 ` Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 6/9] raw/dpaa2_cmdif: add attribute get functionality Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 7/9] raw/dpaa2_cmdif: support enqueue dequeue operations Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 8/9] doc: add DPAA2 CMDIF rawdev guide Nipun Gupta
2018-02-22 9:34 ` [dpdk-dev] [PATCH 9/9] doc: add dpaa2 command interface rawdev to release notes Nipun Gupta
2018-04-07 14:33 ` [dpdk-dev] [PATCH v2 0/9] Introduce DPAA2 Command Interface raw driver Nipun Gupta
2018-04-07 14:33 ` [dpdk-dev] [PATCH v2 1/9] mempool/dpaa2: add functions exposed to DPDK applications Nipun Gupta
2018-04-07 14:33 ` [dpdk-dev] [PATCH v2 2/9] bus/fslmc: expose API to free dpci device Nipun Gupta
2018-04-07 14:33 ` [dpdk-dev] [PATCH v2 3/9] bus/fslmc: keep Tx queues information for DPCI devices too Nipun Gupta
2018-04-25 1:47 ` Shreyansh Jain
2018-04-25 3:53 ` Shreyansh Jain
2018-04-07 14:34 ` [dpdk-dev] [PATCH v2 4/9] bus/fslmc: add preprocessors to get flc and frc from fd Nipun Gupta
2018-04-07 14:34 ` [dpdk-dev] [PATCH v2 5/9] raw/dpaa2_cmdif: introduce DPAA2 command interface driver Nipun Gupta
2018-04-25 4:18 ` Shreyansh Jain
2018-04-07 14:34 ` [dpdk-dev] [PATCH v2 6/9] raw/dpaa2_cmdif: add attribute get functionality Nipun Gupta
2018-04-07 14:34 ` [dpdk-dev] [PATCH v2 7/9] raw/dpaa2_cmdif: support enqueue dequeue operations Nipun Gupta
2018-04-07 14:34 ` [dpdk-dev] [PATCH v2 8/9] doc: add DPAA2 CMDIF rawdev guide Nipun Gupta
2018-04-16 12:40 ` Hemant Agrawal
2018-04-07 14:34 ` [dpdk-dev] [PATCH v2 9/9] doc: add dpaa2 command interface rawdev to release notes Nipun Gupta
2018-04-23 12:23 ` Kovacevic, Marko
2018-04-25 1:50 ` Shreyansh Jain
2018-04-07 14:43 ` [dpdk-dev] [PATCH v2 0/9] Introduce DPAA2 Command Interface raw driver Nipun Gupta
2018-04-26 10:14 ` [dpdk-dev] [PATCH 0/7 v3] " Nipun Gupta
2018-04-26 10:14 ` [dpdk-dev] [PATCH 1/7 v3] mempool/dpaa2: add functions exposed to DPDK applications Nipun Gupta
2018-04-26 10:14 ` [dpdk-dev] [PATCH 2/7 v3] bus/fslmc: expose API to free dpci device Nipun Gupta
2018-05-01 9:45 ` Shreyansh Jain
2018-04-26 10:14 ` [dpdk-dev] [PATCH 3/7 v3] bus/fslmc: keep Tx queues information for DPCI devices too Nipun Gupta
2018-04-26 10:14 ` [dpdk-dev] [PATCH 4/7 v3] raw/dpaa2_cmdif: introduce DPAA2 command interface driver Nipun Gupta
2018-04-26 10:14 ` [dpdk-dev] [PATCH 5/7 v3] raw/dpaa2_cmdif: add attribute get functionality Nipun Gupta
2018-04-26 10:14 ` [dpdk-dev] [PATCH 6/7 v3] raw/dpaa2_cmdif: support enqueue dequeue operations Nipun Gupta
2018-04-26 10:14 ` [dpdk-dev] [PATCH 7/7 v3] doc: add DPAA2 CMDIF rawdev guide Nipun Gupta
2018-05-01 9:45 ` [dpdk-dev] [PATCH 0/7 v3] Introduce DPAA2 Command Interface raw driver Shreyansh Jain
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 0/7] " Nipun Gupta
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 1/7] mempool/dpaa2: add functions exposed to DPDK applications Nipun Gupta
2018-05-03 13:49 ` Shreyansh Jain
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 2/7] bus/fslmc: expose API to free dpci device Nipun Gupta
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 3/7] bus/fslmc: keep Tx queues information for DPCI devices too Nipun Gupta
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 4/7] raw/dpaa2_cmdif: introduce DPAA2 command interface driver Nipun Gupta
2018-05-03 14:10 ` Shreyansh Jain
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 5/7] raw/dpaa2_cmdif: add attribute get functionality Nipun Gupta
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 6/7] raw/dpaa2_cmdif: support enqueue dequeue operations Nipun Gupta
2018-05-02 17:15 ` [dpdk-dev] [PATCH v4 7/7] doc: add DPAA2 CMDIF rawdev guide Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 0/7] Introduce DPAA2 Command Interface raw driver Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 1/7] mempool/dpaa2: add functions exposed to DPDK applications Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 2/7] bus/fslmc: expose API to free dpci device Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 3/7] bus/fslmc: keep Tx queues information for DPCI devices too Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 4/7] raw/dpaa2_cmdif: introduce DPAA2 command interface driver Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 5/7] raw/dpaa2_cmdif: add attribute get functionality Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 6/7] raw/dpaa2_cmdif: support enqueue dequeue operations Nipun Gupta
2018-05-03 16:33 ` [dpdk-dev] [PATCH v5 7/7] doc: add DPAA2 CMDIF rawdev guide Nipun Gupta
2018-05-04 7:15 ` Nipun Gupta [this message]
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 0/7] Introduce DPAA2 Command Interface raw driver Nipun Gupta
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 1/7] mempool/dpaa2: add functions exposed to DPDK applications Nipun Gupta
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 2/7] bus/fslmc: expose API to free dpci device Nipun Gupta
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 3/7] bus/fslmc: keep Tx queues information for DPCI devices too Nipun Gupta
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 4/7] raw/dpaa2_cmdif: introduce DPAA2 command interface driver Nipun Gupta
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 5/7] raw/dpaa2_cmdif: add attribute get functionality Nipun Gupta
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 6/7] raw/dpaa2_cmdif: support enqueue dequeue operations Nipun Gupta
2018-05-04 10:11 ` [dpdk-dev] [PATCH v6 7/7] doc: add DPAA2 CMDIF rawdev guide Nipun Gupta
2018-05-08 12:08 ` Thomas Monjalon
2018-05-05 18:44 ` [dpdk-dev] [PATCH v6 0/7] Introduce DPAA2 Command Interface raw driver Shreyansh Jain
2018-05-08 12:27 ` 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=HE1PR0401MB2425A8816D365FF06488E329E6860@HE1PR0401MB2425.eurprd04.prod.outlook.com \
--to=nipun.gupta@nxp.com \
--cc=dev@dpdk.org \
--cc=hemant.agrawal@nxp.com \
--cc=shreyansh.jain@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).