From: Manish Kurup <manish.kurup@broadcom.com>
To: dev@dpdk.org
Cc: ajit.khaparde@broadcom.com,
Shahaji Bhosle <shahaji.bhosle@broadcom.com>,
Farah Smith <farah.smith@broadcom.com>
Subject: [PATCH v4 55/57] net/bnxt/tf_ulp: add feature bit rx miss handling
Date: Tue, 21 Oct 2025 15:01:56 -0400 [thread overview]
Message-ID: <20251021190158.74064-3-manish.kurup@broadcom.com> (raw)
In-Reply-To: <20251021190158.74064-1-manish.kurup@broadcom.com>
From: Shahaji Bhosle <shahaji.bhosle@broadcom.com>
Added a new feature bit to all applications to send the miss
packets to parent PF.
Signed-off-by: Shahaji Bhosle <shahaji.bhosle@broadcom.com>
Reviewed-by: Farah Smith <farah.smith@broadcom.com>
---
drivers/net/bnxt/tf_ulp/bnxt_ulp_utils.h | 9 ++++++++-
drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h | 4 +++-
2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/drivers/net/bnxt/tf_ulp/bnxt_ulp_utils.h b/drivers/net/bnxt/tf_ulp/bnxt_ulp_utils.h
index 84d0315399..bd160e2db9 100644
--- a/drivers/net/bnxt/tf_ulp/bnxt_ulp_utils.h
+++ b/drivers/net/bnxt/tf_ulp/bnxt_ulp_utils.h
@@ -1039,11 +1039,16 @@ bnxt_ulp_cap_feat_process(uint64_t feat_bits, uint64_t *out_bits)
uint64_t bit = 0;
#endif
*out_bits = 0;
+
if ((feat_bits | bit) != feat_bits) {
BNXT_DRV_DBG(ERR, "Invalid TF feature bit is set %" PRIu64 "\n",
bit);
return -EINVAL;
}
+
+ if (!bit)
+ return 0;
+
if ((bit & BNXT_ULP_FEATURE_BIT_PARENT_DMAC) &&
(bit & BNXT_ULP_FEATURE_BIT_PORT_DMAC)) {
BNXT_DRV_DBG(ERR, "Invalid both Port and Parent Mac set\n");
@@ -1068,8 +1073,10 @@ bnxt_ulp_cap_feat_process(uint64_t feat_bits, uint64_t *out_bits)
BNXT_DRV_DBG(ERR, "Non VFR Feature is enabled");
if (bit & BNXT_ULP_FEATURE_BIT_UNICAST_ONLY)
BNXT_DRV_DBG(ERR, "Unicast only Feature is enabled");
-
+ if (bit & BNXT_ULP_FEATURE_BIT_RX_MISS_SEND_TO_PF)
+ BNXT_DRV_DBG(ERR, "Rx miss send to parent PF Feature is enabled");
*out_bits = bit;
+
return 0;
}
diff --git a/drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h b/drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h
index 4e9b11e437..6a2d31cf8d 100644
--- a/drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h
+++ b/drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h
@@ -915,7 +915,9 @@ enum bnxt_ulp_feature_bit {
BNXT_ULP_FEATURE_BIT_HOT_UPGRADE = 0x00000040,
BNXT_ULP_FEATURE_BIT_GLOBAL_TBL_SCOPE = 0x00000080,
BNXT_ULP_FEATURE_BIT_NON_VFR_MODE = 0x00000100,
- BNXT_ULP_FEATURE_BIT_UNICAST_ONLY = 0x00000200
+ BNXT_ULP_FEATURE_BIT_UNICAST_ONLY = 0x00000200,
+ BNXT_ULP_FEATURE_BIT_REDIRECT_ONLY = 0x00000400,
+ BNXT_ULP_FEATURE_BIT_RX_MISS_SEND_TO_PF = 0x00000800
};
enum bnxt_ulp_flow_dir_bitmask {
--
2.39.5 (Apple Git-154)
next prev parent reply other threads:[~2025-10-21 19:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-21 19:01 [PATCH v4 53/57] net/bnxt/tf_core: fix truflow PF init failure on sriov disabled Manish Kurup
2025-10-21 19:01 ` [PATCH v4 54/57] net/bnxt/tf_ulp: fixes to enable TF functionality Manish Kurup
2025-10-21 19:01 ` Manish Kurup [this message]
2025-10-21 19:01 ` [PATCH v4 56/57] net/bnxt: add support for truflow promiscuous mode Manish Kurup
2025-10-21 19:01 ` [PATCH v4 57/57] net/bnxt/tf_ulp: remove Truflow DEBUG code Manish Kurup
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=20251021190158.74064-3-manish.kurup@broadcom.com \
--to=manish.kurup@broadcom.com \
--cc=ajit.khaparde@broadcom.com \
--cc=dev@dpdk.org \
--cc=farah.smith@broadcom.com \
--cc=shahaji.bhosle@broadcom.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).