2 * Copyright (c) 2016 Hisilicon Limited.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #ifndef _HNS_ROCE_DEVICE_H
34 #define _HNS_ROCE_DEVICE_H
36 #include <rdma/ib_verbs.h>
38 #define DRV_NAME "hns_roce"
40 #define HNS_ROCE_HW_VER1 ('h' << 24 | 'i' << 16 | '0' << 8 | '6')
42 #define MAC_ADDR_OCTET_NUM 6
43 #define HNS_ROCE_MAX_MSG_LEN 0x80000000
45 #define HNS_ROCE_ALOGN_UP(a, b) ((((a) + (b) - 1) / (b)) * (b))
47 #define HNS_ROCE_IB_MIN_SQ_STRIDE 6
49 #define HNS_ROCE_BA_SIZE (32 * 4096)
51 /* Hardware specification only for v1 engine */
52 #define HNS_ROCE_MIN_CQE_NUM 0x40
53 #define HNS_ROCE_MIN_WQE_NUM 0x20
55 /* Hardware specification only for v1 engine */
56 #define HNS_ROCE_MAX_INNER_MTPT_NUM 0x7
57 #define HNS_ROCE_MAX_MTPT_PBL_NUM 0x100000
59 #define HNS_ROCE_EACH_FREE_CQ_WAIT_MSECS 20
60 #define HNS_ROCE_MAX_FREE_CQ_WAIT_CNT \
61 (5000 / HNS_ROCE_EACH_FREE_CQ_WAIT_MSECS)
62 #define HNS_ROCE_CQE_WCMD_EMPTY_BIT 0x2
63 #define HNS_ROCE_MIN_CQE_CNT 16
65 #define HNS_ROCE_MAX_IRQ_NUM 128
70 #define HNS_ROCE_CEQ 0
71 #define HNS_ROCE_AEQ 1
73 #define HNS_ROCE_CEQ_ENTRY_SIZE 0x4
74 #define HNS_ROCE_AEQ_ENTRY_SIZE 0x10
77 #define HNS_ROCE_SL_SHIFT 28
78 #define HNS_ROCE_TCLASS_SHIFT 20
79 #define HNS_ROCE_FLOW_LABLE_MASK 0xfffff
81 #define HNS_ROCE_MAX_PORTS 6
82 #define HNS_ROCE_MAX_GID_NUM 16
83 #define HNS_ROCE_GID_SIZE 16
85 #define HNS_ROCE_HOP_NUM_0 0xff
87 #define BITMAP_NO_RR 0
90 #define MR_TYPE_MR 0x00
91 #define MR_TYPE_DMA 0x03
93 #define PKEY_ID 0xffff
95 #define NODE_DESC_SIZE 64
96 #define DB_REG_OFFSET 0x1000
98 #define SERV_TYPE_RC 0
99 #define SERV_TYPE_RD 1
100 #define SERV_TYPE_UC 2
101 #define SERV_TYPE_UD 3
103 #define PAGES_SHIFT_8 8
104 #define PAGES_SHIFT_16 16
105 #define PAGES_SHIFT_24 24
106 #define PAGES_SHIFT_32 32
108 enum hns_roce_qp_state
{
109 HNS_ROCE_QP_STATE_RST
,
110 HNS_ROCE_QP_STATE_INIT
,
111 HNS_ROCE_QP_STATE_RTR
,
112 HNS_ROCE_QP_STATE_RTS
,
113 HNS_ROCE_QP_STATE_SQD
,
114 HNS_ROCE_QP_STATE_ERR
,
115 HNS_ROCE_QP_NUM_STATE
,
118 enum hns_roce_event
{
119 HNS_ROCE_EVENT_TYPE_PATH_MIG
= 0x01,
120 HNS_ROCE_EVENT_TYPE_PATH_MIG_FAILED
= 0x02,
121 HNS_ROCE_EVENT_TYPE_COMM_EST
= 0x03,
122 HNS_ROCE_EVENT_TYPE_SQ_DRAINED
= 0x04,
123 HNS_ROCE_EVENT_TYPE_WQ_CATAS_ERROR
= 0x05,
124 HNS_ROCE_EVENT_TYPE_INV_REQ_LOCAL_WQ_ERROR
= 0x06,
125 HNS_ROCE_EVENT_TYPE_LOCAL_WQ_ACCESS_ERROR
= 0x07,
126 HNS_ROCE_EVENT_TYPE_SRQ_LIMIT_REACH
= 0x08,
127 HNS_ROCE_EVENT_TYPE_SRQ_LAST_WQE_REACH
= 0x09,
128 HNS_ROCE_EVENT_TYPE_SRQ_CATAS_ERROR
= 0x0a,
129 HNS_ROCE_EVENT_TYPE_CQ_ACCESS_ERROR
= 0x0b,
130 HNS_ROCE_EVENT_TYPE_CQ_OVERFLOW
= 0x0c,
131 HNS_ROCE_EVENT_TYPE_CQ_ID_INVALID
= 0x0d,
132 HNS_ROCE_EVENT_TYPE_PORT_CHANGE
= 0x0f,
133 /* 0x10 and 0x11 is unused in currently application case */
134 HNS_ROCE_EVENT_TYPE_DB_OVERFLOW
= 0x12,
135 HNS_ROCE_EVENT_TYPE_MB
= 0x13,
136 HNS_ROCE_EVENT_TYPE_CEQ_OVERFLOW
= 0x14,
137 HNS_ROCE_EVENT_TYPE_FLR
= 0x15,
140 /* Local Work Queue Catastrophic Error,SUBTYPE 0x5 */
142 HNS_ROCE_LWQCE_QPC_ERROR
= 1,
143 HNS_ROCE_LWQCE_MTU_ERROR
= 2,
144 HNS_ROCE_LWQCE_WQE_BA_ADDR_ERROR
= 3,
145 HNS_ROCE_LWQCE_WQE_ADDR_ERROR
= 4,
146 HNS_ROCE_LWQCE_SQ_WQE_SHIFT_ERROR
= 5,
147 HNS_ROCE_LWQCE_SL_ERROR
= 6,
148 HNS_ROCE_LWQCE_PORT_ERROR
= 7,
151 /* Local Access Violation Work Queue Error,SUBTYPE 0x7 */
153 HNS_ROCE_LAVWQE_R_KEY_VIOLATION
= 1,
154 HNS_ROCE_LAVWQE_LENGTH_ERROR
= 2,
155 HNS_ROCE_LAVWQE_VA_ERROR
= 3,
156 HNS_ROCE_LAVWQE_PD_ERROR
= 4,
157 HNS_ROCE_LAVWQE_RW_ACC_ERROR
= 5,
158 HNS_ROCE_LAVWQE_KEY_STATE_ERROR
= 6,
159 HNS_ROCE_LAVWQE_MR_OPERATION_ERROR
= 7,
162 /* DOORBELL overflow subtype */
164 HNS_ROCE_DB_SUBTYPE_SDB_OVF
= 1,
165 HNS_ROCE_DB_SUBTYPE_SDB_ALM_OVF
= 2,
166 HNS_ROCE_DB_SUBTYPE_ODB_OVF
= 3,
167 HNS_ROCE_DB_SUBTYPE_ODB_ALM_OVF
= 4,
168 HNS_ROCE_DB_SUBTYPE_SDB_ALM_EMP
= 5,
169 HNS_ROCE_DB_SUBTYPE_ODB_ALM_EMP
= 6,
173 /* RQ&SRQ related operations */
174 HNS_ROCE_OPCODE_SEND_DATA_RECEIVE
= 0x06,
175 HNS_ROCE_OPCODE_RDMA_WITH_IMM_RECEIVE
= 0x07,
179 HNS_ROCE_CAP_FLAG_REREG_MR
= BIT(0),
180 HNS_ROCE_CAP_FLAG_ROCE_V1_V2
= BIT(1),
181 HNS_ROCE_CAP_FLAG_RQ_INLINE
= BIT(2)
184 enum hns_roce_mtt_type
{
189 #define HNS_ROCE_CMD_SUCCESS 1
191 #define HNS_ROCE_PORT_DOWN 0
192 #define HNS_ROCE_PORT_UP 1
194 #define HNS_ROCE_MTT_ENTRY_PER_SEG 8
196 #define PAGE_ADDR_SHIFT 12
198 struct hns_roce_uar
{
203 struct hns_roce_ucontext
{
204 struct ib_ucontext ibucontext
;
205 struct hns_roce_uar uar
;
213 struct hns_roce_bitmap
{
214 /* Bitmap Traversal last a bit which is 1 */
218 unsigned long reserved_top
;
221 unsigned long *table
;
224 /* Order bitmap length -- bit num compute formula: 1 << (max_order - order) */
225 /* Order = 0: bitmap is biggest, order = max bitmap is least (only a bit) */
226 /* Every bit repesent to a partner free/used status in bitmap */
228 * Initial, bits of other bitmap are all 0 except that a bit of max_order is 1
229 * Bit = 1 represent to idle and available; bit = 0: not available
231 struct hns_roce_buddy
{
232 /* Members point to every order level bitmap */
233 unsigned long **bits
;
234 /* Represent to avail bits of the order level bitmap */
240 /* For Hardware Entry Memory */
241 struct hns_roce_hem_table
{
242 /* HEM type: 0 = qpc, 1 = mtt, 2 = cqc, 3 = srq, 4 = other */
244 /* HEM array elment num */
245 unsigned long num_hem
;
246 /* HEM entry record obj total num */
247 unsigned long num_obj
;
249 unsigned long obj_size
;
250 unsigned long table_chunk_size
;
253 struct hns_roce_hem
**hem
;
255 dma_addr_t
*bt_l1_dma_addr
;
257 dma_addr_t
*bt_l0_dma_addr
;
260 struct hns_roce_mtt
{
261 unsigned long first_seg
;
264 enum hns_roce_mtt_type mtt_type
;
267 /* Only support 4K page size for mr register */
272 struct ib_umem
*umem
;
273 u64 iova
; /* MR's virtual orignal addr */
274 u64 size
; /* Address range of MR */
275 u32 key
; /* Key of MR */
276 u32 pd
; /* PD num of MR */
277 u32 access
;/* Access permission of MR */
278 int enabled
; /* MR's active status */
279 int type
; /* MR's register type */
280 u64
*pbl_buf
;/* MR's PBL space */
281 dma_addr_t pbl_dma_addr
; /* MR's PBL space PA */
282 u32 pbl_size
;/* PA number in the PBL */
283 u64 pbl_ba
;/* page table address */
284 u32 l0_chunk_last_num
;/* L0 last number */
285 u32 l1_chunk_last_num
;/* L1 last number */
286 u64
**pbl_bt_l2
;/* PBL BT L2 */
287 u64
**pbl_bt_l1
;/* PBL BT L1 */
288 u64
*pbl_bt_l0
;/* PBL BT L0 */
289 dma_addr_t
*pbl_l2_dma_addr
;/* PBL BT L2 dma addr */
290 dma_addr_t
*pbl_l1_dma_addr
;/* PBL BT L1 dma addr */
291 dma_addr_t pbl_l0_dma_addr
;/* PBL BT L0 dma addr */
292 u32 pbl_ba_pg_sz
;/* BT chunk page size */
293 u32 pbl_buf_pg_sz
;/* buf chunk page size */
294 u32 pbl_hop_num
;/* multi-hop number */
297 struct hns_roce_mr_table
{
298 struct hns_roce_bitmap mtpt_bitmap
;
299 struct hns_roce_buddy mtt_buddy
;
300 struct hns_roce_hem_table mtt_table
;
301 struct hns_roce_hem_table mtpt_table
;
302 struct hns_roce_buddy mtt_cqe_buddy
;
303 struct hns_roce_hem_table mtt_cqe_table
;
307 u64
*wrid
; /* Work request ID */
309 int wqe_cnt
; /* WQE num */
313 int wqe_shift
;/* WQE size */
316 void __iomem
*db_reg_l
;
319 struct hns_roce_sge
{
320 int sge_cnt
; /* SGE num */
322 int sge_shift
;/* SGE size */
325 struct hns_roce_buf_list
{
330 struct hns_roce_buf
{
331 struct hns_roce_buf_list direct
;
332 struct hns_roce_buf_list
*page_list
;
338 struct hns_roce_cq_buf
{
339 struct hns_roce_buf hr_buf
;
340 struct hns_roce_mtt hr_mtt
;
345 struct hns_roce_cq_buf hr_buf
;
347 struct ib_umem
*umem
;
348 void (*comp
)(struct hns_roce_cq
*cq
);
349 void (*event
)(struct hns_roce_cq
*cq
, enum hns_roce_event event_type
);
351 struct hns_roce_uar
*uar
;
354 void __iomem
*cq_db_l
;
360 struct completion free
;
363 struct hns_roce_srq
{
368 struct hns_roce_uar_table
{
369 struct hns_roce_bitmap bitmap
;
372 struct hns_roce_qp_table
{
373 struct hns_roce_bitmap bitmap
;
375 struct hns_roce_hem_table qp_table
;
376 struct hns_roce_hem_table irrl_table
;
377 struct hns_roce_hem_table trrl_table
;
380 struct hns_roce_cq_table
{
381 struct hns_roce_bitmap bitmap
;
383 struct radix_tree_root tree
;
384 struct hns_roce_hem_table table
;
387 struct hns_roce_raq_table
{
388 struct hns_roce_buf_list
*e_raq_buf
;
396 __le32 sl_tclass_flowlabel
;
397 u8 dgid
[HNS_ROCE_GID_SIZE
];
404 struct hns_roce_av av
;
407 struct hns_roce_cmd_context
{
408 struct completion done
;
415 struct hns_roce_cmdq
{
416 struct dma_pool
*pool
;
417 struct mutex hcr_mutex
;
418 struct semaphore poll_sem
;
420 * Event mode: cmd register mutex protection,
421 * ensure to not exceed max_cmds and user use limit region
423 struct semaphore event_sem
;
425 spinlock_t context_lock
;
427 struct hns_roce_cmd_context
*context
;
429 * Result of get integer part
430 * which max_comds compute according a power of 2
434 * Process whether use event mode, init default non-zero
435 * After the event queue of cmd event ready,
436 * can switch into event mode
437 * close device, switch into poll mode(non event mode)
443 struct hns_roce_cmd_mailbox
{
450 struct hns_roce_rinl_sge
{
455 struct hns_roce_rinl_wqe
{
456 struct hns_roce_rinl_sge
*sg_list
;
460 struct hns_roce_rinl_buf
{
461 struct hns_roce_rinl_wqe
*wqe_list
;
467 struct hns_roce_buf hr_buf
;
468 struct hns_roce_wq rq
;
470 __le32 sq_signal_bits
;
472 int sq_max_wqes_per_wr
;
474 struct hns_roce_wq sq
;
476 struct ib_umem
*umem
;
477 struct hns_roce_mtt mtt
;
489 void (*event
)(struct hns_roce_qp
*qp
,
490 enum hns_roce_event event_type
);
494 struct completion free
;
496 struct hns_roce_sge sge
;
499 struct hns_roce_rinl_buf rq_inl_buf
;
502 struct hns_roce_sqp
{
503 struct hns_roce_qp hr_qp
;
506 struct hns_roce_ib_iboe
{
508 struct net_device
*netdevs
[HNS_ROCE_MAX_PORTS
];
509 struct notifier_block nb
;
510 u8 phy_port
[HNS_ROCE_MAX_PORTS
];
514 HNS_ROCE_EQ_STAT_INVALID
= 0,
515 HNS_ROCE_EQ_STAT_VALID
= 2,
518 struct hns_roce_ceqe
{
522 struct hns_roce_aeqe
{
553 struct hns_roce_dev
*hr_dev
;
554 void __iomem
*doorbell
;
556 int type_flag
;/* Aeq:1 ceq:0 */
564 struct hns_roce_buf_list
*buf_list
;
572 u64
*bt_l0
; /* Base address table for L0 */
573 u64
**bt_l1
; /* Base address table for L1 */
578 u32 l0_last_num
; /* L0 last chunk num */
579 u32 l1_last_num
; /* L1 last chunk num */
583 dma_addr_t cur_eqe_ba
;
584 dma_addr_t nxt_eqe_ba
;
587 struct hns_roce_eq_table
{
588 struct hns_roce_eq
*eq
;
589 void __iomem
**eqc_base
; /* only for hw v1 */
592 struct hns_roce_caps
{
594 int gid_table_len
[HNS_ROCE_MAX_PORTS
];
595 int pkey_table_len
[HNS_ROCE_MAX_PORTS
];
596 int local_ca_ack_delay
;
599 u32 max_sq_sg
; /* 2 */
600 u32 max_sq_inline
; /* 32 */
601 u32 max_rq_sg
; /* 2 */
602 int num_qps
; /* 256k */
603 u32 max_wqes
; /* 16k */
604 u32 max_sq_desc_sz
; /* 64 */
605 u32 max_rq_desc_sz
; /* 64 */
607 int max_qp_init_rdma
;
608 int max_qp_dest_rdma
;
614 int num_aeq_vectors
; /* 1 */
615 int num_comp_vectors
;
616 int num_other_vectors
;
664 u32 chunk_sz
; /* chunk size in non multihop mode*/
669 int (*reset
)(struct hns_roce_dev
*hr_dev
, bool enable
);
670 int (*cmq_init
)(struct hns_roce_dev
*hr_dev
);
671 void (*cmq_exit
)(struct hns_roce_dev
*hr_dev
);
672 int (*hw_profile
)(struct hns_roce_dev
*hr_dev
);
673 int (*hw_init
)(struct hns_roce_dev
*hr_dev
);
674 void (*hw_exit
)(struct hns_roce_dev
*hr_dev
);
675 int (*post_mbox
)(struct hns_roce_dev
*hr_dev
, u64 in_param
,
676 u64 out_param
, u32 in_modifier
, u8 op_modifier
, u16 op
,
677 u16 token
, int event
);
678 int (*chk_mbox
)(struct hns_roce_dev
*hr_dev
, unsigned long timeout
);
679 int (*set_gid
)(struct hns_roce_dev
*hr_dev
, u8 port
, int gid_index
,
680 union ib_gid
*gid
, const struct ib_gid_attr
*attr
);
681 int (*set_mac
)(struct hns_roce_dev
*hr_dev
, u8 phy_port
, u8
*addr
);
682 void (*set_mtu
)(struct hns_roce_dev
*hr_dev
, u8 phy_port
,
684 int (*write_mtpt
)(void *mb_buf
, struct hns_roce_mr
*mr
,
685 unsigned long mtpt_idx
);
686 int (*rereg_write_mtpt
)(struct hns_roce_dev
*hr_dev
,
687 struct hns_roce_mr
*mr
, int flags
, u32 pdn
,
688 int mr_access_flags
, u64 iova
, u64 size
,
690 void (*write_cqc
)(struct hns_roce_dev
*hr_dev
,
691 struct hns_roce_cq
*hr_cq
, void *mb_buf
, u64
*mtts
,
692 dma_addr_t dma_handle
, int nent
, u32 vector
);
693 int (*set_hem
)(struct hns_roce_dev
*hr_dev
,
694 struct hns_roce_hem_table
*table
, int obj
, int step_idx
);
695 int (*clear_hem
)(struct hns_roce_dev
*hr_dev
,
696 struct hns_roce_hem_table
*table
, int obj
,
698 int (*query_qp
)(struct ib_qp
*ibqp
, struct ib_qp_attr
*qp_attr
,
699 int qp_attr_mask
, struct ib_qp_init_attr
*qp_init_attr
);
700 int (*modify_qp
)(struct ib_qp
*ibqp
, const struct ib_qp_attr
*attr
,
701 int attr_mask
, enum ib_qp_state cur_state
,
702 enum ib_qp_state new_state
);
703 int (*destroy_qp
)(struct ib_qp
*ibqp
);
704 int (*post_send
)(struct ib_qp
*ibqp
, struct ib_send_wr
*wr
,
705 struct ib_send_wr
**bad_wr
);
706 int (*post_recv
)(struct ib_qp
*qp
, struct ib_recv_wr
*recv_wr
,
707 struct ib_recv_wr
**bad_recv_wr
);
708 int (*req_notify_cq
)(struct ib_cq
*ibcq
, enum ib_cq_notify_flags flags
);
709 int (*poll_cq
)(struct ib_cq
*ibcq
, int num_entries
, struct ib_wc
*wc
);
710 int (*dereg_mr
)(struct hns_roce_dev
*hr_dev
, struct hns_roce_mr
*mr
);
711 int (*destroy_cq
)(struct ib_cq
*ibcq
);
712 int (*modify_cq
)(struct ib_cq
*cq
, u16 cq_count
, u16 cq_period
);
713 int (*init_eq
)(struct hns_roce_dev
*hr_dev
);
714 void (*cleanup_eq
)(struct hns_roce_dev
*hr_dev
);
717 struct hns_roce_dev
{
718 struct ib_device ib_dev
;
719 struct platform_device
*pdev
;
720 struct pci_dev
*pci_dev
;
722 struct hns_roce_uar priv_uar
;
723 const char *irq_names
[HNS_ROCE_MAX_IRQ_NUM
];
725 spinlock_t bt_cmd_lock
;
726 struct hns_roce_ib_iboe iboe
;
728 int irq
[HNS_ROCE_MAX_IRQ_NUM
];
729 u8 __iomem
*reg_base
;
730 struct hns_roce_caps caps
;
731 struct radix_tree_root qp_table_tree
;
733 unsigned char dev_addr
[HNS_ROCE_MAX_PORTS
][MAC_ADDR_OCTET_NUM
];
738 void __iomem
*priv_addr
;
740 struct hns_roce_cmdq cmd
;
741 struct hns_roce_bitmap pd_bitmap
;
742 struct hns_roce_uar_table uar_table
;
743 struct hns_roce_mr_table mr_table
;
744 struct hns_roce_cq_table cq_table
;
745 struct hns_roce_qp_table qp_table
;
746 struct hns_roce_eq_table eq_table
;
752 dma_addr_t tptr_dma_addr
; /*only for hw v1*/
753 u32 tptr_size
; /*only for hw v1*/
754 const struct hns_roce_hw
*hw
;
758 static inline struct hns_roce_dev
*to_hr_dev(struct ib_device
*ib_dev
)
760 return container_of(ib_dev
, struct hns_roce_dev
, ib_dev
);
763 static inline struct hns_roce_ucontext
764 *to_hr_ucontext(struct ib_ucontext
*ibucontext
)
766 return container_of(ibucontext
, struct hns_roce_ucontext
, ibucontext
);
769 static inline struct hns_roce_pd
*to_hr_pd(struct ib_pd
*ibpd
)
771 return container_of(ibpd
, struct hns_roce_pd
, ibpd
);
774 static inline struct hns_roce_ah
*to_hr_ah(struct ib_ah
*ibah
)
776 return container_of(ibah
, struct hns_roce_ah
, ibah
);
779 static inline struct hns_roce_mr
*to_hr_mr(struct ib_mr
*ibmr
)
781 return container_of(ibmr
, struct hns_roce_mr
, ibmr
);
784 static inline struct hns_roce_qp
*to_hr_qp(struct ib_qp
*ibqp
)
786 return container_of(ibqp
, struct hns_roce_qp
, ibqp
);
789 static inline struct hns_roce_cq
*to_hr_cq(struct ib_cq
*ib_cq
)
791 return container_of(ib_cq
, struct hns_roce_cq
, ib_cq
);
794 static inline struct hns_roce_srq
*to_hr_srq(struct ib_srq
*ibsrq
)
796 return container_of(ibsrq
, struct hns_roce_srq
, ibsrq
);
799 static inline struct hns_roce_sqp
*hr_to_hr_sqp(struct hns_roce_qp
*hr_qp
)
801 return container_of(hr_qp
, struct hns_roce_sqp
, hr_qp
);
804 static inline void hns_roce_write64_k(__be32 val
[2], void __iomem
*dest
)
806 __raw_writeq(*(u64
*) val
, dest
);
809 static inline struct hns_roce_qp
810 *__hns_roce_qp_lookup(struct hns_roce_dev
*hr_dev
, u32 qpn
)
812 return radix_tree_lookup(&hr_dev
->qp_table_tree
,
813 qpn
& (hr_dev
->caps
.num_qps
- 1));
816 static inline void *hns_roce_buf_offset(struct hns_roce_buf
*buf
, int offset
)
818 u32 page_size
= 1 << buf
->page_shift
;
821 return (char *)(buf
->direct
.buf
) + offset
;
823 return (char *)(buf
->page_list
[offset
>> buf
->page_shift
].buf
) +
824 (offset
& (page_size
- 1));
827 int hns_roce_init_uar_table(struct hns_roce_dev
*dev
);
828 int hns_roce_uar_alloc(struct hns_roce_dev
*dev
, struct hns_roce_uar
*uar
);
829 void hns_roce_uar_free(struct hns_roce_dev
*dev
, struct hns_roce_uar
*uar
);
830 void hns_roce_cleanup_uar_table(struct hns_roce_dev
*dev
);
832 int hns_roce_cmd_init(struct hns_roce_dev
*hr_dev
);
833 void hns_roce_cmd_cleanup(struct hns_roce_dev
*hr_dev
);
834 void hns_roce_cmd_event(struct hns_roce_dev
*hr_dev
, u16 token
, u8 status
,
836 int hns_roce_cmd_use_events(struct hns_roce_dev
*hr_dev
);
837 void hns_roce_cmd_use_polling(struct hns_roce_dev
*hr_dev
);
839 int hns_roce_mtt_init(struct hns_roce_dev
*hr_dev
, int npages
, int page_shift
,
840 struct hns_roce_mtt
*mtt
);
841 void hns_roce_mtt_cleanup(struct hns_roce_dev
*hr_dev
,
842 struct hns_roce_mtt
*mtt
);
843 int hns_roce_buf_write_mtt(struct hns_roce_dev
*hr_dev
,
844 struct hns_roce_mtt
*mtt
, struct hns_roce_buf
*buf
);
846 int hns_roce_init_pd_table(struct hns_roce_dev
*hr_dev
);
847 int hns_roce_init_mr_table(struct hns_roce_dev
*hr_dev
);
848 int hns_roce_init_eq_table(struct hns_roce_dev
*hr_dev
);
849 int hns_roce_init_cq_table(struct hns_roce_dev
*hr_dev
);
850 int hns_roce_init_qp_table(struct hns_roce_dev
*hr_dev
);
852 void hns_roce_cleanup_pd_table(struct hns_roce_dev
*hr_dev
);
853 void hns_roce_cleanup_mr_table(struct hns_roce_dev
*hr_dev
);
854 void hns_roce_cleanup_eq_table(struct hns_roce_dev
*hr_dev
);
855 void hns_roce_cleanup_cq_table(struct hns_roce_dev
*hr_dev
);
856 void hns_roce_cleanup_qp_table(struct hns_roce_dev
*hr_dev
);
858 int hns_roce_bitmap_alloc(struct hns_roce_bitmap
*bitmap
, unsigned long *obj
);
859 void hns_roce_bitmap_free(struct hns_roce_bitmap
*bitmap
, unsigned long obj
,
861 int hns_roce_bitmap_init(struct hns_roce_bitmap
*bitmap
, u32 num
, u32 mask
,
862 u32 reserved_bot
, u32 resetrved_top
);
863 void hns_roce_bitmap_cleanup(struct hns_roce_bitmap
*bitmap
);
864 void hns_roce_cleanup_bitmap(struct hns_roce_dev
*hr_dev
);
865 int hns_roce_bitmap_alloc_range(struct hns_roce_bitmap
*bitmap
, int cnt
,
866 int align
, unsigned long *obj
);
867 void hns_roce_bitmap_free_range(struct hns_roce_bitmap
*bitmap
,
868 unsigned long obj
, int cnt
,
871 struct ib_ah
*hns_roce_create_ah(struct ib_pd
*pd
,
872 struct rdma_ah_attr
*ah_attr
,
873 struct ib_udata
*udata
);
874 int hns_roce_query_ah(struct ib_ah
*ibah
, struct rdma_ah_attr
*ah_attr
);
875 int hns_roce_destroy_ah(struct ib_ah
*ah
);
877 struct ib_pd
*hns_roce_alloc_pd(struct ib_device
*ib_dev
,
878 struct ib_ucontext
*context
,
879 struct ib_udata
*udata
);
880 int hns_roce_dealloc_pd(struct ib_pd
*pd
);
882 struct ib_mr
*hns_roce_get_dma_mr(struct ib_pd
*pd
, int acc
);
883 struct ib_mr
*hns_roce_reg_user_mr(struct ib_pd
*pd
, u64 start
, u64 length
,
884 u64 virt_addr
, int access_flags
,
885 struct ib_udata
*udata
);
886 int hns_roce_rereg_user_mr(struct ib_mr
*mr
, int flags
, u64 start
, u64 length
,
887 u64 virt_addr
, int mr_access_flags
, struct ib_pd
*pd
,
888 struct ib_udata
*udata
);
889 int hns_roce_dereg_mr(struct ib_mr
*ibmr
);
890 int hns_roce_hw2sw_mpt(struct hns_roce_dev
*hr_dev
,
891 struct hns_roce_cmd_mailbox
*mailbox
,
892 unsigned long mpt_index
);
893 unsigned long key_to_hw_index(u32 key
);
895 void hns_roce_buf_free(struct hns_roce_dev
*hr_dev
, u32 size
,
896 struct hns_roce_buf
*buf
);
897 int hns_roce_buf_alloc(struct hns_roce_dev
*hr_dev
, u32 size
, u32 max_direct
,
898 struct hns_roce_buf
*buf
, u32 page_shift
);
900 int hns_roce_ib_umem_write_mtt(struct hns_roce_dev
*hr_dev
,
901 struct hns_roce_mtt
*mtt
, struct ib_umem
*umem
);
903 struct ib_qp
*hns_roce_create_qp(struct ib_pd
*ib_pd
,
904 struct ib_qp_init_attr
*init_attr
,
905 struct ib_udata
*udata
);
906 int hns_roce_modify_qp(struct ib_qp
*ibqp
, struct ib_qp_attr
*attr
,
907 int attr_mask
, struct ib_udata
*udata
);
908 void *get_recv_wqe(struct hns_roce_qp
*hr_qp
, int n
);
909 void *get_send_wqe(struct hns_roce_qp
*hr_qp
, int n
);
910 void *get_send_extend_sge(struct hns_roce_qp
*hr_qp
, int n
);
911 bool hns_roce_wq_overflow(struct hns_roce_wq
*hr_wq
, int nreq
,
912 struct ib_cq
*ib_cq
);
913 enum hns_roce_qp_state
to_hns_roce_state(enum ib_qp_state state
);
914 void hns_roce_lock_cqs(struct hns_roce_cq
*send_cq
,
915 struct hns_roce_cq
*recv_cq
);
916 void hns_roce_unlock_cqs(struct hns_roce_cq
*send_cq
,
917 struct hns_roce_cq
*recv_cq
);
918 void hns_roce_qp_remove(struct hns_roce_dev
*hr_dev
, struct hns_roce_qp
*hr_qp
);
919 void hns_roce_qp_free(struct hns_roce_dev
*hr_dev
, struct hns_roce_qp
*hr_qp
);
920 void hns_roce_release_range_qp(struct hns_roce_dev
*hr_dev
, int base_qpn
,
922 __be32
send_ieth(struct ib_send_wr
*wr
);
923 int to_hr_qp_type(int qp_type
);
925 struct ib_cq
*hns_roce_ib_create_cq(struct ib_device
*ib_dev
,
926 const struct ib_cq_init_attr
*attr
,
927 struct ib_ucontext
*context
,
928 struct ib_udata
*udata
);
930 int hns_roce_ib_destroy_cq(struct ib_cq
*ib_cq
);
931 void hns_roce_free_cq(struct hns_roce_dev
*hr_dev
, struct hns_roce_cq
*hr_cq
);
933 void hns_roce_cq_completion(struct hns_roce_dev
*hr_dev
, u32 cqn
);
934 void hns_roce_cq_event(struct hns_roce_dev
*hr_dev
, u32 cqn
, int event_type
);
935 void hns_roce_qp_event(struct hns_roce_dev
*hr_dev
, u32 qpn
, int event_type
);
936 int hns_get_gid_index(struct hns_roce_dev
*hr_dev
, u8 port
, int gid_index
);
937 int hns_roce_init(struct hns_roce_dev
*hr_dev
);
938 void hns_roce_exit(struct hns_roce_dev
*hr_dev
);
940 #endif /* _HNS_ROCE_DEVICE_H */