DPDK patches and discussions
 help / color / mirror / Atom feed
From: <jpalider@marvell.com>
To: Jakub Palider <jpalider@marvell.com>,
	Tomasz Duszynski <tduszynski@marvell.com>
Cc: <dev@dpdk.org>
Subject: [PATCH] raw/cnxk_bphy: extend pffunc address access
Date: Fri, 14 Oct 2022 21:45:34 +0200	[thread overview]
Message-ID: <20221014194534.907000-1-jpalider@marvell.com> (raw)

From: Jakub Palider <jpalider@marvell.com>

Allows retrieval of SSO and NPA pffunc addresses without
device ownership and initialization.

Signed-off-by: Jakub Palider <jpalider@marvell.com>
---
 drivers/raw/cnxk_bphy/cnxk_bphy.c    | 16 ++++++++++++++++
 drivers/raw/cnxk_bphy/rte_pmd_bphy.h | 23 +++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/drivers/raw/cnxk_bphy/cnxk_bphy.c b/drivers/raw/cnxk_bphy/cnxk_bphy.c
index 349d551839..62d138110a 100644
--- a/drivers/raw/cnxk_bphy/cnxk_bphy.c
+++ b/drivers/raw/cnxk_bphy/cnxk_bphy.c
@@ -41,6 +41,22 @@ bphy_test_handler_fn(int irq_num, void *isr_data)
 	test[irq_num].handled_data = *((int *)isr_data);
 }
 
+int
+rte_pmd_bphy_npa_pf_func_get_rmt(uint16_t *pf_func)
+{
+	*pf_func = roc_bphy_npa_pf_func_get();
+
+	return 0;
+}
+
+int
+rte_pmd_bphy_sso_pf_func_get_rmt(uint16_t *pf_func)
+{
+	*pf_func = roc_bphy_sso_pf_func_get();
+
+	return 0;
+}
+
 static int
 bphy_rawdev_selftest(uint16_t dev_id)
 {
diff --git a/drivers/raw/cnxk_bphy/rte_pmd_bphy.h b/drivers/raw/cnxk_bphy/rte_pmd_bphy.h
index 643fd9945f..b5c01811ea 100644
--- a/drivers/raw/cnxk_bphy/rte_pmd_bphy.h
+++ b/drivers/raw/cnxk_bphy/rte_pmd_bphy.h
@@ -864,6 +864,29 @@ rte_pmd_bphy_cgx_cpri_mode_misc(uint16_t dev_id, uint16_t lmac,
 	return __rte_pmd_bphy_enq_deq(dev_id, lmac, &msg, NULL, 0);
 }
 
+/**
+ * Obtain NPA PF func
+ *
+ * @param pf_func
+ *   Address of an NPA PF and function for NPA free pointer
+ *   requests to obtain
+ *
+ * @return
+ *   Returns 0 on success, negative error code otherwise
+ */
+int rte_pmd_bphy_npa_pf_func_get_rmt(uint16_t *pf_func);
+
+/**
+ * Obtain SSO PF func
+ *
+ * @param pf_func
+ *   Address SSO PF and function for SSO add-work requests to obtain
+ *
+ * @return
+ *   Returns 0 on success, negative error code otherwise
+ */
+int rte_pmd_bphy_sso_pf_func_get_rmt(uint16_t *pf_func);
+
 #ifdef __cplusplus
 }
 #endif
-- 
2.25.1


             reply	other threads:[~2022-10-14 19:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-14 19:45 jpalider [this message]
2022-10-17  8:40 ` Tomasz Duszynski
2022-10-26 21:21   ` 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=20221014194534.907000-1-jpalider@marvell.com \
    --to=jpalider@marvell.com \
    --cc=dev@dpdk.org \
    --cc=tduszynski@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).