blob: b25ffa05e3384b504893a7f3f2d79a9305a8fa67 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07007 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08008 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
38
39#if !defined(IB_VERBS_H)
40#define IB_VERBS_H
41
42#include <linux/types.h>
43#include <linux/device.h>
Ralph Campbell9b513092006-12-12 14:27:41 -080044#include <linux/mm.h>
45#include <linux/dma-mapping.h>
Michael S. Tsirkin459d6e22007-02-04 14:11:55 -080046#include <linux/kref.h>
Dotan Barakbfb3ea12007-07-31 16:49:15 +030047#include <linux/list.h>
48#include <linux/rwsem.h>
Adrian Bunk87ae9af2007-10-30 10:35:04 +010049#include <linux/scatterlist.h>
Tejun Heof0626712010-10-19 15:24:36 +000050#include <linux/workqueue.h>
Matan Barakdd5f03b2013-12-12 18:03:11 +020051#include <uapi/linux/if_ether.h>
Roland Dreiere2773c02005-07-07 17:57:10 -070052
Arun Sharma600634972011-07-26 16:09:06 -070053#include <linux/atomic.h>
Haggai Eran882214e2014-12-11 17:04:18 +020054#include <linux/mmu_notifier.h>
Roland Dreiere2773c02005-07-07 17:57:10 -070055#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Tejun Heof0626712010-10-19 15:24:36 +000057extern struct workqueue_struct *ib_wq;
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059union ib_gid {
60 u8 raw[16];
61 struct {
Sean Hefty97f52eb2005-08-13 21:05:57 -070062 __be64 subnet_prefix;
63 __be64 interface_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 } global;
65};
66
Tom Tucker07ebafb2006-08-03 16:02:42 -050067enum rdma_node_type {
68 /* IB values map to NodeInfo:NodeType. */
69 RDMA_NODE_IB_CA = 1,
70 RDMA_NODE_IB_SWITCH,
71 RDMA_NODE_IB_ROUTER,
Upinder Malhi \(umalhi\)180771a2013-09-10 03:36:59 +000072 RDMA_NODE_RNIC,
73 RDMA_NODE_USNIC,
Upinder Malhi5db57652014-01-15 17:02:36 -080074 RDMA_NODE_USNIC_UDP,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Tom Tucker07ebafb2006-08-03 16:02:42 -050077enum rdma_transport_type {
78 RDMA_TRANSPORT_IB,
Upinder Malhi \(umalhi\)180771a2013-09-10 03:36:59 +000079 RDMA_TRANSPORT_IWARP,
Upinder Malhi248567f2014-01-09 14:48:19 -080080 RDMA_TRANSPORT_USNIC,
81 RDMA_TRANSPORT_USNIC_UDP
Tom Tucker07ebafb2006-08-03 16:02:42 -050082};
83
Michael Wang6b90a6d2015-05-05 14:50:18 +020084enum rdma_protocol_type {
85 RDMA_PROTOCOL_IB,
86 RDMA_PROTOCOL_IBOE,
87 RDMA_PROTOCOL_IWARP,
88 RDMA_PROTOCOL_USNIC_UDP
89};
90
Roland Dreier8385fd82014-06-04 10:00:16 -070091__attribute_const__ enum rdma_transport_type
92rdma_node_get_transport(enum rdma_node_type node_type);
Tom Tucker07ebafb2006-08-03 16:02:42 -050093
Eli Cohena3f5ada2010-09-27 17:51:10 -070094enum rdma_link_layer {
95 IB_LINK_LAYER_UNSPECIFIED,
96 IB_LINK_LAYER_INFINIBAND,
97 IB_LINK_LAYER_ETHERNET,
98};
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100enum ib_device_cap_flags {
101 IB_DEVICE_RESIZE_MAX_WR = 1,
102 IB_DEVICE_BAD_PKEY_CNTR = (1<<1),
103 IB_DEVICE_BAD_QKEY_CNTR = (1<<2),
104 IB_DEVICE_RAW_MULTI = (1<<3),
105 IB_DEVICE_AUTO_PATH_MIG = (1<<4),
106 IB_DEVICE_CHANGE_PHY_PORT = (1<<5),
107 IB_DEVICE_UD_AV_PORT_ENFORCE = (1<<6),
108 IB_DEVICE_CURR_QP_STATE_MOD = (1<<7),
109 IB_DEVICE_SHUTDOWN_PORT = (1<<8),
110 IB_DEVICE_INIT_TYPE = (1<<9),
111 IB_DEVICE_PORT_ACTIVE_EVENT = (1<<10),
112 IB_DEVICE_SYS_IMAGE_GUID = (1<<11),
113 IB_DEVICE_RC_RNR_NAK_GEN = (1<<12),
114 IB_DEVICE_SRQ_RESIZE = (1<<13),
115 IB_DEVICE_N_NOTIFY_CQ = (1<<14),
Steve Wise96f15c02008-07-14 23:48:53 -0700116 IB_DEVICE_LOCAL_DMA_LKEY = (1<<15),
Roland Dreier0f39cf32008-04-16 21:09:32 -0700117 IB_DEVICE_RESERVED = (1<<16), /* old SEND_W_INV */
Eli Cohene0605d92008-01-30 18:30:57 +0200118 IB_DEVICE_MEM_WINDOW = (1<<17),
119 /*
120 * Devices should set IB_DEVICE_UD_IP_SUM if they support
121 * insertion of UDP and TCP checksum on outgoing UD IPoIB
122 * messages and can verify the validity of checksum for
123 * incoming messages. Setting this flag implies that the
124 * IPoIB driver may set NETIF_F_IP_CSUM for datagram mode.
125 */
126 IB_DEVICE_UD_IP_CSUM = (1<<18),
Eli Cohenc93570f2008-04-16 21:09:27 -0700127 IB_DEVICE_UD_TSO = (1<<19),
Sean Hefty59991f92011-05-23 17:52:46 -0700128 IB_DEVICE_XRC = (1<<20),
Steve Wise00f7ec32008-07-14 23:48:45 -0700129 IB_DEVICE_MEM_MGT_EXTENSIONS = (1<<21),
Ron Livne47ee1b92008-07-14 23:48:48 -0700130 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK = (1<<22),
Shani Michaeli7083e422013-02-06 16:19:12 +0000131 IB_DEVICE_MEM_WINDOW_TYPE_2A = (1<<23),
Hadar Hen Zion319a4412013-08-07 14:01:59 +0300132 IB_DEVICE_MEM_WINDOW_TYPE_2B = (1<<24),
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200133 IB_DEVICE_MANAGED_FLOW_STEERING = (1<<29),
Sagi Grimberg860f10a2014-12-11 17:04:16 +0200134 IB_DEVICE_SIGNATURE_HANDOVER = (1<<30),
135 IB_DEVICE_ON_DEMAND_PAGING = (1<<31),
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200136};
137
138enum ib_signature_prot_cap {
139 IB_PROT_T10DIF_TYPE_1 = 1,
140 IB_PROT_T10DIF_TYPE_2 = 1 << 1,
141 IB_PROT_T10DIF_TYPE_3 = 1 << 2,
142};
143
144enum ib_signature_guard_cap {
145 IB_GUARD_T10DIF_CRC = 1,
146 IB_GUARD_T10DIF_CSUM = 1 << 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149enum ib_atomic_cap {
150 IB_ATOMIC_NONE,
151 IB_ATOMIC_HCA,
152 IB_ATOMIC_GLOB
153};
154
Sagi Grimberg860f10a2014-12-11 17:04:16 +0200155enum ib_odp_general_cap_bits {
156 IB_ODP_SUPPORT = 1 << 0,
157};
158
159enum ib_odp_transport_cap_bits {
160 IB_ODP_SUPPORT_SEND = 1 << 0,
161 IB_ODP_SUPPORT_RECV = 1 << 1,
162 IB_ODP_SUPPORT_WRITE = 1 << 2,
163 IB_ODP_SUPPORT_READ = 1 << 3,
164 IB_ODP_SUPPORT_ATOMIC = 1 << 4,
165};
166
167struct ib_odp_caps {
168 uint64_t general_caps;
169 struct {
170 uint32_t rc_odp_caps;
171 uint32_t uc_odp_caps;
172 uint32_t ud_odp_caps;
173 } per_transport_caps;
174};
175
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300176struct ib_cq_init_attr {
177 unsigned int cqe;
178 int comp_vector;
179 u32 flags;
180};
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182struct ib_device_attr {
183 u64 fw_ver;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700184 __be64 sys_image_guid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 u64 max_mr_size;
186 u64 page_size_cap;
187 u32 vendor_id;
188 u32 vendor_part_id;
189 u32 hw_ver;
190 int max_qp;
191 int max_qp_wr;
192 int device_cap_flags;
193 int max_sge;
194 int max_sge_rd;
195 int max_cq;
196 int max_cqe;
197 int max_mr;
198 int max_pd;
199 int max_qp_rd_atom;
200 int max_ee_rd_atom;
201 int max_res_rd_atom;
202 int max_qp_init_rd_atom;
203 int max_ee_init_rd_atom;
204 enum ib_atomic_cap atomic_cap;
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +0300205 enum ib_atomic_cap masked_atomic_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 int max_ee;
207 int max_rdd;
208 int max_mw;
209 int max_raw_ipv6_qp;
210 int max_raw_ethy_qp;
211 int max_mcast_grp;
212 int max_mcast_qp_attach;
213 int max_total_mcast_qp_attach;
214 int max_ah;
215 int max_fmr;
216 int max_map_per_fmr;
217 int max_srq;
218 int max_srq_wr;
219 int max_srq_sge;
Steve Wise00f7ec32008-07-14 23:48:45 -0700220 unsigned int max_fast_reg_page_list_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 u16 max_pkeys;
222 u8 local_ca_ack_delay;
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200223 int sig_prot_cap;
224 int sig_guard_cap;
Sagi Grimberg860f10a2014-12-11 17:04:16 +0200225 struct ib_odp_caps odp_caps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
228enum ib_mtu {
229 IB_MTU_256 = 1,
230 IB_MTU_512 = 2,
231 IB_MTU_1024 = 3,
232 IB_MTU_2048 = 4,
233 IB_MTU_4096 = 5
234};
235
236static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
237{
238 switch (mtu) {
239 case IB_MTU_256: return 256;
240 case IB_MTU_512: return 512;
241 case IB_MTU_1024: return 1024;
242 case IB_MTU_2048: return 2048;
243 case IB_MTU_4096: return 4096;
244 default: return -1;
245 }
246}
247
248enum ib_port_state {
249 IB_PORT_NOP = 0,
250 IB_PORT_DOWN = 1,
251 IB_PORT_INIT = 2,
252 IB_PORT_ARMED = 3,
253 IB_PORT_ACTIVE = 4,
254 IB_PORT_ACTIVE_DEFER = 5
255};
256
257enum ib_port_cap_flags {
258 IB_PORT_SM = 1 << 1,
259 IB_PORT_NOTICE_SUP = 1 << 2,
260 IB_PORT_TRAP_SUP = 1 << 3,
261 IB_PORT_OPT_IPD_SUP = 1 << 4,
262 IB_PORT_AUTO_MIGR_SUP = 1 << 5,
263 IB_PORT_SL_MAP_SUP = 1 << 6,
264 IB_PORT_MKEY_NVRAM = 1 << 7,
265 IB_PORT_PKEY_NVRAM = 1 << 8,
266 IB_PORT_LED_INFO_SUP = 1 << 9,
267 IB_PORT_SM_DISABLED = 1 << 10,
268 IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11,
269 IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12,
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300270 IB_PORT_EXTENDED_SPEEDS_SUP = 1 << 14,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 IB_PORT_CM_SUP = 1 << 16,
272 IB_PORT_SNMP_TUNNEL_SUP = 1 << 17,
273 IB_PORT_REINIT_SUP = 1 << 18,
274 IB_PORT_DEVICE_MGMT_SUP = 1 << 19,
275 IB_PORT_VENDOR_CLASS_SUP = 1 << 20,
276 IB_PORT_DR_NOTICE_SUP = 1 << 21,
277 IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22,
278 IB_PORT_BOOT_MGMT_SUP = 1 << 23,
279 IB_PORT_LINK_LATENCY_SUP = 1 << 24,
Moni Shouab4a26a22014-02-09 11:54:34 +0200280 IB_PORT_CLIENT_REG_SUP = 1 << 25,
281 IB_PORT_IP_BASED_GIDS = 1 << 26
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282};
283
284enum ib_port_width {
285 IB_WIDTH_1X = 1,
286 IB_WIDTH_4X = 2,
287 IB_WIDTH_8X = 4,
288 IB_WIDTH_12X = 8
289};
290
291static inline int ib_width_enum_to_int(enum ib_port_width width)
292{
293 switch (width) {
294 case IB_WIDTH_1X: return 1;
295 case IB_WIDTH_4X: return 4;
296 case IB_WIDTH_8X: return 8;
297 case IB_WIDTH_12X: return 12;
298 default: return -1;
299 }
300}
301
Or Gerlitz2e966912012-02-28 18:49:50 +0200302enum ib_port_speed {
303 IB_SPEED_SDR = 1,
304 IB_SPEED_DDR = 2,
305 IB_SPEED_QDR = 4,
306 IB_SPEED_FDR10 = 8,
307 IB_SPEED_FDR = 16,
308 IB_SPEED_EDR = 32
309};
310
Steve Wise7f624d02008-07-14 23:48:48 -0700311struct ib_protocol_stats {
312 /* TBD... */
313};
314
315struct iw_protocol_stats {
316 u64 ipInReceives;
317 u64 ipInHdrErrors;
318 u64 ipInTooBigErrors;
319 u64 ipInNoRoutes;
320 u64 ipInAddrErrors;
321 u64 ipInUnknownProtos;
322 u64 ipInTruncatedPkts;
323 u64 ipInDiscards;
324 u64 ipInDelivers;
325 u64 ipOutForwDatagrams;
326 u64 ipOutRequests;
327 u64 ipOutDiscards;
328 u64 ipOutNoRoutes;
329 u64 ipReasmTimeout;
330 u64 ipReasmReqds;
331 u64 ipReasmOKs;
332 u64 ipReasmFails;
333 u64 ipFragOKs;
334 u64 ipFragFails;
335 u64 ipFragCreates;
336 u64 ipInMcastPkts;
337 u64 ipOutMcastPkts;
338 u64 ipInBcastPkts;
339 u64 ipOutBcastPkts;
340
341 u64 tcpRtoAlgorithm;
342 u64 tcpRtoMin;
343 u64 tcpRtoMax;
344 u64 tcpMaxConn;
345 u64 tcpActiveOpens;
346 u64 tcpPassiveOpens;
347 u64 tcpAttemptFails;
348 u64 tcpEstabResets;
349 u64 tcpCurrEstab;
350 u64 tcpInSegs;
351 u64 tcpOutSegs;
352 u64 tcpRetransSegs;
353 u64 tcpInErrs;
354 u64 tcpOutRsts;
355};
356
357union rdma_protocol_stats {
358 struct ib_protocol_stats ib;
359 struct iw_protocol_stats iw;
360};
361
Ira Weinyf9b22e32015-05-13 20:02:59 -0400362/* Define bits for the various functionality this port needs to be supported by
363 * the core.
364 */
365/* Management 0x00000FFF */
366#define RDMA_CORE_CAP_IB_MAD 0x00000001
367#define RDMA_CORE_CAP_IB_SMI 0x00000002
368#define RDMA_CORE_CAP_IB_CM 0x00000004
369#define RDMA_CORE_CAP_IW_CM 0x00000008
370#define RDMA_CORE_CAP_IB_SA 0x00000010
371
372/* Address format 0x000FF000 */
373#define RDMA_CORE_CAP_AF_IB 0x00001000
374#define RDMA_CORE_CAP_ETH_AH 0x00002000
375
376/* Protocol 0xFFF00000 */
377#define RDMA_CORE_CAP_PROT_IB 0x00100000
378#define RDMA_CORE_CAP_PROT_ROCE 0x00200000
379#define RDMA_CORE_CAP_PROT_IWARP 0x00400000
380
381#define RDMA_CORE_PORT_IBA_IB (RDMA_CORE_CAP_PROT_IB \
382 | RDMA_CORE_CAP_IB_MAD \
383 | RDMA_CORE_CAP_IB_SMI \
384 | RDMA_CORE_CAP_IB_CM \
385 | RDMA_CORE_CAP_IB_SA \
386 | RDMA_CORE_CAP_AF_IB)
387#define RDMA_CORE_PORT_IBA_ROCE (RDMA_CORE_CAP_PROT_ROCE \
388 | RDMA_CORE_CAP_IB_MAD \
389 | RDMA_CORE_CAP_IB_CM \
Ira Weinyf9b22e32015-05-13 20:02:59 -0400390 | RDMA_CORE_CAP_AF_IB \
391 | RDMA_CORE_CAP_ETH_AH)
392#define RDMA_CORE_PORT_IWARP (RDMA_CORE_CAP_PROT_IWARP \
393 | RDMA_CORE_CAP_IW_CM)
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395struct ib_port_attr {
396 enum ib_port_state state;
397 enum ib_mtu max_mtu;
398 enum ib_mtu active_mtu;
399 int gid_tbl_len;
400 u32 port_cap_flags;
401 u32 max_msg_sz;
402 u32 bad_pkey_cntr;
403 u32 qkey_viol_cntr;
404 u16 pkey_tbl_len;
405 u16 lid;
406 u16 sm_lid;
407 u8 lmc;
408 u8 max_vl_num;
409 u8 sm_sl;
410 u8 subnet_timeout;
411 u8 init_type_reply;
412 u8 active_width;
413 u8 active_speed;
414 u8 phys_state;
415};
416
417enum ib_device_modify_flags {
Roland Dreierc5bcbbb2006-02-02 09:47:14 -0800418 IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
419 IB_DEVICE_MODIFY_NODE_DESC = 1 << 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
422struct ib_device_modify {
423 u64 sys_image_guid;
Roland Dreierc5bcbbb2006-02-02 09:47:14 -0800424 char node_desc[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425};
426
427enum ib_port_modify_flags {
428 IB_PORT_SHUTDOWN = 1,
429 IB_PORT_INIT_TYPE = (1<<2),
430 IB_PORT_RESET_QKEY_CNTR = (1<<3)
431};
432
433struct ib_port_modify {
434 u32 set_port_cap_mask;
435 u32 clr_port_cap_mask;
436 u8 init_type;
437};
438
439enum ib_event_type {
440 IB_EVENT_CQ_ERR,
441 IB_EVENT_QP_FATAL,
442 IB_EVENT_QP_REQ_ERR,
443 IB_EVENT_QP_ACCESS_ERR,
444 IB_EVENT_COMM_EST,
445 IB_EVENT_SQ_DRAINED,
446 IB_EVENT_PATH_MIG,
447 IB_EVENT_PATH_MIG_ERR,
448 IB_EVENT_DEVICE_FATAL,
449 IB_EVENT_PORT_ACTIVE,
450 IB_EVENT_PORT_ERR,
451 IB_EVENT_LID_CHANGE,
452 IB_EVENT_PKEY_CHANGE,
Roland Dreierd41fcc62005-08-18 12:23:08 -0700453 IB_EVENT_SM_CHANGE,
454 IB_EVENT_SRQ_ERR,
455 IB_EVENT_SRQ_LIMIT_REACHED,
Leonid Arsh63942c92006-06-17 20:37:35 -0700456 IB_EVENT_QP_LAST_WQE_REACHED,
Or Gerlitz761d90e2011-06-15 14:39:29 +0000457 IB_EVENT_CLIENT_REREGISTER,
458 IB_EVENT_GID_CHANGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459};
460
Sagi Grimberg2b1b5b62015-05-18 13:40:28 +0300461__attribute_const__ const char *ib_event_msg(enum ib_event_type event);
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463struct ib_event {
464 struct ib_device *device;
465 union {
466 struct ib_cq *cq;
467 struct ib_qp *qp;
Roland Dreierd41fcc62005-08-18 12:23:08 -0700468 struct ib_srq *srq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 u8 port_num;
470 } element;
471 enum ib_event_type event;
472};
473
474struct ib_event_handler {
475 struct ib_device *device;
476 void (*handler)(struct ib_event_handler *, struct ib_event *);
477 struct list_head list;
478};
479
480#define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
481 do { \
482 (_ptr)->device = _device; \
483 (_ptr)->handler = _handler; \
484 INIT_LIST_HEAD(&(_ptr)->list); \
485 } while (0)
486
487struct ib_global_route {
488 union ib_gid dgid;
489 u32 flow_label;
490 u8 sgid_index;
491 u8 hop_limit;
492 u8 traffic_class;
493};
494
Hal Rosenstock513789e2005-07-27 11:45:34 -0700495struct ib_grh {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700496 __be32 version_tclass_flow;
497 __be16 paylen;
Hal Rosenstock513789e2005-07-27 11:45:34 -0700498 u8 next_hdr;
499 u8 hop_limit;
500 union ib_gid sgid;
501 union ib_gid dgid;
502};
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504enum {
505 IB_MULTICAST_QPN = 0xffffff
506};
507
Harvey Harrisonf3a7c662009-02-14 22:58:35 -0800508#define IB_LID_PERMISSIVE cpu_to_be16(0xFFFF)
Sean Hefty97f52eb2005-08-13 21:05:57 -0700509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510enum ib_ah_flags {
511 IB_AH_GRH = 1
512};
513
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700514enum ib_rate {
515 IB_RATE_PORT_CURRENT = 0,
516 IB_RATE_2_5_GBPS = 2,
517 IB_RATE_5_GBPS = 5,
518 IB_RATE_10_GBPS = 3,
519 IB_RATE_20_GBPS = 6,
520 IB_RATE_30_GBPS = 4,
521 IB_RATE_40_GBPS = 7,
522 IB_RATE_60_GBPS = 8,
523 IB_RATE_80_GBPS = 9,
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300524 IB_RATE_120_GBPS = 10,
525 IB_RATE_14_GBPS = 11,
526 IB_RATE_56_GBPS = 12,
527 IB_RATE_112_GBPS = 13,
528 IB_RATE_168_GBPS = 14,
529 IB_RATE_25_GBPS = 15,
530 IB_RATE_100_GBPS = 16,
531 IB_RATE_200_GBPS = 17,
532 IB_RATE_300_GBPS = 18
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700533};
534
535/**
536 * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
537 * base rate of 2.5 Gbit/sec. For example, IB_RATE_5_GBPS will be
538 * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
539 * @rate: rate to convert.
540 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700541__attribute_const__ int ib_rate_to_mult(enum ib_rate rate);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700542
543/**
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300544 * ib_rate_to_mbps - Convert the IB rate enum to Mbps.
545 * For example, IB_RATE_2_5_GBPS will be converted to 2500.
546 * @rate: rate to convert.
547 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700548__attribute_const__ int ib_rate_to_mbps(enum ib_rate rate);
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300549
Sagi Grimberg17cd3a22014-02-23 14:19:04 +0200550enum ib_mr_create_flags {
551 IB_MR_SIGNATURE_EN = 1,
552};
553
554/**
555 * ib_mr_init_attr - Memory region init attributes passed to routine
556 * ib_create_mr.
557 * @max_reg_descriptors: max number of registration descriptors that
558 * may be used with registration work requests.
559 * @flags: MR creation flags bit mask.
560 */
561struct ib_mr_init_attr {
562 int max_reg_descriptors;
563 u32 flags;
564};
565
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200566/**
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300567 * Signature types
568 * IB_SIG_TYPE_NONE: Unprotected.
569 * IB_SIG_TYPE_T10_DIF: Type T10-DIF
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200570 */
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300571enum ib_signature_type {
572 IB_SIG_TYPE_NONE,
573 IB_SIG_TYPE_T10_DIF,
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200574};
575
576/**
577 * Signature T10-DIF block-guard types
578 * IB_T10DIF_CRC: Corresponds to T10-PI mandated CRC checksum rules.
579 * IB_T10DIF_CSUM: Corresponds to IP checksum rules.
580 */
581enum ib_t10_dif_bg_type {
582 IB_T10DIF_CRC,
583 IB_T10DIF_CSUM
584};
585
586/**
587 * struct ib_t10_dif_domain - Parameters specific for T10-DIF
588 * domain.
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200589 * @bg_type: T10-DIF block guard type (CRC|CSUM)
590 * @pi_interval: protection information interval.
591 * @bg: seed of guard computation.
592 * @app_tag: application tag of guard block
593 * @ref_tag: initial guard block reference tag.
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300594 * @ref_remap: Indicate wethear the reftag increments each block
595 * @app_escape: Indicate to skip block check if apptag=0xffff
596 * @ref_escape: Indicate to skip block check if reftag=0xffffffff
597 * @apptag_check_mask: check bitmask of application tag.
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200598 */
599struct ib_t10_dif_domain {
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200600 enum ib_t10_dif_bg_type bg_type;
601 u16 pi_interval;
602 u16 bg;
603 u16 app_tag;
604 u32 ref_tag;
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300605 bool ref_remap;
606 bool app_escape;
607 bool ref_escape;
608 u16 apptag_check_mask;
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200609};
610
611/**
612 * struct ib_sig_domain - Parameters for signature domain
613 * @sig_type: specific signauture type
614 * @sig: union of all signature domain attributes that may
615 * be used to set domain layout.
616 */
617struct ib_sig_domain {
618 enum ib_signature_type sig_type;
619 union {
620 struct ib_t10_dif_domain dif;
621 } sig;
622};
623
624/**
625 * struct ib_sig_attrs - Parameters for signature handover operation
626 * @check_mask: bitmask for signature byte check (8 bytes)
627 * @mem: memory domain layout desciptor.
628 * @wire: wire domain layout desciptor.
629 */
630struct ib_sig_attrs {
631 u8 check_mask;
632 struct ib_sig_domain mem;
633 struct ib_sig_domain wire;
634};
635
636enum ib_sig_err_type {
637 IB_SIG_BAD_GUARD,
638 IB_SIG_BAD_REFTAG,
639 IB_SIG_BAD_APPTAG,
640};
641
642/**
643 * struct ib_sig_err - signature error descriptor
644 */
645struct ib_sig_err {
646 enum ib_sig_err_type err_type;
647 u32 expected;
648 u32 actual;
649 u64 sig_err_offset;
650 u32 key;
651};
652
653enum ib_mr_status_check {
654 IB_MR_CHECK_SIG_STATUS = 1,
655};
656
657/**
658 * struct ib_mr_status - Memory region status container
659 *
660 * @fail_status: Bitmask of MR checks status. For each
661 * failed check a corresponding status bit is set.
662 * @sig_err: Additional info for IB_MR_CEHCK_SIG_STATUS
663 * failure.
664 */
665struct ib_mr_status {
666 u32 fail_status;
667 struct ib_sig_err sig_err;
668};
669
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300670/**
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700671 * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
672 * enum.
673 * @mult: multiple to convert.
674 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700675__attribute_const__ enum ib_rate mult_to_ib_rate(int mult);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677struct ib_ah_attr {
678 struct ib_global_route grh;
679 u16 dlid;
680 u8 sl;
681 u8 src_path_bits;
682 u8 static_rate;
683 u8 ah_flags;
684 u8 port_num;
Matan Barakdd5f03b2013-12-12 18:03:11 +0200685 u8 dmac[ETH_ALEN];
686 u16 vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687};
688
689enum ib_wc_status {
690 IB_WC_SUCCESS,
691 IB_WC_LOC_LEN_ERR,
692 IB_WC_LOC_QP_OP_ERR,
693 IB_WC_LOC_EEC_OP_ERR,
694 IB_WC_LOC_PROT_ERR,
695 IB_WC_WR_FLUSH_ERR,
696 IB_WC_MW_BIND_ERR,
697 IB_WC_BAD_RESP_ERR,
698 IB_WC_LOC_ACCESS_ERR,
699 IB_WC_REM_INV_REQ_ERR,
700 IB_WC_REM_ACCESS_ERR,
701 IB_WC_REM_OP_ERR,
702 IB_WC_RETRY_EXC_ERR,
703 IB_WC_RNR_RETRY_EXC_ERR,
704 IB_WC_LOC_RDD_VIOL_ERR,
705 IB_WC_REM_INV_RD_REQ_ERR,
706 IB_WC_REM_ABORT_ERR,
707 IB_WC_INV_EECN_ERR,
708 IB_WC_INV_EEC_STATE_ERR,
709 IB_WC_FATAL_ERR,
710 IB_WC_RESP_TIMEOUT_ERR,
711 IB_WC_GENERAL_ERR
712};
713
Sagi Grimberg2b1b5b62015-05-18 13:40:28 +0300714__attribute_const__ const char *ib_wc_status_msg(enum ib_wc_status status);
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716enum ib_wc_opcode {
717 IB_WC_SEND,
718 IB_WC_RDMA_WRITE,
719 IB_WC_RDMA_READ,
720 IB_WC_COMP_SWAP,
721 IB_WC_FETCH_ADD,
722 IB_WC_BIND_MW,
Eli Cohenc93570f2008-04-16 21:09:27 -0700723 IB_WC_LSO,
Steve Wise00f7ec32008-07-14 23:48:45 -0700724 IB_WC_LOCAL_INV,
725 IB_WC_FAST_REG_MR,
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +0300726 IB_WC_MASKED_COMP_SWAP,
727 IB_WC_MASKED_FETCH_ADD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
729 * Set value of IB_WC_RECV so consumers can test if a completion is a
730 * receive by testing (opcode & IB_WC_RECV).
731 */
732 IB_WC_RECV = 1 << 7,
733 IB_WC_RECV_RDMA_WITH_IMM
734};
735
736enum ib_wc_flags {
737 IB_WC_GRH = 1,
Steve Wise00f7ec32008-07-14 23:48:45 -0700738 IB_WC_WITH_IMM = (1<<1),
739 IB_WC_WITH_INVALIDATE = (1<<2),
Or Gerlitzd927d502012-01-11 19:03:51 +0200740 IB_WC_IP_CSUM_OK = (1<<3),
Matan Barakdd5f03b2013-12-12 18:03:11 +0200741 IB_WC_WITH_SMAC = (1<<4),
742 IB_WC_WITH_VLAN = (1<<5),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743};
744
745struct ib_wc {
746 u64 wr_id;
747 enum ib_wc_status status;
748 enum ib_wc_opcode opcode;
749 u32 vendor_err;
750 u32 byte_len;
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200751 struct ib_qp *qp;
Steve Wise00f7ec32008-07-14 23:48:45 -0700752 union {
753 __be32 imm_data;
754 u32 invalidate_rkey;
755 } ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 u32 src_qp;
757 int wc_flags;
758 u16 pkey_index;
759 u16 slid;
760 u8 sl;
761 u8 dlid_path_bits;
762 u8 port_num; /* valid only for DR SMPs on switches */
Matan Barakdd5f03b2013-12-12 18:03:11 +0200763 u8 smac[ETH_ALEN];
764 u16 vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765};
766
Roland Dreiered23a722007-05-06 21:02:48 -0700767enum ib_cq_notify_flags {
768 IB_CQ_SOLICITED = 1 << 0,
769 IB_CQ_NEXT_COMP = 1 << 1,
770 IB_CQ_SOLICITED_MASK = IB_CQ_SOLICITED | IB_CQ_NEXT_COMP,
771 IB_CQ_REPORT_MISSED_EVENTS = 1 << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772};
773
Sean Hefty96104ed2011-05-23 16:31:36 -0700774enum ib_srq_type {
Sean Hefty418d5132011-05-23 19:42:29 -0700775 IB_SRQT_BASIC,
776 IB_SRQT_XRC
Sean Hefty96104ed2011-05-23 16:31:36 -0700777};
778
Roland Dreierd41fcc62005-08-18 12:23:08 -0700779enum ib_srq_attr_mask {
780 IB_SRQ_MAX_WR = 1 << 0,
781 IB_SRQ_LIMIT = 1 << 1,
782};
783
784struct ib_srq_attr {
785 u32 max_wr;
786 u32 max_sge;
787 u32 srq_limit;
788};
789
790struct ib_srq_init_attr {
791 void (*event_handler)(struct ib_event *, void *);
792 void *srq_context;
793 struct ib_srq_attr attr;
Sean Hefty96104ed2011-05-23 16:31:36 -0700794 enum ib_srq_type srq_type;
Sean Hefty418d5132011-05-23 19:42:29 -0700795
796 union {
797 struct {
798 struct ib_xrcd *xrcd;
799 struct ib_cq *cq;
800 } xrc;
801 } ext;
Roland Dreierd41fcc62005-08-18 12:23:08 -0700802};
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804struct ib_qp_cap {
805 u32 max_send_wr;
806 u32 max_recv_wr;
807 u32 max_send_sge;
808 u32 max_recv_sge;
809 u32 max_inline_data;
810};
811
812enum ib_sig_type {
813 IB_SIGNAL_ALL_WR,
814 IB_SIGNAL_REQ_WR
815};
816
817enum ib_qp_type {
818 /*
819 * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
820 * here (and in that order) since the MAD layer uses them as
821 * indices into a 2-entry table.
822 */
823 IB_QPT_SMI,
824 IB_QPT_GSI,
825
826 IB_QPT_RC,
827 IB_QPT_UC,
828 IB_QPT_UD,
829 IB_QPT_RAW_IPV6,
Sean Heftyb42b63c2011-05-23 19:59:25 -0700830 IB_QPT_RAW_ETHERTYPE,
Or Gerlitzc938a612012-03-01 12:17:51 +0200831 IB_QPT_RAW_PACKET = 8,
Sean Heftyb42b63c2011-05-23 19:59:25 -0700832 IB_QPT_XRC_INI = 9,
833 IB_QPT_XRC_TGT,
Jack Morgenstein0134f162013-07-07 17:25:52 +0300834 IB_QPT_MAX,
835 /* Reserve a range for qp types internal to the low level driver.
836 * These qp types will not be visible at the IB core layer, so the
837 * IB_QPT_MAX usages should not be affected in the core layer
838 */
839 IB_QPT_RESERVED1 = 0x1000,
840 IB_QPT_RESERVED2,
841 IB_QPT_RESERVED3,
842 IB_QPT_RESERVED4,
843 IB_QPT_RESERVED5,
844 IB_QPT_RESERVED6,
845 IB_QPT_RESERVED7,
846 IB_QPT_RESERVED8,
847 IB_QPT_RESERVED9,
848 IB_QPT_RESERVED10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849};
850
Eli Cohenb846f252008-04-16 21:09:27 -0700851enum ib_qp_create_flags {
Ron Livne47ee1b92008-07-14 23:48:48 -0700852 IB_QP_CREATE_IPOIB_UD_LSO = 1 << 0,
853 IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 1 << 1,
Matan Barak90f1d1b2013-11-07 15:25:12 +0200854 IB_QP_CREATE_NETIF_QP = 1 << 5,
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200855 IB_QP_CREATE_SIGNATURE_EN = 1 << 6,
Or Gerlitz09b93082014-05-11 15:15:11 +0300856 IB_QP_CREATE_USE_GFP_NOIO = 1 << 7,
Jack Morgensteind2b57062012-08-03 08:40:37 +0000857 /* reserve bits 26-31 for low level drivers' internal use */
858 IB_QP_CREATE_RESERVED_START = 1 << 26,
859 IB_QP_CREATE_RESERVED_END = 1 << 31,
Eli Cohenb846f252008-04-16 21:09:27 -0700860};
861
Yishai Hadas73c40c62013-08-01 18:49:53 +0300862
863/*
864 * Note: users may not call ib_close_qp or ib_destroy_qp from the event_handler
865 * callback to destroy the passed in QP.
866 */
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868struct ib_qp_init_attr {
869 void (*event_handler)(struct ib_event *, void *);
870 void *qp_context;
871 struct ib_cq *send_cq;
872 struct ib_cq *recv_cq;
873 struct ib_srq *srq;
Sean Heftyb42b63c2011-05-23 19:59:25 -0700874 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 struct ib_qp_cap cap;
876 enum ib_sig_type sq_sig_type;
877 enum ib_qp_type qp_type;
Eli Cohenb846f252008-04-16 21:09:27 -0700878 enum ib_qp_create_flags create_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 u8 port_num; /* special QP types only */
880};
881
Sean Hefty0e0ec7e2011-08-08 15:31:51 -0700882struct ib_qp_open_attr {
883 void (*event_handler)(struct ib_event *, void *);
884 void *qp_context;
885 u32 qp_num;
886 enum ib_qp_type qp_type;
887};
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889enum ib_rnr_timeout {
890 IB_RNR_TIMER_655_36 = 0,
891 IB_RNR_TIMER_000_01 = 1,
892 IB_RNR_TIMER_000_02 = 2,
893 IB_RNR_TIMER_000_03 = 3,
894 IB_RNR_TIMER_000_04 = 4,
895 IB_RNR_TIMER_000_06 = 5,
896 IB_RNR_TIMER_000_08 = 6,
897 IB_RNR_TIMER_000_12 = 7,
898 IB_RNR_TIMER_000_16 = 8,
899 IB_RNR_TIMER_000_24 = 9,
900 IB_RNR_TIMER_000_32 = 10,
901 IB_RNR_TIMER_000_48 = 11,
902 IB_RNR_TIMER_000_64 = 12,
903 IB_RNR_TIMER_000_96 = 13,
904 IB_RNR_TIMER_001_28 = 14,
905 IB_RNR_TIMER_001_92 = 15,
906 IB_RNR_TIMER_002_56 = 16,
907 IB_RNR_TIMER_003_84 = 17,
908 IB_RNR_TIMER_005_12 = 18,
909 IB_RNR_TIMER_007_68 = 19,
910 IB_RNR_TIMER_010_24 = 20,
911 IB_RNR_TIMER_015_36 = 21,
912 IB_RNR_TIMER_020_48 = 22,
913 IB_RNR_TIMER_030_72 = 23,
914 IB_RNR_TIMER_040_96 = 24,
915 IB_RNR_TIMER_061_44 = 25,
916 IB_RNR_TIMER_081_92 = 26,
917 IB_RNR_TIMER_122_88 = 27,
918 IB_RNR_TIMER_163_84 = 28,
919 IB_RNR_TIMER_245_76 = 29,
920 IB_RNR_TIMER_327_68 = 30,
921 IB_RNR_TIMER_491_52 = 31
922};
923
924enum ib_qp_attr_mask {
925 IB_QP_STATE = 1,
926 IB_QP_CUR_STATE = (1<<1),
927 IB_QP_EN_SQD_ASYNC_NOTIFY = (1<<2),
928 IB_QP_ACCESS_FLAGS = (1<<3),
929 IB_QP_PKEY_INDEX = (1<<4),
930 IB_QP_PORT = (1<<5),
931 IB_QP_QKEY = (1<<6),
932 IB_QP_AV = (1<<7),
933 IB_QP_PATH_MTU = (1<<8),
934 IB_QP_TIMEOUT = (1<<9),
935 IB_QP_RETRY_CNT = (1<<10),
936 IB_QP_RNR_RETRY = (1<<11),
937 IB_QP_RQ_PSN = (1<<12),
938 IB_QP_MAX_QP_RD_ATOMIC = (1<<13),
939 IB_QP_ALT_PATH = (1<<14),
940 IB_QP_MIN_RNR_TIMER = (1<<15),
941 IB_QP_SQ_PSN = (1<<16),
942 IB_QP_MAX_DEST_RD_ATOMIC = (1<<17),
943 IB_QP_PATH_MIG_STATE = (1<<18),
944 IB_QP_CAP = (1<<19),
Matan Barakdd5f03b2013-12-12 18:03:11 +0200945 IB_QP_DEST_QPN = (1<<20),
946 IB_QP_SMAC = (1<<21),
947 IB_QP_ALT_SMAC = (1<<22),
948 IB_QP_VID = (1<<23),
949 IB_QP_ALT_VID = (1<<24),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950};
951
952enum ib_qp_state {
953 IB_QPS_RESET,
954 IB_QPS_INIT,
955 IB_QPS_RTR,
956 IB_QPS_RTS,
957 IB_QPS_SQD,
958 IB_QPS_SQE,
959 IB_QPS_ERR
960};
961
962enum ib_mig_state {
963 IB_MIG_MIGRATED,
964 IB_MIG_REARM,
965 IB_MIG_ARMED
966};
967
Shani Michaeli7083e422013-02-06 16:19:12 +0000968enum ib_mw_type {
969 IB_MW_TYPE_1 = 1,
970 IB_MW_TYPE_2 = 2
971};
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973struct ib_qp_attr {
974 enum ib_qp_state qp_state;
975 enum ib_qp_state cur_qp_state;
976 enum ib_mtu path_mtu;
977 enum ib_mig_state path_mig_state;
978 u32 qkey;
979 u32 rq_psn;
980 u32 sq_psn;
981 u32 dest_qp_num;
982 int qp_access_flags;
983 struct ib_qp_cap cap;
984 struct ib_ah_attr ah_attr;
985 struct ib_ah_attr alt_ah_attr;
986 u16 pkey_index;
987 u16 alt_pkey_index;
988 u8 en_sqd_async_notify;
989 u8 sq_draining;
990 u8 max_rd_atomic;
991 u8 max_dest_rd_atomic;
992 u8 min_rnr_timer;
993 u8 port_num;
994 u8 timeout;
995 u8 retry_cnt;
996 u8 rnr_retry;
997 u8 alt_port_num;
998 u8 alt_timeout;
Matan Barakdd5f03b2013-12-12 18:03:11 +0200999 u8 smac[ETH_ALEN];
1000 u8 alt_smac[ETH_ALEN];
1001 u16 vlan_id;
1002 u16 alt_vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003};
1004
1005enum ib_wr_opcode {
1006 IB_WR_RDMA_WRITE,
1007 IB_WR_RDMA_WRITE_WITH_IMM,
1008 IB_WR_SEND,
1009 IB_WR_SEND_WITH_IMM,
1010 IB_WR_RDMA_READ,
1011 IB_WR_ATOMIC_CMP_AND_SWP,
Eli Cohenc93570f2008-04-16 21:09:27 -07001012 IB_WR_ATOMIC_FETCH_AND_ADD,
Roland Dreier0f39cf32008-04-16 21:09:32 -07001013 IB_WR_LSO,
1014 IB_WR_SEND_WITH_INV,
Steve Wise00f7ec32008-07-14 23:48:45 -07001015 IB_WR_RDMA_READ_WITH_INV,
1016 IB_WR_LOCAL_INV,
1017 IB_WR_FAST_REG_MR,
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +03001018 IB_WR_MASKED_ATOMIC_CMP_AND_SWP,
1019 IB_WR_MASKED_ATOMIC_FETCH_AND_ADD,
Shani Michaeli7083e422013-02-06 16:19:12 +00001020 IB_WR_BIND_MW,
Sagi Grimberg1b01d332014-02-23 14:19:05 +02001021 IB_WR_REG_SIG_MR,
Jack Morgenstein0134f162013-07-07 17:25:52 +03001022 /* reserve values for low level drivers' internal use.
1023 * These values will not be used at all in the ib core layer.
1024 */
1025 IB_WR_RESERVED1 = 0xf0,
1026 IB_WR_RESERVED2,
1027 IB_WR_RESERVED3,
1028 IB_WR_RESERVED4,
1029 IB_WR_RESERVED5,
1030 IB_WR_RESERVED6,
1031 IB_WR_RESERVED7,
1032 IB_WR_RESERVED8,
1033 IB_WR_RESERVED9,
1034 IB_WR_RESERVED10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035};
1036
1037enum ib_send_flags {
1038 IB_SEND_FENCE = 1,
1039 IB_SEND_SIGNALED = (1<<1),
1040 IB_SEND_SOLICITED = (1<<2),
Eli Cohene0605d92008-01-30 18:30:57 +02001041 IB_SEND_INLINE = (1<<3),
Jack Morgenstein0134f162013-07-07 17:25:52 +03001042 IB_SEND_IP_CSUM = (1<<4),
1043
1044 /* reserve bits 26-31 for low level drivers' internal use */
1045 IB_SEND_RESERVED_START = (1 << 26),
1046 IB_SEND_RESERVED_END = (1 << 31),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047};
1048
1049struct ib_sge {
1050 u64 addr;
1051 u32 length;
1052 u32 lkey;
1053};
1054
Steve Wise00f7ec32008-07-14 23:48:45 -07001055struct ib_fast_reg_page_list {
1056 struct ib_device *device;
1057 u64 *page_list;
1058 unsigned int max_page_list_len;
1059};
1060
Shani Michaeli7083e422013-02-06 16:19:12 +00001061/**
1062 * struct ib_mw_bind_info - Parameters for a memory window bind operation.
1063 * @mr: A memory region to bind the memory window to.
1064 * @addr: The address where the memory window should begin.
1065 * @length: The length of the memory window, in bytes.
1066 * @mw_access_flags: Access flags from enum ib_access_flags for the window.
1067 *
1068 * This struct contains the shared parameters for type 1 and type 2
1069 * memory window bind operations.
1070 */
1071struct ib_mw_bind_info {
1072 struct ib_mr *mr;
1073 u64 addr;
1074 u64 length;
1075 int mw_access_flags;
1076};
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078struct ib_send_wr {
1079 struct ib_send_wr *next;
1080 u64 wr_id;
1081 struct ib_sge *sg_list;
1082 int num_sge;
1083 enum ib_wr_opcode opcode;
1084 int send_flags;
Roland Dreier0f39cf32008-04-16 21:09:32 -07001085 union {
1086 __be32 imm_data;
1087 u32 invalidate_rkey;
1088 } ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 union {
1090 struct {
1091 u64 remote_addr;
1092 u32 rkey;
1093 } rdma;
1094 struct {
1095 u64 remote_addr;
1096 u64 compare_add;
1097 u64 swap;
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +03001098 u64 compare_add_mask;
1099 u64 swap_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 u32 rkey;
1101 } atomic;
1102 struct {
1103 struct ib_ah *ah;
Eli Cohenc93570f2008-04-16 21:09:27 -07001104 void *header;
1105 int hlen;
1106 int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 u32 remote_qpn;
1108 u32 remote_qkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 u16 pkey_index; /* valid for GSI only */
1110 u8 port_num; /* valid for DR SMPs on switch only */
1111 } ud;
Steve Wise00f7ec32008-07-14 23:48:45 -07001112 struct {
1113 u64 iova_start;
1114 struct ib_fast_reg_page_list *page_list;
1115 unsigned int page_shift;
1116 unsigned int page_list_len;
1117 u32 length;
1118 int access_flags;
1119 u32 rkey;
1120 } fast_reg;
Shani Michaeli7083e422013-02-06 16:19:12 +00001121 struct {
1122 struct ib_mw *mw;
1123 /* The new rkey for the memory window. */
1124 u32 rkey;
1125 struct ib_mw_bind_info bind_info;
1126 } bind_mw;
Sagi Grimberg1b01d332014-02-23 14:19:05 +02001127 struct {
1128 struct ib_sig_attrs *sig_attrs;
1129 struct ib_mr *sig_mr;
1130 int access_flags;
1131 struct ib_sge *prot;
1132 } sig_handover;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 } wr;
Sean Heftyb42b63c2011-05-23 19:59:25 -07001134 u32 xrc_remote_srq_num; /* XRC TGT QPs only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135};
1136
1137struct ib_recv_wr {
1138 struct ib_recv_wr *next;
1139 u64 wr_id;
1140 struct ib_sge *sg_list;
1141 int num_sge;
1142};
1143
1144enum ib_access_flags {
1145 IB_ACCESS_LOCAL_WRITE = 1,
1146 IB_ACCESS_REMOTE_WRITE = (1<<1),
1147 IB_ACCESS_REMOTE_READ = (1<<2),
1148 IB_ACCESS_REMOTE_ATOMIC = (1<<3),
Shani Michaeli7083e422013-02-06 16:19:12 +00001149 IB_ACCESS_MW_BIND = (1<<4),
Sagi Grimberg860f10a2014-12-11 17:04:16 +02001150 IB_ZERO_BASED = (1<<5),
1151 IB_ACCESS_ON_DEMAND = (1<<6),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152};
1153
1154struct ib_phys_buf {
1155 u64 addr;
1156 u64 size;
1157};
1158
1159struct ib_mr_attr {
1160 struct ib_pd *pd;
1161 u64 device_virt_addr;
1162 u64 size;
1163 int mr_access_flags;
1164 u32 lkey;
1165 u32 rkey;
1166};
1167
1168enum ib_mr_rereg_flags {
1169 IB_MR_REREG_TRANS = 1,
1170 IB_MR_REREG_PD = (1<<1),
Matan Barak7e6edb92014-07-31 11:01:28 +03001171 IB_MR_REREG_ACCESS = (1<<2),
1172 IB_MR_REREG_SUPPORTED = ((IB_MR_REREG_ACCESS << 1) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173};
1174
Shani Michaeli7083e422013-02-06 16:19:12 +00001175/**
1176 * struct ib_mw_bind - Parameters for a type 1 memory window bind operation.
1177 * @wr_id: Work request id.
1178 * @send_flags: Flags from ib_send_flags enum.
1179 * @bind_info: More parameters of the bind operation.
1180 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181struct ib_mw_bind {
Shani Michaeli7083e422013-02-06 16:19:12 +00001182 u64 wr_id;
1183 int send_flags;
1184 struct ib_mw_bind_info bind_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185};
1186
1187struct ib_fmr_attr {
1188 int max_pages;
1189 int max_maps;
Or Gerlitzd36f34a2006-02-02 10:43:45 -08001190 u8 page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191};
1192
Haggai Eran882214e2014-12-11 17:04:18 +02001193struct ib_umem;
1194
Roland Dreiere2773c02005-07-07 17:57:10 -07001195struct ib_ucontext {
1196 struct ib_device *device;
1197 struct list_head pd_list;
1198 struct list_head mr_list;
1199 struct list_head mw_list;
1200 struct list_head cq_list;
1201 struct list_head qp_list;
1202 struct list_head srq_list;
1203 struct list_head ah_list;
Sean Hefty53d0bd12011-05-24 08:33:46 -07001204 struct list_head xrcd_list;
Hadar Hen Zion436f2ad2013-08-14 13:58:30 +03001205 struct list_head rule_list;
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001206 int closing;
Shachar Raindel8ada2c12014-12-11 17:04:17 +02001207
1208 struct pid *tgid;
Haggai Eran882214e2014-12-11 17:04:18 +02001209#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1210 struct rb_root umem_tree;
1211 /*
1212 * Protects .umem_rbroot and tree, as well as odp_mrs_count and
1213 * mmu notifiers registration.
1214 */
1215 struct rw_semaphore umem_rwsem;
1216 void (*invalidate_range)(struct ib_umem *umem,
1217 unsigned long start, unsigned long end);
1218
1219 struct mmu_notifier mn;
1220 atomic_t notifier_count;
1221 /* A list of umems that don't have private mmu notifier counters yet. */
1222 struct list_head no_private_counters;
1223 int odp_mrs_count;
1224#endif
Roland Dreiere2773c02005-07-07 17:57:10 -07001225};
1226
1227struct ib_uobject {
1228 u64 user_handle; /* handle given to us by userspace */
1229 struct ib_ucontext *context; /* associated user context */
Roland Dreier9ead1902006-06-17 20:44:49 -07001230 void *object; /* containing object */
Roland Dreiere2773c02005-07-07 17:57:10 -07001231 struct list_head list; /* link to context's list */
Roland Dreierb3d636b2008-04-16 21:01:06 -07001232 int id; /* index into kernel idr */
Roland Dreier9ead1902006-06-17 20:44:49 -07001233 struct kref ref;
1234 struct rw_semaphore mutex; /* protects .live */
1235 int live;
Roland Dreiere2773c02005-07-07 17:57:10 -07001236};
1237
Roland Dreiere2773c02005-07-07 17:57:10 -07001238struct ib_udata {
Yann Droneaud309243e2013-12-11 23:01:44 +01001239 const void __user *inbuf;
Roland Dreiere2773c02005-07-07 17:57:10 -07001240 void __user *outbuf;
1241 size_t inlen;
1242 size_t outlen;
1243};
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245struct ib_pd {
Roland Dreiere2773c02005-07-07 17:57:10 -07001246 struct ib_device *device;
1247 struct ib_uobject *uobject;
1248 atomic_t usecnt; /* count all resources */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249};
1250
Sean Hefty59991f92011-05-23 17:52:46 -07001251struct ib_xrcd {
1252 struct ib_device *device;
Sean Heftyd3d72d92011-05-26 23:06:44 -07001253 atomic_t usecnt; /* count all exposed resources */
Sean Hefty53d0bd12011-05-24 08:33:46 -07001254 struct inode *inode;
Sean Heftyd3d72d92011-05-26 23:06:44 -07001255
1256 struct mutex tgt_qp_mutex;
1257 struct list_head tgt_qp_list;
Sean Hefty59991f92011-05-23 17:52:46 -07001258};
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260struct ib_ah {
1261 struct ib_device *device;
1262 struct ib_pd *pd;
Roland Dreiere2773c02005-07-07 17:57:10 -07001263 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264};
1265
1266typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
1267
1268struct ib_cq {
Roland Dreiere2773c02005-07-07 17:57:10 -07001269 struct ib_device *device;
1270 struct ib_uobject *uobject;
1271 ib_comp_handler comp_handler;
1272 void (*event_handler)(struct ib_event *, void *);
Dotan Barak4deccd62008-07-14 23:48:44 -07001273 void *cq_context;
Roland Dreiere2773c02005-07-07 17:57:10 -07001274 int cqe;
1275 atomic_t usecnt; /* count number of work queues */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276};
1277
1278struct ib_srq {
Roland Dreierd41fcc62005-08-18 12:23:08 -07001279 struct ib_device *device;
1280 struct ib_pd *pd;
1281 struct ib_uobject *uobject;
1282 void (*event_handler)(struct ib_event *, void *);
1283 void *srq_context;
Sean Hefty96104ed2011-05-23 16:31:36 -07001284 enum ib_srq_type srq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 atomic_t usecnt;
Sean Hefty418d5132011-05-23 19:42:29 -07001286
1287 union {
1288 struct {
1289 struct ib_xrcd *xrcd;
1290 struct ib_cq *cq;
1291 u32 srq_num;
1292 } xrc;
1293 } ext;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294};
1295
1296struct ib_qp {
1297 struct ib_device *device;
1298 struct ib_pd *pd;
1299 struct ib_cq *send_cq;
1300 struct ib_cq *recv_cq;
1301 struct ib_srq *srq;
Sean Heftyb42b63c2011-05-23 19:59:25 -07001302 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
Sean Heftyd3d72d92011-05-26 23:06:44 -07001303 struct list_head xrcd_list;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001304 /* count times opened, mcast attaches, flow attaches */
1305 atomic_t usecnt;
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07001306 struct list_head open_list;
1307 struct ib_qp *real_qp;
Roland Dreiere2773c02005-07-07 17:57:10 -07001308 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 void (*event_handler)(struct ib_event *, void *);
1310 void *qp_context;
1311 u32 qp_num;
1312 enum ib_qp_type qp_type;
1313};
1314
1315struct ib_mr {
Roland Dreiere2773c02005-07-07 17:57:10 -07001316 struct ib_device *device;
1317 struct ib_pd *pd;
1318 struct ib_uobject *uobject;
1319 u32 lkey;
1320 u32 rkey;
1321 atomic_t usecnt; /* count number of MWs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322};
1323
1324struct ib_mw {
1325 struct ib_device *device;
1326 struct ib_pd *pd;
Roland Dreiere2773c02005-07-07 17:57:10 -07001327 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 u32 rkey;
Shani Michaeli7083e422013-02-06 16:19:12 +00001329 enum ib_mw_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330};
1331
1332struct ib_fmr {
1333 struct ib_device *device;
1334 struct ib_pd *pd;
1335 struct list_head list;
1336 u32 lkey;
1337 u32 rkey;
1338};
1339
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001340/* Supported steering options */
1341enum ib_flow_attr_type {
1342 /* steering according to rule specifications */
1343 IB_FLOW_ATTR_NORMAL = 0x0,
1344 /* default unicast and multicast rule -
1345 * receive all Eth traffic which isn't steered to any QP
1346 */
1347 IB_FLOW_ATTR_ALL_DEFAULT = 0x1,
1348 /* default multicast rule -
1349 * receive all Eth multicast traffic which isn't steered to any QP
1350 */
1351 IB_FLOW_ATTR_MC_DEFAULT = 0x2,
1352 /* sniffer rule - receive all port traffic */
1353 IB_FLOW_ATTR_SNIFFER = 0x3
1354};
1355
1356/* Supported steering header types */
1357enum ib_flow_spec_type {
1358 /* L2 headers*/
1359 IB_FLOW_SPEC_ETH = 0x20,
Matan Barak240ae002013-11-07 15:25:13 +02001360 IB_FLOW_SPEC_IB = 0x22,
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001361 /* L3 header*/
1362 IB_FLOW_SPEC_IPV4 = 0x30,
1363 /* L4 headers*/
1364 IB_FLOW_SPEC_TCP = 0x40,
1365 IB_FLOW_SPEC_UDP = 0x41
1366};
Matan Barak240ae002013-11-07 15:25:13 +02001367#define IB_FLOW_SPEC_LAYER_MASK 0xF0
Matan Barak22878db2013-09-01 18:39:52 +03001368#define IB_FLOW_SPEC_SUPPORT_LAYERS 4
1369
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001370/* Flow steering rule priority is set according to it's domain.
1371 * Lower domain value means higher priority.
1372 */
1373enum ib_flow_domain {
1374 IB_FLOW_DOMAIN_USER,
1375 IB_FLOW_DOMAIN_ETHTOOL,
1376 IB_FLOW_DOMAIN_RFS,
1377 IB_FLOW_DOMAIN_NIC,
1378 IB_FLOW_DOMAIN_NUM /* Must be last */
1379};
1380
1381struct ib_flow_eth_filter {
1382 u8 dst_mac[6];
1383 u8 src_mac[6];
1384 __be16 ether_type;
1385 __be16 vlan_tag;
1386};
1387
1388struct ib_flow_spec_eth {
1389 enum ib_flow_spec_type type;
1390 u16 size;
1391 struct ib_flow_eth_filter val;
1392 struct ib_flow_eth_filter mask;
1393};
1394
Matan Barak240ae002013-11-07 15:25:13 +02001395struct ib_flow_ib_filter {
1396 __be16 dlid;
1397 __u8 sl;
1398};
1399
1400struct ib_flow_spec_ib {
1401 enum ib_flow_spec_type type;
1402 u16 size;
1403 struct ib_flow_ib_filter val;
1404 struct ib_flow_ib_filter mask;
1405};
1406
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001407struct ib_flow_ipv4_filter {
1408 __be32 src_ip;
1409 __be32 dst_ip;
1410};
1411
1412struct ib_flow_spec_ipv4 {
1413 enum ib_flow_spec_type type;
1414 u16 size;
1415 struct ib_flow_ipv4_filter val;
1416 struct ib_flow_ipv4_filter mask;
1417};
1418
1419struct ib_flow_tcp_udp_filter {
1420 __be16 dst_port;
1421 __be16 src_port;
1422};
1423
1424struct ib_flow_spec_tcp_udp {
1425 enum ib_flow_spec_type type;
1426 u16 size;
1427 struct ib_flow_tcp_udp_filter val;
1428 struct ib_flow_tcp_udp_filter mask;
1429};
1430
1431union ib_flow_spec {
1432 struct {
1433 enum ib_flow_spec_type type;
1434 u16 size;
1435 };
1436 struct ib_flow_spec_eth eth;
Matan Barak240ae002013-11-07 15:25:13 +02001437 struct ib_flow_spec_ib ib;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001438 struct ib_flow_spec_ipv4 ipv4;
1439 struct ib_flow_spec_tcp_udp tcp_udp;
1440};
1441
1442struct ib_flow_attr {
1443 enum ib_flow_attr_type type;
1444 u16 size;
1445 u16 priority;
1446 u32 flags;
1447 u8 num_of_specs;
1448 u8 port;
1449 /* Following are the optional layers according to user request
1450 * struct ib_flow_spec_xxx
1451 * struct ib_flow_spec_yyy
1452 */
1453};
1454
1455struct ib_flow {
1456 struct ib_qp *qp;
1457 struct ib_uobject *uobject;
1458};
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460struct ib_mad;
1461struct ib_grh;
1462
1463enum ib_process_mad_flags {
1464 IB_MAD_IGNORE_MKEY = 1,
1465 IB_MAD_IGNORE_BKEY = 2,
1466 IB_MAD_IGNORE_ALL = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
1467};
1468
1469enum ib_mad_result {
1470 IB_MAD_RESULT_FAILURE = 0, /* (!SUCCESS is the important flag) */
1471 IB_MAD_RESULT_SUCCESS = 1 << 0, /* MAD was successfully processed */
1472 IB_MAD_RESULT_REPLY = 1 << 1, /* Reply packet needs to be sent */
1473 IB_MAD_RESULT_CONSUMED = 1 << 2 /* Packet consumed: stop processing */
1474};
1475
1476#define IB_DEVICE_NAME_MAX 64
1477
1478struct ib_cache {
1479 rwlock_t lock;
1480 struct ib_event_handler event_handler;
1481 struct ib_pkey_cache **pkey_cache;
1482 struct ib_gid_cache **gid_cache;
Jack Morgenstein6fb9cdb2006-06-17 20:37:34 -07001483 u8 *lmc_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484};
1485
Ralph Campbell9b513092006-12-12 14:27:41 -08001486struct ib_dma_mapping_ops {
1487 int (*mapping_error)(struct ib_device *dev,
1488 u64 dma_addr);
1489 u64 (*map_single)(struct ib_device *dev,
1490 void *ptr, size_t size,
1491 enum dma_data_direction direction);
1492 void (*unmap_single)(struct ib_device *dev,
1493 u64 addr, size_t size,
1494 enum dma_data_direction direction);
1495 u64 (*map_page)(struct ib_device *dev,
1496 struct page *page, unsigned long offset,
1497 size_t size,
1498 enum dma_data_direction direction);
1499 void (*unmap_page)(struct ib_device *dev,
1500 u64 addr, size_t size,
1501 enum dma_data_direction direction);
1502 int (*map_sg)(struct ib_device *dev,
1503 struct scatterlist *sg, int nents,
1504 enum dma_data_direction direction);
1505 void (*unmap_sg)(struct ib_device *dev,
1506 struct scatterlist *sg, int nents,
1507 enum dma_data_direction direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08001508 void (*sync_single_for_cpu)(struct ib_device *dev,
1509 u64 dma_handle,
1510 size_t size,
Dotan Barak4deccd62008-07-14 23:48:44 -07001511 enum dma_data_direction dir);
Ralph Campbell9b513092006-12-12 14:27:41 -08001512 void (*sync_single_for_device)(struct ib_device *dev,
1513 u64 dma_handle,
1514 size_t size,
1515 enum dma_data_direction dir);
1516 void *(*alloc_coherent)(struct ib_device *dev,
1517 size_t size,
1518 u64 *dma_handle,
1519 gfp_t flag);
1520 void (*free_coherent)(struct ib_device *dev,
1521 size_t size, void *cpu_addr,
1522 u64 dma_handle);
1523};
1524
Tom Tucker07ebafb2006-08-03 16:02:42 -05001525struct iw_cm_verbs;
1526
Ira Weiny77386132015-05-13 20:02:58 -04001527struct ib_port_immutable {
1528 int pkey_tbl_len;
1529 int gid_tbl_len;
Ira Weinyf9b22e32015-05-13 20:02:59 -04001530 u32 core_cap_flags;
Ira Weiny77386132015-05-13 20:02:58 -04001531};
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533struct ib_device {
1534 struct device *dma_device;
1535
1536 char name[IB_DEVICE_NAME_MAX];
1537
1538 struct list_head event_handler_list;
1539 spinlock_t event_handler_lock;
1540
Alexander Chiang17a55f72010-02-02 19:09:16 +00001541 spinlock_t client_data_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 struct list_head core_list;
1543 struct list_head client_data_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 struct ib_cache cache;
Ira Weiny77386132015-05-13 20:02:58 -04001546 /**
1547 * port_immutable is indexed by port number
1548 */
1549 struct ib_port_immutable *port_immutable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03001551 int num_comp_vectors;
1552
Tom Tucker07ebafb2006-08-03 16:02:42 -05001553 struct iw_cm_verbs *iwcm;
1554
Steve Wise7f624d02008-07-14 23:48:48 -07001555 int (*get_protocol_stats)(struct ib_device *device,
1556 union rdma_protocol_stats *stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 int (*query_device)(struct ib_device *device,
1558 struct ib_device_attr *device_attr);
1559 int (*query_port)(struct ib_device *device,
1560 u8 port_num,
1561 struct ib_port_attr *port_attr);
Eli Cohena3f5ada2010-09-27 17:51:10 -07001562 enum rdma_link_layer (*get_link_layer)(struct ib_device *device,
1563 u8 port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 int (*query_gid)(struct ib_device *device,
1565 u8 port_num, int index,
1566 union ib_gid *gid);
1567 int (*query_pkey)(struct ib_device *device,
1568 u8 port_num, u16 index, u16 *pkey);
1569 int (*modify_device)(struct ib_device *device,
1570 int device_modify_mask,
1571 struct ib_device_modify *device_modify);
1572 int (*modify_port)(struct ib_device *device,
1573 u8 port_num, int port_modify_mask,
1574 struct ib_port_modify *port_modify);
Roland Dreiere2773c02005-07-07 17:57:10 -07001575 struct ib_ucontext * (*alloc_ucontext)(struct ib_device *device,
1576 struct ib_udata *udata);
1577 int (*dealloc_ucontext)(struct ib_ucontext *context);
1578 int (*mmap)(struct ib_ucontext *context,
1579 struct vm_area_struct *vma);
1580 struct ib_pd * (*alloc_pd)(struct ib_device *device,
1581 struct ib_ucontext *context,
1582 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 int (*dealloc_pd)(struct ib_pd *pd);
1584 struct ib_ah * (*create_ah)(struct ib_pd *pd,
1585 struct ib_ah_attr *ah_attr);
1586 int (*modify_ah)(struct ib_ah *ah,
1587 struct ib_ah_attr *ah_attr);
1588 int (*query_ah)(struct ib_ah *ah,
1589 struct ib_ah_attr *ah_attr);
1590 int (*destroy_ah)(struct ib_ah *ah);
Roland Dreierd41fcc62005-08-18 12:23:08 -07001591 struct ib_srq * (*create_srq)(struct ib_pd *pd,
1592 struct ib_srq_init_attr *srq_init_attr,
1593 struct ib_udata *udata);
1594 int (*modify_srq)(struct ib_srq *srq,
1595 struct ib_srq_attr *srq_attr,
Ralph Campbell9bc57e22006-08-11 14:58:09 -07001596 enum ib_srq_attr_mask srq_attr_mask,
1597 struct ib_udata *udata);
Roland Dreierd41fcc62005-08-18 12:23:08 -07001598 int (*query_srq)(struct ib_srq *srq,
1599 struct ib_srq_attr *srq_attr);
1600 int (*destroy_srq)(struct ib_srq *srq);
1601 int (*post_srq_recv)(struct ib_srq *srq,
1602 struct ib_recv_wr *recv_wr,
1603 struct ib_recv_wr **bad_recv_wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct ib_qp * (*create_qp)(struct ib_pd *pd,
Roland Dreiere2773c02005-07-07 17:57:10 -07001605 struct ib_qp_init_attr *qp_init_attr,
1606 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 int (*modify_qp)(struct ib_qp *qp,
1608 struct ib_qp_attr *qp_attr,
Ralph Campbell9bc57e22006-08-11 14:58:09 -07001609 int qp_attr_mask,
1610 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int (*query_qp)(struct ib_qp *qp,
1612 struct ib_qp_attr *qp_attr,
1613 int qp_attr_mask,
1614 struct ib_qp_init_attr *qp_init_attr);
1615 int (*destroy_qp)(struct ib_qp *qp);
1616 int (*post_send)(struct ib_qp *qp,
1617 struct ib_send_wr *send_wr,
1618 struct ib_send_wr **bad_send_wr);
1619 int (*post_recv)(struct ib_qp *qp,
1620 struct ib_recv_wr *recv_wr,
1621 struct ib_recv_wr **bad_recv_wr);
Matan Barakbcf4c1e2015-06-11 16:35:20 +03001622 struct ib_cq * (*create_cq)(struct ib_device *device,
1623 const struct ib_cq_init_attr *attr,
Roland Dreiere2773c02005-07-07 17:57:10 -07001624 struct ib_ucontext *context,
1625 struct ib_udata *udata);
Eli Cohen2dd57162008-04-16 21:09:33 -07001626 int (*modify_cq)(struct ib_cq *cq, u16 cq_count,
1627 u16 cq_period);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 int (*destroy_cq)(struct ib_cq *cq);
Roland Dreier33b9b3e2006-01-30 14:29:21 -08001629 int (*resize_cq)(struct ib_cq *cq, int cqe,
1630 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 int (*poll_cq)(struct ib_cq *cq, int num_entries,
1632 struct ib_wc *wc);
1633 int (*peek_cq)(struct ib_cq *cq, int wc_cnt);
1634 int (*req_notify_cq)(struct ib_cq *cq,
Roland Dreiered23a722007-05-06 21:02:48 -07001635 enum ib_cq_notify_flags flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 int (*req_ncomp_notif)(struct ib_cq *cq,
1637 int wc_cnt);
1638 struct ib_mr * (*get_dma_mr)(struct ib_pd *pd,
1639 int mr_access_flags);
1640 struct ib_mr * (*reg_phys_mr)(struct ib_pd *pd,
1641 struct ib_phys_buf *phys_buf_array,
1642 int num_phys_buf,
1643 int mr_access_flags,
1644 u64 *iova_start);
Roland Dreiere2773c02005-07-07 17:57:10 -07001645 struct ib_mr * (*reg_user_mr)(struct ib_pd *pd,
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001646 u64 start, u64 length,
1647 u64 virt_addr,
Roland Dreiere2773c02005-07-07 17:57:10 -07001648 int mr_access_flags,
1649 struct ib_udata *udata);
Matan Barak7e6edb92014-07-31 11:01:28 +03001650 int (*rereg_user_mr)(struct ib_mr *mr,
1651 int flags,
1652 u64 start, u64 length,
1653 u64 virt_addr,
1654 int mr_access_flags,
1655 struct ib_pd *pd,
1656 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 int (*query_mr)(struct ib_mr *mr,
1658 struct ib_mr_attr *mr_attr);
1659 int (*dereg_mr)(struct ib_mr *mr);
Sagi Grimberg17cd3a22014-02-23 14:19:04 +02001660 int (*destroy_mr)(struct ib_mr *mr);
1661 struct ib_mr * (*create_mr)(struct ib_pd *pd,
1662 struct ib_mr_init_attr *mr_init_attr);
Steve Wise00f7ec32008-07-14 23:48:45 -07001663 struct ib_mr * (*alloc_fast_reg_mr)(struct ib_pd *pd,
1664 int max_page_list_len);
1665 struct ib_fast_reg_page_list * (*alloc_fast_reg_page_list)(struct ib_device *device,
1666 int page_list_len);
1667 void (*free_fast_reg_page_list)(struct ib_fast_reg_page_list *page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 int (*rereg_phys_mr)(struct ib_mr *mr,
1669 int mr_rereg_mask,
1670 struct ib_pd *pd,
1671 struct ib_phys_buf *phys_buf_array,
1672 int num_phys_buf,
1673 int mr_access_flags,
1674 u64 *iova_start);
Shani Michaeli7083e422013-02-06 16:19:12 +00001675 struct ib_mw * (*alloc_mw)(struct ib_pd *pd,
1676 enum ib_mw_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 int (*bind_mw)(struct ib_qp *qp,
1678 struct ib_mw *mw,
1679 struct ib_mw_bind *mw_bind);
1680 int (*dealloc_mw)(struct ib_mw *mw);
1681 struct ib_fmr * (*alloc_fmr)(struct ib_pd *pd,
1682 int mr_access_flags,
1683 struct ib_fmr_attr *fmr_attr);
1684 int (*map_phys_fmr)(struct ib_fmr *fmr,
1685 u64 *page_list, int list_len,
1686 u64 iova);
1687 int (*unmap_fmr)(struct list_head *fmr_list);
1688 int (*dealloc_fmr)(struct ib_fmr *fmr);
1689 int (*attach_mcast)(struct ib_qp *qp,
1690 union ib_gid *gid,
1691 u16 lid);
1692 int (*detach_mcast)(struct ib_qp *qp,
1693 union ib_gid *gid,
1694 u16 lid);
1695 int (*process_mad)(struct ib_device *device,
1696 int process_mad_flags,
1697 u8 port_num,
Ira Weinya97e2d82015-05-31 17:15:30 -04001698 const struct ib_wc *in_wc,
1699 const struct ib_grh *in_grh,
1700 const struct ib_mad *in_mad,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 struct ib_mad *out_mad);
Sean Hefty59991f92011-05-23 17:52:46 -07001702 struct ib_xrcd * (*alloc_xrcd)(struct ib_device *device,
1703 struct ib_ucontext *ucontext,
1704 struct ib_udata *udata);
1705 int (*dealloc_xrcd)(struct ib_xrcd *xrcd);
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001706 struct ib_flow * (*create_flow)(struct ib_qp *qp,
1707 struct ib_flow_attr
1708 *flow_attr,
1709 int domain);
1710 int (*destroy_flow)(struct ib_flow *flow_id);
Sagi Grimberg1b01d332014-02-23 14:19:05 +02001711 int (*check_mr_status)(struct ib_mr *mr, u32 check_mask,
1712 struct ib_mr_status *mr_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Ralph Campbell9b513092006-12-12 14:27:41 -08001714 struct ib_dma_mapping_ops *dma_ops;
1715
Roland Dreiere2773c02005-07-07 17:57:10 -07001716 struct module *owner;
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001717 struct device dev;
Greg Kroah-Hartman35be0682007-12-17 15:54:39 -04001718 struct kobject *ports_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 struct list_head port_list;
1720
1721 enum {
1722 IB_DEV_UNINITIALIZED,
1723 IB_DEV_REGISTERED,
1724 IB_DEV_UNREGISTERED
1725 } reg_state;
1726
Roland Dreier274c0892005-09-29 14:17:48 -07001727 int uverbs_abi_ver;
Alexander Chiang17a55f72010-02-02 19:09:16 +00001728 u64 uverbs_cmd_mask;
Yann Droneaudf21519b2013-11-06 23:21:49 +01001729 u64 uverbs_ex_cmd_mask;
Roland Dreier274c0892005-09-29 14:17:48 -07001730
Roland Dreierc5bcbbb2006-02-02 09:47:14 -08001731 char node_desc[64];
Sean Heftycf311cd2006-01-10 07:39:34 -08001732 __be64 node_guid;
Steve Wise96f15c02008-07-14 23:48:53 -07001733 u32 local_dma_lkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 u8 node_type;
1735 u8 phys_port_cnt;
Ira Weiny77386132015-05-13 20:02:58 -04001736
1737 /**
1738 * The following mandatory functions are used only at device
1739 * registration. Keep functions such as these at the end of this
1740 * structure to avoid cache line misses when accessing struct ib_device
1741 * in fast paths.
1742 */
1743 int (*get_port_immutable)(struct ib_device *, u8, struct ib_port_immutable *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744};
1745
1746struct ib_client {
1747 char *name;
1748 void (*add) (struct ib_device *);
1749 void (*remove)(struct ib_device *);
1750
1751 struct list_head list;
1752};
1753
1754struct ib_device *ib_alloc_device(size_t size);
1755void ib_dealloc_device(struct ib_device *device);
1756
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001757int ib_register_device(struct ib_device *device,
1758 int (*port_callback)(struct ib_device *,
1759 u8, struct kobject *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760void ib_unregister_device(struct ib_device *device);
1761
1762int ib_register_client (struct ib_client *client);
1763void ib_unregister_client(struct ib_client *client);
1764
1765void *ib_get_client_data(struct ib_device *device, struct ib_client *client);
1766void ib_set_client_data(struct ib_device *device, struct ib_client *client,
1767 void *data);
1768
Roland Dreiere2773c02005-07-07 17:57:10 -07001769static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
1770{
1771 return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
1772}
1773
1774static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
1775{
Yann Droneaud43c611652015-02-05 22:10:18 +01001776 return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
Roland Dreiere2773c02005-07-07 17:57:10 -07001777}
1778
Roland Dreier8a518662006-02-13 12:48:12 -08001779/**
1780 * ib_modify_qp_is_ok - Check that the supplied attribute mask
1781 * contains all required attributes and no attributes not allowed for
1782 * the given QP state transition.
1783 * @cur_state: Current QP state
1784 * @next_state: Next QP state
1785 * @type: QP type
1786 * @mask: Mask of supplied QP attributes
Matan Barakdd5f03b2013-12-12 18:03:11 +02001787 * @ll : link layer of port
Roland Dreier8a518662006-02-13 12:48:12 -08001788 *
1789 * This function is a helper function that a low-level driver's
1790 * modify_qp method can use to validate the consumer's input. It
1791 * checks that cur_state and next_state are valid QP states, that a
1792 * transition from cur_state to next_state is allowed by the IB spec,
1793 * and that the attribute mask supplied is allowed for the transition.
1794 */
1795int ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
Matan Barakdd5f03b2013-12-12 18:03:11 +02001796 enum ib_qp_type type, enum ib_qp_attr_mask mask,
1797 enum rdma_link_layer ll);
Roland Dreier8a518662006-02-13 12:48:12 -08001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799int ib_register_event_handler (struct ib_event_handler *event_handler);
1800int ib_unregister_event_handler(struct ib_event_handler *event_handler);
1801void ib_dispatch_event(struct ib_event *event);
1802
1803int ib_query_device(struct ib_device *device,
1804 struct ib_device_attr *device_attr);
1805
1806int ib_query_port(struct ib_device *device,
1807 u8 port_num, struct ib_port_attr *port_attr);
1808
Eli Cohena3f5ada2010-09-27 17:51:10 -07001809enum rdma_link_layer rdma_port_get_link_layer(struct ib_device *device,
1810 u8 port_num);
1811
Ira Weiny0cf18d72015-05-13 20:02:55 -04001812/**
1813 * rdma_start_port - Return the first valid port number for the device
1814 * specified
1815 *
1816 * @device: Device to be checked
1817 *
1818 * Return start port number
1819 */
1820static inline u8 rdma_start_port(const struct ib_device *device)
1821{
1822 return (device->node_type == RDMA_NODE_IB_SWITCH) ? 0 : 1;
1823}
1824
1825/**
1826 * rdma_end_port - Return the last valid port number for the device
1827 * specified
1828 *
1829 * @device: Device to be checked
1830 *
1831 * Return last port number
1832 */
1833static inline u8 rdma_end_port(const struct ib_device *device)
1834{
1835 return (device->node_type == RDMA_NODE_IB_SWITCH) ?
1836 0 : device->phys_port_cnt;
1837}
1838
Ira Weiny5ede9282015-05-31 17:15:29 -04001839static inline bool rdma_protocol_ib(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02001840{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001841 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_IB;
Michael Wangde66be92015-05-05 14:50:19 +02001842}
1843
Ira Weiny5ede9282015-05-31 17:15:29 -04001844static inline bool rdma_protocol_roce(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02001845{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001846 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_ROCE;
Michael Wangde66be92015-05-05 14:50:19 +02001847}
1848
Ira Weiny5ede9282015-05-31 17:15:29 -04001849static inline bool rdma_protocol_iwarp(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02001850{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001851 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_IWARP;
Michael Wangde66be92015-05-05 14:50:19 +02001852}
1853
Ira Weiny5ede9282015-05-31 17:15:29 -04001854static inline bool rdma_ib_or_roce(const struct ib_device *device, u8 port_num)
Michael Wangde66be92015-05-05 14:50:19 +02001855{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001856 return device->port_immutable[port_num].core_cap_flags &
1857 (RDMA_CORE_CAP_PROT_IB | RDMA_CORE_CAP_PROT_ROCE);
Michael Wangde66be92015-05-05 14:50:19 +02001858}
1859
Michael Wangc757dea2015-05-05 14:50:32 +02001860/**
Michael Wang296ec002015-05-18 10:41:45 +02001861 * rdma_cap_ib_mad - Check if the port of a device supports Infiniband
Michael Wangc757dea2015-05-05 14:50:32 +02001862 * Management Datagrams.
Michael Wang296ec002015-05-18 10:41:45 +02001863 * @device: Device to check
1864 * @port_num: Port number to check
Michael Wangc757dea2015-05-05 14:50:32 +02001865 *
Michael Wang296ec002015-05-18 10:41:45 +02001866 * Management Datagrams (MAD) are a required part of the InfiniBand
1867 * specification and are supported on all InfiniBand devices. A slightly
1868 * extended version are also supported on OPA interfaces.
Michael Wangc757dea2015-05-05 14:50:32 +02001869 *
Michael Wang296ec002015-05-18 10:41:45 +02001870 * Return: true if the port supports sending/receiving of MAD packets.
Michael Wangc757dea2015-05-05 14:50:32 +02001871 */
Ira Weiny5ede9282015-05-31 17:15:29 -04001872static inline bool rdma_cap_ib_mad(const struct ib_device *device, u8 port_num)
Michael Wangc757dea2015-05-05 14:50:32 +02001873{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001874 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_MAD;
Michael Wangc757dea2015-05-05 14:50:32 +02001875}
1876
Michael Wang29541e32015-05-05 14:50:33 +02001877/**
Michael Wang296ec002015-05-18 10:41:45 +02001878 * rdma_cap_ib_smi - Check if the port of a device provides an Infiniband
1879 * Subnet Management Agent (SMA) on the Subnet Management Interface (SMI).
1880 * @device: Device to check
1881 * @port_num: Port number to check
Michael Wang29541e32015-05-05 14:50:33 +02001882 *
Michael Wang296ec002015-05-18 10:41:45 +02001883 * Each InfiniBand node is required to provide a Subnet Management Agent
1884 * that the subnet manager can access. Prior to the fabric being fully
1885 * configured by the subnet manager, the SMA is accessed via a well known
1886 * interface called the Subnet Management Interface (SMI). This interface
1887 * uses directed route packets to communicate with the SM to get around the
1888 * chicken and egg problem of the SM needing to know what's on the fabric
1889 * in order to configure the fabric, and needing to configure the fabric in
1890 * order to send packets to the devices on the fabric. These directed
1891 * route packets do not need the fabric fully configured in order to reach
1892 * their destination. The SMI is the only method allowed to send
1893 * directed route packets on an InfiniBand fabric.
Michael Wang29541e32015-05-05 14:50:33 +02001894 *
Michael Wang296ec002015-05-18 10:41:45 +02001895 * Return: true if the port provides an SMI.
Michael Wang29541e32015-05-05 14:50:33 +02001896 */
Ira Weiny5ede9282015-05-31 17:15:29 -04001897static inline bool rdma_cap_ib_smi(const struct ib_device *device, u8 port_num)
Michael Wang29541e32015-05-05 14:50:33 +02001898{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001899 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_SMI;
Michael Wang29541e32015-05-05 14:50:33 +02001900}
1901
Michael Wang72219cea2015-05-05 14:50:34 +02001902/**
1903 * rdma_cap_ib_cm - Check if the port of device has the capability Infiniband
1904 * Communication Manager.
Michael Wang296ec002015-05-18 10:41:45 +02001905 * @device: Device to check
1906 * @port_num: Port number to check
Michael Wang72219cea2015-05-05 14:50:34 +02001907 *
Michael Wang296ec002015-05-18 10:41:45 +02001908 * The InfiniBand Communication Manager is one of many pre-defined General
1909 * Service Agents (GSA) that are accessed via the General Service
1910 * Interface (GSI). It's role is to facilitate establishment of connections
1911 * between nodes as well as other management related tasks for established
1912 * connections.
Michael Wang72219cea2015-05-05 14:50:34 +02001913 *
Michael Wang296ec002015-05-18 10:41:45 +02001914 * Return: true if the port supports an IB CM (this does not guarantee that
1915 * a CM is actually running however).
Michael Wang72219cea2015-05-05 14:50:34 +02001916 */
Ira Weiny5ede9282015-05-31 17:15:29 -04001917static inline bool rdma_cap_ib_cm(const struct ib_device *device, u8 port_num)
Michael Wang72219cea2015-05-05 14:50:34 +02001918{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001919 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_CM;
Michael Wang72219cea2015-05-05 14:50:34 +02001920}
1921
Michael Wang04215332015-05-05 14:50:35 +02001922/**
1923 * rdma_cap_iw_cm - Check if the port of device has the capability IWARP
1924 * Communication Manager.
Michael Wang296ec002015-05-18 10:41:45 +02001925 * @device: Device to check
1926 * @port_num: Port number to check
Michael Wang04215332015-05-05 14:50:35 +02001927 *
Michael Wang296ec002015-05-18 10:41:45 +02001928 * Similar to above, but specific to iWARP connections which have a different
1929 * managment protocol than InfiniBand.
Michael Wang04215332015-05-05 14:50:35 +02001930 *
Michael Wang296ec002015-05-18 10:41:45 +02001931 * Return: true if the port supports an iWARP CM (this does not guarantee that
1932 * a CM is actually running however).
Michael Wang04215332015-05-05 14:50:35 +02001933 */
Ira Weiny5ede9282015-05-31 17:15:29 -04001934static inline bool rdma_cap_iw_cm(const struct ib_device *device, u8 port_num)
Michael Wang04215332015-05-05 14:50:35 +02001935{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001936 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IW_CM;
Michael Wang04215332015-05-05 14:50:35 +02001937}
1938
Michael Wangfe53ba22015-05-05 14:50:36 +02001939/**
1940 * rdma_cap_ib_sa - Check if the port of device has the capability Infiniband
1941 * Subnet Administration.
Michael Wang296ec002015-05-18 10:41:45 +02001942 * @device: Device to check
1943 * @port_num: Port number to check
Michael Wangfe53ba22015-05-05 14:50:36 +02001944 *
Michael Wang296ec002015-05-18 10:41:45 +02001945 * An InfiniBand Subnet Administration (SA) service is a pre-defined General
1946 * Service Agent (GSA) provided by the Subnet Manager (SM). On InfiniBand
1947 * fabrics, devices should resolve routes to other hosts by contacting the
1948 * SA to query the proper route.
Michael Wangfe53ba22015-05-05 14:50:36 +02001949 *
Michael Wang296ec002015-05-18 10:41:45 +02001950 * Return: true if the port should act as a client to the fabric Subnet
1951 * Administration interface. This does not imply that the SA service is
1952 * running locally.
Michael Wangfe53ba22015-05-05 14:50:36 +02001953 */
Ira Weiny5ede9282015-05-31 17:15:29 -04001954static inline bool rdma_cap_ib_sa(const struct ib_device *device, u8 port_num)
Michael Wangfe53ba22015-05-05 14:50:36 +02001955{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001956 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_SA;
Michael Wangfe53ba22015-05-05 14:50:36 +02001957}
1958
Michael Wanga31ad3b2015-05-05 14:50:37 +02001959/**
1960 * rdma_cap_ib_mcast - Check if the port of device has the capability Infiniband
1961 * Multicast.
Michael Wang296ec002015-05-18 10:41:45 +02001962 * @device: Device to check
1963 * @port_num: Port number to check
Michael Wanga31ad3b2015-05-05 14:50:37 +02001964 *
Michael Wang296ec002015-05-18 10:41:45 +02001965 * InfiniBand multicast registration is more complex than normal IPv4 or
1966 * IPv6 multicast registration. Each Host Channel Adapter must register
1967 * with the Subnet Manager when it wishes to join a multicast group. It
1968 * should do so only once regardless of how many queue pairs it subscribes
1969 * to this group. And it should leave the group only after all queue pairs
1970 * attached to the group have been detached.
Michael Wanga31ad3b2015-05-05 14:50:37 +02001971 *
Michael Wang296ec002015-05-18 10:41:45 +02001972 * Return: true if the port must undertake the additional adminstrative
1973 * overhead of registering/unregistering with the SM and tracking of the
1974 * total number of queue pairs attached to the multicast group.
Michael Wanga31ad3b2015-05-05 14:50:37 +02001975 */
Ira Weiny5ede9282015-05-31 17:15:29 -04001976static inline bool rdma_cap_ib_mcast(const struct ib_device *device, u8 port_num)
Michael Wanga31ad3b2015-05-05 14:50:37 +02001977{
1978 return rdma_cap_ib_sa(device, port_num);
1979}
1980
Michael Wangbc0f1d72015-05-05 14:50:38 +02001981/**
Michael Wang30a74ef2015-05-05 14:50:39 +02001982 * rdma_cap_af_ib - Check if the port of device has the capability
1983 * Native Infiniband Address.
Michael Wang296ec002015-05-18 10:41:45 +02001984 * @device: Device to check
1985 * @port_num: Port number to check
Michael Wang30a74ef2015-05-05 14:50:39 +02001986 *
Michael Wang296ec002015-05-18 10:41:45 +02001987 * InfiniBand addressing uses a port's GUID + Subnet Prefix to make a default
1988 * GID. RoCE uses a different mechanism, but still generates a GID via
1989 * a prescribed mechanism and port specific data.
Michael Wang30a74ef2015-05-05 14:50:39 +02001990 *
Michael Wang296ec002015-05-18 10:41:45 +02001991 * Return: true if the port uses a GID address to identify devices on the
1992 * network.
Michael Wang30a74ef2015-05-05 14:50:39 +02001993 */
Ira Weiny5ede9282015-05-31 17:15:29 -04001994static inline bool rdma_cap_af_ib(const struct ib_device *device, u8 port_num)
Michael Wang30a74ef2015-05-05 14:50:39 +02001995{
Ira Weinyf9b22e32015-05-13 20:02:59 -04001996 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_AF_IB;
Michael Wang30a74ef2015-05-05 14:50:39 +02001997}
1998
1999/**
Michael Wang227128f2015-05-05 14:50:40 +02002000 * rdma_cap_eth_ah - Check if the port of device has the capability
Michael Wang296ec002015-05-18 10:41:45 +02002001 * Ethernet Address Handle.
2002 * @device: Device to check
2003 * @port_num: Port number to check
Michael Wang227128f2015-05-05 14:50:40 +02002004 *
Michael Wang296ec002015-05-18 10:41:45 +02002005 * RoCE is InfiniBand over Ethernet, and it uses a well defined technique
2006 * to fabricate GIDs over Ethernet/IP specific addresses native to the
2007 * port. Normally, packet headers are generated by the sending host
2008 * adapter, but when sending connectionless datagrams, we must manually
2009 * inject the proper headers for the fabric we are communicating over.
Michael Wang227128f2015-05-05 14:50:40 +02002010 *
Michael Wang296ec002015-05-18 10:41:45 +02002011 * Return: true if we are running as a RoCE port and must force the
2012 * addition of a Global Route Header built from our Ethernet Address
2013 * Handle into our header list for connectionless packets.
Michael Wang227128f2015-05-05 14:50:40 +02002014 */
Ira Weiny5ede9282015-05-31 17:15:29 -04002015static inline bool rdma_cap_eth_ah(const struct ib_device *device, u8 port_num)
Michael Wang227128f2015-05-05 14:50:40 +02002016{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002017 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_ETH_AH;
Michael Wang227128f2015-05-05 14:50:40 +02002018}
2019
2020/**
Michael Wangbc0f1d72015-05-05 14:50:38 +02002021 * rdma_cap_read_multi_sge - Check if the port of device has the capability
2022 * RDMA Read Multiple Scatter-Gather Entries.
Michael Wang296ec002015-05-18 10:41:45 +02002023 * @device: Device to check
2024 * @port_num: Port number to check
Michael Wangbc0f1d72015-05-05 14:50:38 +02002025 *
Michael Wang296ec002015-05-18 10:41:45 +02002026 * iWARP has a restriction that RDMA READ requests may only have a single
2027 * Scatter/Gather Entry (SGE) in the work request.
Michael Wangbc0f1d72015-05-05 14:50:38 +02002028 *
Michael Wang296ec002015-05-18 10:41:45 +02002029 * NOTE: although the linux kernel currently assumes all devices are either
2030 * single SGE RDMA READ devices or identical SGE maximums for RDMA READs and
2031 * WRITEs, according to Tom Talpey, this is not accurate. There are some
2032 * devices out there that support more than a single SGE on RDMA READ
2033 * requests, but do not support the same number of SGEs as they do on
2034 * RDMA WRITE requests. The linux kernel would need rearchitecting to
2035 * support these imbalanced READ/WRITE SGEs allowed devices. So, for now,
2036 * suffice with either the device supports the same READ/WRITE SGEs, or
2037 * it only gets one READ sge.
2038 *
2039 * Return: true for any device that allows more than one SGE in RDMA READ
2040 * requests.
Michael Wangbc0f1d72015-05-05 14:50:38 +02002041 */
2042static inline bool rdma_cap_read_multi_sge(struct ib_device *device,
2043 u8 port_num)
2044{
Ira Weinyf9b22e32015-05-13 20:02:59 -04002045 return !(device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_IWARP);
Michael Wangbc0f1d72015-05-05 14:50:38 +02002046}
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048int ib_query_gid(struct ib_device *device,
2049 u8 port_num, int index, union ib_gid *gid);
2050
2051int ib_query_pkey(struct ib_device *device,
2052 u8 port_num, u16 index, u16 *pkey);
2053
2054int ib_modify_device(struct ib_device *device,
2055 int device_modify_mask,
2056 struct ib_device_modify *device_modify);
2057
2058int ib_modify_port(struct ib_device *device,
2059 u8 port_num, int port_modify_mask,
2060 struct ib_port_modify *port_modify);
2061
Yosef Etigin5eb620c2007-05-14 07:26:51 +03002062int ib_find_gid(struct ib_device *device, union ib_gid *gid,
2063 u8 *port_num, u16 *index);
2064
2065int ib_find_pkey(struct ib_device *device,
2066 u8 port_num, u16 pkey, u16 *index);
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/**
2069 * ib_alloc_pd - Allocates an unused protection domain.
2070 * @device: The device on which to allocate the protection domain.
2071 *
2072 * A protection domain object provides an association between QPs, shared
2073 * receive queues, address handles, memory regions, and memory windows.
2074 */
2075struct ib_pd *ib_alloc_pd(struct ib_device *device);
2076
2077/**
2078 * ib_dealloc_pd - Deallocates a protection domain.
2079 * @pd: The protection domain to deallocate.
2080 */
2081int ib_dealloc_pd(struct ib_pd *pd);
2082
2083/**
2084 * ib_create_ah - Creates an address handle for the given address vector.
2085 * @pd: The protection domain associated with the address handle.
2086 * @ah_attr: The attributes of the address vector.
2087 *
2088 * The address handle is used to reference a local or global destination
2089 * in all UD QP post sends.
2090 */
2091struct ib_ah *ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
2092
2093/**
Sean Hefty4e00d692006-06-17 20:37:39 -07002094 * ib_init_ah_from_wc - Initializes address handle attributes from a
2095 * work completion.
2096 * @device: Device on which the received message arrived.
2097 * @port_num: Port on which the received message arrived.
2098 * @wc: Work completion associated with the received message.
2099 * @grh: References the received global route header. This parameter is
2100 * ignored unless the work completion indicates that the GRH is valid.
2101 * @ah_attr: Returned attributes that can be used when creating an address
2102 * handle for replying to the message.
2103 */
Ira Weiny73cdaae2015-05-31 17:15:31 -04002104int ib_init_ah_from_wc(struct ib_device *device, u8 port_num,
2105 const struct ib_wc *wc, const struct ib_grh *grh,
2106 struct ib_ah_attr *ah_attr);
Sean Hefty4e00d692006-06-17 20:37:39 -07002107
2108/**
Hal Rosenstock513789e2005-07-27 11:45:34 -07002109 * ib_create_ah_from_wc - Creates an address handle associated with the
2110 * sender of the specified work completion.
2111 * @pd: The protection domain associated with the address handle.
2112 * @wc: Work completion information associated with a received message.
2113 * @grh: References the received global route header. This parameter is
2114 * ignored unless the work completion indicates that the GRH is valid.
2115 * @port_num: The outbound port number to associate with the address.
2116 *
2117 * The address handle is used to reference a local or global destination
2118 * in all UD QP post sends.
2119 */
Ira Weiny73cdaae2015-05-31 17:15:31 -04002120struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, const struct ib_wc *wc,
2121 const struct ib_grh *grh, u8 port_num);
Hal Rosenstock513789e2005-07-27 11:45:34 -07002122
2123/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 * ib_modify_ah - Modifies the address vector associated with an address
2125 * handle.
2126 * @ah: The address handle to modify.
2127 * @ah_attr: The new address vector attributes to associate with the
2128 * address handle.
2129 */
2130int ib_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
2131
2132/**
2133 * ib_query_ah - Queries the address vector associated with an address
2134 * handle.
2135 * @ah: The address handle to query.
2136 * @ah_attr: The address vector attributes associated with the address
2137 * handle.
2138 */
2139int ib_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
2140
2141/**
2142 * ib_destroy_ah - Destroys an address handle.
2143 * @ah: The address handle to destroy.
2144 */
2145int ib_destroy_ah(struct ib_ah *ah);
2146
2147/**
Roland Dreierd41fcc62005-08-18 12:23:08 -07002148 * ib_create_srq - Creates a SRQ associated with the specified protection
2149 * domain.
2150 * @pd: The protection domain associated with the SRQ.
Dotan Barakabb6e9b2006-02-23 12:13:51 -08002151 * @srq_init_attr: A list of initial attributes required to create the
2152 * SRQ. If SRQ creation succeeds, then the attributes are updated to
2153 * the actual capabilities of the created SRQ.
Roland Dreierd41fcc62005-08-18 12:23:08 -07002154 *
2155 * srq_attr->max_wr and srq_attr->max_sge are read the determine the
2156 * requested size of the SRQ, and set to the actual values allocated
2157 * on return. If ib_create_srq() succeeds, then max_wr and max_sge
2158 * will always be at least as large as the requested values.
2159 */
2160struct ib_srq *ib_create_srq(struct ib_pd *pd,
2161 struct ib_srq_init_attr *srq_init_attr);
2162
2163/**
2164 * ib_modify_srq - Modifies the attributes for the specified SRQ.
2165 * @srq: The SRQ to modify.
2166 * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
2167 * the current values of selected SRQ attributes are returned.
2168 * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
2169 * are being modified.
2170 *
2171 * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
2172 * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
2173 * the number of receives queued drops below the limit.
2174 */
2175int ib_modify_srq(struct ib_srq *srq,
2176 struct ib_srq_attr *srq_attr,
2177 enum ib_srq_attr_mask srq_attr_mask);
2178
2179/**
2180 * ib_query_srq - Returns the attribute list and current values for the
2181 * specified SRQ.
2182 * @srq: The SRQ to query.
2183 * @srq_attr: The attributes of the specified SRQ.
2184 */
2185int ib_query_srq(struct ib_srq *srq,
2186 struct ib_srq_attr *srq_attr);
2187
2188/**
2189 * ib_destroy_srq - Destroys the specified SRQ.
2190 * @srq: The SRQ to destroy.
2191 */
2192int ib_destroy_srq(struct ib_srq *srq);
2193
2194/**
2195 * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
2196 * @srq: The SRQ to post the work request on.
2197 * @recv_wr: A list of work requests to post on the receive queue.
2198 * @bad_recv_wr: On an immediate failure, this parameter will reference
2199 * the work request that failed to be posted on the QP.
2200 */
2201static inline int ib_post_srq_recv(struct ib_srq *srq,
2202 struct ib_recv_wr *recv_wr,
2203 struct ib_recv_wr **bad_recv_wr)
2204{
2205 return srq->device->post_srq_recv(srq, recv_wr, bad_recv_wr);
2206}
2207
2208/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 * ib_create_qp - Creates a QP associated with the specified protection
2210 * domain.
2211 * @pd: The protection domain associated with the QP.
Dotan Barakabb6e9b2006-02-23 12:13:51 -08002212 * @qp_init_attr: A list of initial attributes required to create the
2213 * QP. If QP creation succeeds, then the attributes are updated to
2214 * the actual capabilities of the created QP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 */
2216struct ib_qp *ib_create_qp(struct ib_pd *pd,
2217 struct ib_qp_init_attr *qp_init_attr);
2218
2219/**
2220 * ib_modify_qp - Modifies the attributes for the specified QP and then
2221 * transitions the QP to the given state.
2222 * @qp: The QP to modify.
2223 * @qp_attr: On input, specifies the QP attributes to modify. On output,
2224 * the current values of selected QP attributes are returned.
2225 * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
2226 * are being modified.
2227 */
2228int ib_modify_qp(struct ib_qp *qp,
2229 struct ib_qp_attr *qp_attr,
2230 int qp_attr_mask);
2231
2232/**
2233 * ib_query_qp - Returns the attribute list and current values for the
2234 * specified QP.
2235 * @qp: The QP to query.
2236 * @qp_attr: The attributes of the specified QP.
2237 * @qp_attr_mask: A bit-mask used to select specific attributes to query.
2238 * @qp_init_attr: Additional attributes of the selected QP.
2239 *
2240 * The qp_attr_mask may be used to limit the query to gathering only the
2241 * selected attributes.
2242 */
2243int ib_query_qp(struct ib_qp *qp,
2244 struct ib_qp_attr *qp_attr,
2245 int qp_attr_mask,
2246 struct ib_qp_init_attr *qp_init_attr);
2247
2248/**
2249 * ib_destroy_qp - Destroys the specified QP.
2250 * @qp: The QP to destroy.
2251 */
2252int ib_destroy_qp(struct ib_qp *qp);
2253
2254/**
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002255 * ib_open_qp - Obtain a reference to an existing sharable QP.
2256 * @xrcd - XRC domain
2257 * @qp_open_attr: Attributes identifying the QP to open.
2258 *
2259 * Returns a reference to a sharable QP.
2260 */
2261struct ib_qp *ib_open_qp(struct ib_xrcd *xrcd,
2262 struct ib_qp_open_attr *qp_open_attr);
2263
2264/**
2265 * ib_close_qp - Release an external reference to a QP.
Sean Heftyd3d72d92011-05-26 23:06:44 -07002266 * @qp: The QP handle to release
2267 *
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002268 * The opened QP handle is released by the caller. The underlying
2269 * shared QP is not destroyed until all internal references are released.
Sean Heftyd3d72d92011-05-26 23:06:44 -07002270 */
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002271int ib_close_qp(struct ib_qp *qp);
Sean Heftyd3d72d92011-05-26 23:06:44 -07002272
2273/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 * ib_post_send - Posts a list of work requests to the send queue of
2275 * the specified QP.
2276 * @qp: The QP to post the work request on.
2277 * @send_wr: A list of work requests to post on the send queue.
2278 * @bad_send_wr: On an immediate failure, this parameter will reference
2279 * the work request that failed to be posted on the QP.
Bart Van Assche55464d42009-12-09 14:20:04 -08002280 *
2281 * While IBA Vol. 1 section 11.4.1.1 specifies that if an immediate
2282 * error is returned, the QP state shall not be affected,
2283 * ib_post_send() will return an immediate error after queueing any
2284 * earlier work requests in the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 */
2286static inline int ib_post_send(struct ib_qp *qp,
2287 struct ib_send_wr *send_wr,
2288 struct ib_send_wr **bad_send_wr)
2289{
2290 return qp->device->post_send(qp, send_wr, bad_send_wr);
2291}
2292
2293/**
2294 * ib_post_recv - Posts a list of work requests to the receive queue of
2295 * the specified QP.
2296 * @qp: The QP to post the work request on.
2297 * @recv_wr: A list of work requests to post on the receive queue.
2298 * @bad_recv_wr: On an immediate failure, this parameter will reference
2299 * the work request that failed to be posted on the QP.
2300 */
2301static inline int ib_post_recv(struct ib_qp *qp,
2302 struct ib_recv_wr *recv_wr,
2303 struct ib_recv_wr **bad_recv_wr)
2304{
2305 return qp->device->post_recv(qp, recv_wr, bad_recv_wr);
2306}
2307
2308/**
2309 * ib_create_cq - Creates a CQ on the specified device.
2310 * @device: The device on which to create the CQ.
2311 * @comp_handler: A user-specified callback that is invoked when a
2312 * completion event occurs on the CQ.
2313 * @event_handler: A user-specified callback that is invoked when an
2314 * asynchronous event not associated with a completion occurs on the CQ.
2315 * @cq_context: Context associated with the CQ returned to the user via
2316 * the associated completion and event handlers.
2317 * @cqe: The minimum size of the CQ.
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03002318 * @comp_vector - Completion vector used to signal completion events.
2319 * Must be >= 0 and < context->num_comp_vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 *
2321 * Users can examine the cq structure to determine the actual CQ size.
2322 */
2323struct ib_cq *ib_create_cq(struct ib_device *device,
2324 ib_comp_handler comp_handler,
2325 void (*event_handler)(struct ib_event *, void *),
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03002326 void *cq_context, int cqe, int comp_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328/**
2329 * ib_resize_cq - Modifies the capacity of the CQ.
2330 * @cq: The CQ to resize.
2331 * @cqe: The minimum size of the CQ.
2332 *
2333 * Users can examine the cq structure to determine the actual CQ size.
2334 */
2335int ib_resize_cq(struct ib_cq *cq, int cqe);
2336
2337/**
Eli Cohen2dd57162008-04-16 21:09:33 -07002338 * ib_modify_cq - Modifies moderation params of the CQ
2339 * @cq: The CQ to modify.
2340 * @cq_count: number of CQEs that will trigger an event
2341 * @cq_period: max period of time in usec before triggering an event
2342 *
2343 */
2344int ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
2345
2346/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 * ib_destroy_cq - Destroys the specified CQ.
2348 * @cq: The CQ to destroy.
2349 */
2350int ib_destroy_cq(struct ib_cq *cq);
2351
2352/**
2353 * ib_poll_cq - poll a CQ for completion(s)
2354 * @cq:the CQ being polled
2355 * @num_entries:maximum number of completions to return
2356 * @wc:array of at least @num_entries &struct ib_wc where completions
2357 * will be returned
2358 *
2359 * Poll a CQ for (possibly multiple) completions. If the return value
2360 * is < 0, an error occurred. If the return value is >= 0, it is the
2361 * number of completions returned. If the return value is
2362 * non-negative and < num_entries, then the CQ was emptied.
2363 */
2364static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
2365 struct ib_wc *wc)
2366{
2367 return cq->device->poll_cq(cq, num_entries, wc);
2368}
2369
2370/**
2371 * ib_peek_cq - Returns the number of unreaped completions currently
2372 * on the specified CQ.
2373 * @cq: The CQ to peek.
2374 * @wc_cnt: A minimum number of unreaped completions to check for.
2375 *
2376 * If the number of unreaped completions is greater than or equal to wc_cnt,
2377 * this function returns wc_cnt, otherwise, it returns the actual number of
2378 * unreaped completions.
2379 */
2380int ib_peek_cq(struct ib_cq *cq, int wc_cnt);
2381
2382/**
2383 * ib_req_notify_cq - Request completion notification on a CQ.
2384 * @cq: The CQ to generate an event for.
Roland Dreiered23a722007-05-06 21:02:48 -07002385 * @flags:
2386 * Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
2387 * to request an event on the next solicited event or next work
2388 * completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
2389 * may also be |ed in to request a hint about missed events, as
2390 * described below.
2391 *
2392 * Return Value:
2393 * < 0 means an error occurred while requesting notification
2394 * == 0 means notification was requested successfully, and if
2395 * IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
2396 * were missed and it is safe to wait for another event. In
2397 * this case is it guaranteed that any work completions added
2398 * to the CQ since the last CQ poll will trigger a completion
2399 * notification event.
2400 * > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
2401 * in. It means that the consumer must poll the CQ again to
2402 * make sure it is empty to avoid missing an event because of a
2403 * race between requesting notification and an entry being
2404 * added to the CQ. This return value means it is possible
2405 * (but not guaranteed) that a work completion has been added
2406 * to the CQ since the last poll without triggering a
2407 * completion notification event.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
2409static inline int ib_req_notify_cq(struct ib_cq *cq,
Roland Dreiered23a722007-05-06 21:02:48 -07002410 enum ib_cq_notify_flags flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Roland Dreiered23a722007-05-06 21:02:48 -07002412 return cq->device->req_notify_cq(cq, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413}
2414
2415/**
2416 * ib_req_ncomp_notif - Request completion notification when there are
2417 * at least the specified number of unreaped completions on the CQ.
2418 * @cq: The CQ to generate an event for.
2419 * @wc_cnt: The number of unreaped completions that should be on the
2420 * CQ before an event is generated.
2421 */
2422static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
2423{
2424 return cq->device->req_ncomp_notif ?
2425 cq->device->req_ncomp_notif(cq, wc_cnt) :
2426 -ENOSYS;
2427}
2428
2429/**
2430 * ib_get_dma_mr - Returns a memory region for system memory that is
2431 * usable for DMA.
2432 * @pd: The protection domain associated with the memory region.
2433 * @mr_access_flags: Specifies the memory access rights.
Ralph Campbell9b513092006-12-12 14:27:41 -08002434 *
2435 * Note that the ib_dma_*() functions defined below must be used
2436 * to create/destroy addresses used with the Lkey or Rkey returned
2437 * by ib_get_dma_mr().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 */
2439struct ib_mr *ib_get_dma_mr(struct ib_pd *pd, int mr_access_flags);
2440
2441/**
Ralph Campbell9b513092006-12-12 14:27:41 -08002442 * ib_dma_mapping_error - check a DMA addr for error
2443 * @dev: The device for which the dma_addr was created
2444 * @dma_addr: The DMA address to check
2445 */
2446static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
2447{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002448 if (dev->dma_ops)
2449 return dev->dma_ops->mapping_error(dev, dma_addr);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07002450 return dma_mapping_error(dev->dma_device, dma_addr);
Ralph Campbell9b513092006-12-12 14:27:41 -08002451}
2452
2453/**
2454 * ib_dma_map_single - Map a kernel virtual address to DMA address
2455 * @dev: The device for which the dma_addr is to be created
2456 * @cpu_addr: The kernel virtual address
2457 * @size: The size of the region in bytes
2458 * @direction: The direction of the DMA
2459 */
2460static inline u64 ib_dma_map_single(struct ib_device *dev,
2461 void *cpu_addr, size_t size,
2462 enum dma_data_direction direction)
2463{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002464 if (dev->dma_ops)
2465 return dev->dma_ops->map_single(dev, cpu_addr, size, direction);
2466 return dma_map_single(dev->dma_device, cpu_addr, size, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08002467}
2468
2469/**
2470 * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
2471 * @dev: The device for which the DMA address was created
2472 * @addr: The DMA address
2473 * @size: The size of the region in bytes
2474 * @direction: The direction of the DMA
2475 */
2476static inline void ib_dma_unmap_single(struct ib_device *dev,
2477 u64 addr, size_t size,
2478 enum dma_data_direction direction)
2479{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002480 if (dev->dma_ops)
2481 dev->dma_ops->unmap_single(dev, addr, size, direction);
2482 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002483 dma_unmap_single(dev->dma_device, addr, size, direction);
2484}
2485
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07002486static inline u64 ib_dma_map_single_attrs(struct ib_device *dev,
2487 void *cpu_addr, size_t size,
2488 enum dma_data_direction direction,
2489 struct dma_attrs *attrs)
2490{
2491 return dma_map_single_attrs(dev->dma_device, cpu_addr, size,
2492 direction, attrs);
2493}
2494
2495static inline void ib_dma_unmap_single_attrs(struct ib_device *dev,
2496 u64 addr, size_t size,
2497 enum dma_data_direction direction,
2498 struct dma_attrs *attrs)
2499{
2500 return dma_unmap_single_attrs(dev->dma_device, addr, size,
2501 direction, attrs);
2502}
2503
Ralph Campbell9b513092006-12-12 14:27:41 -08002504/**
2505 * ib_dma_map_page - Map a physical page to DMA address
2506 * @dev: The device for which the dma_addr is to be created
2507 * @page: The page to be mapped
2508 * @offset: The offset within the page
2509 * @size: The size of the region in bytes
2510 * @direction: The direction of the DMA
2511 */
2512static inline u64 ib_dma_map_page(struct ib_device *dev,
2513 struct page *page,
2514 unsigned long offset,
2515 size_t size,
2516 enum dma_data_direction direction)
2517{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002518 if (dev->dma_ops)
2519 return dev->dma_ops->map_page(dev, page, offset, size, direction);
2520 return dma_map_page(dev->dma_device, page, offset, size, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08002521}
2522
2523/**
2524 * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
2525 * @dev: The device for which the DMA address was created
2526 * @addr: The DMA address
2527 * @size: The size of the region in bytes
2528 * @direction: The direction of the DMA
2529 */
2530static inline void ib_dma_unmap_page(struct ib_device *dev,
2531 u64 addr, size_t size,
2532 enum dma_data_direction direction)
2533{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002534 if (dev->dma_ops)
2535 dev->dma_ops->unmap_page(dev, addr, size, direction);
2536 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002537 dma_unmap_page(dev->dma_device, addr, size, direction);
2538}
2539
2540/**
2541 * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
2542 * @dev: The device for which the DMA addresses are to be created
2543 * @sg: The array of scatter/gather entries
2544 * @nents: The number of scatter/gather entries
2545 * @direction: The direction of the DMA
2546 */
2547static inline int ib_dma_map_sg(struct ib_device *dev,
2548 struct scatterlist *sg, int nents,
2549 enum dma_data_direction direction)
2550{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002551 if (dev->dma_ops)
2552 return dev->dma_ops->map_sg(dev, sg, nents, direction);
2553 return dma_map_sg(dev->dma_device, sg, nents, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08002554}
2555
2556/**
2557 * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
2558 * @dev: The device for which the DMA addresses were created
2559 * @sg: The array of scatter/gather entries
2560 * @nents: The number of scatter/gather entries
2561 * @direction: The direction of the DMA
2562 */
2563static inline void ib_dma_unmap_sg(struct ib_device *dev,
2564 struct scatterlist *sg, int nents,
2565 enum dma_data_direction direction)
2566{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002567 if (dev->dma_ops)
2568 dev->dma_ops->unmap_sg(dev, sg, nents, direction);
2569 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002570 dma_unmap_sg(dev->dma_device, sg, nents, direction);
2571}
2572
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07002573static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
2574 struct scatterlist *sg, int nents,
2575 enum dma_data_direction direction,
2576 struct dma_attrs *attrs)
2577{
2578 return dma_map_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2579}
2580
2581static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
2582 struct scatterlist *sg, int nents,
2583 enum dma_data_direction direction,
2584 struct dma_attrs *attrs)
2585{
2586 dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2587}
Ralph Campbell9b513092006-12-12 14:27:41 -08002588/**
2589 * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
2590 * @dev: The device for which the DMA addresses were created
2591 * @sg: The scatter/gather entry
Mike Marciniszynea58a592014-03-28 13:26:59 -04002592 *
2593 * Note: this function is obsolete. To do: change all occurrences of
2594 * ib_sg_dma_address() into sg_dma_address().
Ralph Campbell9b513092006-12-12 14:27:41 -08002595 */
2596static inline u64 ib_sg_dma_address(struct ib_device *dev,
2597 struct scatterlist *sg)
2598{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002599 return sg_dma_address(sg);
Ralph Campbell9b513092006-12-12 14:27:41 -08002600}
2601
2602/**
2603 * ib_sg_dma_len - Return the DMA length from a scatter/gather entry
2604 * @dev: The device for which the DMA addresses were created
2605 * @sg: The scatter/gather entry
Mike Marciniszynea58a592014-03-28 13:26:59 -04002606 *
2607 * Note: this function is obsolete. To do: change all occurrences of
2608 * ib_sg_dma_len() into sg_dma_len().
Ralph Campbell9b513092006-12-12 14:27:41 -08002609 */
2610static inline unsigned int ib_sg_dma_len(struct ib_device *dev,
2611 struct scatterlist *sg)
2612{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002613 return sg_dma_len(sg);
Ralph Campbell9b513092006-12-12 14:27:41 -08002614}
2615
2616/**
2617 * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
2618 * @dev: The device for which the DMA address was created
2619 * @addr: The DMA address
2620 * @size: The size of the region in bytes
2621 * @dir: The direction of the DMA
2622 */
2623static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
2624 u64 addr,
2625 size_t size,
2626 enum dma_data_direction dir)
2627{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002628 if (dev->dma_ops)
2629 dev->dma_ops->sync_single_for_cpu(dev, addr, size, dir);
2630 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002631 dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
2632}
2633
2634/**
2635 * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
2636 * @dev: The device for which the DMA address was created
2637 * @addr: The DMA address
2638 * @size: The size of the region in bytes
2639 * @dir: The direction of the DMA
2640 */
2641static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
2642 u64 addr,
2643 size_t size,
2644 enum dma_data_direction dir)
2645{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002646 if (dev->dma_ops)
2647 dev->dma_ops->sync_single_for_device(dev, addr, size, dir);
2648 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002649 dma_sync_single_for_device(dev->dma_device, addr, size, dir);
2650}
2651
2652/**
2653 * ib_dma_alloc_coherent - Allocate memory and map it for DMA
2654 * @dev: The device for which the DMA address is requested
2655 * @size: The size of the region to allocate in bytes
2656 * @dma_handle: A pointer for returning the DMA address of the region
2657 * @flag: memory allocator flags
2658 */
2659static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
2660 size_t size,
2661 u64 *dma_handle,
2662 gfp_t flag)
2663{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002664 if (dev->dma_ops)
2665 return dev->dma_ops->alloc_coherent(dev, size, dma_handle, flag);
Roland Dreierc59a3da2006-12-15 13:57:26 -08002666 else {
2667 dma_addr_t handle;
2668 void *ret;
2669
2670 ret = dma_alloc_coherent(dev->dma_device, size, &handle, flag);
2671 *dma_handle = handle;
2672 return ret;
2673 }
Ralph Campbell9b513092006-12-12 14:27:41 -08002674}
2675
2676/**
2677 * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
2678 * @dev: The device for which the DMA addresses were allocated
2679 * @size: The size of the region
2680 * @cpu_addr: the address returned by ib_dma_alloc_coherent()
2681 * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
2682 */
2683static inline void ib_dma_free_coherent(struct ib_device *dev,
2684 size_t size, void *cpu_addr,
2685 u64 dma_handle)
2686{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002687 if (dev->dma_ops)
2688 dev->dma_ops->free_coherent(dev, size, cpu_addr, dma_handle);
2689 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002690 dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
2691}
2692
2693/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 * ib_reg_phys_mr - Prepares a virtually addressed memory region for use
2695 * by an HCA.
2696 * @pd: The protection domain associated assigned to the registered region.
2697 * @phys_buf_array: Specifies a list of physical buffers to use in the
2698 * memory region.
2699 * @num_phys_buf: Specifies the size of the phys_buf_array.
2700 * @mr_access_flags: Specifies the memory access rights.
2701 * @iova_start: The offset of the region's starting I/O virtual address.
2702 */
2703struct ib_mr *ib_reg_phys_mr(struct ib_pd *pd,
2704 struct ib_phys_buf *phys_buf_array,
2705 int num_phys_buf,
2706 int mr_access_flags,
2707 u64 *iova_start);
2708
2709/**
2710 * ib_rereg_phys_mr - Modifies the attributes of an existing memory region.
2711 * Conceptually, this call performs the functions deregister memory region
2712 * followed by register physical memory region. Where possible,
2713 * resources are reused instead of deallocated and reallocated.
2714 * @mr: The memory region to modify.
2715 * @mr_rereg_mask: A bit-mask used to indicate which of the following
2716 * properties of the memory region are being modified.
2717 * @pd: If %IB_MR_REREG_PD is set in mr_rereg_mask, this field specifies
2718 * the new protection domain to associated with the memory region,
2719 * otherwise, this parameter is ignored.
2720 * @phys_buf_array: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2721 * field specifies a list of physical buffers to use in the new
2722 * translation, otherwise, this parameter is ignored.
2723 * @num_phys_buf: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2724 * field specifies the size of the phys_buf_array, otherwise, this
2725 * parameter is ignored.
2726 * @mr_access_flags: If %IB_MR_REREG_ACCESS is set in mr_rereg_mask, this
2727 * field specifies the new memory access rights, otherwise, this
2728 * parameter is ignored.
2729 * @iova_start: The offset of the region's starting I/O virtual address.
2730 */
2731int ib_rereg_phys_mr(struct ib_mr *mr,
2732 int mr_rereg_mask,
2733 struct ib_pd *pd,
2734 struct ib_phys_buf *phys_buf_array,
2735 int num_phys_buf,
2736 int mr_access_flags,
2737 u64 *iova_start);
2738
2739/**
2740 * ib_query_mr - Retrieves information about a specific memory region.
2741 * @mr: The memory region to retrieve information about.
2742 * @mr_attr: The attributes of the specified memory region.
2743 */
2744int ib_query_mr(struct ib_mr *mr, struct ib_mr_attr *mr_attr);
2745
2746/**
2747 * ib_dereg_mr - Deregisters a memory region and removes it from the
2748 * HCA translation table.
2749 * @mr: The memory region to deregister.
Shani Michaeli7083e422013-02-06 16:19:12 +00002750 *
2751 * This function can fail, if the memory region has memory windows bound to it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 */
2753int ib_dereg_mr(struct ib_mr *mr);
2754
Sagi Grimberg17cd3a22014-02-23 14:19:04 +02002755
2756/**
2757 * ib_create_mr - Allocates a memory region that may be used for
2758 * signature handover operations.
2759 * @pd: The protection domain associated with the region.
2760 * @mr_init_attr: memory region init attributes.
2761 */
2762struct ib_mr *ib_create_mr(struct ib_pd *pd,
2763 struct ib_mr_init_attr *mr_init_attr);
2764
2765/**
2766 * ib_destroy_mr - Destroys a memory region that was created using
2767 * ib_create_mr and removes it from HW translation tables.
2768 * @mr: The memory region to destroy.
2769 *
2770 * This function can fail, if the memory region has memory windows bound to it.
2771 */
2772int ib_destroy_mr(struct ib_mr *mr);
2773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774/**
Steve Wise00f7ec32008-07-14 23:48:45 -07002775 * ib_alloc_fast_reg_mr - Allocates memory region usable with the
2776 * IB_WR_FAST_REG_MR send work request.
2777 * @pd: The protection domain associated with the region.
2778 * @max_page_list_len: requested max physical buffer list length to be
2779 * used with fast register work requests for this MR.
2780 */
2781struct ib_mr *ib_alloc_fast_reg_mr(struct ib_pd *pd, int max_page_list_len);
2782
2783/**
2784 * ib_alloc_fast_reg_page_list - Allocates a page list array
2785 * @device - ib device pointer.
2786 * @page_list_len - size of the page list array to be allocated.
2787 *
2788 * This allocates and returns a struct ib_fast_reg_page_list * and a
2789 * page_list array that is at least page_list_len in size. The actual
2790 * size is returned in max_page_list_len. The caller is responsible
2791 * for initializing the contents of the page_list array before posting
2792 * a send work request with the IB_WC_FAST_REG_MR opcode.
2793 *
2794 * The page_list array entries must be translated using one of the
2795 * ib_dma_*() functions just like the addresses passed to
2796 * ib_map_phys_fmr(). Once the ib_post_send() is issued, the struct
2797 * ib_fast_reg_page_list must not be modified by the caller until the
2798 * IB_WC_FAST_REG_MR work request completes.
2799 */
2800struct ib_fast_reg_page_list *ib_alloc_fast_reg_page_list(
2801 struct ib_device *device, int page_list_len);
2802
2803/**
2804 * ib_free_fast_reg_page_list - Deallocates a previously allocated
2805 * page list array.
2806 * @page_list - struct ib_fast_reg_page_list pointer to be deallocated.
2807 */
2808void ib_free_fast_reg_page_list(struct ib_fast_reg_page_list *page_list);
2809
2810/**
2811 * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
2812 * R_Key and L_Key.
2813 * @mr - struct ib_mr pointer to be updated.
2814 * @newkey - new key to be used.
2815 */
2816static inline void ib_update_fast_reg_key(struct ib_mr *mr, u8 newkey)
2817{
2818 mr->lkey = (mr->lkey & 0xffffff00) | newkey;
2819 mr->rkey = (mr->rkey & 0xffffff00) | newkey;
2820}
2821
2822/**
Shani Michaeli7083e422013-02-06 16:19:12 +00002823 * ib_inc_rkey - increments the key portion of the given rkey. Can be used
2824 * for calculating a new rkey for type 2 memory windows.
2825 * @rkey - the rkey to increment.
2826 */
2827static inline u32 ib_inc_rkey(u32 rkey)
2828{
2829 const u32 mask = 0x000000ff;
2830 return ((rkey + 1) & mask) | (rkey & ~mask);
2831}
2832
2833/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 * ib_alloc_mw - Allocates a memory window.
2835 * @pd: The protection domain associated with the memory window.
Shani Michaeli7083e422013-02-06 16:19:12 +00002836 * @type: The type of the memory window (1 or 2).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 */
Shani Michaeli7083e422013-02-06 16:19:12 +00002838struct ib_mw *ib_alloc_mw(struct ib_pd *pd, enum ib_mw_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840/**
2841 * ib_bind_mw - Posts a work request to the send queue of the specified
2842 * QP, which binds the memory window to the given address range and
2843 * remote access attributes.
2844 * @qp: QP to post the bind work request on.
2845 * @mw: The memory window to bind.
2846 * @mw_bind: Specifies information about the memory window, including
2847 * its address range, remote access rights, and associated memory region.
Shani Michaeli7083e422013-02-06 16:19:12 +00002848 *
2849 * If there is no immediate error, the function will update the rkey member
2850 * of the mw parameter to its new value. The bind operation can still fail
2851 * asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 */
2853static inline int ib_bind_mw(struct ib_qp *qp,
2854 struct ib_mw *mw,
2855 struct ib_mw_bind *mw_bind)
2856{
2857 /* XXX reference counting in corresponding MR? */
2858 return mw->device->bind_mw ?
2859 mw->device->bind_mw(qp, mw, mw_bind) :
2860 -ENOSYS;
2861}
2862
2863/**
2864 * ib_dealloc_mw - Deallocates a memory window.
2865 * @mw: The memory window to deallocate.
2866 */
2867int ib_dealloc_mw(struct ib_mw *mw);
2868
2869/**
2870 * ib_alloc_fmr - Allocates a unmapped fast memory region.
2871 * @pd: The protection domain associated with the unmapped region.
2872 * @mr_access_flags: Specifies the memory access rights.
2873 * @fmr_attr: Attributes of the unmapped region.
2874 *
2875 * A fast memory region must be mapped before it can be used as part of
2876 * a work request.
2877 */
2878struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
2879 int mr_access_flags,
2880 struct ib_fmr_attr *fmr_attr);
2881
2882/**
2883 * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
2884 * @fmr: The fast memory region to associate with the pages.
2885 * @page_list: An array of physical pages to map to the fast memory region.
2886 * @list_len: The number of pages in page_list.
2887 * @iova: The I/O virtual address to use with the mapped region.
2888 */
2889static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
2890 u64 *page_list, int list_len,
2891 u64 iova)
2892{
2893 return fmr->device->map_phys_fmr(fmr, page_list, list_len, iova);
2894}
2895
2896/**
2897 * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
2898 * @fmr_list: A linked list of fast memory regions to unmap.
2899 */
2900int ib_unmap_fmr(struct list_head *fmr_list);
2901
2902/**
2903 * ib_dealloc_fmr - Deallocates a fast memory region.
2904 * @fmr: The fast memory region to deallocate.
2905 */
2906int ib_dealloc_fmr(struct ib_fmr *fmr);
2907
2908/**
2909 * ib_attach_mcast - Attaches the specified QP to a multicast group.
2910 * @qp: QP to attach to the multicast group. The QP must be type
2911 * IB_QPT_UD.
2912 * @gid: Multicast group GID.
2913 * @lid: Multicast group LID in host byte order.
2914 *
2915 * In order to send and receive multicast packets, subnet
2916 * administration must have created the multicast group and configured
2917 * the fabric appropriately. The port associated with the specified
2918 * QP must also be a member of the multicast group.
2919 */
2920int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2921
2922/**
2923 * ib_detach_mcast - Detaches the specified QP from a multicast group.
2924 * @qp: QP to detach from the multicast group.
2925 * @gid: Multicast group GID.
2926 * @lid: Multicast group LID in host byte order.
2927 */
2928int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2929
Sean Hefty59991f92011-05-23 17:52:46 -07002930/**
2931 * ib_alloc_xrcd - Allocates an XRC domain.
2932 * @device: The device on which to allocate the XRC domain.
2933 */
2934struct ib_xrcd *ib_alloc_xrcd(struct ib_device *device);
2935
2936/**
2937 * ib_dealloc_xrcd - Deallocates an XRC domain.
2938 * @xrcd: The XRC domain to deallocate.
2939 */
2940int ib_dealloc_xrcd(struct ib_xrcd *xrcd);
2941
Hadar Hen Zion319a4412013-08-07 14:01:59 +03002942struct ib_flow *ib_create_flow(struct ib_qp *qp,
2943 struct ib_flow_attr *flow_attr, int domain);
2944int ib_destroy_flow(struct ib_flow *flow_id);
2945
Eli Cohen1c636f82013-10-31 15:26:32 +02002946static inline int ib_check_mr_access(int flags)
2947{
2948 /*
2949 * Local write permission is required if remote write or
2950 * remote atomic permission is also requested.
2951 */
2952 if (flags & (IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_REMOTE_WRITE) &&
2953 !(flags & IB_ACCESS_LOCAL_WRITE))
2954 return -EINVAL;
2955
2956 return 0;
2957}
2958
Sagi Grimberg1b01d332014-02-23 14:19:05 +02002959/**
2960 * ib_check_mr_status: lightweight check of MR status.
2961 * This routine may provide status checks on a selected
2962 * ib_mr. first use is for signature status check.
2963 *
2964 * @mr: A memory region.
2965 * @check_mask: Bitmask of which checks to perform from
2966 * ib_mr_status_check enumeration.
2967 * @mr_status: The container of relevant status checks.
2968 * failed checks will be indicated in the status bitmask
2969 * and the relevant info shall be in the error item.
2970 */
2971int ib_check_mr_status(struct ib_mr *mr, u32 check_mask,
2972 struct ib_mr_status *mr_status);
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974#endif /* IB_VERBS_H */