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