blob: 14396b0eac74d39c5ca246e43274ce24ceffcbda [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>
majd@mellanox.com146d2f12016-01-14 19:13:02 +020045#include <linux/mlx5/transobj.h>
Eli Cohene126ba92013-07-07 17:25:49 +030046
47#define mlx5_ib_dbg(dev, format, arg...) \
48pr_debug("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \
49 __LINE__, current->pid, ##arg)
50
51#define mlx5_ib_err(dev, format, arg...) \
52pr_err("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \
53 __LINE__, current->pid, ##arg)
54
55#define mlx5_ib_warn(dev, format, arg...) \
56pr_warn("%s:%s:%d:(pid %d): " format, (dev)->ib_dev.name, __func__, \
57 __LINE__, current->pid, ##arg)
58
Matan Barakb368d7c2015-12-15 20:30:12 +020059#define field_avail(type, fld, sz) (offsetof(type, fld) + \
60 sizeof(((type *)0)->fld) <= (sz))
Haggai Abramovskycfb5e082016-01-14 19:12:57 +020061#define MLX5_IB_DEFAULT_UIDX 0xffffff
62#define MLX5_USER_ASSIGNED_UIDX_MASK __mlx5_mask(qpc, user_index)
Matan Barakb368d7c2015-12-15 20:30:12 +020063
Eli Cohene126ba92013-07-07 17:25:49 +030064enum {
65 MLX5_IB_MMAP_CMD_SHIFT = 8,
66 MLX5_IB_MMAP_CMD_MASK = 0xff,
67};
68
69enum mlx5_ib_mmap_cmd {
70 MLX5_IB_MMAP_REGULAR_PAGE = 0,
Matan Barakd69e3bc2015-12-15 20:30:13 +020071 MLX5_IB_MMAP_GET_CONTIGUOUS_PAGES = 1,
72 /* 5 is chosen in order to be compatible with old versions of libmlx5 */
73 MLX5_IB_MMAP_CORE_CLOCK = 5,
Eli Cohene126ba92013-07-07 17:25:49 +030074};
75
76enum {
77 MLX5_RES_SCAT_DATA32_CQE = 0x1,
78 MLX5_RES_SCAT_DATA64_CQE = 0x2,
79 MLX5_REQ_SCAT_DATA32_CQE = 0x11,
80 MLX5_REQ_SCAT_DATA64_CQE = 0x22,
81};
82
83enum mlx5_ib_latency_class {
84 MLX5_IB_LATENCY_CLASS_LOW,
85 MLX5_IB_LATENCY_CLASS_MEDIUM,
86 MLX5_IB_LATENCY_CLASS_HIGH,
87 MLX5_IB_LATENCY_CLASS_FAST_PATH
88};
89
90enum mlx5_ib_mad_ifc_flags {
91 MLX5_MAD_IFC_IGNORE_MKEY = 1,
92 MLX5_MAD_IFC_IGNORE_BKEY = 2,
93 MLX5_MAD_IFC_NET_VIEW = 4,
94};
95
Leon Romanovsky051f2632015-12-20 12:16:11 +020096enum {
97 MLX5_CROSS_CHANNEL_UUAR = 0,
98};
99
Haggai Abramovskycfb5e082016-01-14 19:12:57 +0200100enum {
101 MLX5_CQE_VERSION_V0,
102 MLX5_CQE_VERSION_V1,
103};
104
Eli Cohene126ba92013-07-07 17:25:49 +0300105struct mlx5_ib_ucontext {
106 struct ib_ucontext ibucontext;
107 struct list_head db_page_list;
108
109 /* protect doorbell record alloc/free
110 */
111 struct mutex db_page_mutex;
112 struct mlx5_uuar_info uuari;
Haggai Abramovskycfb5e082016-01-14 19:12:57 +0200113 u8 cqe_version;
majd@mellanox.com146d2f12016-01-14 19:13:02 +0200114 /* Transport Domain number */
115 u32 tdn;
Eli Cohene126ba92013-07-07 17:25:49 +0300116};
117
118static inline struct mlx5_ib_ucontext *to_mucontext(struct ib_ucontext *ibucontext)
119{
120 return container_of(ibucontext, struct mlx5_ib_ucontext, ibucontext);
121}
122
123struct mlx5_ib_pd {
124 struct ib_pd ibpd;
125 u32 pdn;
Eli Cohene126ba92013-07-07 17:25:49 +0300126};
127
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200128#define MLX5_IB_FLOW_MCAST_PRIO (MLX5_BY_PASS_NUM_PRIOS - 1)
129#define MLX5_IB_FLOW_LAST_PRIO (MLX5_IB_FLOW_MCAST_PRIO - 1)
130#if (MLX5_IB_FLOW_LAST_PRIO <= 0)
131#error "Invalid number of bypass priorities"
132#endif
133#define MLX5_IB_FLOW_LEFTOVERS_PRIO (MLX5_IB_FLOW_MCAST_PRIO + 1)
134
135#define MLX5_IB_NUM_FLOW_FT (MLX5_IB_FLOW_LEFTOVERS_PRIO + 1)
136struct mlx5_ib_flow_prio {
137 struct mlx5_flow_table *flow_table;
138 unsigned int refcount;
139};
140
141struct mlx5_ib_flow_handler {
142 struct list_head list;
143 struct ib_flow ibflow;
144 unsigned int prio;
145 struct mlx5_flow_rule *rule;
146};
147
148struct mlx5_ib_flow_db {
149 struct mlx5_ib_flow_prio prios[MLX5_IB_NUM_FLOW_FT];
150 /* Protect flow steering bypass flow tables
151 * when add/del flow rules.
152 * only single add/removal of flow steering rule could be done
153 * simultaneously.
154 */
155 struct mutex lock;
156};
157
Eli Cohene126ba92013-07-07 17:25:49 +0300158/* Use macros here so that don't have to duplicate
159 * enum ib_send_flags and enum ib_qp_type for low-level driver
160 */
161
162#define MLX5_IB_SEND_UMR_UNREG IB_SEND_RESERVED_START
Haggai Eran968e78d2014-12-11 17:04:11 +0200163#define MLX5_IB_SEND_UMR_FAIL_IF_FREE (IB_SEND_RESERVED_START << 1)
164#define MLX5_IB_SEND_UMR_UPDATE_MTT (IB_SEND_RESERVED_START << 2)
Eli Cohene126ba92013-07-07 17:25:49 +0300165#define MLX5_IB_QPT_REG_UMR IB_QPT_RESERVED1
166#define MLX5_IB_WR_UMR IB_WR_RESERVED1
167
168struct wr_list {
169 u16 opcode;
170 u16 next;
171};
172
173struct mlx5_ib_wq {
174 u64 *wrid;
175 u32 *wr_data;
176 struct wr_list *w_list;
177 unsigned *wqe_head;
178 u16 unsig_count;
179
180 /* serialize post to the work queue
181 */
182 spinlock_t lock;
183 int wqe_cnt;
184 int max_post;
185 int max_gs;
186 int offset;
187 int wqe_shift;
188 unsigned head;
189 unsigned tail;
190 u16 cur_post;
191 u16 last_poll;
192 void *qend;
193};
194
195enum {
196 MLX5_QP_USER,
197 MLX5_QP_KERNEL,
198 MLX5_QP_EMPTY
199};
200
Haggai Eran6aec21f2014-12-11 17:04:23 +0200201/*
202 * Connect-IB can trigger up to four concurrent pagefaults
203 * per-QP.
204 */
205enum mlx5_ib_pagefault_context {
206 MLX5_IB_PAGEFAULT_RESPONDER_READ,
207 MLX5_IB_PAGEFAULT_REQUESTOR_READ,
208 MLX5_IB_PAGEFAULT_RESPONDER_WRITE,
209 MLX5_IB_PAGEFAULT_REQUESTOR_WRITE,
210 MLX5_IB_PAGEFAULT_CONTEXTS
211};
212
213static inline enum mlx5_ib_pagefault_context
214 mlx5_ib_get_pagefault_context(struct mlx5_pagefault *pagefault)
215{
216 return pagefault->flags & (MLX5_PFAULT_REQUESTOR | MLX5_PFAULT_WRITE);
217}
218
219struct mlx5_ib_pfault {
220 struct work_struct work;
221 struct mlx5_pagefault mpfault;
222};
223
majd@mellanox.com19098df2016-01-14 19:13:03 +0200224struct mlx5_ib_ubuffer {
225 struct ib_umem *umem;
226 int buf_size;
227 u64 buf_addr;
228};
229
230struct mlx5_ib_qp_base {
231 struct mlx5_ib_qp *container_mibqp;
232 struct mlx5_core_qp mqp;
233 struct mlx5_ib_ubuffer ubuffer;
234};
235
236struct mlx5_ib_qp_trans {
237 struct mlx5_ib_qp_base base;
238 u16 xrcdn;
239 u8 alt_port;
240 u8 atomic_rd_en;
241 u8 resp_depth;
242};
243
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200244struct mlx5_ib_rq {
majd@mellanox.com0fb2ed62016-01-14 19:13:04 +0200245 struct mlx5_ib_qp_base base;
246 struct mlx5_ib_wq *rq;
247 struct mlx5_ib_ubuffer ubuffer;
248 struct mlx5_db *doorbell;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200249 u32 tirn;
majd@mellanox.com0fb2ed62016-01-14 19:13:04 +0200250 u8 state;
251};
252
253struct mlx5_ib_sq {
254 struct mlx5_ib_qp_base base;
255 struct mlx5_ib_wq *sq;
256 struct mlx5_ib_ubuffer ubuffer;
257 struct mlx5_db *doorbell;
258 u32 tisn;
259 u8 state;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200260};
261
262struct mlx5_ib_raw_packet_qp {
majd@mellanox.com0fb2ed62016-01-14 19:13:04 +0200263 struct mlx5_ib_sq sq;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200264 struct mlx5_ib_rq rq;
265};
266
Eli Cohene126ba92013-07-07 17:25:49 +0300267struct mlx5_ib_qp {
268 struct ib_qp ibqp;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200269 union {
majd@mellanox.com0fb2ed62016-01-14 19:13:04 +0200270 struct mlx5_ib_qp_trans trans_qp;
271 struct mlx5_ib_raw_packet_qp raw_packet_qp;
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200272 };
Eli Cohene126ba92013-07-07 17:25:49 +0300273 struct mlx5_buf buf;
274
275 struct mlx5_db db;
276 struct mlx5_ib_wq rq;
277
Eli Cohene126ba92013-07-07 17:25:49 +0300278 u8 sq_signal_bits;
279 u8 fm_cache;
Eli Cohene126ba92013-07-07 17:25:49 +0300280 struct mlx5_ib_wq sq;
281
Eli Cohene126ba92013-07-07 17:25:49 +0300282 /* serialize qp state modifications
283 */
284 struct mutex mutex;
Eli Cohene126ba92013-07-07 17:25:49 +0300285 u32 flags;
286 u8 port;
Eli Cohene126ba92013-07-07 17:25:49 +0300287 u8 state;
Eli Cohene126ba92013-07-07 17:25:49 +0300288 int wq_sig;
289 int scat_cqe;
290 int max_inline_data;
291 struct mlx5_bf *bf;
292 int has_rq;
293
294 /* only for user space QPs. For kernel
295 * we have it from the bf object
296 */
297 int uuarn;
298
299 int create_type;
Sagi Grimberge1e66cc2014-02-23 14:19:07 +0200300
301 /* Store signature errors */
302 bool signature_en;
Haggai Eran6aec21f2014-12-11 17:04:23 +0200303
304#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
305 /*
306 * A flag that is true for QP's that are in a state that doesn't
307 * allow page faults, and shouldn't schedule any more faults.
308 */
309 int disable_page_faults;
310 /*
311 * The disable_page_faults_lock protects a QP's disable_page_faults
312 * field, allowing for a thread to atomically check whether the QP
313 * allows page faults, and if so schedule a page fault.
314 */
315 spinlock_t disable_page_faults_lock;
316 struct mlx5_ib_pfault pagefaults[MLX5_IB_PAGEFAULT_CONTEXTS];
317#endif
Eli Cohene126ba92013-07-07 17:25:49 +0300318};
319
320struct mlx5_ib_cq_buf {
321 struct mlx5_buf buf;
322 struct ib_umem *umem;
323 int cqe_size;
Eli Cohenbde51582014-01-14 17:45:18 +0200324 int nent;
Eli Cohene126ba92013-07-07 17:25:49 +0300325};
326
327enum mlx5_ib_qp_flags {
Erez Shitritf0313962016-02-21 16:27:17 +0200328 MLX5_IB_QP_LSO = IB_QP_CREATE_IPOIB_UD_LSO,
329 MLX5_IB_QP_BLOCK_MULTICAST_LOOPBACK = IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK,
330 MLX5_IB_QP_CROSS_CHANNEL = IB_QP_CREATE_CROSS_CHANNEL,
331 MLX5_IB_QP_MANAGED_SEND = IB_QP_CREATE_MANAGED_SEND,
332 MLX5_IB_QP_MANAGED_RECV = IB_QP_CREATE_MANAGED_RECV,
333 MLX5_IB_QP_SIGNATURE_HANDLING = 1 << 5,
Eli Cohene126ba92013-07-07 17:25:49 +0300334};
335
Haggai Eran968e78d2014-12-11 17:04:11 +0200336struct mlx5_umr_wr {
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100337 struct ib_send_wr wr;
Haggai Eran968e78d2014-12-11 17:04:11 +0200338 union {
339 u64 virt_addr;
340 u64 offset;
341 } target;
342 struct ib_pd *pd;
343 unsigned int page_shift;
344 unsigned int npages;
345 u32 length;
346 int access_flags;
347 u32 mkey;
348};
349
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100350static inline struct mlx5_umr_wr *umr_wr(struct ib_send_wr *wr)
351{
352 return container_of(wr, struct mlx5_umr_wr, wr);
353}
354
Eli Cohene126ba92013-07-07 17:25:49 +0300355struct mlx5_shared_mr_info {
356 int mr_id;
357 struct ib_umem *umem;
358};
359
360struct mlx5_ib_cq {
361 struct ib_cq ibcq;
362 struct mlx5_core_cq mcq;
363 struct mlx5_ib_cq_buf buf;
364 struct mlx5_db db;
365
366 /* serialize access to the CQ
367 */
368 spinlock_t lock;
369
370 /* protect resize cq
371 */
372 struct mutex resize_mutex;
Eli Cohenbde51582014-01-14 17:45:18 +0200373 struct mlx5_ib_cq_buf *resize_buf;
Eli Cohene126ba92013-07-07 17:25:49 +0300374 struct ib_umem *resize_umem;
375 int cqe_size;
Leon Romanovsky051f2632015-12-20 12:16:11 +0200376 u32 create_flags;
Eli Cohene126ba92013-07-07 17:25:49 +0300377};
378
379struct mlx5_ib_srq {
380 struct ib_srq ibsrq;
381 struct mlx5_core_srq msrq;
382 struct mlx5_buf buf;
383 struct mlx5_db db;
384 u64 *wrid;
385 /* protect SRQ hanlding
386 */
387 spinlock_t lock;
388 int head;
389 int tail;
390 u16 wqe_ctr;
391 struct ib_umem *umem;
392 /* serialize arming a SRQ
393 */
394 struct mutex mutex;
395 int wq_sig;
396};
397
398struct mlx5_ib_xrcd {
399 struct ib_xrcd ibxrcd;
400 u32 xrcdn;
401};
402
Haggai Erancc149f752014-12-11 17:04:21 +0200403enum mlx5_ib_mtt_access_flags {
404 MLX5_IB_MTT_READ = (1 << 0),
405 MLX5_IB_MTT_WRITE = (1 << 1),
406};
407
408#define MLX5_IB_MTT_PRESENT (MLX5_IB_MTT_READ | MLX5_IB_MTT_WRITE)
409
Eli Cohene126ba92013-07-07 17:25:49 +0300410struct mlx5_ib_mr {
411 struct ib_mr ibmr;
Sagi Grimberg8a187ee2015-10-13 19:11:26 +0300412 void *descs;
413 dma_addr_t desc_map;
414 int ndescs;
415 int max_descs;
416 int desc_size;
Eli Cohene126ba92013-07-07 17:25:49 +0300417 struct mlx5_core_mr mmr;
418 struct ib_umem *umem;
419 struct mlx5_shared_mr_info *smr_info;
420 struct list_head list;
421 int order;
422 int umred;
Eli Cohene126ba92013-07-07 17:25:49 +0300423 int npages;
Eli Cohen746b5582013-10-23 09:53:14 +0300424 struct mlx5_ib_dev *dev;
425 struct mlx5_create_mkey_mbox_out out;
Sagi Grimberg3121e3c2014-02-23 14:19:06 +0200426 struct mlx5_core_sig_ctx *sig;
Haggai Eranb4cfe442014-12-11 17:04:26 +0200427 int live;
Sagi Grimberg8a187ee2015-10-13 19:11:26 +0300428 void *descs_alloc;
Eli Cohene126ba92013-07-07 17:25:49 +0300429};
430
Shachar Raindela74d2412014-05-22 14:50:12 +0300431struct mlx5_ib_umr_context {
432 enum ib_wc_status status;
433 struct completion done;
434};
435
436static inline void mlx5_ib_init_umr_context(struct mlx5_ib_umr_context *context)
437{
438 context->status = -1;
439 init_completion(&context->done);
440}
441
Eli Cohene126ba92013-07-07 17:25:49 +0300442struct umr_common {
443 struct ib_pd *pd;
444 struct ib_cq *cq;
445 struct ib_qp *qp;
Eli Cohene126ba92013-07-07 17:25:49 +0300446 /* control access to UMR QP
447 */
448 struct semaphore sem;
449};
450
451enum {
452 MLX5_FMR_INVALID,
453 MLX5_FMR_VALID,
454 MLX5_FMR_BUSY,
455};
456
Eli Cohene126ba92013-07-07 17:25:49 +0300457struct mlx5_cache_ent {
458 struct list_head head;
459 /* sync access to the cahce entry
460 */
461 spinlock_t lock;
462
463
464 struct dentry *dir;
465 char name[4];
466 u32 order;
467 u32 size;
468 u32 cur;
469 u32 miss;
470 u32 limit;
471
472 struct dentry *fsize;
473 struct dentry *fcur;
474 struct dentry *fmiss;
475 struct dentry *flimit;
476
477 struct mlx5_ib_dev *dev;
478 struct work_struct work;
479 struct delayed_work dwork;
Eli Cohen746b5582013-10-23 09:53:14 +0300480 int pending;
Eli Cohene126ba92013-07-07 17:25:49 +0300481};
482
483struct mlx5_mr_cache {
484 struct workqueue_struct *wq;
485 struct mlx5_cache_ent ent[MAX_MR_CACHE_ENTRIES];
486 int stopped;
487 struct dentry *root;
488 unsigned long last_add;
489};
490
491struct mlx5_ib_resources {
492 struct ib_cq *c0;
493 struct ib_xrcd *x0;
494 struct ib_xrcd *x1;
495 struct ib_pd *p0;
496 struct ib_srq *s0;
Haggai Abramonvsky4aa17b22015-06-04 19:30:48 +0300497 struct ib_srq *s1;
Eli Cohene126ba92013-07-07 17:25:49 +0300498};
499
Achiad Shochatfc24fc52015-12-23 18:47:17 +0200500struct mlx5_roce {
501 /* Protect mlx5_ib_get_netdev from invoking dev_hold() with a NULL
502 * netdev pointer
503 */
504 rwlock_t netdev_lock;
505 struct net_device *netdev;
506 struct notifier_block nb;
507};
508
Eli Cohene126ba92013-07-07 17:25:49 +0300509struct mlx5_ib_dev {
510 struct ib_device ib_dev;
Jack Morgenstein9603b612014-07-28 23:30:22 +0300511 struct mlx5_core_dev *mdev;
Achiad Shochatfc24fc52015-12-23 18:47:17 +0200512 struct mlx5_roce roce;
Eli Cohene126ba92013-07-07 17:25:49 +0300513 MLX5_DECLARE_DOORBELL_LOCK(uar_lock);
Eli Cohene126ba92013-07-07 17:25:49 +0300514 int num_ports;
Eli Cohene126ba92013-07-07 17:25:49 +0300515 /* serialize update of capability mask
516 */
517 struct mutex cap_mask_mutex;
518 bool ib_active;
519 struct umr_common umrc;
520 /* sync used page count stats
521 */
Eli Cohene126ba92013-07-07 17:25:49 +0300522 struct mlx5_ib_resources devr;
523 struct mlx5_mr_cache cache;
Eli Cohen746b5582013-10-23 09:53:14 +0300524 struct timer_list delay_timer;
525 int fill_delay;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200526#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
527 struct ib_odp_caps odp_caps;
Haggai Eran6aec21f2014-12-11 17:04:23 +0200528 /*
529 * Sleepable RCU that prevents destruction of MRs while they are still
530 * being used by a page fault handler.
531 */
532 struct srcu_struct mr_srcu;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200533#endif
Maor Gottlieb038d2ef2016-01-11 10:26:07 +0200534 struct mlx5_ib_flow_db flow_db;
Eli Cohene126ba92013-07-07 17:25:49 +0300535};
536
537static inline struct mlx5_ib_cq *to_mibcq(struct mlx5_core_cq *mcq)
538{
539 return container_of(mcq, struct mlx5_ib_cq, mcq);
540}
541
542static inline struct mlx5_ib_xrcd *to_mxrcd(struct ib_xrcd *ibxrcd)
543{
544 return container_of(ibxrcd, struct mlx5_ib_xrcd, ibxrcd);
545}
546
547static inline struct mlx5_ib_dev *to_mdev(struct ib_device *ibdev)
548{
549 return container_of(ibdev, struct mlx5_ib_dev, ib_dev);
550}
551
Eli Cohene126ba92013-07-07 17:25:49 +0300552static inline struct mlx5_ib_cq *to_mcq(struct ib_cq *ibcq)
553{
554 return container_of(ibcq, struct mlx5_ib_cq, ibcq);
555}
556
557static inline struct mlx5_ib_qp *to_mibqp(struct mlx5_core_qp *mqp)
558{
majd@mellanox.com19098df2016-01-14 19:13:03 +0200559 return container_of(mqp, struct mlx5_ib_qp_base, mqp)->container_mibqp;
Eli Cohene126ba92013-07-07 17:25:49 +0300560}
561
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200562static inline struct mlx5_ib_mr *to_mibmr(struct mlx5_core_mr *mmr)
563{
564 return container_of(mmr, struct mlx5_ib_mr, mmr);
565}
566
Eli Cohene126ba92013-07-07 17:25:49 +0300567static inline struct mlx5_ib_pd *to_mpd(struct ib_pd *ibpd)
568{
569 return container_of(ibpd, struct mlx5_ib_pd, ibpd);
570}
571
572static inline struct mlx5_ib_srq *to_msrq(struct ib_srq *ibsrq)
573{
574 return container_of(ibsrq, struct mlx5_ib_srq, ibsrq);
575}
576
577static inline struct mlx5_ib_qp *to_mqp(struct ib_qp *ibqp)
578{
579 return container_of(ibqp, struct mlx5_ib_qp, ibqp);
580}
581
582static inline struct mlx5_ib_srq *to_mibsrq(struct mlx5_core_srq *msrq)
583{
584 return container_of(msrq, struct mlx5_ib_srq, msrq);
585}
586
587static inline struct mlx5_ib_mr *to_mmr(struct ib_mr *ibmr)
588{
589 return container_of(ibmr, struct mlx5_ib_mr, ibmr);
590}
591
Eli Cohene126ba92013-07-07 17:25:49 +0300592struct mlx5_ib_ah {
593 struct ib_ah ibah;
594 struct mlx5_av av;
595};
596
597static inline struct mlx5_ib_ah *to_mah(struct ib_ah *ibah)
598{
599 return container_of(ibah, struct mlx5_ib_ah, ibah);
600}
601
Eli Cohene126ba92013-07-07 17:25:49 +0300602int mlx5_ib_db_map_user(struct mlx5_ib_ucontext *context, unsigned long virt,
603 struct mlx5_db *db);
604void mlx5_ib_db_unmap_user(struct mlx5_ib_ucontext *context, struct mlx5_db *db);
605void __mlx5_ib_cq_clean(struct mlx5_ib_cq *cq, u32 qpn, struct mlx5_ib_srq *srq);
606void mlx5_ib_cq_clean(struct mlx5_ib_cq *cq, u32 qpn, struct mlx5_ib_srq *srq);
607void mlx5_ib_free_srq_wqe(struct mlx5_ib_srq *srq, int wqe_index);
608int mlx5_MAD_IFC(struct mlx5_ib_dev *dev, int ignore_mkey, int ignore_bkey,
Ira Weinya97e2d82015-05-31 17:15:30 -0400609 u8 port, const struct ib_wc *in_wc, const struct ib_grh *in_grh,
610 const void *in_mad, void *response_mad);
Eli Cohene126ba92013-07-07 17:25:49 +0300611struct ib_ah *mlx5_ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
612int mlx5_ib_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr);
613int mlx5_ib_destroy_ah(struct ib_ah *ah);
614struct ib_srq *mlx5_ib_create_srq(struct ib_pd *pd,
615 struct ib_srq_init_attr *init_attr,
616 struct ib_udata *udata);
617int mlx5_ib_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
618 enum ib_srq_attr_mask attr_mask, struct ib_udata *udata);
619int mlx5_ib_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr);
620int mlx5_ib_destroy_srq(struct ib_srq *srq);
621int mlx5_ib_post_srq_recv(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
622 struct ib_recv_wr **bad_wr);
623struct ib_qp *mlx5_ib_create_qp(struct ib_pd *pd,
624 struct ib_qp_init_attr *init_attr,
625 struct ib_udata *udata);
626int mlx5_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
627 int attr_mask, struct ib_udata *udata);
628int mlx5_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
629 struct ib_qp_init_attr *qp_init_attr);
630int mlx5_ib_destroy_qp(struct ib_qp *qp);
631int mlx5_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
632 struct ib_send_wr **bad_wr);
633int mlx5_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
634 struct ib_recv_wr **bad_wr);
635void *mlx5_get_send_wqe(struct mlx5_ib_qp *qp, int n);
Haggai Eranc1395a22014-12-11 17:04:14 +0200636int mlx5_ib_read_user_wqe(struct mlx5_ib_qp *qp, int send, int wqe_index,
majd@mellanox.com19098df2016-01-14 19:13:03 +0200637 void *buffer, u32 length,
638 struct mlx5_ib_qp_base *base);
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300639struct ib_cq *mlx5_ib_create_cq(struct ib_device *ibdev,
640 const struct ib_cq_init_attr *attr,
641 struct ib_ucontext *context,
Eli Cohene126ba92013-07-07 17:25:49 +0300642 struct ib_udata *udata);
643int mlx5_ib_destroy_cq(struct ib_cq *cq);
644int mlx5_ib_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
645int mlx5_ib_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
646int mlx5_ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
647int mlx5_ib_resize_cq(struct ib_cq *ibcq, int entries, struct ib_udata *udata);
648struct ib_mr *mlx5_ib_get_dma_mr(struct ib_pd *pd, int acc);
649struct ib_mr *mlx5_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
650 u64 virt_addr, int access_flags,
651 struct ib_udata *udata);
Haggai Eran832a6b02014-12-11 17:04:22 +0200652int mlx5_ib_update_mtt(struct mlx5_ib_mr *mr, u64 start_page_index,
653 int npages, int zap);
Eli Cohene126ba92013-07-07 17:25:49 +0300654int mlx5_ib_dereg_mr(struct ib_mr *ibmr);
Sagi Grimberg9bee1782015-07-30 10:32:35 +0300655struct ib_mr *mlx5_ib_alloc_mr(struct ib_pd *pd,
656 enum ib_mr_type mr_type,
657 u32 max_num_sg);
Sagi Grimberg8a187ee2015-10-13 19:11:26 +0300658int mlx5_ib_map_mr_sg(struct ib_mr *ibmr,
659 struct scatterlist *sg,
660 int sg_nents);
Eli Cohene126ba92013-07-07 17:25:49 +0300661int mlx5_ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
Ira Weinya97e2d82015-05-31 17:15:30 -0400662 const struct ib_wc *in_wc, const struct ib_grh *in_grh,
Ira Weiny4cd7c942015-06-06 14:38:31 -0400663 const struct ib_mad_hdr *in, size_t in_mad_size,
664 struct ib_mad_hdr *out, size_t *out_mad_size,
665 u16 *out_mad_pkey_index);
Eli Cohene126ba92013-07-07 17:25:49 +0300666struct ib_xrcd *mlx5_ib_alloc_xrcd(struct ib_device *ibdev,
667 struct ib_ucontext *context,
668 struct ib_udata *udata);
669int mlx5_ib_dealloc_xrcd(struct ib_xrcd *xrcd);
Eli Cohene126ba92013-07-07 17:25:49 +0300670int mlx5_ib_get_buf_offset(u64 addr, int page_shift, u32 *offset);
671int mlx5_query_ext_port_caps(struct mlx5_ib_dev *dev, u8 port);
Majd Dibbiny1b5daf12015-06-04 19:30:46 +0300672int mlx5_query_mad_ifc_smp_attr_node_info(struct ib_device *ibdev,
673 struct ib_smp *out_mad);
674int mlx5_query_mad_ifc_system_image_guid(struct ib_device *ibdev,
675 __be64 *sys_image_guid);
676int mlx5_query_mad_ifc_max_pkeys(struct ib_device *ibdev,
677 u16 *max_pkeys);
678int mlx5_query_mad_ifc_vendor_id(struct ib_device *ibdev,
679 u32 *vendor_id);
680int mlx5_query_mad_ifc_node_desc(struct mlx5_ib_dev *dev, char *node_desc);
681int mlx5_query_mad_ifc_node_guid(struct mlx5_ib_dev *dev, __be64 *node_guid);
682int mlx5_query_mad_ifc_pkey(struct ib_device *ibdev, u8 port, u16 index,
683 u16 *pkey);
684int mlx5_query_mad_ifc_gids(struct ib_device *ibdev, u8 port, int index,
685 union ib_gid *gid);
686int mlx5_query_mad_ifc_port(struct ib_device *ibdev, u8 port,
687 struct ib_port_attr *props);
Eli Cohene126ba92013-07-07 17:25:49 +0300688int mlx5_ib_query_port(struct ib_device *ibdev, u8 port,
689 struct ib_port_attr *props);
690int mlx5_ib_init_fmr(struct mlx5_ib_dev *dev);
691void mlx5_ib_cleanup_fmr(struct mlx5_ib_dev *dev);
692void mlx5_ib_cont_pages(struct ib_umem *umem, u64 addr, int *count, int *shift,
693 int *ncont, int *order);
Haggai Eran832a6b02014-12-11 17:04:22 +0200694void __mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
695 int page_shift, size_t offset, size_t num_pages,
696 __be64 *pas, int access_flags);
Eli Cohene126ba92013-07-07 17:25:49 +0300697void mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
Haggai Erancc149f752014-12-11 17:04:21 +0200698 int page_shift, __be64 *pas, int access_flags);
Eli Cohene126ba92013-07-07 17:25:49 +0300699void mlx5_ib_copy_pas(u64 *old, u64 *new, int step, int num);
700int mlx5_ib_get_cqe_size(struct mlx5_ib_dev *dev, struct ib_cq *ibcq);
701int mlx5_mr_cache_init(struct mlx5_ib_dev *dev);
702int mlx5_mr_cache_cleanup(struct mlx5_ib_dev *dev);
703int mlx5_mr_ib_cont_pages(struct ib_umem *umem, u64 addr, int *count, int *shift);
704void mlx5_umr_cq_handler(struct ib_cq *cq, void *cq_context);
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200705int mlx5_ib_check_mr_status(struct ib_mr *ibmr, u32 check_mask,
706 struct ib_mr_status *mr_status);
Eli Cohene126ba92013-07-07 17:25:49 +0300707
Haggai Eran8cdd3122014-12-11 17:04:20 +0200708#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
Haggai Eran6aec21f2014-12-11 17:04:23 +0200709extern struct workqueue_struct *mlx5_ib_page_fault_wq;
710
Saeed Mahameed938fe832015-05-28 22:28:41 +0300711void mlx5_ib_internal_fill_odp_caps(struct mlx5_ib_dev *dev);
Haggai Eran6aec21f2014-12-11 17:04:23 +0200712void mlx5_ib_mr_pfault_handler(struct mlx5_ib_qp *qp,
713 struct mlx5_ib_pfault *pfault);
714void mlx5_ib_odp_create_qp(struct mlx5_ib_qp *qp);
715int mlx5_ib_odp_init_one(struct mlx5_ib_dev *ibdev);
716void mlx5_ib_odp_remove_one(struct mlx5_ib_dev *ibdev);
717int __init mlx5_ib_odp_init(void);
718void mlx5_ib_odp_cleanup(void);
719void mlx5_ib_qp_disable_pagefaults(struct mlx5_ib_qp *qp);
720void mlx5_ib_qp_enable_pagefaults(struct mlx5_ib_qp *qp);
Haggai Eranb4cfe442014-12-11 17:04:26 +0200721void mlx5_ib_invalidate_range(struct ib_umem *umem, unsigned long start,
722 unsigned long end);
Haggai Eran6aec21f2014-12-11 17:04:23 +0200723
724#else /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
Saeed Mahameed938fe832015-05-28 22:28:41 +0300725static inline void mlx5_ib_internal_fill_odp_caps(struct mlx5_ib_dev *dev)
Haggai Eran8cdd3122014-12-11 17:04:20 +0200726{
Saeed Mahameed938fe832015-05-28 22:28:41 +0300727 return;
Haggai Eran8cdd3122014-12-11 17:04:20 +0200728}
Haggai Eran6aec21f2014-12-11 17:04:23 +0200729
730static inline void mlx5_ib_odp_create_qp(struct mlx5_ib_qp *qp) {}
731static inline int mlx5_ib_odp_init_one(struct mlx5_ib_dev *ibdev) { return 0; }
732static inline void mlx5_ib_odp_remove_one(struct mlx5_ib_dev *ibdev) {}
733static inline int mlx5_ib_odp_init(void) { return 0; }
734static inline void mlx5_ib_odp_cleanup(void) {}
735static inline void mlx5_ib_qp_disable_pagefaults(struct mlx5_ib_qp *qp) {}
736static inline void mlx5_ib_qp_enable_pagefaults(struct mlx5_ib_qp *qp) {}
737
Haggai Eran8cdd3122014-12-11 17:04:20 +0200738#endif /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
739
Achiad Shochat2811ba52015-12-23 18:47:24 +0200740__be16 mlx5_get_roce_udp_sport(struct mlx5_ib_dev *dev, u8 port_num,
741 int index);
742
Eli Cohene126ba92013-07-07 17:25:49 +0300743static inline void init_query_mad(struct ib_smp *mad)
744{
745 mad->base_version = 1;
746 mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
747 mad->class_version = 1;
748 mad->method = IB_MGMT_METHOD_GET;
749}
750
751static inline u8 convert_access(int acc)
752{
753 return (acc & IB_ACCESS_REMOTE_ATOMIC ? MLX5_PERM_ATOMIC : 0) |
754 (acc & IB_ACCESS_REMOTE_WRITE ? MLX5_PERM_REMOTE_WRITE : 0) |
755 (acc & IB_ACCESS_REMOTE_READ ? MLX5_PERM_REMOTE_READ : 0) |
756 (acc & IB_ACCESS_LOCAL_WRITE ? MLX5_PERM_LOCAL_WRITE : 0) |
757 MLX5_PERM_LOCAL_READ;
758}
759
Sagi Grimbergb6364012015-09-02 22:23:04 +0300760static inline int is_qp1(enum ib_qp_type qp_type)
761{
762 return qp_type == IB_QPT_GSI;
763}
764
Haggai Erancc149f752014-12-11 17:04:21 +0200765#define MLX5_MAX_UMR_SHIFT 16
766#define MLX5_MAX_UMR_PAGES (1 << MLX5_MAX_UMR_SHIFT)
767
Leon Romanovsky051f2632015-12-20 12:16:11 +0200768static inline u32 check_cq_create_flags(u32 flags)
769{
770 /*
771 * It returns non-zero value for unsupported CQ
772 * create flags, otherwise it returns zero.
773 */
Leon Romanovsky34356f62015-12-29 17:01:30 +0200774 return (flags & ~(IB_CQ_FLAGS_IGNORE_OVERRUN |
775 IB_CQ_FLAGS_TIMESTAMP_COMPLETION));
Leon Romanovsky051f2632015-12-20 12:16:11 +0200776}
Haggai Abramovskycfb5e082016-01-14 19:12:57 +0200777
778static inline int verify_assign_uidx(u8 cqe_version, u32 cmd_uidx,
779 u32 *user_index)
780{
781 if (cqe_version) {
782 if ((cmd_uidx == MLX5_IB_DEFAULT_UIDX) ||
783 (cmd_uidx & ~MLX5_USER_ASSIGNED_UIDX_MASK))
784 return -EINVAL;
785 *user_index = cmd_uidx;
786 } else {
787 *user_index = MLX5_IB_DEFAULT_UIDX;
788 }
789
790 return 0;
791}
Eli Cohene126ba92013-07-07 17:25:49 +0300792#endif /* MLX5_IB_H */