From: <psatheesh@marvell.com>
To: Nithin Dabilpuram <ndabilpuram@marvell.com>,
Kiran Kumar K <kirankumark@marvell.com>,
Sunil Kumar Kori <skori@marvell.com>,
Satha Rao <skoteshwar@marvell.com>
Cc: <dev@dpdk.org>, Satheesh Paul <psatheesh@marvell.com>
Subject: [dpdk-dev] [PATCH 3/3] common/cnxk: add egress mirror support
Date: Thu, 14 Dec 2023 16:28:13 +0530 [thread overview]
Message-ID: <20231214105813.570597-3-psatheesh@marvell.com> (raw)
In-Reply-To: <20231214105813.570597-1-psatheesh@marvell.com>
From: Satha Rao <skoteshwar@marvell.com>
Added ROC api to send packets on multiple links when egress mirror
enabled.
Signed-off-by: Satha Rao <skoteshwar@marvell.com>
Reviewed-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
Reviewed-by: Kiran Kumar K <kirankumark@marvell.com>
Reviewed-by: Satheesh Paul <psatheesh@marvell.com>
---
drivers/common/cnxk/roc_nix.h | 2 +
drivers/common/cnxk/roc_nix_tm_ops.c | 70 ++++++++++++++++++++++++++++
drivers/common/cnxk/roc_npc.c | 26 +++++++++++
drivers/common/cnxk/version.map | 1 +
4 files changed, 99 insertions(+)
diff --git a/drivers/common/cnxk/roc_nix.h b/drivers/common/cnxk/roc_nix.h
index c1ebf971f7..84e6fc3df5 100644
--- a/drivers/common/cnxk/roc_nix.h
+++ b/drivers/common/cnxk/roc_nix.h
@@ -755,6 +755,8 @@ int __roc_api roc_nix_tm_mark_config(struct roc_nix *roc_nix,
int mark_red);
uint64_t __roc_api roc_nix_tm_mark_format_get(struct roc_nix *roc_nix,
uint64_t *flags);
+int __roc_api roc_nix_tm_egress_link_cfg_set(struct roc_nix *roc_nix, uint64_t dst_pf_func,
+ bool enable);
/* Ingress Policer API */
int __roc_api roc_nix_bpf_timeunit_get(struct roc_nix *roc_nix,
diff --git a/drivers/common/cnxk/roc_nix_tm_ops.c b/drivers/common/cnxk/roc_nix_tm_ops.c
index 2c53472047..900b182c76 100644
--- a/drivers/common/cnxk/roc_nix_tm_ops.c
+++ b/drivers/common/cnxk/roc_nix_tm_ops.c
@@ -1316,3 +1316,73 @@ roc_nix_tm_root_has_sp(struct roc_nix *roc_nix)
return false;
return true;
}
+
+static inline struct nix *
+pf_func_to_nix_get(uint16_t pf_func)
+{
+ struct roc_nix *roc_nix_tmp = NULL;
+ struct roc_nix_list *nix_list;
+
+ nix_list = roc_idev_nix_list_get();
+ if (nix_list == NULL)
+ return NULL;
+
+ /* Find the NIX of given pf_func */
+ TAILQ_FOREACH(roc_nix_tmp, nix_list, next) {
+ struct nix *nix = roc_nix_to_nix_priv(roc_nix_tmp);
+
+ if (nix->dev.pf_func == pf_func)
+ return nix;
+ }
+
+ return NULL;
+}
+
+int
+roc_nix_tm_egress_link_cfg_set(struct roc_nix *roc_nix, uint64_t dst_pf_func, bool enable)
+{
+ struct nix *src_nix = roc_nix_to_nix_priv(roc_nix), *dst_nix;
+ struct mbox *mbox = (&src_nix->dev)->mbox;
+ struct nix_txschq_config *req = NULL;
+ struct nix_tm_node_list *list;
+ struct nix_tm_node *node;
+ int rc = 0, k;
+
+ dst_nix = pf_func_to_nix_get(dst_pf_func);
+ if (!dst_nix)
+ return -EINVAL;
+
+ if (dst_nix == src_nix)
+ return 0;
+
+ list = nix_tm_node_list(src_nix, src_nix->tm_tree);
+ TAILQ_FOREACH(node, list, node) {
+ if (node->hw_lvl != src_nix->tm_link_cfg_lvl)
+ continue;
+
+ if (!(node->flags & NIX_TM_NODE_HWRES))
+ continue;
+
+ /* Allocating TL3 request */
+ req = mbox_alloc_msg_nix_txschq_cfg(mbox_get(mbox));
+ req->lvl = src_nix->tm_link_cfg_lvl;
+ k = 0;
+
+ /* Enable PFC/pause on the identified TL3 */
+ req->reg[k] = NIX_AF_TL3_TL2X_LINKX_CFG(node->hw_id, dst_nix->tx_link);
+ if (enable)
+ req->regval[k] |= BIT_ULL(12);
+ else
+ req->regval[k] &= ~(BIT_ULL(12));
+ req->regval_mask[k] = ~(BIT_ULL(12));
+ k++;
+
+ req->num_regs = k;
+ rc = mbox_process(mbox);
+ mbox_put(mbox);
+ if (rc)
+ goto err;
+ }
+err:
+ return rc;
+}
diff --git a/drivers/common/cnxk/roc_npc.c b/drivers/common/cnxk/roc_npc.c
index 65f99549c9..9a0fe5f4e2 100644
--- a/drivers/common/cnxk/roc_npc.c
+++ b/drivers/common/cnxk/roc_npc.c
@@ -1595,6 +1595,21 @@ roc_npc_flow_create(struct roc_npc *roc_npc, const struct roc_npc_attr *attr,
goto err_exit;
}
+ /* If Egress mirror requested then enable TL3_TL2_LINK_CFG */
+ if (flow->is_sampling_rule && (flow->nix_intf == NIX_INTF_TX)) {
+ if (flow->mcast_pf_funcs[0] == npc->pf_func)
+ rc = roc_nix_tm_egress_link_cfg_set(roc_npc->roc_nix,
+ flow->mcast_pf_funcs[1], true);
+ else
+ rc = roc_nix_tm_egress_link_cfg_set(roc_npc->roc_nix,
+ flow->mcast_pf_funcs[0], true);
+ if (rc) {
+ plt_err("Adding egress mirror failed");
+ *errcode = rc;
+ goto err_exit;
+ }
+ }
+
rc = npc_rss_action_program(roc_npc, actions, flow);
if (rc != 0) {
*errcode = rc;
@@ -1706,6 +1721,17 @@ roc_npc_flow_destroy(struct roc_npc *roc_npc, struct roc_npc_flow *flow)
return rc;
}
+ /* Disable egress mirror rule */
+ if (flow->is_sampling_rule && (flow->nix_intf == NIX_INTF_TX)) {
+ if (flow->mcast_pf_funcs[0] == npc->pf_func)
+ rc = roc_nix_tm_egress_link_cfg_set(roc_npc->roc_nix,
+ flow->mcast_pf_funcs[1], false);
+ else
+ rc = roc_nix_tm_egress_link_cfg_set(roc_npc->roc_nix,
+ flow->mcast_pf_funcs[0], false);
+ if (rc)
+ plt_err("Failed to remove egress mirror rule");
+ }
if (flow->is_sampling_rule)
roc_nix_mcast_list_free(npc->mbox, flow->mcast_grp_index);
diff --git a/drivers/common/cnxk/version.map b/drivers/common/cnxk/version.map
index 1b531da36d..7b6afa63a9 100644
--- a/drivers/common/cnxk/version.map
+++ b/drivers/common/cnxk/version.map
@@ -355,6 +355,7 @@ INTERNAL {
roc_nix_switch_hdr_set;
roc_nix_eeprom_info_get;
roc_nix_smq_flush;
+ roc_nix_tm_egress_link_cfg_set;
roc_nix_tm_dump;
roc_nix_tm_err_to_rte_err;
roc_nix_tm_fini;
--
2.39.2
next prev parent reply other threads:[~2023-12-14 10:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-14 10:58 [dpdk-dev] [PATCH 1/3] common/cnxk: support mirror flow action psatheesh
2023-12-14 10:58 ` [dpdk-dev] [PATCH 2/3] net/cnxk: " psatheesh
2023-12-14 13:43 ` [EXT] " Jerin Jacob Kollanukkaran
2023-12-14 10:58 ` psatheesh [this message]
2023-12-14 14:50 ` [dpdk-dev] [PATCH v2 1/3] common/cnxk: " psatheesh
2023-12-14 14:50 ` [dpdk-dev] [PATCH v2 2/3] net/cnxk: " psatheesh
2023-12-15 5:34 ` Jerin Jacob
2023-12-14 14:50 ` [dpdk-dev] [PATCH v2 3/3] common/cnxk: add egress mirror support psatheesh
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=20231214105813.570597-3-psatheesh@marvell.com \
--to=psatheesh@marvell.com \
--cc=dev@dpdk.org \
--cc=kirankumark@marvell.com \
--cc=ndabilpuram@marvell.com \
--cc=skori@marvell.com \
--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).