]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/infiniband/hw/hns/hns_roce_device.h
IB/mlx5: Remove dead code
[mirror_ubuntu-hirsute-kernel.git] / drivers / infiniband / hw / hns / hns_roce_device.h
CommitLineData
9a443537 1/*
2 * Copyright (c) 2016 Hisilicon Limited.
3 *
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:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
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.
22 *
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
30 * SOFTWARE.
31 */
32
33#ifndef _HNS_ROCE_DEVICE_H
34#define _HNS_ROCE_DEVICE_H
35
36#include <rdma/ib_verbs.h>
37
38#define DRV_NAME "hns_roce"
39
8f3e9f3e
WHX
40#define HNS_ROCE_HW_VER1 ('h' << 24 | 'i' << 16 | '0' << 8 | '6')
41
9a443537 42#define MAC_ADDR_OCTET_NUM 6
43#define HNS_ROCE_MAX_MSG_LEN 0x80000000
44
45#define HNS_ROCE_ALOGN_UP(a, b) ((((a) + (b) - 1) / (b)) * (b))
46
47#define HNS_ROCE_IB_MIN_SQ_STRIDE 6
48
49#define HNS_ROCE_BA_SIZE (32 * 4096)
50
51/* Hardware specification only for v1 engine */
52#define HNS_ROCE_MIN_CQE_NUM 0x40
53#define HNS_ROCE_MIN_WQE_NUM 0x20
54
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
58
afb6b092
SX
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
64
b16f8188 65#define HNS_ROCE_MAX_IRQ_NUM 128
9a443537 66
b16f8188
YL
67#define EQ_ENABLE 1
68#define EQ_DISABLE 0
9a443537 69
b16f8188
YL
70#define HNS_ROCE_CEQ 0
71#define HNS_ROCE_AEQ 1
72
73#define HNS_ROCE_CEQ_ENTRY_SIZE 0x4
74#define HNS_ROCE_AEQ_ENTRY_SIZE 0x10
9a443537 75
76/* 4G/4K = 1M */
ac11125b 77#define HNS_ROCE_SL_SHIFT 28
9a443537 78#define HNS_ROCE_TCLASS_SHIFT 20
cdfa4ad5 79#define HNS_ROCE_FLOW_LABEL_MASK 0xfffff
9a443537 80
81#define HNS_ROCE_MAX_PORTS 6
82#define HNS_ROCE_MAX_GID_NUM 16
83#define HNS_ROCE_GID_SIZE 16
84
a25d13cb
SX
85#define HNS_ROCE_HOP_NUM_0 0xff
86
5e6ff78a
WHX
87#define BITMAP_NO_RR 0
88#define BITMAP_RR 1
89
9a443537 90#define MR_TYPE_MR 0x00
68a997c5 91#define MR_TYPE_FRMR 0x01
9a443537 92#define MR_TYPE_DMA 0x03
93
68a997c5
YL
94#define HNS_ROCE_FRMR_MAX_PA 512
95
9a443537 96#define PKEY_ID 0xffff
31644665 97#define GUID_LEN 8
9a443537 98#define NODE_DESC_SIZE 64
509bf0c2 99#define DB_REG_OFFSET 0x1000
9a443537 100
101#define SERV_TYPE_RC 0
102#define SERV_TYPE_RD 1
103#define SERV_TYPE_UC 2
104#define SERV_TYPE_UD 3
105
5e6e78db
YL
106/* Configure to HW for PAGE_SIZE larger than 4KB */
107#define PG_SHIFT_OFFSET (PAGE_SHIFT - 12)
108
9a443537 109#define PAGES_SHIFT_8 8
110#define PAGES_SHIFT_16 16
111#define PAGES_SHIFT_24 24
112#define PAGES_SHIFT_32 32
113
c7bcb134
LO
114#define HNS_ROCE_IDX_QUE_ENTRY_SZ 4
115#define SRQ_DB_REG 0x230
116
e088a685
YL
117enum {
118 HNS_ROCE_SUPPORT_RQ_RECORD_DB = 1 << 0,
0425e3e6 119 HNS_ROCE_SUPPORT_SQ_RECORD_DB = 1 << 1,
e088a685
YL
120};
121
9b44703d
YL
122enum {
123 HNS_ROCE_SUPPORT_CQ_RECORD_DB = 1 << 0,
124};
125
9a443537 126enum hns_roce_qp_state {
127 HNS_ROCE_QP_STATE_RST,
128 HNS_ROCE_QP_STATE_INIT,
129 HNS_ROCE_QP_STATE_RTR,
130 HNS_ROCE_QP_STATE_RTS,
131 HNS_ROCE_QP_STATE_SQD,
132 HNS_ROCE_QP_STATE_ERR,
133 HNS_ROCE_QP_NUM_STATE,
134};
135
136enum hns_roce_event {
137 HNS_ROCE_EVENT_TYPE_PATH_MIG = 0x01,
138 HNS_ROCE_EVENT_TYPE_PATH_MIG_FAILED = 0x02,
139 HNS_ROCE_EVENT_TYPE_COMM_EST = 0x03,
140 HNS_ROCE_EVENT_TYPE_SQ_DRAINED = 0x04,
141 HNS_ROCE_EVENT_TYPE_WQ_CATAS_ERROR = 0x05,
142 HNS_ROCE_EVENT_TYPE_INV_REQ_LOCAL_WQ_ERROR = 0x06,
143 HNS_ROCE_EVENT_TYPE_LOCAL_WQ_ACCESS_ERROR = 0x07,
144 HNS_ROCE_EVENT_TYPE_SRQ_LIMIT_REACH = 0x08,
145 HNS_ROCE_EVENT_TYPE_SRQ_LAST_WQE_REACH = 0x09,
146 HNS_ROCE_EVENT_TYPE_SRQ_CATAS_ERROR = 0x0a,
147 HNS_ROCE_EVENT_TYPE_CQ_ACCESS_ERROR = 0x0b,
148 HNS_ROCE_EVENT_TYPE_CQ_OVERFLOW = 0x0c,
149 HNS_ROCE_EVENT_TYPE_CQ_ID_INVALID = 0x0d,
150 HNS_ROCE_EVENT_TYPE_PORT_CHANGE = 0x0f,
151 /* 0x10 and 0x11 is unused in currently application case */
152 HNS_ROCE_EVENT_TYPE_DB_OVERFLOW = 0x12,
153 HNS_ROCE_EVENT_TYPE_MB = 0x13,
154 HNS_ROCE_EVENT_TYPE_CEQ_OVERFLOW = 0x14,
a5073d60 155 HNS_ROCE_EVENT_TYPE_FLR = 0x15,
9a443537 156};
157
158/* Local Work Queue Catastrophic Error,SUBTYPE 0x5 */
159enum {
160 HNS_ROCE_LWQCE_QPC_ERROR = 1,
161 HNS_ROCE_LWQCE_MTU_ERROR = 2,
162 HNS_ROCE_LWQCE_WQE_BA_ADDR_ERROR = 3,
163 HNS_ROCE_LWQCE_WQE_ADDR_ERROR = 4,
164 HNS_ROCE_LWQCE_SQ_WQE_SHIFT_ERROR = 5,
165 HNS_ROCE_LWQCE_SL_ERROR = 6,
166 HNS_ROCE_LWQCE_PORT_ERROR = 7,
167};
168
169/* Local Access Violation Work Queue Error,SUBTYPE 0x7 */
170enum {
171 HNS_ROCE_LAVWQE_R_KEY_VIOLATION = 1,
172 HNS_ROCE_LAVWQE_LENGTH_ERROR = 2,
173 HNS_ROCE_LAVWQE_VA_ERROR = 3,
174 HNS_ROCE_LAVWQE_PD_ERROR = 4,
175 HNS_ROCE_LAVWQE_RW_ACC_ERROR = 5,
176 HNS_ROCE_LAVWQE_KEY_STATE_ERROR = 6,
177 HNS_ROCE_LAVWQE_MR_OPERATION_ERROR = 7,
178};
179
180/* DOORBELL overflow subtype */
181enum {
182 HNS_ROCE_DB_SUBTYPE_SDB_OVF = 1,
183 HNS_ROCE_DB_SUBTYPE_SDB_ALM_OVF = 2,
184 HNS_ROCE_DB_SUBTYPE_ODB_OVF = 3,
185 HNS_ROCE_DB_SUBTYPE_ODB_ALM_OVF = 4,
186 HNS_ROCE_DB_SUBTYPE_SDB_ALM_EMP = 5,
187 HNS_ROCE_DB_SUBTYPE_ODB_ALM_EMP = 6,
188};
189
190enum {
191 /* RQ&SRQ related operations */
192 HNS_ROCE_OPCODE_SEND_DATA_RECEIVE = 0x06,
193 HNS_ROCE_OPCODE_RDMA_WITH_IMM_RECEIVE = 0x07,
194};
195
a2c80b7b
WHX
196enum {
197 HNS_ROCE_CAP_FLAG_REREG_MR = BIT(0),
023c1477 198 HNS_ROCE_CAP_FLAG_ROCE_V1_V2 = BIT(1),
e088a685 199 HNS_ROCE_CAP_FLAG_RQ_INLINE = BIT(2),
0425e3e6
YL
200 HNS_ROCE_CAP_FLAG_RECORD_DB = BIT(3),
201 HNS_ROCE_CAP_FLAG_SQ_RECORD_DB = BIT(4),
d16da119 202 HNS_ROCE_CAP_FLAG_SRQ = BIT(5),
c7c28191 203 HNS_ROCE_CAP_FLAG_MW = BIT(7),
68a997c5 204 HNS_ROCE_CAP_FLAG_FRMR = BIT(8),
384f8818 205 HNS_ROCE_CAP_FLAG_ATOMIC = BIT(10),
a2c80b7b
WHX
206};
207
9766edc3 208enum hns_roce_mtt_type {
400d324a 209 MTT_TYPE_WQE,
9766edc3 210 MTT_TYPE_CQE,
5c1f167a
LO
211 MTT_TYPE_SRQWQE,
212 MTT_TYPE_IDX
9766edc3
SX
213};
214
e088a685
YL
215enum {
216 HNS_ROCE_DB_PER_PAGE = PAGE_SIZE / 4
217};
218
9a443537 219#define HNS_ROCE_CMD_SUCCESS 1
220
221#define HNS_ROCE_PORT_DOWN 0
222#define HNS_ROCE_PORT_UP 1
223
224#define HNS_ROCE_MTT_ENTRY_PER_SEG 8
225
226#define PAGE_ADDR_SHIFT 12
227
228struct hns_roce_uar {
229 u64 pfn;
230 unsigned long index;
5b6eb54f 231 unsigned long logic_idx;
9a443537 232};
233
234struct hns_roce_ucontext {
235 struct ib_ucontext ibucontext;
236 struct hns_roce_uar uar;
e088a685
YL
237 struct list_head page_list;
238 struct mutex page_mutex;
9a443537 239};
240
241struct hns_roce_pd {
242 struct ib_pd ibpd;
243 unsigned long pdn;
244};
245
246struct hns_roce_bitmap {
247 /* Bitmap Traversal last a bit which is 1 */
248 unsigned long last;
249 unsigned long top;
250 unsigned long max;
251 unsigned long reserved_top;
252 unsigned long mask;
253 spinlock_t lock;
254 unsigned long *table;
255};
256
257/* Order bitmap length -- bit num compute formula: 1 << (max_order - order) */
258/* Order = 0: bitmap is biggest, order = max bitmap is least (only a bit) */
259/* Every bit repesent to a partner free/used status in bitmap */
260/*
e84e40be
S
261 * Initial, bits of other bitmap are all 0 except that a bit of max_order is 1
262 * Bit = 1 represent to idle and available; bit = 0: not available
263 */
9a443537 264struct hns_roce_buddy {
265 /* Members point to every order level bitmap */
266 unsigned long **bits;
267 /* Represent to avail bits of the order level bitmap */
268 u32 *num_free;
269 int max_order;
270 spinlock_t lock;
271};
272
273/* For Hardware Entry Memory */
274struct hns_roce_hem_table {
275 /* HEM type: 0 = qpc, 1 = mtt, 2 = cqc, 3 = srq, 4 = other */
276 u32 type;
277 /* HEM array elment num */
278 unsigned long num_hem;
279 /* HEM entry record obj total num */
280 unsigned long num_obj;
281 /*Single obj size */
282 unsigned long obj_size;
29a1fe5d 283 unsigned long table_chunk_size;
9a443537 284 int lowmem;
285 struct mutex mutex;
286 struct hns_roce_hem **hem;
a25d13cb
SX
287 u64 **bt_l1;
288 dma_addr_t *bt_l1_dma_addr;
289 u64 **bt_l0;
290 dma_addr_t *bt_l0_dma_addr;
9a443537 291};
292
293struct hns_roce_mtt {
9766edc3
SX
294 unsigned long first_seg;
295 int order;
296 int page_shift;
297 enum hns_roce_mtt_type mtt_type;
9a443537 298};
299
c7c28191
YL
300struct hns_roce_mw {
301 struct ib_mw ibmw;
302 u32 pdn;
303 u32 rkey;
304 int enabled; /* MW's active status */
305 u32 pbl_hop_num;
306 u32 pbl_ba_pg_sz;
307 u32 pbl_buf_pg_sz;
308};
309
9a443537 310/* Only support 4K page size for mr register */
311#define MR_SIZE_4K 0
312
313struct hns_roce_mr {
314 struct ib_mr ibmr;
315 struct ib_umem *umem;
316 u64 iova; /* MR's virtual orignal addr */
317 u64 size; /* Address range of MR */
318 u32 key; /* Key of MR */
319 u32 pd; /* PD num of MR */
320 u32 access;/* Access permission of MR */
68a997c5 321 u32 npages;
9a443537 322 int enabled; /* MR's active status */
323 int type; /* MR's register type */
324 u64 *pbl_buf;/* MR's PBL space */
325 dma_addr_t pbl_dma_addr; /* MR's PBL space PA */
ff795f71
WHX
326 u32 pbl_size;/* PA number in the PBL */
327 u64 pbl_ba;/* page table address */
328 u32 l0_chunk_last_num;/* L0 last number */
329 u32 l1_chunk_last_num;/* L1 last number */
330 u64 **pbl_bt_l2;/* PBL BT L2 */
331 u64 **pbl_bt_l1;/* PBL BT L1 */
332 u64 *pbl_bt_l0;/* PBL BT L0 */
333 dma_addr_t *pbl_l2_dma_addr;/* PBL BT L2 dma addr */
334 dma_addr_t *pbl_l1_dma_addr;/* PBL BT L1 dma addr */
335 dma_addr_t pbl_l0_dma_addr;/* PBL BT L0 dma addr */
336 u32 pbl_ba_pg_sz;/* BT chunk page size */
337 u32 pbl_buf_pg_sz;/* buf chunk page size */
338 u32 pbl_hop_num;/* multi-hop number */
9a443537 339};
340
341struct hns_roce_mr_table {
342 struct hns_roce_bitmap mtpt_bitmap;
343 struct hns_roce_buddy mtt_buddy;
344 struct hns_roce_hem_table mtt_table;
345 struct hns_roce_hem_table mtpt_table;
9766edc3
SX
346 struct hns_roce_buddy mtt_cqe_buddy;
347 struct hns_roce_hem_table mtt_cqe_table;
5c1f167a
LO
348 struct hns_roce_buddy mtt_srqwqe_buddy;
349 struct hns_roce_hem_table mtt_srqwqe_table;
350 struct hns_roce_buddy mtt_idx_buddy;
351 struct hns_roce_hem_table mtt_idx_table;
9a443537 352};
353
354struct hns_roce_wq {
355 u64 *wrid; /* Work request ID */
356 spinlock_t lock;
357 int wqe_cnt; /* WQE num */
358 u32 max_post;
359 int max_gs;
360 int offset;
361 int wqe_shift;/* WQE size */
362 u32 head;
363 u32 tail;
364 void __iomem *db_reg_l;
365};
366
926a01dc
WHX
367struct hns_roce_sge {
368 int sge_cnt; /* SGE num */
369 int offset;
370 int sge_shift;/* SGE size */
371};
372
9a443537 373struct hns_roce_buf_list {
374 void *buf;
375 dma_addr_t map;
376};
377
378struct hns_roce_buf {
379 struct hns_roce_buf_list direct;
380 struct hns_roce_buf_list *page_list;
381 int nbufs;
382 u32 npages;
383 int page_shift;
384};
385
e088a685
YL
386struct hns_roce_db_pgdir {
387 struct list_head list;
388 DECLARE_BITMAP(order0, HNS_ROCE_DB_PER_PAGE);
389 DECLARE_BITMAP(order1, HNS_ROCE_DB_PER_PAGE / 2);
390 unsigned long *bits[2];
391 u32 *page;
392 dma_addr_t db_dma;
393};
394
395struct hns_roce_user_db_page {
396 struct list_head list;
397 struct ib_umem *umem;
398 unsigned long user_virt;
399 refcount_t refcount;
400};
401
402struct hns_roce_db {
403 u32 *db_record;
404 union {
405 struct hns_roce_db_pgdir *pgdir;
406 struct hns_roce_user_db_page *user_page;
407 } u;
408 dma_addr_t dma;
0425e3e6 409 void *virt_addr;
e088a685
YL
410 int index;
411 int order;
412};
413
9a443537 414struct hns_roce_cq_buf {
415 struct hns_roce_buf hr_buf;
416 struct hns_roce_mtt hr_mtt;
417};
418
9a443537 419struct hns_roce_cq {
420 struct ib_cq ib_cq;
421 struct hns_roce_cq_buf hr_buf;
9b44703d
YL
422 struct hns_roce_db db;
423 u8 db_en;
9a443537 424 spinlock_t lock;
9a443537 425 struct ib_umem *umem;
fd012f1c 426 void (*comp)(struct hns_roce_cq *cq);
427 void (*event)(struct hns_roce_cq *cq, enum hns_roce_event event_type);
9a443537 428
429 struct hns_roce_uar *uar;
430 u32 cq_depth;
431 u32 cons_index;
86188a88 432 u32 *set_ci_db;
9a443537 433 void __iomem *cq_db_l;
8f3e9f3e 434 u16 *tptr_addr;
26beb85f 435 int arm_sn;
9a443537 436 unsigned long cqn;
437 u32 vector;
438 atomic_t refcount;
439 struct completion free;
440};
441
c7bcb134
LO
442struct hns_roce_idx_que {
443 struct hns_roce_buf idx_buf;
444 int entry_sz;
445 u32 buf_size;
446 struct ib_umem *umem;
447 struct hns_roce_mtt mtt;
448 u64 *bitmap;
449};
450
9a443537 451struct hns_roce_srq {
452 struct ib_srq ibsrq;
c7bcb134
LO
453 void (*event)(struct hns_roce_srq *srq, enum hns_roce_event event);
454 unsigned long srqn;
455 int max;
456 int max_gs;
457 int wqe_shift;
458 void __iomem *db_reg_l;
459
460 atomic_t refcount;
461 struct completion free;
462
463 struct hns_roce_buf buf;
464 u64 *wrid;
465 struct ib_umem *umem;
466 struct hns_roce_mtt mtt;
467 struct hns_roce_idx_que idx_que;
468 spinlock_t lock;
469 int head;
470 int tail;
471 u16 wqe_ctr;
472 struct mutex mutex;
9a443537 473};
474
475struct hns_roce_uar_table {
476 struct hns_roce_bitmap bitmap;
477};
478
479struct hns_roce_qp_table {
480 struct hns_roce_bitmap bitmap;
481 spinlock_t lock;
482 struct hns_roce_hem_table qp_table;
483 struct hns_roce_hem_table irrl_table;
e92f2c18 484 struct hns_roce_hem_table trrl_table;
9a443537 485};
486
487struct hns_roce_cq_table {
488 struct hns_roce_bitmap bitmap;
489 spinlock_t lock;
490 struct radix_tree_root tree;
491 struct hns_roce_hem_table table;
492};
493
5c1f167a
LO
494struct hns_roce_srq_table {
495 struct hns_roce_bitmap bitmap;
496 struct xarray xa;
497 struct hns_roce_hem_table table;
498};
499
9a443537 500struct hns_roce_raq_table {
501 struct hns_roce_buf_list *e_raq_buf;
502};
503
504struct hns_roce_av {
505 __le32 port_pd;
506 u8 gid_index;
507 u8 stat_rate;
508 u8 hop_limit;
509 __le32 sl_tclass_flowlabel;
510 u8 dgid[HNS_ROCE_GID_SIZE];
511 u8 mac[6];
512 __le16 vlan;
8320deb8 513 bool vlan_en;
9a443537 514};
515
516struct hns_roce_ah {
517 struct ib_ah ibah;
518 struct hns_roce_av av;
519};
520
521struct hns_roce_cmd_context {
522 struct completion done;
523 int result;
524 int next;
525 u64 out_param;
526 u16 token;
527};
528
529struct hns_roce_cmdq {
530 struct dma_pool *pool;
9a443537 531 struct mutex hcr_mutex;
532 struct semaphore poll_sem;
533 /*
e84e40be
S
534 * Event mode: cmd register mutex protection,
535 * ensure to not exceed max_cmds and user use limit region
536 */
9a443537 537 struct semaphore event_sem;
538 int max_cmds;
539 spinlock_t context_lock;
540 int free_head;
541 struct hns_roce_cmd_context *context;
542 /*
e84e40be
S
543 * Result of get integer part
544 * which max_comds compute according a power of 2
545 */
9a443537 546 u16 token_mask;
547 /*
e84e40be
S
548 * Process whether use event mode, init default non-zero
549 * After the event queue of cmd event ready,
550 * can switch into event mode
551 * close device, switch into poll mode(non event mode)
552 */
9a443537 553 u8 use_events;
554 u8 toggle;
555};
556
bfcc681b
SX
557struct hns_roce_cmd_mailbox {
558 void *buf;
559 dma_addr_t dma;
560};
561
9a443537 562struct hns_roce_dev;
563
0009c2db 564struct hns_roce_rinl_sge {
565 void *addr;
566 u32 len;
567};
568
569struct hns_roce_rinl_wqe {
570 struct hns_roce_rinl_sge *sg_list;
571 u32 sge_cnt;
572};
573
574struct hns_roce_rinl_buf {
575 struct hns_roce_rinl_wqe *wqe_list;
576 u32 wqe_cnt;
577};
578
9a443537 579struct hns_roce_qp {
580 struct ib_qp ibqp;
581 struct hns_roce_buf hr_buf;
582 struct hns_roce_wq rq;
e088a685 583 struct hns_roce_db rdb;
0425e3e6 584 struct hns_roce_db sdb;
e088a685 585 u8 rdb_en;
0425e3e6 586 u8 sdb_en;
8b9b8d14 587 u32 doorbell_qpn;
9a443537 588 __le32 sq_signal_bits;
589 u32 sq_next_wqe;
590 int sq_max_wqes_per_wr;
591 int sq_spare_wqes;
592 struct hns_roce_wq sq;
593
594 struct ib_umem *umem;
595 struct hns_roce_mtt mtt;
596 u32 buff_size;
597 struct mutex mutex;
598 u8 port;
7716809e 599 u8 phy_port;
9a443537 600 u8 sl;
601 u8 resp_depth;
602 u8 state;
603 u32 access_flags;
ace1c541 604 u32 atomic_rd_en;
9a443537 605 u32 pkey_index;
0fa95a9a 606 u32 qkey;
fd012f1c 607 void (*event)(struct hns_roce_qp *qp,
608 enum hns_roce_event event_type);
9a443537 609 unsigned long qpn;
610
611 atomic_t refcount;
612 struct completion free;
926a01dc
WHX
613
614 struct hns_roce_sge sge;
615 u32 next_sge;
0009c2db 616
617 struct hns_roce_rinl_buf rq_inl_buf;
9a443537 618};
619
620struct hns_roce_sqp {
621 struct hns_roce_qp hr_qp;
622};
623
624struct hns_roce_ib_iboe {
625 spinlock_t lock;
626 struct net_device *netdevs[HNS_ROCE_MAX_PORTS];
627 struct notifier_block nb;
9a443537 628 u8 phy_port[HNS_ROCE_MAX_PORTS];
629};
630
b16f8188
YL
631enum {
632 HNS_ROCE_EQ_STAT_INVALID = 0,
633 HNS_ROCE_EQ_STAT_VALID = 2,
634};
635
636struct hns_roce_ceqe {
637 u32 comp;
638};
639
640struct hns_roce_aeqe {
0576cbde 641 __le32 asyn;
b16f8188
YL
642 union {
643 struct {
0576cbde 644 __le32 qp;
b16f8188
YL
645 u32 rsv0;
646 u32 rsv1;
647 } qp_event;
648
81fce629
LO
649 struct {
650 __le32 srq;
651 u32 rsv0;
652 u32 rsv1;
653 } srq_event;
654
b16f8188 655 struct {
0576cbde 656 __le32 cq;
b16f8188
YL
657 u32 rsv0;
658 u32 rsv1;
659 } cq_event;
660
661 struct {
0576cbde 662 __le32 ceqe;
b16f8188
YL
663 u32 rsv0;
664 u32 rsv1;
665 } ce_event;
666
667 struct {
668 __le64 out_param;
669 __le16 token;
670 u8 status;
671 u8 rsv0;
672 } __packed cmd;
673 } event;
674};
675
9a443537 676struct hns_roce_eq {
677 struct hns_roce_dev *hr_dev;
678 void __iomem *doorbell;
679
680 int type_flag;/* Aeq:1 ceq:0 */
681 int eqn;
682 u32 entries;
683 int log_entries;
684 int eqe_size;
685 int irq;
686 int log_page_size;
687 int cons_index;
688 struct hns_roce_buf_list *buf_list;
a5073d60
YL
689 int over_ignore;
690 int coalesce;
691 int arm_st;
692 u64 eqe_ba;
693 int eqe_ba_pg_sz;
694 int eqe_buf_pg_sz;
695 int hop_num;
696 u64 *bt_l0; /* Base address table for L0 */
697 u64 **bt_l1; /* Base address table for L1 */
698 u64 **buf;
699 dma_addr_t l0_dma;
700 dma_addr_t *l1_dma;
701 dma_addr_t *buf_dma;
702 u32 l0_last_num; /* L0 last chunk num */
703 u32 l1_last_num; /* L1 last chunk num */
704 int eq_max_cnt;
705 int eq_period;
706 int shift;
707 dma_addr_t cur_eqe_ba;
708 dma_addr_t nxt_eqe_ba;
0425e3e6
YL
709 int event_type;
710 int sub_type;
9a443537 711};
712
713struct hns_roce_eq_table {
714 struct hns_roce_eq *eq;
b16f8188 715 void __iomem **eqc_base; /* only for hw v1 */
9a443537 716};
717
718struct hns_roce_caps {
3a63c964 719 u64 fw_ver;
9a443537 720 u8 num_ports;
721 int gid_table_len[HNS_ROCE_MAX_PORTS];
722 int pkey_table_len[HNS_ROCE_MAX_PORTS];
723 int local_ca_ack_delay;
724 int num_uars;
725 u32 phy_num_uars;
726 u32 max_sq_sg; /* 2 */
727 u32 max_sq_inline; /* 32 */
728 u32 max_rq_sg; /* 2 */
05ad5482 729 u32 max_extend_sg;
9a443537 730 int num_qps; /* 256k */
06ef0ee4 731 int reserved_qps;
5c1f167a
LO
732 u32 max_srq_sg;
733 int num_srqs;
9a443537 734 u32 max_wqes; /* 16k */
d16da119
LO
735 u32 max_srqs;
736 u32 max_srq_wrs;
737 u32 max_srq_sges;
9a443537 738 u32 max_sq_desc_sz; /* 64 */
739 u32 max_rq_desc_sz; /* 64 */
cfc85f3e 740 u32 max_srq_desc_sz;
9a443537 741 int max_qp_init_rdma;
742 int max_qp_dest_rdma;
9a443537 743 int num_cqs;
744 int max_cqes;
93aa2187 745 int min_cqes;
926a01dc 746 u32 min_wqes;
9a443537 747 int reserved_cqs;
5c1f167a
LO
748 int reserved_srqs;
749 u32 max_srqwqes;
9a443537 750 int num_aeq_vectors; /* 1 */
a5073d60 751 int num_comp_vectors;
9a443537 752 int num_other_vectors;
753 int num_mtpts;
754 u32 num_mtt_segs;
cfc85f3e 755 u32 num_cqe_segs;
5c1f167a
LO
756 u32 num_srqwqe_segs;
757 u32 num_idx_segs;
9a443537 758 int reserved_mrws;
759 int reserved_uars;
760 int num_pds;
761 int reserved_pds;
762 u32 mtt_entry_sz;
763 u32 cq_entry_sz;
764 u32 page_size_cap;
765 u32 reserved_lkey;
766 int mtpt_entry_sz;
767 int qpc_entry_sz;
768 int irrl_entry_sz;
e92f2c18 769 int trrl_entry_sz;
9a443537 770 int cqc_entry_sz;
5c1f167a
LO
771 int srqc_entry_sz;
772 int idx_entry_sz;
ff795f71
WHX
773 u32 pbl_ba_pg_sz;
774 u32 pbl_buf_pg_sz;
775 u32 pbl_hop_num;
9a443537 776 int aeqe_depth;
b16f8188 777 int ceqe_depth;
9a443537 778 enum ib_mtu max_mtu;
cfc85f3e
WHX
779 u32 qpc_bt_num;
780 u32 srqc_bt_num;
781 u32 cqc_bt_num;
782 u32 mpt_bt_num;
a25d13cb
SX
783 u32 qpc_ba_pg_sz;
784 u32 qpc_buf_pg_sz;
785 u32 qpc_hop_num;
786 u32 srqc_ba_pg_sz;
787 u32 srqc_buf_pg_sz;
788 u32 srqc_hop_num;
789 u32 cqc_ba_pg_sz;
790 u32 cqc_buf_pg_sz;
791 u32 cqc_hop_num;
792 u32 mpt_ba_pg_sz;
793 u32 mpt_buf_pg_sz;
794 u32 mpt_hop_num;
6a93c77a
SX
795 u32 mtt_ba_pg_sz;
796 u32 mtt_buf_pg_sz;
797 u32 mtt_hop_num;
798 u32 cqe_ba_pg_sz;
799 u32 cqe_buf_pg_sz;
800 u32 cqe_hop_num;
c7bcb134
LO
801 u32 srqwqe_ba_pg_sz;
802 u32 srqwqe_buf_pg_sz;
803 u32 srqwqe_hop_num;
804 u32 idx_ba_pg_sz;
805 u32 idx_buf_pg_sz;
806 u32 idx_hop_num;
a5073d60
YL
807 u32 eqe_ba_pg_sz;
808 u32 eqe_buf_pg_sz;
809 u32 eqe_hop_num;
6b63597d 810 u32 sl_num;
811 u32 tsq_buf_pg_sz;
ded58ff9 812 u32 tpq_buf_pg_sz;
29a1fe5d 813 u32 chunk_sz; /* chunk size in non multihop mode*/
a2c80b7b 814 u64 flags;
9a443537 815};
816
0425e3e6
YL
817struct hns_roce_work {
818 struct hns_roce_dev *hr_dev;
819 struct work_struct work;
820 u32 qpn;
b00a92c8 821 u32 cqn;
0425e3e6
YL
822 int event_type;
823 int sub_type;
824};
825
9a443537 826struct hns_roce_hw {
827 int (*reset)(struct hns_roce_dev *hr_dev, bool enable);
a04ff739
WHX
828 int (*cmq_init)(struct hns_roce_dev *hr_dev);
829 void (*cmq_exit)(struct hns_roce_dev *hr_dev);
cfc85f3e 830 int (*hw_profile)(struct hns_roce_dev *hr_dev);
9a443537 831 int (*hw_init)(struct hns_roce_dev *hr_dev);
832 void (*hw_exit)(struct hns_roce_dev *hr_dev);
a680f2f3
WHX
833 int (*post_mbox)(struct hns_roce_dev *hr_dev, u64 in_param,
834 u64 out_param, u32 in_modifier, u8 op_modifier, u16 op,
835 u16 token, int event);
836 int (*chk_mbox)(struct hns_roce_dev *hr_dev, unsigned long timeout);
b5ff0f61 837 int (*set_gid)(struct hns_roce_dev *hr_dev, u8 port, int gid_index,
f4df9a7c 838 const union ib_gid *gid, const struct ib_gid_attr *attr);
a74dc41d 839 int (*set_mac)(struct hns_roce_dev *hr_dev, u8 phy_port, u8 *addr);
9a443537 840 void (*set_mtu)(struct hns_roce_dev *hr_dev, u8 phy_port,
841 enum ib_mtu mtu);
842 int (*write_mtpt)(void *mb_buf, struct hns_roce_mr *mr,
843 unsigned long mtpt_idx);
a2c80b7b
WHX
844 int (*rereg_write_mtpt)(struct hns_roce_dev *hr_dev,
845 struct hns_roce_mr *mr, int flags, u32 pdn,
846 int mr_access_flags, u64 iova, u64 size,
847 void *mb_buf);
68a997c5 848 int (*frmr_write_mtpt)(void *mb_buf, struct hns_roce_mr *mr);
c7c28191 849 int (*mw_write_mtpt)(void *mb_buf, struct hns_roce_mw *mw);
9a443537 850 void (*write_cqc)(struct hns_roce_dev *hr_dev,
851 struct hns_roce_cq *hr_cq, void *mb_buf, u64 *mtts,
852 dma_addr_t dma_handle, int nent, u32 vector);
a25d13cb
SX
853 int (*set_hem)(struct hns_roce_dev *hr_dev,
854 struct hns_roce_hem_table *table, int obj, int step_idx);
97f0e39f 855 int (*clear_hem)(struct hns_roce_dev *hr_dev,
a25d13cb
SX
856 struct hns_roce_hem_table *table, int obj,
857 int step_idx);
9a443537 858 int (*query_qp)(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr,
859 int qp_attr_mask, struct ib_qp_init_attr *qp_init_attr);
860 int (*modify_qp)(struct ib_qp *ibqp, const struct ib_qp_attr *attr,
861 int attr_mask, enum ib_qp_state cur_state,
862 enum ib_qp_state new_state);
863 int (*destroy_qp)(struct ib_qp *ibqp);
d34ac5cd
BVA
864 int (*post_send)(struct ib_qp *ibqp, const struct ib_send_wr *wr,
865 const struct ib_send_wr **bad_wr);
866 int (*post_recv)(struct ib_qp *qp, const struct ib_recv_wr *recv_wr,
867 const struct ib_recv_wr **bad_recv_wr);
9a443537 868 int (*req_notify_cq)(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
869 int (*poll_cq)(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
bfcc681b 870 int (*dereg_mr)(struct hns_roce_dev *hr_dev, struct hns_roce_mr *mr);
afb6b092 871 int (*destroy_cq)(struct ib_cq *ibcq);
b156269d 872 int (*modify_cq)(struct ib_cq *cq, u16 cq_count, u16 cq_period);
b16f8188
YL
873 int (*init_eq)(struct hns_roce_dev *hr_dev);
874 void (*cleanup_eq)(struct hns_roce_dev *hr_dev);
c7bcb134
LO
875 void (*write_srqc)(struct hns_roce_dev *hr_dev,
876 struct hns_roce_srq *srq, u32 pdn, u16 xrcd, u32 cqn,
877 void *mb_buf, u64 *mtts_wqe, u64 *mtts_idx,
878 dma_addr_t dma_handle_wqe,
879 dma_addr_t dma_handle_idx);
880 int (*modify_srq)(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr,
881 enum ib_srq_attr_mask srq_attr_mask,
882 struct ib_udata *udata);
883 int (*query_srq)(struct ib_srq *ibsrq, struct ib_srq_attr *attr);
884 int (*post_srq_recv)(struct ib_srq *ibsrq, const struct ib_recv_wr *wr,
885 const struct ib_recv_wr **bad_wr);
7f645a58
KH
886 const struct ib_device_ops *hns_roce_dev_ops;
887 const struct ib_device_ops *hns_roce_dev_srq_ops;
9a443537 888};
889
890struct hns_roce_dev {
891 struct ib_device ib_dev;
892 struct platform_device *pdev;
dd74282d
WHX
893 struct pci_dev *pci_dev;
894 struct device *dev;
9a443537 895 struct hns_roce_uar priv_uar;
528f1deb 896 const char *irq_names[HNS_ROCE_MAX_IRQ_NUM];
9a443537 897 spinlock_t sm_lock;
9a443537 898 spinlock_t bt_cmd_lock;
cb7a94c9
WHX
899 bool active;
900 bool is_reset;
9a443537 901 struct hns_roce_ib_iboe iboe;
902
472bc0fb
YL
903 struct list_head pgdir_list;
904 struct mutex pgdir_mutex;
9a443537 905 int irq[HNS_ROCE_MAX_IRQ_NUM];
906 u8 __iomem *reg_base;
907 struct hns_roce_caps caps;
908 struct radix_tree_root qp_table_tree;
909
910 unsigned char dev_addr[HNS_ROCE_MAX_PORTS][MAC_ADDR_OCTET_NUM];
911 u64 sys_image_guid;
912 u32 vendor_id;
913 u32 vendor_part_id;
914 u32 hw_rev;
915 void __iomem *priv_addr;
916
917 struct hns_roce_cmdq cmd;
918 struct hns_roce_bitmap pd_bitmap;
919 struct hns_roce_uar_table uar_table;
920 struct hns_roce_mr_table mr_table;
921 struct hns_roce_cq_table cq_table;
5c1f167a 922 struct hns_roce_srq_table srq_table;
9a443537 923 struct hns_roce_qp_table qp_table;
924 struct hns_roce_eq_table eq_table;
925
926 int cmd_mod;
927 int loop_idc;
2d407888
WHX
928 u32 sdb_offset;
929 u32 odb_offset;
8f3e9f3e
WHX
930 dma_addr_t tptr_dma_addr; /*only for hw v1*/
931 u32 tptr_size; /*only for hw v1*/
08805fdb 932 const struct hns_roce_hw *hw;
016a0059 933 void *priv;
0425e3e6 934 struct workqueue_struct *irq_workq;
9a443537 935};
936
937static inline struct hns_roce_dev *to_hr_dev(struct ib_device *ib_dev)
938{
939 return container_of(ib_dev, struct hns_roce_dev, ib_dev);
940}
941
942static inline struct hns_roce_ucontext
943 *to_hr_ucontext(struct ib_ucontext *ibucontext)
944{
945 return container_of(ibucontext, struct hns_roce_ucontext, ibucontext);
946}
947
948static inline struct hns_roce_pd *to_hr_pd(struct ib_pd *ibpd)
949{
950 return container_of(ibpd, struct hns_roce_pd, ibpd);
951}
952
953static inline struct hns_roce_ah *to_hr_ah(struct ib_ah *ibah)
954{
955 return container_of(ibah, struct hns_roce_ah, ibah);
956}
957
958static inline struct hns_roce_mr *to_hr_mr(struct ib_mr *ibmr)
959{
960 return container_of(ibmr, struct hns_roce_mr, ibmr);
961}
962
c7c28191
YL
963static inline struct hns_roce_mw *to_hr_mw(struct ib_mw *ibmw)
964{
965 return container_of(ibmw, struct hns_roce_mw, ibmw);
966}
967
9a443537 968static inline struct hns_roce_qp *to_hr_qp(struct ib_qp *ibqp)
969{
970 return container_of(ibqp, struct hns_roce_qp, ibqp);
971}
972
973static inline struct hns_roce_cq *to_hr_cq(struct ib_cq *ib_cq)
974{
975 return container_of(ib_cq, struct hns_roce_cq, ib_cq);
976}
977
978static inline struct hns_roce_srq *to_hr_srq(struct ib_srq *ibsrq)
979{
980 return container_of(ibsrq, struct hns_roce_srq, ibsrq);
981}
982
983static inline struct hns_roce_sqp *hr_to_hr_sqp(struct hns_roce_qp *hr_qp)
984{
985 return container_of(hr_qp, struct hns_roce_sqp, hr_qp);
986}
987
0576cbde 988static inline void hns_roce_write64_k(__le32 val[2], void __iomem *dest)
9a443537 989{
990 __raw_writeq(*(u64 *) val, dest);
991}
992
993static inline struct hns_roce_qp
994 *__hns_roce_qp_lookup(struct hns_roce_dev *hr_dev, u32 qpn)
995{
996 return radix_tree_lookup(&hr_dev->qp_table_tree,
997 qpn & (hr_dev->caps.num_qps - 1));
998}
999
1000static inline void *hns_roce_buf_offset(struct hns_roce_buf *buf, int offset)
1001{
9a8982dc 1002 u32 page_size = 1 << buf->page_shift;
9a443537 1003
b1c15835 1004 if (buf->nbufs == 1)
9a443537 1005 return (char *)(buf->direct.buf) + offset;
1006 else
9a8982dc
WHX
1007 return (char *)(buf->page_list[offset >> buf->page_shift].buf) +
1008 (offset & (page_size - 1));
9a443537 1009}
1010
1011int hns_roce_init_uar_table(struct hns_roce_dev *dev);
1012int hns_roce_uar_alloc(struct hns_roce_dev *dev, struct hns_roce_uar *uar);
1013void hns_roce_uar_free(struct hns_roce_dev *dev, struct hns_roce_uar *uar);
1014void hns_roce_cleanup_uar_table(struct hns_roce_dev *dev);
1015
1016int hns_roce_cmd_init(struct hns_roce_dev *hr_dev);
1017void hns_roce_cmd_cleanup(struct hns_roce_dev *hr_dev);
1018void hns_roce_cmd_event(struct hns_roce_dev *hr_dev, u16 token, u8 status,
1019 u64 out_param);
1020int hns_roce_cmd_use_events(struct hns_roce_dev *hr_dev);
1021void hns_roce_cmd_use_polling(struct hns_roce_dev *hr_dev);
1022
1023int hns_roce_mtt_init(struct hns_roce_dev *hr_dev, int npages, int page_shift,
1024 struct hns_roce_mtt *mtt);
1025void hns_roce_mtt_cleanup(struct hns_roce_dev *hr_dev,
1026 struct hns_roce_mtt *mtt);
1027int hns_roce_buf_write_mtt(struct hns_roce_dev *hr_dev,
1028 struct hns_roce_mtt *mtt, struct hns_roce_buf *buf);
1029
1030int hns_roce_init_pd_table(struct hns_roce_dev *hr_dev);
1031int hns_roce_init_mr_table(struct hns_roce_dev *hr_dev);
1032int hns_roce_init_eq_table(struct hns_roce_dev *hr_dev);
1033int hns_roce_init_cq_table(struct hns_roce_dev *hr_dev);
1034int hns_roce_init_qp_table(struct hns_roce_dev *hr_dev);
5c1f167a 1035int hns_roce_init_srq_table(struct hns_roce_dev *hr_dev);
9a443537 1036
1037void hns_roce_cleanup_pd_table(struct hns_roce_dev *hr_dev);
1038void hns_roce_cleanup_mr_table(struct hns_roce_dev *hr_dev);
1039void hns_roce_cleanup_eq_table(struct hns_roce_dev *hr_dev);
1040void hns_roce_cleanup_cq_table(struct hns_roce_dev *hr_dev);
1041void hns_roce_cleanup_qp_table(struct hns_roce_dev *hr_dev);
5c1f167a 1042void hns_roce_cleanup_srq_table(struct hns_roce_dev *hr_dev);
9a443537 1043
1044int hns_roce_bitmap_alloc(struct hns_roce_bitmap *bitmap, unsigned long *obj);
5e6ff78a
WHX
1045void hns_roce_bitmap_free(struct hns_roce_bitmap *bitmap, unsigned long obj,
1046 int rr);
9a443537 1047int hns_roce_bitmap_init(struct hns_roce_bitmap *bitmap, u32 num, u32 mask,
1048 u32 reserved_bot, u32 resetrved_top);
1049void hns_roce_bitmap_cleanup(struct hns_roce_bitmap *bitmap);
1050void hns_roce_cleanup_bitmap(struct hns_roce_dev *hr_dev);
1051int hns_roce_bitmap_alloc_range(struct hns_roce_bitmap *bitmap, int cnt,
1052 int align, unsigned long *obj);
1053void hns_roce_bitmap_free_range(struct hns_roce_bitmap *bitmap,
5e6ff78a
WHX
1054 unsigned long obj, int cnt,
1055 int rr);
9a443537 1056
90898850
DC
1057struct ib_ah *hns_roce_create_ah(struct ib_pd *pd,
1058 struct rdma_ah_attr *ah_attr,
b090c4e3 1059 u32 flags,
477864c8 1060 struct ib_udata *udata);
90898850 1061int hns_roce_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr);
2553ba21 1062int hns_roce_destroy_ah(struct ib_ah *ah, u32 flags);
9a443537 1063
1064struct ib_pd *hns_roce_alloc_pd(struct ib_device *ib_dev,
1065 struct ib_ucontext *context,
1066 struct ib_udata *udata);
1067int hns_roce_dealloc_pd(struct ib_pd *pd);
1068
1069struct ib_mr *hns_roce_get_dma_mr(struct ib_pd *pd, int acc);
1070struct ib_mr *hns_roce_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
1071 u64 virt_addr, int access_flags,
1072 struct ib_udata *udata);
a2c80b7b
WHX
1073int hns_roce_rereg_user_mr(struct ib_mr *mr, int flags, u64 start, u64 length,
1074 u64 virt_addr, int mr_access_flags, struct ib_pd *pd,
1075 struct ib_udata *udata);
68a997c5
YL
1076struct ib_mr *hns_roce_alloc_mr(struct ib_pd *pd, enum ib_mr_type mr_type,
1077 u32 max_num_sg);
1078int hns_roce_map_mr_sg(struct ib_mr *ibmr, struct scatterlist *sg, int sg_nents,
1079 unsigned int *sg_offset);
9a443537 1080int hns_roce_dereg_mr(struct ib_mr *ibmr);
bfcc681b
SX
1081int hns_roce_hw2sw_mpt(struct hns_roce_dev *hr_dev,
1082 struct hns_roce_cmd_mailbox *mailbox,
1083 unsigned long mpt_index);
1084unsigned long key_to_hw_index(u32 key);
9a443537 1085
c7c28191
YL
1086struct ib_mw *hns_roce_alloc_mw(struct ib_pd *pd, enum ib_mw_type,
1087 struct ib_udata *udata);
1088int hns_roce_dealloc_mw(struct ib_mw *ibmw);
1089
9a443537 1090void hns_roce_buf_free(struct hns_roce_dev *hr_dev, u32 size,
1091 struct hns_roce_buf *buf);
1092int hns_roce_buf_alloc(struct hns_roce_dev *hr_dev, u32 size, u32 max_direct,
9a8982dc 1093 struct hns_roce_buf *buf, u32 page_shift);
9a443537 1094
1095int hns_roce_ib_umem_write_mtt(struct hns_roce_dev *hr_dev,
1096 struct hns_roce_mtt *mtt, struct ib_umem *umem);
1097
c7bcb134
LO
1098struct ib_srq *hns_roce_create_srq(struct ib_pd *pd,
1099 struct ib_srq_init_attr *srq_init_attr,
1100 struct ib_udata *udata);
1101int hns_roce_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr,
1102 enum ib_srq_attr_mask srq_attr_mask,
1103 struct ib_udata *udata);
1104int hns_roce_destroy_srq(struct ib_srq *ibsrq);
1105
9a443537 1106struct ib_qp *hns_roce_create_qp(struct ib_pd *ib_pd,
1107 struct ib_qp_init_attr *init_attr,
1108 struct ib_udata *udata);
1109int hns_roce_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1110 int attr_mask, struct ib_udata *udata);
1111void *get_recv_wqe(struct hns_roce_qp *hr_qp, int n);
1112void *get_send_wqe(struct hns_roce_qp *hr_qp, int n);
926a01dc 1113void *get_send_extend_sge(struct hns_roce_qp *hr_qp, int n);
9a443537 1114bool hns_roce_wq_overflow(struct hns_roce_wq *hr_wq, int nreq,
1115 struct ib_cq *ib_cq);
1116enum hns_roce_qp_state to_hns_roce_state(enum ib_qp_state state);
1117void hns_roce_lock_cqs(struct hns_roce_cq *send_cq,
1118 struct hns_roce_cq *recv_cq);
1119void hns_roce_unlock_cqs(struct hns_roce_cq *send_cq,
1120 struct hns_roce_cq *recv_cq);
1121void hns_roce_qp_remove(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp);
1122void hns_roce_qp_free(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp);
1123void hns_roce_release_range_qp(struct hns_roce_dev *hr_dev, int base_qpn,
1124 int cnt);
f696bf6d 1125__be32 send_ieth(const struct ib_send_wr *wr);
9a443537 1126int to_hr_qp_type(int qp_type);
1127
1128struct ib_cq *hns_roce_ib_create_cq(struct ib_device *ib_dev,
1129 const struct ib_cq_init_attr *attr,
1130 struct ib_ucontext *context,
1131 struct ib_udata *udata);
1132
1133int hns_roce_ib_destroy_cq(struct ib_cq *ib_cq);
afb6b092 1134void hns_roce_free_cq(struct hns_roce_dev *hr_dev, struct hns_roce_cq *hr_cq);
9a443537 1135
b0ea0fa5
JG
1136int hns_roce_db_map_user(struct hns_roce_ucontext *context,
1137 struct ib_udata *udata, unsigned long virt,
e088a685
YL
1138 struct hns_roce_db *db);
1139void hns_roce_db_unmap_user(struct hns_roce_ucontext *context,
1140 struct hns_roce_db *db);
472bc0fb
YL
1141int hns_roce_alloc_db(struct hns_roce_dev *hr_dev, struct hns_roce_db *db,
1142 int order);
1143void hns_roce_free_db(struct hns_roce_dev *hr_dev, struct hns_roce_db *db);
1144
9a443537 1145void hns_roce_cq_completion(struct hns_roce_dev *hr_dev, u32 cqn);
1146void hns_roce_cq_event(struct hns_roce_dev *hr_dev, u32 cqn, int event_type);
1147void hns_roce_qp_event(struct hns_roce_dev *hr_dev, u32 qpn, int event_type);
81fce629 1148void hns_roce_srq_event(struct hns_roce_dev *hr_dev, u32 srqn, int event_type);
9a443537 1149int hns_get_gid_index(struct hns_roce_dev *hr_dev, u8 port, int gid_index);
08805fdb
WHX
1150int hns_roce_init(struct hns_roce_dev *hr_dev);
1151void hns_roce_exit(struct hns_roce_dev *hr_dev);
9a443537 1152
1153#endif /* _HNS_ROCE_DEVICE_H */