From: Ben Ben-ishay <benis...@nvidia.com>

Add the NVMEoTCP offload definition and access functions for 128B cookies.

Signed-off-by: Ben Ben-ishay <benis...@nvidia.com>
Signed-off-by: Boris Pismenny <bor...@mellanox.com>
Signed-off-by: Or Gerlitz <ogerl...@mellanox.com>
Signed-off-by: Yoray Zack <yor...@mellanox.com>
---
 include/linux/mlx5/device.h | 35 ++++++++++++++++++++++++++++++++++-
 1 file changed, 34 insertions(+), 1 deletion(-)

diff --git a/include/linux/mlx5/device.h b/include/linux/mlx5/device.h
index 4433ff213d32..ea4d158e8329 100644
--- a/include/linux/mlx5/device.h
+++ b/include/linux/mlx5/device.h
@@ -791,7 +791,7 @@ struct mlx5_err_cqe {
 
 struct mlx5_cqe64 {
        u8              tls_outer_l3_tunneled;
-       u8              rsvd0;
+       u8              nvmetcp;
        __be16          wqe_id;
        u8              lro_tcppsh_abort_dupack;
        u8              lro_min_ttl;
@@ -824,6 +824,19 @@ struct mlx5_cqe64 {
        u8              op_own;
 };
 
+struct mlx5e_cqe128 {
+       __be16          cclen;
+       __be16          hlen;
+       union {
+               __be32          resync_tcp_sn;
+               __be32          ccoff;
+       };
+       __be16          ccid;
+       __be16          rsvd8;
+       u8              rsvd12[52];
+       struct mlx5_cqe64 cqe64;
+};
+
 struct mlx5_mini_cqe8 {
        union {
                __be32 rx_hash_result;
@@ -854,6 +867,26 @@ enum {
 
 #define MLX5_MINI_CQE_ARRAY_SIZE 8
 
+static inline bool cqe_is_nvmeotcp_resync(struct mlx5_cqe64 *cqe)
+{
+       return ((cqe->nvmetcp >> 6) & 0x1);
+}
+
+static inline bool cqe_is_nvmeotcp_crcvalid(struct mlx5_cqe64 *cqe)
+{
+       return ((cqe->nvmetcp >> 5) & 0x1);
+}
+
+static inline bool cqe_is_nvmeotcp_zc(struct mlx5_cqe64 *cqe)
+{
+       return ((cqe->nvmetcp >> 4) & 0x1);
+}
+
+static inline bool cqe_is_nvmeotcp_zc_or_resync(struct mlx5_cqe64 *cqe)
+{
+       return ((cqe->nvmetcp >> 4) & 0x5);
+}
+
 static inline u8 mlx5_get_cqe_format(struct mlx5_cqe64 *cqe)
 {
        return (cqe->op_own >> 2) & 0x3;
-- 
2.24.1

Reply via email to