]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/infiniband/hw/hns/hns_roce_device.h
IB: Pass uverbs_attr_bundle down ib_x destroy path
[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),
aa84fa18 205 HNS_ROCE_CAP_FLAG_QP_FLOW_CTRL = BIT(9),
384f8818 206 HNS_ROCE_CAP_FLAG_ATOMIC = BIT(10),
a2c80b7b
WHX
207};
208
9766edc3 209enum hns_roce_mtt_type {
400d324a 210 MTT_TYPE_WQE,
9766edc3 211 MTT_TYPE_CQE,
5c1f167a
LO
212 MTT_TYPE_SRQWQE,
213 MTT_TYPE_IDX
9766edc3
SX
214};
215
e088a685
YL
216enum {
217 HNS_ROCE_DB_PER_PAGE = PAGE_SIZE / 4
218};
219
d061effc
WHX
220enum hns_roce_reset_stage {
221 HNS_ROCE_STATE_NON_RST,
222 HNS_ROCE_STATE_RST_BEF_DOWN,
223 HNS_ROCE_STATE_RST_DOWN,
224 HNS_ROCE_STATE_RST_UNINIT,
225 HNS_ROCE_STATE_RST_INIT,
226 HNS_ROCE_STATE_RST_INITED,
227};
228
229enum hns_roce_instance_state {
230 HNS_ROCE_STATE_NON_INIT,
231 HNS_ROCE_STATE_INIT,
232 HNS_ROCE_STATE_INITED,
233 HNS_ROCE_STATE_UNINIT,
234};
235
236enum {
237 HNS_ROCE_RST_DIRECT_RETURN = 0,
238};
239
6a04aed6
WHX
240enum {
241 CMD_RST_PRC_OTHERS,
242 CMD_RST_PRC_SUCCESS,
243 CMD_RST_PRC_EBUSY,
244};
245
9a443537 246#define HNS_ROCE_CMD_SUCCESS 1
247
248#define HNS_ROCE_PORT_DOWN 0
249#define HNS_ROCE_PORT_UP 1
250
251#define HNS_ROCE_MTT_ENTRY_PER_SEG 8
252
253#define PAGE_ADDR_SHIFT 12
254
255struct hns_roce_uar {
256 u64 pfn;
257 unsigned long index;
5b6eb54f 258 unsigned long logic_idx;
9a443537 259};
260
261struct hns_roce_ucontext {
262 struct ib_ucontext ibucontext;
263 struct hns_roce_uar uar;
e088a685
YL
264 struct list_head page_list;
265 struct mutex page_mutex;
9a443537 266};
267
268struct hns_roce_pd {
269 struct ib_pd ibpd;
270 unsigned long pdn;
271};
272
273struct hns_roce_bitmap {
274 /* Bitmap Traversal last a bit which is 1 */
275 unsigned long last;
276 unsigned long top;
277 unsigned long max;
278 unsigned long reserved_top;
279 unsigned long mask;
280 spinlock_t lock;
281 unsigned long *table;
282};
283
284/* Order bitmap length -- bit num compute formula: 1 << (max_order - order) */
285/* Order = 0: bitmap is biggest, order = max bitmap is least (only a bit) */
286/* Every bit repesent to a partner free/used status in bitmap */
287/*
e84e40be
S
288 * Initial, bits of other bitmap are all 0 except that a bit of max_order is 1
289 * Bit = 1 represent to idle and available; bit = 0: not available
290 */
9a443537 291struct hns_roce_buddy {
292 /* Members point to every order level bitmap */
293 unsigned long **bits;
294 /* Represent to avail bits of the order level bitmap */
295 u32 *num_free;
296 int max_order;
297 spinlock_t lock;
298};
299
300/* For Hardware Entry Memory */
301struct hns_roce_hem_table {
302 /* HEM type: 0 = qpc, 1 = mtt, 2 = cqc, 3 = srq, 4 = other */
303 u32 type;
304 /* HEM array elment num */
305 unsigned long num_hem;
306 /* HEM entry record obj total num */
307 unsigned long num_obj;
308 /*Single obj size */
309 unsigned long obj_size;
29a1fe5d 310 unsigned long table_chunk_size;
9a443537 311 int lowmem;
312 struct mutex mutex;
313 struct hns_roce_hem **hem;
a25d13cb
SX
314 u64 **bt_l1;
315 dma_addr_t *bt_l1_dma_addr;
316 u64 **bt_l0;
317 dma_addr_t *bt_l0_dma_addr;
9a443537 318};
319
320struct hns_roce_mtt {
9766edc3
SX
321 unsigned long first_seg;
322 int order;
323 int page_shift;
324 enum hns_roce_mtt_type mtt_type;
9a443537 325};
326
c7c28191
YL
327struct hns_roce_mw {
328 struct ib_mw ibmw;
329 u32 pdn;
330 u32 rkey;
331 int enabled; /* MW's active status */
332 u32 pbl_hop_num;
333 u32 pbl_ba_pg_sz;
334 u32 pbl_buf_pg_sz;
335};
336
9a443537 337/* Only support 4K page size for mr register */
338#define MR_SIZE_4K 0
339
340struct hns_roce_mr {
341 struct ib_mr ibmr;
342 struct ib_umem *umem;
343 u64 iova; /* MR's virtual orignal addr */
344 u64 size; /* Address range of MR */
345 u32 key; /* Key of MR */
346 u32 pd; /* PD num of MR */
347 u32 access;/* Access permission of MR */
68a997c5 348 u32 npages;
9a443537 349 int enabled; /* MR's active status */
350 int type; /* MR's register type */
351 u64 *pbl_buf;/* MR's PBL space */
352 dma_addr_t pbl_dma_addr; /* MR's PBL space PA */
ff795f71
WHX
353 u32 pbl_size;/* PA number in the PBL */
354 u64 pbl_ba;/* page table address */
355 u32 l0_chunk_last_num;/* L0 last number */
356 u32 l1_chunk_last_num;/* L1 last number */
357 u64 **pbl_bt_l2;/* PBL BT L2 */
358 u64 **pbl_bt_l1;/* PBL BT L1 */
359 u64 *pbl_bt_l0;/* PBL BT L0 */
360 dma_addr_t *pbl_l2_dma_addr;/* PBL BT L2 dma addr */
361 dma_addr_t *pbl_l1_dma_addr;/* PBL BT L1 dma addr */
362 dma_addr_t pbl_l0_dma_addr;/* PBL BT L0 dma addr */
363 u32 pbl_ba_pg_sz;/* BT chunk page size */
364 u32 pbl_buf_pg_sz;/* buf chunk page size */
365 u32 pbl_hop_num;/* multi-hop number */
9a443537 366};
367
368struct hns_roce_mr_table {
369 struct hns_roce_bitmap mtpt_bitmap;
370 struct hns_roce_buddy mtt_buddy;
371 struct hns_roce_hem_table mtt_table;
372 struct hns_roce_hem_table mtpt_table;
9766edc3
SX
373 struct hns_roce_buddy mtt_cqe_buddy;
374 struct hns_roce_hem_table mtt_cqe_table;
5c1f167a
LO
375 struct hns_roce_buddy mtt_srqwqe_buddy;
376 struct hns_roce_hem_table mtt_srqwqe_table;
377 struct hns_roce_buddy mtt_idx_buddy;
378 struct hns_roce_hem_table mtt_idx_table;
9a443537 379};
380
381struct hns_roce_wq {
382 u64 *wrid; /* Work request ID */
383 spinlock_t lock;
384 int wqe_cnt; /* WQE num */
385 u32 max_post;
386 int max_gs;
387 int offset;
388 int wqe_shift;/* WQE size */
389 u32 head;
390 u32 tail;
391 void __iomem *db_reg_l;
392};
393
926a01dc
WHX
394struct hns_roce_sge {
395 int sge_cnt; /* SGE num */
396 int offset;
397 int sge_shift;/* SGE size */
398};
399
9a443537 400struct hns_roce_buf_list {
401 void *buf;
402 dma_addr_t map;
403};
404
405struct hns_roce_buf {
406 struct hns_roce_buf_list direct;
407 struct hns_roce_buf_list *page_list;
408 int nbufs;
409 u32 npages;
410 int page_shift;
411};
412
e088a685
YL
413struct hns_roce_db_pgdir {
414 struct list_head list;
415 DECLARE_BITMAP(order0, HNS_ROCE_DB_PER_PAGE);
416 DECLARE_BITMAP(order1, HNS_ROCE_DB_PER_PAGE / 2);
417 unsigned long *bits[2];
418 u32 *page;
419 dma_addr_t db_dma;
420};
421
422struct hns_roce_user_db_page {
423 struct list_head list;
424 struct ib_umem *umem;
425 unsigned long user_virt;
426 refcount_t refcount;
427};
428
429struct hns_roce_db {
430 u32 *db_record;
431 union {
432 struct hns_roce_db_pgdir *pgdir;
433 struct hns_roce_user_db_page *user_page;
434 } u;
435 dma_addr_t dma;
0425e3e6 436 void *virt_addr;
e088a685
YL
437 int index;
438 int order;
439};
440
9a443537 441struct hns_roce_cq_buf {
442 struct hns_roce_buf hr_buf;
443 struct hns_roce_mtt hr_mtt;
444};
445
9a443537 446struct hns_roce_cq {
447 struct ib_cq ib_cq;
448 struct hns_roce_cq_buf hr_buf;
9b44703d
YL
449 struct hns_roce_db db;
450 u8 db_en;
9a443537 451 spinlock_t lock;
9a443537 452 struct ib_umem *umem;
fd012f1c 453 void (*comp)(struct hns_roce_cq *cq);
454 void (*event)(struct hns_roce_cq *cq, enum hns_roce_event event_type);
9a443537 455
456 struct hns_roce_uar *uar;
457 u32 cq_depth;
458 u32 cons_index;
86188a88 459 u32 *set_ci_db;
9a443537 460 void __iomem *cq_db_l;
8f3e9f3e 461 u16 *tptr_addr;
26beb85f 462 int arm_sn;
9a443537 463 unsigned long cqn;
464 u32 vector;
465 atomic_t refcount;
466 struct completion free;
467};
468
c7bcb134
LO
469struct hns_roce_idx_que {
470 struct hns_roce_buf idx_buf;
471 int entry_sz;
472 u32 buf_size;
473 struct ib_umem *umem;
474 struct hns_roce_mtt mtt;
475 u64 *bitmap;
476};
477
9a443537 478struct hns_roce_srq {
479 struct ib_srq ibsrq;
c7bcb134
LO
480 void (*event)(struct hns_roce_srq *srq, enum hns_roce_event event);
481 unsigned long srqn;
482 int max;
483 int max_gs;
484 int wqe_shift;
485 void __iomem *db_reg_l;
486
487 atomic_t refcount;
488 struct completion free;
489
490 struct hns_roce_buf buf;
491 u64 *wrid;
492 struct ib_umem *umem;
493 struct hns_roce_mtt mtt;
494 struct hns_roce_idx_que idx_que;
495 spinlock_t lock;
496 int head;
497 int tail;
498 u16 wqe_ctr;
499 struct mutex mutex;
9a443537 500};
501
502struct hns_roce_uar_table {
503 struct hns_roce_bitmap bitmap;
504};
505
506struct hns_roce_qp_table {
507 struct hns_roce_bitmap bitmap;
9a443537 508 struct hns_roce_hem_table qp_table;
509 struct hns_roce_hem_table irrl_table;
e92f2c18 510 struct hns_roce_hem_table trrl_table;
6a157f7d 511 struct hns_roce_hem_table sccc_table;
aa84fa18 512 struct mutex scc_mutex;
9a443537 513};
514
515struct hns_roce_cq_table {
516 struct hns_roce_bitmap bitmap;
27e19f45 517 struct xarray array;
9a443537 518 struct hns_roce_hem_table table;
519};
520
5c1f167a
LO
521struct hns_roce_srq_table {
522 struct hns_roce_bitmap bitmap;
523 struct xarray xa;
524 struct hns_roce_hem_table table;
525};
526
9a443537 527struct hns_roce_raq_table {
528 struct hns_roce_buf_list *e_raq_buf;
529};
530
531struct hns_roce_av {
532 __le32 port_pd;
533 u8 gid_index;
534 u8 stat_rate;
535 u8 hop_limit;
536 __le32 sl_tclass_flowlabel;
537 u8 dgid[HNS_ROCE_GID_SIZE];
538 u8 mac[6];
539 __le16 vlan;
8320deb8 540 bool vlan_en;
9a443537 541};
542
543struct hns_roce_ah {
544 struct ib_ah ibah;
545 struct hns_roce_av av;
546};
547
548struct hns_roce_cmd_context {
549 struct completion done;
550 int result;
551 int next;
552 u64 out_param;
553 u16 token;
554};
555
556struct hns_roce_cmdq {
557 struct dma_pool *pool;
9a443537 558 struct mutex hcr_mutex;
559 struct semaphore poll_sem;
560 /*
e84e40be
S
561 * Event mode: cmd register mutex protection,
562 * ensure to not exceed max_cmds and user use limit region
563 */
9a443537 564 struct semaphore event_sem;
565 int max_cmds;
566 spinlock_t context_lock;
567 int free_head;
568 struct hns_roce_cmd_context *context;
569 /*
e84e40be
S
570 * Result of get integer part
571 * which max_comds compute according a power of 2
572 */
9a443537 573 u16 token_mask;
574 /*
e84e40be
S
575 * Process whether use event mode, init default non-zero
576 * After the event queue of cmd event ready,
577 * can switch into event mode
578 * close device, switch into poll mode(non event mode)
579 */
9a443537 580 u8 use_events;
581 u8 toggle;
582};
583
bfcc681b
SX
584struct hns_roce_cmd_mailbox {
585 void *buf;
586 dma_addr_t dma;
587};
588
9a443537 589struct hns_roce_dev;
590
0009c2db 591struct hns_roce_rinl_sge {
592 void *addr;
593 u32 len;
594};
595
596struct hns_roce_rinl_wqe {
597 struct hns_roce_rinl_sge *sg_list;
598 u32 sge_cnt;
599};
600
601struct hns_roce_rinl_buf {
602 struct hns_roce_rinl_wqe *wqe_list;
603 u32 wqe_cnt;
604};
605
9a443537 606struct hns_roce_qp {
607 struct ib_qp ibqp;
608 struct hns_roce_buf hr_buf;
609 struct hns_roce_wq rq;
e088a685 610 struct hns_roce_db rdb;
0425e3e6 611 struct hns_roce_db sdb;
e088a685 612 u8 rdb_en;
0425e3e6 613 u8 sdb_en;
8b9b8d14 614 u32 doorbell_qpn;
9a443537 615 __le32 sq_signal_bits;
616 u32 sq_next_wqe;
617 int sq_max_wqes_per_wr;
618 int sq_spare_wqes;
619 struct hns_roce_wq sq;
620
621 struct ib_umem *umem;
622 struct hns_roce_mtt mtt;
623 u32 buff_size;
624 struct mutex mutex;
625 u8 port;
7716809e 626 u8 phy_port;
9a443537 627 u8 sl;
628 u8 resp_depth;
629 u8 state;
630 u32 access_flags;
ace1c541 631 u32 atomic_rd_en;
9a443537 632 u32 pkey_index;
0fa95a9a 633 u32 qkey;
fd012f1c 634 void (*event)(struct hns_roce_qp *qp,
635 enum hns_roce_event event_type);
9a443537 636 unsigned long qpn;
637
638 atomic_t refcount;
639 struct completion free;
926a01dc
WHX
640
641 struct hns_roce_sge sge;
642 u32 next_sge;
0009c2db 643
644 struct hns_roce_rinl_buf rq_inl_buf;
9a443537 645};
646
647struct hns_roce_sqp {
648 struct hns_roce_qp hr_qp;
649};
650
651struct hns_roce_ib_iboe {
652 spinlock_t lock;
653 struct net_device *netdevs[HNS_ROCE_MAX_PORTS];
654 struct notifier_block nb;
9a443537 655 u8 phy_port[HNS_ROCE_MAX_PORTS];
656};
657
b16f8188
YL
658enum {
659 HNS_ROCE_EQ_STAT_INVALID = 0,
660 HNS_ROCE_EQ_STAT_VALID = 2,
661};
662
663struct hns_roce_ceqe {
664 u32 comp;
665};
666
667struct hns_roce_aeqe {
0576cbde 668 __le32 asyn;
b16f8188
YL
669 union {
670 struct {
0576cbde 671 __le32 qp;
b16f8188
YL
672 u32 rsv0;
673 u32 rsv1;
674 } qp_event;
675
81fce629
LO
676 struct {
677 __le32 srq;
678 u32 rsv0;
679 u32 rsv1;
680 } srq_event;
681
b16f8188 682 struct {
0576cbde 683 __le32 cq;
b16f8188
YL
684 u32 rsv0;
685 u32 rsv1;
686 } cq_event;
687
688 struct {
0576cbde 689 __le32 ceqe;
b16f8188
YL
690 u32 rsv0;
691 u32 rsv1;
692 } ce_event;
693
694 struct {
695 __le64 out_param;
696 __le16 token;
697 u8 status;
698 u8 rsv0;
699 } __packed cmd;
700 } event;
701};
702
9a443537 703struct hns_roce_eq {
704 struct hns_roce_dev *hr_dev;
705 void __iomem *doorbell;
706
707 int type_flag;/* Aeq:1 ceq:0 */
708 int eqn;
709 u32 entries;
710 int log_entries;
711 int eqe_size;
712 int irq;
713 int log_page_size;
714 int cons_index;
715 struct hns_roce_buf_list *buf_list;
a5073d60
YL
716 int over_ignore;
717 int coalesce;
718 int arm_st;
719 u64 eqe_ba;
720 int eqe_ba_pg_sz;
721 int eqe_buf_pg_sz;
722 int hop_num;
723 u64 *bt_l0; /* Base address table for L0 */
724 u64 **bt_l1; /* Base address table for L1 */
725 u64 **buf;
726 dma_addr_t l0_dma;
727 dma_addr_t *l1_dma;
728 dma_addr_t *buf_dma;
729 u32 l0_last_num; /* L0 last chunk num */
730 u32 l1_last_num; /* L1 last chunk num */
731 int eq_max_cnt;
732 int eq_period;
733 int shift;
734 dma_addr_t cur_eqe_ba;
735 dma_addr_t nxt_eqe_ba;
0425e3e6
YL
736 int event_type;
737 int sub_type;
9a443537 738};
739
740struct hns_roce_eq_table {
741 struct hns_roce_eq *eq;
b16f8188 742 void __iomem **eqc_base; /* only for hw v1 */
9a443537 743};
744
745struct hns_roce_caps {
3a63c964 746 u64 fw_ver;
9a443537 747 u8 num_ports;
748 int gid_table_len[HNS_ROCE_MAX_PORTS];
749 int pkey_table_len[HNS_ROCE_MAX_PORTS];
750 int local_ca_ack_delay;
751 int num_uars;
752 u32 phy_num_uars;
753 u32 max_sq_sg; /* 2 */
754 u32 max_sq_inline; /* 32 */
755 u32 max_rq_sg; /* 2 */
05ad5482 756 u32 max_extend_sg;
9a443537 757 int num_qps; /* 256k */
06ef0ee4 758 int reserved_qps;
0e40dc2f
YL
759 int num_qpc_timer;
760 int num_cqc_timer;
5c1f167a
LO
761 u32 max_srq_sg;
762 int num_srqs;
9a443537 763 u32 max_wqes; /* 16k */
d16da119
LO
764 u32 max_srqs;
765 u32 max_srq_wrs;
766 u32 max_srq_sges;
9a443537 767 u32 max_sq_desc_sz; /* 64 */
768 u32 max_rq_desc_sz; /* 64 */
cfc85f3e 769 u32 max_srq_desc_sz;
9a443537 770 int max_qp_init_rdma;
771 int max_qp_dest_rdma;
9a443537 772 int num_cqs;
773 int max_cqes;
93aa2187 774 int min_cqes;
926a01dc 775 u32 min_wqes;
9a443537 776 int reserved_cqs;
5c1f167a
LO
777 int reserved_srqs;
778 u32 max_srqwqes;
9a443537 779 int num_aeq_vectors; /* 1 */
a5073d60 780 int num_comp_vectors;
9a443537 781 int num_other_vectors;
782 int num_mtpts;
783 u32 num_mtt_segs;
cfc85f3e 784 u32 num_cqe_segs;
5c1f167a
LO
785 u32 num_srqwqe_segs;
786 u32 num_idx_segs;
9a443537 787 int reserved_mrws;
788 int reserved_uars;
789 int num_pds;
790 int reserved_pds;
791 u32 mtt_entry_sz;
792 u32 cq_entry_sz;
793 u32 page_size_cap;
794 u32 reserved_lkey;
795 int mtpt_entry_sz;
796 int qpc_entry_sz;
797 int irrl_entry_sz;
e92f2c18 798 int trrl_entry_sz;
9a443537 799 int cqc_entry_sz;
6a157f7d 800 int sccc_entry_sz;
0e40dc2f
YL
801 int qpc_timer_entry_sz;
802 int cqc_timer_entry_sz;
5c1f167a
LO
803 int srqc_entry_sz;
804 int idx_entry_sz;
ff795f71
WHX
805 u32 pbl_ba_pg_sz;
806 u32 pbl_buf_pg_sz;
807 u32 pbl_hop_num;
9a443537 808 int aeqe_depth;
b16f8188 809 int ceqe_depth;
9a443537 810 enum ib_mtu max_mtu;
cfc85f3e 811 u32 qpc_bt_num;
0e40dc2f 812 u32 qpc_timer_bt_num;
cfc85f3e
WHX
813 u32 srqc_bt_num;
814 u32 cqc_bt_num;
0e40dc2f 815 u32 cqc_timer_bt_num;
cfc85f3e 816 u32 mpt_bt_num;
6a157f7d 817 u32 sccc_bt_num;
a25d13cb
SX
818 u32 qpc_ba_pg_sz;
819 u32 qpc_buf_pg_sz;
820 u32 qpc_hop_num;
821 u32 srqc_ba_pg_sz;
822 u32 srqc_buf_pg_sz;
823 u32 srqc_hop_num;
824 u32 cqc_ba_pg_sz;
825 u32 cqc_buf_pg_sz;
826 u32 cqc_hop_num;
827 u32 mpt_ba_pg_sz;
828 u32 mpt_buf_pg_sz;
829 u32 mpt_hop_num;
6a93c77a
SX
830 u32 mtt_ba_pg_sz;
831 u32 mtt_buf_pg_sz;
832 u32 mtt_hop_num;
6a157f7d
YL
833 u32 sccc_ba_pg_sz;
834 u32 sccc_buf_pg_sz;
835 u32 sccc_hop_num;
0e40dc2f
YL
836 u32 qpc_timer_ba_pg_sz;
837 u32 qpc_timer_buf_pg_sz;
838 u32 qpc_timer_hop_num;
839 u32 cqc_timer_ba_pg_sz;
840 u32 cqc_timer_buf_pg_sz;
841 u32 cqc_timer_hop_num;
6a93c77a
SX
842 u32 cqe_ba_pg_sz;
843 u32 cqe_buf_pg_sz;
844 u32 cqe_hop_num;
c7bcb134
LO
845 u32 srqwqe_ba_pg_sz;
846 u32 srqwqe_buf_pg_sz;
847 u32 srqwqe_hop_num;
848 u32 idx_ba_pg_sz;
849 u32 idx_buf_pg_sz;
850 u32 idx_hop_num;
a5073d60
YL
851 u32 eqe_ba_pg_sz;
852 u32 eqe_buf_pg_sz;
853 u32 eqe_hop_num;
6b63597d 854 u32 sl_num;
855 u32 tsq_buf_pg_sz;
ded58ff9 856 u32 tpq_buf_pg_sz;
29a1fe5d 857 u32 chunk_sz; /* chunk size in non multihop mode*/
a2c80b7b 858 u64 flags;
9a443537 859};
860
0425e3e6
YL
861struct hns_roce_work {
862 struct hns_roce_dev *hr_dev;
863 struct work_struct work;
864 u32 qpn;
b00a92c8 865 u32 cqn;
0425e3e6
YL
866 int event_type;
867 int sub_type;
868};
869
9a443537 870struct hns_roce_hw {
871 int (*reset)(struct hns_roce_dev *hr_dev, bool enable);
a04ff739
WHX
872 int (*cmq_init)(struct hns_roce_dev *hr_dev);
873 void (*cmq_exit)(struct hns_roce_dev *hr_dev);
cfc85f3e 874 int (*hw_profile)(struct hns_roce_dev *hr_dev);
9a443537 875 int (*hw_init)(struct hns_roce_dev *hr_dev);
876 void (*hw_exit)(struct hns_roce_dev *hr_dev);
a680f2f3
WHX
877 int (*post_mbox)(struct hns_roce_dev *hr_dev, u64 in_param,
878 u64 out_param, u32 in_modifier, u8 op_modifier, u16 op,
879 u16 token, int event);
880 int (*chk_mbox)(struct hns_roce_dev *hr_dev, unsigned long timeout);
6a04aed6 881 int (*rst_prc_mbox)(struct hns_roce_dev *hr_dev);
b5ff0f61 882 int (*set_gid)(struct hns_roce_dev *hr_dev, u8 port, int gid_index,
f4df9a7c 883 const union ib_gid *gid, const struct ib_gid_attr *attr);
a74dc41d 884 int (*set_mac)(struct hns_roce_dev *hr_dev, u8 phy_port, u8 *addr);
9a443537 885 void (*set_mtu)(struct hns_roce_dev *hr_dev, u8 phy_port,
886 enum ib_mtu mtu);
887 int (*write_mtpt)(void *mb_buf, struct hns_roce_mr *mr,
888 unsigned long mtpt_idx);
a2c80b7b
WHX
889 int (*rereg_write_mtpt)(struct hns_roce_dev *hr_dev,
890 struct hns_roce_mr *mr, int flags, u32 pdn,
891 int mr_access_flags, u64 iova, u64 size,
892 void *mb_buf);
68a997c5 893 int (*frmr_write_mtpt)(void *mb_buf, struct hns_roce_mr *mr);
c7c28191 894 int (*mw_write_mtpt)(void *mb_buf, struct hns_roce_mw *mw);
9a443537 895 void (*write_cqc)(struct hns_roce_dev *hr_dev,
896 struct hns_roce_cq *hr_cq, void *mb_buf, u64 *mtts,
897 dma_addr_t dma_handle, int nent, u32 vector);
a25d13cb
SX
898 int (*set_hem)(struct hns_roce_dev *hr_dev,
899 struct hns_roce_hem_table *table, int obj, int step_idx);
97f0e39f 900 int (*clear_hem)(struct hns_roce_dev *hr_dev,
a25d13cb
SX
901 struct hns_roce_hem_table *table, int obj,
902 int step_idx);
9a443537 903 int (*query_qp)(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr,
904 int qp_attr_mask, struct ib_qp_init_attr *qp_init_attr);
905 int (*modify_qp)(struct ib_qp *ibqp, const struct ib_qp_attr *attr,
906 int attr_mask, enum ib_qp_state cur_state,
907 enum ib_qp_state new_state);
c4367a26 908 int (*destroy_qp)(struct ib_qp *ibqp, struct ib_udata *udata);
aa84fa18
YL
909 int (*qp_flow_control_init)(struct hns_roce_dev *hr_dev,
910 struct hns_roce_qp *hr_qp);
d34ac5cd
BVA
911 int (*post_send)(struct ib_qp *ibqp, const struct ib_send_wr *wr,
912 const struct ib_send_wr **bad_wr);
913 int (*post_recv)(struct ib_qp *qp, const struct ib_recv_wr *recv_wr,
914 const struct ib_recv_wr **bad_recv_wr);
9a443537 915 int (*req_notify_cq)(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
916 int (*poll_cq)(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
c4367a26
SR
917 int (*dereg_mr)(struct hns_roce_dev *hr_dev, struct hns_roce_mr *mr,
918 struct ib_udata *udata);
919 int (*destroy_cq)(struct ib_cq *ibcq, struct ib_udata *udata);
b156269d 920 int (*modify_cq)(struct ib_cq *cq, u16 cq_count, u16 cq_period);
b16f8188
YL
921 int (*init_eq)(struct hns_roce_dev *hr_dev);
922 void (*cleanup_eq)(struct hns_roce_dev *hr_dev);
c7bcb134
LO
923 void (*write_srqc)(struct hns_roce_dev *hr_dev,
924 struct hns_roce_srq *srq, u32 pdn, u16 xrcd, u32 cqn,
925 void *mb_buf, u64 *mtts_wqe, u64 *mtts_idx,
926 dma_addr_t dma_handle_wqe,
927 dma_addr_t dma_handle_idx);
928 int (*modify_srq)(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr,
929 enum ib_srq_attr_mask srq_attr_mask,
930 struct ib_udata *udata);
931 int (*query_srq)(struct ib_srq *ibsrq, struct ib_srq_attr *attr);
932 int (*post_srq_recv)(struct ib_srq *ibsrq, const struct ib_recv_wr *wr,
933 const struct ib_recv_wr **bad_wr);
7f645a58
KH
934 const struct ib_device_ops *hns_roce_dev_ops;
935 const struct ib_device_ops *hns_roce_dev_srq_ops;
9a443537 936};
937
938struct hns_roce_dev {
939 struct ib_device ib_dev;
940 struct platform_device *pdev;
dd74282d
WHX
941 struct pci_dev *pci_dev;
942 struct device *dev;
9a443537 943 struct hns_roce_uar priv_uar;
528f1deb 944 const char *irq_names[HNS_ROCE_MAX_IRQ_NUM];
9a443537 945 spinlock_t sm_lock;
9a443537 946 spinlock_t bt_cmd_lock;
cb7a94c9
WHX
947 bool active;
948 bool is_reset;
d3743fa9 949 bool dis_db;
d061effc 950 unsigned long reset_cnt;
9a443537 951 struct hns_roce_ib_iboe iboe;
952
472bc0fb
YL
953 struct list_head pgdir_list;
954 struct mutex pgdir_mutex;
9a443537 955 int irq[HNS_ROCE_MAX_IRQ_NUM];
956 u8 __iomem *reg_base;
957 struct hns_roce_caps caps;
736b5a70 958 struct xarray qp_table_xa;
9a443537 959
960 unsigned char dev_addr[HNS_ROCE_MAX_PORTS][MAC_ADDR_OCTET_NUM];
961 u64 sys_image_guid;
962 u32 vendor_id;
963 u32 vendor_part_id;
964 u32 hw_rev;
965 void __iomem *priv_addr;
966
967 struct hns_roce_cmdq cmd;
968 struct hns_roce_bitmap pd_bitmap;
969 struct hns_roce_uar_table uar_table;
970 struct hns_roce_mr_table mr_table;
971 struct hns_roce_cq_table cq_table;
5c1f167a 972 struct hns_roce_srq_table srq_table;
9a443537 973 struct hns_roce_qp_table qp_table;
974 struct hns_roce_eq_table eq_table;
0e40dc2f
YL
975 struct hns_roce_hem_table qpc_timer_table;
976 struct hns_roce_hem_table cqc_timer_table;
9a443537 977
978 int cmd_mod;
979 int loop_idc;
2d407888
WHX
980 u32 sdb_offset;
981 u32 odb_offset;
8f3e9f3e
WHX
982 dma_addr_t tptr_dma_addr; /*only for hw v1*/
983 u32 tptr_size; /*only for hw v1*/
08805fdb 984 const struct hns_roce_hw *hw;
016a0059 985 void *priv;
0425e3e6 986 struct workqueue_struct *irq_workq;
9a443537 987};
988
989static inline struct hns_roce_dev *to_hr_dev(struct ib_device *ib_dev)
990{
991 return container_of(ib_dev, struct hns_roce_dev, ib_dev);
992}
993
994static inline struct hns_roce_ucontext
995 *to_hr_ucontext(struct ib_ucontext *ibucontext)
996{
997 return container_of(ibucontext, struct hns_roce_ucontext, ibucontext);
998}
999
1000static inline struct hns_roce_pd *to_hr_pd(struct ib_pd *ibpd)
1001{
1002 return container_of(ibpd, struct hns_roce_pd, ibpd);
1003}
1004
1005static inline struct hns_roce_ah *to_hr_ah(struct ib_ah *ibah)
1006{
1007 return container_of(ibah, struct hns_roce_ah, ibah);
1008}
1009
1010static inline struct hns_roce_mr *to_hr_mr(struct ib_mr *ibmr)
1011{
1012 return container_of(ibmr, struct hns_roce_mr, ibmr);
1013}
1014
c7c28191
YL
1015static inline struct hns_roce_mw *to_hr_mw(struct ib_mw *ibmw)
1016{
1017 return container_of(ibmw, struct hns_roce_mw, ibmw);
1018}
1019
9a443537 1020static inline struct hns_roce_qp *to_hr_qp(struct ib_qp *ibqp)
1021{
1022 return container_of(ibqp, struct hns_roce_qp, ibqp);
1023}
1024
1025static inline struct hns_roce_cq *to_hr_cq(struct ib_cq *ib_cq)
1026{
1027 return container_of(ib_cq, struct hns_roce_cq, ib_cq);
1028}
1029
1030static inline struct hns_roce_srq *to_hr_srq(struct ib_srq *ibsrq)
1031{
1032 return container_of(ibsrq, struct hns_roce_srq, ibsrq);
1033}
1034
1035static inline struct hns_roce_sqp *hr_to_hr_sqp(struct hns_roce_qp *hr_qp)
1036{
1037 return container_of(hr_qp, struct hns_roce_sqp, hr_qp);
1038}
1039
0576cbde 1040static inline void hns_roce_write64_k(__le32 val[2], void __iomem *dest)
9a443537 1041{
1042 __raw_writeq(*(u64 *) val, dest);
1043}
1044
1045static inline struct hns_roce_qp
1046 *__hns_roce_qp_lookup(struct hns_roce_dev *hr_dev, u32 qpn)
1047{
736b5a70 1048 return xa_load(&hr_dev->qp_table_xa, qpn & (hr_dev->caps.num_qps - 1));
9a443537 1049}
1050
1051static inline void *hns_roce_buf_offset(struct hns_roce_buf *buf, int offset)
1052{
9a8982dc 1053 u32 page_size = 1 << buf->page_shift;
9a443537 1054
b1c15835 1055 if (buf->nbufs == 1)
9a443537 1056 return (char *)(buf->direct.buf) + offset;
1057 else
9a8982dc
WHX
1058 return (char *)(buf->page_list[offset >> buf->page_shift].buf) +
1059 (offset & (page_size - 1));
9a443537 1060}
1061
1062int hns_roce_init_uar_table(struct hns_roce_dev *dev);
1063int hns_roce_uar_alloc(struct hns_roce_dev *dev, struct hns_roce_uar *uar);
1064void hns_roce_uar_free(struct hns_roce_dev *dev, struct hns_roce_uar *uar);
1065void hns_roce_cleanup_uar_table(struct hns_roce_dev *dev);
1066
1067int hns_roce_cmd_init(struct hns_roce_dev *hr_dev);
1068void hns_roce_cmd_cleanup(struct hns_roce_dev *hr_dev);
1069void hns_roce_cmd_event(struct hns_roce_dev *hr_dev, u16 token, u8 status,
1070 u64 out_param);
1071int hns_roce_cmd_use_events(struct hns_roce_dev *hr_dev);
1072void hns_roce_cmd_use_polling(struct hns_roce_dev *hr_dev);
1073
1074int hns_roce_mtt_init(struct hns_roce_dev *hr_dev, int npages, int page_shift,
1075 struct hns_roce_mtt *mtt);
1076void hns_roce_mtt_cleanup(struct hns_roce_dev *hr_dev,
1077 struct hns_roce_mtt *mtt);
1078int hns_roce_buf_write_mtt(struct hns_roce_dev *hr_dev,
1079 struct hns_roce_mtt *mtt, struct hns_roce_buf *buf);
1080
1081int hns_roce_init_pd_table(struct hns_roce_dev *hr_dev);
1082int hns_roce_init_mr_table(struct hns_roce_dev *hr_dev);
1083int hns_roce_init_eq_table(struct hns_roce_dev *hr_dev);
1084int hns_roce_init_cq_table(struct hns_roce_dev *hr_dev);
1085int hns_roce_init_qp_table(struct hns_roce_dev *hr_dev);
5c1f167a 1086int hns_roce_init_srq_table(struct hns_roce_dev *hr_dev);
9a443537 1087
1088void hns_roce_cleanup_pd_table(struct hns_roce_dev *hr_dev);
1089void hns_roce_cleanup_mr_table(struct hns_roce_dev *hr_dev);
1090void hns_roce_cleanup_eq_table(struct hns_roce_dev *hr_dev);
1091void hns_roce_cleanup_cq_table(struct hns_roce_dev *hr_dev);
1092void hns_roce_cleanup_qp_table(struct hns_roce_dev *hr_dev);
5c1f167a 1093void hns_roce_cleanup_srq_table(struct hns_roce_dev *hr_dev);
9a443537 1094
1095int hns_roce_bitmap_alloc(struct hns_roce_bitmap *bitmap, unsigned long *obj);
5e6ff78a
WHX
1096void hns_roce_bitmap_free(struct hns_roce_bitmap *bitmap, unsigned long obj,
1097 int rr);
9a443537 1098int hns_roce_bitmap_init(struct hns_roce_bitmap *bitmap, u32 num, u32 mask,
1099 u32 reserved_bot, u32 resetrved_top);
1100void hns_roce_bitmap_cleanup(struct hns_roce_bitmap *bitmap);
1101void hns_roce_cleanup_bitmap(struct hns_roce_dev *hr_dev);
1102int hns_roce_bitmap_alloc_range(struct hns_roce_bitmap *bitmap, int cnt,
1103 int align, unsigned long *obj);
1104void hns_roce_bitmap_free_range(struct hns_roce_bitmap *bitmap,
5e6ff78a
WHX
1105 unsigned long obj, int cnt,
1106 int rr);
9a443537 1107
90898850
DC
1108struct ib_ah *hns_roce_create_ah(struct ib_pd *pd,
1109 struct rdma_ah_attr *ah_attr,
b090c4e3 1110 u32 flags,
477864c8 1111 struct ib_udata *udata);
90898850 1112int hns_roce_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr);
c4367a26 1113int hns_roce_destroy_ah(struct ib_ah *ah, u32 flags, struct ib_udata *udata);
9a443537 1114
21a428a0
LR
1115int hns_roce_alloc_pd(struct ib_pd *pd, struct ib_ucontext *context,
1116 struct ib_udata *udata);
c4367a26 1117void hns_roce_dealloc_pd(struct ib_pd *pd, struct ib_udata *udata);
9a443537 1118
1119struct ib_mr *hns_roce_get_dma_mr(struct ib_pd *pd, int acc);
1120struct ib_mr *hns_roce_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
1121 u64 virt_addr, int access_flags,
1122 struct ib_udata *udata);
a2c80b7b
WHX
1123int hns_roce_rereg_user_mr(struct ib_mr *mr, int flags, u64 start, u64 length,
1124 u64 virt_addr, int mr_access_flags, struct ib_pd *pd,
1125 struct ib_udata *udata);
68a997c5 1126struct ib_mr *hns_roce_alloc_mr(struct ib_pd *pd, enum ib_mr_type mr_type,
c4367a26 1127 u32 max_num_sg, struct ib_udata *udata);
68a997c5
YL
1128int hns_roce_map_mr_sg(struct ib_mr *ibmr, struct scatterlist *sg, int sg_nents,
1129 unsigned int *sg_offset);
c4367a26 1130int hns_roce_dereg_mr(struct ib_mr *ibmr, struct ib_udata *udata);
bfcc681b
SX
1131int hns_roce_hw2sw_mpt(struct hns_roce_dev *hr_dev,
1132 struct hns_roce_cmd_mailbox *mailbox,
1133 unsigned long mpt_index);
1134unsigned long key_to_hw_index(u32 key);
9a443537 1135
c7c28191
YL
1136struct ib_mw *hns_roce_alloc_mw(struct ib_pd *pd, enum ib_mw_type,
1137 struct ib_udata *udata);
1138int hns_roce_dealloc_mw(struct ib_mw *ibmw);
1139
9a443537 1140void hns_roce_buf_free(struct hns_roce_dev *hr_dev, u32 size,
1141 struct hns_roce_buf *buf);
1142int hns_roce_buf_alloc(struct hns_roce_dev *hr_dev, u32 size, u32 max_direct,
9a8982dc 1143 struct hns_roce_buf *buf, u32 page_shift);
9a443537 1144
1145int hns_roce_ib_umem_write_mtt(struct hns_roce_dev *hr_dev,
1146 struct hns_roce_mtt *mtt, struct ib_umem *umem);
1147
c7bcb134
LO
1148struct ib_srq *hns_roce_create_srq(struct ib_pd *pd,
1149 struct ib_srq_init_attr *srq_init_attr,
1150 struct ib_udata *udata);
1151int hns_roce_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr,
1152 enum ib_srq_attr_mask srq_attr_mask,
1153 struct ib_udata *udata);
c4367a26 1154int hns_roce_destroy_srq(struct ib_srq *ibsrq, struct ib_udata *udata);
c7bcb134 1155
9a443537 1156struct ib_qp *hns_roce_create_qp(struct ib_pd *ib_pd,
1157 struct ib_qp_init_attr *init_attr,
1158 struct ib_udata *udata);
1159int hns_roce_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1160 int attr_mask, struct ib_udata *udata);
1161void *get_recv_wqe(struct hns_roce_qp *hr_qp, int n);
1162void *get_send_wqe(struct hns_roce_qp *hr_qp, int n);
926a01dc 1163void *get_send_extend_sge(struct hns_roce_qp *hr_qp, int n);
9a443537 1164bool hns_roce_wq_overflow(struct hns_roce_wq *hr_wq, int nreq,
1165 struct ib_cq *ib_cq);
1166enum hns_roce_qp_state to_hns_roce_state(enum ib_qp_state state);
1167void hns_roce_lock_cqs(struct hns_roce_cq *send_cq,
1168 struct hns_roce_cq *recv_cq);
1169void hns_roce_unlock_cqs(struct hns_roce_cq *send_cq,
1170 struct hns_roce_cq *recv_cq);
1171void hns_roce_qp_remove(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp);
1172void hns_roce_qp_free(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp);
1173void hns_roce_release_range_qp(struct hns_roce_dev *hr_dev, int base_qpn,
1174 int cnt);
f696bf6d 1175__be32 send_ieth(const struct ib_send_wr *wr);
9a443537 1176int to_hr_qp_type(int qp_type);
1177
1178struct ib_cq *hns_roce_ib_create_cq(struct ib_device *ib_dev,
1179 const struct ib_cq_init_attr *attr,
1180 struct ib_ucontext *context,
1181 struct ib_udata *udata);
1182
c4367a26 1183int hns_roce_ib_destroy_cq(struct ib_cq *ib_cq, struct ib_udata *udata);
afb6b092 1184void hns_roce_free_cq(struct hns_roce_dev *hr_dev, struct hns_roce_cq *hr_cq);
9a443537 1185
b0ea0fa5
JG
1186int hns_roce_db_map_user(struct hns_roce_ucontext *context,
1187 struct ib_udata *udata, unsigned long virt,
e088a685
YL
1188 struct hns_roce_db *db);
1189void hns_roce_db_unmap_user(struct hns_roce_ucontext *context,
1190 struct hns_roce_db *db);
472bc0fb
YL
1191int hns_roce_alloc_db(struct hns_roce_dev *hr_dev, struct hns_roce_db *db,
1192 int order);
1193void hns_roce_free_db(struct hns_roce_dev *hr_dev, struct hns_roce_db *db);
1194
9a443537 1195void hns_roce_cq_completion(struct hns_roce_dev *hr_dev, u32 cqn);
1196void hns_roce_cq_event(struct hns_roce_dev *hr_dev, u32 cqn, int event_type);
1197void hns_roce_qp_event(struct hns_roce_dev *hr_dev, u32 qpn, int event_type);
81fce629 1198void hns_roce_srq_event(struct hns_roce_dev *hr_dev, u32 srqn, int event_type);
9a443537 1199int hns_get_gid_index(struct hns_roce_dev *hr_dev, u8 port, int gid_index);
08805fdb
WHX
1200int hns_roce_init(struct hns_roce_dev *hr_dev);
1201void hns_roce_exit(struct hns_roce_dev *hr_dev);
9a443537 1202
1203#endif /* _HNS_ROCE_DEVICE_H */