IB/core: Remove overload in ib_sg_dma*
[linux.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/mm.h>
45 #include <linux/dma-mapping.h>
46 #include <linux/kref.h>
47 #include <linux/list.h>
48 #include <linux/rwsem.h>
49 #include <linux/scatterlist.h>
50 #include <linux/workqueue.h>
51 #include <uapi/linux/if_ether.h>
52
53 #include <linux/atomic.h>
54 #include <asm/uaccess.h>
55
56 extern struct workqueue_struct *ib_wq;
57
58 union ib_gid {
59         u8      raw[16];
60         struct {
61                 __be64  subnet_prefix;
62                 __be64  interface_id;
63         } global;
64 };
65
66 enum rdma_node_type {
67         /* IB values map to NodeInfo:NodeType. */
68         RDMA_NODE_IB_CA         = 1,
69         RDMA_NODE_IB_SWITCH,
70         RDMA_NODE_IB_ROUTER,
71         RDMA_NODE_RNIC,
72         RDMA_NODE_USNIC,
73         RDMA_NODE_USNIC_UDP,
74 };
75
76 enum rdma_transport_type {
77         RDMA_TRANSPORT_IB,
78         RDMA_TRANSPORT_IWARP,
79         RDMA_TRANSPORT_USNIC,
80         RDMA_TRANSPORT_USNIC_UDP
81 };
82
83 enum rdma_transport_type
84 rdma_node_get_transport(enum rdma_node_type node_type) __attribute_const__;
85
86 enum rdma_link_layer {
87         IB_LINK_LAYER_UNSPECIFIED,
88         IB_LINK_LAYER_INFINIBAND,
89         IB_LINK_LAYER_ETHERNET,
90 };
91
92 enum ib_device_cap_flags {
93         IB_DEVICE_RESIZE_MAX_WR         = 1,
94         IB_DEVICE_BAD_PKEY_CNTR         = (1<<1),
95         IB_DEVICE_BAD_QKEY_CNTR         = (1<<2),
96         IB_DEVICE_RAW_MULTI             = (1<<3),
97         IB_DEVICE_AUTO_PATH_MIG         = (1<<4),
98         IB_DEVICE_CHANGE_PHY_PORT       = (1<<5),
99         IB_DEVICE_UD_AV_PORT_ENFORCE    = (1<<6),
100         IB_DEVICE_CURR_QP_STATE_MOD     = (1<<7),
101         IB_DEVICE_SHUTDOWN_PORT         = (1<<8),
102         IB_DEVICE_INIT_TYPE             = (1<<9),
103         IB_DEVICE_PORT_ACTIVE_EVENT     = (1<<10),
104         IB_DEVICE_SYS_IMAGE_GUID        = (1<<11),
105         IB_DEVICE_RC_RNR_NAK_GEN        = (1<<12),
106         IB_DEVICE_SRQ_RESIZE            = (1<<13),
107         IB_DEVICE_N_NOTIFY_CQ           = (1<<14),
108         IB_DEVICE_LOCAL_DMA_LKEY        = (1<<15),
109         IB_DEVICE_RESERVED              = (1<<16), /* old SEND_W_INV */
110         IB_DEVICE_MEM_WINDOW            = (1<<17),
111         /*
112          * Devices should set IB_DEVICE_UD_IP_SUM if they support
113          * insertion of UDP and TCP checksum on outgoing UD IPoIB
114          * messages and can verify the validity of checksum for
115          * incoming messages.  Setting this flag implies that the
116          * IPoIB driver may set NETIF_F_IP_CSUM for datagram mode.
117          */
118         IB_DEVICE_UD_IP_CSUM            = (1<<18),
119         IB_DEVICE_UD_TSO                = (1<<19),
120         IB_DEVICE_XRC                   = (1<<20),
121         IB_DEVICE_MEM_MGT_EXTENSIONS    = (1<<21),
122         IB_DEVICE_BLOCK_MULTICAST_LOOPBACK = (1<<22),
123         IB_DEVICE_MEM_WINDOW_TYPE_2A    = (1<<23),
124         IB_DEVICE_MEM_WINDOW_TYPE_2B    = (1<<24),
125         IB_DEVICE_MANAGED_FLOW_STEERING = (1<<29)
126 };
127
128 enum ib_atomic_cap {
129         IB_ATOMIC_NONE,
130         IB_ATOMIC_HCA,
131         IB_ATOMIC_GLOB
132 };
133
134 struct ib_device_attr {
135         u64                     fw_ver;
136         __be64                  sys_image_guid;
137         u64                     max_mr_size;
138         u64                     page_size_cap;
139         u32                     vendor_id;
140         u32                     vendor_part_id;
141         u32                     hw_ver;
142         int                     max_qp;
143         int                     max_qp_wr;
144         int                     device_cap_flags;
145         int                     max_sge;
146         int                     max_sge_rd;
147         int                     max_cq;
148         int                     max_cqe;
149         int                     max_mr;
150         int                     max_pd;
151         int                     max_qp_rd_atom;
152         int                     max_ee_rd_atom;
153         int                     max_res_rd_atom;
154         int                     max_qp_init_rd_atom;
155         int                     max_ee_init_rd_atom;
156         enum ib_atomic_cap      atomic_cap;
157         enum ib_atomic_cap      masked_atomic_cap;
158         int                     max_ee;
159         int                     max_rdd;
160         int                     max_mw;
161         int                     max_raw_ipv6_qp;
162         int                     max_raw_ethy_qp;
163         int                     max_mcast_grp;
164         int                     max_mcast_qp_attach;
165         int                     max_total_mcast_qp_attach;
166         int                     max_ah;
167         int                     max_fmr;
168         int                     max_map_per_fmr;
169         int                     max_srq;
170         int                     max_srq_wr;
171         int                     max_srq_sge;
172         unsigned int            max_fast_reg_page_list_len;
173         u16                     max_pkeys;
174         u8                      local_ca_ack_delay;
175 };
176
177 enum ib_mtu {
178         IB_MTU_256  = 1,
179         IB_MTU_512  = 2,
180         IB_MTU_1024 = 3,
181         IB_MTU_2048 = 4,
182         IB_MTU_4096 = 5
183 };
184
185 static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
186 {
187         switch (mtu) {
188         case IB_MTU_256:  return  256;
189         case IB_MTU_512:  return  512;
190         case IB_MTU_1024: return 1024;
191         case IB_MTU_2048: return 2048;
192         case IB_MTU_4096: return 4096;
193         default:          return -1;
194         }
195 }
196
197 enum ib_port_state {
198         IB_PORT_NOP             = 0,
199         IB_PORT_DOWN            = 1,
200         IB_PORT_INIT            = 2,
201         IB_PORT_ARMED           = 3,
202         IB_PORT_ACTIVE          = 4,
203         IB_PORT_ACTIVE_DEFER    = 5
204 };
205
206 enum ib_port_cap_flags {
207         IB_PORT_SM                              = 1 <<  1,
208         IB_PORT_NOTICE_SUP                      = 1 <<  2,
209         IB_PORT_TRAP_SUP                        = 1 <<  3,
210         IB_PORT_OPT_IPD_SUP                     = 1 <<  4,
211         IB_PORT_AUTO_MIGR_SUP                   = 1 <<  5,
212         IB_PORT_SL_MAP_SUP                      = 1 <<  6,
213         IB_PORT_MKEY_NVRAM                      = 1 <<  7,
214         IB_PORT_PKEY_NVRAM                      = 1 <<  8,
215         IB_PORT_LED_INFO_SUP                    = 1 <<  9,
216         IB_PORT_SM_DISABLED                     = 1 << 10,
217         IB_PORT_SYS_IMAGE_GUID_SUP              = 1 << 11,
218         IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP       = 1 << 12,
219         IB_PORT_EXTENDED_SPEEDS_SUP             = 1 << 14,
220         IB_PORT_CM_SUP                          = 1 << 16,
221         IB_PORT_SNMP_TUNNEL_SUP                 = 1 << 17,
222         IB_PORT_REINIT_SUP                      = 1 << 18,
223         IB_PORT_DEVICE_MGMT_SUP                 = 1 << 19,
224         IB_PORT_VENDOR_CLASS_SUP                = 1 << 20,
225         IB_PORT_DR_NOTICE_SUP                   = 1 << 21,
226         IB_PORT_CAP_MASK_NOTICE_SUP             = 1 << 22,
227         IB_PORT_BOOT_MGMT_SUP                   = 1 << 23,
228         IB_PORT_LINK_LATENCY_SUP                = 1 << 24,
229         IB_PORT_CLIENT_REG_SUP                  = 1 << 25,
230         IB_PORT_IP_BASED_GIDS                   = 1 << 26
231 };
232
233 enum ib_port_width {
234         IB_WIDTH_1X     = 1,
235         IB_WIDTH_4X     = 2,
236         IB_WIDTH_8X     = 4,
237         IB_WIDTH_12X    = 8
238 };
239
240 static inline int ib_width_enum_to_int(enum ib_port_width width)
241 {
242         switch (width) {
243         case IB_WIDTH_1X:  return  1;
244         case IB_WIDTH_4X:  return  4;
245         case IB_WIDTH_8X:  return  8;
246         case IB_WIDTH_12X: return 12;
247         default:          return -1;
248         }
249 }
250
251 enum ib_port_speed {
252         IB_SPEED_SDR    = 1,
253         IB_SPEED_DDR    = 2,
254         IB_SPEED_QDR    = 4,
255         IB_SPEED_FDR10  = 8,
256         IB_SPEED_FDR    = 16,
257         IB_SPEED_EDR    = 32
258 };
259
260 struct ib_protocol_stats {
261         /* TBD... */
262 };
263
264 struct iw_protocol_stats {
265         u64     ipInReceives;
266         u64     ipInHdrErrors;
267         u64     ipInTooBigErrors;
268         u64     ipInNoRoutes;
269         u64     ipInAddrErrors;
270         u64     ipInUnknownProtos;
271         u64     ipInTruncatedPkts;
272         u64     ipInDiscards;
273         u64     ipInDelivers;
274         u64     ipOutForwDatagrams;
275         u64     ipOutRequests;
276         u64     ipOutDiscards;
277         u64     ipOutNoRoutes;
278         u64     ipReasmTimeout;
279         u64     ipReasmReqds;
280         u64     ipReasmOKs;
281         u64     ipReasmFails;
282         u64     ipFragOKs;
283         u64     ipFragFails;
284         u64     ipFragCreates;
285         u64     ipInMcastPkts;
286         u64     ipOutMcastPkts;
287         u64     ipInBcastPkts;
288         u64     ipOutBcastPkts;
289
290         u64     tcpRtoAlgorithm;
291         u64     tcpRtoMin;
292         u64     tcpRtoMax;
293         u64     tcpMaxConn;
294         u64     tcpActiveOpens;
295         u64     tcpPassiveOpens;
296         u64     tcpAttemptFails;
297         u64     tcpEstabResets;
298         u64     tcpCurrEstab;
299         u64     tcpInSegs;
300         u64     tcpOutSegs;
301         u64     tcpRetransSegs;
302         u64     tcpInErrs;
303         u64     tcpOutRsts;
304 };
305
306 union rdma_protocol_stats {
307         struct ib_protocol_stats        ib;
308         struct iw_protocol_stats        iw;
309 };
310
311 struct ib_port_attr {
312         enum ib_port_state      state;
313         enum ib_mtu             max_mtu;
314         enum ib_mtu             active_mtu;
315         int                     gid_tbl_len;
316         u32                     port_cap_flags;
317         u32                     max_msg_sz;
318         u32                     bad_pkey_cntr;
319         u32                     qkey_viol_cntr;
320         u16                     pkey_tbl_len;
321         u16                     lid;
322         u16                     sm_lid;
323         u8                      lmc;
324         u8                      max_vl_num;
325         u8                      sm_sl;
326         u8                      subnet_timeout;
327         u8                      init_type_reply;
328         u8                      active_width;
329         u8                      active_speed;
330         u8                      phys_state;
331 };
332
333 enum ib_device_modify_flags {
334         IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
335         IB_DEVICE_MODIFY_NODE_DESC      = 1 << 1
336 };
337
338 struct ib_device_modify {
339         u64     sys_image_guid;
340         char    node_desc[64];
341 };
342
343 enum ib_port_modify_flags {
344         IB_PORT_SHUTDOWN                = 1,
345         IB_PORT_INIT_TYPE               = (1<<2),
346         IB_PORT_RESET_QKEY_CNTR         = (1<<3)
347 };
348
349 struct ib_port_modify {
350         u32     set_port_cap_mask;
351         u32     clr_port_cap_mask;
352         u8      init_type;
353 };
354
355 enum ib_event_type {
356         IB_EVENT_CQ_ERR,
357         IB_EVENT_QP_FATAL,
358         IB_EVENT_QP_REQ_ERR,
359         IB_EVENT_QP_ACCESS_ERR,
360         IB_EVENT_COMM_EST,
361         IB_EVENT_SQ_DRAINED,
362         IB_EVENT_PATH_MIG,
363         IB_EVENT_PATH_MIG_ERR,
364         IB_EVENT_DEVICE_FATAL,
365         IB_EVENT_PORT_ACTIVE,
366         IB_EVENT_PORT_ERR,
367         IB_EVENT_LID_CHANGE,
368         IB_EVENT_PKEY_CHANGE,
369         IB_EVENT_SM_CHANGE,
370         IB_EVENT_SRQ_ERR,
371         IB_EVENT_SRQ_LIMIT_REACHED,
372         IB_EVENT_QP_LAST_WQE_REACHED,
373         IB_EVENT_CLIENT_REREGISTER,
374         IB_EVENT_GID_CHANGE,
375 };
376
377 struct ib_event {
378         struct ib_device        *device;
379         union {
380                 struct ib_cq    *cq;
381                 struct ib_qp    *qp;
382                 struct ib_srq   *srq;
383                 u8              port_num;
384         } element;
385         enum ib_event_type      event;
386 };
387
388 struct ib_event_handler {
389         struct ib_device *device;
390         void            (*handler)(struct ib_event_handler *, struct ib_event *);
391         struct list_head  list;
392 };
393
394 #define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler)          \
395         do {                                                    \
396                 (_ptr)->device  = _device;                      \
397                 (_ptr)->handler = _handler;                     \
398                 INIT_LIST_HEAD(&(_ptr)->list);                  \
399         } while (0)
400
401 struct ib_global_route {
402         union ib_gid    dgid;
403         u32             flow_label;
404         u8              sgid_index;
405         u8              hop_limit;
406         u8              traffic_class;
407 };
408
409 struct ib_grh {
410         __be32          version_tclass_flow;
411         __be16          paylen;
412         u8              next_hdr;
413         u8              hop_limit;
414         union ib_gid    sgid;
415         union ib_gid    dgid;
416 };
417
418 enum {
419         IB_MULTICAST_QPN = 0xffffff
420 };
421
422 #define IB_LID_PERMISSIVE       cpu_to_be16(0xFFFF)
423
424 enum ib_ah_flags {
425         IB_AH_GRH       = 1
426 };
427
428 enum ib_rate {
429         IB_RATE_PORT_CURRENT = 0,
430         IB_RATE_2_5_GBPS = 2,
431         IB_RATE_5_GBPS   = 5,
432         IB_RATE_10_GBPS  = 3,
433         IB_RATE_20_GBPS  = 6,
434         IB_RATE_30_GBPS  = 4,
435         IB_RATE_40_GBPS  = 7,
436         IB_RATE_60_GBPS  = 8,
437         IB_RATE_80_GBPS  = 9,
438         IB_RATE_120_GBPS = 10,
439         IB_RATE_14_GBPS  = 11,
440         IB_RATE_56_GBPS  = 12,
441         IB_RATE_112_GBPS = 13,
442         IB_RATE_168_GBPS = 14,
443         IB_RATE_25_GBPS  = 15,
444         IB_RATE_100_GBPS = 16,
445         IB_RATE_200_GBPS = 17,
446         IB_RATE_300_GBPS = 18
447 };
448
449 /**
450  * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
451  * base rate of 2.5 Gbit/sec.  For example, IB_RATE_5_GBPS will be
452  * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
453  * @rate: rate to convert.
454  */
455 int ib_rate_to_mult(enum ib_rate rate) __attribute_const__;
456
457 /**
458  * ib_rate_to_mbps - Convert the IB rate enum to Mbps.
459  * For example, IB_RATE_2_5_GBPS will be converted to 2500.
460  * @rate: rate to convert.
461  */
462 int ib_rate_to_mbps(enum ib_rate rate) __attribute_const__;
463
464 /**
465  * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
466  * enum.
467  * @mult: multiple to convert.
468  */
469 enum ib_rate mult_to_ib_rate(int mult) __attribute_const__;
470
471 struct ib_ah_attr {
472         struct ib_global_route  grh;
473         u16                     dlid;
474         u8                      sl;
475         u8                      src_path_bits;
476         u8                      static_rate;
477         u8                      ah_flags;
478         u8                      port_num;
479         u8                      dmac[ETH_ALEN];
480         u16                     vlan_id;
481 };
482
483 enum ib_wc_status {
484         IB_WC_SUCCESS,
485         IB_WC_LOC_LEN_ERR,
486         IB_WC_LOC_QP_OP_ERR,
487         IB_WC_LOC_EEC_OP_ERR,
488         IB_WC_LOC_PROT_ERR,
489         IB_WC_WR_FLUSH_ERR,
490         IB_WC_MW_BIND_ERR,
491         IB_WC_BAD_RESP_ERR,
492         IB_WC_LOC_ACCESS_ERR,
493         IB_WC_REM_INV_REQ_ERR,
494         IB_WC_REM_ACCESS_ERR,
495         IB_WC_REM_OP_ERR,
496         IB_WC_RETRY_EXC_ERR,
497         IB_WC_RNR_RETRY_EXC_ERR,
498         IB_WC_LOC_RDD_VIOL_ERR,
499         IB_WC_REM_INV_RD_REQ_ERR,
500         IB_WC_REM_ABORT_ERR,
501         IB_WC_INV_EECN_ERR,
502         IB_WC_INV_EEC_STATE_ERR,
503         IB_WC_FATAL_ERR,
504         IB_WC_RESP_TIMEOUT_ERR,
505         IB_WC_GENERAL_ERR
506 };
507
508 enum ib_wc_opcode {
509         IB_WC_SEND,
510         IB_WC_RDMA_WRITE,
511         IB_WC_RDMA_READ,
512         IB_WC_COMP_SWAP,
513         IB_WC_FETCH_ADD,
514         IB_WC_BIND_MW,
515         IB_WC_LSO,
516         IB_WC_LOCAL_INV,
517         IB_WC_FAST_REG_MR,
518         IB_WC_MASKED_COMP_SWAP,
519         IB_WC_MASKED_FETCH_ADD,
520 /*
521  * Set value of IB_WC_RECV so consumers can test if a completion is a
522  * receive by testing (opcode & IB_WC_RECV).
523  */
524         IB_WC_RECV                      = 1 << 7,
525         IB_WC_RECV_RDMA_WITH_IMM
526 };
527
528 enum ib_wc_flags {
529         IB_WC_GRH               = 1,
530         IB_WC_WITH_IMM          = (1<<1),
531         IB_WC_WITH_INVALIDATE   = (1<<2),
532         IB_WC_IP_CSUM_OK        = (1<<3),
533         IB_WC_WITH_SMAC         = (1<<4),
534         IB_WC_WITH_VLAN         = (1<<5),
535 };
536
537 struct ib_wc {
538         u64                     wr_id;
539         enum ib_wc_status       status;
540         enum ib_wc_opcode       opcode;
541         u32                     vendor_err;
542         u32                     byte_len;
543         struct ib_qp           *qp;
544         union {
545                 __be32          imm_data;
546                 u32             invalidate_rkey;
547         } ex;
548         u32                     src_qp;
549         int                     wc_flags;
550         u16                     pkey_index;
551         u16                     slid;
552         u8                      sl;
553         u8                      dlid_path_bits;
554         u8                      port_num;       /* valid only for DR SMPs on switches */
555         u8                      smac[ETH_ALEN];
556         u16                     vlan_id;
557 };
558
559 enum ib_cq_notify_flags {
560         IB_CQ_SOLICITED                 = 1 << 0,
561         IB_CQ_NEXT_COMP                 = 1 << 1,
562         IB_CQ_SOLICITED_MASK            = IB_CQ_SOLICITED | IB_CQ_NEXT_COMP,
563         IB_CQ_REPORT_MISSED_EVENTS      = 1 << 2,
564 };
565
566 enum ib_srq_type {
567         IB_SRQT_BASIC,
568         IB_SRQT_XRC
569 };
570
571 enum ib_srq_attr_mask {
572         IB_SRQ_MAX_WR   = 1 << 0,
573         IB_SRQ_LIMIT    = 1 << 1,
574 };
575
576 struct ib_srq_attr {
577         u32     max_wr;
578         u32     max_sge;
579         u32     srq_limit;
580 };
581
582 struct ib_srq_init_attr {
583         void                  (*event_handler)(struct ib_event *, void *);
584         void                   *srq_context;
585         struct ib_srq_attr      attr;
586         enum ib_srq_type        srq_type;
587
588         union {
589                 struct {
590                         struct ib_xrcd *xrcd;
591                         struct ib_cq   *cq;
592                 } xrc;
593         } ext;
594 };
595
596 struct ib_qp_cap {
597         u32     max_send_wr;
598         u32     max_recv_wr;
599         u32     max_send_sge;
600         u32     max_recv_sge;
601         u32     max_inline_data;
602 };
603
604 enum ib_sig_type {
605         IB_SIGNAL_ALL_WR,
606         IB_SIGNAL_REQ_WR
607 };
608
609 enum ib_qp_type {
610         /*
611          * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
612          * here (and in that order) since the MAD layer uses them as
613          * indices into a 2-entry table.
614          */
615         IB_QPT_SMI,
616         IB_QPT_GSI,
617
618         IB_QPT_RC,
619         IB_QPT_UC,
620         IB_QPT_UD,
621         IB_QPT_RAW_IPV6,
622         IB_QPT_RAW_ETHERTYPE,
623         IB_QPT_RAW_PACKET = 8,
624         IB_QPT_XRC_INI = 9,
625         IB_QPT_XRC_TGT,
626         IB_QPT_MAX,
627         /* Reserve a range for qp types internal to the low level driver.
628          * These qp types will not be visible at the IB core layer, so the
629          * IB_QPT_MAX usages should not be affected in the core layer
630          */
631         IB_QPT_RESERVED1 = 0x1000,
632         IB_QPT_RESERVED2,
633         IB_QPT_RESERVED3,
634         IB_QPT_RESERVED4,
635         IB_QPT_RESERVED5,
636         IB_QPT_RESERVED6,
637         IB_QPT_RESERVED7,
638         IB_QPT_RESERVED8,
639         IB_QPT_RESERVED9,
640         IB_QPT_RESERVED10,
641 };
642
643 enum ib_qp_create_flags {
644         IB_QP_CREATE_IPOIB_UD_LSO               = 1 << 0,
645         IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK   = 1 << 1,
646         IB_QP_CREATE_NETIF_QP                   = 1 << 5,
647         /* reserve bits 26-31 for low level drivers' internal use */
648         IB_QP_CREATE_RESERVED_START             = 1 << 26,
649         IB_QP_CREATE_RESERVED_END               = 1 << 31,
650 };
651
652
653 /*
654  * Note: users may not call ib_close_qp or ib_destroy_qp from the event_handler
655  * callback to destroy the passed in QP.
656  */
657
658 struct ib_qp_init_attr {
659         void                  (*event_handler)(struct ib_event *, void *);
660         void                   *qp_context;
661         struct ib_cq           *send_cq;
662         struct ib_cq           *recv_cq;
663         struct ib_srq          *srq;
664         struct ib_xrcd         *xrcd;     /* XRC TGT QPs only */
665         struct ib_qp_cap        cap;
666         enum ib_sig_type        sq_sig_type;
667         enum ib_qp_type         qp_type;
668         enum ib_qp_create_flags create_flags;
669         u8                      port_num; /* special QP types only */
670 };
671
672 struct ib_qp_open_attr {
673         void                  (*event_handler)(struct ib_event *, void *);
674         void                   *qp_context;
675         u32                     qp_num;
676         enum ib_qp_type         qp_type;
677 };
678
679 enum ib_rnr_timeout {
680         IB_RNR_TIMER_655_36 =  0,
681         IB_RNR_TIMER_000_01 =  1,
682         IB_RNR_TIMER_000_02 =  2,
683         IB_RNR_TIMER_000_03 =  3,
684         IB_RNR_TIMER_000_04 =  4,
685         IB_RNR_TIMER_000_06 =  5,
686         IB_RNR_TIMER_000_08 =  6,
687         IB_RNR_TIMER_000_12 =  7,
688         IB_RNR_TIMER_000_16 =  8,
689         IB_RNR_TIMER_000_24 =  9,
690         IB_RNR_TIMER_000_32 = 10,
691         IB_RNR_TIMER_000_48 = 11,
692         IB_RNR_TIMER_000_64 = 12,
693         IB_RNR_TIMER_000_96 = 13,
694         IB_RNR_TIMER_001_28 = 14,
695         IB_RNR_TIMER_001_92 = 15,
696         IB_RNR_TIMER_002_56 = 16,
697         IB_RNR_TIMER_003_84 = 17,
698         IB_RNR_TIMER_005_12 = 18,
699         IB_RNR_TIMER_007_68 = 19,
700         IB_RNR_TIMER_010_24 = 20,
701         IB_RNR_TIMER_015_36 = 21,
702         IB_RNR_TIMER_020_48 = 22,
703         IB_RNR_TIMER_030_72 = 23,
704         IB_RNR_TIMER_040_96 = 24,
705         IB_RNR_TIMER_061_44 = 25,
706         IB_RNR_TIMER_081_92 = 26,
707         IB_RNR_TIMER_122_88 = 27,
708         IB_RNR_TIMER_163_84 = 28,
709         IB_RNR_TIMER_245_76 = 29,
710         IB_RNR_TIMER_327_68 = 30,
711         IB_RNR_TIMER_491_52 = 31
712 };
713
714 enum ib_qp_attr_mask {
715         IB_QP_STATE                     = 1,
716         IB_QP_CUR_STATE                 = (1<<1),
717         IB_QP_EN_SQD_ASYNC_NOTIFY       = (1<<2),
718         IB_QP_ACCESS_FLAGS              = (1<<3),
719         IB_QP_PKEY_INDEX                = (1<<4),
720         IB_QP_PORT                      = (1<<5),
721         IB_QP_QKEY                      = (1<<6),
722         IB_QP_AV                        = (1<<7),
723         IB_QP_PATH_MTU                  = (1<<8),
724         IB_QP_TIMEOUT                   = (1<<9),
725         IB_QP_RETRY_CNT                 = (1<<10),
726         IB_QP_RNR_RETRY                 = (1<<11),
727         IB_QP_RQ_PSN                    = (1<<12),
728         IB_QP_MAX_QP_RD_ATOMIC          = (1<<13),
729         IB_QP_ALT_PATH                  = (1<<14),
730         IB_QP_MIN_RNR_TIMER             = (1<<15),
731         IB_QP_SQ_PSN                    = (1<<16),
732         IB_QP_MAX_DEST_RD_ATOMIC        = (1<<17),
733         IB_QP_PATH_MIG_STATE            = (1<<18),
734         IB_QP_CAP                       = (1<<19),
735         IB_QP_DEST_QPN                  = (1<<20),
736         IB_QP_SMAC                      = (1<<21),
737         IB_QP_ALT_SMAC                  = (1<<22),
738         IB_QP_VID                       = (1<<23),
739         IB_QP_ALT_VID                   = (1<<24),
740 };
741
742 enum ib_qp_state {
743         IB_QPS_RESET,
744         IB_QPS_INIT,
745         IB_QPS_RTR,
746         IB_QPS_RTS,
747         IB_QPS_SQD,
748         IB_QPS_SQE,
749         IB_QPS_ERR
750 };
751
752 enum ib_mig_state {
753         IB_MIG_MIGRATED,
754         IB_MIG_REARM,
755         IB_MIG_ARMED
756 };
757
758 enum ib_mw_type {
759         IB_MW_TYPE_1 = 1,
760         IB_MW_TYPE_2 = 2
761 };
762
763 struct ib_qp_attr {
764         enum ib_qp_state        qp_state;
765         enum ib_qp_state        cur_qp_state;
766         enum ib_mtu             path_mtu;
767         enum ib_mig_state       path_mig_state;
768         u32                     qkey;
769         u32                     rq_psn;
770         u32                     sq_psn;
771         u32                     dest_qp_num;
772         int                     qp_access_flags;
773         struct ib_qp_cap        cap;
774         struct ib_ah_attr       ah_attr;
775         struct ib_ah_attr       alt_ah_attr;
776         u16                     pkey_index;
777         u16                     alt_pkey_index;
778         u8                      en_sqd_async_notify;
779         u8                      sq_draining;
780         u8                      max_rd_atomic;
781         u8                      max_dest_rd_atomic;
782         u8                      min_rnr_timer;
783         u8                      port_num;
784         u8                      timeout;
785         u8                      retry_cnt;
786         u8                      rnr_retry;
787         u8                      alt_port_num;
788         u8                      alt_timeout;
789         u8                      smac[ETH_ALEN];
790         u8                      alt_smac[ETH_ALEN];
791         u16                     vlan_id;
792         u16                     alt_vlan_id;
793 };
794
795 enum ib_wr_opcode {
796         IB_WR_RDMA_WRITE,
797         IB_WR_RDMA_WRITE_WITH_IMM,
798         IB_WR_SEND,
799         IB_WR_SEND_WITH_IMM,
800         IB_WR_RDMA_READ,
801         IB_WR_ATOMIC_CMP_AND_SWP,
802         IB_WR_ATOMIC_FETCH_AND_ADD,
803         IB_WR_LSO,
804         IB_WR_SEND_WITH_INV,
805         IB_WR_RDMA_READ_WITH_INV,
806         IB_WR_LOCAL_INV,
807         IB_WR_FAST_REG_MR,
808         IB_WR_MASKED_ATOMIC_CMP_AND_SWP,
809         IB_WR_MASKED_ATOMIC_FETCH_AND_ADD,
810         IB_WR_BIND_MW,
811         /* reserve values for low level drivers' internal use.
812          * These values will not be used at all in the ib core layer.
813          */
814         IB_WR_RESERVED1 = 0xf0,
815         IB_WR_RESERVED2,
816         IB_WR_RESERVED3,
817         IB_WR_RESERVED4,
818         IB_WR_RESERVED5,
819         IB_WR_RESERVED6,
820         IB_WR_RESERVED7,
821         IB_WR_RESERVED8,
822         IB_WR_RESERVED9,
823         IB_WR_RESERVED10,
824 };
825
826 enum ib_send_flags {
827         IB_SEND_FENCE           = 1,
828         IB_SEND_SIGNALED        = (1<<1),
829         IB_SEND_SOLICITED       = (1<<2),
830         IB_SEND_INLINE          = (1<<3),
831         IB_SEND_IP_CSUM         = (1<<4),
832
833         /* reserve bits 26-31 for low level drivers' internal use */
834         IB_SEND_RESERVED_START  = (1 << 26),
835         IB_SEND_RESERVED_END    = (1 << 31),
836 };
837
838 struct ib_sge {
839         u64     addr;
840         u32     length;
841         u32     lkey;
842 };
843
844 struct ib_fast_reg_page_list {
845         struct ib_device       *device;
846         u64                    *page_list;
847         unsigned int            max_page_list_len;
848 };
849
850 /**
851  * struct ib_mw_bind_info - Parameters for a memory window bind operation.
852  * @mr: A memory region to bind the memory window to.
853  * @addr: The address where the memory window should begin.
854  * @length: The length of the memory window, in bytes.
855  * @mw_access_flags: Access flags from enum ib_access_flags for the window.
856  *
857  * This struct contains the shared parameters for type 1 and type 2
858  * memory window bind operations.
859  */
860 struct ib_mw_bind_info {
861         struct ib_mr   *mr;
862         u64             addr;
863         u64             length;
864         int             mw_access_flags;
865 };
866
867 struct ib_send_wr {
868         struct ib_send_wr      *next;
869         u64                     wr_id;
870         struct ib_sge          *sg_list;
871         int                     num_sge;
872         enum ib_wr_opcode       opcode;
873         int                     send_flags;
874         union {
875                 __be32          imm_data;
876                 u32             invalidate_rkey;
877         } ex;
878         union {
879                 struct {
880                         u64     remote_addr;
881                         u32     rkey;
882                 } rdma;
883                 struct {
884                         u64     remote_addr;
885                         u64     compare_add;
886                         u64     swap;
887                         u64     compare_add_mask;
888                         u64     swap_mask;
889                         u32     rkey;
890                 } atomic;
891                 struct {
892                         struct ib_ah *ah;
893                         void   *header;
894                         int     hlen;
895                         int     mss;
896                         u32     remote_qpn;
897                         u32     remote_qkey;
898                         u16     pkey_index; /* valid for GSI only */
899                         u8      port_num;   /* valid for DR SMPs on switch only */
900                 } ud;
901                 struct {
902                         u64                             iova_start;
903                         struct ib_fast_reg_page_list   *page_list;
904                         unsigned int                    page_shift;
905                         unsigned int                    page_list_len;
906                         u32                             length;
907                         int                             access_flags;
908                         u32                             rkey;
909                 } fast_reg;
910                 struct {
911                         struct ib_mw            *mw;
912                         /* The new rkey for the memory window. */
913                         u32                      rkey;
914                         struct ib_mw_bind_info   bind_info;
915                 } bind_mw;
916         } wr;
917         u32                     xrc_remote_srq_num;     /* XRC TGT QPs only */
918 };
919
920 struct ib_recv_wr {
921         struct ib_recv_wr      *next;
922         u64                     wr_id;
923         struct ib_sge          *sg_list;
924         int                     num_sge;
925 };
926
927 enum ib_access_flags {
928         IB_ACCESS_LOCAL_WRITE   = 1,
929         IB_ACCESS_REMOTE_WRITE  = (1<<1),
930         IB_ACCESS_REMOTE_READ   = (1<<2),
931         IB_ACCESS_REMOTE_ATOMIC = (1<<3),
932         IB_ACCESS_MW_BIND       = (1<<4),
933         IB_ZERO_BASED           = (1<<5)
934 };
935
936 struct ib_phys_buf {
937         u64      addr;
938         u64      size;
939 };
940
941 struct ib_mr_attr {
942         struct ib_pd    *pd;
943         u64             device_virt_addr;
944         u64             size;
945         int             mr_access_flags;
946         u32             lkey;
947         u32             rkey;
948 };
949
950 enum ib_mr_rereg_flags {
951         IB_MR_REREG_TRANS       = 1,
952         IB_MR_REREG_PD          = (1<<1),
953         IB_MR_REREG_ACCESS      = (1<<2)
954 };
955
956 /**
957  * struct ib_mw_bind - Parameters for a type 1 memory window bind operation.
958  * @wr_id:      Work request id.
959  * @send_flags: Flags from ib_send_flags enum.
960  * @bind_info:  More parameters of the bind operation.
961  */
962 struct ib_mw_bind {
963         u64                    wr_id;
964         int                    send_flags;
965         struct ib_mw_bind_info bind_info;
966 };
967
968 struct ib_fmr_attr {
969         int     max_pages;
970         int     max_maps;
971         u8      page_shift;
972 };
973
974 struct ib_ucontext {
975         struct ib_device       *device;
976         struct list_head        pd_list;
977         struct list_head        mr_list;
978         struct list_head        mw_list;
979         struct list_head        cq_list;
980         struct list_head        qp_list;
981         struct list_head        srq_list;
982         struct list_head        ah_list;
983         struct list_head        xrcd_list;
984         struct list_head        rule_list;
985         int                     closing;
986 };
987
988 struct ib_uobject {
989         u64                     user_handle;    /* handle given to us by userspace */
990         struct ib_ucontext     *context;        /* associated user context */
991         void                   *object;         /* containing object */
992         struct list_head        list;           /* link to context's list */
993         int                     id;             /* index into kernel idr */
994         struct kref             ref;
995         struct rw_semaphore     mutex;          /* protects .live */
996         int                     live;
997 };
998
999 struct ib_udata {
1000         const void __user *inbuf;
1001         void __user *outbuf;
1002         size_t       inlen;
1003         size_t       outlen;
1004 };
1005
1006 struct ib_pd {
1007         struct ib_device       *device;
1008         struct ib_uobject      *uobject;
1009         atomic_t                usecnt; /* count all resources */
1010 };
1011
1012 struct ib_xrcd {
1013         struct ib_device       *device;
1014         atomic_t                usecnt; /* count all exposed resources */
1015         struct inode           *inode;
1016
1017         struct mutex            tgt_qp_mutex;
1018         struct list_head        tgt_qp_list;
1019 };
1020
1021 struct ib_ah {
1022         struct ib_device        *device;
1023         struct ib_pd            *pd;
1024         struct ib_uobject       *uobject;
1025 };
1026
1027 typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
1028
1029 struct ib_cq {
1030         struct ib_device       *device;
1031         struct ib_uobject      *uobject;
1032         ib_comp_handler         comp_handler;
1033         void                  (*event_handler)(struct ib_event *, void *);
1034         void                   *cq_context;
1035         int                     cqe;
1036         atomic_t                usecnt; /* count number of work queues */
1037 };
1038
1039 struct ib_srq {
1040         struct ib_device       *device;
1041         struct ib_pd           *pd;
1042         struct ib_uobject      *uobject;
1043         void                  (*event_handler)(struct ib_event *, void *);
1044         void                   *srq_context;
1045         enum ib_srq_type        srq_type;
1046         atomic_t                usecnt;
1047
1048         union {
1049                 struct {
1050                         struct ib_xrcd *xrcd;
1051                         struct ib_cq   *cq;
1052                         u32             srq_num;
1053                 } xrc;
1054         } ext;
1055 };
1056
1057 struct ib_qp {
1058         struct ib_device       *device;
1059         struct ib_pd           *pd;
1060         struct ib_cq           *send_cq;
1061         struct ib_cq           *recv_cq;
1062         struct ib_srq          *srq;
1063         struct ib_xrcd         *xrcd; /* XRC TGT QPs only */
1064         struct list_head        xrcd_list;
1065         /* count times opened, mcast attaches, flow attaches */
1066         atomic_t                usecnt;
1067         struct list_head        open_list;
1068         struct ib_qp           *real_qp;
1069         struct ib_uobject      *uobject;
1070         void                  (*event_handler)(struct ib_event *, void *);
1071         void                   *qp_context;
1072         u32                     qp_num;
1073         enum ib_qp_type         qp_type;
1074 };
1075
1076 struct ib_mr {
1077         struct ib_device  *device;
1078         struct ib_pd      *pd;
1079         struct ib_uobject *uobject;
1080         u32                lkey;
1081         u32                rkey;
1082         atomic_t           usecnt; /* count number of MWs */
1083 };
1084
1085 struct ib_mw {
1086         struct ib_device        *device;
1087         struct ib_pd            *pd;
1088         struct ib_uobject       *uobject;
1089         u32                     rkey;
1090         enum ib_mw_type         type;
1091 };
1092
1093 struct ib_fmr {
1094         struct ib_device        *device;
1095         struct ib_pd            *pd;
1096         struct list_head        list;
1097         u32                     lkey;
1098         u32                     rkey;
1099 };
1100
1101 /* Supported steering options */
1102 enum ib_flow_attr_type {
1103         /* steering according to rule specifications */
1104         IB_FLOW_ATTR_NORMAL             = 0x0,
1105         /* default unicast and multicast rule -
1106          * receive all Eth traffic which isn't steered to any QP
1107          */
1108         IB_FLOW_ATTR_ALL_DEFAULT        = 0x1,
1109         /* default multicast rule -
1110          * receive all Eth multicast traffic which isn't steered to any QP
1111          */
1112         IB_FLOW_ATTR_MC_DEFAULT         = 0x2,
1113         /* sniffer rule - receive all port traffic */
1114         IB_FLOW_ATTR_SNIFFER            = 0x3
1115 };
1116
1117 /* Supported steering header types */
1118 enum ib_flow_spec_type {
1119         /* L2 headers*/
1120         IB_FLOW_SPEC_ETH        = 0x20,
1121         IB_FLOW_SPEC_IB         = 0x22,
1122         /* L3 header*/
1123         IB_FLOW_SPEC_IPV4       = 0x30,
1124         /* L4 headers*/
1125         IB_FLOW_SPEC_TCP        = 0x40,
1126         IB_FLOW_SPEC_UDP        = 0x41
1127 };
1128 #define IB_FLOW_SPEC_LAYER_MASK 0xF0
1129 #define IB_FLOW_SPEC_SUPPORT_LAYERS 4
1130
1131 /* Flow steering rule priority is set according to it's domain.
1132  * Lower domain value means higher priority.
1133  */
1134 enum ib_flow_domain {
1135         IB_FLOW_DOMAIN_USER,
1136         IB_FLOW_DOMAIN_ETHTOOL,
1137         IB_FLOW_DOMAIN_RFS,
1138         IB_FLOW_DOMAIN_NIC,
1139         IB_FLOW_DOMAIN_NUM /* Must be last */
1140 };
1141
1142 struct ib_flow_eth_filter {
1143         u8      dst_mac[6];
1144         u8      src_mac[6];
1145         __be16  ether_type;
1146         __be16  vlan_tag;
1147 };
1148
1149 struct ib_flow_spec_eth {
1150         enum ib_flow_spec_type    type;
1151         u16                       size;
1152         struct ib_flow_eth_filter val;
1153         struct ib_flow_eth_filter mask;
1154 };
1155
1156 struct ib_flow_ib_filter {
1157         __be16 dlid;
1158         __u8   sl;
1159 };
1160
1161 struct ib_flow_spec_ib {
1162         enum ib_flow_spec_type   type;
1163         u16                      size;
1164         struct ib_flow_ib_filter val;
1165         struct ib_flow_ib_filter mask;
1166 };
1167
1168 struct ib_flow_ipv4_filter {
1169         __be32  src_ip;
1170         __be32  dst_ip;
1171 };
1172
1173 struct ib_flow_spec_ipv4 {
1174         enum ib_flow_spec_type     type;
1175         u16                        size;
1176         struct ib_flow_ipv4_filter val;
1177         struct ib_flow_ipv4_filter mask;
1178 };
1179
1180 struct ib_flow_tcp_udp_filter {
1181         __be16  dst_port;
1182         __be16  src_port;
1183 };
1184
1185 struct ib_flow_spec_tcp_udp {
1186         enum ib_flow_spec_type        type;
1187         u16                           size;
1188         struct ib_flow_tcp_udp_filter val;
1189         struct ib_flow_tcp_udp_filter mask;
1190 };
1191
1192 union ib_flow_spec {
1193         struct {
1194                 enum ib_flow_spec_type  type;
1195                 u16                     size;
1196         };
1197         struct ib_flow_spec_eth         eth;
1198         struct ib_flow_spec_ib          ib;
1199         struct ib_flow_spec_ipv4        ipv4;
1200         struct ib_flow_spec_tcp_udp     tcp_udp;
1201 };
1202
1203 struct ib_flow_attr {
1204         enum ib_flow_attr_type type;
1205         u16          size;
1206         u16          priority;
1207         u32          flags;
1208         u8           num_of_specs;
1209         u8           port;
1210         /* Following are the optional layers according to user request
1211          * struct ib_flow_spec_xxx
1212          * struct ib_flow_spec_yyy
1213          */
1214 };
1215
1216 struct ib_flow {
1217         struct ib_qp            *qp;
1218         struct ib_uobject       *uobject;
1219 };
1220
1221 struct ib_mad;
1222 struct ib_grh;
1223
1224 enum ib_process_mad_flags {
1225         IB_MAD_IGNORE_MKEY      = 1,
1226         IB_MAD_IGNORE_BKEY      = 2,
1227         IB_MAD_IGNORE_ALL       = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
1228 };
1229
1230 enum ib_mad_result {
1231         IB_MAD_RESULT_FAILURE  = 0,      /* (!SUCCESS is the important flag) */
1232         IB_MAD_RESULT_SUCCESS  = 1 << 0, /* MAD was successfully processed   */
1233         IB_MAD_RESULT_REPLY    = 1 << 1, /* Reply packet needs to be sent    */
1234         IB_MAD_RESULT_CONSUMED = 1 << 2  /* Packet consumed: stop processing */
1235 };
1236
1237 #define IB_DEVICE_NAME_MAX 64
1238
1239 struct ib_cache {
1240         rwlock_t                lock;
1241         struct ib_event_handler event_handler;
1242         struct ib_pkey_cache  **pkey_cache;
1243         struct ib_gid_cache   **gid_cache;
1244         u8                     *lmc_cache;
1245 };
1246
1247 struct ib_dma_mapping_ops {
1248         int             (*mapping_error)(struct ib_device *dev,
1249                                          u64 dma_addr);
1250         u64             (*map_single)(struct ib_device *dev,
1251                                       void *ptr, size_t size,
1252                                       enum dma_data_direction direction);
1253         void            (*unmap_single)(struct ib_device *dev,
1254                                         u64 addr, size_t size,
1255                                         enum dma_data_direction direction);
1256         u64             (*map_page)(struct ib_device *dev,
1257                                     struct page *page, unsigned long offset,
1258                                     size_t size,
1259                                     enum dma_data_direction direction);
1260         void            (*unmap_page)(struct ib_device *dev,
1261                                       u64 addr, size_t size,
1262                                       enum dma_data_direction direction);
1263         int             (*map_sg)(struct ib_device *dev,
1264                                   struct scatterlist *sg, int nents,
1265                                   enum dma_data_direction direction);
1266         void            (*unmap_sg)(struct ib_device *dev,
1267                                     struct scatterlist *sg, int nents,
1268                                     enum dma_data_direction direction);
1269         void            (*sync_single_for_cpu)(struct ib_device *dev,
1270                                                u64 dma_handle,
1271                                                size_t size,
1272                                                enum dma_data_direction dir);
1273         void            (*sync_single_for_device)(struct ib_device *dev,
1274                                                   u64 dma_handle,
1275                                                   size_t size,
1276                                                   enum dma_data_direction dir);
1277         void            *(*alloc_coherent)(struct ib_device *dev,
1278                                            size_t size,
1279                                            u64 *dma_handle,
1280                                            gfp_t flag);
1281         void            (*free_coherent)(struct ib_device *dev,
1282                                          size_t size, void *cpu_addr,
1283                                          u64 dma_handle);
1284 };
1285
1286 struct iw_cm_verbs;
1287
1288 struct ib_device {
1289         struct device                *dma_device;
1290
1291         char                          name[IB_DEVICE_NAME_MAX];
1292
1293         struct list_head              event_handler_list;
1294         spinlock_t                    event_handler_lock;
1295
1296         spinlock_t                    client_data_lock;
1297         struct list_head              core_list;
1298         struct list_head              client_data_list;
1299
1300         struct ib_cache               cache;
1301         int                          *pkey_tbl_len;
1302         int                          *gid_tbl_len;
1303
1304         int                           num_comp_vectors;
1305
1306         struct iw_cm_verbs           *iwcm;
1307
1308         int                        (*get_protocol_stats)(struct ib_device *device,
1309                                                          union rdma_protocol_stats *stats);
1310         int                        (*query_device)(struct ib_device *device,
1311                                                    struct ib_device_attr *device_attr);
1312         int                        (*query_port)(struct ib_device *device,
1313                                                  u8 port_num,
1314                                                  struct ib_port_attr *port_attr);
1315         enum rdma_link_layer       (*get_link_layer)(struct ib_device *device,
1316                                                      u8 port_num);
1317         int                        (*query_gid)(struct ib_device *device,
1318                                                 u8 port_num, int index,
1319                                                 union ib_gid *gid);
1320         int                        (*query_pkey)(struct ib_device *device,
1321                                                  u8 port_num, u16 index, u16 *pkey);
1322         int                        (*modify_device)(struct ib_device *device,
1323                                                     int device_modify_mask,
1324                                                     struct ib_device_modify *device_modify);
1325         int                        (*modify_port)(struct ib_device *device,
1326                                                   u8 port_num, int port_modify_mask,
1327                                                   struct ib_port_modify *port_modify);
1328         struct ib_ucontext *       (*alloc_ucontext)(struct ib_device *device,
1329                                                      struct ib_udata *udata);
1330         int                        (*dealloc_ucontext)(struct ib_ucontext *context);
1331         int                        (*mmap)(struct ib_ucontext *context,
1332                                            struct vm_area_struct *vma);
1333         struct ib_pd *             (*alloc_pd)(struct ib_device *device,
1334                                                struct ib_ucontext *context,
1335                                                struct ib_udata *udata);
1336         int                        (*dealloc_pd)(struct ib_pd *pd);
1337         struct ib_ah *             (*create_ah)(struct ib_pd *pd,
1338                                                 struct ib_ah_attr *ah_attr);
1339         int                        (*modify_ah)(struct ib_ah *ah,
1340                                                 struct ib_ah_attr *ah_attr);
1341         int                        (*query_ah)(struct ib_ah *ah,
1342                                                struct ib_ah_attr *ah_attr);
1343         int                        (*destroy_ah)(struct ib_ah *ah);
1344         struct ib_srq *            (*create_srq)(struct ib_pd *pd,
1345                                                  struct ib_srq_init_attr *srq_init_attr,
1346                                                  struct ib_udata *udata);
1347         int                        (*modify_srq)(struct ib_srq *srq,
1348                                                  struct ib_srq_attr *srq_attr,
1349                                                  enum ib_srq_attr_mask srq_attr_mask,
1350                                                  struct ib_udata *udata);
1351         int                        (*query_srq)(struct ib_srq *srq,
1352                                                 struct ib_srq_attr *srq_attr);
1353         int                        (*destroy_srq)(struct ib_srq *srq);
1354         int                        (*post_srq_recv)(struct ib_srq *srq,
1355                                                     struct ib_recv_wr *recv_wr,
1356                                                     struct ib_recv_wr **bad_recv_wr);
1357         struct ib_qp *             (*create_qp)(struct ib_pd *pd,
1358                                                 struct ib_qp_init_attr *qp_init_attr,
1359                                                 struct ib_udata *udata);
1360         int                        (*modify_qp)(struct ib_qp *qp,
1361                                                 struct ib_qp_attr *qp_attr,
1362                                                 int qp_attr_mask,
1363                                                 struct ib_udata *udata);
1364         int                        (*query_qp)(struct ib_qp *qp,
1365                                                struct ib_qp_attr *qp_attr,
1366                                                int qp_attr_mask,
1367                                                struct ib_qp_init_attr *qp_init_attr);
1368         int                        (*destroy_qp)(struct ib_qp *qp);
1369         int                        (*post_send)(struct ib_qp *qp,
1370                                                 struct ib_send_wr *send_wr,
1371                                                 struct ib_send_wr **bad_send_wr);
1372         int                        (*post_recv)(struct ib_qp *qp,
1373                                                 struct ib_recv_wr *recv_wr,
1374                                                 struct ib_recv_wr **bad_recv_wr);
1375         struct ib_cq *             (*create_cq)(struct ib_device *device, int cqe,
1376                                                 int comp_vector,
1377                                                 struct ib_ucontext *context,
1378                                                 struct ib_udata *udata);
1379         int                        (*modify_cq)(struct ib_cq *cq, u16 cq_count,
1380                                                 u16 cq_period);
1381         int                        (*destroy_cq)(struct ib_cq *cq);
1382         int                        (*resize_cq)(struct ib_cq *cq, int cqe,
1383                                                 struct ib_udata *udata);
1384         int                        (*poll_cq)(struct ib_cq *cq, int num_entries,
1385                                               struct ib_wc *wc);
1386         int                        (*peek_cq)(struct ib_cq *cq, int wc_cnt);
1387         int                        (*req_notify_cq)(struct ib_cq *cq,
1388                                                     enum ib_cq_notify_flags flags);
1389         int                        (*req_ncomp_notif)(struct ib_cq *cq,
1390                                                       int wc_cnt);
1391         struct ib_mr *             (*get_dma_mr)(struct ib_pd *pd,
1392                                                  int mr_access_flags);
1393         struct ib_mr *             (*reg_phys_mr)(struct ib_pd *pd,
1394                                                   struct ib_phys_buf *phys_buf_array,
1395                                                   int num_phys_buf,
1396                                                   int mr_access_flags,
1397                                                   u64 *iova_start);
1398         struct ib_mr *             (*reg_user_mr)(struct ib_pd *pd,
1399                                                   u64 start, u64 length,
1400                                                   u64 virt_addr,
1401                                                   int mr_access_flags,
1402                                                   struct ib_udata *udata);
1403         int                        (*query_mr)(struct ib_mr *mr,
1404                                                struct ib_mr_attr *mr_attr);
1405         int                        (*dereg_mr)(struct ib_mr *mr);
1406         struct ib_mr *             (*alloc_fast_reg_mr)(struct ib_pd *pd,
1407                                                int max_page_list_len);
1408         struct ib_fast_reg_page_list * (*alloc_fast_reg_page_list)(struct ib_device *device,
1409                                                                    int page_list_len);
1410         void                       (*free_fast_reg_page_list)(struct ib_fast_reg_page_list *page_list);
1411         int                        (*rereg_phys_mr)(struct ib_mr *mr,
1412                                                     int mr_rereg_mask,
1413                                                     struct ib_pd *pd,
1414                                                     struct ib_phys_buf *phys_buf_array,
1415                                                     int num_phys_buf,
1416                                                     int mr_access_flags,
1417                                                     u64 *iova_start);
1418         struct ib_mw *             (*alloc_mw)(struct ib_pd *pd,
1419                                                enum ib_mw_type type);
1420         int                        (*bind_mw)(struct ib_qp *qp,
1421                                               struct ib_mw *mw,
1422                                               struct ib_mw_bind *mw_bind);
1423         int                        (*dealloc_mw)(struct ib_mw *mw);
1424         struct ib_fmr *            (*alloc_fmr)(struct ib_pd *pd,
1425                                                 int mr_access_flags,
1426                                                 struct ib_fmr_attr *fmr_attr);
1427         int                        (*map_phys_fmr)(struct ib_fmr *fmr,
1428                                                    u64 *page_list, int list_len,
1429                                                    u64 iova);
1430         int                        (*unmap_fmr)(struct list_head *fmr_list);
1431         int                        (*dealloc_fmr)(struct ib_fmr *fmr);
1432         int                        (*attach_mcast)(struct ib_qp *qp,
1433                                                    union ib_gid *gid,
1434                                                    u16 lid);
1435         int                        (*detach_mcast)(struct ib_qp *qp,
1436                                                    union ib_gid *gid,
1437                                                    u16 lid);
1438         int                        (*process_mad)(struct ib_device *device,
1439                                                   int process_mad_flags,
1440                                                   u8 port_num,
1441                                                   struct ib_wc *in_wc,
1442                                                   struct ib_grh *in_grh,
1443                                                   struct ib_mad *in_mad,
1444                                                   struct ib_mad *out_mad);
1445         struct ib_xrcd *           (*alloc_xrcd)(struct ib_device *device,
1446                                                  struct ib_ucontext *ucontext,
1447                                                  struct ib_udata *udata);
1448         int                        (*dealloc_xrcd)(struct ib_xrcd *xrcd);
1449         struct ib_flow *           (*create_flow)(struct ib_qp *qp,
1450                                                   struct ib_flow_attr
1451                                                   *flow_attr,
1452                                                   int domain);
1453         int                        (*destroy_flow)(struct ib_flow *flow_id);
1454
1455         struct ib_dma_mapping_ops   *dma_ops;
1456
1457         struct module               *owner;
1458         struct device                dev;
1459         struct kobject               *ports_parent;
1460         struct list_head             port_list;
1461
1462         enum {
1463                 IB_DEV_UNINITIALIZED,
1464                 IB_DEV_REGISTERED,
1465                 IB_DEV_UNREGISTERED
1466         }                            reg_state;
1467
1468         int                          uverbs_abi_ver;
1469         u64                          uverbs_cmd_mask;
1470         u64                          uverbs_ex_cmd_mask;
1471
1472         char                         node_desc[64];
1473         __be64                       node_guid;
1474         u32                          local_dma_lkey;
1475         u8                           node_type;
1476         u8                           phys_port_cnt;
1477 };
1478
1479 struct ib_client {
1480         char  *name;
1481         void (*add)   (struct ib_device *);
1482         void (*remove)(struct ib_device *);
1483
1484         struct list_head list;
1485 };
1486
1487 struct ib_device *ib_alloc_device(size_t size);
1488 void ib_dealloc_device(struct ib_device *device);
1489
1490 int ib_register_device(struct ib_device *device,
1491                        int (*port_callback)(struct ib_device *,
1492                                             u8, struct kobject *));
1493 void ib_unregister_device(struct ib_device *device);
1494
1495 int ib_register_client   (struct ib_client *client);
1496 void ib_unregister_client(struct ib_client *client);
1497
1498 void *ib_get_client_data(struct ib_device *device, struct ib_client *client);
1499 void  ib_set_client_data(struct ib_device *device, struct ib_client *client,
1500                          void *data);
1501
1502 static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
1503 {
1504         return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
1505 }
1506
1507 static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
1508 {
1509         return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
1510 }
1511
1512 /**
1513  * ib_modify_qp_is_ok - Check that the supplied attribute mask
1514  * contains all required attributes and no attributes not allowed for
1515  * the given QP state transition.
1516  * @cur_state: Current QP state
1517  * @next_state: Next QP state
1518  * @type: QP type
1519  * @mask: Mask of supplied QP attributes
1520  * @ll : link layer of port
1521  *
1522  * This function is a helper function that a low-level driver's
1523  * modify_qp method can use to validate the consumer's input.  It
1524  * checks that cur_state and next_state are valid QP states, that a
1525  * transition from cur_state to next_state is allowed by the IB spec,
1526  * and that the attribute mask supplied is allowed for the transition.
1527  */
1528 int ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
1529                        enum ib_qp_type type, enum ib_qp_attr_mask mask,
1530                        enum rdma_link_layer ll);
1531
1532 int ib_register_event_handler  (struct ib_event_handler *event_handler);
1533 int ib_unregister_event_handler(struct ib_event_handler *event_handler);
1534 void ib_dispatch_event(struct ib_event *event);
1535
1536 int ib_query_device(struct ib_device *device,
1537                     struct ib_device_attr *device_attr);
1538
1539 int ib_query_port(struct ib_device *device,
1540                   u8 port_num, struct ib_port_attr *port_attr);
1541
1542 enum rdma_link_layer rdma_port_get_link_layer(struct ib_device *device,
1543                                                u8 port_num);
1544
1545 int ib_query_gid(struct ib_device *device,
1546                  u8 port_num, int index, union ib_gid *gid);
1547
1548 int ib_query_pkey(struct ib_device *device,
1549                   u8 port_num, u16 index, u16 *pkey);
1550
1551 int ib_modify_device(struct ib_device *device,
1552                      int device_modify_mask,
1553                      struct ib_device_modify *device_modify);
1554
1555 int ib_modify_port(struct ib_device *device,
1556                    u8 port_num, int port_modify_mask,
1557                    struct ib_port_modify *port_modify);
1558
1559 int ib_find_gid(struct ib_device *device, union ib_gid *gid,
1560                 u8 *port_num, u16 *index);
1561
1562 int ib_find_pkey(struct ib_device *device,
1563                  u8 port_num, u16 pkey, u16 *index);
1564
1565 /**
1566  * ib_alloc_pd - Allocates an unused protection domain.
1567  * @device: The device on which to allocate the protection domain.
1568  *
1569  * A protection domain object provides an association between QPs, shared
1570  * receive queues, address handles, memory regions, and memory windows.
1571  */
1572 struct ib_pd *ib_alloc_pd(struct ib_device *device);
1573
1574 /**
1575  * ib_dealloc_pd - Deallocates a protection domain.
1576  * @pd: The protection domain to deallocate.
1577  */
1578 int ib_dealloc_pd(struct ib_pd *pd);
1579
1580 /**
1581  * ib_create_ah - Creates an address handle for the given address vector.
1582  * @pd: The protection domain associated with the address handle.
1583  * @ah_attr: The attributes of the address vector.
1584  *
1585  * The address handle is used to reference a local or global destination
1586  * in all UD QP post sends.
1587  */
1588 struct ib_ah *ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
1589
1590 /**
1591  * ib_init_ah_from_wc - Initializes address handle attributes from a
1592  *   work completion.
1593  * @device: Device on which the received message arrived.
1594  * @port_num: Port on which the received message arrived.
1595  * @wc: Work completion associated with the received message.
1596  * @grh: References the received global route header.  This parameter is
1597  *   ignored unless the work completion indicates that the GRH is valid.
1598  * @ah_attr: Returned attributes that can be used when creating an address
1599  *   handle for replying to the message.
1600  */
1601 int ib_init_ah_from_wc(struct ib_device *device, u8 port_num, struct ib_wc *wc,
1602                        struct ib_grh *grh, struct ib_ah_attr *ah_attr);
1603
1604 /**
1605  * ib_create_ah_from_wc - Creates an address handle associated with the
1606  *   sender of the specified work completion.
1607  * @pd: The protection domain associated with the address handle.
1608  * @wc: Work completion information associated with a received message.
1609  * @grh: References the received global route header.  This parameter is
1610  *   ignored unless the work completion indicates that the GRH is valid.
1611  * @port_num: The outbound port number to associate with the address.
1612  *
1613  * The address handle is used to reference a local or global destination
1614  * in all UD QP post sends.
1615  */
1616 struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, struct ib_wc *wc,
1617                                    struct ib_grh *grh, u8 port_num);
1618
1619 /**
1620  * ib_modify_ah - Modifies the address vector associated with an address
1621  *   handle.
1622  * @ah: The address handle to modify.
1623  * @ah_attr: The new address vector attributes to associate with the
1624  *   address handle.
1625  */
1626 int ib_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
1627
1628 /**
1629  * ib_query_ah - Queries the address vector associated with an address
1630  *   handle.
1631  * @ah: The address handle to query.
1632  * @ah_attr: The address vector attributes associated with the address
1633  *   handle.
1634  */
1635 int ib_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
1636
1637 /**
1638  * ib_destroy_ah - Destroys an address handle.
1639  * @ah: The address handle to destroy.
1640  */
1641 int ib_destroy_ah(struct ib_ah *ah);
1642
1643 /**
1644  * ib_create_srq - Creates a SRQ associated with the specified protection
1645  *   domain.
1646  * @pd: The protection domain associated with the SRQ.
1647  * @srq_init_attr: A list of initial attributes required to create the
1648  *   SRQ.  If SRQ creation succeeds, then the attributes are updated to
1649  *   the actual capabilities of the created SRQ.
1650  *
1651  * srq_attr->max_wr and srq_attr->max_sge are read the determine the
1652  * requested size of the SRQ, and set to the actual values allocated
1653  * on return.  If ib_create_srq() succeeds, then max_wr and max_sge
1654  * will always be at least as large as the requested values.
1655  */
1656 struct ib_srq *ib_create_srq(struct ib_pd *pd,
1657                              struct ib_srq_init_attr *srq_init_attr);
1658
1659 /**
1660  * ib_modify_srq - Modifies the attributes for the specified SRQ.
1661  * @srq: The SRQ to modify.
1662  * @srq_attr: On input, specifies the SRQ attributes to modify.  On output,
1663  *   the current values of selected SRQ attributes are returned.
1664  * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
1665  *   are being modified.
1666  *
1667  * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
1668  * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
1669  * the number of receives queued drops below the limit.
1670  */
1671 int ib_modify_srq(struct ib_srq *srq,
1672                   struct ib_srq_attr *srq_attr,
1673                   enum ib_srq_attr_mask srq_attr_mask);
1674
1675 /**
1676  * ib_query_srq - Returns the attribute list and current values for the
1677  *   specified SRQ.
1678  * @srq: The SRQ to query.
1679  * @srq_attr: The attributes of the specified SRQ.
1680  */
1681 int ib_query_srq(struct ib_srq *srq,
1682                  struct ib_srq_attr *srq_attr);
1683
1684 /**
1685  * ib_destroy_srq - Destroys the specified SRQ.
1686  * @srq: The SRQ to destroy.
1687  */
1688 int ib_destroy_srq(struct ib_srq *srq);
1689
1690 /**
1691  * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
1692  * @srq: The SRQ to post the work request on.
1693  * @recv_wr: A list of work requests to post on the receive queue.
1694  * @bad_recv_wr: On an immediate failure, this parameter will reference
1695  *   the work request that failed to be posted on the QP.
1696  */
1697 static inline int ib_post_srq_recv(struct ib_srq *srq,
1698                                    struct ib_recv_wr *recv_wr,
1699                                    struct ib_recv_wr **bad_recv_wr)
1700 {
1701         return srq->device->post_srq_recv(srq, recv_wr, bad_recv_wr);
1702 }
1703
1704 /**
1705  * ib_create_qp - Creates a QP associated with the specified protection
1706  *   domain.
1707  * @pd: The protection domain associated with the QP.
1708  * @qp_init_attr: A list of initial attributes required to create the
1709  *   QP.  If QP creation succeeds, then the attributes are updated to
1710  *   the actual capabilities of the created QP.
1711  */
1712 struct ib_qp *ib_create_qp(struct ib_pd *pd,
1713                            struct ib_qp_init_attr *qp_init_attr);
1714
1715 /**
1716  * ib_modify_qp - Modifies the attributes for the specified QP and then
1717  *   transitions the QP to the given state.
1718  * @qp: The QP to modify.
1719  * @qp_attr: On input, specifies the QP attributes to modify.  On output,
1720  *   the current values of selected QP attributes are returned.
1721  * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
1722  *   are being modified.
1723  */
1724 int ib_modify_qp(struct ib_qp *qp,
1725                  struct ib_qp_attr *qp_attr,
1726                  int qp_attr_mask);
1727
1728 /**
1729  * ib_query_qp - Returns the attribute list and current values for the
1730  *   specified QP.
1731  * @qp: The QP to query.
1732  * @qp_attr: The attributes of the specified QP.
1733  * @qp_attr_mask: A bit-mask used to select specific attributes to query.
1734  * @qp_init_attr: Additional attributes of the selected QP.
1735  *
1736  * The qp_attr_mask may be used to limit the query to gathering only the
1737  * selected attributes.
1738  */
1739 int ib_query_qp(struct ib_qp *qp,
1740                 struct ib_qp_attr *qp_attr,
1741                 int qp_attr_mask,
1742                 struct ib_qp_init_attr *qp_init_attr);
1743
1744 /**
1745  * ib_destroy_qp - Destroys the specified QP.
1746  * @qp: The QP to destroy.
1747  */
1748 int ib_destroy_qp(struct ib_qp *qp);
1749
1750 /**
1751  * ib_open_qp - Obtain a reference to an existing sharable QP.
1752  * @xrcd - XRC domain
1753  * @qp_open_attr: Attributes identifying the QP to open.
1754  *
1755  * Returns a reference to a sharable QP.
1756  */
1757 struct ib_qp *ib_open_qp(struct ib_xrcd *xrcd,
1758                          struct ib_qp_open_attr *qp_open_attr);
1759
1760 /**
1761  * ib_close_qp - Release an external reference to a QP.
1762  * @qp: The QP handle to release
1763  *
1764  * The opened QP handle is released by the caller.  The underlying
1765  * shared QP is not destroyed until all internal references are released.
1766  */
1767 int ib_close_qp(struct ib_qp *qp);
1768
1769 /**
1770  * ib_post_send - Posts a list of work requests to the send queue of
1771  *   the specified QP.
1772  * @qp: The QP to post the work request on.
1773  * @send_wr: A list of work requests to post on the send queue.
1774  * @bad_send_wr: On an immediate failure, this parameter will reference
1775  *   the work request that failed to be posted on the QP.
1776  *
1777  * While IBA Vol. 1 section 11.4.1.1 specifies that if an immediate
1778  * error is returned, the QP state shall not be affected,
1779  * ib_post_send() will return an immediate error after queueing any
1780  * earlier work requests in the list.
1781  */
1782 static inline int ib_post_send(struct ib_qp *qp,
1783                                struct ib_send_wr *send_wr,
1784                                struct ib_send_wr **bad_send_wr)
1785 {
1786         return qp->device->post_send(qp, send_wr, bad_send_wr);
1787 }
1788
1789 /**
1790  * ib_post_recv - Posts a list of work requests to the receive queue of
1791  *   the specified QP.
1792  * @qp: The QP to post the work request on.
1793  * @recv_wr: A list of work requests to post on the receive queue.
1794  * @bad_recv_wr: On an immediate failure, this parameter will reference
1795  *   the work request that failed to be posted on the QP.
1796  */
1797 static inline int ib_post_recv(struct ib_qp *qp,
1798                                struct ib_recv_wr *recv_wr,
1799                                struct ib_recv_wr **bad_recv_wr)
1800 {
1801         return qp->device->post_recv(qp, recv_wr, bad_recv_wr);
1802 }
1803
1804 /**
1805  * ib_create_cq - Creates a CQ on the specified device.
1806  * @device: The device on which to create the CQ.
1807  * @comp_handler: A user-specified callback that is invoked when a
1808  *   completion event occurs on the CQ.
1809  * @event_handler: A user-specified callback that is invoked when an
1810  *   asynchronous event not associated with a completion occurs on the CQ.
1811  * @cq_context: Context associated with the CQ returned to the user via
1812  *   the associated completion and event handlers.
1813  * @cqe: The minimum size of the CQ.
1814  * @comp_vector - Completion vector used to signal completion events.
1815  *     Must be >= 0 and < context->num_comp_vectors.
1816  *
1817  * Users can examine the cq structure to determine the actual CQ size.
1818  */
1819 struct ib_cq *ib_create_cq(struct ib_device *device,
1820                            ib_comp_handler comp_handler,
1821                            void (*event_handler)(struct ib_event *, void *),
1822                            void *cq_context, int cqe, int comp_vector);
1823
1824 /**
1825  * ib_resize_cq - Modifies the capacity of the CQ.
1826  * @cq: The CQ to resize.
1827  * @cqe: The minimum size of the CQ.
1828  *
1829  * Users can examine the cq structure to determine the actual CQ size.
1830  */
1831 int ib_resize_cq(struct ib_cq *cq, int cqe);
1832
1833 /**
1834  * ib_modify_cq - Modifies moderation params of the CQ
1835  * @cq: The CQ to modify.
1836  * @cq_count: number of CQEs that will trigger an event
1837  * @cq_period: max period of time in usec before triggering an event
1838  *
1839  */
1840 int ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
1841
1842 /**
1843  * ib_destroy_cq - Destroys the specified CQ.
1844  * @cq: The CQ to destroy.
1845  */
1846 int ib_destroy_cq(struct ib_cq *cq);
1847
1848 /**
1849  * ib_poll_cq - poll a CQ for completion(s)
1850  * @cq:the CQ being polled
1851  * @num_entries:maximum number of completions to return
1852  * @wc:array of at least @num_entries &struct ib_wc where completions
1853  *   will be returned
1854  *
1855  * Poll a CQ for (possibly multiple) completions.  If the return value
1856  * is < 0, an error occurred.  If the return value is >= 0, it is the
1857  * number of completions returned.  If the return value is
1858  * non-negative and < num_entries, then the CQ was emptied.
1859  */
1860 static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
1861                              struct ib_wc *wc)
1862 {
1863         return cq->device->poll_cq(cq, num_entries, wc);
1864 }
1865
1866 /**
1867  * ib_peek_cq - Returns the number of unreaped completions currently
1868  *   on the specified CQ.
1869  * @cq: The CQ to peek.
1870  * @wc_cnt: A minimum number of unreaped completions to check for.
1871  *
1872  * If the number of unreaped completions is greater than or equal to wc_cnt,
1873  * this function returns wc_cnt, otherwise, it returns the actual number of
1874  * unreaped completions.
1875  */
1876 int ib_peek_cq(struct ib_cq *cq, int wc_cnt);
1877
1878 /**
1879  * ib_req_notify_cq - Request completion notification on a CQ.
1880  * @cq: The CQ to generate an event for.
1881  * @flags:
1882  *   Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
1883  *   to request an event on the next solicited event or next work
1884  *   completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
1885  *   may also be |ed in to request a hint about missed events, as
1886  *   described below.
1887  *
1888  * Return Value:
1889  *    < 0 means an error occurred while requesting notification
1890  *   == 0 means notification was requested successfully, and if
1891  *        IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
1892  *        were missed and it is safe to wait for another event.  In
1893  *        this case is it guaranteed that any work completions added
1894  *        to the CQ since the last CQ poll will trigger a completion
1895  *        notification event.
1896  *    > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
1897  *        in.  It means that the consumer must poll the CQ again to
1898  *        make sure it is empty to avoid missing an event because of a
1899  *        race between requesting notification and an entry being
1900  *        added to the CQ.  This return value means it is possible
1901  *        (but not guaranteed) that a work completion has been added
1902  *        to the CQ since the last poll without triggering a
1903  *        completion notification event.
1904  */
1905 static inline int ib_req_notify_cq(struct ib_cq *cq,
1906                                    enum ib_cq_notify_flags flags)
1907 {
1908         return cq->device->req_notify_cq(cq, flags);
1909 }
1910
1911 /**
1912  * ib_req_ncomp_notif - Request completion notification when there are
1913  *   at least the specified number of unreaped completions on the CQ.
1914  * @cq: The CQ to generate an event for.
1915  * @wc_cnt: The number of unreaped completions that should be on the
1916  *   CQ before an event is generated.
1917  */
1918 static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
1919 {
1920         return cq->device->req_ncomp_notif ?
1921                 cq->device->req_ncomp_notif(cq, wc_cnt) :
1922                 -ENOSYS;
1923 }
1924
1925 /**
1926  * ib_get_dma_mr - Returns a memory region for system memory that is
1927  *   usable for DMA.
1928  * @pd: The protection domain associated with the memory region.
1929  * @mr_access_flags: Specifies the memory access rights.
1930  *
1931  * Note that the ib_dma_*() functions defined below must be used
1932  * to create/destroy addresses used with the Lkey or Rkey returned
1933  * by ib_get_dma_mr().
1934  */
1935 struct ib_mr *ib_get_dma_mr(struct ib_pd *pd, int mr_access_flags);
1936
1937 /**
1938  * ib_dma_mapping_error - check a DMA addr for error
1939  * @dev: The device for which the dma_addr was created
1940  * @dma_addr: The DMA address to check
1941  */
1942 static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
1943 {
1944         if (dev->dma_ops)
1945                 return dev->dma_ops->mapping_error(dev, dma_addr);
1946         return dma_mapping_error(dev->dma_device, dma_addr);
1947 }
1948
1949 /**
1950  * ib_dma_map_single - Map a kernel virtual address to DMA address
1951  * @dev: The device for which the dma_addr is to be created
1952  * @cpu_addr: The kernel virtual address
1953  * @size: The size of the region in bytes
1954  * @direction: The direction of the DMA
1955  */
1956 static inline u64 ib_dma_map_single(struct ib_device *dev,
1957                                     void *cpu_addr, size_t size,
1958                                     enum dma_data_direction direction)
1959 {
1960         if (dev->dma_ops)
1961                 return dev->dma_ops->map_single(dev, cpu_addr, size, direction);
1962         return dma_map_single(dev->dma_device, cpu_addr, size, direction);
1963 }
1964
1965 /**
1966  * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
1967  * @dev: The device for which the DMA address was created
1968  * @addr: The DMA address
1969  * @size: The size of the region in bytes
1970  * @direction: The direction of the DMA
1971  */
1972 static inline void ib_dma_unmap_single(struct ib_device *dev,
1973                                        u64 addr, size_t size,
1974                                        enum dma_data_direction direction)
1975 {
1976         if (dev->dma_ops)
1977                 dev->dma_ops->unmap_single(dev, addr, size, direction);
1978         else
1979                 dma_unmap_single(dev->dma_device, addr, size, direction);
1980 }
1981
1982 static inline u64 ib_dma_map_single_attrs(struct ib_device *dev,
1983                                           void *cpu_addr, size_t size,
1984                                           enum dma_data_direction direction,
1985                                           struct dma_attrs *attrs)
1986 {
1987         return dma_map_single_attrs(dev->dma_device, cpu_addr, size,
1988                                     direction, attrs);
1989 }
1990
1991 static inline void ib_dma_unmap_single_attrs(struct ib_device *dev,
1992                                              u64 addr, size_t size,
1993                                              enum dma_data_direction direction,
1994                                              struct dma_attrs *attrs)
1995 {
1996         return dma_unmap_single_attrs(dev->dma_device, addr, size,
1997                                       direction, attrs);
1998 }
1999
2000 /**
2001  * ib_dma_map_page - Map a physical page to DMA address
2002  * @dev: The device for which the dma_addr is to be created
2003  * @page: The page to be mapped
2004  * @offset: The offset within the page
2005  * @size: The size of the region in bytes
2006  * @direction: The direction of the DMA
2007  */
2008 static inline u64 ib_dma_map_page(struct ib_device *dev,
2009                                   struct page *page,
2010                                   unsigned long offset,
2011                                   size_t size,
2012                                          enum dma_data_direction direction)
2013 {
2014         if (dev->dma_ops)
2015                 return dev->dma_ops->map_page(dev, page, offset, size, direction);
2016         return dma_map_page(dev->dma_device, page, offset, size, direction);
2017 }
2018
2019 /**
2020  * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
2021  * @dev: The device for which the DMA address was created
2022  * @addr: The DMA address
2023  * @size: The size of the region in bytes
2024  * @direction: The direction of the DMA
2025  */
2026 static inline void ib_dma_unmap_page(struct ib_device *dev,
2027                                      u64 addr, size_t size,
2028                                      enum dma_data_direction direction)
2029 {
2030         if (dev->dma_ops)
2031                 dev->dma_ops->unmap_page(dev, addr, size, direction);
2032         else
2033                 dma_unmap_page(dev->dma_device, addr, size, direction);
2034 }
2035
2036 /**
2037  * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
2038  * @dev: The device for which the DMA addresses are to be created
2039  * @sg: The array of scatter/gather entries
2040  * @nents: The number of scatter/gather entries
2041  * @direction: The direction of the DMA
2042  */
2043 static inline int ib_dma_map_sg(struct ib_device *dev,
2044                                 struct scatterlist *sg, int nents,
2045                                 enum dma_data_direction direction)
2046 {
2047         if (dev->dma_ops)
2048                 return dev->dma_ops->map_sg(dev, sg, nents, direction);
2049         return dma_map_sg(dev->dma_device, sg, nents, direction);
2050 }
2051
2052 /**
2053  * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
2054  * @dev: The device for which the DMA addresses were created
2055  * @sg: The array of scatter/gather entries
2056  * @nents: The number of scatter/gather entries
2057  * @direction: The direction of the DMA
2058  */
2059 static inline void ib_dma_unmap_sg(struct ib_device *dev,
2060                                    struct scatterlist *sg, int nents,
2061                                    enum dma_data_direction direction)
2062 {
2063         if (dev->dma_ops)
2064                 dev->dma_ops->unmap_sg(dev, sg, nents, direction);
2065         else
2066                 dma_unmap_sg(dev->dma_device, sg, nents, direction);
2067 }
2068
2069 static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
2070                                       struct scatterlist *sg, int nents,
2071                                       enum dma_data_direction direction,
2072                                       struct dma_attrs *attrs)
2073 {
2074         return dma_map_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2075 }
2076
2077 static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
2078                                          struct scatterlist *sg, int nents,
2079                                          enum dma_data_direction direction,
2080                                          struct dma_attrs *attrs)
2081 {
2082         dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2083 }
2084 /**
2085  * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
2086  * @dev: The device for which the DMA addresses were created
2087  * @sg: The scatter/gather entry
2088  *
2089  * Note: this function is obsolete. To do: change all occurrences of
2090  * ib_sg_dma_address() into sg_dma_address().
2091  */
2092 static inline u64 ib_sg_dma_address(struct ib_device *dev,
2093                                     struct scatterlist *sg)
2094 {
2095         return sg_dma_address(sg);
2096 }
2097
2098 /**
2099  * ib_sg_dma_len - Return the DMA length from a scatter/gather entry
2100  * @dev: The device for which the DMA addresses were created
2101  * @sg: The scatter/gather entry
2102  *
2103  * Note: this function is obsolete. To do: change all occurrences of
2104  * ib_sg_dma_len() into sg_dma_len().
2105  */
2106 static inline unsigned int ib_sg_dma_len(struct ib_device *dev,
2107                                          struct scatterlist *sg)
2108 {
2109         return sg_dma_len(sg);
2110 }
2111
2112 /**
2113  * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
2114  * @dev: The device for which the DMA address was created
2115  * @addr: The DMA address
2116  * @size: The size of the region in bytes
2117  * @dir: The direction of the DMA
2118  */
2119 static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
2120                                               u64 addr,
2121                                               size_t size,
2122                                               enum dma_data_direction dir)
2123 {
2124         if (dev->dma_ops)
2125                 dev->dma_ops->sync_single_for_cpu(dev, addr, size, dir);
2126         else
2127                 dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
2128 }
2129
2130 /**
2131  * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
2132  * @dev: The device for which the DMA address was created
2133  * @addr: The DMA address
2134  * @size: The size of the region in bytes
2135  * @dir: The direction of the DMA
2136  */
2137 static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
2138                                                  u64 addr,
2139                                                  size_t size,
2140                                                  enum dma_data_direction dir)
2141 {
2142         if (dev->dma_ops)
2143                 dev->dma_ops->sync_single_for_device(dev, addr, size, dir);
2144         else
2145                 dma_sync_single_for_device(dev->dma_device, addr, size, dir);
2146 }
2147
2148 /**
2149  * ib_dma_alloc_coherent - Allocate memory and map it for DMA
2150  * @dev: The device for which the DMA address is requested
2151  * @size: The size of the region to allocate in bytes
2152  * @dma_handle: A pointer for returning the DMA address of the region
2153  * @flag: memory allocator flags
2154  */
2155 static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
2156                                            size_t size,
2157                                            u64 *dma_handle,
2158                                            gfp_t flag)
2159 {
2160         if (dev->dma_ops)
2161                 return dev->dma_ops->alloc_coherent(dev, size, dma_handle, flag);
2162         else {
2163                 dma_addr_t handle;
2164                 void *ret;
2165
2166                 ret = dma_alloc_coherent(dev->dma_device, size, &handle, flag);
2167                 *dma_handle = handle;
2168                 return ret;
2169         }
2170 }
2171
2172 /**
2173  * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
2174  * @dev: The device for which the DMA addresses were allocated
2175  * @size: The size of the region
2176  * @cpu_addr: the address returned by ib_dma_alloc_coherent()
2177  * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
2178  */
2179 static inline void ib_dma_free_coherent(struct ib_device *dev,
2180                                         size_t size, void *cpu_addr,
2181                                         u64 dma_handle)
2182 {
2183         if (dev->dma_ops)
2184                 dev->dma_ops->free_coherent(dev, size, cpu_addr, dma_handle);
2185         else
2186                 dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
2187 }
2188
2189 /**
2190  * ib_reg_phys_mr - Prepares a virtually addressed memory region for use
2191  *   by an HCA.
2192  * @pd: The protection domain associated assigned to the registered region.
2193  * @phys_buf_array: Specifies a list of physical buffers to use in the
2194  *   memory region.
2195  * @num_phys_buf: Specifies the size of the phys_buf_array.
2196  * @mr_access_flags: Specifies the memory access rights.
2197  * @iova_start: The offset of the region's starting I/O virtual address.
2198  */
2199 struct ib_mr *ib_reg_phys_mr(struct ib_pd *pd,
2200                              struct ib_phys_buf *phys_buf_array,
2201                              int num_phys_buf,
2202                              int mr_access_flags,
2203                              u64 *iova_start);
2204
2205 /**
2206  * ib_rereg_phys_mr - Modifies the attributes of an existing memory region.
2207  *   Conceptually, this call performs the functions deregister memory region
2208  *   followed by register physical memory region.  Where possible,
2209  *   resources are reused instead of deallocated and reallocated.
2210  * @mr: The memory region to modify.
2211  * @mr_rereg_mask: A bit-mask used to indicate which of the following
2212  *   properties of the memory region are being modified.
2213  * @pd: If %IB_MR_REREG_PD is set in mr_rereg_mask, this field specifies
2214  *   the new protection domain to associated with the memory region,
2215  *   otherwise, this parameter is ignored.
2216  * @phys_buf_array: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2217  *   field specifies a list of physical buffers to use in the new
2218  *   translation, otherwise, this parameter is ignored.
2219  * @num_phys_buf: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2220  *   field specifies the size of the phys_buf_array, otherwise, this
2221  *   parameter is ignored.
2222  * @mr_access_flags: If %IB_MR_REREG_ACCESS is set in mr_rereg_mask, this
2223  *   field specifies the new memory access rights, otherwise, this
2224  *   parameter is ignored.
2225  * @iova_start: The offset of the region's starting I/O virtual address.
2226  */
2227 int ib_rereg_phys_mr(struct ib_mr *mr,
2228                      int mr_rereg_mask,
2229                      struct ib_pd *pd,
2230                      struct ib_phys_buf *phys_buf_array,
2231                      int num_phys_buf,
2232                      int mr_access_flags,
2233                      u64 *iova_start);
2234
2235 /**
2236  * ib_query_mr - Retrieves information about a specific memory region.
2237  * @mr: The memory region to retrieve information about.
2238  * @mr_attr: The attributes of the specified memory region.
2239  */
2240 int ib_query_mr(struct ib_mr *mr, struct ib_mr_attr *mr_attr);
2241
2242 /**
2243  * ib_dereg_mr - Deregisters a memory region and removes it from the
2244  *   HCA translation table.
2245  * @mr: The memory region to deregister.
2246  *
2247  * This function can fail, if the memory region has memory windows bound to it.
2248  */
2249 int ib_dereg_mr(struct ib_mr *mr);
2250
2251 /**
2252  * ib_alloc_fast_reg_mr - Allocates memory region usable with the
2253  *   IB_WR_FAST_REG_MR send work request.
2254  * @pd: The protection domain associated with the region.
2255  * @max_page_list_len: requested max physical buffer list length to be
2256  *   used with fast register work requests for this MR.
2257  */
2258 struct ib_mr *ib_alloc_fast_reg_mr(struct ib_pd *pd, int max_page_list_len);
2259
2260 /**
2261  * ib_alloc_fast_reg_page_list - Allocates a page list array
2262  * @device - ib device pointer.
2263  * @page_list_len - size of the page list array to be allocated.
2264  *
2265  * This allocates and returns a struct ib_fast_reg_page_list * and a
2266  * page_list array that is at least page_list_len in size.  The actual
2267  * size is returned in max_page_list_len.  The caller is responsible
2268  * for initializing the contents of the page_list array before posting
2269  * a send work request with the IB_WC_FAST_REG_MR opcode.
2270  *
2271  * The page_list array entries must be translated using one of the
2272  * ib_dma_*() functions just like the addresses passed to
2273  * ib_map_phys_fmr().  Once the ib_post_send() is issued, the struct
2274  * ib_fast_reg_page_list must not be modified by the caller until the
2275  * IB_WC_FAST_REG_MR work request completes.
2276  */
2277 struct ib_fast_reg_page_list *ib_alloc_fast_reg_page_list(
2278                                 struct ib_device *device, int page_list_len);
2279
2280 /**
2281  * ib_free_fast_reg_page_list - Deallocates a previously allocated
2282  *   page list array.
2283  * @page_list - struct ib_fast_reg_page_list pointer to be deallocated.
2284  */
2285 void ib_free_fast_reg_page_list(struct ib_fast_reg_page_list *page_list);
2286
2287 /**
2288  * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
2289  *   R_Key and L_Key.
2290  * @mr - struct ib_mr pointer to be updated.
2291  * @newkey - new key to be used.
2292  */
2293 static inline void ib_update_fast_reg_key(struct ib_mr *mr, u8 newkey)
2294 {
2295         mr->lkey = (mr->lkey & 0xffffff00) | newkey;
2296         mr->rkey = (mr->rkey & 0xffffff00) | newkey;
2297 }
2298
2299 /**
2300  * ib_inc_rkey - increments the key portion of the given rkey. Can be used
2301  * for calculating a new rkey for type 2 memory windows.
2302  * @rkey - the rkey to increment.
2303  */
2304 static inline u32 ib_inc_rkey(u32 rkey)
2305 {
2306         const u32 mask = 0x000000ff;
2307         return ((rkey + 1) & mask) | (rkey & ~mask);
2308 }
2309
2310 /**
2311  * ib_alloc_mw - Allocates a memory window.
2312  * @pd: The protection domain associated with the memory window.
2313  * @type: The type of the memory window (1 or 2).
2314  */
2315 struct ib_mw *ib_alloc_mw(struct ib_pd *pd, enum ib_mw_type type);
2316
2317 /**
2318  * ib_bind_mw - Posts a work request to the send queue of the specified
2319  *   QP, which binds the memory window to the given address range and
2320  *   remote access attributes.
2321  * @qp: QP to post the bind work request on.
2322  * @mw: The memory window to bind.
2323  * @mw_bind: Specifies information about the memory window, including
2324  *   its address range, remote access rights, and associated memory region.
2325  *
2326  * If there is no immediate error, the function will update the rkey member
2327  * of the mw parameter to its new value. The bind operation can still fail
2328  * asynchronously.
2329  */
2330 static inline int ib_bind_mw(struct ib_qp *qp,
2331                              struct ib_mw *mw,
2332                              struct ib_mw_bind *mw_bind)
2333 {
2334         /* XXX reference counting in corresponding MR? */
2335         return mw->device->bind_mw ?
2336                 mw->device->bind_mw(qp, mw, mw_bind) :
2337                 -ENOSYS;
2338 }
2339
2340 /**
2341  * ib_dealloc_mw - Deallocates a memory window.
2342  * @mw: The memory window to deallocate.
2343  */
2344 int ib_dealloc_mw(struct ib_mw *mw);
2345
2346 /**
2347  * ib_alloc_fmr - Allocates a unmapped fast memory region.
2348  * @pd: The protection domain associated with the unmapped region.
2349  * @mr_access_flags: Specifies the memory access rights.
2350  * @fmr_attr: Attributes of the unmapped region.
2351  *
2352  * A fast memory region must be mapped before it can be used as part of
2353  * a work request.
2354  */
2355 struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
2356                             int mr_access_flags,
2357                             struct ib_fmr_attr *fmr_attr);
2358
2359 /**
2360  * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
2361  * @fmr: The fast memory region to associate with the pages.
2362  * @page_list: An array of physical pages to map to the fast memory region.
2363  * @list_len: The number of pages in page_list.
2364  * @iova: The I/O virtual address to use with the mapped region.
2365  */
2366 static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
2367                                   u64 *page_list, int list_len,
2368                                   u64 iova)
2369 {
2370         return fmr->device->map_phys_fmr(fmr, page_list, list_len, iova);
2371 }
2372
2373 /**
2374  * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
2375  * @fmr_list: A linked list of fast memory regions to unmap.
2376  */
2377 int ib_unmap_fmr(struct list_head *fmr_list);
2378
2379 /**
2380  * ib_dealloc_fmr - Deallocates a fast memory region.
2381  * @fmr: The fast memory region to deallocate.
2382  */
2383 int ib_dealloc_fmr(struct ib_fmr *fmr);
2384
2385 /**
2386  * ib_attach_mcast - Attaches the specified QP to a multicast group.
2387  * @qp: QP to attach to the multicast group.  The QP must be type
2388  *   IB_QPT_UD.
2389  * @gid: Multicast group GID.
2390  * @lid: Multicast group LID in host byte order.
2391  *
2392  * In order to send and receive multicast packets, subnet
2393  * administration must have created the multicast group and configured
2394  * the fabric appropriately.  The port associated with the specified
2395  * QP must also be a member of the multicast group.
2396  */
2397 int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2398
2399 /**
2400  * ib_detach_mcast - Detaches the specified QP from a multicast group.
2401  * @qp: QP to detach from the multicast group.
2402  * @gid: Multicast group GID.
2403  * @lid: Multicast group LID in host byte order.
2404  */
2405 int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2406
2407 /**
2408  * ib_alloc_xrcd - Allocates an XRC domain.
2409  * @device: The device on which to allocate the XRC domain.
2410  */
2411 struct ib_xrcd *ib_alloc_xrcd(struct ib_device *device);
2412
2413 /**
2414  * ib_dealloc_xrcd - Deallocates an XRC domain.
2415  * @xrcd: The XRC domain to deallocate.
2416  */
2417 int ib_dealloc_xrcd(struct ib_xrcd *xrcd);
2418
2419 struct ib_flow *ib_create_flow(struct ib_qp *qp,
2420                                struct ib_flow_attr *flow_attr, int domain);
2421 int ib_destroy_flow(struct ib_flow *flow_id);
2422
2423 static inline int ib_check_mr_access(int flags)
2424 {
2425         /*
2426          * Local write permission is required if remote write or
2427          * remote atomic permission is also requested.
2428          */
2429         if (flags & (IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_REMOTE_WRITE) &&
2430             !(flags & IB_ACCESS_LOCAL_WRITE))
2431                 return -EINVAL;
2432
2433         return 0;
2434 }
2435
2436 #endif /* IB_VERBS_H */