DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Akhil Goyal <gakhil@marvell.com>
Cc: dev@dpdk.org, thomas@monjalon.net, david.marchand@redhat.com,
	 hemant.agrawal@nxp.com, jerinj@marvell.com, hkalra@marvell.com,
	 stephen@networkplumber.org, sachin.saxena@oss.nxp.com,
	ferruh.yigit@amd.com
Subject: Re: [PATCH v6 2/9] raw/cnxk_rvu_lf: support NPA/SSO pffunc get
Date: Mon, 4 Nov 2024 16:57:39 +0530	[thread overview]
Message-ID: <CALBAE1OAwZ=27z5F3fLVNgWzqwdhnTMWaavQ7S_yOogR4gDxpA@mail.gmail.com> (raw)
In-Reply-To: <CALBAE1OLnkDMEL0iuWk0pE2auPiJK_YAyOYeMzWLpiD9ZukvKA@mail.gmail.com>

On Tue, Oct 29, 2024 at 9:40 PM Jerin Jacob <jerinjacobk@gmail.com> wrote:
>
> On Mon, Oct 28, 2024 at 4:40 PM Akhil Goyal <gakhil@marvell.com> wrote:
> >
> > Added rte_pmd_rvu_lf_npa_pf_func_get and
> > rte_pmd_rvu_lf_sso_pf_func_get APIs to get NPA and
> > SSO pffunc for the application/external driver use.
> >
> > Signed-off-by: Akhil Goyal <gakhil@marvell.com>
>
> > +driver_sdk_headers += files('cnxk_rvu_lf_driver.h')
>
> + @techboard@dpdk.org
>
> Now that, _all_ the functions of this driver are exposed ONLY to out
> of tree drives, I don't think, there are any more concerns. Please let
> me know if someone thinks the other way around.
> I will merge this version with the following diff[1]

Series applied to dpdk-next-net-mrvl/for-main with following diff. Thanks


>
>
>
>
>
> [1]
> [for-main]dell[dpdk-next-net-mrvl] $ git diff
> diff --git a/doc/guides/rawdevs/cnxk_rvu_lf.rst
> b/doc/guides/rawdevs/cnxk_rvu_lf.rst
> index 1ac7d6b84b..8f9c37a1cc 100644
> --- a/doc/guides/rawdevs/cnxk_rvu_lf.rst
> +++ b/doc/guides/rawdevs/cnxk_rvu_lf.rst
> @@ -27,7 +27,7 @@ The RVU LF device implements following features in
> the rawdev API:
>  Limitations
>  -----------
>
> -In multiprocess mode user-space application must ensure
> +In multi-process mode user-space application must ensure
>  no resources sharing takes place.
>  Otherwise, user-space application should ensure synchronization.
>
> diff --git a/doc/guides/rel_notes/release_24_11.rst
> b/doc/guides/rel_notes/release_24_11.rst
> index bf386a0f4a..2ebf4bbb39 100644
> --- a/doc/guides/rel_notes/release_24_11.rst
> +++ b/doc/guides/rel_notes/release_24_11.rst
> @@ -254,7 +254,8 @@ New Features
>  * **Added Marvell cnxk RVU LF rawdev driver.**
>
>    Added a new raw device driver for Marvell cnxk based devices to allow
> -  applications to communicate using mailboxes and notify for the interrupts.
> +  out of tree driver to manage RVU LF device. It enables operations such as
> +  sending/receiving mailbox, register and notify the interrupts etc.
>
>
>  Removed Items
> diff --git a/drivers/raw/cnxk_rvu_lf/cnxk_rvu_lf_driver.h
> b/drivers/raw/cnxk_rvu_lf/cnxk_rvu_lf_driver.h
> index e405831ce1..28410a74cd 100644
> --- a/drivers/raw/cnxk_rvu_lf/cnxk_rvu_lf_driver.h
> +++ b/drivers/raw/cnxk_rvu_lf/cnxk_rvu_lf_driver.h
> @@ -11,8 +11,8 @@
>   * Marvell RVU LF raw PMD specific structures and interface
>   *
>   * This API allows out of tree driver to manage RVU LF device
> - * in user space along with installing interrupt handlers for
> - * low latency signal processing.
> + * It enables operations such as  sending/receiving mailbox,
> + * register and notify the interrupts etc
>   */

  reply	other threads:[~2024-11-04 11:28 UTC|newest]

