From: Rakesh Kudurumalla <rkudurumalla@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>,
Harman Kalra <hkalra@marvell.com>
Cc: <dev@dpdk.org>, <jerinj@marvell.com>,
Rakesh Kudurumalla <rkudurumalla@marvell.com>
Subject: [PATCH v2 1/5] common/cnxk: add CPT CQ configuration
Date: Wed, 29 Oct 2025 18:30:19 +0530 [thread overview]
Message-ID: <20251029130023.1637177-1-rkudurumalla@marvell.com> (raw)
In-Reply-To: <20251006051402.1387576-1-rkudurumalla@marvell.com>
Add new structures to used initialize and enable & disable
CPT CQ
Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>
---
v2: updated doc/guides/nics/cnxk.rst
drivers/common/cnxk/hw/cpt.h | 77 ++++++++++++++++++++++++++++++++++++
1 file changed, 77 insertions(+)
diff --git a/drivers/common/cnxk/hw/cpt.h b/drivers/common/cnxk/hw/cpt.h
index e542f3a3d4..19a1b87ae6 100644
--- a/drivers/common/cnxk/hw/cpt.h
+++ b/drivers/common/cnxk/hw/cpt.h
@@ -36,6 +36,10 @@
#define CPT_LF_Q_SIZE (0x100ull)
#define CPT_LF_Q_INST_PTR (0x110ull)
#define CPT_LF_Q_GRP_PTR (0x120ull)
+#define CPT_LF_CQ_BASE (0x200ull)
+#define CPT_LF_CQ_SIZE (0x210ull)
+#define CPT_LF_CQ_PTR (0x220ull)
+#define CPT_LF_CQ_CTL (0x230ull)
#define CPT_LF_NQX(a) (0x400ull | (uint64_t)(a) << 3)
#define CPT_LF_CTX_CTL (0x500ull)
#define CPT_LF_CTX_FLUSH (0x510ull)
@@ -87,6 +91,24 @@ union cpt_eng_caps {
};
};
+union cpt_lf_cq_ctl {
+ uint64_t u;
+ struct cpt_lf_cq_ctl_s {
+ uint64_t ena : 1;
+ uint64_t fc_ena : 1;
+ uint64_t fc_up_crossing : 1;
+ uint64_t reserved_3_3 : 1;
+ uint64_t fc_hyst_bits : 4;
+ uint64_t reserved_8_15 : 8;
+ uint64_t entry_size : 2;
+ uint64_t reserved_18_23 : 6;
+ uint64_t dq_ack_ena : 1;
+ uint64_t cq_all : 1;
+ uint64_t reserved_26_43 : 18;
+ uint64_t busy_count : 20;
+ } s;
+};
+
union cpt_lf_ctl {
uint64_t u;
struct cpt_lf_ctl_s {
@@ -161,6 +183,16 @@ union cpt_lf_q_inst_ptr {
} s;
};
+union cpt_lf_cq_ptr {
+ uint64_t u;
+ struct cpt_lf_cq_ptr_s {
+ uint64_t count : 20;
+ uint64_t reserved_20_31 : 12;
+ uint64_t nq_ptr : 20;
+ uint64_t reserved_52_63 : 12;
+ } s;
+};
+
union cpt_lf_q_base {
uint64_t u;
struct cpt_lf_q_base_s {
@@ -180,6 +212,23 @@ union cpt_lf_q_size {
} s;
};
+union cpt_lf_cq_base {
+ uint64_t u;
+ struct cpt_lf_cq_base_s {
+ uint64_t reserved_0_6 : 7;
+ uint64_t addr : 46;
+ uint64_t reserved_53_63 : 11;
+ } s;
+};
+
+union cpt_lf_cq_size {
+ uint64_t u;
+ struct cpt_lf_cq_size_s {
+ uint64_t size : 20;
+ uint64_t reserved_20_63 : 44;
+ } s;
+};
+
union cpt_lf_misc_int {
uint64_t u;
struct cpt_lf_misc_int_s {
@@ -297,6 +346,34 @@ struct cpt_inst_s {
union cpt_inst_w7 w7;
};
+struct cpt_cq_s {
+ union cpt_cq_w0 {
+ struct {
+ uint64_t compcode : 7;
+ uint64_t doneint : 1;
+ uint64_t uc_compcode : 8;
+ uint64_t uc_info : 48;
+ } s;
+ uint64_t u64;
+ } w0;
+
+ struct {
+ uint64_t esn : 64;
+ } w1;
+
+ union cpt_cq_w2 {
+ struct {
+ uint64_t fmt : 2;
+ uint64_t rsv : 14;
+ uint64_t uc_info2 : 48;
+ } s;
+ } w2;
+
+ struct {
+ uint64_t comp_ptr : 64;
+ } w3;
+};
+
union cpt_res_s {
struct cpt_cn20k_res_s {
uint64_t compcode : 7;
--
2.25.1
next prev parent reply other threads:[~2025-10-29 13:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-06 5:13 [PATCH " Rakesh Kudurumalla
2025-10-06 5:13 ` [PATCH 2/5] common/cnxk: add params to register IRQ handler Rakesh Kudurumalla
2025-10-06 5:14 ` [PATCH 3/5] common/cnxk: add routines to operate CPT CQ Rakesh Kudurumalla
2025-10-06 5:14 ` [PATCH 4/5] net/cnxk: handle soft expiry support Rakesh Kudurumalla
2025-10-07 6:56 ` Jerin Jacob
2025-10-06 5:14 ` [PATCH 5/5] net/cnxk: enable CPT CQ for outbound traffic Rakesh Kudurumalla
2025-10-29 13:00 ` Rakesh Kudurumalla [this message]
2025-10-29 13:00 ` [PATCH v2 2/5] common/cnxk: add params to register IRQ handler Rakesh Kudurumalla
2025-10-29 13:00 ` [PATCH v2 3/5] common/cnxk: add routines to operate CPT CQ Rakesh Kudurumalla
2025-10-29 13:00 ` [PATCH v2 4/5] net/cnxk: handle soft expiry support Rakesh Kudurumalla
2025-10-29 13:00 ` [PATCH v2 5/5] net/cnxk: enable CPT CQ for outbound traffic Rakesh Kudurumalla
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=20251029130023.1637177-1-rkudurumalla@marvell.com \
--to=rkudurumalla@marvell.com \
--cc=dev@dpdk.org \
--cc=hkalra@marvell.com \
--cc=jerinj@marvell.com \
--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).