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