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