blob: 1474cccd1e0f3c4b5e9bc5b6575dc32fc8535349 [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
Saeed Mahameed6cf0a152015-04-02 17:07:30 +03002 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
Eli Cohene126ba92013-07-07 17:25:49 +03003 *
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 MLX5_IB_H
34#define MLX5_IB_H
35
36#include <linux/kernel.h>
37#include <linux/sched.h>
38#include <rdma/ib_verbs.h>
39#include <rdma/ib_smi.h>
40#include <linux/mlx5/driver.h>
41#include <linux/mlx5/cq.h>
42#include <linux/mlx5/qp.h>
43#include <linux/mlx5/srq.h>
44#include <linux/types.h>
45
46#define mlx5_ib_dbg(dev, format, arg...) \
47pr_debug("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \
48 __LINE__, current->pid, ##arg)
49
50#define mlx5_ib_err(dev, format, arg...) \
51pr_err("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \
52 __LINE__, current->pid, ##arg)
53
54#define mlx5_ib_warn(dev, format, arg...) \
55pr_warn("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \
56 __LINE__, current->pid, ##arg)
57
58enum {
59 MLX5_IB_MMAP_CMD_SHIFT = 8,
60 MLX5_IB_MMAP_CMD_MASK = 0xff,
61};
62
63enum mlx5_ib_mmap_cmd {
64 MLX5_IB_MMAP_REGULAR_PAGE = 0,
65 MLX5_IB_MMAP_GET_CONTIGUOUS_PAGES = 1, /* always last */
66};
67
68enum {
69 MLX5_RES_SCAT_DATA32_CQE = 0x1,
70 MLX5_RES_SCAT_DATA64_CQE = 0x2,
71 MLX5_REQ_SCAT_DATA32_CQE = 0x11,
72 MLX5_REQ_SCAT_DATA64_CQE = 0x22,
73};
74
75enum mlx5_ib_latency_class {
76 MLX5_IB_LATENCY_CLASS_LOW,
77 MLX5_IB_LATENCY_CLASS_MEDIUM,
78 MLX5_IB_LATENCY_CLASS_HIGH,
79 MLX5_IB_LATENCY_CLASS_FAST_PATH
80};
81
82enum mlx5_ib_mad_ifc_flags {
83 MLX5_MAD_IFC_IGNORE_MKEY = 1,
84 MLX5_MAD_IFC_IGNORE_BKEY = 2,
85 MLX5_MAD_IFC_NET_VIEW = 4,
86};
87
88struct mlx5_ib_ucontext {
89 struct ib_ucontext ibucontext;
90 struct list_head db_page_list;
91
92 /* protect doorbell record alloc/free
93 */
94 struct mutex db_page_mutex;
95 struct mlx5_uuar_info uuari;
96};
97
98static inline struct mlx5_ib_ucontext *to_mucontext(struct ib_ucontext *ibucontext)
99{
100 return container_of(ibucontext, struct mlx5_ib_ucontext, ibucontext);
101}
102
103struct mlx5_ib_pd {
104 struct ib_pd ibpd;
105 u32 pdn;
Eli Cohene126ba92013-07-07 17:25:49 +0300106};
107
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200108#define MLX5_IB_FLOW_MCAST_PRIO (MLX5_BY_PASS_NUM_PRIOS - 1)
109#define MLX5_IB_FLOW_LAST_PRIO (MLX5_IB_FLOW_MCAST_PRIO - 1)
110#if (MLX5_IB_FLOW_LAST_PRIO <= 0)
111#error "Invalid number of bypass priorities"
112#endif
113#define MLX5_IB_FLOW_LEFTOVERS_PRIO (MLX5_IB_FLOW_MCAST_PRIO + 1)
114
115#define MLX5_IB_NUM_FLOW_FT (MLX5_IB_FLOW_LEFTOVERS_PRIO + 1)
116struct mlx5_ib_flow_prio {
117 struct mlx5_flow_table *flow_table;
118 unsigned int refcount;
119};
120
121struct mlx5_ib_flow_handler {
122 struct list_head list;
123 struct ib_flow ibflow;
124 unsigned int prio;
125 struct mlx5_flow_rule *rule;
126};
127
128struct mlx5_ib_flow_db {
129 struct mlx5_ib_flow_prio prios[MLX5_IB_NUM_FLOW_FT];
130 /* Protect flow steering bypass flow tables
131 * when add/del flow rules.
132 * only single add/removal of flow steering rule could be done
133 * simultaneously.
134 */
135 struct mutex lock;
136};
137
Eli Cohene126ba92013-07-07 17:25:49 +0300138/* Use macros here so that don't have to duplicate
139 * enum ib_send_flags and enum ib_qp_type for low-level driver
140 */
141
142#define MLX5_IB_SEND_UMR_UNREG IB_SEND_RESERVED_START
Haggai Eran968e78d2014-12-11 17:04:11 +0200143#define MLX5_IB_SEND_UMR_FAIL_IF_FREE (IB_SEND_RESERVED_START << 1)
144#define MLX5_IB_SEND_UMR_UPDATE_MTT (IB_SEND_RESERVED_START << 2)
Eli Cohene126ba92013-07-07 17:25:49 +0300145#define MLX5_IB_QPT_REG_UMR IB_QPT_RESERVED1
146#define MLX5_IB_WR_UMR IB_WR_RESERVED1
147
148struct wr_list {
149 u16 opcode;
150 u16 next;
151};
152
153struct mlx5_ib_wq {
154 u64 *wrid;
155 u32 *wr_data;
156 struct wr_list *w_list;
157 unsigned *wqe_head;
158 u16 unsig_count;
159
160 /* serialize post to the work queue
161 */
162 spinlock_t lock;
163 int wqe_cnt;
164 int max_post;
165 int max_gs;
166 int offset;
167 int wqe_shift;
168 unsigned head;
169 unsigned tail;
170 u16 cur_post;
171 u16 last_poll;
172 void *qend;
173};
174
175enum {
176 MLX5_QP_USER,
177 MLX5_QP_KERNEL,
178 MLX5_QP_EMPTY
179};
180
Haggai Eran6aec21f2014-12-11 17:04:23 +0200181/*
182 * Connect-IB can trigger up to four concurrent pagefaults
183 * per-QP.
184 */
185enum mlx5_ib_pagefault_context {
186 MLX5_IB_PAGEFAULT_RESPONDER_READ,
187 MLX5_IB_PAGEFAULT_REQUESTOR_READ,
188 MLX5_IB_PAGEFAULT_RESPONDER_WRITE,
189 MLX5_IB_PAGEFAULT_REQUESTOR_WRITE,
190 MLX5_IB_PAGEFAULT_CONTEXTS
191};
192
193static inline enum mlx5_ib_pagefault_context
194 mlx5_ib_get_pagefault_context(struct mlx5_pagefault *pagefault)
195{
196 return pagefault->flags & (MLX5_PFAULT_REQUESTOR | MLX5_PFAULT_WRITE);
197}
198
199struct mlx5_ib_pfault {
200 struct work_struct work;
201 struct mlx5_pagefault mpfault;
202};
203
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200204struct mlx5_ib_rq {
205 u32 tirn;
206};
207
208struct mlx5_ib_raw_packet_qp {
209 struct mlx5_ib_rq rq;
210};
211
Eli Cohene126ba92013-07-07 17:25:49 +0300212struct mlx5_ib_qp {
213 struct ib_qp ibqp;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200214 union {
215 struct mlx5_core_qp mqp;
216 struct mlx5_ib_raw_packet_qp raw_packet_qp;
217 };
218
Eli Cohene126ba92013-07-07 17:25:49 +0300219 struct mlx5_buf buf;
220
221 struct mlx5_db db;
222 struct mlx5_ib_wq rq;
223
224 u32 doorbell_qpn;
225 u8 sq_signal_bits;
226 u8 fm_cache;
227 int sq_max_wqes_per_wr;
228 int sq_spare_wqes;
229 struct mlx5_ib_wq sq;
230
231 struct ib_umem *umem;
232 int buf_size;
233
234 /* serialize qp state modifications
235 */
236 struct mutex mutex;
237 u16 xrcdn;
238 u32 flags;
239 u8 port;
240 u8 alt_port;
241 u8 atomic_rd_en;
242 u8 resp_depth;
243 u8 state;
244 int mlx_type;
245 int wq_sig;
246 int scat_cqe;
247 int max_inline_data;
248 struct mlx5_bf *bf;
249 int has_rq;
250
251 /* only for user space QPs. For kernel
252 * we have it from the bf object
253 */
254 int uuarn;
255
256 int create_type;
Sagi Grimberge1e66cc2014-02-23 14:19:07 +0200257
258 /* Store signature errors */
259 bool signature_en;
Haggai Eran6aec21f2014-12-11 17:04:23 +0200260
261#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
262 /*
263 * A flag that is true for QP's that are in a state that doesn't
264 * allow page faults, and shouldn't schedule any more faults.
265 */
266 int disable_page_faults;
267 /*
268 * The disable_page_faults_lock protects a QP's disable_page_faults
269 * field, allowing for a thread to atomically check whether the QP
270 * allows page faults, and if so schedule a page fault.
271 */
272 spinlock_t disable_page_faults_lock;
273 struct mlx5_ib_pfault pagefaults[MLX5_IB_PAGEFAULT_CONTEXTS];
274#endif
Eli Cohene126ba92013-07-07 17:25:49 +0300275};
276
277struct mlx5_ib_cq_buf {
278 struct mlx5_buf buf;
279 struct ib_umem *umem;
280 int cqe_size;
Eli Cohenbde51582014-01-14 17:45:18 +0200281 int nent;
Eli Cohene126ba92013-07-07 17:25:49 +0300282};
283
284enum mlx5_ib_qp_flags {
285 MLX5_IB_QP_BLOCK_MULTICAST_LOOPBACK = 1 << 0,
286 MLX5_IB_QP_SIGNATURE_HANDLING = 1 << 1,
287};
288
Haggai Eran968e78d2014-12-11 17:04:11 +0200289struct mlx5_umr_wr {
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100290 struct ib_send_wr wr;
Haggai Eran968e78d2014-12-11 17:04:11 +0200291 union {
292 u64 virt_addr;
293 u64 offset;
294 } target;
295 struct ib_pd *pd;
296 unsigned int page_shift;
297 unsigned int npages;
298 u32 length;
299 int access_flags;
300 u32 mkey;
301};
302
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100303static inline struct mlx5_umr_wr *umr_wr(struct ib_send_wr *wr)
304{
305 return container_of(wr, struct mlx5_umr_wr, wr);
306}
307
Eli Cohene126ba92013-07-07 17:25:49 +0300308struct mlx5_shared_mr_info {
309 int mr_id;
310 struct ib_umem *umem;
311};
312
313struct mlx5_ib_cq {
314 struct ib_cq ibcq;
315 struct mlx5_core_cq mcq;
316 struct mlx5_ib_cq_buf buf;
317 struct mlx5_db db;
318
319 /* serialize access to the CQ
320 */
321 spinlock_t lock;
322
323 /* protect resize cq
324 */
325 struct mutex resize_mutex;
Eli Cohenbde51582014-01-14 17:45:18 +0200326 struct mlx5_ib_cq_buf *resize_buf;
Eli Cohene126ba92013-07-07 17:25:49 +0300327 struct ib_umem *resize_umem;
328 int cqe_size;
329};
330
331struct mlx5_ib_srq {
332 struct ib_srq ibsrq;
333 struct mlx5_core_srq msrq;
334 struct mlx5_buf buf;
335 struct mlx5_db db;
336 u64 *wrid;
337 /* protect SRQ hanlding
338 */
339 spinlock_t lock;
340 int head;
341 int tail;
342 u16 wqe_ctr;
343 struct ib_umem *umem;
344 /* serialize arming a SRQ
345 */
346 struct mutex mutex;
347 int wq_sig;
348};
349
350struct mlx5_ib_xrcd {
351 struct ib_xrcd ibxrcd;
352 u32 xrcdn;
353};
354
Haggai Erancc149f752014-12-11 17:04:21 +0200355enum mlx5_ib_mtt_access_flags {
356 MLX5_IB_MTT_READ = (1 << 0),
357 MLX5_IB_MTT_WRITE = (1 << 1),
358};
359
360#define MLX5_IB_MTT_PRESENT (MLX5_IB_MTT_READ | MLX5_IB_MTT_WRITE)
361
Eli Cohene126ba92013-07-07 17:25:49 +0300362struct mlx5_ib_mr {
363 struct ib_mr ibmr;
Sagi Grimberg8a187ee2015-10-13 19:11:26 +0300364 void *descs;
365 dma_addr_t desc_map;
366 int ndescs;
367 int max_descs;
368 int desc_size;
Eli Cohene126ba92013-07-07 17:25:49 +0300369 struct mlx5_core_mr mmr;
370 struct ib_umem *umem;
371 struct mlx5_shared_mr_info *smr_info;
372 struct list_head list;
373 int order;
374 int umred;
Eli Cohene126ba92013-07-07 17:25:49 +0300375 int npages;
Eli Cohen746b5582013-10-23 09:53:14 +0300376 struct mlx5_ib_dev *dev;
377 struct mlx5_create_mkey_mbox_out out;
Sagi Grimberg3121e3c2014-02-23 14:19:06 +0200378 struct mlx5_core_sig_ctx *sig;
Haggai Eranb4cfe442014-12-11 17:04:26 +0200379 int live;
Sagi Grimberg8a187ee2015-10-13 19:11:26 +0300380 void *descs_alloc;
Eli Cohene126ba92013-07-07 17:25:49 +0300381};
382
Shachar Raindela74d2412014-05-22 14:50:12 +0300383struct mlx5_ib_umr_context {
384 enum ib_wc_status status;
385 struct completion done;
386};
387
388static inline void mlx5_ib_init_umr_context(struct mlx5_ib_umr_context *context)
389{
390 context->status = -1;
391 init_completion(&context->done);
392}
393
Eli Cohene126ba92013-07-07 17:25:49 +0300394struct umr_common {
395 struct ib_pd *pd;
396 struct ib_cq *cq;
397 struct ib_qp *qp;
Eli Cohene126ba92013-07-07 17:25:49 +0300398 /* control access to UMR QP
399 */
400 struct semaphore sem;
401};
402
403enum {
404 MLX5_FMR_INVALID,
405 MLX5_FMR_VALID,
406 MLX5_FMR_BUSY,
407};
408
Eli Cohene126ba92013-07-07 17:25:49 +0300409struct mlx5_cache_ent {
410 struct list_head head;
411 /* sync access to the cahce entry
412 */
413 spinlock_t lock;
414
415
416 struct dentry *dir;
417 char name[4];
418 u32 order;
419 u32 size;
420 u32 cur;
421 u32 miss;
422 u32 limit;
423
424 struct dentry *fsize;
425 struct dentry *fcur;
426 struct dentry *fmiss;
427 struct dentry *flimit;
428
429 struct mlx5_ib_dev *dev;
430 struct work_struct work;
431 struct delayed_work dwork;
Eli Cohen746b5582013-10-23 09:53:14 +0300432 int pending;
Eli Cohene126ba92013-07-07 17:25:49 +0300433};
434
435struct mlx5_mr_cache {
436 struct workqueue_struct *wq;
437 struct mlx5_cache_ent ent[MAX_MR_CACHE_ENTRIES];
438 int stopped;
439 struct dentry *root;
440 unsigned long last_add;
441};
442
443struct mlx5_ib_resources {
444 struct ib_cq *c0;
445 struct ib_xrcd *x0;
446 struct ib_xrcd *x1;
447 struct ib_pd *p0;
448 struct ib_srq *s0;
Haggai Abramonvsky4aa17b22015-06-04 19:30:48 +0300449 struct ib_srq *s1;
Eli Cohene126ba92013-07-07 17:25:49 +0300450};
451
452struct mlx5_ib_dev {
453 struct ib_device ib_dev;
Jack Morgenstein9603b612014-07-28 23:30:22 +0300454 struct mlx5_core_dev *mdev;
Eli Cohene126ba92013-07-07 17:25:49 +0300455 MLX5_DECLARE_DOORBELL_LOCK(uar_lock);
Eli Cohene126ba92013-07-07 17:25:49 +0300456 int num_ports;
Eli Cohene126ba92013-07-07 17:25:49 +0300457 /* serialize update of capability mask
458 */
459 struct mutex cap_mask_mutex;
460 bool ib_active;
461 struct umr_common umrc;
462 /* sync used page count stats
463 */
Eli Cohene126ba92013-07-07 17:25:49 +0300464 struct mlx5_ib_resources devr;
465 struct mlx5_mr_cache cache;
Eli Cohen746b5582013-10-23 09:53:14 +0300466 struct timer_list delay_timer;
467 int fill_delay;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200468#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
469 struct ib_odp_caps odp_caps;
Haggai Eran6aec21f2014-12-11 17:04:23 +0200470 /*
471 * Sleepable RCU that prevents destruction of MRs while they are still
472 * being used by a page fault handler.
473 */
474 struct srcu_struct mr_srcu;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200475#endif
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200476 struct mlx5_ib_flow_db flow_db;
Eli Cohene126ba92013-07-07 17:25:49 +0300477};
478
479static inline struct mlx5_ib_cq *to_mibcq(struct mlx5_core_cq *mcq)
480{
481 return container_of(mcq, struct mlx5_ib_cq, mcq);
482}
483
484static inline struct mlx5_ib_xrcd *to_mxrcd(struct ib_xrcd *ibxrcd)
485{
486 return container_of(ibxrcd, struct mlx5_ib_xrcd, ibxrcd);
487}
488
489static inline struct mlx5_ib_dev *to_mdev(struct ib_device *ibdev)
490{
491 return container_of(ibdev, struct mlx5_ib_dev, ib_dev);
492}
493
Eli Cohene126ba92013-07-07 17:25:49 +0300494static inline struct mlx5_ib_cq *to_mcq(struct ib_cq *ibcq)
495{
496 return container_of(ibcq, struct mlx5_ib_cq, ibcq);
497}
498
499static inline struct mlx5_ib_qp *to_mibqp(struct mlx5_core_qp *mqp)
500{
501 return container_of(mqp, struct mlx5_ib_qp, mqp);
502}
503
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200504static inline struct mlx5_ib_mr *to_mibmr(struct mlx5_core_mr *mmr)
505{
506 return container_of(mmr, struct mlx5_ib_mr, mmr);
507}
508
Eli Cohene126ba92013-07-07 17:25:49 +0300509static inline struct mlx5_ib_pd *to_mpd(struct ib_pd *ibpd)
510{
511 return container_of(ibpd, struct mlx5_ib_pd, ibpd);
512}
513
514static inline struct mlx5_ib_srq *to_msrq(struct ib_srq *ibsrq)
515{
516 return container_of(ibsrq, struct mlx5_ib_srq, ibsrq);
517}
518
519static inline struct mlx5_ib_qp *to_mqp(struct ib_qp *ibqp)
520{
521 return container_of(ibqp, struct mlx5_ib_qp, ibqp);
522}
523
524static inline struct mlx5_ib_srq *to_mibsrq(struct mlx5_core_srq *msrq)
525{
526 return container_of(msrq, struct mlx5_ib_srq, msrq);
527}
528
529static inline struct mlx5_ib_mr *to_mmr(struct ib_mr *ibmr)
530{
531 return container_of(ibmr, struct mlx5_ib_mr, ibmr);
532}
533
Eli Cohene126ba92013-07-07 17:25:49 +0300534struct mlx5_ib_ah {
535 struct ib_ah ibah;
536 struct mlx5_av av;
537};
538
539static inline struct mlx5_ib_ah *to_mah(struct ib_ah *ibah)
540{
541 return container_of(ibah, struct mlx5_ib_ah, ibah);
542}
543
Eli Cohene126ba92013-07-07 17:25:49 +0300544int mlx5_ib_db_map_user(struct mlx5_ib_ucontext *context, unsigned long virt,
545 struct mlx5_db *db);
546void mlx5_ib_db_unmap_user(struct mlx5_ib_ucontext *context, struct mlx5_db *db);
547void __mlx5_ib_cq_clean(struct mlx5_ib_cq *cq, u32 qpn, struct mlx5_ib_srq *srq);
548void mlx5_ib_cq_clean(struct mlx5_ib_cq *cq, u32 qpn, struct mlx5_ib_srq *srq);
549void mlx5_ib_free_srq_wqe(struct mlx5_ib_srq *srq, int wqe_index);
550int mlx5_MAD_IFC(struct mlx5_ib_dev *dev, int ignore_mkey, int ignore_bkey,
Ira Weinya97e2d82015-05-31 17:15:30 -0400551 u8 port, const struct ib_wc *in_wc, const struct ib_grh *in_grh,
552 const void *in_mad, void *response_mad);
Eli Cohene126ba92013-07-07 17:25:49 +0300553struct ib_ah *create_ib_ah(struct ib_ah_attr *ah_attr,
554 struct mlx5_ib_ah *ah);
555struct ib_ah *mlx5_ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
556int mlx5_ib_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr);
557int mlx5_ib_destroy_ah(struct ib_ah *ah);
558struct ib_srq *mlx5_ib_create_srq(struct ib_pd *pd,
559 struct ib_srq_init_attr *init_attr,
560 struct ib_udata *udata);
561int mlx5_ib_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
562 enum ib_srq_attr_mask attr_mask, struct ib_udata *udata);
563int mlx5_ib_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr);
564int mlx5_ib_destroy_srq(struct ib_srq *srq);
565int mlx5_ib_post_srq_recv(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
566 struct ib_recv_wr **bad_wr);
567struct ib_qp *mlx5_ib_create_qp(struct ib_pd *pd,
568 struct ib_qp_init_attr *init_attr,
569 struct ib_udata *udata);
570int mlx5_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
571 int attr_mask, struct ib_udata *udata);
572int mlx5_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
573 struct ib_qp_init_attr *qp_init_attr);
574int mlx5_ib_destroy_qp(struct ib_qp *qp);
575int mlx5_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
576 struct ib_send_wr **bad_wr);
577int mlx5_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
578 struct ib_recv_wr **bad_wr);
579void *mlx5_get_send_wqe(struct mlx5_ib_qp *qp, int n);
Haggai Eranc1395a22014-12-11 17:04:14 +0200580int mlx5_ib_read_user_wqe(struct mlx5_ib_qp *qp, int send, int wqe_index,
581 void *buffer, u32 length);
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300582struct ib_cq *mlx5_ib_create_cq(struct ib_device *ibdev,
583 const struct ib_cq_init_attr *attr,
584 struct ib_ucontext *context,
Eli Cohene126ba92013-07-07 17:25:49 +0300585 struct ib_udata *udata);
586int mlx5_ib_destroy_cq(struct ib_cq *cq);
587int mlx5_ib_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
588int mlx5_ib_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
589int mlx5_ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
590int mlx5_ib_resize_cq(struct ib_cq *ibcq, int entries, struct ib_udata *udata);
591struct ib_mr *mlx5_ib_get_dma_mr(struct ib_pd *pd, int acc);
592struct ib_mr *mlx5_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
593 u64 virt_addr, int access_flags,
594 struct ib_udata *udata);
Haggai Eran832a6b02014-12-11 17:04:22 +0200595int mlx5_ib_update_mtt(struct mlx5_ib_mr *mr, u64 start_page_index,
596 int npages, int zap);
Eli Cohene126ba92013-07-07 17:25:49 +0300597int mlx5_ib_dereg_mr(struct ib_mr *ibmr);
Sagi Grimberg9bee1782015-07-30 10:32:35 +0300598struct ib_mr *mlx5_ib_alloc_mr(struct ib_pd *pd,
599 enum ib_mr_type mr_type,
600 u32 max_num_sg);
Sagi Grimberg8a187ee2015-10-13 19:11:26 +0300601int mlx5_ib_map_mr_sg(struct ib_mr *ibmr,
602 struct scatterlist *sg,
603 int sg_nents);
Eli Cohene126ba92013-07-07 17:25:49 +0300604int mlx5_ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
Ira Weinya97e2d82015-05-31 17:15:30 -0400605 const struct ib_wc *in_wc, const struct ib_grh *in_grh,
Ira Weiny4cd7c942015-06-06 14:38:31 -0400606 const struct ib_mad_hdr *in, size_t in_mad_size,
607 struct ib_mad_hdr *out, size_t *out_mad_size,
608 u16 *out_mad_pkey_index);
Eli Cohene126ba92013-07-07 17:25:49 +0300609struct ib_xrcd *mlx5_ib_alloc_xrcd(struct ib_device *ibdev,
610 struct ib_ucontext *context,
611 struct ib_udata *udata);
612int mlx5_ib_dealloc_xrcd(struct ib_xrcd *xrcd);
Eli Cohene126ba92013-07-07 17:25:49 +0300613int mlx5_ib_get_buf_offset(u64 addr, int page_shift, u32 *offset);
614int mlx5_query_ext_port_caps(struct mlx5_ib_dev *dev, u8 port);
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300615int mlx5_query_mad_ifc_smp_attr_node_info(struct ib_device *ibdev,
616 struct ib_smp *out_mad);
617int mlx5_query_mad_ifc_system_image_guid(struct ib_device *ibdev,
618 __be64 *sys_image_guid);
619int mlx5_query_mad_ifc_max_pkeys(struct ib_device *ibdev,
620 u16 *max_pkeys);
621int mlx5_query_mad_ifc_vendor_id(struct ib_device *ibdev,
622 u32 *vendor_id);
623int mlx5_query_mad_ifc_node_desc(struct mlx5_ib_dev *dev, char *node_desc);
624int mlx5_query_mad_ifc_node_guid(struct mlx5_ib_dev *dev, __be64 *node_guid);
625int mlx5_query_mad_ifc_pkey(struct ib_device *ibdev, u8 port, u16 index,
626 u16 *pkey);
627int mlx5_query_mad_ifc_gids(struct ib_device *ibdev, u8 port, int index,
628 union ib_gid *gid);
629int mlx5_query_mad_ifc_port(struct ib_device *ibdev, u8 port,
630 struct ib_port_attr *props);
Eli Cohene126ba92013-07-07 17:25:49 +0300631int mlx5_ib_query_port(struct ib_device *ibdev, u8 port,
632 struct ib_port_attr *props);
633int mlx5_ib_init_fmr(struct mlx5_ib_dev *dev);
634void mlx5_ib_cleanup_fmr(struct mlx5_ib_dev *dev);
635void mlx5_ib_cont_pages(struct ib_umem *umem, u64 addr, int *count, int *shift,
636 int *ncont, int *order);
Haggai Eran832a6b02014-12-11 17:04:22 +0200637void __mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
638 int page_shift, size_t offset, size_t num_pages,
639 __be64 *pas, int access_flags);
Eli Cohene126ba92013-07-07 17:25:49 +0300640void mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
Haggai Erancc149f752014-12-11 17:04:21 +0200641 int page_shift, __be64 *pas, int access_flags);
Eli Cohene126ba92013-07-07 17:25:49 +0300642void mlx5_ib_copy_pas(u64 *old, u64 *new, int step, int num);
643int mlx5_ib_get_cqe_size(struct mlx5_ib_dev *dev, struct ib_cq *ibcq);
644int mlx5_mr_cache_init(struct mlx5_ib_dev *dev);
645int mlx5_mr_cache_cleanup(struct mlx5_ib_dev *dev);
646int mlx5_mr_ib_cont_pages(struct ib_umem *umem, u64 addr, int *count, int *shift);
647void mlx5_umr_cq_handler(struct ib_cq *cq, void *cq_context);
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200648int mlx5_ib_check_mr_status(struct ib_mr *ibmr, u32 check_mask,
649 struct ib_mr_status *mr_status);
Eli Cohene126ba92013-07-07 17:25:49 +0300650
Haggai Eran8cdd3122014-12-11 17:04:20 +0200651#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
Haggai Eran6aec21f2014-12-11 17:04:23 +0200652extern struct workqueue_struct *mlx5_ib_page_fault_wq;
653
Saeed Mahameed938fe832015-05-28 22:28:41 +0300654void mlx5_ib_internal_fill_odp_caps(struct mlx5_ib_dev *dev);
Haggai Eran6aec21f2014-12-11 17:04:23 +0200655void mlx5_ib_mr_pfault_handler(struct mlx5_ib_qp *qp,
656 struct mlx5_ib_pfault *pfault);
657void mlx5_ib_odp_create_qp(struct mlx5_ib_qp *qp);
658int mlx5_ib_odp_init_one(struct mlx5_ib_dev *ibdev);
659void mlx5_ib_odp_remove_one(struct mlx5_ib_dev *ibdev);
660int __init mlx5_ib_odp_init(void);
661void mlx5_ib_odp_cleanup(void);
662void mlx5_ib_qp_disable_pagefaults(struct mlx5_ib_qp *qp);
663void mlx5_ib_qp_enable_pagefaults(struct mlx5_ib_qp *qp);
Haggai Eranb4cfe442014-12-11 17:04:26 +0200664void mlx5_ib_invalidate_range(struct ib_umem *umem, unsigned long start,
665 unsigned long end);
Haggai Eran6aec21f2014-12-11 17:04:23 +0200666
667#else /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
Saeed Mahameed938fe832015-05-28 22:28:41 +0300668static inline void mlx5_ib_internal_fill_odp_caps(struct mlx5_ib_dev *dev)
Haggai Eran8cdd3122014-12-11 17:04:20 +0200669{
Saeed Mahameed938fe832015-05-28 22:28:41 +0300670 return;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200671}
Haggai Eran6aec21f2014-12-11 17:04:23 +0200672
673static inline void mlx5_ib_odp_create_qp(struct mlx5_ib_qp *qp) {}
674static inline int mlx5_ib_odp_init_one(struct mlx5_ib_dev *ibdev) { return 0; }
675static inline void mlx5_ib_odp_remove_one(struct mlx5_ib_dev *ibdev) {}
676static inline int mlx5_ib_odp_init(void) { return 0; }
677static inline void mlx5_ib_odp_cleanup(void) {}
678static inline void mlx5_ib_qp_disable_pagefaults(struct mlx5_ib_qp *qp) {}
679static inline void mlx5_ib_qp_enable_pagefaults(struct mlx5_ib_qp *qp) {}
680
Haggai Eran8cdd3122014-12-11 17:04:20 +0200681#endif /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
682
Eli Cohene126ba92013-07-07 17:25:49 +0300683static inline void init_query_mad(struct ib_smp *mad)
684{
685 mad->base_version = 1;
686 mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
687 mad->class_version = 1;
688 mad->method = IB_MGMT_METHOD_GET;
689}
690
691static inline u8 convert_access(int acc)
692{
693 return (acc & IB_ACCESS_REMOTE_ATOMIC ? MLX5_PERM_ATOMIC : 0) |
694 (acc & IB_ACCESS_REMOTE_WRITE ? MLX5_PERM_REMOTE_WRITE : 0) |
695 (acc & IB_ACCESS_REMOTE_READ ? MLX5_PERM_REMOTE_READ : 0) |
696 (acc & IB_ACCESS_LOCAL_WRITE ? MLX5_PERM_LOCAL_WRITE : 0) |
697 MLX5_PERM_LOCAL_READ;
698}
699
Sagi Grimbergb6364012015-09-02 22:23:04 +0300700static inline int is_qp1(enum ib_qp_type qp_type)
701{
702 return qp_type == IB_QPT_GSI;
703}
704
Haggai Erancc149f752014-12-11 17:04:21 +0200705#define MLX5_MAX_UMR_SHIFT 16
706#define MLX5_MAX_UMR_PAGES (1 << MLX5_MAX_UMR_SHIFT)
707
Eli Cohene126ba92013-07-07 17:25:49 +0300708#endif /* MLX5_IB_H */