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