blob: 22123b79d550d6a7e0474501592f36dc6f0b632e [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
108/* Use macros here so that don't have to duplicate
109 * enum ib_send_flags and enum ib_qp_type for low-level driver
110 */
111
112#define MLX5_IB_SEND_UMR_UNREG IB_SEND_RESERVED_START
Haggai Eran968e78d2014-12-11 17:04:11 +0200113#define MLX5_IB_SEND_UMR_FAIL_IF_FREE (IB_SEND_RESERVED_START << 1)
114#define MLX5_IB_SEND_UMR_UPDATE_MTT (IB_SEND_RESERVED_START << 2)
Eli Cohene126ba92013-07-07 17:25:49 +0300115#define MLX5_IB_QPT_REG_UMR IB_QPT_RESERVED1
116#define MLX5_IB_WR_UMR IB_WR_RESERVED1
117
118struct wr_list {
119 u16 opcode;
120 u16 next;
121};
122
123struct mlx5_ib_wq {
124 u64 *wrid;
125 u32 *wr_data;
126 struct wr_list *w_list;
127 unsigned *wqe_head;
128 u16 unsig_count;
129
130 /* serialize post to the work queue
131 */
132 spinlock_t lock;
133 int wqe_cnt;
134 int max_post;
135 int max_gs;
136 int offset;
137 int wqe_shift;
138 unsigned head;
139 unsigned tail;
140 u16 cur_post;
141 u16 last_poll;
142 void *qend;
143};
144
145enum {
146 MLX5_QP_USER,
147 MLX5_QP_KERNEL,
148 MLX5_QP_EMPTY
149};
150
Haggai Eran6aec21f2014-12-11 17:04:23 +0200151/*
152 * Connect-IB can trigger up to four concurrent pagefaults
153 * per-QP.
154 */
155enum mlx5_ib_pagefault_context {
156 MLX5_IB_PAGEFAULT_RESPONDER_READ,
157 MLX5_IB_PAGEFAULT_REQUESTOR_READ,
158 MLX5_IB_PAGEFAULT_RESPONDER_WRITE,
159 MLX5_IB_PAGEFAULT_REQUESTOR_WRITE,
160 MLX5_IB_PAGEFAULT_CONTEXTS
161};
162
163static inline enum mlx5_ib_pagefault_context
164 mlx5_ib_get_pagefault_context(struct mlx5_pagefault *pagefault)
165{
166 return pagefault->flags & (MLX5_PFAULT_REQUESTOR | MLX5_PFAULT_WRITE);
167}
168
169struct mlx5_ib_pfault {
170 struct work_struct work;
171 struct mlx5_pagefault mpfault;
172};
173
Eli Cohene126ba92013-07-07 17:25:49 +0300174struct mlx5_ib_qp {
175 struct ib_qp ibqp;
176 struct mlx5_core_qp mqp;
177 struct mlx5_buf buf;
178
179 struct mlx5_db db;
180 struct mlx5_ib_wq rq;
181
182 u32 doorbell_qpn;
183 u8 sq_signal_bits;
184 u8 fm_cache;
185 int sq_max_wqes_per_wr;
186 int sq_spare_wqes;
187 struct mlx5_ib_wq sq;
188
189 struct ib_umem *umem;
190 int buf_size;
191
192 /* serialize qp state modifications
193 */
194 struct mutex mutex;
195 u16 xrcdn;
196 u32 flags;
197 u8 port;
198 u8 alt_port;
199 u8 atomic_rd_en;
200 u8 resp_depth;
201 u8 state;
202 int mlx_type;
203 int wq_sig;
204 int scat_cqe;
205 int max_inline_data;
206 struct mlx5_bf *bf;
207 int has_rq;
208
209 /* only for user space QPs. For kernel
210 * we have it from the bf object
211 */
212 int uuarn;
213
214 int create_type;
Sagi Grimberge1e66cc2014-02-23 14:19:07 +0200215
216 /* Store signature errors */
217 bool signature_en;
Haggai Eran6aec21f2014-12-11 17:04:23 +0200218
219#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
220 /*
221 * A flag that is true for QP's that are in a state that doesn't
222 * allow page faults, and shouldn't schedule any more faults.
223 */
224 int disable_page_faults;
225 /*
226 * The disable_page_faults_lock protects a QP's disable_page_faults
227 * field, allowing for a thread to atomically check whether the QP
228 * allows page faults, and if so schedule a page fault.
229 */
230 spinlock_t disable_page_faults_lock;
231 struct mlx5_ib_pfault pagefaults[MLX5_IB_PAGEFAULT_CONTEXTS];
232#endif
Eli Cohene126ba92013-07-07 17:25:49 +0300233};
234
235struct mlx5_ib_cq_buf {
236 struct mlx5_buf buf;
237 struct ib_umem *umem;
238 int cqe_size;
Eli Cohenbde51582014-01-14 17:45:18 +0200239 int nent;
Eli Cohene126ba92013-07-07 17:25:49 +0300240};
241
242enum mlx5_ib_qp_flags {
243 MLX5_IB_QP_BLOCK_MULTICAST_LOOPBACK = 1 << 0,
244 MLX5_IB_QP_SIGNATURE_HANDLING = 1 << 1,
245};
246
Haggai Eran968e78d2014-12-11 17:04:11 +0200247struct mlx5_umr_wr {
248 union {
249 u64 virt_addr;
250 u64 offset;
251 } target;
252 struct ib_pd *pd;
253 unsigned int page_shift;
254 unsigned int npages;
255 u32 length;
256 int access_flags;
257 u32 mkey;
258};
259
Eli Cohene126ba92013-07-07 17:25:49 +0300260struct mlx5_shared_mr_info {
261 int mr_id;
262 struct ib_umem *umem;
263};
264
265struct mlx5_ib_cq {
266 struct ib_cq ibcq;
267 struct mlx5_core_cq mcq;
268 struct mlx5_ib_cq_buf buf;
269 struct mlx5_db db;
270
271 /* serialize access to the CQ
272 */
273 spinlock_t lock;
274
275 /* protect resize cq
276 */
277 struct mutex resize_mutex;
Eli Cohenbde51582014-01-14 17:45:18 +0200278 struct mlx5_ib_cq_buf *resize_buf;
Eli Cohene126ba92013-07-07 17:25:49 +0300279 struct ib_umem *resize_umem;
280 int cqe_size;
281};
282
283struct mlx5_ib_srq {
284 struct ib_srq ibsrq;
285 struct mlx5_core_srq msrq;
286 struct mlx5_buf buf;
287 struct mlx5_db db;
288 u64 *wrid;
289 /* protect SRQ hanlding
290 */
291 spinlock_t lock;
292 int head;
293 int tail;
294 u16 wqe_ctr;
295 struct ib_umem *umem;
296 /* serialize arming a SRQ
297 */
298 struct mutex mutex;
299 int wq_sig;
300};
301
302struct mlx5_ib_xrcd {
303 struct ib_xrcd ibxrcd;
304 u32 xrcdn;
305};
306
Haggai Erancc149f752014-12-11 17:04:21 +0200307enum mlx5_ib_mtt_access_flags {
308 MLX5_IB_MTT_READ = (1 << 0),
309 MLX5_IB_MTT_WRITE = (1 << 1),
310};
311
312#define MLX5_IB_MTT_PRESENT (MLX5_IB_MTT_READ | MLX5_IB_MTT_WRITE)
313
Eli Cohene126ba92013-07-07 17:25:49 +0300314struct mlx5_ib_mr {
315 struct ib_mr ibmr;
316 struct mlx5_core_mr mmr;
317 struct ib_umem *umem;
318 struct mlx5_shared_mr_info *smr_info;
319 struct list_head list;
320 int order;
321 int umred;
Eli Cohene126ba92013-07-07 17:25:49 +0300322 int npages;
Eli Cohen746b5582013-10-23 09:53:14 +0300323 struct mlx5_ib_dev *dev;
324 struct mlx5_create_mkey_mbox_out out;
Sagi Grimberg3121e3c2014-02-23 14:19:06 +0200325 struct mlx5_core_sig_ctx *sig;
Haggai Eranb4cfe442014-12-11 17:04:26 +0200326 int live;
Eli Cohene126ba92013-07-07 17:25:49 +0300327};
328
329struct mlx5_ib_fast_reg_page_list {
330 struct ib_fast_reg_page_list ibfrpl;
331 __be64 *mapped_page_list;
332 dma_addr_t map;
333};
334
Shachar Raindela74d2412014-05-22 14:50:12 +0300335struct mlx5_ib_umr_context {
336 enum ib_wc_status status;
337 struct completion done;
338};
339
340static inline void mlx5_ib_init_umr_context(struct mlx5_ib_umr_context *context)
341{
342 context->status = -1;
343 init_completion(&context->done);
344}
345
Eli Cohene126ba92013-07-07 17:25:49 +0300346struct umr_common {
347 struct ib_pd *pd;
348 struct ib_cq *cq;
349 struct ib_qp *qp;
Eli Cohene126ba92013-07-07 17:25:49 +0300350 /* control access to UMR QP
351 */
352 struct semaphore sem;
353};
354
355enum {
356 MLX5_FMR_INVALID,
357 MLX5_FMR_VALID,
358 MLX5_FMR_BUSY,
359};
360
361struct mlx5_ib_fmr {
362 struct ib_fmr ibfmr;
363 struct mlx5_core_mr mr;
364 int access_flags;
365 int state;
366 /* protect fmr state
367 */
368 spinlock_t lock;
369 u64 wrid;
370 struct ib_send_wr wr[2];
371 u8 page_shift;
372 struct ib_fast_reg_page_list page_list;
373};
374
375struct mlx5_cache_ent {
376 struct list_head head;
377 /* sync access to the cahce entry
378 */
379 spinlock_t lock;
380
381
382 struct dentry *dir;
383 char name[4];
384 u32 order;
385 u32 size;
386 u32 cur;
387 u32 miss;
388 u32 limit;
389
390 struct dentry *fsize;
391 struct dentry *fcur;
392 struct dentry *fmiss;
393 struct dentry *flimit;
394
395 struct mlx5_ib_dev *dev;
396 struct work_struct work;
397 struct delayed_work dwork;
Eli Cohen746b5582013-10-23 09:53:14 +0300398 int pending;
Eli Cohene126ba92013-07-07 17:25:49 +0300399};
400
401struct mlx5_mr_cache {
402 struct workqueue_struct *wq;
403 struct mlx5_cache_ent ent[MAX_MR_CACHE_ENTRIES];
404 int stopped;
405 struct dentry *root;
406 unsigned long last_add;
407};
408
409struct mlx5_ib_resources {
410 struct ib_cq *c0;
411 struct ib_xrcd *x0;
412 struct ib_xrcd *x1;
413 struct ib_pd *p0;
414 struct ib_srq *s0;
Haggai Abramonvsky4aa17b22015-06-04 19:30:48 +0300415 struct ib_srq *s1;
Eli Cohene126ba92013-07-07 17:25:49 +0300416};
417
418struct mlx5_ib_dev {
419 struct ib_device ib_dev;
Jack Morgenstein9603b612014-07-28 23:30:22 +0300420 struct mlx5_core_dev *mdev;
Eli Cohene126ba92013-07-07 17:25:49 +0300421 MLX5_DECLARE_DOORBELL_LOCK(uar_lock);
Eli Cohene126ba92013-07-07 17:25:49 +0300422 int num_ports;
Eli Cohene126ba92013-07-07 17:25:49 +0300423 /* serialize update of capability mask
424 */
425 struct mutex cap_mask_mutex;
426 bool ib_active;
427 struct umr_common umrc;
428 /* sync used page count stats
429 */
Eli Cohene126ba92013-07-07 17:25:49 +0300430 struct mlx5_ib_resources devr;
431 struct mlx5_mr_cache cache;
Eli Cohen746b5582013-10-23 09:53:14 +0300432 struct timer_list delay_timer;
433 int fill_delay;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200434#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
435 struct ib_odp_caps odp_caps;
Haggai Eran6aec21f2014-12-11 17:04:23 +0200436 /*
437 * Sleepable RCU that prevents destruction of MRs while they are still
438 * being used by a page fault handler.
439 */
440 struct srcu_struct mr_srcu;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200441#endif
Eli Cohene126ba92013-07-07 17:25:49 +0300442};
443
444static inline struct mlx5_ib_cq *to_mibcq(struct mlx5_core_cq *mcq)
445{
446 return container_of(mcq, struct mlx5_ib_cq, mcq);
447}
448
449static inline struct mlx5_ib_xrcd *to_mxrcd(struct ib_xrcd *ibxrcd)
450{
451 return container_of(ibxrcd, struct mlx5_ib_xrcd, ibxrcd);
452}
453
454static inline struct mlx5_ib_dev *to_mdev(struct ib_device *ibdev)
455{
456 return container_of(ibdev, struct mlx5_ib_dev, ib_dev);
457}
458
459static inline struct mlx5_ib_fmr *to_mfmr(struct ib_fmr *ibfmr)
460{
461 return container_of(ibfmr, struct mlx5_ib_fmr, ibfmr);
462}
463
464static inline struct mlx5_ib_cq *to_mcq(struct ib_cq *ibcq)
465{
466 return container_of(ibcq, struct mlx5_ib_cq, ibcq);
467}
468
469static inline struct mlx5_ib_qp *to_mibqp(struct mlx5_core_qp *mqp)
470{
471 return container_of(mqp, struct mlx5_ib_qp, mqp);
472}
473
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200474static inline struct mlx5_ib_mr *to_mibmr(struct mlx5_core_mr *mmr)
475{
476 return container_of(mmr, struct mlx5_ib_mr, mmr);
477}
478
Eli Cohene126ba92013-07-07 17:25:49 +0300479static inline struct mlx5_ib_pd *to_mpd(struct ib_pd *ibpd)
480{
481 return container_of(ibpd, struct mlx5_ib_pd, ibpd);
482}
483
484static inline struct mlx5_ib_srq *to_msrq(struct ib_srq *ibsrq)
485{
486 return container_of(ibsrq, struct mlx5_ib_srq, ibsrq);
487}
488
489static inline struct mlx5_ib_qp *to_mqp(struct ib_qp *ibqp)
490{
491 return container_of(ibqp, struct mlx5_ib_qp, ibqp);
492}
493
494static inline struct mlx5_ib_srq *to_mibsrq(struct mlx5_core_srq *msrq)
495{
496 return container_of(msrq, struct mlx5_ib_srq, msrq);
497}
498
499static inline struct mlx5_ib_mr *to_mmr(struct ib_mr *ibmr)
500{
501 return container_of(ibmr, struct mlx5_ib_mr, ibmr);
502}
503
504static inline struct mlx5_ib_fast_reg_page_list *to_mfrpl(struct ib_fast_reg_page_list *ibfrpl)
505{
506 return container_of(ibfrpl, struct mlx5_ib_fast_reg_page_list, ibfrpl);
507}
508
509struct mlx5_ib_ah {
510 struct ib_ah ibah;
511 struct mlx5_av av;
512};
513
514static inline struct mlx5_ib_ah *to_mah(struct ib_ah *ibah)
515{
516 return container_of(ibah, struct mlx5_ib_ah, ibah);
517}
518
Eli Cohene126ba92013-07-07 17:25:49 +0300519int mlx5_ib_db_map_user(struct mlx5_ib_ucontext *context, unsigned long virt,
520 struct mlx5_db *db);
521void mlx5_ib_db_unmap_user(struct mlx5_ib_ucontext *context, struct mlx5_db *db);
522void __mlx5_ib_cq_clean(struct mlx5_ib_cq *cq, u32 qpn, struct mlx5_ib_srq *srq);
523void mlx5_ib_cq_clean(struct mlx5_ib_cq *cq, u32 qpn, struct mlx5_ib_srq *srq);
524void mlx5_ib_free_srq_wqe(struct mlx5_ib_srq *srq, int wqe_index);
525int mlx5_MAD_IFC(struct mlx5_ib_dev *dev, int ignore_mkey, int ignore_bkey,
Ira Weinya97e2d82015-05-31 17:15:30 -0400526 u8 port, const struct ib_wc *in_wc, const struct ib_grh *in_grh,
527 const void *in_mad, void *response_mad);
Eli Cohene126ba92013-07-07 17:25:49 +0300528struct ib_ah *create_ib_ah(struct ib_ah_attr *ah_attr,
529 struct mlx5_ib_ah *ah);
530struct ib_ah *mlx5_ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
531int mlx5_ib_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr);
532int mlx5_ib_destroy_ah(struct ib_ah *ah);
533struct ib_srq *mlx5_ib_create_srq(struct ib_pd *pd,
534 struct ib_srq_init_attr *init_attr,
535 struct ib_udata *udata);
536int mlx5_ib_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
537 enum ib_srq_attr_mask attr_mask, struct ib_udata *udata);
538int mlx5_ib_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr);
539int mlx5_ib_destroy_srq(struct ib_srq *srq);
540int mlx5_ib_post_srq_recv(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
541 struct ib_recv_wr **bad_wr);
542struct ib_qp *mlx5_ib_create_qp(struct ib_pd *pd,
543 struct ib_qp_init_attr *init_attr,
544 struct ib_udata *udata);
545int mlx5_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
546 int attr_mask, struct ib_udata *udata);
547int mlx5_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
548 struct ib_qp_init_attr *qp_init_attr);
549int mlx5_ib_destroy_qp(struct ib_qp *qp);
550int mlx5_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
551 struct ib_send_wr **bad_wr);
552int mlx5_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
553 struct ib_recv_wr **bad_wr);
554void *mlx5_get_send_wqe(struct mlx5_ib_qp *qp, int n);
Haggai Eranc1395a22014-12-11 17:04:14 +0200555int mlx5_ib_read_user_wqe(struct mlx5_ib_qp *qp, int send, int wqe_index,
556 void *buffer, u32 length);
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300557struct ib_cq *mlx5_ib_create_cq(struct ib_device *ibdev,
558 const struct ib_cq_init_attr *attr,
559 struct ib_ucontext *context,
Eli Cohene126ba92013-07-07 17:25:49 +0300560 struct ib_udata *udata);
561int mlx5_ib_destroy_cq(struct ib_cq *cq);
562int mlx5_ib_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
563int mlx5_ib_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
564int mlx5_ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
565int mlx5_ib_resize_cq(struct ib_cq *ibcq, int entries, struct ib_udata *udata);
566struct ib_mr *mlx5_ib_get_dma_mr(struct ib_pd *pd, int acc);
567struct ib_mr *mlx5_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
568 u64 virt_addr, int access_flags,
569 struct ib_udata *udata);
Haggai Eran832a6b02014-12-11 17:04:22 +0200570int mlx5_ib_update_mtt(struct mlx5_ib_mr *mr, u64 start_page_index,
571 int npages, int zap);
Eli Cohene126ba92013-07-07 17:25:49 +0300572int mlx5_ib_dereg_mr(struct ib_mr *ibmr);
Sagi Grimberg9bee1782015-07-30 10:32:35 +0300573struct ib_mr *mlx5_ib_alloc_mr(struct ib_pd *pd,
574 enum ib_mr_type mr_type,
575 u32 max_num_sg);
Eli Cohene126ba92013-07-07 17:25:49 +0300576struct ib_fast_reg_page_list *mlx5_ib_alloc_fast_reg_page_list(struct ib_device *ibdev,
577 int page_list_len);
578void mlx5_ib_free_fast_reg_page_list(struct ib_fast_reg_page_list *page_list);
579struct ib_fmr *mlx5_ib_fmr_alloc(struct ib_pd *pd, int acc,
580 struct ib_fmr_attr *fmr_attr);
581int mlx5_ib_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list,
582 int npages, u64 iova);
583int mlx5_ib_unmap_fmr(struct list_head *fmr_list);
584int mlx5_ib_fmr_dealloc(struct ib_fmr *ibfmr);
585int mlx5_ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
Ira Weinya97e2d82015-05-31 17:15:30 -0400586 const struct ib_wc *in_wc, const struct ib_grh *in_grh,
Ira Weiny4cd7c942015-06-06 14:38:31 -0400587 const struct ib_mad_hdr *in, size_t in_mad_size,
588 struct ib_mad_hdr *out, size_t *out_mad_size,
589 u16 *out_mad_pkey_index);
Eli Cohene126ba92013-07-07 17:25:49 +0300590struct ib_xrcd *mlx5_ib_alloc_xrcd(struct ib_device *ibdev,
591 struct ib_ucontext *context,
592 struct ib_udata *udata);
593int mlx5_ib_dealloc_xrcd(struct ib_xrcd *xrcd);
Eli Cohene126ba92013-07-07 17:25:49 +0300594int mlx5_ib_get_buf_offset(u64 addr, int page_shift, u32 *offset);
595int mlx5_query_ext_port_caps(struct mlx5_ib_dev *dev, u8 port);
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300596int mlx5_query_mad_ifc_smp_attr_node_info(struct ib_device *ibdev,
597 struct ib_smp *out_mad);
598int mlx5_query_mad_ifc_system_image_guid(struct ib_device *ibdev,
599 __be64 *sys_image_guid);
600int mlx5_query_mad_ifc_max_pkeys(struct ib_device *ibdev,
601 u16 *max_pkeys);
602int mlx5_query_mad_ifc_vendor_id(struct ib_device *ibdev,
603 u32 *vendor_id);
604int mlx5_query_mad_ifc_node_desc(struct mlx5_ib_dev *dev, char *node_desc);
605int mlx5_query_mad_ifc_node_guid(struct mlx5_ib_dev *dev, __be64 *node_guid);
606int mlx5_query_mad_ifc_pkey(struct ib_device *ibdev, u8 port, u16 index,
607 u16 *pkey);
608int mlx5_query_mad_ifc_gids(struct ib_device *ibdev, u8 port, int index,
609 union ib_gid *gid);
610int mlx5_query_mad_ifc_port(struct ib_device *ibdev, u8 port,
611 struct ib_port_attr *props);
Eli Cohene126ba92013-07-07 17:25:49 +0300612int mlx5_ib_query_port(struct ib_device *ibdev, u8 port,
613 struct ib_port_attr *props);
614int mlx5_ib_init_fmr(struct mlx5_ib_dev *dev);
615void mlx5_ib_cleanup_fmr(struct mlx5_ib_dev *dev);
616void mlx5_ib_cont_pages(struct ib_umem *umem, u64 addr, int *count, int *shift,
617 int *ncont, int *order);
Haggai Eran832a6b02014-12-11 17:04:22 +0200618void __mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
619 int page_shift, size_t offset, size_t num_pages,
620 __be64 *pas, int access_flags);
Eli Cohene126ba92013-07-07 17:25:49 +0300621void mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
Haggai Erancc149f752014-12-11 17:04:21 +0200622 int page_shift, __be64 *pas, int access_flags);
Eli Cohene126ba92013-07-07 17:25:49 +0300623void mlx5_ib_copy_pas(u64 *old, u64 *new, int step, int num);
624int mlx5_ib_get_cqe_size(struct mlx5_ib_dev *dev, struct ib_cq *ibcq);
625int mlx5_mr_cache_init(struct mlx5_ib_dev *dev);
626int mlx5_mr_cache_cleanup(struct mlx5_ib_dev *dev);
627int mlx5_mr_ib_cont_pages(struct ib_umem *umem, u64 addr, int *count, int *shift);
628void mlx5_umr_cq_handler(struct ib_cq *cq, void *cq_context);
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200629int mlx5_ib_check_mr_status(struct ib_mr *ibmr, u32 check_mask,
630 struct ib_mr_status *mr_status);
Eli Cohene126ba92013-07-07 17:25:49 +0300631
Haggai Eran8cdd3122014-12-11 17:04:20 +0200632#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
Haggai Eran6aec21f2014-12-11 17:04:23 +0200633extern struct workqueue_struct *mlx5_ib_page_fault_wq;
634
Saeed Mahameed938fe832015-05-28 22:28:41 +0300635void mlx5_ib_internal_fill_odp_caps(struct mlx5_ib_dev *dev);
Haggai Eran6aec21f2014-12-11 17:04:23 +0200636void mlx5_ib_mr_pfault_handler(struct mlx5_ib_qp *qp,
637 struct mlx5_ib_pfault *pfault);
638void mlx5_ib_odp_create_qp(struct mlx5_ib_qp *qp);
639int mlx5_ib_odp_init_one(struct mlx5_ib_dev *ibdev);
640void mlx5_ib_odp_remove_one(struct mlx5_ib_dev *ibdev);
641int __init mlx5_ib_odp_init(void);
642void mlx5_ib_odp_cleanup(void);
643void mlx5_ib_qp_disable_pagefaults(struct mlx5_ib_qp *qp);
644void mlx5_ib_qp_enable_pagefaults(struct mlx5_ib_qp *qp);
Haggai Eranb4cfe442014-12-11 17:04:26 +0200645void mlx5_ib_invalidate_range(struct ib_umem *umem, unsigned long start,
646 unsigned long end);
Haggai Eran6aec21f2014-12-11 17:04:23 +0200647
648#else /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
Saeed Mahameed938fe832015-05-28 22:28:41 +0300649static inline void mlx5_ib_internal_fill_odp_caps(struct mlx5_ib_dev *dev)
Haggai Eran8cdd3122014-12-11 17:04:20 +0200650{
Saeed Mahameed938fe832015-05-28 22:28:41 +0300651 return;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200652}
Haggai Eran6aec21f2014-12-11 17:04:23 +0200653
654static inline void mlx5_ib_odp_create_qp(struct mlx5_ib_qp *qp) {}
655static inline int mlx5_ib_odp_init_one(struct mlx5_ib_dev *ibdev) { return 0; }
656static inline void mlx5_ib_odp_remove_one(struct mlx5_ib_dev *ibdev) {}
657static inline int mlx5_ib_odp_init(void) { return 0; }
658static inline void mlx5_ib_odp_cleanup(void) {}
659static inline void mlx5_ib_qp_disable_pagefaults(struct mlx5_ib_qp *qp) {}
660static inline void mlx5_ib_qp_enable_pagefaults(struct mlx5_ib_qp *qp) {}
661
Haggai Eran8cdd3122014-12-11 17:04:20 +0200662#endif /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
663
Eli Cohene126ba92013-07-07 17:25:49 +0300664static inline void init_query_mad(struct ib_smp *mad)
665{
666 mad->base_version = 1;
667 mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
668 mad->class_version = 1;
669 mad->method = IB_MGMT_METHOD_GET;
670}
671
672static inline u8 convert_access(int acc)
673{
674 return (acc & IB_ACCESS_REMOTE_ATOMIC ? MLX5_PERM_ATOMIC : 0) |
675 (acc & IB_ACCESS_REMOTE_WRITE ? MLX5_PERM_REMOTE_WRITE : 0) |
676 (acc & IB_ACCESS_REMOTE_READ ? MLX5_PERM_REMOTE_READ : 0) |
677 (acc & IB_ACCESS_LOCAL_WRITE ? MLX5_PERM_LOCAL_WRITE : 0) |
678 MLX5_PERM_LOCAL_READ;
679}
680
Sagi Grimbergb6364012015-09-02 22:23:04 +0300681static inline int is_qp1(enum ib_qp_type qp_type)
682{
683 return qp_type == IB_QPT_GSI;
684}
685
Haggai Erancc149f752014-12-11 17:04:21 +0200686#define MLX5_MAX_UMR_SHIFT 16
687#define MLX5_MAX_UMR_PAGES (1 << MLX5_MAX_UMR_SHIFT)
688
Eli Cohene126ba92013-07-07 17:25:49 +0300689#endif /* MLX5_IB_H */