mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-13 18:04:32 +00:00
The qed_hsi.h has been updated to support new FW version 8.59.1.0 with changes. - Updates FW HSI (Hardware Software interface) structures. - Addition/update in function declaration and defines as per HSI. - Add generic infrastructure for FW error reporting as part of common event queue handling. - Move malicious VF error reporting to FW error reporting infrastructure. - Move consolidation queue initialization from FW context to ramrod message. qed_hsi.h header file changes lead to change in many files to ensure compilation. This patch also fixes the existing checkpatch warnings and few important checks. Signed-off-by: Ariel Elior <aelior@marvell.com> Signed-off-by: Shai Malin <smalin@marvell.com> Signed-off-by: Omkar Kulkarni <okulkarni@marvell.com> Signed-off-by: Prabhakar Kushwaha <pkushwaha@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
|
|
/* QLogic qed NIC Driver
|
|
* Copyright (c) 2015-2017 QLogic Corporation
|
|
* Copyright (c) 2019-2020 Marvell International Ltd.
|
|
*/
|
|
|
|
#ifndef __RDMA_COMMON__
|
|
#define __RDMA_COMMON__
|
|
|
|
/************************/
|
|
/* RDMA FW CONSTANTS */
|
|
/************************/
|
|
|
|
#define RDMA_RESERVED_LKEY (0)
|
|
#define RDMA_RING_PAGE_SIZE (0x1000)
|
|
|
|
#define RDMA_MAX_SGE_PER_SQ_WQE (4)
|
|
#define RDMA_MAX_SGE_PER_RQ_WQE (4)
|
|
|
|
#define RDMA_MAX_DATA_SIZE_IN_WQE (0x80000000)
|
|
|
|
#define RDMA_REQ_RD_ATOMIC_ELM_SIZE (0x50)
|
|
#define RDMA_RESP_RD_ATOMIC_ELM_SIZE (0x20)
|
|
|
|
#define RDMA_MAX_CQS (64 * 1024)
|
|
#define RDMA_MAX_TIDS (128 * 1024 - 1)
|
|
#define RDMA_MAX_PDS (64 * 1024)
|
|
#define RDMA_MAX_XRC_SRQS (1024)
|
|
#define RDMA_MAX_SRQS (32 * 1024)
|
|
#define RDMA_MAX_IRQ_ELEMS_IN_PAGE (128)
|
|
|
|
#define RDMA_NUM_STATISTIC_COUNTERS MAX_NUM_VPORTS
|
|
#define RDMA_NUM_STATISTIC_COUNTERS_K2 MAX_NUM_VPORTS_K2
|
|
#define RDMA_NUM_STATISTIC_COUNTERS_BB MAX_NUM_VPORTS_BB
|
|
|
|
#define RDMA_TASK_TYPE (PROTOCOLID_ROCE)
|
|
|
|
struct rdma_srq_id {
|
|
__le16 srq_idx;
|
|
__le16 opaque_fid;
|
|
};
|
|
|
|
struct rdma_srq_producers {
|
|
__le32 sge_prod;
|
|
__le32 wqe_prod;
|
|
};
|
|
|
|
#endif /* __RDMA_COMMON__ */
|