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