blob: e8d273408fe1b7b5e1fc18151bd4bbe9d56f0c9e [file] [log] [blame]
oulijun9a443532016-07-21 19:06:38 +08001/*
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
40#define MAC_ADDR_OCTET_NUM 6
41#define HNS_ROCE_MAX_MSG_LEN 0x80000000
42
43#define HNS_ROCE_ALOGN_UP(a, b) ((((a) + (b) - 1) / (b)) * (b))
44
45#define HNS_ROCE_IB_MIN_SQ_STRIDE 6
46
47#define HNS_ROCE_BA_SIZE (32 * 4096)
48
49/* Hardware specification only for v1 engine */
50#define HNS_ROCE_MIN_CQE_NUM 0x40
51#define HNS_ROCE_MIN_WQE_NUM 0x20
52
53/* Hardware specification only for v1 engine */
54#define HNS_ROCE_MAX_INNER_MTPT_NUM 0x7
55#define HNS_ROCE_MAX_MTPT_PBL_NUM 0x100000
56
57#define HNS_ROCE_MAX_IRQ_NUM 34
58
59#define HNS_ROCE_COMP_VEC_NUM 32
60
61#define HNS_ROCE_AEQE_VEC_NUM 1
62#define HNS_ROCE_AEQE_OF_VEC_NUM 1
63
64/* 4G/4K = 1M */
65#define HNS_ROCE_SL_SHIFT 29
66#define HNS_ROCE_TCLASS_SHIFT 20
67#define HNS_ROCE_FLOW_LABLE_MASK 0xfffff
68
69#define HNS_ROCE_MAX_PORTS 6
70#define HNS_ROCE_MAX_GID_NUM 16
71#define HNS_ROCE_GID_SIZE 16
72
73#define MR_TYPE_MR 0x00
74#define MR_TYPE_DMA 0x03
75
76#define PKEY_ID 0xffff
Lijun Ou31644662016-09-15 23:48:07 +010077#define GUID_LEN 8
oulijun9a443532016-07-21 19:06:38 +080078#define NODE_DESC_SIZE 64
Lijun Ou509bf0c2016-09-15 23:48:12 +010079#define DB_REG_OFFSET 0x1000
oulijun9a443532016-07-21 19:06:38 +080080
81#define SERV_TYPE_RC 0
82#define SERV_TYPE_RD 1
83#define SERV_TYPE_UC 2
84#define SERV_TYPE_UD 3
85
86#define PAGES_SHIFT_8 8
87#define PAGES_SHIFT_16 16
88#define PAGES_SHIFT_24 24
89#define PAGES_SHIFT_32 32
90
91enum hns_roce_qp_state {
92 HNS_ROCE_QP_STATE_RST,
93 HNS_ROCE_QP_STATE_INIT,
94 HNS_ROCE_QP_STATE_RTR,
95 HNS_ROCE_QP_STATE_RTS,
96 HNS_ROCE_QP_STATE_SQD,
97 HNS_ROCE_QP_STATE_ERR,
98 HNS_ROCE_QP_NUM_STATE,
99};
100
101enum hns_roce_event {
102 HNS_ROCE_EVENT_TYPE_PATH_MIG = 0x01,
103 HNS_ROCE_EVENT_TYPE_PATH_MIG_FAILED = 0x02,
104 HNS_ROCE_EVENT_TYPE_COMM_EST = 0x03,
105 HNS_ROCE_EVENT_TYPE_SQ_DRAINED = 0x04,
106 HNS_ROCE_EVENT_TYPE_WQ_CATAS_ERROR = 0x05,
107 HNS_ROCE_EVENT_TYPE_INV_REQ_LOCAL_WQ_ERROR = 0x06,
108 HNS_ROCE_EVENT_TYPE_LOCAL_WQ_ACCESS_ERROR = 0x07,
109 HNS_ROCE_EVENT_TYPE_SRQ_LIMIT_REACH = 0x08,
110 HNS_ROCE_EVENT_TYPE_SRQ_LAST_WQE_REACH = 0x09,
111 HNS_ROCE_EVENT_TYPE_SRQ_CATAS_ERROR = 0x0a,
112 HNS_ROCE_EVENT_TYPE_CQ_ACCESS_ERROR = 0x0b,
113 HNS_ROCE_EVENT_TYPE_CQ_OVERFLOW = 0x0c,
114 HNS_ROCE_EVENT_TYPE_CQ_ID_INVALID = 0x0d,
115 HNS_ROCE_EVENT_TYPE_PORT_CHANGE = 0x0f,
116 /* 0x10 and 0x11 is unused in currently application case */
117 HNS_ROCE_EVENT_TYPE_DB_OVERFLOW = 0x12,
118 HNS_ROCE_EVENT_TYPE_MB = 0x13,
119 HNS_ROCE_EVENT_TYPE_CEQ_OVERFLOW = 0x14,
120};
121
122/* Local Work Queue Catastrophic Error,SUBTYPE 0x5 */
123enum {
124 HNS_ROCE_LWQCE_QPC_ERROR = 1,
125 HNS_ROCE_LWQCE_MTU_ERROR = 2,
126 HNS_ROCE_LWQCE_WQE_BA_ADDR_ERROR = 3,
127 HNS_ROCE_LWQCE_WQE_ADDR_ERROR = 4,
128 HNS_ROCE_LWQCE_SQ_WQE_SHIFT_ERROR = 5,
129 HNS_ROCE_LWQCE_SL_ERROR = 6,
130 HNS_ROCE_LWQCE_PORT_ERROR = 7,
131};
132
133/* Local Access Violation Work Queue Error,SUBTYPE 0x7 */
134enum {
135 HNS_ROCE_LAVWQE_R_KEY_VIOLATION = 1,
136 HNS_ROCE_LAVWQE_LENGTH_ERROR = 2,
137 HNS_ROCE_LAVWQE_VA_ERROR = 3,
138 HNS_ROCE_LAVWQE_PD_ERROR = 4,
139 HNS_ROCE_LAVWQE_RW_ACC_ERROR = 5,
140 HNS_ROCE_LAVWQE_KEY_STATE_ERROR = 6,
141 HNS_ROCE_LAVWQE_MR_OPERATION_ERROR = 7,
142};
143
144/* DOORBELL overflow subtype */
145enum {
146 HNS_ROCE_DB_SUBTYPE_SDB_OVF = 1,
147 HNS_ROCE_DB_SUBTYPE_SDB_ALM_OVF = 2,
148 HNS_ROCE_DB_SUBTYPE_ODB_OVF = 3,
149 HNS_ROCE_DB_SUBTYPE_ODB_ALM_OVF = 4,
150 HNS_ROCE_DB_SUBTYPE_SDB_ALM_EMP = 5,
151 HNS_ROCE_DB_SUBTYPE_ODB_ALM_EMP = 6,
152};
153
154enum {
155 /* RQ&SRQ related operations */
156 HNS_ROCE_OPCODE_SEND_DATA_RECEIVE = 0x06,
157 HNS_ROCE_OPCODE_RDMA_WITH_IMM_RECEIVE = 0x07,
158};
159
160#define HNS_ROCE_CMD_SUCCESS 1
161
162#define HNS_ROCE_PORT_DOWN 0
163#define HNS_ROCE_PORT_UP 1
164
165#define HNS_ROCE_MTT_ENTRY_PER_SEG 8
166
167#define PAGE_ADDR_SHIFT 12
168
169struct hns_roce_uar {
170 u64 pfn;
171 unsigned long index;
172};
173
174struct hns_roce_ucontext {
175 struct ib_ucontext ibucontext;
176 struct hns_roce_uar uar;
177};
178
179struct hns_roce_pd {
180 struct ib_pd ibpd;
181 unsigned long pdn;
182};
183
184struct hns_roce_bitmap {
185 /* Bitmap Traversal last a bit which is 1 */
186 unsigned long last;
187 unsigned long top;
188 unsigned long max;
189 unsigned long reserved_top;
190 unsigned long mask;
191 spinlock_t lock;
192 unsigned long *table;
193};
194
195/* Order bitmap length -- bit num compute formula: 1 << (max_order - order) */
196/* Order = 0: bitmap is biggest, order = max bitmap is least (only a bit) */
197/* Every bit repesent to a partner free/used status in bitmap */
198/*
199* Initial, bits of other bitmap are all 0 except that a bit of max_order is 1
200* Bit = 1 represent to idle and available; bit = 0: not available
201*/
202struct hns_roce_buddy {
203 /* Members point to every order level bitmap */
204 unsigned long **bits;
205 /* Represent to avail bits of the order level bitmap */
206 u32 *num_free;
207 int max_order;
208 spinlock_t lock;
209};
210
211/* For Hardware Entry Memory */
212struct hns_roce_hem_table {
213 /* HEM type: 0 = qpc, 1 = mtt, 2 = cqc, 3 = srq, 4 = other */
214 u32 type;
215 /* HEM array elment num */
216 unsigned long num_hem;
217 /* HEM entry record obj total num */
218 unsigned long num_obj;
219 /*Single obj size */
220 unsigned long obj_size;
221 int lowmem;
222 struct mutex mutex;
223 struct hns_roce_hem **hem;
224};
225
226struct hns_roce_mtt {
227 unsigned long first_seg;
228 int order;
229 int page_shift;
230};
231
232/* Only support 4K page size for mr register */
233#define MR_SIZE_4K 0
234
235struct hns_roce_mr {
236 struct ib_mr ibmr;
237 struct ib_umem *umem;
238 u64 iova; /* MR's virtual orignal addr */
239 u64 size; /* Address range of MR */
240 u32 key; /* Key of MR */
241 u32 pd; /* PD num of MR */
242 u32 access;/* Access permission of MR */
243 int enabled; /* MR's active status */
244 int type; /* MR's register type */
245 u64 *pbl_buf;/* MR's PBL space */
246 dma_addr_t pbl_dma_addr; /* MR's PBL space PA */
247};
248
249struct hns_roce_mr_table {
250 struct hns_roce_bitmap mtpt_bitmap;
251 struct hns_roce_buddy mtt_buddy;
252 struct hns_roce_hem_table mtt_table;
253 struct hns_roce_hem_table mtpt_table;
254};
255
256struct hns_roce_wq {
257 u64 *wrid; /* Work request ID */
258 spinlock_t lock;
259 int wqe_cnt; /* WQE num */
260 u32 max_post;
261 int max_gs;
262 int offset;
263 int wqe_shift;/* WQE size */
264 u32 head;
265 u32 tail;
266 void __iomem *db_reg_l;
267};
268
269struct hns_roce_buf_list {
270 void *buf;
271 dma_addr_t map;
272};
273
274struct hns_roce_buf {
275 struct hns_roce_buf_list direct;
276 struct hns_roce_buf_list *page_list;
277 int nbufs;
278 u32 npages;
279 int page_shift;
280};
281
282struct hns_roce_cq_buf {
283 struct hns_roce_buf hr_buf;
284 struct hns_roce_mtt hr_mtt;
285};
286
287struct hns_roce_cq_resize {
288 struct hns_roce_cq_buf hr_buf;
289 int cqe;
290};
291
292struct hns_roce_cq {
293 struct ib_cq ib_cq;
294 struct hns_roce_cq_buf hr_buf;
295 /* pointer to store information after resize*/
296 struct hns_roce_cq_resize *hr_resize_buf;
297 spinlock_t lock;
298 struct mutex resize_mutex;
299 struct ib_umem *umem;
300 struct ib_umem *resize_umem;
301 void (*comp)(struct hns_roce_cq *);
302 void (*event)(struct hns_roce_cq *, enum hns_roce_event);
303
304 struct hns_roce_uar *uar;
305 u32 cq_depth;
306 u32 cons_index;
307 void __iomem *cq_db_l;
308 void __iomem *tptr_addr;
309 unsigned long cqn;
310 u32 vector;
311 atomic_t refcount;
312 struct completion free;
313};
314
315struct hns_roce_srq {
316 struct ib_srq ibsrq;
317 int srqn;
318};
319
320struct hns_roce_uar_table {
321 struct hns_roce_bitmap bitmap;
322};
323
324struct hns_roce_qp_table {
325 struct hns_roce_bitmap bitmap;
326 spinlock_t lock;
327 struct hns_roce_hem_table qp_table;
328 struct hns_roce_hem_table irrl_table;
329};
330
331struct hns_roce_cq_table {
332 struct hns_roce_bitmap bitmap;
333 spinlock_t lock;
334 struct radix_tree_root tree;
335 struct hns_roce_hem_table table;
336};
337
338struct hns_roce_raq_table {
339 struct hns_roce_buf_list *e_raq_buf;
340};
341
342struct hns_roce_av {
343 __le32 port_pd;
344 u8 gid_index;
345 u8 stat_rate;
346 u8 hop_limit;
347 __le32 sl_tclass_flowlabel;
348 u8 dgid[HNS_ROCE_GID_SIZE];
349 u8 mac[6];
350 __le16 vlan;
351};
352
353struct hns_roce_ah {
354 struct ib_ah ibah;
355 struct hns_roce_av av;
356};
357
358struct hns_roce_cmd_context {
359 struct completion done;
360 int result;
361 int next;
362 u64 out_param;
363 u16 token;
364};
365
366struct hns_roce_cmdq {
367 struct dma_pool *pool;
368 u8 __iomem *hcr;
369 struct mutex hcr_mutex;
370 struct semaphore poll_sem;
371 /*
372 * Event mode: cmd register mutex protection,
373 * ensure to not exceed max_cmds and user use limit region
374 */
375 struct semaphore event_sem;
376 int max_cmds;
377 spinlock_t context_lock;
378 int free_head;
379 struct hns_roce_cmd_context *context;
380 /*
381 * Result of get integer part
382 * which max_comds compute according a power of 2
383 */
384 u16 token_mask;
385 /*
386 * Process whether use event mode, init default non-zero
387 * After the event queue of cmd event ready,
388 * can switch into event mode
389 * close device, switch into poll mode(non event mode)
390 */
391 u8 use_events;
392 u8 toggle;
393};
394
395struct hns_roce_dev;
396
397struct hns_roce_qp {
398 struct ib_qp ibqp;
399 struct hns_roce_buf hr_buf;
400 struct hns_roce_wq rq;
401 __le64 doorbell_qpn;
402 __le32 sq_signal_bits;
403 u32 sq_next_wqe;
404 int sq_max_wqes_per_wr;
405 int sq_spare_wqes;
406 struct hns_roce_wq sq;
407
408 struct ib_umem *umem;
409 struct hns_roce_mtt mtt;
410 u32 buff_size;
411 struct mutex mutex;
412 u8 port;
Lijun Ou77168092016-09-15 23:48:10 +0100413 u8 phy_port;
oulijun9a443532016-07-21 19:06:38 +0800414 u8 sl;
415 u8 resp_depth;
416 u8 state;
417 u32 access_flags;
418 u32 pkey_index;
419 void (*event)(struct hns_roce_qp *,
420 enum hns_roce_event);
421 unsigned long qpn;
422
423 atomic_t refcount;
424 struct completion free;
425};
426
427struct hns_roce_sqp {
428 struct hns_roce_qp hr_qp;
429};
430
431struct hns_roce_ib_iboe {
432 spinlock_t lock;
433 struct net_device *netdevs[HNS_ROCE_MAX_PORTS];
434 struct notifier_block nb;
435 struct notifier_block nb_inet;
436 /* 16 GID is shared by 6 port in v1 engine. */
437 union ib_gid gid_table[HNS_ROCE_MAX_GID_NUM];
438 u8 phy_port[HNS_ROCE_MAX_PORTS];
439};
440
441struct hns_roce_eq {
442 struct hns_roce_dev *hr_dev;
443 void __iomem *doorbell;
444
445 int type_flag;/* Aeq:1 ceq:0 */
446 int eqn;
447 u32 entries;
448 int log_entries;
449 int eqe_size;
450 int irq;
451 int log_page_size;
452 int cons_index;
453 struct hns_roce_buf_list *buf_list;
454};
455
456struct hns_roce_eq_table {
457 struct hns_roce_eq *eq;
458 void __iomem **eqc_base;
459};
460
461struct hns_roce_caps {
462 u8 num_ports;
463 int gid_table_len[HNS_ROCE_MAX_PORTS];
464 int pkey_table_len[HNS_ROCE_MAX_PORTS];
465 int local_ca_ack_delay;
466 int num_uars;
467 u32 phy_num_uars;
468 u32 max_sq_sg; /* 2 */
469 u32 max_sq_inline; /* 32 */
470 u32 max_rq_sg; /* 2 */
471 int num_qps; /* 256k */
472 u32 max_wqes; /* 16k */
473 u32 max_sq_desc_sz; /* 64 */
474 u32 max_rq_desc_sz; /* 64 */
475 int max_qp_init_rdma;
476 int max_qp_dest_rdma;
477 int sqp_start;
478 int num_cqs;
479 int max_cqes;
480 int reserved_cqs;
481 int num_aeq_vectors; /* 1 */
482 int num_comp_vectors; /* 32 ceq */
483 int num_other_vectors;
484 int num_mtpts;
485 u32 num_mtt_segs;
486 int reserved_mrws;
487 int reserved_uars;
488 int num_pds;
489 int reserved_pds;
490 u32 mtt_entry_sz;
491 u32 cq_entry_sz;
492 u32 page_size_cap;
493 u32 reserved_lkey;
494 int mtpt_entry_sz;
495 int qpc_entry_sz;
496 int irrl_entry_sz;
497 int cqc_entry_sz;
498 int aeqe_depth;
499 int ceqe_depth[HNS_ROCE_COMP_VEC_NUM];
500 enum ib_mtu max_mtu;
501};
502
503struct hns_roce_hw {
504 int (*reset)(struct hns_roce_dev *hr_dev, bool enable);
505 void (*hw_profile)(struct hns_roce_dev *hr_dev);
506 int (*hw_init)(struct hns_roce_dev *hr_dev);
507 void (*hw_exit)(struct hns_roce_dev *hr_dev);
508 void (*set_gid)(struct hns_roce_dev *hr_dev, u8 port, int gid_index,
509 union ib_gid *gid);
510 void (*set_mac)(struct hns_roce_dev *hr_dev, u8 phy_port, u8 *addr);
511 void (*set_mtu)(struct hns_roce_dev *hr_dev, u8 phy_port,
512 enum ib_mtu mtu);
513 int (*write_mtpt)(void *mb_buf, struct hns_roce_mr *mr,
514 unsigned long mtpt_idx);
515 void (*write_cqc)(struct hns_roce_dev *hr_dev,
516 struct hns_roce_cq *hr_cq, void *mb_buf, u64 *mtts,
517 dma_addr_t dma_handle, int nent, u32 vector);
518 int (*query_qp)(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr,
519 int qp_attr_mask, struct ib_qp_init_attr *qp_init_attr);
520 int (*modify_qp)(struct ib_qp *ibqp, const struct ib_qp_attr *attr,
521 int attr_mask, enum ib_qp_state cur_state,
522 enum ib_qp_state new_state);
523 int (*destroy_qp)(struct ib_qp *ibqp);
524 int (*post_send)(struct ib_qp *ibqp, struct ib_send_wr *wr,
525 struct ib_send_wr **bad_wr);
526 int (*post_recv)(struct ib_qp *qp, struct ib_recv_wr *recv_wr,
527 struct ib_recv_wr **bad_recv_wr);
528 int (*req_notify_cq)(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
529 int (*poll_cq)(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
530 void *priv;
531};
532
533struct hns_roce_dev {
534 struct ib_device ib_dev;
535 struct platform_device *pdev;
536 struct hns_roce_uar priv_uar;
Salil528f1de2016-08-24 04:44:50 +0800537 const char *irq_names[HNS_ROCE_MAX_IRQ_NUM];
oulijun9a443532016-07-21 19:06:38 +0800538 spinlock_t sm_lock;
539 spinlock_t cq_db_lock;
540 spinlock_t bt_cmd_lock;
541 struct hns_roce_ib_iboe iboe;
542
543 int irq[HNS_ROCE_MAX_IRQ_NUM];
544 u8 __iomem *reg_base;
545 struct hns_roce_caps caps;
546 struct radix_tree_root qp_table_tree;
547
548 unsigned char dev_addr[HNS_ROCE_MAX_PORTS][MAC_ADDR_OCTET_NUM];
549 u64 sys_image_guid;
550 u32 vendor_id;
551 u32 vendor_part_id;
552 u32 hw_rev;
553 void __iomem *priv_addr;
554
555 struct hns_roce_cmdq cmd;
556 struct hns_roce_bitmap pd_bitmap;
557 struct hns_roce_uar_table uar_table;
558 struct hns_roce_mr_table mr_table;
559 struct hns_roce_cq_table cq_table;
560 struct hns_roce_qp_table qp_table;
561 struct hns_roce_eq_table eq_table;
562
563 int cmd_mod;
564 int loop_idc;
565 struct hns_roce_hw *hw;
566};
567
568static inline struct hns_roce_dev *to_hr_dev(struct ib_device *ib_dev)
569{
570 return container_of(ib_dev, struct hns_roce_dev, ib_dev);
571}
572
573static inline struct hns_roce_ucontext
574 *to_hr_ucontext(struct ib_ucontext *ibucontext)
575{
576 return container_of(ibucontext, struct hns_roce_ucontext, ibucontext);
577}
578
579static inline struct hns_roce_pd *to_hr_pd(struct ib_pd *ibpd)
580{
581 return container_of(ibpd, struct hns_roce_pd, ibpd);
582}
583
584static inline struct hns_roce_ah *to_hr_ah(struct ib_ah *ibah)
585{
586 return container_of(ibah, struct hns_roce_ah, ibah);
587}
588
589static inline struct hns_roce_mr *to_hr_mr(struct ib_mr *ibmr)
590{
591 return container_of(ibmr, struct hns_roce_mr, ibmr);
592}
593
594static inline struct hns_roce_qp *to_hr_qp(struct ib_qp *ibqp)
595{
596 return container_of(ibqp, struct hns_roce_qp, ibqp);
597}
598
599static inline struct hns_roce_cq *to_hr_cq(struct ib_cq *ib_cq)
600{
601 return container_of(ib_cq, struct hns_roce_cq, ib_cq);
602}
603
604static inline struct hns_roce_srq *to_hr_srq(struct ib_srq *ibsrq)
605{
606 return container_of(ibsrq, struct hns_roce_srq, ibsrq);
607}
608
609static inline struct hns_roce_sqp *hr_to_hr_sqp(struct hns_roce_qp *hr_qp)
610{
611 return container_of(hr_qp, struct hns_roce_sqp, hr_qp);
612}
613
614static inline void hns_roce_write64_k(__be32 val[2], void __iomem *dest)
615{
616 __raw_writeq(*(u64 *) val, dest);
617}
618
619static inline struct hns_roce_qp
620 *__hns_roce_qp_lookup(struct hns_roce_dev *hr_dev, u32 qpn)
621{
622 return radix_tree_lookup(&hr_dev->qp_table_tree,
623 qpn & (hr_dev->caps.num_qps - 1));
624}
625
626static inline void *hns_roce_buf_offset(struct hns_roce_buf *buf, int offset)
627{
628 u32 bits_per_long_val = BITS_PER_LONG;
629
630 if (bits_per_long_val == 64 || buf->nbufs == 1)
631 return (char *)(buf->direct.buf) + offset;
632 else
633 return (char *)(buf->page_list[offset >> PAGE_SHIFT].buf) +
634 (offset & (PAGE_SIZE - 1));
635}
636
637int hns_roce_init_uar_table(struct hns_roce_dev *dev);
638int hns_roce_uar_alloc(struct hns_roce_dev *dev, struct hns_roce_uar *uar);
639void hns_roce_uar_free(struct hns_roce_dev *dev, struct hns_roce_uar *uar);
640void hns_roce_cleanup_uar_table(struct hns_roce_dev *dev);
641
642int hns_roce_cmd_init(struct hns_roce_dev *hr_dev);
643void hns_roce_cmd_cleanup(struct hns_roce_dev *hr_dev);
644void hns_roce_cmd_event(struct hns_roce_dev *hr_dev, u16 token, u8 status,
645 u64 out_param);
646int hns_roce_cmd_use_events(struct hns_roce_dev *hr_dev);
647void hns_roce_cmd_use_polling(struct hns_roce_dev *hr_dev);
648
649int hns_roce_mtt_init(struct hns_roce_dev *hr_dev, int npages, int page_shift,
650 struct hns_roce_mtt *mtt);
651void hns_roce_mtt_cleanup(struct hns_roce_dev *hr_dev,
652 struct hns_roce_mtt *mtt);
653int hns_roce_buf_write_mtt(struct hns_roce_dev *hr_dev,
654 struct hns_roce_mtt *mtt, struct hns_roce_buf *buf);
655
656int hns_roce_init_pd_table(struct hns_roce_dev *hr_dev);
657int hns_roce_init_mr_table(struct hns_roce_dev *hr_dev);
658int hns_roce_init_eq_table(struct hns_roce_dev *hr_dev);
659int hns_roce_init_cq_table(struct hns_roce_dev *hr_dev);
660int hns_roce_init_qp_table(struct hns_roce_dev *hr_dev);
661
662void hns_roce_cleanup_pd_table(struct hns_roce_dev *hr_dev);
663void hns_roce_cleanup_mr_table(struct hns_roce_dev *hr_dev);
664void hns_roce_cleanup_eq_table(struct hns_roce_dev *hr_dev);
665void hns_roce_cleanup_cq_table(struct hns_roce_dev *hr_dev);
666void hns_roce_cleanup_qp_table(struct hns_roce_dev *hr_dev);
667
668int hns_roce_bitmap_alloc(struct hns_roce_bitmap *bitmap, unsigned long *obj);
669void hns_roce_bitmap_free(struct hns_roce_bitmap *bitmap, unsigned long obj);
670int hns_roce_bitmap_init(struct hns_roce_bitmap *bitmap, u32 num, u32 mask,
671 u32 reserved_bot, u32 resetrved_top);
672void hns_roce_bitmap_cleanup(struct hns_roce_bitmap *bitmap);
673void hns_roce_cleanup_bitmap(struct hns_roce_dev *hr_dev);
674int hns_roce_bitmap_alloc_range(struct hns_roce_bitmap *bitmap, int cnt,
675 int align, unsigned long *obj);
676void hns_roce_bitmap_free_range(struct hns_roce_bitmap *bitmap,
677 unsigned long obj, int cnt);
678
679struct ib_ah *hns_roce_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
680int hns_roce_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr);
681int hns_roce_destroy_ah(struct ib_ah *ah);
682
683struct ib_pd *hns_roce_alloc_pd(struct ib_device *ib_dev,
684 struct ib_ucontext *context,
685 struct ib_udata *udata);
686int hns_roce_dealloc_pd(struct ib_pd *pd);
687
688struct ib_mr *hns_roce_get_dma_mr(struct ib_pd *pd, int acc);
689struct ib_mr *hns_roce_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
690 u64 virt_addr, int access_flags,
691 struct ib_udata *udata);
692int hns_roce_dereg_mr(struct ib_mr *ibmr);
693
694void hns_roce_buf_free(struct hns_roce_dev *hr_dev, u32 size,
695 struct hns_roce_buf *buf);
696int hns_roce_buf_alloc(struct hns_roce_dev *hr_dev, u32 size, u32 max_direct,
697 struct hns_roce_buf *buf);
698
699int hns_roce_ib_umem_write_mtt(struct hns_roce_dev *hr_dev,
700 struct hns_roce_mtt *mtt, struct ib_umem *umem);
701
702struct ib_qp *hns_roce_create_qp(struct ib_pd *ib_pd,
703 struct ib_qp_init_attr *init_attr,
704 struct ib_udata *udata);
705int hns_roce_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
706 int attr_mask, struct ib_udata *udata);
707void *get_recv_wqe(struct hns_roce_qp *hr_qp, int n);
708void *get_send_wqe(struct hns_roce_qp *hr_qp, int n);
709bool hns_roce_wq_overflow(struct hns_roce_wq *hr_wq, int nreq,
710 struct ib_cq *ib_cq);
711enum hns_roce_qp_state to_hns_roce_state(enum ib_qp_state state);
712void hns_roce_lock_cqs(struct hns_roce_cq *send_cq,
713 struct hns_roce_cq *recv_cq);
714void hns_roce_unlock_cqs(struct hns_roce_cq *send_cq,
715 struct hns_roce_cq *recv_cq);
716void hns_roce_qp_remove(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp);
717void hns_roce_qp_free(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp);
718void hns_roce_release_range_qp(struct hns_roce_dev *hr_dev, int base_qpn,
719 int cnt);
720__be32 send_ieth(struct ib_send_wr *wr);
721int to_hr_qp_type(int qp_type);
722
723struct ib_cq *hns_roce_ib_create_cq(struct ib_device *ib_dev,
724 const struct ib_cq_init_attr *attr,
725 struct ib_ucontext *context,
726 struct ib_udata *udata);
727
728int hns_roce_ib_destroy_cq(struct ib_cq *ib_cq);
729
730void hns_roce_cq_completion(struct hns_roce_dev *hr_dev, u32 cqn);
731void hns_roce_cq_event(struct hns_roce_dev *hr_dev, u32 cqn, int event_type);
732void hns_roce_qp_event(struct hns_roce_dev *hr_dev, u32 qpn, int event_type);
733int hns_get_gid_index(struct hns_roce_dev *hr_dev, u8 port, int gid_index);
734
735extern struct hns_roce_hw hns_roce_hw_v1;
736
737#endif /* _HNS_ROCE_DEVICE_H */