blob: cc92a6489136e9f80416ff706490e090143ff7ee [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176struct ib_device_attr {
177 u64 fw_ver;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700178 __be64 sys_image_guid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 u64 max_mr_size;
180 u64 page_size_cap;
181 u32 vendor_id;
182 u32 vendor_part_id;
183 u32 hw_ver;
184 int max_qp;
185 int max_qp_wr;
186 int device_cap_flags;
187 int max_sge;
188 int max_sge_rd;
189 int max_cq;
190 int max_cqe;
191 int max_mr;
192 int max_pd;
193 int max_qp_rd_atom;
194 int max_ee_rd_atom;
195 int max_res_rd_atom;
196 int max_qp_init_rd_atom;
197 int max_ee_init_rd_atom;
198 enum ib_atomic_cap atomic_cap;
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +0300199 enum ib_atomic_cap masked_atomic_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int max_ee;
201 int max_rdd;
202 int max_mw;
203 int max_raw_ipv6_qp;
204 int max_raw_ethy_qp;
205 int max_mcast_grp;
206 int max_mcast_qp_attach;
207 int max_total_mcast_qp_attach;
208 int max_ah;
209 int max_fmr;
210 int max_map_per_fmr;
211 int max_srq;
212 int max_srq_wr;
213 int max_srq_sge;
Steve Wise00f7ec32008-07-14 23:48:45 -0700214 unsigned int max_fast_reg_page_list_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 u16 max_pkeys;
216 u8 local_ca_ack_delay;
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200217 int sig_prot_cap;
218 int sig_guard_cap;
Sagi Grimberg860f10a2014-12-11 17:04:16 +0200219 struct ib_odp_caps odp_caps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
222enum ib_mtu {
223 IB_MTU_256 = 1,
224 IB_MTU_512 = 2,
225 IB_MTU_1024 = 3,
226 IB_MTU_2048 = 4,
227 IB_MTU_4096 = 5
228};
229
230static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
231{
232 switch (mtu) {
233 case IB_MTU_256: return 256;
234 case IB_MTU_512: return 512;
235 case IB_MTU_1024: return 1024;
236 case IB_MTU_2048: return 2048;
237 case IB_MTU_4096: return 4096;
238 default: return -1;
239 }
240}
241
242enum ib_port_state {
243 IB_PORT_NOP = 0,
244 IB_PORT_DOWN = 1,
245 IB_PORT_INIT = 2,
246 IB_PORT_ARMED = 3,
247 IB_PORT_ACTIVE = 4,
248 IB_PORT_ACTIVE_DEFER = 5
249};
250
251enum ib_port_cap_flags {
252 IB_PORT_SM = 1 << 1,
253 IB_PORT_NOTICE_SUP = 1 << 2,
254 IB_PORT_TRAP_SUP = 1 << 3,
255 IB_PORT_OPT_IPD_SUP = 1 << 4,
256 IB_PORT_AUTO_MIGR_SUP = 1 << 5,
257 IB_PORT_SL_MAP_SUP = 1 << 6,
258 IB_PORT_MKEY_NVRAM = 1 << 7,
259 IB_PORT_PKEY_NVRAM = 1 << 8,
260 IB_PORT_LED_INFO_SUP = 1 << 9,
261 IB_PORT_SM_DISABLED = 1 << 10,
262 IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11,
263 IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12,
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300264 IB_PORT_EXTENDED_SPEEDS_SUP = 1 << 14,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 IB_PORT_CM_SUP = 1 << 16,
266 IB_PORT_SNMP_TUNNEL_SUP = 1 << 17,
267 IB_PORT_REINIT_SUP = 1 << 18,
268 IB_PORT_DEVICE_MGMT_SUP = 1 << 19,
269 IB_PORT_VENDOR_CLASS_SUP = 1 << 20,
270 IB_PORT_DR_NOTICE_SUP = 1 << 21,
271 IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22,
272 IB_PORT_BOOT_MGMT_SUP = 1 << 23,
273 IB_PORT_LINK_LATENCY_SUP = 1 << 24,
Moni Shouab4a26a22014-02-09 11:54:34 +0200274 IB_PORT_CLIENT_REG_SUP = 1 << 25,
275 IB_PORT_IP_BASED_GIDS = 1 << 26
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276};
277
278enum ib_port_width {
279 IB_WIDTH_1X = 1,
280 IB_WIDTH_4X = 2,
281 IB_WIDTH_8X = 4,
282 IB_WIDTH_12X = 8
283};
284
285static inline int ib_width_enum_to_int(enum ib_port_width width)
286{
287 switch (width) {
288 case IB_WIDTH_1X: return 1;
289 case IB_WIDTH_4X: return 4;
290 case IB_WIDTH_8X: return 8;
291 case IB_WIDTH_12X: return 12;
292 default: return -1;
293 }
294}
295
Or Gerlitz2e966912012-02-28 18:49:50 +0200296enum ib_port_speed {
297 IB_SPEED_SDR = 1,
298 IB_SPEED_DDR = 2,
299 IB_SPEED_QDR = 4,
300 IB_SPEED_FDR10 = 8,
301 IB_SPEED_FDR = 16,
302 IB_SPEED_EDR = 32
303};
304
Steve Wise7f624d02008-07-14 23:48:48 -0700305struct ib_protocol_stats {
306 /* TBD... */
307};
308
309struct iw_protocol_stats {
310 u64 ipInReceives;
311 u64 ipInHdrErrors;
312 u64 ipInTooBigErrors;
313 u64 ipInNoRoutes;
314 u64 ipInAddrErrors;
315 u64 ipInUnknownProtos;
316 u64 ipInTruncatedPkts;
317 u64 ipInDiscards;
318 u64 ipInDelivers;
319 u64 ipOutForwDatagrams;
320 u64 ipOutRequests;
321 u64 ipOutDiscards;
322 u64 ipOutNoRoutes;
323 u64 ipReasmTimeout;
324 u64 ipReasmReqds;
325 u64 ipReasmOKs;
326 u64 ipReasmFails;
327 u64 ipFragOKs;
328 u64 ipFragFails;
329 u64 ipFragCreates;
330 u64 ipInMcastPkts;
331 u64 ipOutMcastPkts;
332 u64 ipInBcastPkts;
333 u64 ipOutBcastPkts;
334
335 u64 tcpRtoAlgorithm;
336 u64 tcpRtoMin;
337 u64 tcpRtoMax;
338 u64 tcpMaxConn;
339 u64 tcpActiveOpens;
340 u64 tcpPassiveOpens;
341 u64 tcpAttemptFails;
342 u64 tcpEstabResets;
343 u64 tcpCurrEstab;
344 u64 tcpInSegs;
345 u64 tcpOutSegs;
346 u64 tcpRetransSegs;
347 u64 tcpInErrs;
348 u64 tcpOutRsts;
349};
350
351union rdma_protocol_stats {
352 struct ib_protocol_stats ib;
353 struct iw_protocol_stats iw;
354};
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356struct ib_port_attr {
357 enum ib_port_state state;
358 enum ib_mtu max_mtu;
359 enum ib_mtu active_mtu;
360 int gid_tbl_len;
361 u32 port_cap_flags;
362 u32 max_msg_sz;
363 u32 bad_pkey_cntr;
364 u32 qkey_viol_cntr;
365 u16 pkey_tbl_len;
366 u16 lid;
367 u16 sm_lid;
368 u8 lmc;
369 u8 max_vl_num;
370 u8 sm_sl;
371 u8 subnet_timeout;
372 u8 init_type_reply;
373 u8 active_width;
374 u8 active_speed;
375 u8 phys_state;
376};
377
378enum ib_device_modify_flags {
Roland Dreierc5bcbbb2006-02-02 09:47:14 -0800379 IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
380 IB_DEVICE_MODIFY_NODE_DESC = 1 << 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381};
382
383struct ib_device_modify {
384 u64 sys_image_guid;
Roland Dreierc5bcbbb2006-02-02 09:47:14 -0800385 char node_desc[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
388enum ib_port_modify_flags {
389 IB_PORT_SHUTDOWN = 1,
390 IB_PORT_INIT_TYPE = (1<<2),
391 IB_PORT_RESET_QKEY_CNTR = (1<<3)
392};
393
394struct ib_port_modify {
395 u32 set_port_cap_mask;
396 u32 clr_port_cap_mask;
397 u8 init_type;
398};
399
400enum ib_event_type {
401 IB_EVENT_CQ_ERR,
402 IB_EVENT_QP_FATAL,
403 IB_EVENT_QP_REQ_ERR,
404 IB_EVENT_QP_ACCESS_ERR,
405 IB_EVENT_COMM_EST,
406 IB_EVENT_SQ_DRAINED,
407 IB_EVENT_PATH_MIG,
408 IB_EVENT_PATH_MIG_ERR,
409 IB_EVENT_DEVICE_FATAL,
410 IB_EVENT_PORT_ACTIVE,
411 IB_EVENT_PORT_ERR,
412 IB_EVENT_LID_CHANGE,
413 IB_EVENT_PKEY_CHANGE,
Roland Dreierd41fcc62005-08-18 12:23:08 -0700414 IB_EVENT_SM_CHANGE,
415 IB_EVENT_SRQ_ERR,
416 IB_EVENT_SRQ_LIMIT_REACHED,
Leonid Arsh63942c92006-06-17 20:37:35 -0700417 IB_EVENT_QP_LAST_WQE_REACHED,
Or Gerlitz761d90e2011-06-15 14:39:29 +0000418 IB_EVENT_CLIENT_REREGISTER,
419 IB_EVENT_GID_CHANGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
422struct ib_event {
423 struct ib_device *device;
424 union {
425 struct ib_cq *cq;
426 struct ib_qp *qp;
Roland Dreierd41fcc62005-08-18 12:23:08 -0700427 struct ib_srq *srq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 u8 port_num;
429 } element;
430 enum ib_event_type event;
431};
432
433struct ib_event_handler {
434 struct ib_device *device;
435 void (*handler)(struct ib_event_handler *, struct ib_event *);
436 struct list_head list;
437};
438
439#define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
440 do { \
441 (_ptr)->device = _device; \
442 (_ptr)->handler = _handler; \
443 INIT_LIST_HEAD(&(_ptr)->list); \
444 } while (0)
445
446struct ib_global_route {
447 union ib_gid dgid;
448 u32 flow_label;
449 u8 sgid_index;
450 u8 hop_limit;
451 u8 traffic_class;
452};
453
Hal Rosenstock513789e2005-07-27 11:45:34 -0700454struct ib_grh {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700455 __be32 version_tclass_flow;
456 __be16 paylen;
Hal Rosenstock513789e2005-07-27 11:45:34 -0700457 u8 next_hdr;
458 u8 hop_limit;
459 union ib_gid sgid;
460 union ib_gid dgid;
461};
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463enum {
464 IB_MULTICAST_QPN = 0xffffff
465};
466
Harvey Harrisonf3a7c662009-02-14 22:58:35 -0800467#define IB_LID_PERMISSIVE cpu_to_be16(0xFFFF)
Sean Hefty97f52eb2005-08-13 21:05:57 -0700468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469enum ib_ah_flags {
470 IB_AH_GRH = 1
471};
472
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700473enum ib_rate {
474 IB_RATE_PORT_CURRENT = 0,
475 IB_RATE_2_5_GBPS = 2,
476 IB_RATE_5_GBPS = 5,
477 IB_RATE_10_GBPS = 3,
478 IB_RATE_20_GBPS = 6,
479 IB_RATE_30_GBPS = 4,
480 IB_RATE_40_GBPS = 7,
481 IB_RATE_60_GBPS = 8,
482 IB_RATE_80_GBPS = 9,
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300483 IB_RATE_120_GBPS = 10,
484 IB_RATE_14_GBPS = 11,
485 IB_RATE_56_GBPS = 12,
486 IB_RATE_112_GBPS = 13,
487 IB_RATE_168_GBPS = 14,
488 IB_RATE_25_GBPS = 15,
489 IB_RATE_100_GBPS = 16,
490 IB_RATE_200_GBPS = 17,
491 IB_RATE_300_GBPS = 18
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700492};
493
494/**
495 * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
496 * base rate of 2.5 Gbit/sec. For example, IB_RATE_5_GBPS will be
497 * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
498 * @rate: rate to convert.
499 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700500__attribute_const__ int ib_rate_to_mult(enum ib_rate rate);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700501
502/**
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300503 * ib_rate_to_mbps - Convert the IB rate enum to Mbps.
504 * For example, IB_RATE_2_5_GBPS will be converted to 2500.
505 * @rate: rate to convert.
506 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700507__attribute_const__ int ib_rate_to_mbps(enum ib_rate rate);
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300508
Sagi Grimberg17cd3a22014-02-23 14:19:04 +0200509enum ib_mr_create_flags {
510 IB_MR_SIGNATURE_EN = 1,
511};
512
513/**
514 * ib_mr_init_attr - Memory region init attributes passed to routine
515 * ib_create_mr.
516 * @max_reg_descriptors: max number of registration descriptors that
517 * may be used with registration work requests.
518 * @flags: MR creation flags bit mask.
519 */
520struct ib_mr_init_attr {
521 int max_reg_descriptors;
522 u32 flags;
523};
524
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200525/**
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300526 * Signature types
527 * IB_SIG_TYPE_NONE: Unprotected.
528 * IB_SIG_TYPE_T10_DIF: Type T10-DIF
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200529 */
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300530enum ib_signature_type {
531 IB_SIG_TYPE_NONE,
532 IB_SIG_TYPE_T10_DIF,
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200533};
534
535/**
536 * Signature T10-DIF block-guard types
537 * IB_T10DIF_CRC: Corresponds to T10-PI mandated CRC checksum rules.
538 * IB_T10DIF_CSUM: Corresponds to IP checksum rules.
539 */
540enum ib_t10_dif_bg_type {
541 IB_T10DIF_CRC,
542 IB_T10DIF_CSUM
543};
544
545/**
546 * struct ib_t10_dif_domain - Parameters specific for T10-DIF
547 * domain.
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200548 * @bg_type: T10-DIF block guard type (CRC|CSUM)
549 * @pi_interval: protection information interval.
550 * @bg: seed of guard computation.
551 * @app_tag: application tag of guard block
552 * @ref_tag: initial guard block reference tag.
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300553 * @ref_remap: Indicate wethear the reftag increments each block
554 * @app_escape: Indicate to skip block check if apptag=0xffff
555 * @ref_escape: Indicate to skip block check if reftag=0xffffffff
556 * @apptag_check_mask: check bitmask of application tag.
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200557 */
558struct ib_t10_dif_domain {
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200559 enum ib_t10_dif_bg_type bg_type;
560 u16 pi_interval;
561 u16 bg;
562 u16 app_tag;
563 u32 ref_tag;
Sagi Grimberg78eda2b2014-08-13 19:54:35 +0300564 bool ref_remap;
565 bool app_escape;
566 bool ref_escape;
567 u16 apptag_check_mask;
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200568};
569
570/**
571 * struct ib_sig_domain - Parameters for signature domain
572 * @sig_type: specific signauture type
573 * @sig: union of all signature domain attributes that may
574 * be used to set domain layout.
575 */
576struct ib_sig_domain {
577 enum ib_signature_type sig_type;
578 union {
579 struct ib_t10_dif_domain dif;
580 } sig;
581};
582
583/**
584 * struct ib_sig_attrs - Parameters for signature handover operation
585 * @check_mask: bitmask for signature byte check (8 bytes)
586 * @mem: memory domain layout desciptor.
587 * @wire: wire domain layout desciptor.
588 */
589struct ib_sig_attrs {
590 u8 check_mask;
591 struct ib_sig_domain mem;
592 struct ib_sig_domain wire;
593};
594
595enum ib_sig_err_type {
596 IB_SIG_BAD_GUARD,
597 IB_SIG_BAD_REFTAG,
598 IB_SIG_BAD_APPTAG,
599};
600
601/**
602 * struct ib_sig_err - signature error descriptor
603 */
604struct ib_sig_err {
605 enum ib_sig_err_type err_type;
606 u32 expected;
607 u32 actual;
608 u64 sig_err_offset;
609 u32 key;
610};
611
612enum ib_mr_status_check {
613 IB_MR_CHECK_SIG_STATUS = 1,
614};
615
616/**
617 * struct ib_mr_status - Memory region status container
618 *
619 * @fail_status: Bitmask of MR checks status. For each
620 * failed check a corresponding status bit is set.
621 * @sig_err: Additional info for IB_MR_CEHCK_SIG_STATUS
622 * failure.
623 */
624struct ib_mr_status {
625 u32 fail_status;
626 struct ib_sig_err sig_err;
627};
628
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300629/**
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700630 * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
631 * enum.
632 * @mult: multiple to convert.
633 */
Roland Dreier8385fd82014-06-04 10:00:16 -0700634__attribute_const__ enum ib_rate mult_to_ib_rate(int mult);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636struct ib_ah_attr {
637 struct ib_global_route grh;
638 u16 dlid;
639 u8 sl;
640 u8 src_path_bits;
641 u8 static_rate;
642 u8 ah_flags;
643 u8 port_num;
Matan Barakdd5f03b2013-12-12 18:03:11 +0200644 u8 dmac[ETH_ALEN];
645 u16 vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646};
647
648enum ib_wc_status {
649 IB_WC_SUCCESS,
650 IB_WC_LOC_LEN_ERR,
651 IB_WC_LOC_QP_OP_ERR,
652 IB_WC_LOC_EEC_OP_ERR,
653 IB_WC_LOC_PROT_ERR,
654 IB_WC_WR_FLUSH_ERR,
655 IB_WC_MW_BIND_ERR,
656 IB_WC_BAD_RESP_ERR,
657 IB_WC_LOC_ACCESS_ERR,
658 IB_WC_REM_INV_REQ_ERR,
659 IB_WC_REM_ACCESS_ERR,
660 IB_WC_REM_OP_ERR,
661 IB_WC_RETRY_EXC_ERR,
662 IB_WC_RNR_RETRY_EXC_ERR,
663 IB_WC_LOC_RDD_VIOL_ERR,
664 IB_WC_REM_INV_RD_REQ_ERR,
665 IB_WC_REM_ABORT_ERR,
666 IB_WC_INV_EECN_ERR,
667 IB_WC_INV_EEC_STATE_ERR,
668 IB_WC_FATAL_ERR,
669 IB_WC_RESP_TIMEOUT_ERR,
670 IB_WC_GENERAL_ERR
671};
672
673enum ib_wc_opcode {
674 IB_WC_SEND,
675 IB_WC_RDMA_WRITE,
676 IB_WC_RDMA_READ,
677 IB_WC_COMP_SWAP,
678 IB_WC_FETCH_ADD,
679 IB_WC_BIND_MW,
Eli Cohenc93570f2008-04-16 21:09:27 -0700680 IB_WC_LSO,
Steve Wise00f7ec32008-07-14 23:48:45 -0700681 IB_WC_LOCAL_INV,
682 IB_WC_FAST_REG_MR,
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +0300683 IB_WC_MASKED_COMP_SWAP,
684 IB_WC_MASKED_FETCH_ADD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685/*
686 * Set value of IB_WC_RECV so consumers can test if a completion is a
687 * receive by testing (opcode & IB_WC_RECV).
688 */
689 IB_WC_RECV = 1 << 7,
690 IB_WC_RECV_RDMA_WITH_IMM
691};
692
693enum ib_wc_flags {
694 IB_WC_GRH = 1,
Steve Wise00f7ec32008-07-14 23:48:45 -0700695 IB_WC_WITH_IMM = (1<<1),
696 IB_WC_WITH_INVALIDATE = (1<<2),
Or Gerlitzd927d502012-01-11 19:03:51 +0200697 IB_WC_IP_CSUM_OK = (1<<3),
Matan Barakdd5f03b2013-12-12 18:03:11 +0200698 IB_WC_WITH_SMAC = (1<<4),
699 IB_WC_WITH_VLAN = (1<<5),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700};
701
702struct ib_wc {
703 u64 wr_id;
704 enum ib_wc_status status;
705 enum ib_wc_opcode opcode;
706 u32 vendor_err;
707 u32 byte_len;
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200708 struct ib_qp *qp;
Steve Wise00f7ec32008-07-14 23:48:45 -0700709 union {
710 __be32 imm_data;
711 u32 invalidate_rkey;
712 } ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 u32 src_qp;
714 int wc_flags;
715 u16 pkey_index;
716 u16 slid;
717 u8 sl;
718 u8 dlid_path_bits;
719 u8 port_num; /* valid only for DR SMPs on switches */
Matan Barakdd5f03b2013-12-12 18:03:11 +0200720 u8 smac[ETH_ALEN];
721 u16 vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722};
723
Roland Dreiered23a722007-05-06 21:02:48 -0700724enum ib_cq_notify_flags {
725 IB_CQ_SOLICITED = 1 << 0,
726 IB_CQ_NEXT_COMP = 1 << 1,
727 IB_CQ_SOLICITED_MASK = IB_CQ_SOLICITED | IB_CQ_NEXT_COMP,
728 IB_CQ_REPORT_MISSED_EVENTS = 1 << 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729};
730
Sean Hefty96104ed2011-05-23 16:31:36 -0700731enum ib_srq_type {
Sean Hefty418d5132011-05-23 19:42:29 -0700732 IB_SRQT_BASIC,
733 IB_SRQT_XRC
Sean Hefty96104ed2011-05-23 16:31:36 -0700734};
735
Roland Dreierd41fcc62005-08-18 12:23:08 -0700736enum ib_srq_attr_mask {
737 IB_SRQ_MAX_WR = 1 << 0,
738 IB_SRQ_LIMIT = 1 << 1,
739};
740
741struct ib_srq_attr {
742 u32 max_wr;
743 u32 max_sge;
744 u32 srq_limit;
745};
746
747struct ib_srq_init_attr {
748 void (*event_handler)(struct ib_event *, void *);
749 void *srq_context;
750 struct ib_srq_attr attr;
Sean Hefty96104ed2011-05-23 16:31:36 -0700751 enum ib_srq_type srq_type;
Sean Hefty418d5132011-05-23 19:42:29 -0700752
753 union {
754 struct {
755 struct ib_xrcd *xrcd;
756 struct ib_cq *cq;
757 } xrc;
758 } ext;
Roland Dreierd41fcc62005-08-18 12:23:08 -0700759};
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761struct ib_qp_cap {
762 u32 max_send_wr;
763 u32 max_recv_wr;
764 u32 max_send_sge;
765 u32 max_recv_sge;
766 u32 max_inline_data;
767};
768
769enum ib_sig_type {
770 IB_SIGNAL_ALL_WR,
771 IB_SIGNAL_REQ_WR
772};
773
774enum ib_qp_type {
775 /*
776 * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
777 * here (and in that order) since the MAD layer uses them as
778 * indices into a 2-entry table.
779 */
780 IB_QPT_SMI,
781 IB_QPT_GSI,
782
783 IB_QPT_RC,
784 IB_QPT_UC,
785 IB_QPT_UD,
786 IB_QPT_RAW_IPV6,
Sean Heftyb42b63c2011-05-23 19:59:25 -0700787 IB_QPT_RAW_ETHERTYPE,
Or Gerlitzc938a612012-03-01 12:17:51 +0200788 IB_QPT_RAW_PACKET = 8,
Sean Heftyb42b63c2011-05-23 19:59:25 -0700789 IB_QPT_XRC_INI = 9,
790 IB_QPT_XRC_TGT,
Jack Morgenstein0134f162013-07-07 17:25:52 +0300791 IB_QPT_MAX,
792 /* Reserve a range for qp types internal to the low level driver.
793 * These qp types will not be visible at the IB core layer, so the
794 * IB_QPT_MAX usages should not be affected in the core layer
795 */
796 IB_QPT_RESERVED1 = 0x1000,
797 IB_QPT_RESERVED2,
798 IB_QPT_RESERVED3,
799 IB_QPT_RESERVED4,
800 IB_QPT_RESERVED5,
801 IB_QPT_RESERVED6,
802 IB_QPT_RESERVED7,
803 IB_QPT_RESERVED8,
804 IB_QPT_RESERVED9,
805 IB_QPT_RESERVED10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806};
807
Eli Cohenb846f252008-04-16 21:09:27 -0700808enum ib_qp_create_flags {
Ron Livne47ee1b92008-07-14 23:48:48 -0700809 IB_QP_CREATE_IPOIB_UD_LSO = 1 << 0,
810 IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 1 << 1,
Matan Barak90f1d1b2013-11-07 15:25:12 +0200811 IB_QP_CREATE_NETIF_QP = 1 << 5,
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200812 IB_QP_CREATE_SIGNATURE_EN = 1 << 6,
Or Gerlitz09b93082014-05-11 15:15:11 +0300813 IB_QP_CREATE_USE_GFP_NOIO = 1 << 7,
Jack Morgensteind2b57062012-08-03 08:40:37 +0000814 /* reserve bits 26-31 for low level drivers' internal use */
815 IB_QP_CREATE_RESERVED_START = 1 << 26,
816 IB_QP_CREATE_RESERVED_END = 1 << 31,
Eli Cohenb846f252008-04-16 21:09:27 -0700817};
818
Yishai Hadas73c40c62013-08-01 18:49:53 +0300819
820/*
821 * Note: users may not call ib_close_qp or ib_destroy_qp from the event_handler
822 * callback to destroy the passed in QP.
823 */
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825struct ib_qp_init_attr {
826 void (*event_handler)(struct ib_event *, void *);
827 void *qp_context;
828 struct ib_cq *send_cq;
829 struct ib_cq *recv_cq;
830 struct ib_srq *srq;
Sean Heftyb42b63c2011-05-23 19:59:25 -0700831 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 struct ib_qp_cap cap;
833 enum ib_sig_type sq_sig_type;
834 enum ib_qp_type qp_type;
Eli Cohenb846f252008-04-16 21:09:27 -0700835 enum ib_qp_create_flags create_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 u8 port_num; /* special QP types only */
837};
838
Sean Hefty0e0ec7e2011-08-08 15:31:51 -0700839struct ib_qp_open_attr {
840 void (*event_handler)(struct ib_event *, void *);
841 void *qp_context;
842 u32 qp_num;
843 enum ib_qp_type qp_type;
844};
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846enum ib_rnr_timeout {
847 IB_RNR_TIMER_655_36 = 0,
848 IB_RNR_TIMER_000_01 = 1,
849 IB_RNR_TIMER_000_02 = 2,
850 IB_RNR_TIMER_000_03 = 3,
851 IB_RNR_TIMER_000_04 = 4,
852 IB_RNR_TIMER_000_06 = 5,
853 IB_RNR_TIMER_000_08 = 6,
854 IB_RNR_TIMER_000_12 = 7,
855 IB_RNR_TIMER_000_16 = 8,
856 IB_RNR_TIMER_000_24 = 9,
857 IB_RNR_TIMER_000_32 = 10,
858 IB_RNR_TIMER_000_48 = 11,
859 IB_RNR_TIMER_000_64 = 12,
860 IB_RNR_TIMER_000_96 = 13,
861 IB_RNR_TIMER_001_28 = 14,
862 IB_RNR_TIMER_001_92 = 15,
863 IB_RNR_TIMER_002_56 = 16,
864 IB_RNR_TIMER_003_84 = 17,
865 IB_RNR_TIMER_005_12 = 18,
866 IB_RNR_TIMER_007_68 = 19,
867 IB_RNR_TIMER_010_24 = 20,
868 IB_RNR_TIMER_015_36 = 21,
869 IB_RNR_TIMER_020_48 = 22,
870 IB_RNR_TIMER_030_72 = 23,
871 IB_RNR_TIMER_040_96 = 24,
872 IB_RNR_TIMER_061_44 = 25,
873 IB_RNR_TIMER_081_92 = 26,
874 IB_RNR_TIMER_122_88 = 27,
875 IB_RNR_TIMER_163_84 = 28,
876 IB_RNR_TIMER_245_76 = 29,
877 IB_RNR_TIMER_327_68 = 30,
878 IB_RNR_TIMER_491_52 = 31
879};
880
881enum ib_qp_attr_mask {
882 IB_QP_STATE = 1,
883 IB_QP_CUR_STATE = (1<<1),
884 IB_QP_EN_SQD_ASYNC_NOTIFY = (1<<2),
885 IB_QP_ACCESS_FLAGS = (1<<3),
886 IB_QP_PKEY_INDEX = (1<<4),
887 IB_QP_PORT = (1<<5),
888 IB_QP_QKEY = (1<<6),
889 IB_QP_AV = (1<<7),
890 IB_QP_PATH_MTU = (1<<8),
891 IB_QP_TIMEOUT = (1<<9),
892 IB_QP_RETRY_CNT = (1<<10),
893 IB_QP_RNR_RETRY = (1<<11),
894 IB_QP_RQ_PSN = (1<<12),
895 IB_QP_MAX_QP_RD_ATOMIC = (1<<13),
896 IB_QP_ALT_PATH = (1<<14),
897 IB_QP_MIN_RNR_TIMER = (1<<15),
898 IB_QP_SQ_PSN = (1<<16),
899 IB_QP_MAX_DEST_RD_ATOMIC = (1<<17),
900 IB_QP_PATH_MIG_STATE = (1<<18),
901 IB_QP_CAP = (1<<19),
Matan Barakdd5f03b2013-12-12 18:03:11 +0200902 IB_QP_DEST_QPN = (1<<20),
903 IB_QP_SMAC = (1<<21),
904 IB_QP_ALT_SMAC = (1<<22),
905 IB_QP_VID = (1<<23),
906 IB_QP_ALT_VID = (1<<24),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907};
908
909enum ib_qp_state {
910 IB_QPS_RESET,
911 IB_QPS_INIT,
912 IB_QPS_RTR,
913 IB_QPS_RTS,
914 IB_QPS_SQD,
915 IB_QPS_SQE,
916 IB_QPS_ERR
917};
918
919enum ib_mig_state {
920 IB_MIG_MIGRATED,
921 IB_MIG_REARM,
922 IB_MIG_ARMED
923};
924
Shani Michaeli7083e422013-02-06 16:19:12 +0000925enum ib_mw_type {
926 IB_MW_TYPE_1 = 1,
927 IB_MW_TYPE_2 = 2
928};
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930struct ib_qp_attr {
931 enum ib_qp_state qp_state;
932 enum ib_qp_state cur_qp_state;
933 enum ib_mtu path_mtu;
934 enum ib_mig_state path_mig_state;
935 u32 qkey;
936 u32 rq_psn;
937 u32 sq_psn;
938 u32 dest_qp_num;
939 int qp_access_flags;
940 struct ib_qp_cap cap;
941 struct ib_ah_attr ah_attr;
942 struct ib_ah_attr alt_ah_attr;
943 u16 pkey_index;
944 u16 alt_pkey_index;
945 u8 en_sqd_async_notify;
946 u8 sq_draining;
947 u8 max_rd_atomic;
948 u8 max_dest_rd_atomic;
949 u8 min_rnr_timer;
950 u8 port_num;
951 u8 timeout;
952 u8 retry_cnt;
953 u8 rnr_retry;
954 u8 alt_port_num;
955 u8 alt_timeout;
Matan Barakdd5f03b2013-12-12 18:03:11 +0200956 u8 smac[ETH_ALEN];
957 u8 alt_smac[ETH_ALEN];
958 u16 vlan_id;
959 u16 alt_vlan_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960};
961
962enum ib_wr_opcode {
963 IB_WR_RDMA_WRITE,
964 IB_WR_RDMA_WRITE_WITH_IMM,
965 IB_WR_SEND,
966 IB_WR_SEND_WITH_IMM,
967 IB_WR_RDMA_READ,
968 IB_WR_ATOMIC_CMP_AND_SWP,
Eli Cohenc93570f2008-04-16 21:09:27 -0700969 IB_WR_ATOMIC_FETCH_AND_ADD,
Roland Dreier0f39cf32008-04-16 21:09:32 -0700970 IB_WR_LSO,
971 IB_WR_SEND_WITH_INV,
Steve Wise00f7ec32008-07-14 23:48:45 -0700972 IB_WR_RDMA_READ_WITH_INV,
973 IB_WR_LOCAL_INV,
974 IB_WR_FAST_REG_MR,
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +0300975 IB_WR_MASKED_ATOMIC_CMP_AND_SWP,
976 IB_WR_MASKED_ATOMIC_FETCH_AND_ADD,
Shani Michaeli7083e422013-02-06 16:19:12 +0000977 IB_WR_BIND_MW,
Sagi Grimberg1b01d332014-02-23 14:19:05 +0200978 IB_WR_REG_SIG_MR,
Jack Morgenstein0134f162013-07-07 17:25:52 +0300979 /* reserve values for low level drivers' internal use.
980 * These values will not be used at all in the ib core layer.
981 */
982 IB_WR_RESERVED1 = 0xf0,
983 IB_WR_RESERVED2,
984 IB_WR_RESERVED3,
985 IB_WR_RESERVED4,
986 IB_WR_RESERVED5,
987 IB_WR_RESERVED6,
988 IB_WR_RESERVED7,
989 IB_WR_RESERVED8,
990 IB_WR_RESERVED9,
991 IB_WR_RESERVED10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992};
993
994enum ib_send_flags {
995 IB_SEND_FENCE = 1,
996 IB_SEND_SIGNALED = (1<<1),
997 IB_SEND_SOLICITED = (1<<2),
Eli Cohene0605d92008-01-30 18:30:57 +0200998 IB_SEND_INLINE = (1<<3),
Jack Morgenstein0134f162013-07-07 17:25:52 +0300999 IB_SEND_IP_CSUM = (1<<4),
1000
1001 /* reserve bits 26-31 for low level drivers' internal use */
1002 IB_SEND_RESERVED_START = (1 << 26),
1003 IB_SEND_RESERVED_END = (1 << 31),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004};
1005
1006struct ib_sge {
1007 u64 addr;
1008 u32 length;
1009 u32 lkey;
1010};
1011
Steve Wise00f7ec32008-07-14 23:48:45 -07001012struct ib_fast_reg_page_list {
1013 struct ib_device *device;
1014 u64 *page_list;
1015 unsigned int max_page_list_len;
1016};
1017
Shani Michaeli7083e422013-02-06 16:19:12 +00001018/**
1019 * struct ib_mw_bind_info - Parameters for a memory window bind operation.
1020 * @mr: A memory region to bind the memory window to.
1021 * @addr: The address where the memory window should begin.
1022 * @length: The length of the memory window, in bytes.
1023 * @mw_access_flags: Access flags from enum ib_access_flags for the window.
1024 *
1025 * This struct contains the shared parameters for type 1 and type 2
1026 * memory window bind operations.
1027 */
1028struct ib_mw_bind_info {
1029 struct ib_mr *mr;
1030 u64 addr;
1031 u64 length;
1032 int mw_access_flags;
1033};
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035struct ib_send_wr {
1036 struct ib_send_wr *next;
1037 u64 wr_id;
1038 struct ib_sge *sg_list;
1039 int num_sge;
1040 enum ib_wr_opcode opcode;
1041 int send_flags;
Roland Dreier0f39cf32008-04-16 21:09:32 -07001042 union {
1043 __be32 imm_data;
1044 u32 invalidate_rkey;
1045 } ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 union {
1047 struct {
1048 u64 remote_addr;
1049 u32 rkey;
1050 } rdma;
1051 struct {
1052 u64 remote_addr;
1053 u64 compare_add;
1054 u64 swap;
Vladimir Sokolovsky5e80ba82010-04-14 17:23:01 +03001055 u64 compare_add_mask;
1056 u64 swap_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 u32 rkey;
1058 } atomic;
1059 struct {
1060 struct ib_ah *ah;
Eli Cohenc93570f2008-04-16 21:09:27 -07001061 void *header;
1062 int hlen;
1063 int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 u32 remote_qpn;
1065 u32 remote_qkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 u16 pkey_index; /* valid for GSI only */
1067 u8 port_num; /* valid for DR SMPs on switch only */
1068 } ud;
Steve Wise00f7ec32008-07-14 23:48:45 -07001069 struct {
1070 u64 iova_start;
1071 struct ib_fast_reg_page_list *page_list;
1072 unsigned int page_shift;
1073 unsigned int page_list_len;
1074 u32 length;
1075 int access_flags;
1076 u32 rkey;
1077 } fast_reg;
Shani Michaeli7083e422013-02-06 16:19:12 +00001078 struct {
1079 struct ib_mw *mw;
1080 /* The new rkey for the memory window. */
1081 u32 rkey;
1082 struct ib_mw_bind_info bind_info;
1083 } bind_mw;
Sagi Grimberg1b01d332014-02-23 14:19:05 +02001084 struct {
1085 struct ib_sig_attrs *sig_attrs;
1086 struct ib_mr *sig_mr;
1087 int access_flags;
1088 struct ib_sge *prot;
1089 } sig_handover;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 } wr;
Sean Heftyb42b63c2011-05-23 19:59:25 -07001091 u32 xrc_remote_srq_num; /* XRC TGT QPs only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092};
1093
1094struct ib_recv_wr {
1095 struct ib_recv_wr *next;
1096 u64 wr_id;
1097 struct ib_sge *sg_list;
1098 int num_sge;
1099};
1100
1101enum ib_access_flags {
1102 IB_ACCESS_LOCAL_WRITE = 1,
1103 IB_ACCESS_REMOTE_WRITE = (1<<1),
1104 IB_ACCESS_REMOTE_READ = (1<<2),
1105 IB_ACCESS_REMOTE_ATOMIC = (1<<3),
Shani Michaeli7083e422013-02-06 16:19:12 +00001106 IB_ACCESS_MW_BIND = (1<<4),
Sagi Grimberg860f10a2014-12-11 17:04:16 +02001107 IB_ZERO_BASED = (1<<5),
1108 IB_ACCESS_ON_DEMAND = (1<<6),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109};
1110
1111struct ib_phys_buf {
1112 u64 addr;
1113 u64 size;
1114};
1115
1116struct ib_mr_attr {
1117 struct ib_pd *pd;
1118 u64 device_virt_addr;
1119 u64 size;
1120 int mr_access_flags;
1121 u32 lkey;
1122 u32 rkey;
1123};
1124
1125enum ib_mr_rereg_flags {
1126 IB_MR_REREG_TRANS = 1,
1127 IB_MR_REREG_PD = (1<<1),
Matan Barak7e6edb92014-07-31 11:01:28 +03001128 IB_MR_REREG_ACCESS = (1<<2),
1129 IB_MR_REREG_SUPPORTED = ((IB_MR_REREG_ACCESS << 1) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130};
1131
Shani Michaeli7083e422013-02-06 16:19:12 +00001132/**
1133 * struct ib_mw_bind - Parameters for a type 1 memory window bind operation.
1134 * @wr_id: Work request id.
1135 * @send_flags: Flags from ib_send_flags enum.
1136 * @bind_info: More parameters of the bind operation.
1137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138struct ib_mw_bind {
Shani Michaeli7083e422013-02-06 16:19:12 +00001139 u64 wr_id;
1140 int send_flags;
1141 struct ib_mw_bind_info bind_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142};
1143
1144struct ib_fmr_attr {
1145 int max_pages;
1146 int max_maps;
Or Gerlitzd36f34a2006-02-02 10:43:45 -08001147 u8 page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148};
1149
Haggai Eran882214e2014-12-11 17:04:18 +02001150struct ib_umem;
1151
Roland Dreiere2773c02005-07-07 17:57:10 -07001152struct ib_ucontext {
1153 struct ib_device *device;
1154 struct list_head pd_list;
1155 struct list_head mr_list;
1156 struct list_head mw_list;
1157 struct list_head cq_list;
1158 struct list_head qp_list;
1159 struct list_head srq_list;
1160 struct list_head ah_list;
Sean Hefty53d0bd12011-05-24 08:33:46 -07001161 struct list_head xrcd_list;
Hadar Hen Zion436f2ad2013-08-14 13:58:30 +03001162 struct list_head rule_list;
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001163 int closing;
Shachar Raindel8ada2c12014-12-11 17:04:17 +02001164
1165 struct pid *tgid;
Haggai Eran882214e2014-12-11 17:04:18 +02001166#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1167 struct rb_root umem_tree;
1168 /*
1169 * Protects .umem_rbroot and tree, as well as odp_mrs_count and
1170 * mmu notifiers registration.
1171 */
1172 struct rw_semaphore umem_rwsem;
1173 void (*invalidate_range)(struct ib_umem *umem,
1174 unsigned long start, unsigned long end);
1175
1176 struct mmu_notifier mn;
1177 atomic_t notifier_count;
1178 /* A list of umems that don't have private mmu notifier counters yet. */
1179 struct list_head no_private_counters;
1180 int odp_mrs_count;
1181#endif
Roland Dreiere2773c02005-07-07 17:57:10 -07001182};
1183
1184struct ib_uobject {
1185 u64 user_handle; /* handle given to us by userspace */
1186 struct ib_ucontext *context; /* associated user context */
Roland Dreier9ead1902006-06-17 20:44:49 -07001187 void *object; /* containing object */
Roland Dreiere2773c02005-07-07 17:57:10 -07001188 struct list_head list; /* link to context's list */
Roland Dreierb3d636b2008-04-16 21:01:06 -07001189 int id; /* index into kernel idr */
Roland Dreier9ead1902006-06-17 20:44:49 -07001190 struct kref ref;
1191 struct rw_semaphore mutex; /* protects .live */
1192 int live;
Roland Dreiere2773c02005-07-07 17:57:10 -07001193};
1194
Roland Dreiere2773c02005-07-07 17:57:10 -07001195struct ib_udata {
Yann Droneaud309243e2013-12-11 23:01:44 +01001196 const void __user *inbuf;
Roland Dreiere2773c02005-07-07 17:57:10 -07001197 void __user *outbuf;
1198 size_t inlen;
1199 size_t outlen;
1200};
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202struct ib_pd {
Roland Dreiere2773c02005-07-07 17:57:10 -07001203 struct ib_device *device;
1204 struct ib_uobject *uobject;
1205 atomic_t usecnt; /* count all resources */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206};
1207
Sean Hefty59991f92011-05-23 17:52:46 -07001208struct ib_xrcd {
1209 struct ib_device *device;
Sean Heftyd3d72d92011-05-26 23:06:44 -07001210 atomic_t usecnt; /* count all exposed resources */
Sean Hefty53d0bd12011-05-24 08:33:46 -07001211 struct inode *inode;
Sean Heftyd3d72d92011-05-26 23:06:44 -07001212
1213 struct mutex tgt_qp_mutex;
1214 struct list_head tgt_qp_list;
Sean Hefty59991f92011-05-23 17:52:46 -07001215};
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217struct ib_ah {
1218 struct ib_device *device;
1219 struct ib_pd *pd;
Roland Dreiere2773c02005-07-07 17:57:10 -07001220 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221};
1222
1223typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
1224
1225struct ib_cq {
Roland Dreiere2773c02005-07-07 17:57:10 -07001226 struct ib_device *device;
1227 struct ib_uobject *uobject;
1228 ib_comp_handler comp_handler;
1229 void (*event_handler)(struct ib_event *, void *);
Dotan Barak4deccd62008-07-14 23:48:44 -07001230 void *cq_context;
Roland Dreiere2773c02005-07-07 17:57:10 -07001231 int cqe;
1232 atomic_t usecnt; /* count number of work queues */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233};
1234
1235struct ib_srq {
Roland Dreierd41fcc62005-08-18 12:23:08 -07001236 struct ib_device *device;
1237 struct ib_pd *pd;
1238 struct ib_uobject *uobject;
1239 void (*event_handler)(struct ib_event *, void *);
1240 void *srq_context;
Sean Hefty96104ed2011-05-23 16:31:36 -07001241 enum ib_srq_type srq_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 atomic_t usecnt;
Sean Hefty418d5132011-05-23 19:42:29 -07001243
1244 union {
1245 struct {
1246 struct ib_xrcd *xrcd;
1247 struct ib_cq *cq;
1248 u32 srq_num;
1249 } xrc;
1250 } ext;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251};
1252
1253struct ib_qp {
1254 struct ib_device *device;
1255 struct ib_pd *pd;
1256 struct ib_cq *send_cq;
1257 struct ib_cq *recv_cq;
1258 struct ib_srq *srq;
Sean Heftyb42b63c2011-05-23 19:59:25 -07001259 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
Sean Heftyd3d72d92011-05-26 23:06:44 -07001260 struct list_head xrcd_list;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001261 /* count times opened, mcast attaches, flow attaches */
1262 atomic_t usecnt;
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07001263 struct list_head open_list;
1264 struct ib_qp *real_qp;
Roland Dreiere2773c02005-07-07 17:57:10 -07001265 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 void (*event_handler)(struct ib_event *, void *);
1267 void *qp_context;
1268 u32 qp_num;
1269 enum ib_qp_type qp_type;
1270};
1271
1272struct ib_mr {
Roland Dreiere2773c02005-07-07 17:57:10 -07001273 struct ib_device *device;
1274 struct ib_pd *pd;
1275 struct ib_uobject *uobject;
1276 u32 lkey;
1277 u32 rkey;
1278 atomic_t usecnt; /* count number of MWs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279};
1280
1281struct ib_mw {
1282 struct ib_device *device;
1283 struct ib_pd *pd;
Roland Dreiere2773c02005-07-07 17:57:10 -07001284 struct ib_uobject *uobject;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 u32 rkey;
Shani Michaeli7083e422013-02-06 16:19:12 +00001286 enum ib_mw_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287};
1288
1289struct ib_fmr {
1290 struct ib_device *device;
1291 struct ib_pd *pd;
1292 struct list_head list;
1293 u32 lkey;
1294 u32 rkey;
1295};
1296
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001297/* Supported steering options */
1298enum ib_flow_attr_type {
1299 /* steering according to rule specifications */
1300 IB_FLOW_ATTR_NORMAL = 0x0,
1301 /* default unicast and multicast rule -
1302 * receive all Eth traffic which isn't steered to any QP
1303 */
1304 IB_FLOW_ATTR_ALL_DEFAULT = 0x1,
1305 /* default multicast rule -
1306 * receive all Eth multicast traffic which isn't steered to any QP
1307 */
1308 IB_FLOW_ATTR_MC_DEFAULT = 0x2,
1309 /* sniffer rule - receive all port traffic */
1310 IB_FLOW_ATTR_SNIFFER = 0x3
1311};
1312
1313/* Supported steering header types */
1314enum ib_flow_spec_type {
1315 /* L2 headers*/
1316 IB_FLOW_SPEC_ETH = 0x20,
Matan Barak240ae002013-11-07 15:25:13 +02001317 IB_FLOW_SPEC_IB = 0x22,
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001318 /* L3 header*/
1319 IB_FLOW_SPEC_IPV4 = 0x30,
1320 /* L4 headers*/
1321 IB_FLOW_SPEC_TCP = 0x40,
1322 IB_FLOW_SPEC_UDP = 0x41
1323};
Matan Barak240ae002013-11-07 15:25:13 +02001324#define IB_FLOW_SPEC_LAYER_MASK 0xF0
Matan Barak22878db2013-09-01 18:39:52 +03001325#define IB_FLOW_SPEC_SUPPORT_LAYERS 4
1326
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001327/* Flow steering rule priority is set according to it's domain.
1328 * Lower domain value means higher priority.
1329 */
1330enum ib_flow_domain {
1331 IB_FLOW_DOMAIN_USER,
1332 IB_FLOW_DOMAIN_ETHTOOL,
1333 IB_FLOW_DOMAIN_RFS,
1334 IB_FLOW_DOMAIN_NIC,
1335 IB_FLOW_DOMAIN_NUM /* Must be last */
1336};
1337
1338struct ib_flow_eth_filter {
1339 u8 dst_mac[6];
1340 u8 src_mac[6];
1341 __be16 ether_type;
1342 __be16 vlan_tag;
1343};
1344
1345struct ib_flow_spec_eth {
1346 enum ib_flow_spec_type type;
1347 u16 size;
1348 struct ib_flow_eth_filter val;
1349 struct ib_flow_eth_filter mask;
1350};
1351
Matan Barak240ae002013-11-07 15:25:13 +02001352struct ib_flow_ib_filter {
1353 __be16 dlid;
1354 __u8 sl;
1355};
1356
1357struct ib_flow_spec_ib {
1358 enum ib_flow_spec_type type;
1359 u16 size;
1360 struct ib_flow_ib_filter val;
1361 struct ib_flow_ib_filter mask;
1362};
1363
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001364struct ib_flow_ipv4_filter {
1365 __be32 src_ip;
1366 __be32 dst_ip;
1367};
1368
1369struct ib_flow_spec_ipv4 {
1370 enum ib_flow_spec_type type;
1371 u16 size;
1372 struct ib_flow_ipv4_filter val;
1373 struct ib_flow_ipv4_filter mask;
1374};
1375
1376struct ib_flow_tcp_udp_filter {
1377 __be16 dst_port;
1378 __be16 src_port;
1379};
1380
1381struct ib_flow_spec_tcp_udp {
1382 enum ib_flow_spec_type type;
1383 u16 size;
1384 struct ib_flow_tcp_udp_filter val;
1385 struct ib_flow_tcp_udp_filter mask;
1386};
1387
1388union ib_flow_spec {
1389 struct {
1390 enum ib_flow_spec_type type;
1391 u16 size;
1392 };
1393 struct ib_flow_spec_eth eth;
Matan Barak240ae002013-11-07 15:25:13 +02001394 struct ib_flow_spec_ib ib;
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001395 struct ib_flow_spec_ipv4 ipv4;
1396 struct ib_flow_spec_tcp_udp tcp_udp;
1397};
1398
1399struct ib_flow_attr {
1400 enum ib_flow_attr_type type;
1401 u16 size;
1402 u16 priority;
1403 u32 flags;
1404 u8 num_of_specs;
1405 u8 port;
1406 /* Following are the optional layers according to user request
1407 * struct ib_flow_spec_xxx
1408 * struct ib_flow_spec_yyy
1409 */
1410};
1411
1412struct ib_flow {
1413 struct ib_qp *qp;
1414 struct ib_uobject *uobject;
1415};
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417struct ib_mad;
1418struct ib_grh;
1419
1420enum ib_process_mad_flags {
1421 IB_MAD_IGNORE_MKEY = 1,
1422 IB_MAD_IGNORE_BKEY = 2,
1423 IB_MAD_IGNORE_ALL = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
1424};
1425
1426enum ib_mad_result {
1427 IB_MAD_RESULT_FAILURE = 0, /* (!SUCCESS is the important flag) */
1428 IB_MAD_RESULT_SUCCESS = 1 << 0, /* MAD was successfully processed */
1429 IB_MAD_RESULT_REPLY = 1 << 1, /* Reply packet needs to be sent */
1430 IB_MAD_RESULT_CONSUMED = 1 << 2 /* Packet consumed: stop processing */
1431};
1432
1433#define IB_DEVICE_NAME_MAX 64
1434
1435struct ib_cache {
1436 rwlock_t lock;
1437 struct ib_event_handler event_handler;
1438 struct ib_pkey_cache **pkey_cache;
1439 struct ib_gid_cache **gid_cache;
Jack Morgenstein6fb9cdb2006-06-17 20:37:34 -07001440 u8 *lmc_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441};
1442
Ralph Campbell9b513092006-12-12 14:27:41 -08001443struct ib_dma_mapping_ops {
1444 int (*mapping_error)(struct ib_device *dev,
1445 u64 dma_addr);
1446 u64 (*map_single)(struct ib_device *dev,
1447 void *ptr, size_t size,
1448 enum dma_data_direction direction);
1449 void (*unmap_single)(struct ib_device *dev,
1450 u64 addr, size_t size,
1451 enum dma_data_direction direction);
1452 u64 (*map_page)(struct ib_device *dev,
1453 struct page *page, unsigned long offset,
1454 size_t size,
1455 enum dma_data_direction direction);
1456 void (*unmap_page)(struct ib_device *dev,
1457 u64 addr, size_t size,
1458 enum dma_data_direction direction);
1459 int (*map_sg)(struct ib_device *dev,
1460 struct scatterlist *sg, int nents,
1461 enum dma_data_direction direction);
1462 void (*unmap_sg)(struct ib_device *dev,
1463 struct scatterlist *sg, int nents,
1464 enum dma_data_direction direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08001465 void (*sync_single_for_cpu)(struct ib_device *dev,
1466 u64 dma_handle,
1467 size_t size,
Dotan Barak4deccd62008-07-14 23:48:44 -07001468 enum dma_data_direction dir);
Ralph Campbell9b513092006-12-12 14:27:41 -08001469 void (*sync_single_for_device)(struct ib_device *dev,
1470 u64 dma_handle,
1471 size_t size,
1472 enum dma_data_direction dir);
1473 void *(*alloc_coherent)(struct ib_device *dev,
1474 size_t size,
1475 u64 *dma_handle,
1476 gfp_t flag);
1477 void (*free_coherent)(struct ib_device *dev,
1478 size_t size, void *cpu_addr,
1479 u64 dma_handle);
1480};
1481
Tom Tucker07ebafb2006-08-03 16:02:42 -05001482struct iw_cm_verbs;
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484struct ib_device {
1485 struct device *dma_device;
1486
1487 char name[IB_DEVICE_NAME_MAX];
1488
1489 struct list_head event_handler_list;
1490 spinlock_t event_handler_lock;
1491
Alexander Chiang17a55f72010-02-02 19:09:16 +00001492 spinlock_t client_data_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 struct list_head core_list;
1494 struct list_head client_data_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 struct ib_cache cache;
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001497 int *pkey_tbl_len;
1498 int *gid_tbl_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03001500 int num_comp_vectors;
1501
Tom Tucker07ebafb2006-08-03 16:02:42 -05001502 struct iw_cm_verbs *iwcm;
1503
Steve Wise7f624d02008-07-14 23:48:48 -07001504 int (*get_protocol_stats)(struct ib_device *device,
1505 union rdma_protocol_stats *stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 int (*query_device)(struct ib_device *device,
1507 struct ib_device_attr *device_attr);
1508 int (*query_port)(struct ib_device *device,
1509 u8 port_num,
1510 struct ib_port_attr *port_attr);
Michael Wang6b90a6d2015-05-05 14:50:18 +02001511 enum rdma_protocol_type (*query_protocol)(struct ib_device *device,
1512 u8 port_num);
Eli Cohena3f5ada2010-09-27 17:51:10 -07001513 enum rdma_link_layer (*get_link_layer)(struct ib_device *device,
1514 u8 port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 int (*query_gid)(struct ib_device *device,
1516 u8 port_num, int index,
1517 union ib_gid *gid);
1518 int (*query_pkey)(struct ib_device *device,
1519 u8 port_num, u16 index, u16 *pkey);
1520 int (*modify_device)(struct ib_device *device,
1521 int device_modify_mask,
1522 struct ib_device_modify *device_modify);
1523 int (*modify_port)(struct ib_device *device,
1524 u8 port_num, int port_modify_mask,
1525 struct ib_port_modify *port_modify);
Roland Dreiere2773c02005-07-07 17:57:10 -07001526 struct ib_ucontext * (*alloc_ucontext)(struct ib_device *device,
1527 struct ib_udata *udata);
1528 int (*dealloc_ucontext)(struct ib_ucontext *context);
1529 int (*mmap)(struct ib_ucontext *context,
1530 struct vm_area_struct *vma);
1531 struct ib_pd * (*alloc_pd)(struct ib_device *device,
1532 struct ib_ucontext *context,
1533 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 int (*dealloc_pd)(struct ib_pd *pd);
1535 struct ib_ah * (*create_ah)(struct ib_pd *pd,
1536 struct ib_ah_attr *ah_attr);
1537 int (*modify_ah)(struct ib_ah *ah,
1538 struct ib_ah_attr *ah_attr);
1539 int (*query_ah)(struct ib_ah *ah,
1540 struct ib_ah_attr *ah_attr);
1541 int (*destroy_ah)(struct ib_ah *ah);
Roland Dreierd41fcc62005-08-18 12:23:08 -07001542 struct ib_srq * (*create_srq)(struct ib_pd *pd,
1543 struct ib_srq_init_attr *srq_init_attr,
1544 struct ib_udata *udata);
1545 int (*modify_srq)(struct ib_srq *srq,
1546 struct ib_srq_attr *srq_attr,
Ralph Campbell9bc57e22006-08-11 14:58:09 -07001547 enum ib_srq_attr_mask srq_attr_mask,
1548 struct ib_udata *udata);
Roland Dreierd41fcc62005-08-18 12:23:08 -07001549 int (*query_srq)(struct ib_srq *srq,
1550 struct ib_srq_attr *srq_attr);
1551 int (*destroy_srq)(struct ib_srq *srq);
1552 int (*post_srq_recv)(struct ib_srq *srq,
1553 struct ib_recv_wr *recv_wr,
1554 struct ib_recv_wr **bad_recv_wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 struct ib_qp * (*create_qp)(struct ib_pd *pd,
Roland Dreiere2773c02005-07-07 17:57:10 -07001556 struct ib_qp_init_attr *qp_init_attr,
1557 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 int (*modify_qp)(struct ib_qp *qp,
1559 struct ib_qp_attr *qp_attr,
Ralph Campbell9bc57e22006-08-11 14:58:09 -07001560 int qp_attr_mask,
1561 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 int (*query_qp)(struct ib_qp *qp,
1563 struct ib_qp_attr *qp_attr,
1564 int qp_attr_mask,
1565 struct ib_qp_init_attr *qp_init_attr);
1566 int (*destroy_qp)(struct ib_qp *qp);
1567 int (*post_send)(struct ib_qp *qp,
1568 struct ib_send_wr *send_wr,
1569 struct ib_send_wr **bad_send_wr);
1570 int (*post_recv)(struct ib_qp *qp,
1571 struct ib_recv_wr *recv_wr,
1572 struct ib_recv_wr **bad_recv_wr);
Roland Dreiere2773c02005-07-07 17:57:10 -07001573 struct ib_cq * (*create_cq)(struct ib_device *device, int cqe,
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03001574 int comp_vector,
Roland Dreiere2773c02005-07-07 17:57:10 -07001575 struct ib_ucontext *context,
1576 struct ib_udata *udata);
Eli Cohen2dd57162008-04-16 21:09:33 -07001577 int (*modify_cq)(struct ib_cq *cq, u16 cq_count,
1578 u16 cq_period);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 int (*destroy_cq)(struct ib_cq *cq);
Roland Dreier33b9b3e2006-01-30 14:29:21 -08001580 int (*resize_cq)(struct ib_cq *cq, int cqe,
1581 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 int (*poll_cq)(struct ib_cq *cq, int num_entries,
1583 struct ib_wc *wc);
1584 int (*peek_cq)(struct ib_cq *cq, int wc_cnt);
1585 int (*req_notify_cq)(struct ib_cq *cq,
Roland Dreiered23a722007-05-06 21:02:48 -07001586 enum ib_cq_notify_flags flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 int (*req_ncomp_notif)(struct ib_cq *cq,
1588 int wc_cnt);
1589 struct ib_mr * (*get_dma_mr)(struct ib_pd *pd,
1590 int mr_access_flags);
1591 struct ib_mr * (*reg_phys_mr)(struct ib_pd *pd,
1592 struct ib_phys_buf *phys_buf_array,
1593 int num_phys_buf,
1594 int mr_access_flags,
1595 u64 *iova_start);
Roland Dreiere2773c02005-07-07 17:57:10 -07001596 struct ib_mr * (*reg_user_mr)(struct ib_pd *pd,
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001597 u64 start, u64 length,
1598 u64 virt_addr,
Roland Dreiere2773c02005-07-07 17:57:10 -07001599 int mr_access_flags,
1600 struct ib_udata *udata);
Matan Barak7e6edb92014-07-31 11:01:28 +03001601 int (*rereg_user_mr)(struct ib_mr *mr,
1602 int flags,
1603 u64 start, u64 length,
1604 u64 virt_addr,
1605 int mr_access_flags,
1606 struct ib_pd *pd,
1607 struct ib_udata *udata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 int (*query_mr)(struct ib_mr *mr,
1609 struct ib_mr_attr *mr_attr);
1610 int (*dereg_mr)(struct ib_mr *mr);
Sagi Grimberg17cd3a22014-02-23 14:19:04 +02001611 int (*destroy_mr)(struct ib_mr *mr);
1612 struct ib_mr * (*create_mr)(struct ib_pd *pd,
1613 struct ib_mr_init_attr *mr_init_attr);
Steve Wise00f7ec32008-07-14 23:48:45 -07001614 struct ib_mr * (*alloc_fast_reg_mr)(struct ib_pd *pd,
1615 int max_page_list_len);
1616 struct ib_fast_reg_page_list * (*alloc_fast_reg_page_list)(struct ib_device *device,
1617 int page_list_len);
1618 void (*free_fast_reg_page_list)(struct ib_fast_reg_page_list *page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 int (*rereg_phys_mr)(struct ib_mr *mr,
1620 int mr_rereg_mask,
1621 struct ib_pd *pd,
1622 struct ib_phys_buf *phys_buf_array,
1623 int num_phys_buf,
1624 int mr_access_flags,
1625 u64 *iova_start);
Shani Michaeli7083e422013-02-06 16:19:12 +00001626 struct ib_mw * (*alloc_mw)(struct ib_pd *pd,
1627 enum ib_mw_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 int (*bind_mw)(struct ib_qp *qp,
1629 struct ib_mw *mw,
1630 struct ib_mw_bind *mw_bind);
1631 int (*dealloc_mw)(struct ib_mw *mw);
1632 struct ib_fmr * (*alloc_fmr)(struct ib_pd *pd,
1633 int mr_access_flags,
1634 struct ib_fmr_attr *fmr_attr);
1635 int (*map_phys_fmr)(struct ib_fmr *fmr,
1636 u64 *page_list, int list_len,
1637 u64 iova);
1638 int (*unmap_fmr)(struct list_head *fmr_list);
1639 int (*dealloc_fmr)(struct ib_fmr *fmr);
1640 int (*attach_mcast)(struct ib_qp *qp,
1641 union ib_gid *gid,
1642 u16 lid);
1643 int (*detach_mcast)(struct ib_qp *qp,
1644 union ib_gid *gid,
1645 u16 lid);
1646 int (*process_mad)(struct ib_device *device,
1647 int process_mad_flags,
1648 u8 port_num,
1649 struct ib_wc *in_wc,
1650 struct ib_grh *in_grh,
1651 struct ib_mad *in_mad,
1652 struct ib_mad *out_mad);
Sean Hefty59991f92011-05-23 17:52:46 -07001653 struct ib_xrcd * (*alloc_xrcd)(struct ib_device *device,
1654 struct ib_ucontext *ucontext,
1655 struct ib_udata *udata);
1656 int (*dealloc_xrcd)(struct ib_xrcd *xrcd);
Hadar Hen Zion319a4412013-08-07 14:01:59 +03001657 struct ib_flow * (*create_flow)(struct ib_qp *qp,
1658 struct ib_flow_attr
1659 *flow_attr,
1660 int domain);
1661 int (*destroy_flow)(struct ib_flow *flow_id);
Sagi Grimberg1b01d332014-02-23 14:19:05 +02001662 int (*check_mr_status)(struct ib_mr *mr, u32 check_mask,
1663 struct ib_mr_status *mr_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Ralph Campbell9b513092006-12-12 14:27:41 -08001665 struct ib_dma_mapping_ops *dma_ops;
1666
Roland Dreiere2773c02005-07-07 17:57:10 -07001667 struct module *owner;
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001668 struct device dev;
Greg Kroah-Hartman35be0682007-12-17 15:54:39 -04001669 struct kobject *ports_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 struct list_head port_list;
1671
1672 enum {
1673 IB_DEV_UNINITIALIZED,
1674 IB_DEV_REGISTERED,
1675 IB_DEV_UNREGISTERED
1676 } reg_state;
1677
Roland Dreier274c0892005-09-29 14:17:48 -07001678 int uverbs_abi_ver;
Alexander Chiang17a55f72010-02-02 19:09:16 +00001679 u64 uverbs_cmd_mask;
Yann Droneaudf21519b2013-11-06 23:21:49 +01001680 u64 uverbs_ex_cmd_mask;
Roland Dreier274c0892005-09-29 14:17:48 -07001681
Roland Dreierc5bcbbb2006-02-02 09:47:14 -08001682 char node_desc[64];
Sean Heftycf311cd2006-01-10 07:39:34 -08001683 __be64 node_guid;
Steve Wise96f15c02008-07-14 23:48:53 -07001684 u32 local_dma_lkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 u8 node_type;
1686 u8 phys_port_cnt;
1687};
1688
1689struct ib_client {
1690 char *name;
1691 void (*add) (struct ib_device *);
1692 void (*remove)(struct ib_device *);
1693
1694 struct list_head list;
1695};
1696
1697struct ib_device *ib_alloc_device(size_t size);
1698void ib_dealloc_device(struct ib_device *device);
1699
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001700int ib_register_device(struct ib_device *device,
1701 int (*port_callback)(struct ib_device *,
1702 u8, struct kobject *));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703void ib_unregister_device(struct ib_device *device);
1704
1705int ib_register_client (struct ib_client *client);
1706void ib_unregister_client(struct ib_client *client);
1707
1708void *ib_get_client_data(struct ib_device *device, struct ib_client *client);
1709void ib_set_client_data(struct ib_device *device, struct ib_client *client,
1710 void *data);
1711
Roland Dreiere2773c02005-07-07 17:57:10 -07001712static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
1713{
1714 return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
1715}
1716
1717static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
1718{
Yann Droneaud43c611652015-02-05 22:10:18 +01001719 return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
Roland Dreiere2773c02005-07-07 17:57:10 -07001720}
1721
Roland Dreier8a518662006-02-13 12:48:12 -08001722/**
1723 * ib_modify_qp_is_ok - Check that the supplied attribute mask
1724 * contains all required attributes and no attributes not allowed for
1725 * the given QP state transition.
1726 * @cur_state: Current QP state
1727 * @next_state: Next QP state
1728 * @type: QP type
1729 * @mask: Mask of supplied QP attributes
Matan Barakdd5f03b2013-12-12 18:03:11 +02001730 * @ll : link layer of port
Roland Dreier8a518662006-02-13 12:48:12 -08001731 *
1732 * This function is a helper function that a low-level driver's
1733 * modify_qp method can use to validate the consumer's input. It
1734 * checks that cur_state and next_state are valid QP states, that a
1735 * transition from cur_state to next_state is allowed by the IB spec,
1736 * and that the attribute mask supplied is allowed for the transition.
1737 */
1738int ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
Matan Barakdd5f03b2013-12-12 18:03:11 +02001739 enum ib_qp_type type, enum ib_qp_attr_mask mask,
1740 enum rdma_link_layer ll);
Roland Dreier8a518662006-02-13 12:48:12 -08001741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742int ib_register_event_handler (struct ib_event_handler *event_handler);
1743int ib_unregister_event_handler(struct ib_event_handler *event_handler);
1744void ib_dispatch_event(struct ib_event *event);
1745
1746int ib_query_device(struct ib_device *device,
1747 struct ib_device_attr *device_attr);
1748
1749int ib_query_port(struct ib_device *device,
1750 u8 port_num, struct ib_port_attr *port_attr);
1751
Eli Cohena3f5ada2010-09-27 17:51:10 -07001752enum rdma_link_layer rdma_port_get_link_layer(struct ib_device *device,
1753 u8 port_num);
1754
Michael Wangde66be92015-05-05 14:50:19 +02001755static inline bool rdma_protocol_ib(struct ib_device *device, u8 port_num)
1756{
1757 return device->query_protocol(device, port_num) == RDMA_PROTOCOL_IB;
1758}
1759
1760static inline bool rdma_protocol_iboe(struct ib_device *device, u8 port_num)
1761{
1762 return device->query_protocol(device, port_num) == RDMA_PROTOCOL_IBOE;
1763}
1764
1765static inline bool rdma_protocol_iwarp(struct ib_device *device, u8 port_num)
1766{
1767 return device->query_protocol(device, port_num) == RDMA_PROTOCOL_IWARP;
1768}
1769
1770static inline bool rdma_ib_or_iboe(struct ib_device *device, u8 port_num)
1771{
1772 enum rdma_protocol_type pt = device->query_protocol(device, port_num);
1773
1774 return (pt == RDMA_PROTOCOL_IB || pt == RDMA_PROTOCOL_IBOE);
1775}
1776
Michael Wangc757dea2015-05-05 14:50:32 +02001777/**
1778 * rdma_cap_ib_mad - Check if the port of device has the capability Infiniband
1779 * Management Datagrams.
1780 *
1781 * @device: Device to be checked
1782 * @port_num: Port number of the device
1783 *
1784 * Return false when port of the device don't support Infiniband
1785 * Management Datagrams.
1786 */
1787static inline bool rdma_cap_ib_mad(struct ib_device *device, u8 port_num)
1788{
1789 return rdma_ib_or_iboe(device, port_num);
1790}
1791
Michael Wang29541e32015-05-05 14:50:33 +02001792/**
1793 * rdma_cap_ib_smi - Check if the port of device has the capability Infiniband
1794 * Subnet Management Interface.
1795 *
1796 * @device: Device to be checked
1797 * @port_num: Port number of the device
1798 *
1799 * Return false when port of the device don't support Infiniband
1800 * Subnet Management Interface.
1801 */
1802static inline bool rdma_cap_ib_smi(struct ib_device *device, u8 port_num)
1803{
1804 return rdma_protocol_ib(device, port_num);
1805}
1806
Michael Wang72219cea2015-05-05 14:50:34 +02001807/**
1808 * rdma_cap_ib_cm - Check if the port of device has the capability Infiniband
1809 * Communication Manager.
1810 *
1811 * @device: Device to be checked
1812 * @port_num: Port number of the device
1813 *
1814 * Return false when port of the device don't support Infiniband
1815 * Communication Manager.
1816 */
1817static inline bool rdma_cap_ib_cm(struct ib_device *device, u8 port_num)
1818{
1819 return rdma_ib_or_iboe(device, port_num);
1820}
1821
Michael Wang04215332015-05-05 14:50:35 +02001822/**
1823 * rdma_cap_iw_cm - Check if the port of device has the capability IWARP
1824 * Communication Manager.
1825 *
1826 * @device: Device to be checked
1827 * @port_num: Port number of the device
1828 *
1829 * Return false when port of the device don't support IWARP
1830 * Communication Manager.
1831 */
1832static inline bool rdma_cap_iw_cm(struct ib_device *device, u8 port_num)
1833{
1834 return rdma_protocol_iwarp(device, port_num);
1835}
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837int ib_query_gid(struct ib_device *device,
1838 u8 port_num, int index, union ib_gid *gid);
1839
1840int ib_query_pkey(struct ib_device *device,
1841 u8 port_num, u16 index, u16 *pkey);
1842
1843int ib_modify_device(struct ib_device *device,
1844 int device_modify_mask,
1845 struct ib_device_modify *device_modify);
1846
1847int ib_modify_port(struct ib_device *device,
1848 u8 port_num, int port_modify_mask,
1849 struct ib_port_modify *port_modify);
1850
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001851int ib_find_gid(struct ib_device *device, union ib_gid *gid,
1852 u8 *port_num, u16 *index);
1853
1854int ib_find_pkey(struct ib_device *device,
1855 u8 port_num, u16 pkey, u16 *index);
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857/**
1858 * ib_alloc_pd - Allocates an unused protection domain.
1859 * @device: The device on which to allocate the protection domain.
1860 *
1861 * A protection domain object provides an association between QPs, shared
1862 * receive queues, address handles, memory regions, and memory windows.
1863 */
1864struct ib_pd *ib_alloc_pd(struct ib_device *device);
1865
1866/**
1867 * ib_dealloc_pd - Deallocates a protection domain.
1868 * @pd: The protection domain to deallocate.
1869 */
1870int ib_dealloc_pd(struct ib_pd *pd);
1871
1872/**
1873 * ib_create_ah - Creates an address handle for the given address vector.
1874 * @pd: The protection domain associated with the address handle.
1875 * @ah_attr: The attributes of the address vector.
1876 *
1877 * The address handle is used to reference a local or global destination
1878 * in all UD QP post sends.
1879 */
1880struct ib_ah *ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
1881
1882/**
Sean Hefty4e00d692006-06-17 20:37:39 -07001883 * ib_init_ah_from_wc - Initializes address handle attributes from a
1884 * work completion.
1885 * @device: Device on which the received message arrived.
1886 * @port_num: Port on which the received message arrived.
1887 * @wc: Work completion associated with the received message.
1888 * @grh: References the received global route header. This parameter is
1889 * ignored unless the work completion indicates that the GRH is valid.
1890 * @ah_attr: Returned attributes that can be used when creating an address
1891 * handle for replying to the message.
1892 */
1893int ib_init_ah_from_wc(struct ib_device *device, u8 port_num, struct ib_wc *wc,
1894 struct ib_grh *grh, struct ib_ah_attr *ah_attr);
1895
1896/**
Hal Rosenstock513789e2005-07-27 11:45:34 -07001897 * ib_create_ah_from_wc - Creates an address handle associated with the
1898 * sender of the specified work completion.
1899 * @pd: The protection domain associated with the address handle.
1900 * @wc: Work completion information associated with a received message.
1901 * @grh: References the received global route header. This parameter is
1902 * ignored unless the work completion indicates that the GRH is valid.
1903 * @port_num: The outbound port number to associate with the address.
1904 *
1905 * The address handle is used to reference a local or global destination
1906 * in all UD QP post sends.
1907 */
1908struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, struct ib_wc *wc,
1909 struct ib_grh *grh, u8 port_num);
1910
1911/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 * ib_modify_ah - Modifies the address vector associated with an address
1913 * handle.
1914 * @ah: The address handle to modify.
1915 * @ah_attr: The new address vector attributes to associate with the
1916 * address handle.
1917 */
1918int ib_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
1919
1920/**
1921 * ib_query_ah - Queries the address vector associated with an address
1922 * handle.
1923 * @ah: The address handle to query.
1924 * @ah_attr: The address vector attributes associated with the address
1925 * handle.
1926 */
1927int ib_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
1928
1929/**
1930 * ib_destroy_ah - Destroys an address handle.
1931 * @ah: The address handle to destroy.
1932 */
1933int ib_destroy_ah(struct ib_ah *ah);
1934
1935/**
Roland Dreierd41fcc62005-08-18 12:23:08 -07001936 * ib_create_srq - Creates a SRQ associated with the specified protection
1937 * domain.
1938 * @pd: The protection domain associated with the SRQ.
Dotan Barakabb6e9b2006-02-23 12:13:51 -08001939 * @srq_init_attr: A list of initial attributes required to create the
1940 * SRQ. If SRQ creation succeeds, then the attributes are updated to
1941 * the actual capabilities of the created SRQ.
Roland Dreierd41fcc62005-08-18 12:23:08 -07001942 *
1943 * srq_attr->max_wr and srq_attr->max_sge are read the determine the
1944 * requested size of the SRQ, and set to the actual values allocated
1945 * on return. If ib_create_srq() succeeds, then max_wr and max_sge
1946 * will always be at least as large as the requested values.
1947 */
1948struct ib_srq *ib_create_srq(struct ib_pd *pd,
1949 struct ib_srq_init_attr *srq_init_attr);
1950
1951/**
1952 * ib_modify_srq - Modifies the attributes for the specified SRQ.
1953 * @srq: The SRQ to modify.
1954 * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
1955 * the current values of selected SRQ attributes are returned.
1956 * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
1957 * are being modified.
1958 *
1959 * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
1960 * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
1961 * the number of receives queued drops below the limit.
1962 */
1963int ib_modify_srq(struct ib_srq *srq,
1964 struct ib_srq_attr *srq_attr,
1965 enum ib_srq_attr_mask srq_attr_mask);
1966
1967/**
1968 * ib_query_srq - Returns the attribute list and current values for the
1969 * specified SRQ.
1970 * @srq: The SRQ to query.
1971 * @srq_attr: The attributes of the specified SRQ.
1972 */
1973int ib_query_srq(struct ib_srq *srq,
1974 struct ib_srq_attr *srq_attr);
1975
1976/**
1977 * ib_destroy_srq - Destroys the specified SRQ.
1978 * @srq: The SRQ to destroy.
1979 */
1980int ib_destroy_srq(struct ib_srq *srq);
1981
1982/**
1983 * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
1984 * @srq: The SRQ to post the work request on.
1985 * @recv_wr: A list of work requests to post on the receive queue.
1986 * @bad_recv_wr: On an immediate failure, this parameter will reference
1987 * the work request that failed to be posted on the QP.
1988 */
1989static inline int ib_post_srq_recv(struct ib_srq *srq,
1990 struct ib_recv_wr *recv_wr,
1991 struct ib_recv_wr **bad_recv_wr)
1992{
1993 return srq->device->post_srq_recv(srq, recv_wr, bad_recv_wr);
1994}
1995
1996/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 * ib_create_qp - Creates a QP associated with the specified protection
1998 * domain.
1999 * @pd: The protection domain associated with the QP.
Dotan Barakabb6e9b2006-02-23 12:13:51 -08002000 * @qp_init_attr: A list of initial attributes required to create the
2001 * QP. If QP creation succeeds, then the attributes are updated to
2002 * the actual capabilities of the created QP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 */
2004struct ib_qp *ib_create_qp(struct ib_pd *pd,
2005 struct ib_qp_init_attr *qp_init_attr);
2006
2007/**
2008 * ib_modify_qp - Modifies the attributes for the specified QP and then
2009 * transitions the QP to the given state.
2010 * @qp: The QP to modify.
2011 * @qp_attr: On input, specifies the QP attributes to modify. On output,
2012 * the current values of selected QP attributes are returned.
2013 * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
2014 * are being modified.
2015 */
2016int ib_modify_qp(struct ib_qp *qp,
2017 struct ib_qp_attr *qp_attr,
2018 int qp_attr_mask);
2019
2020/**
2021 * ib_query_qp - Returns the attribute list and current values for the
2022 * specified QP.
2023 * @qp: The QP to query.
2024 * @qp_attr: The attributes of the specified QP.
2025 * @qp_attr_mask: A bit-mask used to select specific attributes to query.
2026 * @qp_init_attr: Additional attributes of the selected QP.
2027 *
2028 * The qp_attr_mask may be used to limit the query to gathering only the
2029 * selected attributes.
2030 */
2031int ib_query_qp(struct ib_qp *qp,
2032 struct ib_qp_attr *qp_attr,
2033 int qp_attr_mask,
2034 struct ib_qp_init_attr *qp_init_attr);
2035
2036/**
2037 * ib_destroy_qp - Destroys the specified QP.
2038 * @qp: The QP to destroy.
2039 */
2040int ib_destroy_qp(struct ib_qp *qp);
2041
2042/**
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002043 * ib_open_qp - Obtain a reference to an existing sharable QP.
2044 * @xrcd - XRC domain
2045 * @qp_open_attr: Attributes identifying the QP to open.
2046 *
2047 * Returns a reference to a sharable QP.
2048 */
2049struct ib_qp *ib_open_qp(struct ib_xrcd *xrcd,
2050 struct ib_qp_open_attr *qp_open_attr);
2051
2052/**
2053 * ib_close_qp - Release an external reference to a QP.
Sean Heftyd3d72d92011-05-26 23:06:44 -07002054 * @qp: The QP handle to release
2055 *
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002056 * The opened QP handle is released by the caller. The underlying
2057 * shared QP is not destroyed until all internal references are released.
Sean Heftyd3d72d92011-05-26 23:06:44 -07002058 */
Sean Hefty0e0ec7e2011-08-08 15:31:51 -07002059int ib_close_qp(struct ib_qp *qp);
Sean Heftyd3d72d92011-05-26 23:06:44 -07002060
2061/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 * ib_post_send - Posts a list of work requests to the send queue of
2063 * the specified QP.
2064 * @qp: The QP to post the work request on.
2065 * @send_wr: A list of work requests to post on the send queue.
2066 * @bad_send_wr: On an immediate failure, this parameter will reference
2067 * the work request that failed to be posted on the QP.
Bart Van Assche55464d42009-12-09 14:20:04 -08002068 *
2069 * While IBA Vol. 1 section 11.4.1.1 specifies that if an immediate
2070 * error is returned, the QP state shall not be affected,
2071 * ib_post_send() will return an immediate error after queueing any
2072 * earlier work requests in the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 */
2074static inline int ib_post_send(struct ib_qp *qp,
2075 struct ib_send_wr *send_wr,
2076 struct ib_send_wr **bad_send_wr)
2077{
2078 return qp->device->post_send(qp, send_wr, bad_send_wr);
2079}
2080
2081/**
2082 * ib_post_recv - Posts a list of work requests to the receive queue of
2083 * the specified QP.
2084 * @qp: The QP to post the work request on.
2085 * @recv_wr: A list of work requests to post on the receive queue.
2086 * @bad_recv_wr: On an immediate failure, this parameter will reference
2087 * the work request that failed to be posted on the QP.
2088 */
2089static inline int ib_post_recv(struct ib_qp *qp,
2090 struct ib_recv_wr *recv_wr,
2091 struct ib_recv_wr **bad_recv_wr)
2092{
2093 return qp->device->post_recv(qp, recv_wr, bad_recv_wr);
2094}
2095
2096/**
2097 * ib_create_cq - Creates a CQ on the specified device.
2098 * @device: The device on which to create the CQ.
2099 * @comp_handler: A user-specified callback that is invoked when a
2100 * completion event occurs on the CQ.
2101 * @event_handler: A user-specified callback that is invoked when an
2102 * asynchronous event not associated with a completion occurs on the CQ.
2103 * @cq_context: Context associated with the CQ returned to the user via
2104 * the associated completion and event handlers.
2105 * @cqe: The minimum size of the CQ.
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03002106 * @comp_vector - Completion vector used to signal completion events.
2107 * Must be >= 0 and < context->num_comp_vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 *
2109 * Users can examine the cq structure to determine the actual CQ size.
2110 */
2111struct ib_cq *ib_create_cq(struct ib_device *device,
2112 ib_comp_handler comp_handler,
2113 void (*event_handler)(struct ib_event *, void *),
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03002114 void *cq_context, int cqe, int comp_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116/**
2117 * ib_resize_cq - Modifies the capacity of the CQ.
2118 * @cq: The CQ to resize.
2119 * @cqe: The minimum size of the CQ.
2120 *
2121 * Users can examine the cq structure to determine the actual CQ size.
2122 */
2123int ib_resize_cq(struct ib_cq *cq, int cqe);
2124
2125/**
Eli Cohen2dd57162008-04-16 21:09:33 -07002126 * ib_modify_cq - Modifies moderation params of the CQ
2127 * @cq: The CQ to modify.
2128 * @cq_count: number of CQEs that will trigger an event
2129 * @cq_period: max period of time in usec before triggering an event
2130 *
2131 */
2132int ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
2133
2134/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 * ib_destroy_cq - Destroys the specified CQ.
2136 * @cq: The CQ to destroy.
2137 */
2138int ib_destroy_cq(struct ib_cq *cq);
2139
2140/**
2141 * ib_poll_cq - poll a CQ for completion(s)
2142 * @cq:the CQ being polled
2143 * @num_entries:maximum number of completions to return
2144 * @wc:array of at least @num_entries &struct ib_wc where completions
2145 * will be returned
2146 *
2147 * Poll a CQ for (possibly multiple) completions. If the return value
2148 * is < 0, an error occurred. If the return value is >= 0, it is the
2149 * number of completions returned. If the return value is
2150 * non-negative and < num_entries, then the CQ was emptied.
2151 */
2152static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
2153 struct ib_wc *wc)
2154{
2155 return cq->device->poll_cq(cq, num_entries, wc);
2156}
2157
2158/**
2159 * ib_peek_cq - Returns the number of unreaped completions currently
2160 * on the specified CQ.
2161 * @cq: The CQ to peek.
2162 * @wc_cnt: A minimum number of unreaped completions to check for.
2163 *
2164 * If the number of unreaped completions is greater than or equal to wc_cnt,
2165 * this function returns wc_cnt, otherwise, it returns the actual number of
2166 * unreaped completions.
2167 */
2168int ib_peek_cq(struct ib_cq *cq, int wc_cnt);
2169
2170/**
2171 * ib_req_notify_cq - Request completion notification on a CQ.
2172 * @cq: The CQ to generate an event for.
Roland Dreiered23a722007-05-06 21:02:48 -07002173 * @flags:
2174 * Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
2175 * to request an event on the next solicited event or next work
2176 * completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
2177 * may also be |ed in to request a hint about missed events, as
2178 * described below.
2179 *
2180 * Return Value:
2181 * < 0 means an error occurred while requesting notification
2182 * == 0 means notification was requested successfully, and if
2183 * IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
2184 * were missed and it is safe to wait for another event. In
2185 * this case is it guaranteed that any work completions added
2186 * to the CQ since the last CQ poll will trigger a completion
2187 * notification event.
2188 * > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
2189 * in. It means that the consumer must poll the CQ again to
2190 * make sure it is empty to avoid missing an event because of a
2191 * race between requesting notification and an entry being
2192 * added to the CQ. This return value means it is possible
2193 * (but not guaranteed) that a work completion has been added
2194 * to the CQ since the last poll without triggering a
2195 * completion notification event.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 */
2197static inline int ib_req_notify_cq(struct ib_cq *cq,
Roland Dreiered23a722007-05-06 21:02:48 -07002198 enum ib_cq_notify_flags flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
Roland Dreiered23a722007-05-06 21:02:48 -07002200 return cq->device->req_notify_cq(cq, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202
2203/**
2204 * ib_req_ncomp_notif - Request completion notification when there are
2205 * at least the specified number of unreaped completions on the CQ.
2206 * @cq: The CQ to generate an event for.
2207 * @wc_cnt: The number of unreaped completions that should be on the
2208 * CQ before an event is generated.
2209 */
2210static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
2211{
2212 return cq->device->req_ncomp_notif ?
2213 cq->device->req_ncomp_notif(cq, wc_cnt) :
2214 -ENOSYS;
2215}
2216
2217/**
2218 * ib_get_dma_mr - Returns a memory region for system memory that is
2219 * usable for DMA.
2220 * @pd: The protection domain associated with the memory region.
2221 * @mr_access_flags: Specifies the memory access rights.
Ralph Campbell9b513092006-12-12 14:27:41 -08002222 *
2223 * Note that the ib_dma_*() functions defined below must be used
2224 * to create/destroy addresses used with the Lkey or Rkey returned
2225 * by ib_get_dma_mr().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 */
2227struct ib_mr *ib_get_dma_mr(struct ib_pd *pd, int mr_access_flags);
2228
2229/**
Ralph Campbell9b513092006-12-12 14:27:41 -08002230 * ib_dma_mapping_error - check a DMA addr for error
2231 * @dev: The device for which the dma_addr was created
2232 * @dma_addr: The DMA address to check
2233 */
2234static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
2235{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002236 if (dev->dma_ops)
2237 return dev->dma_ops->mapping_error(dev, dma_addr);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07002238 return dma_mapping_error(dev->dma_device, dma_addr);
Ralph Campbell9b513092006-12-12 14:27:41 -08002239}
2240
2241/**
2242 * ib_dma_map_single - Map a kernel virtual address to DMA address
2243 * @dev: The device for which the dma_addr is to be created
2244 * @cpu_addr: The kernel virtual address
2245 * @size: The size of the region in bytes
2246 * @direction: The direction of the DMA
2247 */
2248static inline u64 ib_dma_map_single(struct ib_device *dev,
2249 void *cpu_addr, size_t size,
2250 enum dma_data_direction direction)
2251{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002252 if (dev->dma_ops)
2253 return dev->dma_ops->map_single(dev, cpu_addr, size, direction);
2254 return dma_map_single(dev->dma_device, cpu_addr, size, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08002255}
2256
2257/**
2258 * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
2259 * @dev: The device for which the DMA address was created
2260 * @addr: The DMA address
2261 * @size: The size of the region in bytes
2262 * @direction: The direction of the DMA
2263 */
2264static inline void ib_dma_unmap_single(struct ib_device *dev,
2265 u64 addr, size_t size,
2266 enum dma_data_direction direction)
2267{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002268 if (dev->dma_ops)
2269 dev->dma_ops->unmap_single(dev, addr, size, direction);
2270 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002271 dma_unmap_single(dev->dma_device, addr, size, direction);
2272}
2273
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07002274static inline u64 ib_dma_map_single_attrs(struct ib_device *dev,
2275 void *cpu_addr, size_t size,
2276 enum dma_data_direction direction,
2277 struct dma_attrs *attrs)
2278{
2279 return dma_map_single_attrs(dev->dma_device, cpu_addr, size,
2280 direction, attrs);
2281}
2282
2283static inline void ib_dma_unmap_single_attrs(struct ib_device *dev,
2284 u64 addr, size_t size,
2285 enum dma_data_direction direction,
2286 struct dma_attrs *attrs)
2287{
2288 return dma_unmap_single_attrs(dev->dma_device, addr, size,
2289 direction, attrs);
2290}
2291
Ralph Campbell9b513092006-12-12 14:27:41 -08002292/**
2293 * ib_dma_map_page - Map a physical page to DMA address
2294 * @dev: The device for which the dma_addr is to be created
2295 * @page: The page to be mapped
2296 * @offset: The offset within the page
2297 * @size: The size of the region in bytes
2298 * @direction: The direction of the DMA
2299 */
2300static inline u64 ib_dma_map_page(struct ib_device *dev,
2301 struct page *page,
2302 unsigned long offset,
2303 size_t size,
2304 enum dma_data_direction direction)
2305{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002306 if (dev->dma_ops)
2307 return dev->dma_ops->map_page(dev, page, offset, size, direction);
2308 return dma_map_page(dev->dma_device, page, offset, size, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08002309}
2310
2311/**
2312 * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
2313 * @dev: The device for which the DMA address was created
2314 * @addr: The DMA address
2315 * @size: The size of the region in bytes
2316 * @direction: The direction of the DMA
2317 */
2318static inline void ib_dma_unmap_page(struct ib_device *dev,
2319 u64 addr, size_t size,
2320 enum dma_data_direction direction)
2321{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002322 if (dev->dma_ops)
2323 dev->dma_ops->unmap_page(dev, addr, size, direction);
2324 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002325 dma_unmap_page(dev->dma_device, addr, size, direction);
2326}
2327
2328/**
2329 * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
2330 * @dev: The device for which the DMA addresses are to be created
2331 * @sg: The array of scatter/gather entries
2332 * @nents: The number of scatter/gather entries
2333 * @direction: The direction of the DMA
2334 */
2335static inline int ib_dma_map_sg(struct ib_device *dev,
2336 struct scatterlist *sg, int nents,
2337 enum dma_data_direction direction)
2338{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002339 if (dev->dma_ops)
2340 return dev->dma_ops->map_sg(dev, sg, nents, direction);
2341 return dma_map_sg(dev->dma_device, sg, nents, direction);
Ralph Campbell9b513092006-12-12 14:27:41 -08002342}
2343
2344/**
2345 * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
2346 * @dev: The device for which the DMA addresses were created
2347 * @sg: The array of scatter/gather entries
2348 * @nents: The number of scatter/gather entries
2349 * @direction: The direction of the DMA
2350 */
2351static inline void ib_dma_unmap_sg(struct ib_device *dev,
2352 struct scatterlist *sg, int nents,
2353 enum dma_data_direction direction)
2354{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002355 if (dev->dma_ops)
2356 dev->dma_ops->unmap_sg(dev, sg, nents, direction);
2357 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002358 dma_unmap_sg(dev->dma_device, sg, nents, direction);
2359}
2360
Arthur Kepnercb9fbc52008-04-29 01:00:34 -07002361static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
2362 struct scatterlist *sg, int nents,
2363 enum dma_data_direction direction,
2364 struct dma_attrs *attrs)
2365{
2366 return dma_map_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2367}
2368
2369static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
2370 struct scatterlist *sg, int nents,
2371 enum dma_data_direction direction,
2372 struct dma_attrs *attrs)
2373{
2374 dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2375}
Ralph Campbell9b513092006-12-12 14:27:41 -08002376/**
2377 * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
2378 * @dev: The device for which the DMA addresses were created
2379 * @sg: The scatter/gather entry
Mike Marciniszynea58a592014-03-28 13:26:59 -04002380 *
2381 * Note: this function is obsolete. To do: change all occurrences of
2382 * ib_sg_dma_address() into sg_dma_address().
Ralph Campbell9b513092006-12-12 14:27:41 -08002383 */
2384static inline u64 ib_sg_dma_address(struct ib_device *dev,
2385 struct scatterlist *sg)
2386{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002387 return sg_dma_address(sg);
Ralph Campbell9b513092006-12-12 14:27:41 -08002388}
2389
2390/**
2391 * ib_sg_dma_len - Return the DMA length from a scatter/gather entry
2392 * @dev: The device for which the DMA addresses were created
2393 * @sg: The scatter/gather entry
Mike Marciniszynea58a592014-03-28 13:26:59 -04002394 *
2395 * Note: this function is obsolete. To do: change all occurrences of
2396 * ib_sg_dma_len() into sg_dma_len().
Ralph Campbell9b513092006-12-12 14:27:41 -08002397 */
2398static inline unsigned int ib_sg_dma_len(struct ib_device *dev,
2399 struct scatterlist *sg)
2400{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002401 return sg_dma_len(sg);
Ralph Campbell9b513092006-12-12 14:27:41 -08002402}
2403
2404/**
2405 * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
2406 * @dev: The device for which the DMA address was created
2407 * @addr: The DMA address
2408 * @size: The size of the region in bytes
2409 * @dir: The direction of the DMA
2410 */
2411static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
2412 u64 addr,
2413 size_t size,
2414 enum dma_data_direction dir)
2415{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002416 if (dev->dma_ops)
2417 dev->dma_ops->sync_single_for_cpu(dev, addr, size, dir);
2418 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002419 dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
2420}
2421
2422/**
2423 * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
2424 * @dev: The device for which the DMA address was created
2425 * @addr: The DMA address
2426 * @size: The size of the region in bytes
2427 * @dir: The direction of the DMA
2428 */
2429static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
2430 u64 addr,
2431 size_t size,
2432 enum dma_data_direction dir)
2433{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002434 if (dev->dma_ops)
2435 dev->dma_ops->sync_single_for_device(dev, addr, size, dir);
2436 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002437 dma_sync_single_for_device(dev->dma_device, addr, size, dir);
2438}
2439
2440/**
2441 * ib_dma_alloc_coherent - Allocate memory and map it for DMA
2442 * @dev: The device for which the DMA address is requested
2443 * @size: The size of the region to allocate in bytes
2444 * @dma_handle: A pointer for returning the DMA address of the region
2445 * @flag: memory allocator flags
2446 */
2447static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
2448 size_t size,
2449 u64 *dma_handle,
2450 gfp_t flag)
2451{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002452 if (dev->dma_ops)
2453 return dev->dma_ops->alloc_coherent(dev, size, dma_handle, flag);
Roland Dreierc59a3da2006-12-15 13:57:26 -08002454 else {
2455 dma_addr_t handle;
2456 void *ret;
2457
2458 ret = dma_alloc_coherent(dev->dma_device, size, &handle, flag);
2459 *dma_handle = handle;
2460 return ret;
2461 }
Ralph Campbell9b513092006-12-12 14:27:41 -08002462}
2463
2464/**
2465 * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
2466 * @dev: The device for which the DMA addresses were allocated
2467 * @size: The size of the region
2468 * @cpu_addr: the address returned by ib_dma_alloc_coherent()
2469 * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
2470 */
2471static inline void ib_dma_free_coherent(struct ib_device *dev,
2472 size_t size, void *cpu_addr,
2473 u64 dma_handle)
2474{
Ben Collinsd1998ef2006-12-13 22:10:05 -05002475 if (dev->dma_ops)
2476 dev->dma_ops->free_coherent(dev, size, cpu_addr, dma_handle);
2477 else
Ralph Campbell9b513092006-12-12 14:27:41 -08002478 dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
2479}
2480
2481/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 * ib_reg_phys_mr - Prepares a virtually addressed memory region for use
2483 * by an HCA.
2484 * @pd: The protection domain associated assigned to the registered region.
2485 * @phys_buf_array: Specifies a list of physical buffers to use in the
2486 * memory region.
2487 * @num_phys_buf: Specifies the size of the phys_buf_array.
2488 * @mr_access_flags: Specifies the memory access rights.
2489 * @iova_start: The offset of the region's starting I/O virtual address.
2490 */
2491struct ib_mr *ib_reg_phys_mr(struct ib_pd *pd,
2492 struct ib_phys_buf *phys_buf_array,
2493 int num_phys_buf,
2494 int mr_access_flags,
2495 u64 *iova_start);
2496
2497/**
2498 * ib_rereg_phys_mr - Modifies the attributes of an existing memory region.
2499 * Conceptually, this call performs the functions deregister memory region
2500 * followed by register physical memory region. Where possible,
2501 * resources are reused instead of deallocated and reallocated.
2502 * @mr: The memory region to modify.
2503 * @mr_rereg_mask: A bit-mask used to indicate which of the following
2504 * properties of the memory region are being modified.
2505 * @pd: If %IB_MR_REREG_PD is set in mr_rereg_mask, this field specifies
2506 * the new protection domain to associated with the memory region,
2507 * otherwise, this parameter is ignored.
2508 * @phys_buf_array: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2509 * field specifies a list of physical buffers to use in the new
2510 * translation, otherwise, this parameter is ignored.
2511 * @num_phys_buf: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2512 * field specifies the size of the phys_buf_array, otherwise, this
2513 * parameter is ignored.
2514 * @mr_access_flags: If %IB_MR_REREG_ACCESS is set in mr_rereg_mask, this
2515 * field specifies the new memory access rights, otherwise, this
2516 * parameter is ignored.
2517 * @iova_start: The offset of the region's starting I/O virtual address.
2518 */
2519int ib_rereg_phys_mr(struct ib_mr *mr,
2520 int mr_rereg_mask,
2521 struct ib_pd *pd,
2522 struct ib_phys_buf *phys_buf_array,
2523 int num_phys_buf,
2524 int mr_access_flags,
2525 u64 *iova_start);
2526
2527/**
2528 * ib_query_mr - Retrieves information about a specific memory region.
2529 * @mr: The memory region to retrieve information about.
2530 * @mr_attr: The attributes of the specified memory region.
2531 */
2532int ib_query_mr(struct ib_mr *mr, struct ib_mr_attr *mr_attr);
2533
2534/**
2535 * ib_dereg_mr - Deregisters a memory region and removes it from the
2536 * HCA translation table.
2537 * @mr: The memory region to deregister.
Shani Michaeli7083e422013-02-06 16:19:12 +00002538 *
2539 * This function can fail, if the memory region has memory windows bound to it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 */
2541int ib_dereg_mr(struct ib_mr *mr);
2542
Sagi Grimberg17cd3a22014-02-23 14:19:04 +02002543
2544/**
2545 * ib_create_mr - Allocates a memory region that may be used for
2546 * signature handover operations.
2547 * @pd: The protection domain associated with the region.
2548 * @mr_init_attr: memory region init attributes.
2549 */
2550struct ib_mr *ib_create_mr(struct ib_pd *pd,
2551 struct ib_mr_init_attr *mr_init_attr);
2552
2553/**
2554 * ib_destroy_mr - Destroys a memory region that was created using
2555 * ib_create_mr and removes it from HW translation tables.
2556 * @mr: The memory region to destroy.
2557 *
2558 * This function can fail, if the memory region has memory windows bound to it.
2559 */
2560int ib_destroy_mr(struct ib_mr *mr);
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562/**
Steve Wise00f7ec32008-07-14 23:48:45 -07002563 * ib_alloc_fast_reg_mr - Allocates memory region usable with the
2564 * IB_WR_FAST_REG_MR send work request.
2565 * @pd: The protection domain associated with the region.
2566 * @max_page_list_len: requested max physical buffer list length to be
2567 * used with fast register work requests for this MR.
2568 */
2569struct ib_mr *ib_alloc_fast_reg_mr(struct ib_pd *pd, int max_page_list_len);
2570
2571/**
2572 * ib_alloc_fast_reg_page_list - Allocates a page list array
2573 * @device - ib device pointer.
2574 * @page_list_len - size of the page list array to be allocated.
2575 *
2576 * This allocates and returns a struct ib_fast_reg_page_list * and a
2577 * page_list array that is at least page_list_len in size. The actual
2578 * size is returned in max_page_list_len. The caller is responsible
2579 * for initializing the contents of the page_list array before posting
2580 * a send work request with the IB_WC_FAST_REG_MR opcode.
2581 *
2582 * The page_list array entries must be translated using one of the
2583 * ib_dma_*() functions just like the addresses passed to
2584 * ib_map_phys_fmr(). Once the ib_post_send() is issued, the struct
2585 * ib_fast_reg_page_list must not be modified by the caller until the
2586 * IB_WC_FAST_REG_MR work request completes.
2587 */
2588struct ib_fast_reg_page_list *ib_alloc_fast_reg_page_list(
2589 struct ib_device *device, int page_list_len);
2590
2591/**
2592 * ib_free_fast_reg_page_list - Deallocates a previously allocated
2593 * page list array.
2594 * @page_list - struct ib_fast_reg_page_list pointer to be deallocated.
2595 */
2596void ib_free_fast_reg_page_list(struct ib_fast_reg_page_list *page_list);
2597
2598/**
2599 * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
2600 * R_Key and L_Key.
2601 * @mr - struct ib_mr pointer to be updated.
2602 * @newkey - new key to be used.
2603 */
2604static inline void ib_update_fast_reg_key(struct ib_mr *mr, u8 newkey)
2605{
2606 mr->lkey = (mr->lkey & 0xffffff00) | newkey;
2607 mr->rkey = (mr->rkey & 0xffffff00) | newkey;
2608}
2609
2610/**
Shani Michaeli7083e422013-02-06 16:19:12 +00002611 * ib_inc_rkey - increments the key portion of the given rkey. Can be used
2612 * for calculating a new rkey for type 2 memory windows.
2613 * @rkey - the rkey to increment.
2614 */
2615static inline u32 ib_inc_rkey(u32 rkey)
2616{
2617 const u32 mask = 0x000000ff;
2618 return ((rkey + 1) & mask) | (rkey & ~mask);
2619}
2620
2621/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 * ib_alloc_mw - Allocates a memory window.
2623 * @pd: The protection domain associated with the memory window.
Shani Michaeli7083e422013-02-06 16:19:12 +00002624 * @type: The type of the memory window (1 or 2).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 */
Shani Michaeli7083e422013-02-06 16:19:12 +00002626struct ib_mw *ib_alloc_mw(struct ib_pd *pd, enum ib_mw_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
2628/**
2629 * ib_bind_mw - Posts a work request to the send queue of the specified
2630 * QP, which binds the memory window to the given address range and
2631 * remote access attributes.
2632 * @qp: QP to post the bind work request on.
2633 * @mw: The memory window to bind.
2634 * @mw_bind: Specifies information about the memory window, including
2635 * its address range, remote access rights, and associated memory region.
Shani Michaeli7083e422013-02-06 16:19:12 +00002636 *
2637 * If there is no immediate error, the function will update the rkey member
2638 * of the mw parameter to its new value. The bind operation can still fail
2639 * asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 */
2641static inline int ib_bind_mw(struct ib_qp *qp,
2642 struct ib_mw *mw,
2643 struct ib_mw_bind *mw_bind)
2644{
2645 /* XXX reference counting in corresponding MR? */
2646 return mw->device->bind_mw ?
2647 mw->device->bind_mw(qp, mw, mw_bind) :
2648 -ENOSYS;
2649}
2650
2651/**
2652 * ib_dealloc_mw - Deallocates a memory window.
2653 * @mw: The memory window to deallocate.
2654 */
2655int ib_dealloc_mw(struct ib_mw *mw);
2656
2657/**
2658 * ib_alloc_fmr - Allocates a unmapped fast memory region.
2659 * @pd: The protection domain associated with the unmapped region.
2660 * @mr_access_flags: Specifies the memory access rights.
2661 * @fmr_attr: Attributes of the unmapped region.
2662 *
2663 * A fast memory region must be mapped before it can be used as part of
2664 * a work request.
2665 */
2666struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
2667 int mr_access_flags,
2668 struct ib_fmr_attr *fmr_attr);
2669
2670/**
2671 * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
2672 * @fmr: The fast memory region to associate with the pages.
2673 * @page_list: An array of physical pages to map to the fast memory region.
2674 * @list_len: The number of pages in page_list.
2675 * @iova: The I/O virtual address to use with the mapped region.
2676 */
2677static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
2678 u64 *page_list, int list_len,
2679 u64 iova)
2680{
2681 return fmr->device->map_phys_fmr(fmr, page_list, list_len, iova);
2682}
2683
2684/**
2685 * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
2686 * @fmr_list: A linked list of fast memory regions to unmap.
2687 */
2688int ib_unmap_fmr(struct list_head *fmr_list);
2689
2690/**
2691 * ib_dealloc_fmr - Deallocates a fast memory region.
2692 * @fmr: The fast memory region to deallocate.
2693 */
2694int ib_dealloc_fmr(struct ib_fmr *fmr);
2695
2696/**
2697 * ib_attach_mcast - Attaches the specified QP to a multicast group.
2698 * @qp: QP to attach to the multicast group. The QP must be type
2699 * IB_QPT_UD.
2700 * @gid: Multicast group GID.
2701 * @lid: Multicast group LID in host byte order.
2702 *
2703 * In order to send and receive multicast packets, subnet
2704 * administration must have created the multicast group and configured
2705 * the fabric appropriately. The port associated with the specified
2706 * QP must also be a member of the multicast group.
2707 */
2708int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2709
2710/**
2711 * ib_detach_mcast - Detaches the specified QP from a multicast group.
2712 * @qp: QP to detach from the multicast group.
2713 * @gid: Multicast group GID.
2714 * @lid: Multicast group LID in host byte order.
2715 */
2716int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2717
Sean Hefty59991f92011-05-23 17:52:46 -07002718/**
2719 * ib_alloc_xrcd - Allocates an XRC domain.
2720 * @device: The device on which to allocate the XRC domain.
2721 */
2722struct ib_xrcd *ib_alloc_xrcd(struct ib_device *device);
2723
2724/**
2725 * ib_dealloc_xrcd - Deallocates an XRC domain.
2726 * @xrcd: The XRC domain to deallocate.
2727 */
2728int ib_dealloc_xrcd(struct ib_xrcd *xrcd);
2729
Hadar Hen Zion319a4412013-08-07 14:01:59 +03002730struct ib_flow *ib_create_flow(struct ib_qp *qp,
2731 struct ib_flow_attr *flow_attr, int domain);
2732int ib_destroy_flow(struct ib_flow *flow_id);
2733
Eli Cohen1c636f82013-10-31 15:26:32 +02002734static inline int ib_check_mr_access(int flags)
2735{
2736 /*
2737 * Local write permission is required if remote write or
2738 * remote atomic permission is also requested.
2739 */
2740 if (flags & (IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_REMOTE_WRITE) &&
2741 !(flags & IB_ACCESS_LOCAL_WRITE))
2742 return -EINVAL;
2743
2744 return 0;
2745}
2746
Sagi Grimberg1b01d332014-02-23 14:19:05 +02002747/**
2748 * ib_check_mr_status: lightweight check of MR status.
2749 * This routine may provide status checks on a selected
2750 * ib_mr. first use is for signature status check.
2751 *
2752 * @mr: A memory region.
2753 * @check_mask: Bitmask of which checks to perform from
2754 * ib_mr_status_check enumeration.
2755 * @mr_status: The container of relevant status checks.
2756 * failed checks will be indicated in the status bitmask
2757 * and the relevant info shall be in the error item.
2758 */
2759int ib_check_mr_status(struct ib_mr *mr, u32 check_mask,
2760 struct ib_mr_status *mr_status);
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762#endif /* IB_VERBS_H */