RDMA/core: Introduce RDMA subsystem ibdev_* print functions
[linux-2.6-microblaze.git] / include / rdma / ib_verbs.h
1 /*
2  * Copyright (c) 2004 Mellanox Technologies Ltd.  All rights reserved.
3  * Copyright (c) 2004 Infinicon Corporation.  All rights reserved.
4  * Copyright (c) 2004 Intel Corporation.  All rights reserved.
5  * Copyright (c) 2004 Topspin Corporation.  All rights reserved.
6  * Copyright (c) 2004 Voltaire Corporation.  All rights reserved.
7  * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
8  * Copyright (c) 2005, 2006, 2007 Cisco Systems.  All rights reserved.
9  *
10  * This software is available to you under a choice of one of two
11  * licenses.  You may choose to be licensed under the terms of the GNU
12  * General Public License (GPL) Version 2, available from the file
13  * COPYING in the main directory of this source tree, or the
14  * OpenIB.org BSD license below:
15  *
16  *     Redistribution and use in source and binary forms, with or
17  *     without modification, are permitted provided that the following
18  *     conditions are met:
19  *
20  *      - Redistributions of source code must retain the above
21  *        copyright notice, this list of conditions and the following
22  *        disclaimer.
23  *
24  *      - Redistributions in binary form must reproduce the above
25  *        copyright notice, this list of conditions and the following
26  *        disclaimer in the documentation and/or other materials
27  *        provided with the distribution.
28  *
29  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
33  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36  * SOFTWARE.
37  */
38
39 #if !defined(IB_VERBS_H)
40 #define IB_VERBS_H
41
42 #include <linux/types.h>
43 #include <linux/device.h>
44 #include <linux/dma-mapping.h>
45 #include <linux/kref.h>
46 #include <linux/list.h>
47 #include <linux/rwsem.h>
48 #include <linux/workqueue.h>
49 #include <linux/irq_poll.h>
50 #include <uapi/linux/if_ether.h>
51 #include <net/ipv6.h>
52 #include <net/ip.h>
53 #include <linux/string.h>
54 #include <linux/slab.h>
55 #include <linux/netdevice.h>
56 #include <linux/refcount.h>
57 #include <linux/if_link.h>
58 #include <linux/atomic.h>
59 #include <linux/mmu_notifier.h>
60 #include <linux/uaccess.h>
61 #include <linux/cgroup_rdma.h>
62 #include <linux/irqflags.h>
63 #include <linux/preempt.h>
64 #include <uapi/rdma/ib_user_verbs.h>
65 #include <rdma/restrack.h>
66 #include <uapi/rdma/rdma_user_ioctl.h>
67 #include <uapi/rdma/ib_user_ioctl_verbs.h>
68
69 #define IB_FW_VERSION_NAME_MAX  ETHTOOL_FWVERS_LEN
70
71 struct ib_umem_odp;
72
73 extern struct workqueue_struct *ib_wq;
74 extern struct workqueue_struct *ib_comp_wq;
75 extern struct workqueue_struct *ib_comp_unbound_wq;
76
77 __printf(3, 4) __cold
78 void ibdev_printk(const char *level, const struct ib_device *ibdev,
79                   const char *format, ...);
80 __printf(2, 3) __cold
81 void ibdev_emerg(const struct ib_device *ibdev, const char *format, ...);
82 __printf(2, 3) __cold
83 void ibdev_alert(const struct ib_device *ibdev, const char *format, ...);
84 __printf(2, 3) __cold
85 void ibdev_crit(const struct ib_device *ibdev, const char *format, ...);
86 __printf(2, 3) __cold
87 void ibdev_err(const struct ib_device *ibdev, const char *format, ...);
88 __printf(2, 3) __cold
89 void ibdev_warn(const struct ib_device *ibdev, const char *format, ...);
90 __printf(2, 3) __cold
91 void ibdev_notice(const struct ib_device *ibdev, const char *format, ...);
92 __printf(2, 3) __cold
93 void ibdev_info(const struct ib_device *ibdev, const char *format, ...);
94
95 #if defined(CONFIG_DYNAMIC_DEBUG)
96 #define ibdev_dbg(__dev, format, args...)                       \
97         dynamic_ibdev_dbg(__dev, format, ##args)
98 #elif defined(DEBUG)
99 #define ibdev_dbg(__dev, format, args...)                       \
100         ibdev_printk(KERN_DEBUG, __dev, format, ##args)
101 #else
102 __printf(2, 3) __cold
103 static inline
104 void ibdev_dbg(const struct ib_device *ibdev, const char *format, ...) {}
105 #endif
106
107 union ib_gid {
108         u8      raw[16];
109         struct {
110                 __be64  subnet_prefix;
111                 __be64  interface_id;
112         } global;
113 };
114
115 extern union ib_gid zgid;
116
117 enum ib_gid_type {
118         /* If link layer is Ethernet, this is RoCE V1 */
119         IB_GID_TYPE_IB        = 0,
120         IB_GID_TYPE_ROCE      = 0,
121         IB_GID_TYPE_ROCE_UDP_ENCAP = 1,
122         IB_GID_TYPE_SIZE
123 };
124
125 #define ROCE_V2_UDP_DPORT      4791
126 struct ib_gid_attr {
127         struct net_device       *ndev;
128         struct ib_device        *device;
129         union ib_gid            gid;
130         enum ib_gid_type        gid_type;
131         u16                     index;
132         u8                      port_num;
133 };
134
135 enum rdma_node_type {
136         /* IB values map to NodeInfo:NodeType. */
137         RDMA_NODE_IB_CA         = 1,
138         RDMA_NODE_IB_SWITCH,
139         RDMA_NODE_IB_ROUTER,
140         RDMA_NODE_RNIC,
141         RDMA_NODE_USNIC,
142         RDMA_NODE_USNIC_UDP,
143 };
144
145 enum {
146         /* set the local administered indication */
147         IB_SA_WELL_KNOWN_GUID   = BIT_ULL(57) | 2,
148 };
149
150 enum rdma_transport_type {
151         RDMA_TRANSPORT_IB,
152         RDMA_TRANSPORT_IWARP,
153         RDMA_TRANSPORT_USNIC,
154         RDMA_TRANSPORT_USNIC_UDP
155 };
156
157 enum rdma_protocol_type {
158         RDMA_PROTOCOL_IB,
159         RDMA_PROTOCOL_IBOE,
160         RDMA_PROTOCOL_IWARP,
161         RDMA_PROTOCOL_USNIC_UDP
162 };
163
164 __attribute_const__ enum rdma_transport_type
165 rdma_node_get_transport(enum rdma_node_type node_type);
166
167 enum rdma_network_type {
168         RDMA_NETWORK_IB,
169         RDMA_NETWORK_ROCE_V1 = RDMA_NETWORK_IB,
170         RDMA_NETWORK_IPV4,
171         RDMA_NETWORK_IPV6
172 };
173
174 static inline enum ib_gid_type ib_network_to_gid_type(enum rdma_network_type network_type)
175 {
176         if (network_type == RDMA_NETWORK_IPV4 ||
177             network_type == RDMA_NETWORK_IPV6)
178                 return IB_GID_TYPE_ROCE_UDP_ENCAP;
179
180         /* IB_GID_TYPE_IB same as RDMA_NETWORK_ROCE_V1 */
181         return IB_GID_TYPE_IB;
182 }
183
184 static inline enum rdma_network_type
185 rdma_gid_attr_network_type(const struct ib_gid_attr *attr)
186 {
187         if (attr->gid_type == IB_GID_TYPE_IB)
188                 return RDMA_NETWORK_IB;
189
190         if (ipv6_addr_v4mapped((struct in6_addr *)&attr->gid))
191                 return RDMA_NETWORK_IPV4;
192         else
193                 return RDMA_NETWORK_IPV6;
194 }
195
196 enum rdma_link_layer {
197         IB_LINK_LAYER_UNSPECIFIED,
198         IB_LINK_LAYER_INFINIBAND,
199         IB_LINK_LAYER_ETHERNET,
200 };
201
202 enum ib_device_cap_flags {
203         IB_DEVICE_RESIZE_MAX_WR                 = (1 << 0),
204         IB_DEVICE_BAD_PKEY_CNTR                 = (1 << 1),
205         IB_DEVICE_BAD_QKEY_CNTR                 = (1 << 2),
206         IB_DEVICE_RAW_MULTI                     = (1 << 3),
207         IB_DEVICE_AUTO_PATH_MIG                 = (1 << 4),
208         IB_DEVICE_CHANGE_PHY_PORT               = (1 << 5),
209         IB_DEVICE_UD_AV_PORT_ENFORCE            = (1 << 6),
210         IB_DEVICE_CURR_QP_STATE_MOD             = (1 << 7),
211         IB_DEVICE_SHUTDOWN_PORT                 = (1 << 8),
212         /* Not in use, former INIT_TYPE         = (1 << 9),*/
213         IB_DEVICE_PORT_ACTIVE_EVENT             = (1 << 10),
214         IB_DEVICE_SYS_IMAGE_GUID                = (1 << 11),
215         IB_DEVICE_RC_RNR_NAK_GEN                = (1 << 12),
216         IB_DEVICE_SRQ_RESIZE                    = (1 << 13),
217         IB_DEVICE_N_NOTIFY_CQ                   = (1 << 14),
218
219         /*
220          * This device supports a per-device lkey or stag that can be
221          * used without performing a memory registration for the local
222          * memory.  Note that ULPs should never check this flag, but
223          * instead of use the local_dma_lkey flag in the ib_pd structure,
224          * which will always contain a usable lkey.
225          */
226         IB_DEVICE_LOCAL_DMA_LKEY                = (1 << 15),
227         /* Reserved, old SEND_W_INV             = (1 << 16),*/
228         IB_DEVICE_MEM_WINDOW                    = (1 << 17),
229         /*
230          * Devices should set IB_DEVICE_UD_IP_SUM if they support
231          * insertion of UDP and TCP checksum on outgoing UD IPoIB
232          * messages and can verify the validity of checksum for
233          * incoming messages.  Setting this flag implies that the
234          * IPoIB driver may set NETIF_F_IP_CSUM for datagram mode.
235          */
236         IB_DEVICE_UD_IP_CSUM                    = (1 << 18),
237         IB_DEVICE_UD_TSO                        = (1 << 19),
238         IB_DEVICE_XRC                           = (1 << 20),
239
240         /*
241          * This device supports the IB "base memory management extension",
242          * which includes support for fast registrations (IB_WR_REG_MR,
243          * IB_WR_LOCAL_INV and IB_WR_SEND_WITH_INV verbs).  This flag should
244          * also be set by any iWarp device which must support FRs to comply
245          * to the iWarp verbs spec.  iWarp devices also support the
246          * IB_WR_RDMA_READ_WITH_INV verb for RDMA READs that invalidate the
247          * stag.
248          */
249         IB_DEVICE_MEM_MGT_EXTENSIONS            = (1 << 21),
250         IB_DEVICE_BLOCK_MULTICAST_LOOPBACK      = (1 << 22),
251         IB_DEVICE_MEM_WINDOW_TYPE_2A            = (1 << 23),
252         IB_DEVICE_MEM_WINDOW_TYPE_2B            = (1 << 24),
253         IB_DEVICE_RC_IP_CSUM                    = (1 << 25),
254         /* Deprecated. Please use IB_RAW_PACKET_CAP_IP_CSUM. */
255         IB_DEVICE_RAW_IP_CSUM                   = (1 << 26),
256         /*
257          * Devices should set IB_DEVICE_CROSS_CHANNEL if they
258          * support execution of WQEs that involve synchronization
259          * of I/O operations with single completion queue managed
260          * by hardware.
261          */
262         IB_DEVICE_CROSS_CHANNEL                 = (1 << 27),
263         IB_DEVICE_MANAGED_FLOW_STEERING         = (1 << 29),
264         IB_DEVICE_SIGNATURE_HANDOVER            = (1 << 30),
265         IB_DEVICE_ON_DEMAND_PAGING              = (1ULL << 31),
266         IB_DEVICE_SG_GAPS_REG                   = (1ULL << 32),
267         IB_DEVICE_VIRTUAL_FUNCTION              = (1ULL << 33),
268         /* Deprecated. Please use IB_RAW_PACKET_CAP_SCATTER_FCS. */
269         IB_DEVICE_RAW_SCATTER_FCS               = (1ULL << 34),
270         IB_DEVICE_RDMA_NETDEV_OPA_VNIC          = (1ULL << 35),
271         /* The device supports padding incoming writes to cacheline. */
272         IB_DEVICE_PCI_WRITE_END_PADDING         = (1ULL << 36),
273         IB_DEVICE_ALLOW_USER_UNREG              = (1ULL << 37),
274 };
275
276 enum ib_signature_prot_cap {
277         IB_PROT_T10DIF_TYPE_1 = 1,
278         IB_PROT_T10DIF_TYPE_2 = 1 << 1,
279         IB_PROT_T10DIF_TYPE_3 = 1 << 2,
280 };
281
282 enum ib_signature_guard_cap {
283         IB_GUARD_T10DIF_CRC     = 1,
284         IB_GUARD_T10DIF_CSUM    = 1 << 1,
285 };
286
287 enum ib_atomic_cap {
288         IB_ATOMIC_NONE,
289         IB_ATOMIC_HCA,
290         IB_ATOMIC_GLOB
291 };
292
293 enum ib_odp_general_cap_bits {
294         IB_ODP_SUPPORT          = 1 << 0,
295         IB_ODP_SUPPORT_IMPLICIT = 1 << 1,
296 };
297
298 enum ib_odp_transport_cap_bits {
299         IB_ODP_SUPPORT_SEND     = 1 << 0,
300         IB_ODP_SUPPORT_RECV     = 1 << 1,
301         IB_ODP_SUPPORT_WRITE    = 1 << 2,
302         IB_ODP_SUPPORT_READ     = 1 << 3,
303         IB_ODP_SUPPORT_ATOMIC   = 1 << 4,
304         IB_ODP_SUPPORT_SRQ_RECV = 1 << 5,
305 };
306
307 struct ib_odp_caps {
308         uint64_t general_caps;
309         struct {
310                 uint32_t  rc_odp_caps;
311                 uint32_t  uc_odp_caps;
312                 uint32_t  ud_odp_caps;
313                 uint32_t  xrc_odp_caps;
314         } per_transport_caps;
315 };
316
317 struct ib_rss_caps {
318         /* Corresponding bit will be set if qp type from
319          * 'enum ib_qp_type' is supported, e.g.
320          * supported_qpts |= 1 << IB_QPT_UD
321          */
322         u32 supported_qpts;
323         u32 max_rwq_indirection_tables;
324         u32 max_rwq_indirection_table_size;
325 };
326
327 enum ib_tm_cap_flags {
328         /*  Support tag matching on RC transport */
329         IB_TM_CAP_RC                = 1 << 0,
330 };
331
332 struct ib_tm_caps {
333         /* Max size of RNDV header */
334         u32 max_rndv_hdr_size;
335         /* Max number of entries in tag matching list */
336         u32 max_num_tags;
337         /* From enum ib_tm_cap_flags */
338         u32 flags;
339         /* Max number of outstanding list operations */
340         u32 max_ops;
341         /* Max number of SGE in tag matching entry */
342         u32 max_sge;
343 };
344
345 struct ib_cq_init_attr {
346         unsigned int    cqe;
347         int             comp_vector;
348         u32             flags;
349 };
350
351 enum ib_cq_attr_mask {
352         IB_CQ_MODERATE = 1 << 0,
353 };
354
355 struct ib_cq_caps {
356         u16     max_cq_moderation_count;
357         u16     max_cq_moderation_period;
358 };
359
360 struct ib_dm_mr_attr {
361         u64             length;
362         u64             offset;
363         u32             access_flags;
364 };
365
366 struct ib_dm_alloc_attr {
367         u64     length;
368         u32     alignment;
369         u32     flags;
370 };
371
372 struct ib_device_attr {
373         u64                     fw_ver;
374         __be64                  sys_image_guid;
375         u64                     max_mr_size;
376         u64                     page_size_cap;
377         u32                     vendor_id;
378         u32                     vendor_part_id;
379         u32                     hw_ver;
380         int                     max_qp;
381         int                     max_qp_wr;
382         u64                     device_cap_flags;
383         int                     max_send_sge;
384         int                     max_recv_sge;
385         int                     max_sge_rd;
386         int                     max_cq;
387         int                     max_cqe;
388         int                     max_mr;
389         int                     max_pd;
390         int                     max_qp_rd_atom;
391         int                     max_ee_rd_atom;
392         int                     max_res_rd_atom;
393         int                     max_qp_init_rd_atom;
394         int                     max_ee_init_rd_atom;
395         enum ib_atomic_cap      atomic_cap;
396         enum ib_atomic_cap      masked_atomic_cap;
397         int                     max_ee;
398         int                     max_rdd;
399         int                     max_mw;
400         int                     max_raw_ipv6_qp;
401         int                     max_raw_ethy_qp;
402         int                     max_mcast_grp;
403         int                     max_mcast_qp_attach;
404         int                     max_total_mcast_qp_attach;
405         int                     max_ah;
406         int                     max_fmr;
407         int                     max_map_per_fmr;
408         int                     max_srq;
409         int                     max_srq_wr;
410         int                     max_srq_sge;
411         unsigned int            max_fast_reg_page_list_len;
412         u16                     max_pkeys;
413         u8                      local_ca_ack_delay;
414         int                     sig_prot_cap;
415         int                     sig_guard_cap;
416         struct ib_odp_caps      odp_caps;
417         uint64_t                timestamp_mask;
418         uint64_t                hca_core_clock; /* in KHZ */
419         struct ib_rss_caps      rss_caps;
420         u32                     max_wq_type_rq;
421         u32                     raw_packet_caps; /* Use ib_raw_packet_caps enum */
422         struct ib_tm_caps       tm_caps;
423         struct ib_cq_caps       cq_caps;
424         u64                     max_dm_size;
425 };
426
427 enum ib_mtu {
428         IB_MTU_256  = 1,
429         IB_MTU_512  = 2,
430         IB_MTU_1024 = 3,
431         IB_MTU_2048 = 4,
432         IB_MTU_4096 = 5
433 };
434
435 static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
436 {
437         switch (mtu) {
438         case IB_MTU_256:  return  256;
439         case IB_MTU_512:  return  512;
440         case IB_MTU_1024: return 1024;
441         case IB_MTU_2048: return 2048;
442         case IB_MTU_4096: return 4096;
443         default:          return -1;
444         }
445 }
446
447 static inline enum ib_mtu ib_mtu_int_to_enum(int mtu)
448 {
449         if (mtu >= 4096)
450                 return IB_MTU_4096;
451         else if (mtu >= 2048)
452                 return IB_MTU_2048;
453         else if (mtu >= 1024)
454                 return IB_MTU_1024;
455         else if (mtu >= 512)
456                 return IB_MTU_512;
457         else
458                 return IB_MTU_256;
459 }
460
461 enum ib_port_state {
462         IB_PORT_NOP             = 0,
463         IB_PORT_DOWN            = 1,
464         IB_PORT_INIT            = 2,
465         IB_PORT_ARMED           = 3,
466         IB_PORT_ACTIVE          = 4,
467         IB_PORT_ACTIVE_DEFER    = 5
468 };
469
470 enum ib_port_width {
471         IB_WIDTH_1X     = 1,
472         IB_WIDTH_2X     = 16,
473         IB_WIDTH_4X     = 2,
474         IB_WIDTH_8X     = 4,
475         IB_WIDTH_12X    = 8
476 };
477
478 static inline int ib_width_enum_to_int(enum ib_port_width width)
479 {
480         switch (width) {
481         case IB_WIDTH_1X:  return  1;
482         case IB_WIDTH_2X:  return  2;
483         case IB_WIDTH_4X:  return  4;
484         case IB_WIDTH_8X:  return  8;
485         case IB_WIDTH_12X: return 12;
486         default:          return -1;
487         }
488 }
489
490 enum ib_port_speed {
491         IB_SPEED_SDR    = 1,
492         IB_SPEED_DDR    = 2,
493         IB_SPEED_QDR    = 4,
494         IB_SPEED_FDR10  = 8,
495         IB_SPEED_FDR    = 16,
496         IB_SPEED_EDR    = 32,
497         IB_SPEED_HDR    = 64
498 };
499
500 /**
501  * struct rdma_hw_stats
502  * @lock - Mutex to protect parallel write access to lifespan and values
503  *    of counters, which are 64bits and not guaranteeed to be written
504  *    atomicaly on 32bits systems.
505  * @timestamp - Used by the core code to track when the last update was
506  * @lifespan - Used by the core code to determine how old the counters
507  *   should be before being updated again.  Stored in jiffies, defaults
508  *   to 10 milliseconds, drivers can override the default be specifying
509  *   their own value during their allocation routine.
510  * @name - Array of pointers to static names used for the counters in
511  *   directory.
512  * @num_counters - How many hardware counters there are.  If name is
513  *   shorter than this number, a kernel oops will result.  Driver authors
514  *   are encouraged to leave BUILD_BUG_ON(ARRAY_SIZE(@name) < num_counters)
515  *   in their code to prevent this.
516  * @value - Array of u64 counters that are accessed by the sysfs code and
517  *   filled in by the drivers get_stats routine
518  */
519 struct rdma_hw_stats {
520         struct mutex    lock; /* Protect lifespan and values[] */
521         unsigned long   timestamp;
522         unsigned long   lifespan;
523         const char * const *names;
524         int             num_counters;
525         u64             value[];
526 };
527
528 #define RDMA_HW_STATS_DEFAULT_LIFESPAN 10
529 /**
530  * rdma_alloc_hw_stats_struct - Helper function to allocate dynamic struct
531  *   for drivers.
532  * @names - Array of static const char *
533  * @num_counters - How many elements in array
534  * @lifespan - How many milliseconds between updates
535  */
536 static inline struct rdma_hw_stats *rdma_alloc_hw_stats_struct(
537                 const char * const *names, int num_counters,
538                 unsigned long lifespan)
539 {
540         struct rdma_hw_stats *stats;
541
542         stats = kzalloc(sizeof(*stats) + num_counters * sizeof(u64),
543                         GFP_KERNEL);
544         if (!stats)
545                 return NULL;
546         stats->names = names;
547         stats->num_counters = num_counters;
548         stats->lifespan = msecs_to_jiffies(lifespan);
549
550         return stats;
551 }
552
553
554 /* Define bits for the various functionality this port needs to be supported by
555  * the core.
556  */
557 /* Management                           0x00000FFF */
558 #define RDMA_CORE_CAP_IB_MAD            0x00000001
559 #define RDMA_CORE_CAP_IB_SMI            0x00000002
560 #define RDMA_CORE_CAP_IB_CM             0x00000004
561 #define RDMA_CORE_CAP_IW_CM             0x00000008
562 #define RDMA_CORE_CAP_IB_SA             0x00000010
563 #define RDMA_CORE_CAP_OPA_MAD           0x00000020
564
565 /* Address format                       0x000FF000 */
566 #define RDMA_CORE_CAP_AF_IB             0x00001000
567 #define RDMA_CORE_CAP_ETH_AH            0x00002000
568 #define RDMA_CORE_CAP_OPA_AH            0x00004000
569 #define RDMA_CORE_CAP_IB_GRH_REQUIRED   0x00008000
570
571 /* Protocol                             0xFFF00000 */
572 #define RDMA_CORE_CAP_PROT_IB           0x00100000
573 #define RDMA_CORE_CAP_PROT_ROCE         0x00200000
574 #define RDMA_CORE_CAP_PROT_IWARP        0x00400000
575 #define RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP 0x00800000
576 #define RDMA_CORE_CAP_PROT_RAW_PACKET   0x01000000
577 #define RDMA_CORE_CAP_PROT_USNIC        0x02000000
578
579 #define RDMA_CORE_PORT_IB_GRH_REQUIRED (RDMA_CORE_CAP_IB_GRH_REQUIRED \
580                                         | RDMA_CORE_CAP_PROT_ROCE     \
581                                         | RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP)
582
583 #define RDMA_CORE_PORT_IBA_IB          (RDMA_CORE_CAP_PROT_IB  \
584                                         | RDMA_CORE_CAP_IB_MAD \
585                                         | RDMA_CORE_CAP_IB_SMI \
586                                         | RDMA_CORE_CAP_IB_CM  \
587                                         | RDMA_CORE_CAP_IB_SA  \
588                                         | RDMA_CORE_CAP_AF_IB)
589 #define RDMA_CORE_PORT_IBA_ROCE        (RDMA_CORE_CAP_PROT_ROCE \
590                                         | RDMA_CORE_CAP_IB_MAD  \
591                                         | RDMA_CORE_CAP_IB_CM   \
592                                         | RDMA_CORE_CAP_AF_IB   \
593                                         | RDMA_CORE_CAP_ETH_AH)
594 #define RDMA_CORE_PORT_IBA_ROCE_UDP_ENCAP                       \
595                                         (RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP \
596                                         | RDMA_CORE_CAP_IB_MAD  \
597                                         | RDMA_CORE_CAP_IB_CM   \
598                                         | RDMA_CORE_CAP_AF_IB   \
599                                         | RDMA_CORE_CAP_ETH_AH)
600 #define RDMA_CORE_PORT_IWARP           (RDMA_CORE_CAP_PROT_IWARP \
601                                         | RDMA_CORE_CAP_IW_CM)
602 #define RDMA_CORE_PORT_INTEL_OPA       (RDMA_CORE_PORT_IBA_IB  \
603                                         | RDMA_CORE_CAP_OPA_MAD)
604
605 #define RDMA_CORE_PORT_RAW_PACKET       (RDMA_CORE_CAP_PROT_RAW_PACKET)
606
607 #define RDMA_CORE_PORT_USNIC            (RDMA_CORE_CAP_PROT_USNIC)
608
609 struct ib_port_attr {
610         u64                     subnet_prefix;
611         enum ib_port_state      state;
612         enum ib_mtu             max_mtu;
613         enum ib_mtu             active_mtu;
614         int                     gid_tbl_len;
615         unsigned int            ip_gids:1;
616         /* This is the value from PortInfo CapabilityMask, defined by IBA */
617         u32                     port_cap_flags;
618         u32                     max_msg_sz;
619         u32                     bad_pkey_cntr;
620         u32                     qkey_viol_cntr;
621         u16                     pkey_tbl_len;
622         u32                     sm_lid;
623         u32                     lid;
624         u8                      lmc;
625         u8                      max_vl_num;
626         u8                      sm_sl;
627         u8                      subnet_timeout;
628         u8                      init_type_reply;
629         u8                      active_width;
630         u8                      active_speed;
631         u8                      phys_state;
632         u16                     port_cap_flags2;
633 };
634
635 enum ib_device_modify_flags {
636         IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
637         IB_DEVICE_MODIFY_NODE_DESC      = 1 << 1
638 };
639
640 #define IB_DEVICE_NODE_DESC_MAX 64
641
642 struct ib_device_modify {
643         u64     sys_image_guid;
644         char    node_desc[IB_DEVICE_NODE_DESC_MAX];
645 };
646
647 enum ib_port_modify_flags {
648         IB_PORT_SHUTDOWN                = 1,
649         IB_PORT_INIT_TYPE               = (1<<2),
650         IB_PORT_RESET_QKEY_CNTR         = (1<<3),
651         IB_PORT_OPA_MASK_CHG            = (1<<4)
652 };
653
654 struct ib_port_modify {
655         u32     set_port_cap_mask;
656         u32     clr_port_cap_mask;
657         u8      init_type;
658 };
659
660 enum ib_event_type {
661         IB_EVENT_CQ_ERR,
662         IB_EVENT_QP_FATAL,
663         IB_EVENT_QP_REQ_ERR,
664         IB_EVENT_QP_ACCESS_ERR,
665         IB_EVENT_COMM_EST,
666         IB_EVENT_SQ_DRAINED,
667         IB_EVENT_PATH_MIG,
668         IB_EVENT_PATH_MIG_ERR,
669         IB_EVENT_DEVICE_FATAL,
670         IB_EVENT_PORT_ACTIVE,
671         IB_EVENT_PORT_ERR,
672         IB_EVENT_LID_CHANGE,
673         IB_EVENT_PKEY_CHANGE,
674         IB_EVENT_SM_CHANGE,
675         IB_EVENT_SRQ_ERR,
676         IB_EVENT_SRQ_LIMIT_REACHED,
677         IB_EVENT_QP_LAST_WQE_REACHED,
678         IB_EVENT_CLIENT_REREGISTER,
679         IB_EVENT_GID_CHANGE,
680         IB_EVENT_WQ_FATAL,
681 };
682
683 const char *__attribute_const__ ib_event_msg(enum ib_event_type event);
684
685 struct ib_event {
686         struct ib_device        *device;
687         union {
688                 struct ib_cq    *cq;
689                 struct ib_qp    *qp;
690                 struct ib_srq   *srq;
691                 struct ib_wq    *wq;
692                 u8              port_num;
693         } element;
694         enum ib_event_type      event;
695 };
696
697 struct ib_event_handler {
698         struct ib_device *device;
699         void            (*handler)(struct ib_event_handler *, struct ib_event *);
700         struct list_head  list;
701 };
702
703 #define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler)          \
704         do {                                                    \
705                 (_ptr)->device  = _device;                      \
706                 (_ptr)->handler = _handler;                     \
707                 INIT_LIST_HEAD(&(_ptr)->list);                  \
708         } while (0)
709
710 struct ib_global_route {
711         const struct ib_gid_attr *sgid_attr;
712         union ib_gid    dgid;
713         u32             flow_label;
714         u8              sgid_index;
715         u8              hop_limit;
716         u8              traffic_class;
717 };
718
719 struct ib_grh {
720         __be32          version_tclass_flow;
721         __be16          paylen;
722         u8              next_hdr;
723         u8              hop_limit;
724         union ib_gid    sgid;
725         union ib_gid    dgid;
726 };
727
728 union rdma_network_hdr {
729         struct ib_grh ibgrh;
730         struct {
731                 /* The IB spec states that if it's IPv4, the header
732                  * is located in the last 20 bytes of the header.
733                  */
734                 u8              reserved[20];
735                 struct iphdr    roce4grh;
736         };
737 };
738
739 #define IB_QPN_MASK             0xFFFFFF
740
741 enum {
742         IB_MULTICAST_QPN = 0xffffff
743 };
744
745 #define IB_LID_PERMISSIVE       cpu_to_be16(0xFFFF)
746 #define IB_MULTICAST_LID_BASE   cpu_to_be16(0xC000)
747
748 enum ib_ah_flags {
749         IB_AH_GRH       = 1
750 };
751
752 enum ib_rate {
753         IB_RATE_PORT_CURRENT = 0,
754         IB_RATE_2_5_GBPS = 2,
755         IB_RATE_5_GBPS   = 5,
756         IB_RATE_10_GBPS  = 3,
757         IB_RATE_20_GBPS  = 6,
758         IB_RATE_30_GBPS  = 4,
759         IB_RATE_40_GBPS  = 7,
760         IB_RATE_60_GBPS  = 8,
761         IB_RATE_80_GBPS  = 9,
762         IB_RATE_120_GBPS = 10,
763         IB_RATE_14_GBPS  = 11,
764         IB_RATE_56_GBPS  = 12,
765         IB_RATE_112_GBPS = 13,
766         IB_RATE_168_GBPS = 14,
767         IB_RATE_25_GBPS  = 15,
768         IB_RATE_100_GBPS = 16,
769         IB_RATE_200_GBPS = 17,
770         IB_RATE_300_GBPS = 18,
771         IB_RATE_28_GBPS  = 19,
772         IB_RATE_50_GBPS  = 20,
773         IB_RATE_400_GBPS = 21,
774         IB_RATE_600_GBPS = 22,
775 };
776
777 /**
778  * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
779  * base rate of 2.5 Gbit/sec.  For example, IB_RATE_5_GBPS will be
780  * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
781  * @rate: rate to convert.
782  */
783 __attribute_const__ int ib_rate_to_mult(enum ib_rate rate);
784
785 /**
786  * ib_rate_to_mbps - Convert the IB rate enum to Mbps.
787  * For example, IB_RATE_2_5_GBPS will be converted to 2500.
788  * @rate: rate to convert.
789  */
790 __attribute_const__ int ib_rate_to_mbps(enum ib_rate rate);
791
792
793 /**
794  * enum ib_mr_type - memory region type
795  * @IB_MR_TYPE_MEM_REG:       memory region that is used for
796  *                            normal registration
797  * @IB_MR_TYPE_SIGNATURE:     memory region that is used for
798  *                            signature operations (data-integrity
799  *                            capable regions)
800  * @IB_MR_TYPE_SG_GAPS:       memory region that is capable to
801  *                            register any arbitrary sg lists (without
802  *                            the normal mr constraints - see
803  *                            ib_map_mr_sg)
804  */
805 enum ib_mr_type {
806         IB_MR_TYPE_MEM_REG,
807         IB_MR_TYPE_SIGNATURE,
808         IB_MR_TYPE_SG_GAPS,
809 };
810
811 /**
812  * Signature types
813  * IB_SIG_TYPE_NONE: Unprotected.
814  * IB_SIG_TYPE_T10_DIF: Type T10-DIF
815  */
816 enum ib_signature_type {
817         IB_SIG_TYPE_NONE,
818         IB_SIG_TYPE_T10_DIF,
819 };
820
821 /**
822  * Signature T10-DIF block-guard types
823  * IB_T10DIF_CRC: Corresponds to T10-PI mandated CRC checksum rules.
824  * IB_T10DIF_CSUM: Corresponds to IP checksum rules.
825  */
826 enum ib_t10_dif_bg_type {
827         IB_T10DIF_CRC,
828         IB_T10DIF_CSUM
829 };
830
831 /**
832  * struct ib_t10_dif_domain - Parameters specific for T10-DIF
833  *     domain.
834  * @bg_type: T10-DIF block guard type (CRC|CSUM)
835  * @pi_interval: protection information interval.
836  * @bg: seed of guard computation.
837  * @app_tag: application tag of guard block
838  * @ref_tag: initial guard block reference tag.
839  * @ref_remap: Indicate wethear the reftag increments each block
840  * @app_escape: Indicate to skip block check if apptag=0xffff
841  * @ref_escape: Indicate to skip block check if reftag=0xffffffff
842  * @apptag_check_mask: check bitmask of application tag.
843  */
844 struct ib_t10_dif_domain {
845         enum ib_t10_dif_bg_type bg_type;
846         u16                     pi_interval;
847         u16                     bg;
848         u16                     app_tag;
849         u32                     ref_tag;
850         bool                    ref_remap;
851         bool                    app_escape;
852         bool                    ref_escape;
853         u16                     apptag_check_mask;
854 };
855
856 /**
857  * struct ib_sig_domain - Parameters for signature domain
858  * @sig_type: specific signauture type
859  * @sig: union of all signature domain attributes that may
860  *     be used to set domain layout.
861  */
862 struct ib_sig_domain {
863         enum ib_signature_type sig_type;
864         union {
865                 struct ib_t10_dif_domain dif;
866         } sig;
867 };
868
869 /**
870  * struct ib_sig_attrs - Parameters for signature handover operation
871  * @check_mask: bitmask for signature byte check (8 bytes)
872  * @mem: memory domain layout desciptor.
873  * @wire: wire domain layout desciptor.
874  */
875 struct ib_sig_attrs {
876         u8                      check_mask;
877         struct ib_sig_domain    mem;
878         struct ib_sig_domain    wire;
879 };
880
881 enum ib_sig_err_type {
882         IB_SIG_BAD_GUARD,
883         IB_SIG_BAD_REFTAG,
884         IB_SIG_BAD_APPTAG,
885 };
886
887 /**
888  * Signature check masks (8 bytes in total) according to the T10-PI standard:
889  *  -------- -------- ------------
890  * | GUARD  | APPTAG |   REFTAG   |
891  * |  2B    |  2B    |    4B      |
892  *  -------- -------- ------------
893  */
894 enum {
895         IB_SIG_CHECK_GUARD      = 0xc0,
896         IB_SIG_CHECK_APPTAG     = 0x30,
897         IB_SIG_CHECK_REFTAG     = 0x0f,
898 };
899
900 /**
901  * struct ib_sig_err - signature error descriptor
902  */
903 struct ib_sig_err {
904         enum ib_sig_err_type    err_type;
905         u32                     expected;
906         u32                     actual;
907         u64                     sig_err_offset;
908         u32                     key;
909 };
910
911 enum ib_mr_status_check {
912         IB_MR_CHECK_SIG_STATUS = 1,
913 };
914
915 /**
916  * struct ib_mr_status - Memory region status container
917  *
918  * @fail_status: Bitmask of MR checks status. For each
919  *     failed check a corresponding status bit is set.
920  * @sig_err: Additional info for IB_MR_CEHCK_SIG_STATUS
921  *     failure.
922  */
923 struct ib_mr_status {
924         u32                 fail_status;
925         struct ib_sig_err   sig_err;
926 };
927
928 /**
929  * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
930  * enum.
931  * @mult: multiple to convert.
932  */
933 __attribute_const__ enum ib_rate mult_to_ib_rate(int mult);
934
935 enum rdma_ah_attr_type {
936         RDMA_AH_ATTR_TYPE_UNDEFINED,
937         RDMA_AH_ATTR_TYPE_IB,
938         RDMA_AH_ATTR_TYPE_ROCE,
939         RDMA_AH_ATTR_TYPE_OPA,
940 };
941
942 struct ib_ah_attr {
943         u16                     dlid;
944         u8                      src_path_bits;
945 };
946
947 struct roce_ah_attr {
948         u8                      dmac[ETH_ALEN];
949 };
950
951 struct opa_ah_attr {
952         u32                     dlid;
953         u8                      src_path_bits;
954         bool                    make_grd;
955 };
956
957 struct rdma_ah_attr {
958         struct ib_global_route  grh;
959         u8                      sl;
960         u8                      static_rate;
961         u8                      port_num;
962         u8                      ah_flags;
963         enum rdma_ah_attr_type type;
964         union {
965                 struct ib_ah_attr ib;
966                 struct roce_ah_attr roce;
967                 struct opa_ah_attr opa;
968         };
969 };
970
971 enum ib_wc_status {
972         IB_WC_SUCCESS,
973         IB_WC_LOC_LEN_ERR,
974         IB_WC_LOC_QP_OP_ERR,
975         IB_WC_LOC_EEC_OP_ERR,
976         IB_WC_LOC_PROT_ERR,
977         IB_WC_WR_FLUSH_ERR,
978         IB_WC_MW_BIND_ERR,
979         IB_WC_BAD_RESP_ERR,
980         IB_WC_LOC_ACCESS_ERR,
981         IB_WC_REM_INV_REQ_ERR,
982         IB_WC_REM_ACCESS_ERR,
983         IB_WC_REM_OP_ERR,
984         IB_WC_RETRY_EXC_ERR,
985         IB_WC_RNR_RETRY_EXC_ERR,
986         IB_WC_LOC_RDD_VIOL_ERR,
987         IB_WC_REM_INV_RD_REQ_ERR,
988         IB_WC_REM_ABORT_ERR,
989         IB_WC_INV_EECN_ERR,
990         IB_WC_INV_EEC_STATE_ERR,
991         IB_WC_FATAL_ERR,
992         IB_WC_RESP_TIMEOUT_ERR,
993         IB_WC_GENERAL_ERR
994 };
995
996 const char *__attribute_const__ ib_wc_status_msg(enum ib_wc_status status);
997
998 enum ib_wc_opcode {
999         IB_WC_SEND,
1000         IB_WC_RDMA_WRITE,
1001         IB_WC_RDMA_READ,
1002         IB_WC_COMP_SWAP,
1003         IB_WC_FETCH_ADD,
1004         IB_WC_LSO,
1005         IB_WC_LOCAL_INV,
1006         IB_WC_REG_MR,
1007         IB_WC_MASKED_COMP_SWAP,
1008         IB_WC_MASKED_FETCH_ADD,
1009 /*
1010  * Set value of IB_WC_RECV so consumers can test if a completion is a
1011  * receive by testing (opcode & IB_WC_RECV).
1012  */
1013         IB_WC_RECV                      = 1 << 7,
1014         IB_WC_RECV_RDMA_WITH_IMM
1015 };
1016
1017 enum ib_wc_flags {
1018         IB_WC_GRH               = 1,
1019         IB_WC_WITH_IMM          = (1<<1),
1020         IB_WC_WITH_INVALIDATE   = (1<<2),
1021         IB_WC_IP_CSUM_OK        = (1<<3),
1022         IB_WC_WITH_SMAC         = (1<<4),
1023         IB_WC_WITH_VLAN         = (1<<5),
1024         IB_WC_WITH_NETWORK_HDR_TYPE     = (1<<6),
1025 };
1026
1027 struct ib_wc {
1028         union {
1029                 u64             wr_id;
1030                 struct ib_cqe   *wr_cqe;
1031         };
1032         enum ib_wc_status       status;
1033         enum ib_wc_opcode       opcode;
1034         u32                     vendor_err;
1035         u32                     byte_len;
1036         struct ib_qp           *qp;
1037         union {
1038                 __be32          imm_data;
1039                 u32             invalidate_rkey;
1040         } ex;
1041         u32                     src_qp;
1042         u32                     slid;
1043         int                     wc_flags;
1044         u16                     pkey_index;
1045         u8                      sl;
1046         u8                      dlid_path_bits;
1047         u8                      port_num;       /* valid only for DR SMPs on switches */
1048         u8                      smac[ETH_ALEN];
1049         u16                     vlan_id;
1050         u8                      network_hdr_type;
1051 };
1052
1053 enum ib_cq_notify_flags {
1054         IB_CQ_SOLICITED                 = 1 << 0,
1055         IB_CQ_NEXT_COMP                 = 1 << 1,
1056         IB_CQ_SOLICITED_MASK            = IB_CQ_SOLICITED | IB_CQ_NEXT_COMP,
1057         IB_CQ_REPORT_MISSED_EVENTS      = 1 << 2,
1058 };
1059
1060 enum ib_srq_type {
1061         IB_SRQT_BASIC,
1062         IB_SRQT_XRC,
1063         IB_SRQT_TM,
1064 };
1065
1066 static inline bool ib_srq_has_cq(enum ib_srq_type srq_type)
1067 {
1068         return srq_type == IB_SRQT_XRC ||
1069                srq_type == IB_SRQT_TM;
1070 }
1071
1072 enum ib_srq_attr_mask {
1073         IB_SRQ_MAX_WR   = 1 << 0,
1074         IB_SRQ_LIMIT    = 1 << 1,
1075 };
1076
1077 struct ib_srq_attr {
1078         u32     max_wr;
1079         u32     max_sge;
1080         u32     srq_limit;
1081 };
1082
1083 struct ib_srq_init_attr {
1084         void                  (*event_handler)(struct ib_event *, void *);
1085         void                   *srq_context;
1086         struct ib_srq_attr      attr;
1087         enum ib_srq_type        srq_type;
1088
1089         struct {
1090                 struct ib_cq   *cq;
1091                 union {
1092                         struct {
1093                                 struct ib_xrcd *xrcd;
1094                         } xrc;
1095
1096                         struct {
1097                                 u32             max_num_tags;
1098                         } tag_matching;
1099                 };
1100         } ext;
1101 };
1102
1103 struct ib_qp_cap {
1104         u32     max_send_wr;
1105         u32     max_recv_wr;
1106         u32     max_send_sge;
1107         u32     max_recv_sge;
1108         u32     max_inline_data;
1109
1110         /*
1111          * Maximum number of rdma_rw_ctx structures in flight at a time.
1112          * ib_create_qp() will calculate the right amount of neededed WRs
1113          * and MRs based on this.
1114          */
1115         u32     max_rdma_ctxs;
1116 };
1117
1118 enum ib_sig_type {
1119         IB_SIGNAL_ALL_WR,
1120         IB_SIGNAL_REQ_WR
1121 };
1122
1123 enum ib_qp_type {
1124         /*
1125          * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
1126          * here (and in that order) since the MAD layer uses them as
1127          * indices into a 2-entry table.
1128          */
1129         IB_QPT_SMI,
1130         IB_QPT_GSI,
1131
1132         IB_QPT_RC,
1133         IB_QPT_UC,
1134         IB_QPT_UD,
1135         IB_QPT_RAW_IPV6,
1136         IB_QPT_RAW_ETHERTYPE,
1137         IB_QPT_RAW_PACKET = 8,
1138         IB_QPT_XRC_INI = 9,
1139         IB_QPT_XRC_TGT,
1140         IB_QPT_MAX,
1141         IB_QPT_DRIVER = 0xFF,
1142         /* Reserve a range for qp types internal to the low level driver.
1143          * These qp types will not be visible at the IB core layer, so the
1144          * IB_QPT_MAX usages should not be affected in the core layer
1145          */
1146         IB_QPT_RESERVED1 = 0x1000,
1147         IB_QPT_RESERVED2,
1148         IB_QPT_RESERVED3,
1149         IB_QPT_RESERVED4,
1150         IB_QPT_RESERVED5,
1151         IB_QPT_RESERVED6,
1152         IB_QPT_RESERVED7,
1153         IB_QPT_RESERVED8,
1154         IB_QPT_RESERVED9,
1155         IB_QPT_RESERVED10,
1156 };
1157
1158 enum ib_qp_create_flags {
1159         IB_QP_CREATE_IPOIB_UD_LSO               = 1 << 0,
1160         IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK   = 1 << 1,
1161         IB_QP_CREATE_CROSS_CHANNEL              = 1 << 2,
1162         IB_QP_CREATE_MANAGED_SEND               = 1 << 3,
1163         IB_QP_CREATE_MANAGED_RECV               = 1 << 4,
1164         IB_QP_CREATE_NETIF_QP                   = 1 << 5,
1165         IB_QP_CREATE_SIGNATURE_EN               = 1 << 6,
1166         /* FREE                                 = 1 << 7, */
1167         IB_QP_CREATE_SCATTER_FCS                = 1 << 8,
1168         IB_QP_CREATE_CVLAN_STRIPPING            = 1 << 9,
1169         IB_QP_CREATE_SOURCE_QPN                 = 1 << 10,
1170         IB_QP_CREATE_PCI_WRITE_END_PADDING      = 1 << 11,
1171         /* reserve bits 26-31 for low level drivers' internal use */
1172         IB_QP_CREATE_RESERVED_START             = 1 << 26,
1173         IB_QP_CREATE_RESERVED_END               = 1 << 31,
1174 };
1175
1176 /*
1177  * Note: users may not call ib_close_qp or ib_destroy_qp from the event_handler
1178  * callback to destroy the passed in QP.
1179  */
1180
1181 struct ib_qp_init_attr {
1182         /* Consumer's event_handler callback must not block */
1183         void                  (*event_handler)(struct ib_event *, void *);
1184
1185         void                   *qp_context;
1186         struct ib_cq           *send_cq;
1187         struct ib_cq           *recv_cq;
1188         struct ib_srq          *srq;
1189         struct ib_xrcd         *xrcd;     /* XRC TGT QPs only */
1190         struct ib_qp_cap        cap;
1191         enum ib_sig_type        sq_sig_type;
1192         enum ib_qp_type         qp_type;
1193         u32                     create_flags;
1194
1195         /*
1196          * Only needed for special QP types, or when using the RW API.
1197          */
1198         u8                      port_num;
1199         struct ib_rwq_ind_table *rwq_ind_tbl;
1200         u32                     source_qpn;
1201 };
1202
1203 struct ib_qp_open_attr {
1204         void                  (*event_handler)(struct ib_event *, void *);
1205         void                   *qp_context;
1206         u32                     qp_num;
1207         enum ib_qp_type         qp_type;
1208 };
1209
1210 enum ib_rnr_timeout {
1211         IB_RNR_TIMER_655_36 =  0,
1212         IB_RNR_TIMER_000_01 =  1,
1213         IB_RNR_TIMER_000_02 =  2,
1214         IB_RNR_TIMER_000_03 =  3,
1215         IB_RNR_TIMER_000_04 =  4,
1216         IB_RNR_TIMER_000_06 =  5,
1217         IB_RNR_TIMER_000_08 =  6,
1218         IB_RNR_TIMER_000_12 =  7,
1219         IB_RNR_TIMER_000_16 =  8,
1220         IB_RNR_TIMER_000_24 =  9,
1221         IB_RNR_TIMER_000_32 = 10,
1222         IB_RNR_TIMER_000_48 = 11,
1223         IB_RNR_TIMER_000_64 = 12,
1224         IB_RNR_TIMER_000_96 = 13,
1225         IB_RNR_TIMER_001_28 = 14,
1226         IB_RNR_TIMER_001_92 = 15,
1227         IB_RNR_TIMER_002_56 = 16,
1228         IB_RNR_TIMER_003_84 = 17,
1229         IB_RNR_TIMER_005_12 = 18,
1230         IB_RNR_TIMER_007_68 = 19,
1231         IB_RNR_TIMER_010_24 = 20,
1232         IB_RNR_TIMER_015_36 = 21,
1233         IB_RNR_TIMER_020_48 = 22,
1234         IB_RNR_TIMER_030_72 = 23,
1235         IB_RNR_TIMER_040_96 = 24,
1236         IB_RNR_TIMER_061_44 = 25,
1237         IB_RNR_TIMER_081_92 = 26,
1238         IB_RNR_TIMER_122_88 = 27,
1239         IB_RNR_TIMER_163_84 = 28,
1240         IB_RNR_TIMER_245_76 = 29,
1241         IB_RNR_TIMER_327_68 = 30,
1242         IB_RNR_TIMER_491_52 = 31
1243 };
1244
1245 enum ib_qp_attr_mask {
1246         IB_QP_STATE                     = 1,
1247         IB_QP_CUR_STATE                 = (1<<1),
1248         IB_QP_EN_SQD_ASYNC_NOTIFY       = (1<<2),
1249         IB_QP_ACCESS_FLAGS              = (1<<3),
1250         IB_QP_PKEY_INDEX                = (1<<4),
1251         IB_QP_PORT                      = (1<<5),
1252         IB_QP_QKEY                      = (1<<6),
1253         IB_QP_AV                        = (1<<7),
1254         IB_QP_PATH_MTU                  = (1<<8),
1255         IB_QP_TIMEOUT                   = (1<<9),
1256         IB_QP_RETRY_CNT                 = (1<<10),
1257         IB_QP_RNR_RETRY                 = (1<<11),
1258         IB_QP_RQ_PSN                    = (1<<12),
1259         IB_QP_MAX_QP_RD_ATOMIC          = (1<<13),
1260         IB_QP_ALT_PATH                  = (1<<14),
1261         IB_QP_MIN_RNR_TIMER             = (1<<15),
1262         IB_QP_SQ_PSN                    = (1<<16),
1263         IB_QP_MAX_DEST_RD_ATOMIC        = (1<<17),
1264         IB_QP_PATH_MIG_STATE            = (1<<18),
1265         IB_QP_CAP                       = (1<<19),
1266         IB_QP_DEST_QPN                  = (1<<20),
1267         IB_QP_RESERVED1                 = (1<<21),
1268         IB_QP_RESERVED2                 = (1<<22),
1269         IB_QP_RESERVED3                 = (1<<23),
1270         IB_QP_RESERVED4                 = (1<<24),
1271         IB_QP_RATE_LIMIT                = (1<<25),
1272 };
1273
1274 enum ib_qp_state {
1275         IB_QPS_RESET,
1276         IB_QPS_INIT,
1277         IB_QPS_RTR,
1278         IB_QPS_RTS,
1279         IB_QPS_SQD,
1280         IB_QPS_SQE,
1281         IB_QPS_ERR
1282 };
1283
1284 enum ib_mig_state {
1285         IB_MIG_MIGRATED,
1286         IB_MIG_REARM,
1287         IB_MIG_ARMED
1288 };
1289
1290 enum ib_mw_type {
1291         IB_MW_TYPE_1 = 1,
1292         IB_MW_TYPE_2 = 2
1293 };
1294
1295 struct ib_qp_attr {
1296         enum ib_qp_state        qp_state;
1297         enum ib_qp_state        cur_qp_state;
1298         enum ib_mtu             path_mtu;
1299         enum ib_mig_state       path_mig_state;
1300         u32                     qkey;
1301         u32                     rq_psn;
1302         u32                     sq_psn;
1303         u32                     dest_qp_num;
1304         int                     qp_access_flags;
1305         struct ib_qp_cap        cap;
1306         struct rdma_ah_attr     ah_attr;
1307         struct rdma_ah_attr     alt_ah_attr;
1308         u16                     pkey_index;
1309         u16                     alt_pkey_index;
1310         u8                      en_sqd_async_notify;
1311         u8                      sq_draining;
1312         u8                      max_rd_atomic;
1313         u8                      max_dest_rd_atomic;
1314         u8                      min_rnr_timer;
1315         u8                      port_num;
1316         u8                      timeout;
1317         u8                      retry_cnt;
1318         u8                      rnr_retry;
1319         u8                      alt_port_num;
1320         u8                      alt_timeout;
1321         u32                     rate_limit;
1322 };
1323
1324 enum ib_wr_opcode {
1325         /* These are shared with userspace */
1326         IB_WR_RDMA_WRITE = IB_UVERBS_WR_RDMA_WRITE,
1327         IB_WR_RDMA_WRITE_WITH_IMM = IB_UVERBS_WR_RDMA_WRITE_WITH_IMM,
1328         IB_WR_SEND = IB_UVERBS_WR_SEND,
1329         IB_WR_SEND_WITH_IMM = IB_UVERBS_WR_SEND_WITH_IMM,
1330         IB_WR_RDMA_READ = IB_UVERBS_WR_RDMA_READ,
1331         IB_WR_ATOMIC_CMP_AND_SWP = IB_UVERBS_WR_ATOMIC_CMP_AND_SWP,
1332         IB_WR_ATOMIC_FETCH_AND_ADD = IB_UVERBS_WR_ATOMIC_FETCH_AND_ADD,
1333         IB_WR_LSO = IB_UVERBS_WR_TSO,
1334         IB_WR_SEND_WITH_INV = IB_UVERBS_WR_SEND_WITH_INV,
1335         IB_WR_RDMA_READ_WITH_INV = IB_UVERBS_WR_RDMA_READ_WITH_INV,
1336         IB_WR_LOCAL_INV = IB_UVERBS_WR_LOCAL_INV,
1337         IB_WR_MASKED_ATOMIC_CMP_AND_SWP =
1338                 IB_UVERBS_WR_MASKED_ATOMIC_CMP_AND_SWP,
1339         IB_WR_MASKED_ATOMIC_FETCH_AND_ADD =
1340                 IB_UVERBS_WR_MASKED_ATOMIC_FETCH_AND_ADD,
1341
1342         /* These are kernel only and can not be issued by userspace */
1343         IB_WR_REG_MR = 0x20,
1344         IB_WR_REG_SIG_MR,
1345
1346         /* reserve values for low level drivers' internal use.
1347          * These values will not be used at all in the ib core layer.
1348          */
1349         IB_WR_RESERVED1 = 0xf0,
1350         IB_WR_RESERVED2,
1351         IB_WR_RESERVED3,
1352         IB_WR_RESERVED4,
1353         IB_WR_RESERVED5,
1354         IB_WR_RESERVED6,
1355         IB_WR_RESERVED7,
1356         IB_WR_RESERVED8,
1357         IB_WR_RESERVED9,
1358         IB_WR_RESERVED10,
1359 };
1360
1361 enum ib_send_flags {
1362         IB_SEND_FENCE           = 1,
1363         IB_SEND_SIGNALED        = (1<<1),
1364         IB_SEND_SOLICITED       = (1<<2),
1365         IB_SEND_INLINE          = (1<<3),
1366         IB_SEND_IP_CSUM         = (1<<4),
1367
1368         /* reserve bits 26-31 for low level drivers' internal use */
1369         IB_SEND_RESERVED_START  = (1 << 26),
1370         IB_SEND_RESERVED_END    = (1 << 31),
1371 };
1372
1373 struct ib_sge {
1374         u64     addr;
1375         u32     length;
1376         u32     lkey;
1377 };
1378
1379 struct ib_cqe {
1380         void (*done)(struct ib_cq *cq, struct ib_wc *wc);
1381 };
1382
1383 struct ib_send_wr {
1384         struct ib_send_wr      *next;
1385         union {
1386                 u64             wr_id;
1387                 struct ib_cqe   *wr_cqe;
1388         };
1389         struct ib_sge          *sg_list;
1390         int                     num_sge;
1391         enum ib_wr_opcode       opcode;
1392         int                     send_flags;
1393         union {
1394                 __be32          imm_data;
1395                 u32             invalidate_rkey;
1396         } ex;
1397 };
1398
1399 struct ib_rdma_wr {
1400         struct ib_send_wr       wr;
1401         u64                     remote_addr;
1402         u32                     rkey;
1403 };
1404
1405 static inline const struct ib_rdma_wr *rdma_wr(const struct ib_send_wr *wr)
1406 {
1407         return container_of(wr, struct ib_rdma_wr, wr);
1408 }
1409
1410 struct ib_atomic_wr {
1411         struct ib_send_wr       wr;
1412         u64                     remote_addr;
1413         u64                     compare_add;
1414         u64                     swap;
1415         u64                     compare_add_mask;
1416         u64                     swap_mask;
1417         u32                     rkey;
1418 };
1419
1420 static inline const struct ib_atomic_wr *atomic_wr(const struct ib_send_wr *wr)
1421 {
1422         return container_of(wr, struct ib_atomic_wr, wr);
1423 }
1424
1425 struct ib_ud_wr {
1426         struct ib_send_wr       wr;
1427         struct ib_ah            *ah;
1428         void                    *header;
1429         int                     hlen;
1430         int                     mss;
1431         u32                     remote_qpn;
1432         u32                     remote_qkey;
1433         u16                     pkey_index; /* valid for GSI only */
1434         u8                      port_num;   /* valid for DR SMPs on switch only */
1435 };
1436
1437 static inline const struct ib_ud_wr *ud_wr(const struct ib_send_wr *wr)
1438 {
1439         return container_of(wr, struct ib_ud_wr, wr);
1440 }
1441
1442 struct ib_reg_wr {
1443         struct ib_send_wr       wr;
1444         struct ib_mr            *mr;
1445         u32                     key;
1446         int                     access;
1447 };
1448
1449 static inline const struct ib_reg_wr *reg_wr(const struct ib_send_wr *wr)
1450 {
1451         return container_of(wr, struct ib_reg_wr, wr);
1452 }
1453
1454 struct ib_sig_handover_wr {
1455         struct ib_send_wr       wr;
1456         struct ib_sig_attrs    *sig_attrs;
1457         struct ib_mr           *sig_mr;
1458         int                     access_flags;
1459         struct ib_sge          *prot;
1460 };
1461
1462 static inline const struct ib_sig_handover_wr *
1463 sig_handover_wr(const struct ib_send_wr *wr)
1464 {
1465         return container_of(wr, struct ib_sig_handover_wr, wr);
1466 }
1467
1468 struct ib_recv_wr {
1469         struct ib_recv_wr      *next;
1470         union {
1471                 u64             wr_id;
1472                 struct ib_cqe   *wr_cqe;
1473         };
1474         struct ib_sge          *sg_list;
1475         int                     num_sge;
1476 };
1477
1478 enum ib_access_flags {
1479         IB_ACCESS_LOCAL_WRITE = IB_UVERBS_ACCESS_LOCAL_WRITE,
1480         IB_ACCESS_REMOTE_WRITE = IB_UVERBS_ACCESS_REMOTE_WRITE,
1481         IB_ACCESS_REMOTE_READ = IB_UVERBS_ACCESS_REMOTE_READ,
1482         IB_ACCESS_REMOTE_ATOMIC = IB_UVERBS_ACCESS_REMOTE_ATOMIC,
1483         IB_ACCESS_MW_BIND = IB_UVERBS_ACCESS_MW_BIND,
1484         IB_ZERO_BASED = IB_UVERBS_ACCESS_ZERO_BASED,
1485         IB_ACCESS_ON_DEMAND = IB_UVERBS_ACCESS_ON_DEMAND,
1486         IB_ACCESS_HUGETLB = IB_UVERBS_ACCESS_HUGETLB,
1487
1488         IB_ACCESS_SUPPORTED = ((IB_ACCESS_HUGETLB << 1) - 1)
1489 };
1490
1491 /*
1492  * XXX: these are apparently used for ->rereg_user_mr, no idea why they
1493  * are hidden here instead of a uapi header!
1494  */
1495 enum ib_mr_rereg_flags {
1496         IB_MR_REREG_TRANS       = 1,
1497         IB_MR_REREG_PD          = (1<<1),
1498         IB_MR_REREG_ACCESS      = (1<<2),
1499         IB_MR_REREG_SUPPORTED   = ((IB_MR_REREG_ACCESS << 1) - 1)
1500 };
1501
1502 struct ib_fmr_attr {
1503         int     max_pages;
1504         int     max_maps;
1505         u8      page_shift;
1506 };
1507
1508 struct ib_umem;
1509
1510 enum rdma_remove_reason {
1511         /*
1512          * Userspace requested uobject deletion or initial try
1513          * to remove uobject via cleanup. Call could fail
1514          */
1515         RDMA_REMOVE_DESTROY,
1516         /* Context deletion. This call should delete the actual object itself */
1517         RDMA_REMOVE_CLOSE,
1518         /* Driver is being hot-unplugged. This call should delete the actual object itself */
1519         RDMA_REMOVE_DRIVER_REMOVE,
1520         /* uobj is being cleaned-up before being committed */
1521         RDMA_REMOVE_ABORT,
1522 };
1523
1524 struct ib_rdmacg_object {
1525 #ifdef CONFIG_CGROUP_RDMA
1526         struct rdma_cgroup      *cg;            /* owner rdma cgroup */
1527 #endif
1528 };
1529
1530 struct ib_ucontext {
1531         struct ib_device       *device;
1532         struct ib_uverbs_file  *ufile;
1533         /*
1534          * 'closing' can be read by the driver only during a destroy callback,
1535          * it is set when we are closing the file descriptor and indicates
1536          * that mm_sem may be locked.
1537          */
1538         bool closing;
1539
1540         bool cleanup_retryable;
1541
1542         void (*invalidate_range)(struct ib_umem_odp *umem_odp,
1543                                  unsigned long start, unsigned long end);
1544         struct mutex per_mm_list_lock;
1545         struct list_head per_mm_list;
1546
1547         struct ib_rdmacg_object cg_obj;
1548         /*
1549          * Implementation details of the RDMA core, don't use in drivers:
1550          */
1551         struct rdma_restrack_entry res;
1552 };
1553
1554 struct ib_uobject {
1555         u64                     user_handle;    /* handle given to us by userspace */
1556         /* ufile & ucontext owning this object */
1557         struct ib_uverbs_file  *ufile;
1558         /* FIXME, save memory: ufile->context == context */
1559         struct ib_ucontext     *context;        /* associated user context */
1560         void                   *object;         /* containing object */
1561         struct list_head        list;           /* link to context's list */
1562         struct ib_rdmacg_object cg_obj;         /* rdmacg object */
1563         int                     id;             /* index into kernel idr */
1564         struct kref             ref;
1565         atomic_t                usecnt;         /* protects exclusive access */
1566         struct rcu_head         rcu;            /* kfree_rcu() overhead */
1567
1568         const struct uverbs_api_object *uapi_object;
1569 };
1570
1571 struct ib_udata {
1572         const void __user *inbuf;
1573         void __user *outbuf;
1574         size_t       inlen;
1575         size_t       outlen;
1576 };
1577
1578 struct ib_pd {
1579         u32                     local_dma_lkey;
1580         u32                     flags;
1581         struct ib_device       *device;
1582         struct ib_uobject      *uobject;
1583         atomic_t                usecnt; /* count all resources */
1584
1585         u32                     unsafe_global_rkey;
1586
1587         /*
1588          * Implementation details of the RDMA core, don't use in drivers:
1589          */
1590         struct ib_mr           *__internal_mr;
1591         struct rdma_restrack_entry res;
1592 };
1593
1594 struct ib_xrcd {
1595         struct ib_device       *device;
1596         atomic_t                usecnt; /* count all exposed resources */
1597         struct inode           *inode;
1598
1599         struct mutex            tgt_qp_mutex;
1600         struct list_head        tgt_qp_list;
1601 };
1602
1603 struct ib_ah {
1604         struct ib_device        *device;
1605         struct ib_pd            *pd;
1606         struct ib_uobject       *uobject;
1607         const struct ib_gid_attr *sgid_attr;
1608         enum rdma_ah_attr_type  type;
1609 };
1610
1611 typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
1612
1613 enum ib_poll_context {
1614         IB_POLL_DIRECT,            /* caller context, no hw completions */
1615         IB_POLL_SOFTIRQ,           /* poll from softirq context */
1616         IB_POLL_WORKQUEUE,         /* poll from workqueue */
1617         IB_POLL_UNBOUND_WORKQUEUE, /* poll from unbound workqueue */
1618 };
1619
1620 struct ib_cq {
1621         struct ib_device       *device;
1622         struct ib_uobject      *uobject;
1623         ib_comp_handler         comp_handler;
1624         void                  (*event_handler)(struct ib_event *, void *);
1625         void                   *cq_context;
1626         int                     cqe;
1627         atomic_t                usecnt; /* count number of work queues */
1628         enum ib_poll_context    poll_ctx;
1629         struct ib_wc            *wc;
1630         union {
1631                 struct irq_poll         iop;
1632                 struct work_struct      work;
1633         };
1634         struct workqueue_struct *comp_wq;
1635         /*
1636          * Implementation details of the RDMA core, don't use in drivers:
1637          */
1638         struct rdma_restrack_entry res;
1639 };
1640
1641 struct ib_srq {
1642         struct ib_device       *device;
1643         struct ib_pd           *pd;
1644         struct ib_uobject      *uobject;
1645         void                  (*event_handler)(struct ib_event *, void *);
1646         void                   *srq_context;
1647         enum ib_srq_type        srq_type;
1648         atomic_t                usecnt;
1649
1650         struct {
1651                 struct ib_cq   *cq;
1652                 union {
1653                         struct {
1654                                 struct ib_xrcd *xrcd;
1655                                 u32             srq_num;
1656                         } xrc;
1657                 };
1658         } ext;
1659 };
1660
1661 enum ib_raw_packet_caps {
1662         /* Strip cvlan from incoming packet and report it in the matching work
1663          * completion is supported.
1664          */
1665         IB_RAW_PACKET_CAP_CVLAN_STRIPPING       = (1 << 0),
1666         /* Scatter FCS field of an incoming packet to host memory is supported.
1667          */
1668         IB_RAW_PACKET_CAP_SCATTER_FCS           = (1 << 1),
1669         /* Checksum offloads are supported (for both send and receive). */
1670         IB_RAW_PACKET_CAP_IP_CSUM               = (1 << 2),
1671         /* When a packet is received for an RQ with no receive WQEs, the
1672          * packet processing is delayed.
1673          */
1674         IB_RAW_PACKET_CAP_DELAY_DROP            = (1 << 3),
1675 };
1676
1677 enum ib_wq_type {
1678         IB_WQT_RQ
1679 };
1680
1681 enum ib_wq_state {
1682         IB_WQS_RESET,
1683         IB_WQS_RDY,
1684         IB_WQS_ERR
1685 };
1686
1687 struct ib_wq {
1688         struct ib_device       *device;
1689         struct ib_uobject      *uobject;
1690         void                *wq_context;
1691         void                (*event_handler)(struct ib_event *, void *);
1692         struct ib_pd           *pd;
1693         struct ib_cq           *cq;
1694         u32             wq_num;
1695         enum ib_wq_state       state;
1696         enum ib_wq_type wq_type;
1697         atomic_t                usecnt;
1698 };
1699
1700 enum ib_wq_flags {
1701         IB_WQ_FLAGS_CVLAN_STRIPPING     = 1 << 0,
1702         IB_WQ_FLAGS_SCATTER_FCS         = 1 << 1,
1703         IB_WQ_FLAGS_DELAY_DROP          = 1 << 2,
1704         IB_WQ_FLAGS_PCI_WRITE_END_PADDING = 1 << 3,
1705 };
1706
1707 struct ib_wq_init_attr {
1708         void                   *wq_context;
1709         enum ib_wq_type wq_type;
1710         u32             max_wr;
1711         u32             max_sge;
1712         struct  ib_cq          *cq;
1713         void                (*event_handler)(struct ib_event *, void *);
1714         u32             create_flags; /* Use enum ib_wq_flags */
1715 };
1716
1717 enum ib_wq_attr_mask {
1718         IB_WQ_STATE             = 1 << 0,
1719         IB_WQ_CUR_STATE         = 1 << 1,
1720         IB_WQ_FLAGS             = 1 << 2,
1721 };
1722
1723 struct ib_wq_attr {
1724         enum    ib_wq_state     wq_state;
1725         enum    ib_wq_state     curr_wq_state;
1726         u32                     flags; /* Use enum ib_wq_flags */
1727         u32                     flags_mask; /* Use enum ib_wq_flags */
1728 };
1729
1730 struct ib_rwq_ind_table {
1731         struct ib_device        *device;
1732         struct ib_uobject      *uobject;
1733         atomic_t                usecnt;
1734         u32             ind_tbl_num;
1735         u32             log_ind_tbl_size;
1736         struct ib_wq    **ind_tbl;
1737 };
1738
1739 struct ib_rwq_ind_table_init_attr {
1740         u32             log_ind_tbl_size;
1741         /* Each entry is a pointer to Receive Work Queue */
1742         struct ib_wq    **ind_tbl;
1743 };
1744
1745 enum port_pkey_state {
1746         IB_PORT_PKEY_NOT_VALID = 0,
1747         IB_PORT_PKEY_VALID = 1,
1748         IB_PORT_PKEY_LISTED = 2,
1749 };
1750
1751 struct ib_qp_security;
1752
1753 struct ib_port_pkey {
1754         enum port_pkey_state    state;
1755         u16                     pkey_index;
1756         u8                      port_num;
1757         struct list_head        qp_list;
1758         struct list_head        to_error_list;
1759         struct ib_qp_security  *sec;
1760 };
1761
1762 struct ib_ports_pkeys {
1763         struct ib_port_pkey     main;
1764         struct ib_port_pkey     alt;
1765 };
1766
1767 struct ib_qp_security {
1768         struct ib_qp           *qp;
1769         struct ib_device       *dev;
1770         /* Hold this mutex when changing port and pkey settings. */
1771         struct mutex            mutex;
1772         struct ib_ports_pkeys  *ports_pkeys;
1773         /* A list of all open shared QP handles.  Required to enforce security
1774          * properly for all users of a shared QP.
1775          */
1776         struct list_head        shared_qp_list;
1777         void                   *security;
1778         bool                    destroying;
1779         atomic_t                error_list_count;
1780         struct completion       error_complete;
1781         int                     error_comps_pending;
1782 };
1783
1784 /*
1785  * @max_write_sge: Maximum SGE elements per RDMA WRITE request.
1786  * @max_read_sge:  Maximum SGE elements per RDMA READ request.
1787  */
1788 struct ib_qp {
1789         struct ib_device       *device;
1790         struct ib_pd           *pd;
1791         struct ib_cq           *send_cq;
1792         struct ib_cq           *recv_cq;
1793         spinlock_t              mr_lock;
1794         int                     mrs_used;
1795         struct list_head        rdma_mrs;
1796         struct list_head        sig_mrs;
1797         struct ib_srq          *srq;
1798         struct ib_xrcd         *xrcd; /* XRC TGT QPs only */
1799         struct list_head        xrcd_list;
1800
1801         /* count times opened, mcast attaches, flow attaches */
1802         atomic_t                usecnt;
1803         struct list_head        open_list;
1804         struct ib_qp           *real_qp;
1805         struct ib_uobject      *uobject;
1806         void                  (*event_handler)(struct ib_event *, void *);
1807         void                   *qp_context;
1808         /* sgid_attrs associated with the AV's */
1809         const struct ib_gid_attr *av_sgid_attr;
1810         const struct ib_gid_attr *alt_path_sgid_attr;
1811         u32                     qp_num;
1812         u32                     max_write_sge;
1813         u32                     max_read_sge;
1814         enum ib_qp_type         qp_type;
1815         struct ib_rwq_ind_table *rwq_ind_tbl;
1816         struct ib_qp_security  *qp_sec;
1817         u8                      port;
1818
1819         /*
1820          * Implementation details of the RDMA core, don't use in drivers:
1821          */
1822         struct rdma_restrack_entry     res;
1823 };
1824
1825 struct ib_dm {
1826         struct ib_device  *device;
1827         u32                length;
1828         u32                flags;
1829         struct ib_uobject *uobject;
1830         atomic_t           usecnt;
1831 };
1832
1833 struct ib_mr {
1834         struct ib_device  *device;
1835         struct ib_pd      *pd;
1836         u32                lkey;
1837         u32                rkey;
1838         u64                iova;
1839         u64                length;
1840         unsigned int       page_size;
1841         bool               need_inval;
1842         union {
1843                 struct ib_uobject       *uobject;       /* user */
1844                 struct list_head        qp_entry;       /* FR */
1845         };
1846
1847         struct ib_dm      *dm;
1848
1849         /*
1850          * Implementation details of the RDMA core, don't use in drivers:
1851          */
1852         struct rdma_restrack_entry res;
1853 };
1854
1855 struct ib_mw {
1856         struct ib_device        *device;
1857         struct ib_pd            *pd;
1858         struct ib_uobject       *uobject;
1859         u32                     rkey;
1860         enum ib_mw_type         type;
1861 };
1862
1863 struct ib_fmr {
1864         struct ib_device        *device;
1865         struct ib_pd            *pd;
1866         struct list_head        list;
1867         u32                     lkey;
1868         u32                     rkey;
1869 };
1870
1871 /* Supported steering options */
1872 enum ib_flow_attr_type {
1873         /* steering according to rule specifications */
1874         IB_FLOW_ATTR_NORMAL             = 0x0,
1875         /* default unicast and multicast rule -
1876          * receive all Eth traffic which isn't steered to any QP
1877          */
1878         IB_FLOW_ATTR_ALL_DEFAULT        = 0x1,
1879         /* default multicast rule -
1880          * receive all Eth multicast traffic which isn't steered to any QP
1881          */
1882         IB_FLOW_ATTR_MC_DEFAULT         = 0x2,
1883         /* sniffer rule - receive all port traffic */
1884         IB_FLOW_ATTR_SNIFFER            = 0x3
1885 };
1886
1887 /* Supported steering header types */
1888 enum ib_flow_spec_type {
1889         /* L2 headers*/
1890         IB_FLOW_SPEC_ETH                = 0x20,
1891         IB_FLOW_SPEC_IB                 = 0x22,
1892         /* L3 header*/
1893         IB_FLOW_SPEC_IPV4               = 0x30,
1894         IB_FLOW_SPEC_IPV6               = 0x31,
1895         IB_FLOW_SPEC_ESP                = 0x34,
1896         /* L4 headers*/
1897         IB_FLOW_SPEC_TCP                = 0x40,
1898         IB_FLOW_SPEC_UDP                = 0x41,
1899         IB_FLOW_SPEC_VXLAN_TUNNEL       = 0x50,
1900         IB_FLOW_SPEC_GRE                = 0x51,
1901         IB_FLOW_SPEC_MPLS               = 0x60,
1902         IB_FLOW_SPEC_INNER              = 0x100,
1903         /* Actions */
1904         IB_FLOW_SPEC_ACTION_TAG         = 0x1000,
1905         IB_FLOW_SPEC_ACTION_DROP        = 0x1001,
1906         IB_FLOW_SPEC_ACTION_HANDLE      = 0x1002,
1907         IB_FLOW_SPEC_ACTION_COUNT       = 0x1003,
1908 };
1909 #define IB_FLOW_SPEC_LAYER_MASK 0xF0
1910 #define IB_FLOW_SPEC_SUPPORT_LAYERS 10
1911
1912 /* Flow steering rule priority is set according to it's domain.
1913  * Lower domain value means higher priority.
1914  */
1915 enum ib_flow_domain {
1916         IB_FLOW_DOMAIN_USER,
1917         IB_FLOW_DOMAIN_ETHTOOL,
1918         IB_FLOW_DOMAIN_RFS,
1919         IB_FLOW_DOMAIN_NIC,
1920         IB_FLOW_DOMAIN_NUM /* Must be last */
1921 };
1922
1923 enum ib_flow_flags {
1924         IB_FLOW_ATTR_FLAGS_DONT_TRAP = 1UL << 1, /* Continue match, no steal */
1925         IB_FLOW_ATTR_FLAGS_EGRESS = 1UL << 2, /* Egress flow */
1926         IB_FLOW_ATTR_FLAGS_RESERVED  = 1UL << 3  /* Must be last */
1927 };
1928
1929 struct ib_flow_eth_filter {
1930         u8      dst_mac[6];
1931         u8      src_mac[6];
1932         __be16  ether_type;
1933         __be16  vlan_tag;
1934         /* Must be last */
1935         u8      real_sz[0];
1936 };
1937
1938 struct ib_flow_spec_eth {
1939         u32                       type;
1940         u16                       size;
1941         struct ib_flow_eth_filter val;
1942         struct ib_flow_eth_filter mask;
1943 };
1944
1945 struct ib_flow_ib_filter {
1946         __be16 dlid;
1947         __u8   sl;
1948         /* Must be last */
1949         u8      real_sz[0];
1950 };
1951
1952 struct ib_flow_spec_ib {
1953         u32                      type;
1954         u16                      size;
1955         struct ib_flow_ib_filter val;
1956         struct ib_flow_ib_filter mask;
1957 };
1958
1959 /* IPv4 header flags */
1960 enum ib_ipv4_flags {
1961         IB_IPV4_DONT_FRAG = 0x2, /* Don't enable packet fragmentation */
1962         IB_IPV4_MORE_FRAG = 0X4  /* For All fragmented packets except the
1963                                     last have this flag set */
1964 };
1965
1966 struct ib_flow_ipv4_filter {
1967         __be32  src_ip;
1968         __be32  dst_ip;
1969         u8      proto;
1970         u8      tos;
1971         u8      ttl;
1972         u8      flags;
1973         /* Must be last */
1974         u8      real_sz[0];
1975 };
1976
1977 struct ib_flow_spec_ipv4 {
1978         u32                        type;
1979         u16                        size;
1980         struct ib_flow_ipv4_filter val;
1981         struct ib_flow_ipv4_filter mask;
1982 };
1983
1984 struct ib_flow_ipv6_filter {
1985         u8      src_ip[16];
1986         u8      dst_ip[16];
1987         __be32  flow_label;
1988         u8      next_hdr;
1989         u8      traffic_class;
1990         u8      hop_limit;
1991         /* Must be last */
1992         u8      real_sz[0];
1993 };
1994
1995 struct ib_flow_spec_ipv6 {
1996         u32                        type;
1997         u16                        size;
1998         struct ib_flow_ipv6_filter val;
1999         struct ib_flow_ipv6_filter mask;
2000 };
2001
2002 struct ib_flow_tcp_udp_filter {
2003         __be16  dst_port;
2004         __be16  src_port;
2005         /* Must be last */
2006         u8      real_sz[0];
2007 };
2008
2009 struct ib_flow_spec_tcp_udp {
2010         u32                           type;
2011         u16                           size;
2012         struct ib_flow_tcp_udp_filter val;
2013         struct ib_flow_tcp_udp_filter mask;
2014 };
2015
2016 struct ib_flow_tunnel_filter {
2017         __be32  tunnel_id;
2018         u8      real_sz[0];
2019 };
2020
2021 /* ib_flow_spec_tunnel describes the Vxlan tunnel
2022  * the tunnel_id from val has the vni value
2023  */
2024 struct ib_flow_spec_tunnel {
2025         u32                           type;
2026         u16                           size;
2027         struct ib_flow_tunnel_filter  val;
2028         struct ib_flow_tunnel_filter  mask;
2029 };
2030
2031 struct ib_flow_esp_filter {
2032         __be32  spi;
2033         __be32  seq;
2034         /* Must be last */
2035         u8      real_sz[0];
2036 };
2037
2038 struct ib_flow_spec_esp {
2039         u32                           type;
2040         u16                           size;
2041         struct ib_flow_esp_filter     val;
2042         struct ib_flow_esp_filter     mask;
2043 };
2044
2045 struct ib_flow_gre_filter {
2046         __be16 c_ks_res0_ver;
2047         __be16 protocol;
2048         __be32 key;
2049         /* Must be last */
2050         u8      real_sz[0];
2051 };
2052
2053 struct ib_flow_spec_gre {
2054         u32                           type;
2055         u16                           size;
2056         struct ib_flow_gre_filter     val;
2057         struct ib_flow_gre_filter     mask;
2058 };
2059
2060 struct ib_flow_mpls_filter {
2061         __be32 tag;
2062         /* Must be last */
2063         u8      real_sz[0];
2064 };
2065
2066 struct ib_flow_spec_mpls {
2067         u32                           type;
2068         u16                           size;
2069         struct ib_flow_mpls_filter     val;
2070         struct ib_flow_mpls_filter     mask;
2071 };
2072
2073 struct ib_flow_spec_action_tag {
2074         enum ib_flow_spec_type        type;
2075         u16                           size;
2076         u32                           tag_id;
2077 };
2078
2079 struct ib_flow_spec_action_drop {
2080         enum ib_flow_spec_type        type;
2081         u16                           size;
2082 };
2083
2084 struct ib_flow_spec_action_handle {
2085         enum ib_flow_spec_type        type;
2086         u16                           size;
2087         struct ib_flow_action        *act;
2088 };
2089
2090 enum ib_counters_description {
2091         IB_COUNTER_PACKETS,
2092         IB_COUNTER_BYTES,
2093 };
2094
2095 struct ib_flow_spec_action_count {
2096         enum ib_flow_spec_type type;
2097         u16 size;
2098         struct ib_counters *counters;
2099 };
2100
2101 union ib_flow_spec {
2102         struct {
2103                 u32                     type;
2104                 u16                     size;
2105         };
2106         struct ib_flow_spec_eth         eth;
2107         struct ib_flow_spec_ib          ib;
2108         struct ib_flow_spec_ipv4        ipv4;
2109         struct ib_flow_spec_tcp_udp     tcp_udp;
2110         struct ib_flow_spec_ipv6        ipv6;
2111         struct ib_flow_spec_tunnel      tunnel;
2112         struct ib_flow_spec_esp         esp;
2113         struct ib_flow_spec_gre         gre;
2114         struct ib_flow_spec_mpls        mpls;
2115         struct ib_flow_spec_action_tag  flow_tag;
2116         struct ib_flow_spec_action_drop drop;
2117         struct ib_flow_spec_action_handle action;
2118         struct ib_flow_spec_action_count flow_count;
2119 };
2120
2121 struct ib_flow_attr {
2122         enum ib_flow_attr_type type;
2123         u16          size;
2124         u16          priority;
2125         u32          flags;
2126         u8           num_of_specs;
2127         u8           port;
2128         union ib_flow_spec flows[];
2129 };
2130
2131 struct ib_flow {
2132         struct ib_qp            *qp;
2133         struct ib_device        *device;
2134         struct ib_uobject       *uobject;
2135 };
2136
2137 enum ib_flow_action_type {
2138         IB_FLOW_ACTION_UNSPECIFIED,
2139         IB_FLOW_ACTION_ESP = 1,
2140 };
2141
2142 struct ib_flow_action_attrs_esp_keymats {
2143         enum ib_uverbs_flow_action_esp_keymat                   protocol;
2144         union {
2145                 struct ib_uverbs_flow_action_esp_keymat_aes_gcm aes_gcm;
2146         } keymat;
2147 };
2148
2149 struct ib_flow_action_attrs_esp_replays {
2150         enum ib_uverbs_flow_action_esp_replay                   protocol;
2151         union {
2152                 struct ib_uverbs_flow_action_esp_replay_bmp     bmp;
2153         } replay;
2154 };
2155
2156 enum ib_flow_action_attrs_esp_flags {
2157         /* All user-space flags at the top: Use enum ib_uverbs_flow_action_esp_flags
2158          * This is done in order to share the same flags between user-space and
2159          * kernel and spare an unnecessary translation.
2160          */
2161
2162         /* Kernel flags */
2163         IB_FLOW_ACTION_ESP_FLAGS_ESN_TRIGGERED  = 1ULL << 32,
2164         IB_FLOW_ACTION_ESP_FLAGS_MOD_ESP_ATTRS  = 1ULL << 33,
2165 };
2166
2167 struct ib_flow_spec_list {
2168         struct ib_flow_spec_list        *next;
2169         union ib_flow_spec              spec;
2170 };
2171
2172 struct ib_flow_action_attrs_esp {
2173         struct ib_flow_action_attrs_esp_keymats         *keymat;
2174         struct ib_flow_action_attrs_esp_replays         *replay;
2175         struct ib_flow_spec_list                        *encap;
2176         /* Used only if IB_FLOW_ACTION_ESP_FLAGS_ESN_TRIGGERED is enabled.
2177          * Value of 0 is a valid value.
2178          */
2179         u32                                             esn;
2180         u32                                             spi;
2181         u32                                             seq;
2182         u32                                             tfc_pad;
2183         /* Use enum ib_flow_action_attrs_esp_flags */
2184         u64                                             flags;
2185         u64                                             hard_limit_pkts;
2186 };
2187
2188 struct ib_flow_action {
2189         struct ib_device                *device;
2190         struct ib_uobject               *uobject;
2191         enum ib_flow_action_type        type;
2192         atomic_t                        usecnt;
2193 };
2194
2195 struct ib_mad_hdr;
2196 struct ib_grh;
2197
2198 enum ib_process_mad_flags {
2199         IB_MAD_IGNORE_MKEY      = 1,
2200         IB_MAD_IGNORE_BKEY      = 2,
2201         IB_MAD_IGNORE_ALL       = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
2202 };
2203
2204 enum ib_mad_result {
2205         IB_MAD_RESULT_FAILURE  = 0,      /* (!SUCCESS is the important flag) */
2206         IB_MAD_RESULT_SUCCESS  = 1 << 0, /* MAD was successfully processed   */
2207         IB_MAD_RESULT_REPLY    = 1 << 1, /* Reply packet needs to be sent    */
2208         IB_MAD_RESULT_CONSUMED = 1 << 2  /* Packet consumed: stop processing */
2209 };
2210
2211 struct ib_port_cache {
2212         u64                   subnet_prefix;
2213         struct ib_pkey_cache  *pkey;
2214         struct ib_gid_table   *gid;
2215         u8                     lmc;
2216         enum ib_port_state     port_state;
2217 };
2218
2219 struct ib_cache {
2220         rwlock_t                lock;
2221         struct ib_event_handler event_handler;
2222 };
2223
2224 struct iw_cm_verbs;
2225
2226 struct ib_port_immutable {
2227         int                           pkey_tbl_len;
2228         int                           gid_tbl_len;
2229         u32                           core_cap_flags;
2230         u32                           max_mad_size;
2231 };
2232
2233 struct ib_port_data {
2234         struct ib_device *ib_dev;
2235
2236         struct ib_port_immutable immutable;
2237
2238         spinlock_t pkey_list_lock;
2239         struct list_head pkey_list;
2240
2241         struct ib_port_cache cache;
2242
2243         spinlock_t netdev_lock;
2244         struct net_device __rcu *netdev;
2245         struct hlist_node ndev_hash_link;
2246 };
2247
2248 /* rdma netdev type - specifies protocol type */
2249 enum rdma_netdev_t {
2250         RDMA_NETDEV_OPA_VNIC,
2251         RDMA_NETDEV_IPOIB,
2252 };
2253
2254 /**
2255  * struct rdma_netdev - rdma netdev
2256  * For cases where netstack interfacing is required.
2257  */
2258 struct rdma_netdev {
2259         void              *clnt_priv;
2260         struct ib_device  *hca;
2261         u8                 port_num;
2262
2263         /*
2264          * cleanup function must be specified.
2265          * FIXME: This is only used for OPA_VNIC and that usage should be
2266          * removed too.
2267          */
2268         void (*free_rdma_netdev)(struct net_device *netdev);
2269
2270         /* control functions */
2271         void (*set_id)(struct net_device *netdev, int id);
2272         /* send packet */
2273         int (*send)(struct net_device *dev, struct sk_buff *skb,
2274                     struct ib_ah *address, u32 dqpn);
2275         /* multicast */
2276         int (*attach_mcast)(struct net_device *dev, struct ib_device *hca,
2277                             union ib_gid *gid, u16 mlid,
2278                             int set_qkey, u32 qkey);
2279         int (*detach_mcast)(struct net_device *dev, struct ib_device *hca,
2280                             union ib_gid *gid, u16 mlid);
2281 };
2282
2283 struct rdma_netdev_alloc_params {
2284         size_t sizeof_priv;
2285         unsigned int txqs;
2286         unsigned int rxqs;
2287         void *param;
2288
2289         int (*initialize_rdma_netdev)(struct ib_device *device, u8 port_num,
2290                                       struct net_device *netdev, void *param);
2291 };
2292
2293 struct ib_counters {
2294         struct ib_device        *device;
2295         struct ib_uobject       *uobject;
2296         /* num of objects attached */
2297         atomic_t        usecnt;
2298 };
2299
2300 struct ib_counters_read_attr {
2301         u64     *counters_buff;
2302         u32     ncounters;
2303         u32     flags; /* use enum ib_read_counters_flags */
2304 };
2305
2306 struct uverbs_attr_bundle;
2307
2308 #define INIT_RDMA_OBJ_SIZE(ib_struct, drv_struct, member)                      \
2309         .size_##ib_struct =                                                    \
2310                 (sizeof(struct drv_struct) +                                   \
2311                  BUILD_BUG_ON_ZERO(offsetof(struct drv_struct, member)) +      \
2312                  BUILD_BUG_ON_ZERO(                                            \
2313                          !__same_type(((struct drv_struct *)NULL)->member,     \
2314                                       struct ib_struct)))
2315
2316 #define rdma_zalloc_drv_obj_gfp(ib_dev, ib_type, gfp)                         \
2317         ((struct ib_type *)kzalloc(ib_dev->ops.size_##ib_type, gfp))
2318
2319 #define rdma_zalloc_drv_obj(ib_dev, ib_type)                                   \
2320         rdma_zalloc_drv_obj_gfp(ib_dev, ib_type, GFP_KERNEL)
2321
2322 #define DECLARE_RDMA_OBJ_SIZE(ib_struct) size_t size_##ib_struct
2323
2324 /**
2325  * struct ib_device_ops - InfiniBand device operations
2326  * This structure defines all the InfiniBand device operations, providers will
2327  * need to define the supported operations, otherwise they will be set to null.
2328  */
2329 struct ib_device_ops {
2330         int (*post_send)(struct ib_qp *qp, const struct ib_send_wr *send_wr,
2331                          const struct ib_send_wr **bad_send_wr);
2332         int (*post_recv)(struct ib_qp *qp, const struct ib_recv_wr *recv_wr,
2333                          const struct ib_recv_wr **bad_recv_wr);
2334         void (*drain_rq)(struct ib_qp *qp);
2335         void (*drain_sq)(struct ib_qp *qp);
2336         int (*poll_cq)(struct ib_cq *cq, int num_entries, struct ib_wc *wc);
2337         int (*peek_cq)(struct ib_cq *cq, int wc_cnt);
2338         int (*req_notify_cq)(struct ib_cq *cq, enum ib_cq_notify_flags flags);
2339         int (*req_ncomp_notif)(struct ib_cq *cq, int wc_cnt);
2340         int (*post_srq_recv)(struct ib_srq *srq,
2341                              const struct ib_recv_wr *recv_wr,
2342                              const struct ib_recv_wr **bad_recv_wr);
2343         int (*process_mad)(struct ib_device *device, int process_mad_flags,
2344                            u8 port_num, const struct ib_wc *in_wc,
2345                            const struct ib_grh *in_grh,
2346                            const struct ib_mad_hdr *in_mad, size_t in_mad_size,
2347                            struct ib_mad_hdr *out_mad, size_t *out_mad_size,
2348                            u16 *out_mad_pkey_index);
2349         int (*query_device)(struct ib_device *device,
2350                             struct ib_device_attr *device_attr,
2351                             struct ib_udata *udata);
2352         int (*modify_device)(struct ib_device *device, int device_modify_mask,
2353                              struct ib_device_modify *device_modify);
2354         void (*get_dev_fw_str)(struct ib_device *device, char *str);
2355         const struct cpumask *(*get_vector_affinity)(struct ib_device *ibdev,
2356                                                      int comp_vector);
2357         int (*query_port)(struct ib_device *device, u8 port_num,
2358                           struct ib_port_attr *port_attr);
2359         int (*modify_port)(struct ib_device *device, u8 port_num,
2360                            int port_modify_mask,
2361                            struct ib_port_modify *port_modify);
2362         /**
2363          * The following mandatory functions are used only at device
2364          * registration.  Keep functions such as these at the end of this
2365          * structure to avoid cache line misses when accessing struct ib_device
2366          * in fast paths.
2367          */
2368         int (*get_port_immutable)(struct ib_device *device, u8 port_num,
2369                                   struct ib_port_immutable *immutable);
2370         enum rdma_link_layer (*get_link_layer)(struct ib_device *device,
2371                                                u8 port_num);
2372         /**
2373          * When calling get_netdev, the HW vendor's driver should return the
2374          * net device of device @device at port @port_num or NULL if such
2375          * a net device doesn't exist. The vendor driver should call dev_hold
2376          * on this net device. The HW vendor's device driver must guarantee
2377          * that this function returns NULL before the net device has finished
2378          * NETDEV_UNREGISTER state.
2379          */
2380         struct net_device *(*get_netdev)(struct ib_device *device, u8 port_num);
2381         /**
2382          * rdma netdev operation
2383          *
2384          * Driver implementing alloc_rdma_netdev or rdma_netdev_get_params
2385          * must return -EOPNOTSUPP if it doesn't support the specified type.
2386          */
2387         struct net_device *(*alloc_rdma_netdev)(
2388                 struct ib_device *device, u8 port_num, enum rdma_netdev_t type,
2389                 const char *name, unsigned char name_assign_type,
2390                 void (*setup)(struct net_device *));
2391
2392         int (*rdma_netdev_get_params)(struct ib_device *device, u8 port_num,
2393                                       enum rdma_netdev_t type,
2394                                       struct rdma_netdev_alloc_params *params);
2395         /**
2396          * query_gid should be return GID value for @device, when @port_num
2397          * link layer is either IB or iWarp. It is no-op if @port_num port
2398          * is RoCE link layer.
2399          */
2400         int (*query_gid)(struct ib_device *device, u8 port_num, int index,
2401                          union ib_gid *gid);
2402         /**
2403          * When calling add_gid, the HW vendor's driver should add the gid
2404          * of device of port at gid index available at @attr. Meta-info of
2405          * that gid (for example, the network device related to this gid) is
2406          * available at @attr. @context allows the HW vendor driver to store
2407          * extra information together with a GID entry. The HW vendor driver may
2408          * allocate memory to contain this information and store it in @context
2409          * when a new GID entry is written to. Params are consistent until the
2410          * next call of add_gid or delete_gid. The function should return 0 on
2411          * success or error otherwise. The function could be called
2412          * concurrently for different ports. This function is only called when
2413          * roce_gid_table is used.
2414          */
2415         int (*add_gid)(const struct ib_gid_attr *attr, void **context);
2416         /**
2417          * When calling del_gid, the HW vendor's driver should delete the
2418          * gid of device @device at gid index gid_index of port port_num
2419          * available in @attr.
2420          * Upon the deletion of a GID entry, the HW vendor must free any
2421          * allocated memory. The caller will clear @context afterwards.
2422          * This function is only called when roce_gid_table is used.
2423          */
2424         int (*del_gid)(const struct ib_gid_attr *attr, void **context);
2425         int (*query_pkey)(struct ib_device *device, u8 port_num, u16 index,
2426                           u16 *pkey);
2427         int (*alloc_ucontext)(struct ib_ucontext *context,
2428                               struct ib_udata *udata);
2429         void (*dealloc_ucontext)(struct ib_ucontext *context);
2430         int (*mmap)(struct ib_ucontext *context, struct vm_area_struct *vma);
2431         void (*disassociate_ucontext)(struct ib_ucontext *ibcontext);
2432         int (*alloc_pd)(struct ib_pd *pd, struct ib_udata *udata);
2433         void (*dealloc_pd)(struct ib_pd *pd, struct ib_udata *udata);
2434         int (*create_ah)(struct ib_ah *ah, struct rdma_ah_attr *ah_attr,
2435                          u32 flags, struct ib_udata *udata);
2436         int (*modify_ah)(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
2437         int (*query_ah)(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
2438         void (*destroy_ah)(struct ib_ah *ah, u32 flags);
2439         int (*create_srq)(struct ib_srq *srq,
2440                           struct ib_srq_init_attr *srq_init_attr,
2441                           struct ib_udata *udata);
2442         int (*modify_srq)(struct ib_srq *srq, struct ib_srq_attr *srq_attr,
2443                           enum ib_srq_attr_mask srq_attr_mask,
2444                           struct ib_udata *udata);
2445         int (*query_srq)(struct ib_srq *srq, struct ib_srq_attr *srq_attr);
2446         void (*destroy_srq)(struct ib_srq *srq, struct ib_udata *udata);
2447         struct ib_qp *(*create_qp)(struct ib_pd *pd,
2448                                    struct ib_qp_init_attr *qp_init_attr,
2449                                    struct ib_udata *udata);
2450         int (*modify_qp)(struct ib_qp *qp, struct ib_qp_attr *qp_attr,
2451                          int qp_attr_mask, struct ib_udata *udata);
2452         int (*query_qp)(struct ib_qp *qp, struct ib_qp_attr *qp_attr,
2453                         int qp_attr_mask, struct ib_qp_init_attr *qp_init_attr);
2454         int (*destroy_qp)(struct ib_qp *qp, struct ib_udata *udata);
2455         struct ib_cq *(*create_cq)(struct ib_device *device,
2456                                    const struct ib_cq_init_attr *attr,
2457                                    struct ib_udata *udata);
2458         int (*modify_cq)(struct ib_cq *cq, u16 cq_count, u16 cq_period);
2459         int (*destroy_cq)(struct ib_cq *cq, struct ib_udata *udata);
2460         int (*resize_cq)(struct ib_cq *cq, int cqe, struct ib_udata *udata);
2461         struct ib_mr *(*get_dma_mr)(struct ib_pd *pd, int mr_access_flags);
2462         struct ib_mr *(*reg_user_mr)(struct ib_pd *pd, u64 start, u64 length,
2463                                      u64 virt_addr, int mr_access_flags,
2464                                      struct ib_udata *udata);
2465         int (*rereg_user_mr)(struct ib_mr *mr, int flags, u64 start, u64 length,
2466                              u64 virt_addr, int mr_access_flags,
2467                              struct ib_pd *pd, struct ib_udata *udata);
2468         int (*dereg_mr)(struct ib_mr *mr, struct ib_udata *udata);
2469         struct ib_mr *(*alloc_mr)(struct ib_pd *pd, enum ib_mr_type mr_type,
2470                                   u32 max_num_sg, struct ib_udata *udata);
2471         int (*advise_mr)(struct ib_pd *pd,
2472                          enum ib_uverbs_advise_mr_advice advice, u32 flags,
2473                          struct ib_sge *sg_list, u32 num_sge,
2474                          struct uverbs_attr_bundle *attrs);
2475         int (*map_mr_sg)(struct ib_mr *mr, struct scatterlist *sg, int sg_nents,
2476                          unsigned int *sg_offset);
2477         int (*check_mr_status)(struct ib_mr *mr, u32 check_mask,
2478                                struct ib_mr_status *mr_status);
2479         struct ib_mw *(*alloc_mw)(struct ib_pd *pd, enum ib_mw_type type,
2480                                   struct ib_udata *udata);
2481         int (*dealloc_mw)(struct ib_mw *mw);
2482         struct ib_fmr *(*alloc_fmr)(struct ib_pd *pd, int mr_access_flags,
2483                                     struct ib_fmr_attr *fmr_attr);
2484         int (*map_phys_fmr)(struct ib_fmr *fmr, u64 *page_list, int list_len,
2485                             u64 iova);
2486         int (*unmap_fmr)(struct list_head *fmr_list);
2487         int (*dealloc_fmr)(struct ib_fmr *fmr);
2488         int (*attach_mcast)(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2489         int (*detach_mcast)(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2490         struct ib_xrcd *(*alloc_xrcd)(struct ib_device *device,
2491                                       struct ib_udata *udata);
2492         int (*dealloc_xrcd)(struct ib_xrcd *xrcd, struct ib_udata *udata);
2493         struct ib_flow *(*create_flow)(struct ib_qp *qp,
2494                                        struct ib_flow_attr *flow_attr,
2495                                        int domain, struct ib_udata *udata);
2496         int (*destroy_flow)(struct ib_flow *flow_id);
2497         struct ib_flow_action *(*create_flow_action_esp)(
2498                 struct ib_device *device,
2499                 const struct ib_flow_action_attrs_esp *attr,
2500                 struct uverbs_attr_bundle *attrs);
2501         int (*destroy_flow_action)(struct ib_flow_action *action);
2502         int (*modify_flow_action_esp)(
2503                 struct ib_flow_action *action,
2504                 const struct ib_flow_action_attrs_esp *attr,
2505                 struct uverbs_attr_bundle *attrs);
2506         int (*set_vf_link_state)(struct ib_device *device, int vf, u8 port,
2507                                  int state);
2508         int (*get_vf_config)(struct ib_device *device, int vf, u8 port,
2509                              struct ifla_vf_info *ivf);
2510         int (*get_vf_stats)(struct ib_device *device, int vf, u8 port,
2511                             struct ifla_vf_stats *stats);
2512         int (*set_vf_guid)(struct ib_device *device, int vf, u8 port, u64 guid,
2513                            int type);
2514         struct ib_wq *(*create_wq)(struct ib_pd *pd,
2515                                    struct ib_wq_init_attr *init_attr,
2516                                    struct ib_udata *udata);
2517         int (*destroy_wq)(struct ib_wq *wq, struct ib_udata *udata);
2518         int (*modify_wq)(struct ib_wq *wq, struct ib_wq_attr *attr,
2519                          u32 wq_attr_mask, struct ib_udata *udata);
2520         struct ib_rwq_ind_table *(*create_rwq_ind_table)(
2521                 struct ib_device *device,
2522                 struct ib_rwq_ind_table_init_attr *init_attr,
2523                 struct ib_udata *udata);
2524         int (*destroy_rwq_ind_table)(struct ib_rwq_ind_table *wq_ind_table);
2525         struct ib_dm *(*alloc_dm)(struct ib_device *device,
2526                                   struct ib_ucontext *context,
2527                                   struct ib_dm_alloc_attr *attr,
2528                                   struct uverbs_attr_bundle *attrs);
2529         int (*dealloc_dm)(struct ib_dm *dm, struct uverbs_attr_bundle *attrs);
2530         struct ib_mr *(*reg_dm_mr)(struct ib_pd *pd, struct ib_dm *dm,
2531                                    struct ib_dm_mr_attr *attr,
2532                                    struct uverbs_attr_bundle *attrs);
2533         struct ib_counters *(*create_counters)(
2534                 struct ib_device *device, struct uverbs_attr_bundle *attrs);
2535         int (*destroy_counters)(struct ib_counters *counters);
2536         int (*read_counters)(struct ib_counters *counters,
2537                              struct ib_counters_read_attr *counters_read_attr,
2538                              struct uverbs_attr_bundle *attrs);
2539         /**
2540          * alloc_hw_stats - Allocate a struct rdma_hw_stats and fill in the
2541          *   driver initialized data.  The struct is kfree()'ed by the sysfs
2542          *   core when the device is removed.  A lifespan of -1 in the return
2543          *   struct tells the core to set a default lifespan.
2544          */
2545         struct rdma_hw_stats *(*alloc_hw_stats)(struct ib_device *device,
2546                                                 u8 port_num);
2547         /**
2548          * get_hw_stats - Fill in the counter value(s) in the stats struct.
2549          * @index - The index in the value array we wish to have updated, or
2550          *   num_counters if we want all stats updated
2551          * Return codes -
2552          *   < 0 - Error, no counters updated
2553          *   index - Updated the single counter pointed to by index
2554          *   num_counters - Updated all counters (will reset the timestamp
2555          *     and prevent further calls for lifespan milliseconds)
2556          * Drivers are allowed to update all counters in leiu of just the
2557          *   one given in index at their option
2558          */
2559         int (*get_hw_stats)(struct ib_device *device,
2560                             struct rdma_hw_stats *stats, u8 port, int index);
2561         /*
2562          * This function is called once for each port when a ib device is
2563          * registered.
2564          */
2565         int (*init_port)(struct ib_device *device, u8 port_num,
2566                          struct kobject *port_sysfs);
2567         /**
2568          * Allows rdma drivers to add their own restrack attributes.
2569          */
2570         int (*fill_res_entry)(struct sk_buff *msg,
2571                               struct rdma_restrack_entry *entry);
2572
2573         /* Device lifecycle callbacks */
2574         /*
2575          * Called after the device becomes registered, before clients are
2576          * attached
2577          */
2578         int (*enable_driver)(struct ib_device *dev);
2579         /*
2580          * This is called as part of ib_dealloc_device().
2581          */
2582         void (*dealloc_driver)(struct ib_device *dev);
2583
2584         DECLARE_RDMA_OBJ_SIZE(ib_ah);
2585         DECLARE_RDMA_OBJ_SIZE(ib_pd);
2586         DECLARE_RDMA_OBJ_SIZE(ib_srq);
2587         DECLARE_RDMA_OBJ_SIZE(ib_ucontext);
2588 };
2589
2590 struct ib_core_device {
2591         /* device must be the first element in structure until,
2592          * union of ib_core_device and device exists in ib_device.
2593          */
2594         struct device dev;
2595         possible_net_t rdma_net;
2596         struct kobject *ports_kobj;
2597         struct list_head port_list;
2598         struct ib_device *owner; /* reach back to owner ib_device */
2599 };
2600
2601 struct rdma_restrack_root;
2602 struct ib_device {
2603         /* Do not access @dma_device directly from ULP nor from HW drivers. */
2604         struct device                *dma_device;
2605         struct ib_device_ops         ops;
2606         char                          name[IB_DEVICE_NAME_MAX];
2607         struct rcu_head rcu_head;
2608
2609         struct list_head              event_handler_list;
2610         spinlock_t                    event_handler_lock;
2611
2612         struct rw_semaphore           client_data_rwsem;
2613         struct xarray                 client_data;
2614         struct mutex                  unregistration_lock;
2615
2616         struct ib_cache               cache;
2617         /**
2618          * port_data is indexed by port number
2619          */
2620         struct ib_port_data *port_data;
2621
2622         int                           num_comp_vectors;
2623
2624         struct iw_cm_verbs           *iwcm;
2625
2626         struct module               *owner;
2627         union {
2628                 struct device           dev;
2629                 struct ib_core_device   coredev;
2630         };
2631
2632         /* First group for device attributes,
2633          * Second group for driver provided attributes (optional).
2634          * It is NULL terminated array.
2635          */
2636         const struct attribute_group    *groups[3];
2637
2638         int                          uverbs_abi_ver;
2639         u64                          uverbs_cmd_mask;
2640         u64                          uverbs_ex_cmd_mask;
2641
2642         char                         node_desc[IB_DEVICE_NODE_DESC_MAX];
2643         __be64                       node_guid;
2644         u32                          local_dma_lkey;
2645         u16                          is_switch:1;
2646         /* Indicates kernel verbs support, should not be used in drivers */
2647         u16                          kverbs_provider:1;
2648         u8                           node_type;
2649         u8                           phys_port_cnt;
2650         struct ib_device_attr        attrs;
2651         struct attribute_group       *hw_stats_ag;
2652         struct rdma_hw_stats         *hw_stats;
2653
2654 #ifdef CONFIG_CGROUP_RDMA
2655         struct rdmacg_device         cg_device;
2656 #endif
2657
2658         u32                          index;
2659         struct rdma_restrack_root *res;
2660
2661         const struct uapi_definition   *driver_def;
2662         enum rdma_driver_id             driver_id;
2663
2664         /*
2665          * Positive refcount indicates that the device is currently
2666          * registered and cannot be unregistered.
2667          */
2668         refcount_t refcount;
2669         struct completion unreg_completion;
2670         struct work_struct unregistration_work;
2671
2672         const struct rdma_link_ops *link_ops;
2673
2674         /* Protects compat_devs xarray modifications */
2675         struct mutex compat_devs_mutex;
2676         /* Maintains compat devices for each net namespace */
2677         struct xarray compat_devs;
2678 };
2679
2680 struct ib_client {
2681         const char *name;
2682         void (*add)   (struct ib_device *);
2683         void (*remove)(struct ib_device *, void *client_data);
2684
2685         /* Returns the net_dev belonging to this ib_client and matching the
2686          * given parameters.
2687          * @dev:         An RDMA device that the net_dev use for communication.
2688          * @port:        A physical port number on the RDMA device.
2689          * @pkey:        P_Key that the net_dev uses if applicable.
2690          * @gid:         A GID that the net_dev uses to communicate.
2691          * @addr:        An IP address the net_dev is configured with.
2692          * @client_data: The device's client data set by ib_set_client_data().
2693          *
2694          * An ib_client that implements a net_dev on top of RDMA devices
2695          * (such as IP over IB) should implement this callback, allowing the
2696          * rdma_cm module to find the right net_dev for a given request.
2697          *
2698          * The caller is responsible for calling dev_put on the returned
2699          * netdev. */
2700         struct net_device *(*get_net_dev_by_params)(
2701                         struct ib_device *dev,
2702                         u8 port,
2703                         u16 pkey,
2704                         const union ib_gid *gid,
2705                         const struct sockaddr *addr,
2706                         void *client_data);
2707         struct list_head list;
2708         u32 client_id;
2709
2710         /* kverbs are not required by the client */
2711         u8 no_kverbs_req:1;
2712 };
2713
2714 struct ib_device *_ib_alloc_device(size_t size);
2715 #define ib_alloc_device(drv_struct, member)                                    \
2716         container_of(_ib_alloc_device(sizeof(struct drv_struct) +              \
2717                                       BUILD_BUG_ON_ZERO(offsetof(              \
2718                                               struct drv_struct, member))),    \
2719                      struct drv_struct, member)
2720
2721 void ib_dealloc_device(struct ib_device *device);
2722
2723 void ib_get_device_fw_str(struct ib_device *device, char *str);
2724
2725 int ib_register_device(struct ib_device *device, const char *name);
2726 void ib_unregister_device(struct ib_device *device);
2727 void ib_unregister_driver(enum rdma_driver_id driver_id);
2728 void ib_unregister_device_and_put(struct ib_device *device);
2729 void ib_unregister_device_queued(struct ib_device *ib_dev);
2730
2731 int ib_register_client   (struct ib_client *client);
2732 void ib_unregister_client(struct ib_client *client);
2733
2734 /**
2735  * ib_get_client_data - Get IB client context
2736  * @device:Device to get context for
2737  * @client:Client to get context for
2738  *
2739  * ib_get_client_data() returns the client context data set with
2740  * ib_set_client_data(). This can only be called while the client is
2741  * registered to the device, once the ib_client remove() callback returns this
2742  * cannot be called.
2743  */
2744 static inline void *ib_get_client_data(struct ib_device *device,
2745                                        struct ib_client *client)
2746 {
2747         return xa_load(&device->client_data, client->client_id);
2748 }
2749 void  ib_set_client_data(struct ib_device *device, struct ib_client *client,
2750                          void *data);
2751 void ib_set_device_ops(struct ib_device *device,
2752                        const struct ib_device_ops *ops);
2753
2754 #if IS_ENABLED(CONFIG_INFINIBAND_USER_ACCESS)
2755 int rdma_user_mmap_io(struct ib_ucontext *ucontext, struct vm_area_struct *vma,
2756                       unsigned long pfn, unsigned long size, pgprot_t prot);
2757 #else
2758 static inline int rdma_user_mmap_io(struct ib_ucontext *ucontext,
2759                                     struct vm_area_struct *vma,
2760                                     unsigned long pfn, unsigned long size,
2761                                     pgprot_t prot)
2762 {
2763         return -EINVAL;
2764 }
2765 #endif
2766
2767 static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
2768 {
2769         return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
2770 }
2771
2772 static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
2773 {
2774         return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
2775 }
2776
2777 static inline bool ib_is_buffer_cleared(const void __user *p,
2778                                         size_t len)
2779 {
2780         bool ret;
2781         u8 *buf;
2782
2783         if (len > USHRT_MAX)
2784                 return false;
2785
2786         buf = memdup_user(p, len);
2787         if (IS_ERR(buf))
2788                 return false;
2789
2790         ret = !memchr_inv(buf, 0, len);
2791         kfree(buf);
2792         return ret;
2793 }
2794
2795 static inline bool ib_is_udata_cleared(struct ib_udata *udata,
2796                                        size_t offset,
2797                                        size_t len)
2798 {
2799         return ib_is_buffer_cleared(udata->inbuf + offset, len);
2800 }
2801
2802 /**
2803  * ib_is_destroy_retryable - Check whether the uobject destruction
2804  * is retryable.
2805  * @ret: The initial destruction return code
2806  * @why: remove reason
2807  * @uobj: The uobject that is destroyed
2808  *
2809  * This function is a helper function that IB layer and low-level drivers
2810  * can use to consider whether the destruction of the given uobject is
2811  * retry-able.
2812  * It checks the original return code, if it wasn't success the destruction
2813  * is retryable according to the ucontext state (i.e. cleanup_retryable) and
2814  * the remove reason. (i.e. why).
2815  * Must be called with the object locked for destroy.
2816  */
2817 static inline bool ib_is_destroy_retryable(int ret, enum rdma_remove_reason why,
2818                                            struct ib_uobject *uobj)
2819 {
2820         return ret && (why == RDMA_REMOVE_DESTROY ||
2821                        uobj->context->cleanup_retryable);
2822 }
2823
2824 /**
2825  * ib_destroy_usecnt - Called during destruction to check the usecnt
2826  * @usecnt: The usecnt atomic
2827  * @why: remove reason
2828  * @uobj: The uobject that is destroyed
2829  *
2830  * Non-zero usecnts will block destruction unless destruction was triggered by
2831  * a ucontext cleanup.
2832  */
2833 static inline int ib_destroy_usecnt(atomic_t *usecnt,
2834                                     enum rdma_remove_reason why,
2835                                     struct ib_uobject *uobj)
2836 {
2837         if (atomic_read(usecnt) && ib_is_destroy_retryable(-EBUSY, why, uobj))
2838                 return -EBUSY;
2839         return 0;
2840 }
2841
2842 /**
2843  * ib_modify_qp_is_ok - Check that the supplied attribute mask
2844  * contains all required attributes and no attributes not allowed for
2845  * the given QP state transition.
2846  * @cur_state: Current QP state
2847  * @next_state: Next QP state
2848  * @type: QP type
2849  * @mask: Mask of supplied QP attributes
2850  *
2851  * This function is a helper function that a low-level driver's
2852  * modify_qp method can use to validate the consumer's input.  It
2853  * checks that cur_state and next_state are valid QP states, that a
2854  * transition from cur_state to next_state is allowed by the IB spec,
2855  * and that the attribute mask supplied is allowed for the transition.
2856  */
2857 bool ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
2858                         enum ib_qp_type type, enum ib_qp_attr_mask mask);
2859
2860 void ib_register_event_handler(struct ib_event_handler *event_handler);
2861 void ib_unregister_event_handler(struct ib_event_handler *event_handler);
2862 void ib_dispatch_event(struct ib_event *event);
2863
2864 int ib_query_port(struct ib_device *device,
2865                   u8 port_num, struct ib_port_attr *port_attr);
2866
2867 enum rdma_link_layer rdma_port_get_link_layer(struct ib_device *device,
2868                                                u8 port_num);
2869
2870 /**
2871  * rdma_cap_ib_switch - Check if the device is IB switch
2872  * @device: Device to check
2873  *
2874  * Device driver is responsible for setting is_switch bit on
2875  * in ib_device structure at init time.
2876  *
2877  * Return: true if the device is IB switch.
2878  */
2879 static inline bool rdma_cap_ib_switch(const struct ib_device *device)
2880 {
2881         return device->is_switch;
2882 }
2883
2884 /**
2885  * rdma_start_port - Return the first valid port number for the device
2886  * specified
2887  *
2888  * @device: Device to be checked
2889  *
2890  * Return start port number
2891  */
2892 static inline u8 rdma_start_port(const struct ib_device *device)
2893 {
2894         return rdma_cap_ib_switch(device) ? 0 : 1;
2895 }
2896
2897 /**
2898  * rdma_for_each_port - Iterate over all valid port numbers of the IB device
2899  * @device - The struct ib_device * to iterate over
2900  * @iter - The unsigned int to store the port number
2901  */
2902 #define rdma_for_each_port(device, iter)                                       \
2903         for (iter = rdma_start_port(device + BUILD_BUG_ON_ZERO(!__same_type(   \
2904                                                      unsigned int, iter)));    \
2905              iter <= rdma_end_port(device); (iter)++)
2906
2907 /**
2908  * rdma_end_port - Return the last valid port number for the device
2909  * specified
2910  *
2911  * @device: Device to be checked
2912  *
2913  * Return last port number
2914  */
2915 static inline u8 rdma_end_port(const struct ib_device *device)
2916 {
2917         return rdma_cap_ib_switch(device) ? 0 : device->phys_port_cnt;
2918 }
2919
2920 static inline int rdma_is_port_valid(const struct ib_device *device,
2921                                      unsigned int port)
2922 {
2923         return (port >= rdma_start_port(device) &&
2924                 port <= rdma_end_port(device));
2925 }
2926
2927 static inline bool rdma_is_grh_required(const struct ib_device *device,
2928                                         u8 port_num)
2929 {
2930         return device->port_data[port_num].immutable.core_cap_flags &
2931                RDMA_CORE_PORT_IB_GRH_REQUIRED;
2932 }
2933
2934 static inline bool rdma_protocol_ib(const struct ib_device *device, u8 port_num)
2935 {
2936         return device->port_data[port_num].immutable.core_cap_flags &
2937                RDMA_CORE_CAP_PROT_IB;
2938 }
2939
2940 static inline bool rdma_protocol_roce(const struct ib_device *device, u8 port_num)
2941 {
2942         return device->port_data[port_num].immutable.core_cap_flags &
2943                (RDMA_CORE_CAP_PROT_ROCE | RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP);
2944 }
2945
2946 static inline bool rdma_protocol_roce_udp_encap(const struct ib_device *device, u8 port_num)
2947 {
2948         return device->port_data[port_num].immutable.core_cap_flags &
2949                RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP;
2950 }
2951
2952 static inline bool rdma_protocol_roce_eth_encap(const struct ib_device *device, u8 port_num)
2953 {
2954         return device->port_data[port_num].immutable.core_cap_flags &
2955                RDMA_CORE_CAP_PROT_ROCE;
2956 }
2957
2958 static inline bool rdma_protocol_iwarp(const struct ib_device *device, u8 port_num)
2959 {
2960         return device->port_data[port_num].immutable.core_cap_flags &
2961                RDMA_CORE_CAP_PROT_IWARP;
2962 }
2963
2964 static inline bool rdma_ib_or_roce(const struct ib_device *device, u8 port_num)
2965 {
2966         return rdma_protocol_ib(device, port_num) ||
2967                 rdma_protocol_roce(device, port_num);
2968 }
2969
2970 static inline bool rdma_protocol_raw_packet(const struct ib_device *device, u8 port_num)
2971 {
2972         return device->port_data[port_num].immutable.core_cap_flags &
2973                RDMA_CORE_CAP_PROT_RAW_PACKET;
2974 }
2975
2976 static inline bool rdma_protocol_usnic(const struct ib_device *device, u8 port_num)
2977 {
2978         return device->port_data[port_num].immutable.core_cap_flags &
2979                RDMA_CORE_CAP_PROT_USNIC;
2980 }
2981
2982 /**
2983  * rdma_cap_ib_mad - Check if the port of a device supports Infiniband
2984  * Management Datagrams.
2985  * @device: Device to check
2986  * @port_num: Port number to check
2987  *
2988  * Management Datagrams (MAD) are a required part of the InfiniBand
2989  * specification and are supported on all InfiniBand devices.  A slightly
2990  * extended version are also supported on OPA interfaces.
2991  *
2992  * Return: true if the port supports sending/receiving of MAD packets.
2993  */
2994 static inline bool rdma_cap_ib_mad(const struct ib_device *device, u8 port_num)
2995 {
2996         return device->port_data[port_num].immutable.core_cap_flags &
2997                RDMA_CORE_CAP_IB_MAD;
2998 }
2999
3000 /**
3001  * rdma_cap_opa_mad - Check if the port of device provides support for OPA
3002  * Management Datagrams.
3003  * @device: Device to check
3004  * @port_num: Port number to check
3005  *
3006  * Intel OmniPath devices extend and/or replace the InfiniBand Management
3007  * datagrams with their own versions.  These OPA MADs share many but not all of
3008  * the characteristics of InfiniBand MADs.
3009  *
3010  * OPA MADs differ in the following ways:
3011  *
3012  *    1) MADs are variable size up to 2K
3013  *       IBTA defined MADs remain fixed at 256 bytes
3014  *    2) OPA SMPs must carry valid PKeys
3015  *    3) OPA SMP packets are a different format
3016  *
3017  * Return: true if the port supports OPA MAD packet formats.
3018  */
3019 static inline bool rdma_cap_opa_mad(struct ib_device *device, u8 port_num)
3020 {
3021         return device->port_data[port_num].immutable.core_cap_flags &
3022                 RDMA_CORE_CAP_OPA_MAD;
3023 }
3024
3025 /**
3026  * rdma_cap_ib_smi - Check if the port of a device provides an Infiniband
3027  * Subnet Management Agent (SMA) on the Subnet Management Interface (SMI).
3028  * @device: Device to check
3029  * @port_num: Port number to check
3030  *
3031  * Each InfiniBand node is required to provide a Subnet Management Agent
3032  * that the subnet manager can access.  Prior to the fabric being fully
3033  * configured by the subnet manager, the SMA is accessed via a well known
3034  * interface called the Subnet Management Interface (SMI).  This interface
3035  * uses directed route packets to communicate with the SM to get around the
3036  * chicken and egg problem of the SM needing to know what's on the fabric
3037  * in order to configure the fabric, and needing to configure the fabric in
3038  * order to send packets to the devices on the fabric.  These directed
3039  * route packets do not need the fabric fully configured in order to reach
3040  * their destination.  The SMI is the only method allowed to send
3041  * directed route packets on an InfiniBand fabric.
3042  *
3043  * Return: true if the port provides an SMI.
3044  */
3045 static inline bool rdma_cap_ib_smi(const struct ib_device *device, u8 port_num)
3046 {
3047         return device->port_data[port_num].immutable.core_cap_flags &
3048                RDMA_CORE_CAP_IB_SMI;
3049 }
3050
3051 /**
3052  * rdma_cap_ib_cm - Check if the port of device has the capability Infiniband
3053  * Communication Manager.
3054  * @device: Device to check
3055  * @port_num: Port number to check
3056  *
3057  * The InfiniBand Communication Manager is one of many pre-defined General
3058  * Service Agents (GSA) that are accessed via the General Service
3059  * Interface (GSI).  It's role is to facilitate establishment of connections
3060  * between nodes as well as other management related tasks for established
3061  * connections.
3062  *
3063  * Return: true if the port supports an IB CM (this does not guarantee that
3064  * a CM is actually running however).
3065  */
3066 static inline bool rdma_cap_ib_cm(const struct ib_device *device, u8 port_num)
3067 {
3068         return device->port_data[port_num].immutable.core_cap_flags &
3069                RDMA_CORE_CAP_IB_CM;
3070 }
3071
3072 /**
3073  * rdma_cap_iw_cm - Check if the port of device has the capability IWARP
3074  * Communication Manager.
3075  * @device: Device to check
3076  * @port_num: Port number to check
3077  *
3078  * Similar to above, but specific to iWARP connections which have a different
3079  * managment protocol than InfiniBand.
3080  *
3081  * Return: true if the port supports an iWARP CM (this does not guarantee that
3082  * a CM is actually running however).
3083  */
3084 static inline bool rdma_cap_iw_cm(const struct ib_device *device, u8 port_num)
3085 {
3086         return device->port_data[port_num].immutable.core_cap_flags &
3087                RDMA_CORE_CAP_IW_CM;
3088 }
3089
3090 /**
3091  * rdma_cap_ib_sa - Check if the port of device has the capability Infiniband
3092  * Subnet Administration.
3093  * @device: Device to check
3094  * @port_num: Port number to check
3095  *
3096  * An InfiniBand Subnet Administration (SA) service is a pre-defined General
3097  * Service Agent (GSA) provided by the Subnet Manager (SM).  On InfiniBand
3098  * fabrics, devices should resolve routes to other hosts by contacting the
3099  * SA to query the proper route.
3100  *
3101  * Return: true if the port should act as a client to the fabric Subnet
3102  * Administration interface.  This does not imply that the SA service is
3103  * running locally.
3104  */
3105 static inline bool rdma_cap_ib_sa(const struct ib_device *device, u8 port_num)
3106 {
3107         return device->port_data[port_num].immutable.core_cap_flags &
3108                RDMA_CORE_CAP_IB_SA;
3109 }
3110
3111 /**
3112  * rdma_cap_ib_mcast - Check if the port of device has the capability Infiniband
3113  * Multicast.
3114  * @device: Device to check
3115  * @port_num: Port number to check
3116  *
3117  * InfiniBand multicast registration is more complex than normal IPv4 or
3118  * IPv6 multicast registration.  Each Host Channel Adapter must register
3119  * with the Subnet Manager when it wishes to join a multicast group.  It
3120  * should do so only once regardless of how many queue pairs it subscribes
3121  * to this group.  And it should leave the group only after all queue pairs
3122  * attached to the group have been detached.
3123  *
3124  * Return: true if the port must undertake the additional adminstrative
3125  * overhead of registering/unregistering with the SM and tracking of the
3126  * total number of queue pairs attached to the multicast group.
3127  */
3128 static inline bool rdma_cap_ib_mcast(const struct ib_device *device, u8 port_num)
3129 {
3130         return rdma_cap_ib_sa(device, port_num);
3131 }
3132
3133 /**
3134  * rdma_cap_af_ib - Check if the port of device has the capability
3135  * Native Infiniband Address.
3136  * @device: Device to check
3137  * @port_num: Port number to check
3138  *
3139  * InfiniBand addressing uses a port's GUID + Subnet Prefix to make a default
3140  * GID.  RoCE uses a different mechanism, but still generates a GID via
3141  * a prescribed mechanism and port specific data.
3142  *
3143  * Return: true if the port uses a GID address to identify devices on the
3144  * network.
3145  */
3146 static inline bool rdma_cap_af_ib(const struct ib_device *device, u8 port_num)
3147 {
3148         return device->port_data[port_num].immutable.core_cap_flags &
3149                RDMA_CORE_CAP_AF_IB;
3150 }
3151
3152 /**
3153  * rdma_cap_eth_ah - Check if the port of device has the capability
3154  * Ethernet Address Handle.
3155  * @device: Device to check
3156  * @port_num: Port number to check
3157  *
3158  * RoCE is InfiniBand over Ethernet, and it uses a well defined technique
3159  * to fabricate GIDs over Ethernet/IP specific addresses native to the
3160  * port.  Normally, packet headers are generated by the sending host
3161  * adapter, but when sending connectionless datagrams, we must manually
3162  * inject the proper headers for the fabric we are communicating over.
3163  *
3164  * Return: true if we are running as a RoCE port and must force the
3165  * addition of a Global Route Header built from our Ethernet Address
3166  * Handle into our header list for connectionless packets.
3167  */
3168 static inline bool rdma_cap_eth_ah(const struct ib_device *device, u8 port_num)
3169 {
3170         return device->port_data[port_num].immutable.core_cap_flags &
3171                RDMA_CORE_CAP_ETH_AH;
3172 }
3173
3174 /**
3175  * rdma_cap_opa_ah - Check if the port of device supports
3176  * OPA Address handles
3177  * @device: Device to check
3178  * @port_num: Port number to check
3179  *
3180  * Return: true if we are running on an OPA device which supports
3181  * the extended OPA addressing.
3182  */
3183 static inline bool rdma_cap_opa_ah(struct ib_device *device, u8 port_num)
3184 {
3185         return (device->port_data[port_num].immutable.core_cap_flags &
3186                 RDMA_CORE_CAP_OPA_AH) == RDMA_CORE_CAP_OPA_AH;
3187 }
3188
3189 /**
3190  * rdma_max_mad_size - Return the max MAD size required by this RDMA Port.
3191  *
3192  * @device: Device
3193  * @port_num: Port number
3194  *
3195  * This MAD size includes the MAD headers and MAD payload.  No other headers
3196  * are included.
3197  *
3198  * Return the max MAD size required by the Port.  Will return 0 if the port
3199  * does not support MADs
3200  */
3201 static inline size_t rdma_max_mad_size(const struct ib_device *device, u8 port_num)
3202 {
3203         return device->port_data[port_num].immutable.max_mad_size;
3204 }
3205
3206 /**
3207  * rdma_cap_roce_gid_table - Check if the port of device uses roce_gid_table
3208  * @device: Device to check
3209  * @port_num: Port number to check
3210  *
3211  * RoCE GID table mechanism manages the various GIDs for a device.
3212  *
3213  * NOTE: if allocating the port's GID table has failed, this call will still
3214  * return true, but any RoCE GID table API will fail.
3215  *
3216  * Return: true if the port uses RoCE GID table mechanism in order to manage
3217  * its GIDs.
3218  */
3219 static inline bool rdma_cap_roce_gid_table(const struct ib_device *device,
3220                                            u8 port_num)
3221 {
3222         return rdma_protocol_roce(device, port_num) &&
3223                 device->ops.add_gid && device->ops.del_gid;
3224 }
3225
3226 /*
3227  * Check if the device supports READ W/ INVALIDATE.
3228  */
3229 static inline bool rdma_cap_read_inv(struct ib_device *dev, u32 port_num)
3230 {
3231         /*
3232          * iWarp drivers must support READ W/ INVALIDATE.  No other protocol
3233          * has support for it yet.
3234          */
3235         return rdma_protocol_iwarp(dev, port_num);
3236 }
3237
3238 int ib_set_vf_link_state(struct ib_device *device, int vf, u8 port,
3239                          int state);
3240 int ib_get_vf_config(struct ib_device *device, int vf, u8 port,
3241                      struct ifla_vf_info *info);
3242 int ib_get_vf_stats(struct ib_device *device, int vf, u8 port,
3243                     struct ifla_vf_stats *stats);
3244 int ib_set_vf_guid(struct ib_device *device, int vf, u8 port, u64 guid,
3245                    int type);
3246
3247 int ib_query_pkey(struct ib_device *device,
3248                   u8 port_num, u16 index, u16 *pkey);
3249
3250 int ib_modify_device(struct ib_device *device,
3251                      int device_modify_mask,
3252                      struct ib_device_modify *device_modify);
3253
3254 int ib_modify_port(struct ib_device *device,
3255                    u8 port_num, int port_modify_mask,
3256                    struct ib_port_modify *port_modify);
3257
3258 int ib_find_gid(struct ib_device *device, union ib_gid *gid,
3259                 u8 *port_num, u16 *index);
3260
3261 int ib_find_pkey(struct ib_device *device,
3262                  u8 port_num, u16 pkey, u16 *index);
3263
3264 enum ib_pd_flags {
3265         /*
3266          * Create a memory registration for all memory in the system and place
3267          * the rkey for it into pd->unsafe_global_rkey.  This can be used by
3268          * ULPs to avoid the overhead of dynamic MRs.
3269          *
3270          * This flag is generally considered unsafe and must only be used in
3271          * extremly trusted environments.  Every use of it will log a warning
3272          * in the kernel log.
3273          */
3274         IB_PD_UNSAFE_GLOBAL_RKEY        = 0x01,
3275 };
3276
3277 struct ib_pd *__ib_alloc_pd(struct ib_device *device, unsigned int flags,
3278                 const char *caller);
3279
3280 #define ib_alloc_pd(device, flags) \
3281         __ib_alloc_pd((device), (flags), KBUILD_MODNAME)
3282
3283 /**
3284  * ib_dealloc_pd_user - Deallocate kernel/user PD
3285  * @pd: The protection domain
3286  * @udata: Valid user data or NULL for kernel objects
3287  */
3288 void ib_dealloc_pd_user(struct ib_pd *pd, struct ib_udata *udata);
3289
3290 /**
3291  * ib_dealloc_pd - Deallocate kernel PD
3292  * @pd: The protection domain
3293  *
3294  * NOTE: for user PD use ib_dealloc_pd_user with valid udata!
3295  */
3296 static inline void ib_dealloc_pd(struct ib_pd *pd)
3297 {
3298         ib_dealloc_pd_user(pd, NULL);
3299 }
3300
3301 enum rdma_create_ah_flags {
3302         /* In a sleepable context */
3303         RDMA_CREATE_AH_SLEEPABLE = BIT(0),
3304 };
3305
3306 /**
3307  * rdma_create_ah - Creates an address handle for the given address vector.
3308  * @pd: The protection domain associated with the address handle.
3309  * @ah_attr: The attributes of the address vector.
3310  * @flags: Create address handle flags (see enum rdma_create_ah_flags).
3311  *
3312  * The address handle is used to reference a local or global destination
3313  * in all UD QP post sends.
3314  */
3315 struct ib_ah *rdma_create_ah(struct ib_pd *pd, struct rdma_ah_attr *ah_attr,
3316                              u32 flags);
3317
3318 /**
3319  * rdma_create_user_ah - Creates an address handle for the given address vector.
3320  * It resolves destination mac address for ah attribute of RoCE type.
3321  * @pd: The protection domain associated with the address handle.
3322  * @ah_attr: The attributes of the address vector.
3323  * @udata: pointer to user's input output buffer information need by
3324  *         provider driver.
3325  *
3326  * It returns 0 on success and returns appropriate error code on error.
3327  * The address handle is used to reference a local or global destination
3328  * in all UD QP post sends.
3329  */
3330 struct ib_ah *rdma_create_user_ah(struct ib_pd *pd,
3331                                   struct rdma_ah_attr *ah_attr,
3332                                   struct ib_udata *udata);
3333 /**
3334  * ib_get_gids_from_rdma_hdr - Get sgid and dgid from GRH or IPv4 header
3335  *   work completion.
3336  * @hdr: the L3 header to parse
3337  * @net_type: type of header to parse
3338  * @sgid: place to store source gid
3339  * @dgid: place to store destination gid
3340  */
3341 int ib_get_gids_from_rdma_hdr(const union rdma_network_hdr *hdr,
3342                               enum rdma_network_type net_type,
3343                               union ib_gid *sgid, union ib_gid *dgid);
3344
3345 /**
3346  * ib_get_rdma_header_version - Get the header version
3347  * @hdr: the L3 header to parse
3348  */
3349 int ib_get_rdma_header_version(const union rdma_network_hdr *hdr);
3350
3351 /**
3352  * ib_init_ah_attr_from_wc - Initializes address handle attributes from a
3353  *   work completion.
3354  * @device: Device on which the received message arrived.
3355  * @port_num: Port on which the received message arrived.
3356  * @wc: Work completion associated with the received message.
3357  * @grh: References the received global route header.  This parameter is
3358  *   ignored unless the work completion indicates that the GRH is valid.
3359  * @ah_attr: Returned attributes that can be used when creating an address
3360  *   handle for replying to the message.
3361  * When ib_init_ah_attr_from_wc() returns success,
3362  * (a) for IB link layer it optionally contains a reference to SGID attribute
3363  * when GRH is present for IB link layer.
3364  * (b) for RoCE link layer it contains a reference to SGID attribute.
3365  * User must invoke rdma_cleanup_ah_attr_gid_attr() to release reference to SGID
3366  * attributes which are initialized using ib_init_ah_attr_from_wc().
3367  *
3368  */
3369 int ib_init_ah_attr_from_wc(struct ib_device *device, u8 port_num,
3370                             const struct ib_wc *wc, const struct ib_grh *grh,
3371                             struct rdma_ah_attr *ah_attr);
3372
3373 /**
3374  * ib_create_ah_from_wc - Creates an address handle associated with the
3375  *   sender of the specified work completion.
3376  * @pd: The protection domain associated with the address handle.
3377  * @wc: Work completion information associated with a received message.
3378  * @grh: References the received global route header.  This parameter is
3379  *   ignored unless the work completion indicates that the GRH is valid.
3380  * @port_num: The outbound port number to associate with the address.
3381  *
3382  * The address handle is used to reference a local or global destination
3383  * in all UD QP post sends.
3384  */
3385 struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, const struct ib_wc *wc,
3386                                    const struct ib_grh *grh, u8 port_num);
3387
3388 /**
3389  * rdma_modify_ah - Modifies the address vector associated with an address
3390  *   handle.
3391  * @ah: The address handle to modify.
3392  * @ah_attr: The new address vector attributes to associate with the
3393  *   address handle.
3394  */
3395 int rdma_modify_ah(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
3396
3397 /**
3398  * rdma_query_ah - Queries the address vector associated with an address
3399  *   handle.
3400  * @ah: The address handle to query.
3401  * @ah_attr: The address vector attributes associated with the address
3402  *   handle.
3403  */
3404 int rdma_query_ah(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
3405
3406 enum rdma_destroy_ah_flags {
3407         /* In a sleepable context */
3408         RDMA_DESTROY_AH_SLEEPABLE = BIT(0),
3409 };
3410
3411 /**
3412  * rdma_destroy_ah_user - Destroys an address handle.
3413  * @ah: The address handle to destroy.
3414  * @flags: Destroy address handle flags (see enum rdma_destroy_ah_flags).
3415  * @udata: Valid user data or NULL for kernel objects
3416  */
3417 int rdma_destroy_ah_user(struct ib_ah *ah, u32 flags, struct ib_udata *udata);
3418
3419 /**
3420  * rdma_destroy_ah - Destroys an kernel address handle.
3421  * @ah: The address handle to destroy.
3422  * @flags: Destroy address handle flags (see enum rdma_destroy_ah_flags).
3423  *
3424  * NOTE: for user ah use rdma_destroy_ah_user with valid udata!
3425  */
3426 static inline int rdma_destroy_ah(struct ib_ah *ah, u32 flags)
3427 {
3428         return rdma_destroy_ah_user(ah, flags, NULL);
3429 }
3430
3431 /**
3432  * ib_create_srq - Creates a SRQ associated with the specified protection
3433  *   domain.
3434  * @pd: The protection domain associated with the SRQ.
3435  * @srq_init_attr: A list of initial attributes required to create the
3436  *   SRQ.  If SRQ creation succeeds, then the attributes are updated to
3437  *   the actual capabilities of the created SRQ.
3438  *
3439  * srq_attr->max_wr and srq_attr->max_sge are read the determine the
3440  * requested size of the SRQ, and set to the actual values allocated
3441  * on return.  If ib_create_srq() succeeds, then max_wr and max_sge
3442  * will always be at least as large as the requested values.
3443  */
3444 struct ib_srq *ib_create_srq(struct ib_pd *pd,
3445                              struct ib_srq_init_attr *srq_init_attr);
3446
3447 /**
3448  * ib_modify_srq - Modifies the attributes for the specified SRQ.
3449  * @srq: The SRQ to modify.
3450  * @srq_attr: On input, specifies the SRQ attributes to modify.  On output,
3451  *   the current values of selected SRQ attributes are returned.
3452  * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
3453  *   are being modified.
3454  *
3455  * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
3456  * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
3457  * the number of receives queued drops below the limit.
3458  */
3459 int ib_modify_srq(struct ib_srq *srq,
3460                   struct ib_srq_attr *srq_attr,
3461                   enum ib_srq_attr_mask srq_attr_mask);
3462
3463 /**
3464  * ib_query_srq - Returns the attribute list and current values for the
3465  *   specified SRQ.
3466  * @srq: The SRQ to query.
3467  * @srq_attr: The attributes of the specified SRQ.
3468  */
3469 int ib_query_srq(struct ib_srq *srq,
3470                  struct ib_srq_attr *srq_attr);
3471
3472 /**
3473  * ib_destroy_srq_user - Destroys the specified SRQ.
3474  * @srq: The SRQ to destroy.
3475  * @udata: Valid user data or NULL for kernel objects
3476  */
3477 int ib_destroy_srq_user(struct ib_srq *srq, struct ib_udata *udata);
3478
3479 /**
3480  * ib_destroy_srq - Destroys the specified kernel SRQ.
3481  * @srq: The SRQ to destroy.
3482  *
3483  * NOTE: for user srq use ib_destroy_srq_user with valid udata!
3484  */
3485 static inline int ib_destroy_srq(struct ib_srq *srq)
3486 {
3487         return ib_destroy_srq_user(srq, NULL);
3488 }
3489
3490 /**
3491  * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
3492  * @srq: The SRQ to post the work request on.
3493  * @recv_wr: A list of work requests to post on the receive queue.
3494  * @bad_recv_wr: On an immediate failure, this parameter will reference
3495  *   the work request that failed to be posted on the QP.
3496  */
3497 static inline int ib_post_srq_recv(struct ib_srq *srq,
3498                                    const struct ib_recv_wr *recv_wr,
3499                                    const struct ib_recv_wr **bad_recv_wr)
3500 {
3501         const struct ib_recv_wr *dummy;
3502
3503         return srq->device->ops.post_srq_recv(srq, recv_wr,
3504                                               bad_recv_wr ? : &dummy);
3505 }
3506
3507 /**
3508  * ib_create_qp_user - Creates a QP associated with the specified protection
3509  *   domain.
3510  * @pd: The protection domain associated with the QP.
3511  * @qp_init_attr: A list of initial attributes required to create the
3512  *   QP.  If QP creation succeeds, then the attributes are updated to
3513  *   the actual capabilities of the created QP.
3514  * @udata: Valid user data or NULL for kernel objects
3515  */
3516 struct ib_qp *ib_create_qp_user(struct ib_pd *pd,
3517                                 struct ib_qp_init_attr *qp_init_attr,
3518                                 struct ib_udata *udata);
3519
3520 /**
3521  * ib_create_qp - Creates a kernel QP associated with the specified protection
3522  *   domain.
3523  * @pd: The protection domain associated with the QP.
3524  * @qp_init_attr: A list of initial attributes required to create the
3525  *   QP.  If QP creation succeeds, then the attributes are updated to
3526  *   the actual capabilities of the created QP.
3527  * @udata: Valid user data or NULL for kernel objects
3528  *
3529  * NOTE: for user qp use ib_create_qp_user with valid udata!
3530  */
3531 static inline struct ib_qp *ib_create_qp(struct ib_pd *pd,
3532                                          struct ib_qp_init_attr *qp_init_attr)
3533 {
3534         return ib_create_qp_user(pd, qp_init_attr, NULL);
3535 }
3536
3537 /**
3538  * ib_modify_qp_with_udata - Modifies the attributes for the specified QP.
3539  * @qp: The QP to modify.
3540  * @attr: On input, specifies the QP attributes to modify.  On output,
3541  *   the current values of selected QP attributes are returned.
3542  * @attr_mask: A bit-mask used to specify which attributes of the QP
3543  *   are being modified.
3544  * @udata: pointer to user's input output buffer information
3545  *   are being modified.
3546  * It returns 0 on success and returns appropriate error code on error.
3547  */
3548 int ib_modify_qp_with_udata(struct ib_qp *qp,
3549                             struct ib_qp_attr *attr,
3550                             int attr_mask,
3551                             struct ib_udata *udata);
3552
3553 /**
3554  * ib_modify_qp - Modifies the attributes for the specified QP and then
3555  *   transitions the QP to the given state.
3556  * @qp: The QP to modify.
3557  * @qp_attr: On input, specifies the QP attributes to modify.  On output,
3558  *   the current values of selected QP attributes are returned.
3559  * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
3560  *   are being modified.
3561  */
3562 int ib_modify_qp(struct ib_qp *qp,
3563                  struct ib_qp_attr *qp_attr,
3564                  int qp_attr_mask);
3565
3566 /**
3567  * ib_query_qp - Returns the attribute list and current values for the
3568  *   specified QP.
3569  * @qp: The QP to query.
3570  * @qp_attr: The attributes of the specified QP.
3571  * @qp_attr_mask: A bit-mask used to select specific attributes to query.
3572  * @qp_init_attr: Additional attributes of the selected QP.
3573  *
3574  * The qp_attr_mask may be used to limit the query to gathering only the
3575  * selected attributes.
3576  */
3577 int ib_query_qp(struct ib_qp *qp,
3578                 struct ib_qp_attr *qp_attr,
3579                 int qp_attr_mask,
3580                 struct ib_qp_init_attr *qp_init_attr);
3581
3582 /**
3583  * ib_destroy_qp - Destroys the specified QP.
3584  * @qp: The QP to destroy.
3585  * @udata: Valid udata or NULL for kernel objects
3586  */
3587 int ib_destroy_qp_user(struct ib_qp *qp, struct ib_udata *udata);
3588
3589 /**
3590  * ib_destroy_qp - Destroys the specified kernel QP.
3591  * @qp: The QP to destroy.
3592  *
3593  * NOTE: for user qp use ib_destroy_qp_user with valid udata!
3594  */
3595 static inline int ib_destroy_qp(struct ib_qp *qp)
3596 {
3597         return ib_destroy_qp_user(qp, NULL);
3598 }
3599
3600 /**
3601  * ib_open_qp - Obtain a reference to an existing sharable QP.
3602  * @xrcd - XRC domain
3603  * @qp_open_attr: Attributes identifying the QP to open.
3604  *
3605  * Returns a reference to a sharable QP.
3606  */
3607 struct ib_qp *ib_open_qp(struct ib_xrcd *xrcd,
3608                          struct ib_qp_open_attr *qp_open_attr);
3609
3610 /**
3611  * ib_close_qp - Release an external reference to a QP.
3612  * @qp: The QP handle to release
3613  *
3614  * The opened QP handle is released by the caller.  The underlying
3615  * shared QP is not destroyed until all internal references are released.
3616  */
3617 int ib_close_qp(struct ib_qp *qp);
3618
3619 /**
3620  * ib_post_send - Posts a list of work requests to the send queue of
3621  *   the specified QP.
3622  * @qp: The QP to post the work request on.
3623  * @send_wr: A list of work requests to post on the send queue.
3624  * @bad_send_wr: On an immediate failure, this parameter will reference
3625  *   the work request that failed to be posted on the QP.
3626  *
3627  * While IBA Vol. 1 section 11.4.1.1 specifies that if an immediate
3628  * error is returned, the QP state shall not be affected,
3629  * ib_post_send() will return an immediate error after queueing any
3630  * earlier work requests in the list.
3631  */
3632 static inline int ib_post_send(struct ib_qp *qp,
3633                                const struct ib_send_wr *send_wr,
3634                                const struct ib_send_wr **bad_send_wr)
3635 {
3636         const struct ib_send_wr *dummy;
3637
3638         return qp->device->ops.post_send(qp, send_wr, bad_send_wr ? : &dummy);
3639 }
3640
3641 /**
3642  * ib_post_recv - Posts a list of work requests to the receive queue of
3643  *   the specified QP.
3644  * @qp: The QP to post the work request on.
3645  * @recv_wr: A list of work requests to post on the receive queue.
3646  * @bad_recv_wr: On an immediate failure, this parameter will reference
3647  *   the work request that failed to be posted on the QP.
3648  */
3649 static inline int ib_post_recv(struct ib_qp *qp,
3650                                const struct ib_recv_wr *recv_wr,
3651                                const struct ib_recv_wr **bad_recv_wr)
3652 {
3653         const struct ib_recv_wr *dummy;
3654
3655         return qp->device->ops.post_recv(qp, recv_wr, bad_recv_wr ? : &dummy);
3656 }
3657
3658 struct ib_cq *__ib_alloc_cq_user(struct ib_device *dev, void *private,
3659                                  int nr_cqe, int comp_vector,
3660                                  enum ib_poll_context poll_ctx,
3661                                  const char *caller, struct ib_udata *udata);
3662
3663 /**
3664  * ib_alloc_cq_user: Allocate kernel/user CQ
3665  * @dev: The IB device
3666  * @private: Private data attached to the CQE
3667  * @nr_cqe: Number of CQEs in the CQ
3668  * @comp_vector: Completion vector used for the IRQs
3669  * @poll_ctx: Context used for polling the CQ
3670  * @udata: Valid user data or NULL for kernel objects
3671  */
3672 static inline struct ib_cq *ib_alloc_cq_user(struct ib_device *dev,
3673                                              void *private, int nr_cqe,
3674                                              int comp_vector,
3675                                              enum ib_poll_context poll_ctx,
3676                                              struct ib_udata *udata)
3677 {
3678         return __ib_alloc_cq_user(dev, private, nr_cqe, comp_vector, poll_ctx,
3679                                   KBUILD_MODNAME, udata);
3680 }
3681
3682 /**
3683  * ib_alloc_cq: Allocate kernel CQ
3684  * @dev: The IB device
3685  * @private: Private data attached to the CQE
3686  * @nr_cqe: Number of CQEs in the CQ
3687  * @comp_vector: Completion vector used for the IRQs
3688  * @poll_ctx: Context used for polling the CQ
3689  *
3690  * NOTE: for user cq use ib_alloc_cq_user with valid udata!
3691  */
3692 static inline struct ib_cq *ib_alloc_cq(struct ib_device *dev, void *private,
3693                                         int nr_cqe, int comp_vector,
3694                                         enum ib_poll_context poll_ctx)
3695 {
3696         return ib_alloc_cq_user(dev, private, nr_cqe, comp_vector, poll_ctx,
3697                                 NULL);
3698 }
3699
3700 /**
3701  * ib_free_cq_user - Free kernel/user CQ
3702  * @cq: The CQ to free
3703  * @udata: Valid user data or NULL for kernel objects
3704  */
3705 void ib_free_cq_user(struct ib_cq *cq, struct ib_udata *udata);
3706
3707 /**
3708  * ib_free_cq - Free kernel CQ
3709  * @cq: The CQ to free
3710  *
3711  * NOTE: for user cq use ib_free_cq_user with valid udata!
3712  */
3713 static inline void ib_free_cq(struct ib_cq *cq)
3714 {
3715         ib_free_cq_user(cq, NULL);
3716 }
3717
3718 int ib_process_cq_direct(struct ib_cq *cq, int budget);
3719
3720 /**
3721  * ib_create_cq - Creates a CQ on the specified device.
3722  * @device: The device on which to create the CQ.
3723  * @comp_handler: A user-specified callback that is invoked when a
3724  *   completion event occurs on the CQ.
3725  * @event_handler: A user-specified callback that is invoked when an
3726  *   asynchronous event not associated with a completion occurs on the CQ.
3727  * @cq_context: Context associated with the CQ returned to the user via
3728  *   the associated completion and event handlers.
3729  * @cq_attr: The attributes the CQ should be created upon.
3730  *
3731  * Users can examine the cq structure to determine the actual CQ size.
3732  */
3733 struct ib_cq *__ib_create_cq(struct ib_device *device,
3734                              ib_comp_handler comp_handler,
3735                              void (*event_handler)(struct ib_event *, void *),
3736                              void *cq_context,
3737                              const struct ib_cq_init_attr *cq_attr,
3738                              const char *caller);
3739 #define ib_create_cq(device, cmp_hndlr, evt_hndlr, cq_ctxt, cq_attr) \
3740         __ib_create_cq((device), (cmp_hndlr), (evt_hndlr), (cq_ctxt), (cq_attr), KBUILD_MODNAME)
3741
3742 /**
3743  * ib_resize_cq - Modifies the capacity of the CQ.
3744  * @cq: The CQ to resize.
3745  * @cqe: The minimum size of the CQ.
3746  *
3747  * Users can examine the cq structure to determine the actual CQ size.
3748  */
3749 int ib_resize_cq(struct ib_cq *cq, int cqe);
3750
3751 /**
3752  * rdma_set_cq_moderation - Modifies moderation params of the CQ
3753  * @cq: The CQ to modify.
3754  * @cq_count: number of CQEs that will trigger an event
3755  * @cq_period: max period of time in usec before triggering an event
3756  *
3757  */
3758 int rdma_set_cq_moderation(struct ib_cq *cq, u16 cq_count, u16 cq_period);
3759
3760 /**
3761  * ib_destroy_cq_user - Destroys the specified CQ.
3762  * @cq: The CQ to destroy.
3763  * @udata: Valid user data or NULL for kernel objects
3764  */
3765 int ib_destroy_cq_user(struct ib_cq *cq, struct ib_udata *udata);
3766
3767 /**
3768  * ib_destroy_cq - Destroys the specified kernel CQ.
3769  * @cq: The CQ to destroy.
3770  *
3771  * NOTE: for user cq use ib_destroy_cq_user with valid udata!
3772  */
3773 static inline int ib_destroy_cq(struct ib_cq *cq)
3774 {
3775         return ib_destroy_cq_user(cq, NULL);
3776 }
3777
3778 /**
3779  * ib_poll_cq - poll a CQ for completion(s)
3780  * @cq:the CQ being polled
3781  * @num_entries:maximum number of completions to return
3782  * @wc:array of at least @num_entries &struct ib_wc where completions
3783  *   will be returned
3784  *
3785  * Poll a CQ for (possibly multiple) completions.  If the return value
3786  * is < 0, an error occurred.  If the return value is >= 0, it is the
3787  * number of completions returned.  If the return value is
3788  * non-negative and < num_entries, then the CQ was emptied.
3789  */
3790 static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
3791                              struct ib_wc *wc)
3792 {
3793         return cq->device->ops.poll_cq(cq, num_entries, wc);
3794 }
3795
3796 /**
3797  * ib_req_notify_cq - Request completion notification on a CQ.
3798  * @cq: The CQ to generate an event for.
3799  * @flags:
3800  *   Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
3801  *   to request an event on the next solicited event or next work
3802  *   completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
3803  *   may also be |ed in to request a hint about missed events, as
3804  *   described below.
3805  *
3806  * Return Value:
3807  *    < 0 means an error occurred while requesting notification
3808  *   == 0 means notification was requested successfully, and if
3809  *        IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
3810  *        were missed and it is safe to wait for another event.  In
3811  *        this case is it guaranteed that any work completions added
3812  *        to the CQ since the last CQ poll will trigger a completion
3813  *        notification event.
3814  *    > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
3815  *        in.  It means that the consumer must poll the CQ again to
3816  *        make sure it is empty to avoid missing an event because of a
3817  *        race between requesting notification and an entry being
3818  *        added to the CQ.  This return value means it is possible
3819  *        (but not guaranteed) that a work completion has been added
3820  *        to the CQ since the last poll without triggering a
3821  *        completion notification event.
3822  */
3823 static inline int ib_req_notify_cq(struct ib_cq *cq,
3824                                    enum ib_cq_notify_flags flags)
3825 {
3826         return cq->device->ops.req_notify_cq(cq, flags);
3827 }
3828
3829 /**
3830  * ib_req_ncomp_notif - Request completion notification when there are
3831  *   at least the specified number of unreaped completions on the CQ.
3832  * @cq: The CQ to generate an event for.
3833  * @wc_cnt: The number of unreaped completions that should be on the
3834  *   CQ before an event is generated.
3835  */
3836 static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
3837 {
3838         return cq->device->ops.req_ncomp_notif ?
3839                 cq->device->ops.req_ncomp_notif(cq, wc_cnt) :
3840                 -ENOSYS;
3841 }
3842
3843 /**
3844  * ib_dma_mapping_error - check a DMA addr for error
3845  * @dev: The device for which the dma_addr was created
3846  * @dma_addr: The DMA address to check
3847  */
3848 static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
3849 {
3850         return dma_mapping_error(dev->dma_device, dma_addr);
3851 }
3852
3853 /**
3854  * ib_dma_map_single - Map a kernel virtual address to DMA address
3855  * @dev: The device for which the dma_addr is to be created
3856  * @cpu_addr: The kernel virtual address
3857  * @size: The size of the region in bytes
3858  * @direction: The direction of the DMA
3859  */
3860 static inline u64 ib_dma_map_single(struct ib_device *dev,
3861                                     void *cpu_addr, size_t size,
3862                                     enum dma_data_direction direction)
3863 {
3864         return dma_map_single(dev->dma_device, cpu_addr, size, direction);
3865 }
3866
3867 /**
3868  * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
3869  * @dev: The device for which the DMA address was created
3870  * @addr: The DMA address
3871  * @size: The size of the region in bytes
3872  * @direction: The direction of the DMA
3873  */
3874 static inline void ib_dma_unmap_single(struct ib_device *dev,
3875                                        u64 addr, size_t size,
3876                                        enum dma_data_direction direction)
3877 {
3878         dma_unmap_single(dev->dma_device, addr, size, direction);
3879 }
3880
3881 /**
3882  * ib_dma_map_page - Map a physical page to DMA address
3883  * @dev: The device for which the dma_addr is to be created
3884  * @page: The page to be mapped
3885  * @offset: The offset within the page
3886  * @size: The size of the region in bytes
3887  * @direction: The direction of the DMA
3888  */
3889 static inline u64 ib_dma_map_page(struct ib_device *dev,
3890                                   struct page *page,
3891                                   unsigned long offset,
3892                                   size_t size,
3893                                          enum dma_data_direction direction)
3894 {
3895         return dma_map_page(dev->dma_device, page, offset, size, direction);
3896 }
3897
3898 /**
3899  * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
3900  * @dev: The device for which the DMA address was created
3901  * @addr: The DMA address
3902  * @size: The size of the region in bytes
3903  * @direction: The direction of the DMA
3904  */
3905 static inline void ib_dma_unmap_page(struct ib_device *dev,
3906                                      u64 addr, size_t size,
3907                                      enum dma_data_direction direction)
3908 {
3909         dma_unmap_page(dev->dma_device, addr, size, direction);
3910 }
3911
3912 /**
3913  * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
3914  * @dev: The device for which the DMA addresses are to be created
3915  * @sg: The array of scatter/gather entries
3916  * @nents: The number of scatter/gather entries
3917  * @direction: The direction of the DMA
3918  */
3919 static inline int ib_dma_map_sg(struct ib_device *dev,
3920                                 struct scatterlist *sg, int nents,
3921                                 enum dma_data_direction direction)
3922 {
3923         return dma_map_sg(dev->dma_device, sg, nents, direction);
3924 }
3925
3926 /**
3927  * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
3928  * @dev: The device for which the DMA addresses were created
3929  * @sg: The array of scatter/gather entries
3930  * @nents: The number of scatter/gather entries
3931  * @direction: The direction of the DMA
3932  */
3933 static inline void ib_dma_unmap_sg(struct ib_device *dev,
3934                                    struct scatterlist *sg, int nents,
3935                                    enum dma_data_direction direction)
3936 {
3937         dma_unmap_sg(dev->dma_device, sg, nents, direction);
3938 }
3939
3940 static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
3941                                       struct scatterlist *sg, int nents,
3942                                       enum dma_data_direction direction,
3943                                       unsigned long dma_attrs)
3944 {
3945         return dma_map_sg_attrs(dev->dma_device, sg, nents, direction,
3946                                 dma_attrs);
3947 }
3948
3949 static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
3950                                          struct scatterlist *sg, int nents,
3951                                          enum dma_data_direction direction,
3952                                          unsigned long dma_attrs)
3953 {
3954         dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, dma_attrs);
3955 }
3956
3957 /**
3958  * ib_dma_max_seg_size - Return the size limit of a single DMA transfer
3959  * @dev: The device to query
3960  *
3961  * The returned value represents a size in bytes.
3962  */
3963 static inline unsigned int ib_dma_max_seg_size(struct ib_device *dev)
3964 {
3965         struct device_dma_parameters *p = dev->dma_device->dma_parms;
3966
3967         return p ? p->max_segment_size : UINT_MAX;
3968 }
3969
3970 /**
3971  * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
3972  * @dev: The device for which the DMA address was created
3973  * @addr: The DMA address
3974  * @size: The size of the region in bytes
3975  * @dir: The direction of the DMA
3976  */
3977 static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
3978                                               u64 addr,
3979                                               size_t size,
3980                                               enum dma_data_direction dir)
3981 {
3982         dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
3983 }
3984
3985 /**
3986  * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
3987  * @dev: The device for which the DMA address was created
3988  * @addr: The DMA address
3989  * @size: The size of the region in bytes
3990  * @dir: The direction of the DMA
3991  */
3992 static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
3993                                                  u64 addr,
3994                                                  size_t size,
3995                                                  enum dma_data_direction dir)
3996 {
3997         dma_sync_single_for_device(dev->dma_device, addr, size, dir);
3998 }
3999
4000 /**
4001  * ib_dma_alloc_coherent - Allocate memory and map it for DMA
4002  * @dev: The device for which the DMA address is requested
4003  * @size: The size of the region to allocate in bytes
4004  * @dma_handle: A pointer for returning the DMA address of the region
4005  * @flag: memory allocator flags
4006  */
4007 static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
4008                                            size_t size,
4009                                            dma_addr_t *dma_handle,
4010                                            gfp_t flag)
4011 {
4012         return dma_alloc_coherent(dev->dma_device, size, dma_handle, flag);
4013 }
4014
4015 /**
4016  * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
4017  * @dev: The device for which the DMA addresses were allocated
4018  * @size: The size of the region
4019  * @cpu_addr: the address returned by ib_dma_alloc_coherent()
4020  * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
4021  */
4022 static inline void ib_dma_free_coherent(struct ib_device *dev,
4023                                         size_t size, void *cpu_addr,
4024                                         dma_addr_t dma_handle)
4025 {
4026         dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
4027 }
4028
4029 /**
4030  * ib_dereg_mr_user - Deregisters a memory region and removes it from the
4031  *   HCA translation table.
4032  * @mr: The memory region to deregister.
4033  * @udata: Valid user data or NULL for kernel object
4034  *
4035  * This function can fail, if the memory region has memory windows bound to it.
4036  */
4037 int ib_dereg_mr_user(struct ib_mr *mr, struct ib_udata *udata);
4038
4039 /**
4040  * ib_dereg_mr - Deregisters a kernel memory region and removes it from the
4041  *   HCA translation table.
4042  * @mr: The memory region to deregister.
4043  *
4044  * This function can fail, if the memory region has memory windows bound to it.
4045  *
4046  * NOTE: for user mr use ib_dereg_mr_user with valid udata!
4047  */
4048 static inline int ib_dereg_mr(struct ib_mr *mr)
4049 {
4050         return ib_dereg_mr_user(mr, NULL);
4051 }
4052
4053 struct ib_mr *ib_alloc_mr_user(struct ib_pd *pd, enum ib_mr_type mr_type,
4054                                u32 max_num_sg, struct ib_udata *udata);
4055
4056 static inline struct ib_mr *ib_alloc_mr(struct ib_pd *pd,
4057                                         enum ib_mr_type mr_type, u32 max_num_sg)
4058 {
4059         return ib_alloc_mr_user(pd, mr_type, max_num_sg, NULL);
4060 }
4061
4062 /**
4063  * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
4064  *   R_Key and L_Key.
4065  * @mr - struct ib_mr pointer to be updated.
4066  * @newkey - new key to be used.
4067  */
4068 static inline void ib_update_fast_reg_key(struct ib_mr *mr, u8 newkey)
4069 {
4070         mr->lkey = (mr->lkey & 0xffffff00) | newkey;
4071         mr->rkey = (mr->rkey & 0xffffff00) | newkey;
4072 }
4073
4074 /**
4075  * ib_inc_rkey - increments the key portion of the given rkey. Can be used
4076  * for calculating a new rkey for type 2 memory windows.
4077  * @rkey - the rkey to increment.
4078  */
4079 static inline u32 ib_inc_rkey(u32 rkey)
4080 {
4081         const u32 mask = 0x000000ff;
4082         return ((rkey + 1) & mask) | (rkey & ~mask);
4083 }
4084
4085 /**
4086  * ib_alloc_fmr - Allocates a unmapped fast memory region.
4087  * @pd: The protection domain associated with the unmapped region.
4088  * @mr_access_flags: Specifies the memory access rights.
4089  * @fmr_attr: Attributes of the unmapped region.
4090  *
4091  * A fast memory region must be mapped before it can be used as part of
4092  * a work request.
4093  */
4094 struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
4095                             int mr_access_flags,
4096                             struct ib_fmr_attr *fmr_attr);
4097
4098 /**
4099  * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
4100  * @fmr: The fast memory region to associate with the pages.
4101  * @page_list: An array of physical pages to map to the fast memory region.
4102  * @list_len: The number of pages in page_list.
4103  * @iova: The I/O virtual address to use with the mapped region.
4104  */
4105 static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
4106                                   u64 *page_list, int list_len,
4107                                   u64 iova)
4108 {
4109         return fmr->device->ops.map_phys_fmr(fmr, page_list, list_len, iova);
4110 }
4111
4112 /**
4113  * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
4114  * @fmr_list: A linked list of fast memory regions to unmap.
4115  */
4116 int ib_unmap_fmr(struct list_head *fmr_list);
4117
4118 /**
4119  * ib_dealloc_fmr - Deallocates a fast memory region.
4120  * @fmr: The fast memory region to deallocate.
4121  */
4122 int ib_dealloc_fmr(struct ib_fmr *fmr);
4123
4124 /**
4125  * ib_attach_mcast - Attaches the specified QP to a multicast group.
4126  * @qp: QP to attach to the multicast group.  The QP must be type
4127  *   IB_QPT_UD.
4128  * @gid: Multicast group GID.
4129  * @lid: Multicast group LID in host byte order.
4130  *
4131  * In order to send and receive multicast packets, subnet
4132  * administration must have created the multicast group and configured
4133  * the fabric appropriately.  The port associated with the specified
4134  * QP must also be a member of the multicast group.
4135  */
4136 int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
4137
4138 /**
4139  * ib_detach_mcast - Detaches the specified QP from a multicast group.
4140  * @qp: QP to detach from the multicast group.
4141  * @gid: Multicast group GID.
4142  * @lid: Multicast group LID in host byte order.
4143  */
4144 int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
4145
4146 /**
4147  * ib_alloc_xrcd - Allocates an XRC domain.
4148  * @device: The device on which to allocate the XRC domain.
4149  * @caller: Module name for kernel consumers
4150  */
4151 struct ib_xrcd *__ib_alloc_xrcd(struct ib_device *device, const char *caller);
4152 #define ib_alloc_xrcd(device) \
4153         __ib_alloc_xrcd((device), KBUILD_MODNAME)
4154
4155 /**
4156  * ib_dealloc_xrcd - Deallocates an XRC domain.
4157  * @xrcd: The XRC domain to deallocate.
4158  * @udata: Valid user data or NULL for kernel object
4159  */
4160 int ib_dealloc_xrcd(struct ib_xrcd *xrcd, struct ib_udata *udata);
4161
4162 static inline int ib_check_mr_access(int flags)
4163 {
4164         /*
4165          * Local write permission is required if remote write or
4166          * remote atomic permission is also requested.
4167          */
4168         if (flags & (IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_REMOTE_WRITE) &&
4169             !(flags & IB_ACCESS_LOCAL_WRITE))
4170                 return -EINVAL;
4171
4172         return 0;
4173 }
4174
4175 static inline bool ib_access_writable(int access_flags)
4176 {
4177         /*
4178          * We have writable memory backing the MR if any of the following
4179          * access flags are set.  "Local write" and "remote write" obviously
4180          * require write access.  "Remote atomic" can do things like fetch and
4181          * add, which will modify memory, and "MW bind" can change permissions
4182          * by binding a window.
4183          */
4184         return access_flags &
4185                 (IB_ACCESS_LOCAL_WRITE   | IB_ACCESS_REMOTE_WRITE |
4186                  IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_MW_BIND);
4187 }
4188
4189 /**
4190  * ib_check_mr_status: lightweight check of MR status.
4191  *     This routine may provide status checks on a selected
4192  *     ib_mr. first use is for signature status check.
4193  *
4194  * @mr: A memory region.
4195  * @check_mask: Bitmask of which checks to perform from
4196  *     ib_mr_status_check enumeration.
4197  * @mr_status: The container of relevant status checks.
4198  *     failed checks will be indicated in the status bitmask
4199  *     and the relevant info shall be in the error item.
4200  */
4201 int ib_check_mr_status(struct ib_mr *mr, u32 check_mask,
4202                        struct ib_mr_status *mr_status);
4203
4204 /**
4205  * ib_device_try_get: Hold a registration lock
4206  * device: The device to lock
4207  *
4208  * A device under an active registration lock cannot become unregistered. It
4209  * is only possible to obtain a registration lock on a device that is fully
4210  * registered, otherwise this function returns false.
4211  *
4212  * The registration lock is only necessary for actions which require the
4213  * device to still be registered. Uses that only require the device pointer to
4214  * be valid should use get_device(&ibdev->dev) to hold the memory.
4215  *
4216  */
4217 static inline bool ib_device_try_get(struct ib_device *dev)
4218 {
4219         return refcount_inc_not_zero(&dev->refcount);
4220 }
4221
4222 void ib_device_put(struct ib_device *device);
4223 struct ib_device *ib_device_get_by_netdev(struct net_device *ndev,
4224                                           enum rdma_driver_id driver_id);
4225 struct ib_device *ib_device_get_by_name(const char *name,
4226                                         enum rdma_driver_id driver_id);
4227 struct net_device *ib_get_net_dev_by_params(struct ib_device *dev, u8 port,
4228                                             u16 pkey, const union ib_gid *gid,
4229                                             const struct sockaddr *addr);
4230 int ib_device_set_netdev(struct ib_device *ib_dev, struct net_device *ndev,
4231                          unsigned int port);
4232 struct net_device *ib_device_netdev(struct ib_device *dev, u8 port);
4233
4234 struct ib_wq *ib_create_wq(struct ib_pd *pd,
4235                            struct ib_wq_init_attr *init_attr);
4236 int ib_destroy_wq(struct ib_wq *wq, struct ib_udata *udata);
4237 int ib_modify_wq(struct ib_wq *wq, struct ib_wq_attr *attr,
4238                  u32 wq_attr_mask);
4239 struct ib_rwq_ind_table *ib_create_rwq_ind_table(struct ib_device *device,
4240                                                  struct ib_rwq_ind_table_init_attr*
4241                                                  wq_ind_table_init_attr);
4242 int ib_destroy_rwq_ind_table(struct ib_rwq_ind_table *wq_ind_table);
4243
4244 int ib_map_mr_sg(struct ib_mr *mr, struct scatterlist *sg, int sg_nents,
4245                  unsigned int *sg_offset, unsigned int page_size);
4246
4247 static inline int
4248 ib_map_mr_sg_zbva(struct ib_mr *mr, struct scatterlist *sg, int sg_nents,
4249                   unsigned int *sg_offset, unsigned int page_size)
4250 {
4251         int n;
4252
4253         n = ib_map_mr_sg(mr, sg, sg_nents, sg_offset, page_size);
4254         mr->iova = 0;
4255
4256         return n;
4257 }
4258
4259 int ib_sg_to_pages(struct ib_mr *mr, struct scatterlist *sgl, int sg_nents,
4260                 unsigned int *sg_offset, int (*set_page)(struct ib_mr *, u64));
4261
4262 void ib_drain_rq(struct ib_qp *qp);
4263 void ib_drain_sq(struct ib_qp *qp);
4264 void ib_drain_qp(struct ib_qp *qp);
4265
4266 int ib_get_eth_speed(struct ib_device *dev, u8 port_num, u8 *speed, u8 *width);
4267
4268 static inline u8 *rdma_ah_retrieve_dmac(struct rdma_ah_attr *attr)
4269 {
4270         if (attr->type == RDMA_AH_ATTR_TYPE_ROCE)
4271                 return attr->roce.dmac;
4272         return NULL;
4273 }
4274
4275 static inline void rdma_ah_set_dlid(struct rdma_ah_attr *attr, u32 dlid)
4276 {
4277         if (attr->type == RDMA_AH_ATTR_TYPE_IB)
4278                 attr->ib.dlid = (u16)dlid;
4279         else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
4280                 attr->opa.dlid = dlid;
4281 }
4282
4283 static inline u32 rdma_ah_get_dlid(const struct rdma_ah_attr *attr)
4284 {
4285         if (attr->type == RDMA_AH_ATTR_TYPE_IB)
4286                 return attr->ib.dlid;
4287         else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
4288                 return attr->opa.dlid;
4289         return 0;
4290 }
4291
4292 static inline void rdma_ah_set_sl(struct rdma_ah_attr *attr, u8 sl)
4293 {
4294         attr->sl = sl;
4295 }
4296
4297 static inline u8 rdma_ah_get_sl(const struct rdma_ah_attr *attr)
4298 {
4299         return attr->sl;
4300 }
4301
4302 static inline void rdma_ah_set_path_bits(struct rdma_ah_attr *attr,
4303                                          u8 src_path_bits)
4304 {
4305         if (attr->type == RDMA_AH_ATTR_TYPE_IB)
4306                 attr->ib.src_path_bits = src_path_bits;
4307         else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
4308                 attr->opa.src_path_bits = src_path_bits;
4309 }
4310
4311 static inline u8 rdma_ah_get_path_bits(const struct rdma_ah_attr *attr)
4312 {
4313         if (attr->type == RDMA_AH_ATTR_TYPE_IB)
4314                 return attr->ib.src_path_bits;
4315         else if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
4316                 return attr->opa.src_path_bits;
4317         return 0;
4318 }
4319
4320 static inline void rdma_ah_set_make_grd(struct rdma_ah_attr *attr,
4321                                         bool make_grd)
4322 {
4323         if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
4324                 attr->opa.make_grd = make_grd;
4325 }
4326
4327 static inline bool rdma_ah_get_make_grd(const struct rdma_ah_attr *attr)
4328 {
4329         if (attr->type == RDMA_AH_ATTR_TYPE_OPA)
4330                 return attr->opa.make_grd;
4331         return false;
4332 }
4333
4334 static inline void rdma_ah_set_port_num(struct rdma_ah_attr *attr, u8 port_num)
4335 {
4336         attr->port_num = port_num;
4337 }
4338
4339 static inline u8 rdma_ah_get_port_num(const struct rdma_ah_attr *attr)
4340 {
4341         return attr->port_num;
4342 }
4343
4344 static inline void rdma_ah_set_static_rate(struct rdma_ah_attr *attr,
4345                                            u8 static_rate)
4346 {
4347         attr->static_rate = static_rate;
4348 }
4349
4350 static inline u8 rdma_ah_get_static_rate(const struct rdma_ah_attr *attr)
4351 {
4352         return attr->static_rate;
4353 }
4354
4355 static inline void rdma_ah_set_ah_flags(struct rdma_ah_attr *attr,
4356                                         enum ib_ah_flags flag)
4357 {
4358         attr->ah_flags = flag;
4359 }
4360
4361 static inline enum ib_ah_flags
4362                 rdma_ah_get_ah_flags(const struct rdma_ah_attr *attr)
4363 {
4364         return attr->ah_flags;
4365 }
4366
4367 static inline const struct ib_global_route
4368                 *rdma_ah_read_grh(const struct rdma_ah_attr *attr)
4369 {
4370         return &attr->grh;
4371 }
4372
4373 /*To retrieve and modify the grh */
4374 static inline struct ib_global_route
4375                 *rdma_ah_retrieve_grh(struct rdma_ah_attr *attr)
4376 {
4377         return &attr->grh;
4378 }
4379
4380 static inline void rdma_ah_set_dgid_raw(struct rdma_ah_attr *attr, void *dgid)
4381 {
4382         struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
4383
4384         memcpy(grh->dgid.raw, dgid, sizeof(grh->dgid));
4385 }
4386
4387 static inline void rdma_ah_set_subnet_prefix(struct rdma_ah_attr *attr,
4388                                              __be64 prefix)
4389 {
4390         struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
4391
4392         grh->dgid.global.subnet_prefix = prefix;
4393 }
4394
4395 static inline void rdma_ah_set_interface_id(struct rdma_ah_attr *attr,
4396                                             __be64 if_id)
4397 {
4398         struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
4399
4400         grh->dgid.global.interface_id = if_id;
4401 }
4402
4403 static inline void rdma_ah_set_grh(struct rdma_ah_attr *attr,
4404                                    union ib_gid *dgid, u32 flow_label,
4405                                    u8 sgid_index, u8 hop_limit,
4406                                    u8 traffic_class)
4407 {
4408         struct ib_global_route *grh = rdma_ah_retrieve_grh(attr);
4409
4410         attr->ah_flags = IB_AH_GRH;
4411         if (dgid)
4412                 grh->dgid = *dgid;
4413         grh->flow_label = flow_label;
4414         grh->sgid_index = sgid_index;
4415         grh->hop_limit = hop_limit;
4416         grh->traffic_class = traffic_class;
4417         grh->sgid_attr = NULL;
4418 }
4419
4420 void rdma_destroy_ah_attr(struct rdma_ah_attr *ah_attr);
4421 void rdma_move_grh_sgid_attr(struct rdma_ah_attr *attr, union ib_gid *dgid,
4422                              u32 flow_label, u8 hop_limit, u8 traffic_class,
4423                              const struct ib_gid_attr *sgid_attr);
4424 void rdma_copy_ah_attr(struct rdma_ah_attr *dest,
4425                        const struct rdma_ah_attr *src);
4426 void rdma_replace_ah_attr(struct rdma_ah_attr *old,
4427                           const struct rdma_ah_attr *new);
4428 void rdma_move_ah_attr(struct rdma_ah_attr *dest, struct rdma_ah_attr *src);
4429
4430 /**
4431  * rdma_ah_find_type - Return address handle type.
4432  *
4433  * @dev: Device to be checked
4434  * @port_num: Port number
4435  */
4436 static inline enum rdma_ah_attr_type rdma_ah_find_type(struct ib_device *dev,
4437                                                        u8 port_num)
4438 {
4439         if (rdma_protocol_roce(dev, port_num))
4440                 return RDMA_AH_ATTR_TYPE_ROCE;
4441         if (rdma_protocol_ib(dev, port_num)) {
4442                 if (rdma_cap_opa_ah(dev, port_num))
4443                         return RDMA_AH_ATTR_TYPE_OPA;
4444                 return RDMA_AH_ATTR_TYPE_IB;
4445         }
4446
4447         return RDMA_AH_ATTR_TYPE_UNDEFINED;
4448 }
4449
4450 /**
4451  * ib_lid_cpu16 - Return lid in 16bit CPU encoding.
4452  *     In the current implementation the only way to get
4453  *     get the 32bit lid is from other sources for OPA.
4454  *     For IB, lids will always be 16bits so cast the
4455  *     value accordingly.
4456  *
4457  * @lid: A 32bit LID
4458  */
4459 static inline u16 ib_lid_cpu16(u32 lid)
4460 {
4461         WARN_ON_ONCE(lid & 0xFFFF0000);
4462         return (u16)lid;
4463 }
4464
4465 /**
4466  * ib_lid_be16 - Return lid in 16bit BE encoding.
4467  *
4468  * @lid: A 32bit LID
4469  */
4470 static inline __be16 ib_lid_be16(u32 lid)
4471 {
4472         WARN_ON_ONCE(lid & 0xFFFF0000);
4473         return cpu_to_be16((u16)lid);
4474 }
4475
4476 /**
4477  * ib_get_vector_affinity - Get the affinity mappings of a given completion
4478  *   vector
4479  * @device:         the rdma device
4480  * @comp_vector:    index of completion vector
4481  *
4482  * Returns NULL on failure, otherwise a corresponding cpu map of the
4483  * completion vector (returns all-cpus map if the device driver doesn't
4484  * implement get_vector_affinity).
4485  */
4486 static inline const struct cpumask *
4487 ib_get_vector_affinity(struct ib_device *device, int comp_vector)
4488 {
4489         if (comp_vector < 0 || comp_vector >= device->num_comp_vectors ||
4490             !device->ops.get_vector_affinity)
4491                 return NULL;
4492
4493         return device->ops.get_vector_affinity(device, comp_vector);
4494
4495 }
4496
4497 /**
4498  * rdma_roce_rescan_device - Rescan all of the network devices in the system
4499  * and add their gids, as needed, to the relevant RoCE devices.
4500  *
4501  * @device:         the rdma device
4502  */
4503 void rdma_roce_rescan_device(struct ib_device *ibdev);
4504
4505 struct ib_ucontext *ib_uverbs_get_ucontext_file(struct ib_uverbs_file *ufile);
4506
4507 int uverbs_destroy_def_handler(struct uverbs_attr_bundle *attrs);
4508
4509 struct net_device *rdma_alloc_netdev(struct ib_device *device, u8 port_num,
4510                                      enum rdma_netdev_t type, const char *name,
4511                                      unsigned char name_assign_type,
4512                                      void (*setup)(struct net_device *));
4513
4514 int rdma_init_netdev(struct ib_device *device, u8 port_num,
4515                      enum rdma_netdev_t type, const char *name,
4516                      unsigned char name_assign_type,
4517                      void (*setup)(struct net_device *),
4518                      struct net_device *netdev);
4519
4520 /**
4521  * rdma_set_device_sysfs_group - Set device attributes group to have
4522  *                               driver specific sysfs entries at
4523  *                               for infiniband class.
4524  *
4525  * @device:     device pointer for which attributes to be created
4526  * @group:      Pointer to group which should be added when device
4527  *              is registered with sysfs.
4528  * rdma_set_device_sysfs_group() allows existing drivers to expose one
4529  * group per device to have sysfs attributes.
4530  *
4531  * NOTE: New drivers should not make use of this API; instead new device
4532  * parameter should be exposed via netlink command. This API and mechanism
4533  * exist only for existing drivers.
4534  */
4535 static inline void
4536 rdma_set_device_sysfs_group(struct ib_device *dev,
4537                             const struct attribute_group *group)
4538 {
4539         dev->groups[1] = group;
4540 }
4541
4542 /**
4543  * rdma_device_to_ibdev - Get ib_device pointer from device pointer
4544  *
4545  * @device:     device pointer for which ib_device pointer to retrieve
4546  *
4547  * rdma_device_to_ibdev() retrieves ib_device pointer from device.
4548  *
4549  */
4550 static inline struct ib_device *rdma_device_to_ibdev(struct device *device)
4551 {
4552         struct ib_core_device *coredev =
4553                 container_of(device, struct ib_core_device, dev);
4554
4555         return coredev->owner;
4556 }
4557
4558 /**
4559  * rdma_device_to_drv_device - Helper macro to reach back to driver's
4560  *                             ib_device holder structure from device pointer.
4561  *
4562  * NOTE: New drivers should not make use of this API; This API is only for
4563  * existing drivers who have exposed sysfs entries using
4564  * rdma_set_device_sysfs_group().
4565  */
4566 #define rdma_device_to_drv_device(dev, drv_dev_struct, ibdev_member)           \
4567         container_of(rdma_device_to_ibdev(dev), drv_dev_struct, ibdev_member)
4568
4569 bool rdma_dev_access_netns(const struct ib_device *device,
4570                            const struct net *net);
4571 #endif /* IB_VERBS_H */