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