Thread overview: 96+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-07 19:33 [PATCH 0/9] drivers/raw: introduce cnxk rvu lf device driver Akhil Goyal
2024-09-07 19:33 ` [PATCH 1/9] rawdev: add API to get device from index Akhil Goyal
2024-09-23 15:23   ` Jerin Jacob
2024-10-08  7:40   ` [PATCH v2] " Akhil Goyal
2024-10-08 11:59     ` David Marchand
2024-10-08 12:00       ` [EXTERNAL] " Akhil Goyal
2024-10-09 21:13         ` Akhil Goyal
2024-10-21 10:48           ` Akhil Goyal
2024-10-09  6:11     ` Hemant Agrawal
2024-10-22 19:12     ` David Marchand
2024-09-07 19:33 ` [PATCH 2/9] drivers/raw: introduce cnxk rvu lf device driver Akhil Goyal
2024-09-23 15:28   ` Jerin Jacob
2024-10-08 10:54   ` [PATCH v2 0/9] " Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 1/9] " Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 2/9] raw/cnxk_rvu_lf: add PMD API to get npa/sso pffunc Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 3/9] raw/cnxk_rvu_lf: add PMD API to get BAR addresses Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 4/9] raw/cnxk_rvu_lf: register/unregister interrupt handler Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 5/9] raw/cnxk_rvu_lf: register/unregister msg handler Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 6/9] raw/cnxk_rvu_lf: set message ID range Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 7/9] raw/cnxk_rvu_lf: process mailbox message Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 8/9] raw/cnxk_rvu_lf: add selftest Akhil Goyal
2024-10-08 10:54     ` [PATCH v2 9/9] raw/cnxk_rvu_lf: add PMD API to get device pffunc Akhil Goyal
2024-10-08 11:52     ` [PATCH v2 0/9] drivers/raw: introduce cnxk rvu lf device driver David Marchand
2024-10-08 12:10       ` [EXTERNAL] " Akhil Goyal
2024-10-08 18:49     ` [PATCH v3 " Akhil Goyal
2024-10-08 18:49       ` [PATCH v3 1/9] " Akhil Goyal
2024-10-08 20:44         ` Stephen Hemminger
2024-10-09 18:09         ` Stephen Hemminger
2024-10-09 18:14           ` [EXTERNAL] " Akhil Goyal
2024-10-23 14:01         ` David Marchand
2024-10-08 18:49       ` [PATCH v3 2/9] raw/cnxk_rvu_lf: add PMD API to get npa/sso pffunc Akhil Goyal
2024-10-23 14:13         ` David Marchand
2024-10-08 18:49       ` [PATCH v3 3/9] raw/cnxk_rvu_lf: add PMD API to get BAR addresses Akhil Goyal
2024-10-21 21:30         ` Thomas Monjalon
2024-10-22  2:46           ` Jerin Jacob
2024-10-22  6:05             ` [EXTERNAL] " Akhil Goyal
2024-10-22  9:27               ` Thomas Monjalon
2024-10-22 10:08               ` David Marchand
2024-10-22 12:06                 ` Akhil Goyal
2024-10-23 16:00                   ` Thomas Monjalon
2024-10-23 19:14                     ` Akhil Goyal
2024-10-23 19:29                       ` Thomas Monjalon
2024-10-24 13:03                         ` Akhil Goyal
2024-10-22 15:30                 ` Stephen Hemminger
2024-10-22 17:06                   ` Jerin Jacob
2024-10-08 18:49       ` [PATCH v3 4/9] raw/cnxk_rvu_lf: register/unregister interrupt handler Akhil Goyal
2024-10-08 18:49       ` [PATCH v3 5/9] raw/cnxk_rvu_lf: register/unregister msg handler Akhil Goyal
2024-10-08 18:49       ` [PATCH v3 6/9] raw/cnxk_rvu_lf: set message ID range Akhil Goyal
2024-10-08 18:49       ` [PATCH v3 7/9] raw/cnxk_rvu_lf: process mailbox message Akhil Goyal
2024-10-08 18:49       ` [PATCH v3 8/9] raw/cnxk_rvu_lf: add selftest Akhil Goyal
2024-10-23 14:16         ` David Marchand
2024-10-08 18:49       ` [PATCH v3 9/9] raw/cnxk_rvu_lf: add PMD API to get device pffunc Akhil Goyal
2024-10-24 13:01       ` [PATCH v4 0/9] drivers/raw: introduce cnxk rvu lf device driver Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 1/9] " Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 2/9] raw/cnxk_rvu_lf: add API to get NPA/SSO pffunc Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 3/9] raw/cnxk_rvu_lf: register/unregister interrupt handler Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 4/9] raw/cnxk_rvu_lf: register/unregister msg handler Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 5/9] raw/cnxk_rvu_lf: set message ID range Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 6/9] raw/cnxk_rvu_lf: process mailbox message Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 7/9] raw/cnxk_rvu_lf: add API to get device pffunc Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 8/9] raw/cnxk_rvu_lf: add API to get BAR addresses Akhil Goyal
2024-10-24 13:01         ` [PATCH v4 9/9] raw/cnxk_rvu_lf: add selftest Akhil Goyal
2024-10-24 13:17         ` [PATCH v5 0/9] drivers/raw: introduce cnxk rvu lf device driver Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 1/9] " Akhil Goyal
2024-10-24 15:59             ` Jerin Jacob
2024-10-24 13:17           ` [PATCH v5 2/9] raw/cnxk_rvu_lf: add API to get NPA/SSO pffunc Akhil Goyal
2024-10-25  6:52             ` Jerin Jacob
2024-10-25 15:38             ` Stephen Hemminger
2024-10-25 19:48               ` [EXTERNAL] " Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 3/9] raw/cnxk_rvu_lf: register/unregister interrupt handler Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 4/9] raw/cnxk_rvu_lf: register/unregister msg handler Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 5/9] raw/cnxk_rvu_lf: set message ID range Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 6/9] raw/cnxk_rvu_lf: process mailbox message Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 7/9] raw/cnxk_rvu_lf: add API to get device pffunc Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 8/9] raw/cnxk_rvu_lf: add API to get BAR addresses Akhil Goyal
2024-10-24 13:17           ` [PATCH v5 9/9] raw/cnxk_rvu_lf: add selftest Akhil Goyal
2024-10-24 16:26             ` Stephen Hemminger
2024-10-28 11:01           ` [PATCH v6 0/9] drivers/raw: introduce cnxk rvu lf device driver Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 1/9] drivers/raw: introduce cnxk RVU LF " Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 2/9] raw/cnxk_rvu_lf: support NPA/SSO pffunc get Akhil Goyal
2024-10-29 16:10               ` Jerin Jacob
2024-11-04 11:27                 ` Jerin Jacob [this message]
2024-10-28 11:01             ` [PATCH v6 3/9] raw/cnxk_rvu_lf: support interrupt callback registration Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 4/9] raw/cnxk_rvu_lf: support msg handler registration Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 5/9] raw/cnxk_rvu_lf: support to set message ID range Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 6/9] raw/cnxk_rvu_lf: support mailbox processing Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 7/9] raw/cnxk_rvu_lf: support device pffunc get Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 8/9] raw/cnxk_rvu_lf: support getting BAR addresses Akhil Goyal
2024-10-28 11:01             ` [PATCH v6 9/9] raw/cnxk_rvu_lf: add selftest Akhil Goyal
2024-09-07 19:33 ` [PATCH 3/9] raw/cnxk_rvu_lf: add PMD API to get npa/sso pffunc Akhil Goyal
2024-09-07 19:33 ` [PATCH 4/9] raw/cnxk_rvu_lf: add PMD API to get BAR addresses Akhil Goyal
2024-09-07 19:33 ` [PATCH 5/9] raw/cnxk_rvu_lf: register/unregister interrupt handler Akhil Goyal
2024-09-07 19:33 ` [PATCH 6/9] raw/cnxk_rvu_lf: register/unregister msg handler Akhil Goyal
2024-09-07 19:33 ` [PATCH 7/9] raw/cnxk_rvu_lf: set message ID range Akhil Goyal
2024-09-07 19:33 ` [PATCH 8/9] raw/cnxk_rvu_lf: process mailbox message Akhil Goyal
2024-09-07 19:33 ` [PATCH 9/9] raw/cnxk_rvu_lf: add selftest Akhil Goyal

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='CALBAE1OAwZ=27z5F3fLVNgWzqwdhnTMWaavQ7S_yOogR4gDxpA@mail.gmail.com' \
    --to=jerinjacobk@gmail.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@amd.com \
    --cc=gakhil@marvell.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=hkalra@marvell.com \
    --cc=jerinj@marvell.com \
    --cc=sachin.saxena@oss.nxp.com \
    --cc=stephen@networkplumber.org \
    --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).