IB/core: Add rwsem to allow reading device list or client list
[deliverable/linux.git] / include / rdma / ib_verbs.h
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2004 Mellanox Technologies Ltd. All rights reserved.
3 * Copyright (c) 2004 Infinicon Corporation. All rights reserved.
4 * Copyright (c) 2004 Intel Corporation. All rights reserved.
5 * Copyright (c) 2004 Topspin Corporation. All rights reserved.
6 * Copyright (c) 2004 Voltaire Corporation. All rights reserved.
2a1d9b7f 7 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
f7c6a7b5 8 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
1da177e4
LT
9 *
10 * This software is available to you under a choice of one of two
11 * licenses. You may choose to be licensed under the terms of the GNU
12 * General Public License (GPL) Version 2, available from the file
13 * COPYING in the main directory of this source tree, or the
14 * OpenIB.org BSD license below:
15 *
16 * Redistribution and use in source and binary forms, with or
17 * without modification, are permitted provided that the following
18 * conditions are met:
19 *
20 * - Redistributions of source code must retain the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer.
23 *
24 * - Redistributions in binary form must reproduce the above
25 * copyright notice, this list of conditions and the following
26 * disclaimer in the documentation and/or other materials
27 * provided with the distribution.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
33 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 * SOFTWARE.
1da177e4
LT
37 */
38
39#if !defined(IB_VERBS_H)
40#define IB_VERBS_H
41
42#include <linux/types.h>
43#include <linux/device.h>
9b513090
RC
44#include <linux/mm.h>
45#include <linux/dma-mapping.h>
459d6e2a 46#include <linux/kref.h>
bfb3ea12
DB
47#include <linux/list.h>
48#include <linux/rwsem.h>
87ae9afd 49#include <linux/scatterlist.h>
f0626710 50#include <linux/workqueue.h>
dd5f03be 51#include <uapi/linux/if_ether.h>
e2773c06 52
60063497 53#include <linux/atomic.h>
882214e2 54#include <linux/mmu_notifier.h>
e2773c06 55#include <asm/uaccess.h>
1da177e4 56
f0626710
TH
57extern struct workqueue_struct *ib_wq;
58
1da177e4
LT
59union ib_gid {
60 u8 raw[16];
61 struct {
97f52eb4
SH
62 __be64 subnet_prefix;
63 __be64 interface_id;
1da177e4
LT
64 } global;
65};
66
07ebafba
TT
67enum rdma_node_type {
68 /* IB values map to NodeInfo:NodeType. */
69 RDMA_NODE_IB_CA = 1,
70 RDMA_NODE_IB_SWITCH,
71 RDMA_NODE_IB_ROUTER,
180771a3
UM
72 RDMA_NODE_RNIC,
73 RDMA_NODE_USNIC,
5db5765e 74 RDMA_NODE_USNIC_UDP,
1da177e4
LT
75};
76
07ebafba
TT
77enum rdma_transport_type {
78 RDMA_TRANSPORT_IB,
180771a3 79 RDMA_TRANSPORT_IWARP,
248567f7
UM
80 RDMA_TRANSPORT_USNIC,
81 RDMA_TRANSPORT_USNIC_UDP
07ebafba
TT
82};
83
6b90a6d6
MW
84enum rdma_protocol_type {
85 RDMA_PROTOCOL_IB,
86 RDMA_PROTOCOL_IBOE,
87 RDMA_PROTOCOL_IWARP,
88 RDMA_PROTOCOL_USNIC_UDP
89};
90
8385fd84
RD
91__attribute_const__ enum rdma_transport_type
92rdma_node_get_transport(enum rdma_node_type node_type);
07ebafba 93
a3f5adaf
EC
94enum rdma_link_layer {
95 IB_LINK_LAYER_UNSPECIFIED,
96 IB_LINK_LAYER_INFINIBAND,
97 IB_LINK_LAYER_ETHERNET,
98};
99
1da177e4
LT
100enum ib_device_cap_flags {
101 IB_DEVICE_RESIZE_MAX_WR = 1,
102 IB_DEVICE_BAD_PKEY_CNTR = (1<<1),
103 IB_DEVICE_BAD_QKEY_CNTR = (1<<2),
104 IB_DEVICE_RAW_MULTI = (1<<3),
105 IB_DEVICE_AUTO_PATH_MIG = (1<<4),
106 IB_DEVICE_CHANGE_PHY_PORT = (1<<5),
107 IB_DEVICE_UD_AV_PORT_ENFORCE = (1<<6),
108 IB_DEVICE_CURR_QP_STATE_MOD = (1<<7),
109 IB_DEVICE_SHUTDOWN_PORT = (1<<8),
110 IB_DEVICE_INIT_TYPE = (1<<9),
111 IB_DEVICE_PORT_ACTIVE_EVENT = (1<<10),
112 IB_DEVICE_SYS_IMAGE_GUID = (1<<11),
113 IB_DEVICE_RC_RNR_NAK_GEN = (1<<12),
114 IB_DEVICE_SRQ_RESIZE = (1<<13),
115 IB_DEVICE_N_NOTIFY_CQ = (1<<14),
96f15c03 116 IB_DEVICE_LOCAL_DMA_LKEY = (1<<15),
0f39cf3d 117 IB_DEVICE_RESERVED = (1<<16), /* old SEND_W_INV */
e0605d91
EC
118 IB_DEVICE_MEM_WINDOW = (1<<17),
119 /*
120 * Devices should set IB_DEVICE_UD_IP_SUM if they support
121 * insertion of UDP and TCP checksum on outgoing UD IPoIB
122 * messages and can verify the validity of checksum for
123 * incoming messages. Setting this flag implies that the
124 * IPoIB driver may set NETIF_F_IP_CSUM for datagram mode.
125 */
126 IB_DEVICE_UD_IP_CSUM = (1<<18),
c93570f2 127 IB_DEVICE_UD_TSO = (1<<19),
59991f94 128 IB_DEVICE_XRC = (1<<20),
00f7ec36 129 IB_DEVICE_MEM_MGT_EXTENSIONS = (1<<21),
47ee1b9f 130 IB_DEVICE_BLOCK_MULTICAST_LOOPBACK = (1<<22),
7083e42e 131 IB_DEVICE_MEM_WINDOW_TYPE_2A = (1<<23),
319a441d 132 IB_DEVICE_MEM_WINDOW_TYPE_2B = (1<<24),
1b01d335 133 IB_DEVICE_MANAGED_FLOW_STEERING = (1<<29),
860f10a7
SG
134 IB_DEVICE_SIGNATURE_HANDOVER = (1<<30),
135 IB_DEVICE_ON_DEMAND_PAGING = (1<<31),
1b01d335
SG
136};
137
138enum ib_signature_prot_cap {
139 IB_PROT_T10DIF_TYPE_1 = 1,
140 IB_PROT_T10DIF_TYPE_2 = 1 << 1,
141 IB_PROT_T10DIF_TYPE_3 = 1 << 2,
142};
143
144enum ib_signature_guard_cap {
145 IB_GUARD_T10DIF_CRC = 1,
146 IB_GUARD_T10DIF_CSUM = 1 << 1,
1da177e4
LT
147};
148
149enum ib_atomic_cap {
150 IB_ATOMIC_NONE,
151 IB_ATOMIC_HCA,
152 IB_ATOMIC_GLOB
153};
154
860f10a7
SG
155enum ib_odp_general_cap_bits {
156 IB_ODP_SUPPORT = 1 << 0,
157};
158
159enum ib_odp_transport_cap_bits {
160 IB_ODP_SUPPORT_SEND = 1 << 0,
161 IB_ODP_SUPPORT_RECV = 1 << 1,
162 IB_ODP_SUPPORT_WRITE = 1 << 2,
163 IB_ODP_SUPPORT_READ = 1 << 3,
164 IB_ODP_SUPPORT_ATOMIC = 1 << 4,
165};
166
167struct ib_odp_caps {
168 uint64_t general_caps;
169 struct {
170 uint32_t rc_odp_caps;
171 uint32_t uc_odp_caps;
172 uint32_t ud_odp_caps;
173 } per_transport_caps;
174};
175
b9926b92
MB
176enum ib_cq_creation_flags {
177 IB_CQ_FLAGS_TIMESTAMP_COMPLETION = 1 << 0,
178};
179
bcf4c1ea
MB
180struct ib_cq_init_attr {
181 unsigned int cqe;
182 int comp_vector;
183 u32 flags;
184};
185
1da177e4
LT
186struct ib_device_attr {
187 u64 fw_ver;
97f52eb4 188 __be64 sys_image_guid;
1da177e4
LT
189 u64 max_mr_size;
190 u64 page_size_cap;
191 u32 vendor_id;
192 u32 vendor_part_id;
193 u32 hw_ver;
194 int max_qp;
195 int max_qp_wr;
196 int device_cap_flags;
197 int max_sge;
198 int max_sge_rd;
199 int max_cq;
200 int max_cqe;
201 int max_mr;
202 int max_pd;
203 int max_qp_rd_atom;
204 int max_ee_rd_atom;
205 int max_res_rd_atom;
206 int max_qp_init_rd_atom;
207 int max_ee_init_rd_atom;
208 enum ib_atomic_cap atomic_cap;
5e80ba8f 209 enum ib_atomic_cap masked_atomic_cap;
1da177e4
LT
210 int max_ee;
211 int max_rdd;
212 int max_mw;
213 int max_raw_ipv6_qp;
214 int max_raw_ethy_qp;
215 int max_mcast_grp;
216 int max_mcast_qp_attach;
217 int max_total_mcast_qp_attach;
218 int max_ah;
219 int max_fmr;
220 int max_map_per_fmr;
221 int max_srq;
222 int max_srq_wr;
223 int max_srq_sge;
00f7ec36 224 unsigned int max_fast_reg_page_list_len;
1da177e4
LT
225 u16 max_pkeys;
226 u8 local_ca_ack_delay;
1b01d335
SG
227 int sig_prot_cap;
228 int sig_guard_cap;
860f10a7 229 struct ib_odp_caps odp_caps;
24306dc6
MB
230 uint64_t timestamp_mask;
231 uint64_t hca_core_clock; /* in KHZ */
1da177e4
LT
232};
233
234enum ib_mtu {
235 IB_MTU_256 = 1,
236 IB_MTU_512 = 2,
237 IB_MTU_1024 = 3,
238 IB_MTU_2048 = 4,
239 IB_MTU_4096 = 5
240};
241
242static inline int ib_mtu_enum_to_int(enum ib_mtu mtu)
243{
244 switch (mtu) {
245 case IB_MTU_256: return 256;
246 case IB_MTU_512: return 512;
247 case IB_MTU_1024: return 1024;
248 case IB_MTU_2048: return 2048;
249 case IB_MTU_4096: return 4096;
250 default: return -1;
251 }
252}
253
254enum ib_port_state {
255 IB_PORT_NOP = 0,
256 IB_PORT_DOWN = 1,
257 IB_PORT_INIT = 2,
258 IB_PORT_ARMED = 3,
259 IB_PORT_ACTIVE = 4,
260 IB_PORT_ACTIVE_DEFER = 5
261};
262
263enum ib_port_cap_flags {
264 IB_PORT_SM = 1 << 1,
265 IB_PORT_NOTICE_SUP = 1 << 2,
266 IB_PORT_TRAP_SUP = 1 << 3,
267 IB_PORT_OPT_IPD_SUP = 1 << 4,
268 IB_PORT_AUTO_MIGR_SUP = 1 << 5,
269 IB_PORT_SL_MAP_SUP = 1 << 6,
270 IB_PORT_MKEY_NVRAM = 1 << 7,
271 IB_PORT_PKEY_NVRAM = 1 << 8,
272 IB_PORT_LED_INFO_SUP = 1 << 9,
273 IB_PORT_SM_DISABLED = 1 << 10,
274 IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11,
275 IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12,
71eeba16 276 IB_PORT_EXTENDED_SPEEDS_SUP = 1 << 14,
1da177e4
LT
277 IB_PORT_CM_SUP = 1 << 16,
278 IB_PORT_SNMP_TUNNEL_SUP = 1 << 17,
279 IB_PORT_REINIT_SUP = 1 << 18,
280 IB_PORT_DEVICE_MGMT_SUP = 1 << 19,
281 IB_PORT_VENDOR_CLASS_SUP = 1 << 20,
282 IB_PORT_DR_NOTICE_SUP = 1 << 21,
283 IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22,
284 IB_PORT_BOOT_MGMT_SUP = 1 << 23,
285 IB_PORT_LINK_LATENCY_SUP = 1 << 24,
b4a26a27
MS
286 IB_PORT_CLIENT_REG_SUP = 1 << 25,
287 IB_PORT_IP_BASED_GIDS = 1 << 26
1da177e4
LT
288};
289
290enum ib_port_width {
291 IB_WIDTH_1X = 1,
292 IB_WIDTH_4X = 2,
293 IB_WIDTH_8X = 4,
294 IB_WIDTH_12X = 8
295};
296
297static inline int ib_width_enum_to_int(enum ib_port_width width)
298{
299 switch (width) {
300 case IB_WIDTH_1X: return 1;
301 case IB_WIDTH_4X: return 4;
302 case IB_WIDTH_8X: return 8;
303 case IB_WIDTH_12X: return 12;
304 default: return -1;
305 }
306}
307
2e96691c
OG
308enum ib_port_speed {
309 IB_SPEED_SDR = 1,
310 IB_SPEED_DDR = 2,
311 IB_SPEED_QDR = 4,
312 IB_SPEED_FDR10 = 8,
313 IB_SPEED_FDR = 16,
314 IB_SPEED_EDR = 32
315};
316
7f624d02
SW
317struct ib_protocol_stats {
318 /* TBD... */
319};
320
321struct iw_protocol_stats {
322 u64 ipInReceives;
323 u64 ipInHdrErrors;
324 u64 ipInTooBigErrors;
325 u64 ipInNoRoutes;
326 u64 ipInAddrErrors;
327 u64 ipInUnknownProtos;
328 u64 ipInTruncatedPkts;
329 u64 ipInDiscards;
330 u64 ipInDelivers;
331 u64 ipOutForwDatagrams;
332 u64 ipOutRequests;
333 u64 ipOutDiscards;
334 u64 ipOutNoRoutes;
335 u64 ipReasmTimeout;
336 u64 ipReasmReqds;
337 u64 ipReasmOKs;
338 u64 ipReasmFails;
339 u64 ipFragOKs;
340 u64 ipFragFails;
341 u64 ipFragCreates;
342 u64 ipInMcastPkts;
343 u64 ipOutMcastPkts;
344 u64 ipInBcastPkts;
345 u64 ipOutBcastPkts;
346
347 u64 tcpRtoAlgorithm;
348 u64 tcpRtoMin;
349 u64 tcpRtoMax;
350 u64 tcpMaxConn;
351 u64 tcpActiveOpens;
352 u64 tcpPassiveOpens;
353 u64 tcpAttemptFails;
354 u64 tcpEstabResets;
355 u64 tcpCurrEstab;
356 u64 tcpInSegs;
357 u64 tcpOutSegs;
358 u64 tcpRetransSegs;
359 u64 tcpInErrs;
360 u64 tcpOutRsts;
361};
362
363union rdma_protocol_stats {
364 struct ib_protocol_stats ib;
365 struct iw_protocol_stats iw;
366};
367
f9b22e35
IW
368/* Define bits for the various functionality this port needs to be supported by
369 * the core.
370 */
371/* Management 0x00000FFF */
372#define RDMA_CORE_CAP_IB_MAD 0x00000001
373#define RDMA_CORE_CAP_IB_SMI 0x00000002
374#define RDMA_CORE_CAP_IB_CM 0x00000004
375#define RDMA_CORE_CAP_IW_CM 0x00000008
376#define RDMA_CORE_CAP_IB_SA 0x00000010
65995fee 377#define RDMA_CORE_CAP_OPA_MAD 0x00000020
f9b22e35
IW
378
379/* Address format 0x000FF000 */
380#define RDMA_CORE_CAP_AF_IB 0x00001000
381#define RDMA_CORE_CAP_ETH_AH 0x00002000
382
383/* Protocol 0xFFF00000 */
384#define RDMA_CORE_CAP_PROT_IB 0x00100000
385#define RDMA_CORE_CAP_PROT_ROCE 0x00200000
386#define RDMA_CORE_CAP_PROT_IWARP 0x00400000
387
388#define RDMA_CORE_PORT_IBA_IB (RDMA_CORE_CAP_PROT_IB \
389 | RDMA_CORE_CAP_IB_MAD \
390 | RDMA_CORE_CAP_IB_SMI \
391 | RDMA_CORE_CAP_IB_CM \
392 | RDMA_CORE_CAP_IB_SA \
393 | RDMA_CORE_CAP_AF_IB)
394#define RDMA_CORE_PORT_IBA_ROCE (RDMA_CORE_CAP_PROT_ROCE \
395 | RDMA_CORE_CAP_IB_MAD \
396 | RDMA_CORE_CAP_IB_CM \
f9b22e35
IW
397 | RDMA_CORE_CAP_AF_IB \
398 | RDMA_CORE_CAP_ETH_AH)
399#define RDMA_CORE_PORT_IWARP (RDMA_CORE_CAP_PROT_IWARP \
400 | RDMA_CORE_CAP_IW_CM)
65995fee
IW
401#define RDMA_CORE_PORT_INTEL_OPA (RDMA_CORE_PORT_IBA_IB \
402 | RDMA_CORE_CAP_OPA_MAD)
f9b22e35 403
1da177e4
LT
404struct ib_port_attr {
405 enum ib_port_state state;
406 enum ib_mtu max_mtu;
407 enum ib_mtu active_mtu;
408 int gid_tbl_len;
409 u32 port_cap_flags;
410 u32 max_msg_sz;
411 u32 bad_pkey_cntr;
412 u32 qkey_viol_cntr;
413 u16 pkey_tbl_len;
414 u16 lid;
415 u16 sm_lid;
416 u8 lmc;
417 u8 max_vl_num;
418 u8 sm_sl;
419 u8 subnet_timeout;
420 u8 init_type_reply;
421 u8 active_width;
422 u8 active_speed;
423 u8 phys_state;
424};
425
426enum ib_device_modify_flags {
c5bcbbb9
RD
427 IB_DEVICE_MODIFY_SYS_IMAGE_GUID = 1 << 0,
428 IB_DEVICE_MODIFY_NODE_DESC = 1 << 1
1da177e4
LT
429};
430
431struct ib_device_modify {
432 u64 sys_image_guid;
c5bcbbb9 433 char node_desc[64];
1da177e4
LT
434};
435
436enum ib_port_modify_flags {
437 IB_PORT_SHUTDOWN = 1,
438 IB_PORT_INIT_TYPE = (1<<2),
439 IB_PORT_RESET_QKEY_CNTR = (1<<3)
440};
441
442struct ib_port_modify {
443 u32 set_port_cap_mask;
444 u32 clr_port_cap_mask;
445 u8 init_type;
446};
447
448enum ib_event_type {
449 IB_EVENT_CQ_ERR,
450 IB_EVENT_QP_FATAL,
451 IB_EVENT_QP_REQ_ERR,
452 IB_EVENT_QP_ACCESS_ERR,
453 IB_EVENT_COMM_EST,
454 IB_EVENT_SQ_DRAINED,
455 IB_EVENT_PATH_MIG,
456 IB_EVENT_PATH_MIG_ERR,
457 IB_EVENT_DEVICE_FATAL,
458 IB_EVENT_PORT_ACTIVE,
459 IB_EVENT_PORT_ERR,
460 IB_EVENT_LID_CHANGE,
461 IB_EVENT_PKEY_CHANGE,
d41fcc67
RD
462 IB_EVENT_SM_CHANGE,
463 IB_EVENT_SRQ_ERR,
464 IB_EVENT_SRQ_LIMIT_REACHED,
63942c9a 465 IB_EVENT_QP_LAST_WQE_REACHED,
761d90ed
OG
466 IB_EVENT_CLIENT_REREGISTER,
467 IB_EVENT_GID_CHANGE,
1da177e4
LT
468};
469
2b1b5b60
SG
470__attribute_const__ const char *ib_event_msg(enum ib_event_type event);
471
1da177e4
LT
472struct ib_event {
473 struct ib_device *device;
474 union {
475 struct ib_cq *cq;
476 struct ib_qp *qp;
d41fcc67 477 struct ib_srq *srq;
1da177e4
LT
478 u8 port_num;
479 } element;
480 enum ib_event_type event;
481};
482
483struct ib_event_handler {
484 struct ib_device *device;
485 void (*handler)(struct ib_event_handler *, struct ib_event *);
486 struct list_head list;
487};
488
489#define INIT_IB_EVENT_HANDLER(_ptr, _device, _handler) \
490 do { \
491 (_ptr)->device = _device; \
492 (_ptr)->handler = _handler; \
493 INIT_LIST_HEAD(&(_ptr)->list); \
494 } while (0)
495
496struct ib_global_route {
497 union ib_gid dgid;
498 u32 flow_label;
499 u8 sgid_index;
500 u8 hop_limit;
501 u8 traffic_class;
502};
503
513789ed 504struct ib_grh {
97f52eb4
SH
505 __be32 version_tclass_flow;
506 __be16 paylen;
513789ed
HR
507 u8 next_hdr;
508 u8 hop_limit;
509 union ib_gid sgid;
510 union ib_gid dgid;
511};
512
1da177e4
LT
513enum {
514 IB_MULTICAST_QPN = 0xffffff
515};
516
f3a7c66b 517#define IB_LID_PERMISSIVE cpu_to_be16(0xFFFF)
97f52eb4 518
1da177e4
LT
519enum ib_ah_flags {
520 IB_AH_GRH = 1
521};
522
bf6a9e31
JM
523enum ib_rate {
524 IB_RATE_PORT_CURRENT = 0,
525 IB_RATE_2_5_GBPS = 2,
526 IB_RATE_5_GBPS = 5,
527 IB_RATE_10_GBPS = 3,
528 IB_RATE_20_GBPS = 6,
529 IB_RATE_30_GBPS = 4,
530 IB_RATE_40_GBPS = 7,
531 IB_RATE_60_GBPS = 8,
532 IB_RATE_80_GBPS = 9,
71eeba16
MA
533 IB_RATE_120_GBPS = 10,
534 IB_RATE_14_GBPS = 11,
535 IB_RATE_56_GBPS = 12,
536 IB_RATE_112_GBPS = 13,
537 IB_RATE_168_GBPS = 14,
538 IB_RATE_25_GBPS = 15,
539 IB_RATE_100_GBPS = 16,
540 IB_RATE_200_GBPS = 17,
541 IB_RATE_300_GBPS = 18
bf6a9e31
JM
542};
543
544/**
545 * ib_rate_to_mult - Convert the IB rate enum to a multiple of the
546 * base rate of 2.5 Gbit/sec. For example, IB_RATE_5_GBPS will be
547 * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec.
548 * @rate: rate to convert.
549 */
8385fd84 550__attribute_const__ int ib_rate_to_mult(enum ib_rate rate);
bf6a9e31 551
71eeba16
MA
552/**
553 * ib_rate_to_mbps - Convert the IB rate enum to Mbps.
554 * For example, IB_RATE_2_5_GBPS will be converted to 2500.
555 * @rate: rate to convert.
556 */
8385fd84 557__attribute_const__ int ib_rate_to_mbps(enum ib_rate rate);
71eeba16 558
17cd3a2d
SG
559enum ib_mr_create_flags {
560 IB_MR_SIGNATURE_EN = 1,
561};
562
563/**
564 * ib_mr_init_attr - Memory region init attributes passed to routine
565 * ib_create_mr.
566 * @max_reg_descriptors: max number of registration descriptors that
567 * may be used with registration work requests.
568 * @flags: MR creation flags bit mask.
569 */
570struct ib_mr_init_attr {
571 int max_reg_descriptors;
572 u32 flags;
573};
574
1b01d335 575/**
78eda2bb
SG
576 * Signature types
577 * IB_SIG_TYPE_NONE: Unprotected.
578 * IB_SIG_TYPE_T10_DIF: Type T10-DIF
1b01d335 579 */
78eda2bb
SG
580enum ib_signature_type {
581 IB_SIG_TYPE_NONE,
582 IB_SIG_TYPE_T10_DIF,
1b01d335
SG
583};
584
585/**
586 * Signature T10-DIF block-guard types
587 * IB_T10DIF_CRC: Corresponds to T10-PI mandated CRC checksum rules.
588 * IB_T10DIF_CSUM: Corresponds to IP checksum rules.
589 */
590enum ib_t10_dif_bg_type {
591 IB_T10DIF_CRC,
592 IB_T10DIF_CSUM
593};
594
595/**
596 * struct ib_t10_dif_domain - Parameters specific for T10-DIF
597 * domain.
1b01d335
SG
598 * @bg_type: T10-DIF block guard type (CRC|CSUM)
599 * @pi_interval: protection information interval.
600 * @bg: seed of guard computation.
601 * @app_tag: application tag of guard block
602 * @ref_tag: initial guard block reference tag.
78eda2bb
SG
603 * @ref_remap: Indicate wethear the reftag increments each block
604 * @app_escape: Indicate to skip block check if apptag=0xffff
605 * @ref_escape: Indicate to skip block check if reftag=0xffffffff
606 * @apptag_check_mask: check bitmask of application tag.
1b01d335
SG
607 */
608struct ib_t10_dif_domain {
1b01d335
SG
609 enum ib_t10_dif_bg_type bg_type;
610 u16 pi_interval;
611 u16 bg;
612 u16 app_tag;
613 u32 ref_tag;
78eda2bb
SG
614 bool ref_remap;
615 bool app_escape;
616 bool ref_escape;
617 u16 apptag_check_mask;
1b01d335
SG
618};
619
620/**
621 * struct ib_sig_domain - Parameters for signature domain
622 * @sig_type: specific signauture type
623 * @sig: union of all signature domain attributes that may
624 * be used to set domain layout.
625 */
626struct ib_sig_domain {
627 enum ib_signature_type sig_type;
628 union {
629 struct ib_t10_dif_domain dif;
630 } sig;
631};
632
633/**
634 * struct ib_sig_attrs - Parameters for signature handover operation
635 * @check_mask: bitmask for signature byte check (8 bytes)
636 * @mem: memory domain layout desciptor.
637 * @wire: wire domain layout desciptor.
638 */
639struct ib_sig_attrs {
640 u8 check_mask;
641 struct ib_sig_domain mem;
642 struct ib_sig_domain wire;
643};
644
645enum ib_sig_err_type {
646 IB_SIG_BAD_GUARD,
647 IB_SIG_BAD_REFTAG,
648 IB_SIG_BAD_APPTAG,
649};
650
651/**
652 * struct ib_sig_err - signature error descriptor
653 */
654struct ib_sig_err {
655 enum ib_sig_err_type err_type;
656 u32 expected;
657 u32 actual;
658 u64 sig_err_offset;
659 u32 key;
660};
661
662enum ib_mr_status_check {
663 IB_MR_CHECK_SIG_STATUS = 1,
664};
665
666/**
667 * struct ib_mr_status - Memory region status container
668 *
669 * @fail_status: Bitmask of MR checks status. For each
670 * failed check a corresponding status bit is set.
671 * @sig_err: Additional info for IB_MR_CEHCK_SIG_STATUS
672 * failure.
673 */
674struct ib_mr_status {
675 u32 fail_status;
676 struct ib_sig_err sig_err;
677};
678
bf6a9e31
JM
679/**
680 * mult_to_ib_rate - Convert a multiple of 2.5 Gbit/sec to an IB rate
681 * enum.
682 * @mult: multiple to convert.
683 */
8385fd84 684__attribute_const__ enum ib_rate mult_to_ib_rate(int mult);
bf6a9e31 685
1da177e4
LT
686struct ib_ah_attr {
687 struct ib_global_route grh;
688 u16 dlid;
689 u8 sl;
690 u8 src_path_bits;
691 u8 static_rate;
692 u8 ah_flags;
693 u8 port_num;
dd5f03be
MB
694 u8 dmac[ETH_ALEN];
695 u16 vlan_id;
1da177e4
LT
696};
697
698enum ib_wc_status {
699 IB_WC_SUCCESS,
700 IB_WC_LOC_LEN_ERR,
701 IB_WC_LOC_QP_OP_ERR,
702 IB_WC_LOC_EEC_OP_ERR,
703 IB_WC_LOC_PROT_ERR,
704 IB_WC_WR_FLUSH_ERR,
705 IB_WC_MW_BIND_ERR,
706 IB_WC_BAD_RESP_ERR,
707 IB_WC_LOC_ACCESS_ERR,
708 IB_WC_REM_INV_REQ_ERR,
709 IB_WC_REM_ACCESS_ERR,
710 IB_WC_REM_OP_ERR,
711 IB_WC_RETRY_EXC_ERR,
712 IB_WC_RNR_RETRY_EXC_ERR,
713 IB_WC_LOC_RDD_VIOL_ERR,
714 IB_WC_REM_INV_RD_REQ_ERR,
715 IB_WC_REM_ABORT_ERR,
716 IB_WC_INV_EECN_ERR,
717 IB_WC_INV_EEC_STATE_ERR,
718 IB_WC_FATAL_ERR,
719 IB_WC_RESP_TIMEOUT_ERR,
720 IB_WC_GENERAL_ERR
721};
722
2b1b5b60
SG
723__attribute_const__ const char *ib_wc_status_msg(enum ib_wc_status status);
724
1da177e4
LT
725enum ib_wc_opcode {
726 IB_WC_SEND,
727 IB_WC_RDMA_WRITE,
728 IB_WC_RDMA_READ,
729 IB_WC_COMP_SWAP,
730 IB_WC_FETCH_ADD,
731 IB_WC_BIND_MW,
c93570f2 732 IB_WC_LSO,
00f7ec36
SW
733 IB_WC_LOCAL_INV,
734 IB_WC_FAST_REG_MR,
5e80ba8f
VS
735 IB_WC_MASKED_COMP_SWAP,
736 IB_WC_MASKED_FETCH_ADD,
1da177e4
LT
737/*
738 * Set value of IB_WC_RECV so consumers can test if a completion is a
739 * receive by testing (opcode & IB_WC_RECV).
740 */
741 IB_WC_RECV = 1 << 7,
742 IB_WC_RECV_RDMA_WITH_IMM
743};
744
745enum ib_wc_flags {
746 IB_WC_GRH = 1,
00f7ec36
SW
747 IB_WC_WITH_IMM = (1<<1),
748 IB_WC_WITH_INVALIDATE = (1<<2),
d927d505 749 IB_WC_IP_CSUM_OK = (1<<3),
dd5f03be
MB
750 IB_WC_WITH_SMAC = (1<<4),
751 IB_WC_WITH_VLAN = (1<<5),
1da177e4
LT
752};
753
754struct ib_wc {
755 u64 wr_id;
756 enum ib_wc_status status;
757 enum ib_wc_opcode opcode;
758 u32 vendor_err;
759 u32 byte_len;
062dbb69 760 struct ib_qp *qp;
00f7ec36
SW
761 union {
762 __be32 imm_data;
763 u32 invalidate_rkey;
764 } ex;
1da177e4
LT
765 u32 src_qp;
766 int wc_flags;
767 u16 pkey_index;
768 u16 slid;
769 u8 sl;
770 u8 dlid_path_bits;
771 u8 port_num; /* valid only for DR SMPs on switches */
dd5f03be
MB
772 u8 smac[ETH_ALEN];
773 u16 vlan_id;
1da177e4
LT
774};
775
ed23a727
RD
776enum ib_cq_notify_flags {
777 IB_CQ_SOLICITED = 1 << 0,
778 IB_CQ_NEXT_COMP = 1 << 1,
779 IB_CQ_SOLICITED_MASK = IB_CQ_SOLICITED | IB_CQ_NEXT_COMP,
780 IB_CQ_REPORT_MISSED_EVENTS = 1 << 2,
1da177e4
LT
781};
782
96104eda 783enum ib_srq_type {
418d5130
SH
784 IB_SRQT_BASIC,
785 IB_SRQT_XRC
96104eda
SH
786};
787
d41fcc67
RD
788enum ib_srq_attr_mask {
789 IB_SRQ_MAX_WR = 1 << 0,
790 IB_SRQ_LIMIT = 1 << 1,
791};
792
793struct ib_srq_attr {
794 u32 max_wr;
795 u32 max_sge;
796 u32 srq_limit;
797};
798
799struct ib_srq_init_attr {
800 void (*event_handler)(struct ib_event *, void *);
801 void *srq_context;
802 struct ib_srq_attr attr;
96104eda 803 enum ib_srq_type srq_type;
418d5130
SH
804
805 union {
806 struct {
807 struct ib_xrcd *xrcd;
808 struct ib_cq *cq;
809 } xrc;
810 } ext;
d41fcc67
RD
811};
812
1da177e4
LT
813struct ib_qp_cap {
814 u32 max_send_wr;
815 u32 max_recv_wr;
816 u32 max_send_sge;
817 u32 max_recv_sge;
818 u32 max_inline_data;
819};
820
821enum ib_sig_type {
822 IB_SIGNAL_ALL_WR,
823 IB_SIGNAL_REQ_WR
824};
825
826enum ib_qp_type {
827 /*
828 * IB_QPT_SMI and IB_QPT_GSI have to be the first two entries
829 * here (and in that order) since the MAD layer uses them as
830 * indices into a 2-entry table.
831 */
832 IB_QPT_SMI,
833 IB_QPT_GSI,
834
835 IB_QPT_RC,
836 IB_QPT_UC,
837 IB_QPT_UD,
838 IB_QPT_RAW_IPV6,
b42b63cf 839 IB_QPT_RAW_ETHERTYPE,
c938a616 840 IB_QPT_RAW_PACKET = 8,
b42b63cf
SH
841 IB_QPT_XRC_INI = 9,
842 IB_QPT_XRC_TGT,
0134f16b
JM
843 IB_QPT_MAX,
844 /* Reserve a range for qp types internal to the low level driver.
845 * These qp types will not be visible at the IB core layer, so the
846 * IB_QPT_MAX usages should not be affected in the core layer
847 */
848 IB_QPT_RESERVED1 = 0x1000,
849 IB_QPT_RESERVED2,
850 IB_QPT_RESERVED3,
851 IB_QPT_RESERVED4,
852 IB_QPT_RESERVED5,
853 IB_QPT_RESERVED6,
854 IB_QPT_RESERVED7,
855 IB_QPT_RESERVED8,
856 IB_QPT_RESERVED9,
857 IB_QPT_RESERVED10,
1da177e4
LT
858};
859
b846f25a 860enum ib_qp_create_flags {
47ee1b9f
RL
861 IB_QP_CREATE_IPOIB_UD_LSO = 1 << 0,
862 IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 1 << 1,
90f1d1b4 863 IB_QP_CREATE_NETIF_QP = 1 << 5,
1b01d335 864 IB_QP_CREATE_SIGNATURE_EN = 1 << 6,
09b93088 865 IB_QP_CREATE_USE_GFP_NOIO = 1 << 7,
d2b57063
JM
866 /* reserve bits 26-31 for low level drivers' internal use */
867 IB_QP_CREATE_RESERVED_START = 1 << 26,
868 IB_QP_CREATE_RESERVED_END = 1 << 31,
b846f25a
EC
869};
870
73c40c61
YH
871
872/*
873 * Note: users may not call ib_close_qp or ib_destroy_qp from the event_handler
874 * callback to destroy the passed in QP.
875 */
876
1da177e4
LT
877struct ib_qp_init_attr {
878 void (*event_handler)(struct ib_event *, void *);
879 void *qp_context;
880 struct ib_cq *send_cq;
881 struct ib_cq *recv_cq;
882 struct ib_srq *srq;
b42b63cf 883 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
1da177e4
LT
884 struct ib_qp_cap cap;
885 enum ib_sig_type sq_sig_type;
886 enum ib_qp_type qp_type;
b846f25a 887 enum ib_qp_create_flags create_flags;
1da177e4
LT
888 u8 port_num; /* special QP types only */
889};
890
0e0ec7e0
SH
891struct ib_qp_open_attr {
892 void (*event_handler)(struct ib_event *, void *);
893 void *qp_context;
894 u32 qp_num;
895 enum ib_qp_type qp_type;
896};
897
1da177e4
LT
898enum ib_rnr_timeout {
899 IB_RNR_TIMER_655_36 = 0,
900 IB_RNR_TIMER_000_01 = 1,
901 IB_RNR_TIMER_000_02 = 2,
902 IB_RNR_TIMER_000_03 = 3,
903 IB_RNR_TIMER_000_04 = 4,
904 IB_RNR_TIMER_000_06 = 5,
905 IB_RNR_TIMER_000_08 = 6,
906 IB_RNR_TIMER_000_12 = 7,
907 IB_RNR_TIMER_000_16 = 8,
908 IB_RNR_TIMER_000_24 = 9,
909 IB_RNR_TIMER_000_32 = 10,
910 IB_RNR_TIMER_000_48 = 11,
911 IB_RNR_TIMER_000_64 = 12,
912 IB_RNR_TIMER_000_96 = 13,
913 IB_RNR_TIMER_001_28 = 14,
914 IB_RNR_TIMER_001_92 = 15,
915 IB_RNR_TIMER_002_56 = 16,
916 IB_RNR_TIMER_003_84 = 17,
917 IB_RNR_TIMER_005_12 = 18,
918 IB_RNR_TIMER_007_68 = 19,
919 IB_RNR_TIMER_010_24 = 20,
920 IB_RNR_TIMER_015_36 = 21,
921 IB_RNR_TIMER_020_48 = 22,
922 IB_RNR_TIMER_030_72 = 23,
923 IB_RNR_TIMER_040_96 = 24,
924 IB_RNR_TIMER_061_44 = 25,
925 IB_RNR_TIMER_081_92 = 26,
926 IB_RNR_TIMER_122_88 = 27,
927 IB_RNR_TIMER_163_84 = 28,
928 IB_RNR_TIMER_245_76 = 29,
929 IB_RNR_TIMER_327_68 = 30,
930 IB_RNR_TIMER_491_52 = 31
931};
932
933enum ib_qp_attr_mask {
934 IB_QP_STATE = 1,
935 IB_QP_CUR_STATE = (1<<1),
936 IB_QP_EN_SQD_ASYNC_NOTIFY = (1<<2),
937 IB_QP_ACCESS_FLAGS = (1<<3),
938 IB_QP_PKEY_INDEX = (1<<4),
939 IB_QP_PORT = (1<<5),
940 IB_QP_QKEY = (1<<6),
941 IB_QP_AV = (1<<7),
942 IB_QP_PATH_MTU = (1<<8),
943 IB_QP_TIMEOUT = (1<<9),
944 IB_QP_RETRY_CNT = (1<<10),
945 IB_QP_RNR_RETRY = (1<<11),
946 IB_QP_RQ_PSN = (1<<12),
947 IB_QP_MAX_QP_RD_ATOMIC = (1<<13),
948 IB_QP_ALT_PATH = (1<<14),
949 IB_QP_MIN_RNR_TIMER = (1<<15),
950 IB_QP_SQ_PSN = (1<<16),
951 IB_QP_MAX_DEST_RD_ATOMIC = (1<<17),
952 IB_QP_PATH_MIG_STATE = (1<<18),
953 IB_QP_CAP = (1<<19),
dd5f03be
MB
954 IB_QP_DEST_QPN = (1<<20),
955 IB_QP_SMAC = (1<<21),
956 IB_QP_ALT_SMAC = (1<<22),
957 IB_QP_VID = (1<<23),
958 IB_QP_ALT_VID = (1<<24),
1da177e4
LT
959};
960
961enum ib_qp_state {
962 IB_QPS_RESET,
963 IB_QPS_INIT,
964 IB_QPS_RTR,
965 IB_QPS_RTS,
966 IB_QPS_SQD,
967 IB_QPS_SQE,
968 IB_QPS_ERR
969};
970
971enum ib_mig_state {
972 IB_MIG_MIGRATED,
973 IB_MIG_REARM,
974 IB_MIG_ARMED
975};
976
7083e42e
SM
977enum ib_mw_type {
978 IB_MW_TYPE_1 = 1,
979 IB_MW_TYPE_2 = 2
980};
981
1da177e4
LT
982struct ib_qp_attr {
983 enum ib_qp_state qp_state;
984 enum ib_qp_state cur_qp_state;
985 enum ib_mtu path_mtu;
986 enum ib_mig_state path_mig_state;
987 u32 qkey;
988 u32 rq_psn;
989 u32 sq_psn;
990 u32 dest_qp_num;
991 int qp_access_flags;
992 struct ib_qp_cap cap;
993 struct ib_ah_attr ah_attr;
994 struct ib_ah_attr alt_ah_attr;
995 u16 pkey_index;
996 u16 alt_pkey_index;
997 u8 en_sqd_async_notify;
998 u8 sq_draining;
999 u8 max_rd_atomic;
1000 u8 max_dest_rd_atomic;
1001 u8 min_rnr_timer;
1002 u8 port_num;
1003 u8 timeout;
1004 u8 retry_cnt;
1005 u8 rnr_retry;
1006 u8 alt_port_num;
1007 u8 alt_timeout;
dd5f03be
MB
1008 u8 smac[ETH_ALEN];
1009 u8 alt_smac[ETH_ALEN];
1010 u16 vlan_id;
1011 u16 alt_vlan_id;
1da177e4
LT
1012};
1013
1014enum ib_wr_opcode {
1015 IB_WR_RDMA_WRITE,
1016 IB_WR_RDMA_WRITE_WITH_IMM,
1017 IB_WR_SEND,
1018 IB_WR_SEND_WITH_IMM,
1019 IB_WR_RDMA_READ,
1020 IB_WR_ATOMIC_CMP_AND_SWP,
c93570f2 1021 IB_WR_ATOMIC_FETCH_AND_ADD,
0f39cf3d
RD
1022 IB_WR_LSO,
1023 IB_WR_SEND_WITH_INV,
00f7ec36
SW
1024 IB_WR_RDMA_READ_WITH_INV,
1025 IB_WR_LOCAL_INV,
1026 IB_WR_FAST_REG_MR,
5e80ba8f
VS
1027 IB_WR_MASKED_ATOMIC_CMP_AND_SWP,
1028 IB_WR_MASKED_ATOMIC_FETCH_AND_ADD,
7083e42e 1029 IB_WR_BIND_MW,
1b01d335 1030 IB_WR_REG_SIG_MR,
0134f16b
JM
1031 /* reserve values for low level drivers' internal use.
1032 * These values will not be used at all in the ib core layer.
1033 */
1034 IB_WR_RESERVED1 = 0xf0,
1035 IB_WR_RESERVED2,
1036 IB_WR_RESERVED3,
1037 IB_WR_RESERVED4,
1038 IB_WR_RESERVED5,
1039 IB_WR_RESERVED6,
1040 IB_WR_RESERVED7,
1041 IB_WR_RESERVED8,
1042 IB_WR_RESERVED9,
1043 IB_WR_RESERVED10,
1da177e4
LT
1044};
1045
1046enum ib_send_flags {
1047 IB_SEND_FENCE = 1,
1048 IB_SEND_SIGNALED = (1<<1),
1049 IB_SEND_SOLICITED = (1<<2),
e0605d91 1050 IB_SEND_INLINE = (1<<3),
0134f16b
JM
1051 IB_SEND_IP_CSUM = (1<<4),
1052
1053 /* reserve bits 26-31 for low level drivers' internal use */
1054 IB_SEND_RESERVED_START = (1 << 26),
1055 IB_SEND_RESERVED_END = (1 << 31),
1da177e4
LT
1056};
1057
1058struct ib_sge {
1059 u64 addr;
1060 u32 length;
1061 u32 lkey;
1062};
1063
00f7ec36
SW
1064struct ib_fast_reg_page_list {
1065 struct ib_device *device;
1066 u64 *page_list;
1067 unsigned int max_page_list_len;
1068};
1069
7083e42e
SM
1070/**
1071 * struct ib_mw_bind_info - Parameters for a memory window bind operation.
1072 * @mr: A memory region to bind the memory window to.
1073 * @addr: The address where the memory window should begin.
1074 * @length: The length of the memory window, in bytes.
1075 * @mw_access_flags: Access flags from enum ib_access_flags for the window.
1076 *
1077 * This struct contains the shared parameters for type 1 and type 2
1078 * memory window bind operations.
1079 */
1080struct ib_mw_bind_info {
1081 struct ib_mr *mr;
1082 u64 addr;
1083 u64 length;
1084 int mw_access_flags;
1085};
1086
1da177e4
LT
1087struct ib_send_wr {
1088 struct ib_send_wr *next;
1089 u64 wr_id;
1090 struct ib_sge *sg_list;
1091 int num_sge;
1092 enum ib_wr_opcode opcode;
1093 int send_flags;
0f39cf3d
RD
1094 union {
1095 __be32 imm_data;
1096 u32 invalidate_rkey;
1097 } ex;
1da177e4
LT
1098 union {
1099 struct {
1100 u64 remote_addr;
1101 u32 rkey;
1102 } rdma;
1103 struct {
1104 u64 remote_addr;
1105 u64 compare_add;
1106 u64 swap;
5e80ba8f
VS
1107 u64 compare_add_mask;
1108 u64 swap_mask;
1da177e4
LT
1109 u32 rkey;
1110 } atomic;
1111 struct {
1112 struct ib_ah *ah;
c93570f2
EC
1113 void *header;
1114 int hlen;
1115 int mss;
1da177e4
LT
1116 u32 remote_qpn;
1117 u32 remote_qkey;
1da177e4
LT
1118 u16 pkey_index; /* valid for GSI only */
1119 u8 port_num; /* valid for DR SMPs on switch only */
1120 } ud;
00f7ec36
SW
1121 struct {
1122 u64 iova_start;
1123 struct ib_fast_reg_page_list *page_list;
1124 unsigned int page_shift;
1125 unsigned int page_list_len;
1126 u32 length;
1127 int access_flags;
1128 u32 rkey;
1129 } fast_reg;
7083e42e
SM
1130 struct {
1131 struct ib_mw *mw;
1132 /* The new rkey for the memory window. */
1133 u32 rkey;
1134 struct ib_mw_bind_info bind_info;
1135 } bind_mw;
1b01d335
SG
1136 struct {
1137 struct ib_sig_attrs *sig_attrs;
1138 struct ib_mr *sig_mr;
1139 int access_flags;
1140 struct ib_sge *prot;
1141 } sig_handover;
1da177e4 1142 } wr;
b42b63cf 1143 u32 xrc_remote_srq_num; /* XRC TGT QPs only */
1da177e4
LT
1144};
1145
1146struct ib_recv_wr {
1147 struct ib_recv_wr *next;
1148 u64 wr_id;
1149 struct ib_sge *sg_list;
1150 int num_sge;
1151};
1152
1153enum ib_access_flags {
1154 IB_ACCESS_LOCAL_WRITE = 1,
1155 IB_ACCESS_REMOTE_WRITE = (1<<1),
1156 IB_ACCESS_REMOTE_READ = (1<<2),
1157 IB_ACCESS_REMOTE_ATOMIC = (1<<3),
7083e42e 1158 IB_ACCESS_MW_BIND = (1<<4),
860f10a7
SG
1159 IB_ZERO_BASED = (1<<5),
1160 IB_ACCESS_ON_DEMAND = (1<<6),
1da177e4
LT
1161};
1162
1163struct ib_phys_buf {
1164 u64 addr;
1165 u64 size;
1166};
1167
1168struct ib_mr_attr {
1169 struct ib_pd *pd;
1170 u64 device_virt_addr;
1171 u64 size;
1172 int mr_access_flags;
1173 u32 lkey;
1174 u32 rkey;
1175};
1176
1177enum ib_mr_rereg_flags {
1178 IB_MR_REREG_TRANS = 1,
1179 IB_MR_REREG_PD = (1<<1),
7e6edb9b
MB
1180 IB_MR_REREG_ACCESS = (1<<2),
1181 IB_MR_REREG_SUPPORTED = ((IB_MR_REREG_ACCESS << 1) - 1)
1da177e4
LT
1182};
1183
7083e42e
SM
1184/**
1185 * struct ib_mw_bind - Parameters for a type 1 memory window bind operation.
1186 * @wr_id: Work request id.
1187 * @send_flags: Flags from ib_send_flags enum.
1188 * @bind_info: More parameters of the bind operation.
1189 */
1da177e4 1190struct ib_mw_bind {
7083e42e
SM
1191 u64 wr_id;
1192 int send_flags;
1193 struct ib_mw_bind_info bind_info;
1da177e4
LT
1194};
1195
1196struct ib_fmr_attr {
1197 int max_pages;
1198 int max_maps;
d36f34aa 1199 u8 page_shift;
1da177e4
LT
1200};
1201
882214e2
HE
1202struct ib_umem;
1203
e2773c06
RD
1204struct ib_ucontext {
1205 struct ib_device *device;
1206 struct list_head pd_list;
1207 struct list_head mr_list;
1208 struct list_head mw_list;
1209 struct list_head cq_list;
1210 struct list_head qp_list;
1211 struct list_head srq_list;
1212 struct list_head ah_list;
53d0bd1e 1213 struct list_head xrcd_list;
436f2ad0 1214 struct list_head rule_list;
f7c6a7b5 1215 int closing;
8ada2c1c
SR
1216
1217 struct pid *tgid;
882214e2
HE
1218#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1219 struct rb_root umem_tree;
1220 /*
1221 * Protects .umem_rbroot and tree, as well as odp_mrs_count and
1222 * mmu notifiers registration.
1223 */
1224 struct rw_semaphore umem_rwsem;
1225 void (*invalidate_range)(struct ib_umem *umem,
1226 unsigned long start, unsigned long end);
1227
1228 struct mmu_notifier mn;
1229 atomic_t notifier_count;
1230 /* A list of umems that don't have private mmu notifier counters yet. */
1231 struct list_head no_private_counters;
1232 int odp_mrs_count;
1233#endif
e2773c06
RD
1234};
1235
1236struct ib_uobject {
1237 u64 user_handle; /* handle given to us by userspace */
1238 struct ib_ucontext *context; /* associated user context */
9ead190b 1239 void *object; /* containing object */
e2773c06 1240 struct list_head list; /* link to context's list */
b3d636b0 1241 int id; /* index into kernel idr */
9ead190b
RD
1242 struct kref ref;
1243 struct rw_semaphore mutex; /* protects .live */
1244 int live;
e2773c06
RD
1245};
1246
e2773c06 1247struct ib_udata {
309243ec 1248 const void __user *inbuf;
e2773c06
RD
1249 void __user *outbuf;
1250 size_t inlen;
1251 size_t outlen;
1252};
1253
1da177e4 1254struct ib_pd {
e2773c06
RD
1255 struct ib_device *device;
1256 struct ib_uobject *uobject;
1257 atomic_t usecnt; /* count all resources */
1da177e4
LT
1258};
1259
59991f94
SH
1260struct ib_xrcd {
1261 struct ib_device *device;
d3d72d90 1262 atomic_t usecnt; /* count all exposed resources */
53d0bd1e 1263 struct inode *inode;
d3d72d90
SH
1264
1265 struct mutex tgt_qp_mutex;
1266 struct list_head tgt_qp_list;
59991f94
SH
1267};
1268
1da177e4
LT
1269struct ib_ah {
1270 struct ib_device *device;
1271 struct ib_pd *pd;
e2773c06 1272 struct ib_uobject *uobject;
1da177e4
LT
1273};
1274
1275typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context);
1276
1277struct ib_cq {
e2773c06
RD
1278 struct ib_device *device;
1279 struct ib_uobject *uobject;
1280 ib_comp_handler comp_handler;
1281 void (*event_handler)(struct ib_event *, void *);
4deccd6d 1282 void *cq_context;
e2773c06
RD
1283 int cqe;
1284 atomic_t usecnt; /* count number of work queues */
1da177e4
LT
1285};
1286
1287struct ib_srq {
d41fcc67
RD
1288 struct ib_device *device;
1289 struct ib_pd *pd;
1290 struct ib_uobject *uobject;
1291 void (*event_handler)(struct ib_event *, void *);
1292 void *srq_context;
96104eda 1293 enum ib_srq_type srq_type;
1da177e4 1294 atomic_t usecnt;
418d5130
SH
1295
1296 union {
1297 struct {
1298 struct ib_xrcd *xrcd;
1299 struct ib_cq *cq;
1300 u32 srq_num;
1301 } xrc;
1302 } ext;
1da177e4
LT
1303};
1304
1305struct ib_qp {
1306 struct ib_device *device;
1307 struct ib_pd *pd;
1308 struct ib_cq *send_cq;
1309 struct ib_cq *recv_cq;
1310 struct ib_srq *srq;
b42b63cf 1311 struct ib_xrcd *xrcd; /* XRC TGT QPs only */
d3d72d90 1312 struct list_head xrcd_list;
319a441d
HHZ
1313 /* count times opened, mcast attaches, flow attaches */
1314 atomic_t usecnt;
0e0ec7e0
SH
1315 struct list_head open_list;
1316 struct ib_qp *real_qp;
e2773c06 1317 struct ib_uobject *uobject;
1da177e4
LT
1318 void (*event_handler)(struct ib_event *, void *);
1319 void *qp_context;
1320 u32 qp_num;
1321 enum ib_qp_type qp_type;
1322};
1323
1324struct ib_mr {
e2773c06
RD
1325 struct ib_device *device;
1326 struct ib_pd *pd;
1327 struct ib_uobject *uobject;
1328 u32 lkey;
1329 u32 rkey;
1330 atomic_t usecnt; /* count number of MWs */
1da177e4
LT
1331};
1332
1333struct ib_mw {
1334 struct ib_device *device;
1335 struct ib_pd *pd;
e2773c06 1336 struct ib_uobject *uobject;
1da177e4 1337 u32 rkey;
7083e42e 1338 enum ib_mw_type type;
1da177e4
LT
1339};
1340
1341struct ib_fmr {
1342 struct ib_device *device;
1343 struct ib_pd *pd;
1344 struct list_head list;
1345 u32 lkey;
1346 u32 rkey;
1347};
1348
319a441d
HHZ
1349/* Supported steering options */
1350enum ib_flow_attr_type {
1351 /* steering according to rule specifications */
1352 IB_FLOW_ATTR_NORMAL = 0x0,
1353 /* default unicast and multicast rule -
1354 * receive all Eth traffic which isn't steered to any QP
1355 */
1356 IB_FLOW_ATTR_ALL_DEFAULT = 0x1,
1357 /* default multicast rule -
1358 * receive all Eth multicast traffic which isn't steered to any QP
1359 */
1360 IB_FLOW_ATTR_MC_DEFAULT = 0x2,
1361 /* sniffer rule - receive all port traffic */
1362 IB_FLOW_ATTR_SNIFFER = 0x3
1363};
1364
1365/* Supported steering header types */
1366enum ib_flow_spec_type {
1367 /* L2 headers*/
1368 IB_FLOW_SPEC_ETH = 0x20,
240ae00e 1369 IB_FLOW_SPEC_IB = 0x22,
319a441d
HHZ
1370 /* L3 header*/
1371 IB_FLOW_SPEC_IPV4 = 0x30,
1372 /* L4 headers*/
1373 IB_FLOW_SPEC_TCP = 0x40,
1374 IB_FLOW_SPEC_UDP = 0x41
1375};
240ae00e 1376#define IB_FLOW_SPEC_LAYER_MASK 0xF0
22878dbc
MB
1377#define IB_FLOW_SPEC_SUPPORT_LAYERS 4
1378
319a441d
HHZ
1379/* Flow steering rule priority is set according to it's domain.
1380 * Lower domain value means higher priority.
1381 */
1382enum ib_flow_domain {
1383 IB_FLOW_DOMAIN_USER,
1384 IB_FLOW_DOMAIN_ETHTOOL,
1385 IB_FLOW_DOMAIN_RFS,
1386 IB_FLOW_DOMAIN_NIC,
1387 IB_FLOW_DOMAIN_NUM /* Must be last */
1388};
1389
1390struct ib_flow_eth_filter {
1391 u8 dst_mac[6];
1392 u8 src_mac[6];
1393 __be16 ether_type;
1394 __be16 vlan_tag;
1395};
1396
1397struct ib_flow_spec_eth {
1398 enum ib_flow_spec_type type;
1399 u16 size;
1400 struct ib_flow_eth_filter val;
1401 struct ib_flow_eth_filter mask;
1402};
1403
240ae00e
MB
1404struct ib_flow_ib_filter {
1405 __be16 dlid;
1406 __u8 sl;
1407};
1408
1409struct ib_flow_spec_ib {
1410 enum ib_flow_spec_type type;
1411 u16 size;
1412 struct ib_flow_ib_filter val;
1413 struct ib_flow_ib_filter mask;
1414};
1415
319a441d
HHZ
1416struct ib_flow_ipv4_filter {
1417 __be32 src_ip;
1418 __be32 dst_ip;
1419};
1420
1421struct ib_flow_spec_ipv4 {
1422 enum ib_flow_spec_type type;
1423 u16 size;
1424 struct ib_flow_ipv4_filter val;
1425 struct ib_flow_ipv4_filter mask;
1426};
1427
1428struct ib_flow_tcp_udp_filter {
1429 __be16 dst_port;
1430 __be16 src_port;
1431};
1432
1433struct ib_flow_spec_tcp_udp {
1434 enum ib_flow_spec_type type;
1435 u16 size;
1436 struct ib_flow_tcp_udp_filter val;
1437 struct ib_flow_tcp_udp_filter mask;
1438};
1439
1440union ib_flow_spec {
1441 struct {
1442 enum ib_flow_spec_type type;
1443 u16 size;
1444 };
1445 struct ib_flow_spec_eth eth;
240ae00e 1446 struct ib_flow_spec_ib ib;
319a441d
HHZ
1447 struct ib_flow_spec_ipv4 ipv4;
1448 struct ib_flow_spec_tcp_udp tcp_udp;
1449};
1450
1451struct ib_flow_attr {
1452 enum ib_flow_attr_type type;
1453 u16 size;
1454 u16 priority;
1455 u32 flags;
1456 u8 num_of_specs;
1457 u8 port;
1458 /* Following are the optional layers according to user request
1459 * struct ib_flow_spec_xxx
1460 * struct ib_flow_spec_yyy
1461 */
1462};
1463
1464struct ib_flow {
1465 struct ib_qp *qp;
1466 struct ib_uobject *uobject;
1467};
1468
4cd7c947 1469struct ib_mad_hdr;
1da177e4
LT
1470struct ib_grh;
1471
1472enum ib_process_mad_flags {
1473 IB_MAD_IGNORE_MKEY = 1,
1474 IB_MAD_IGNORE_BKEY = 2,
1475 IB_MAD_IGNORE_ALL = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY
1476};
1477
1478enum ib_mad_result {
1479 IB_MAD_RESULT_FAILURE = 0, /* (!SUCCESS is the important flag) */
1480 IB_MAD_RESULT_SUCCESS = 1 << 0, /* MAD was successfully processed */
1481 IB_MAD_RESULT_REPLY = 1 << 1, /* Reply packet needs to be sent */
1482 IB_MAD_RESULT_CONSUMED = 1 << 2 /* Packet consumed: stop processing */
1483};
1484
1485#define IB_DEVICE_NAME_MAX 64
1486
1487struct ib_cache {
1488 rwlock_t lock;
1489 struct ib_event_handler event_handler;
1490 struct ib_pkey_cache **pkey_cache;
1491 struct ib_gid_cache **gid_cache;
6fb9cdbf 1492 u8 *lmc_cache;
1da177e4
LT
1493};
1494
9b513090
RC
1495struct ib_dma_mapping_ops {
1496 int (*mapping_error)(struct ib_device *dev,
1497 u64 dma_addr);
1498 u64 (*map_single)(struct ib_device *dev,
1499 void *ptr, size_t size,
1500 enum dma_data_direction direction);
1501 void (*unmap_single)(struct ib_device *dev,
1502 u64 addr, size_t size,
1503 enum dma_data_direction direction);
1504 u64 (*map_page)(struct ib_device *dev,
1505 struct page *page, unsigned long offset,
1506 size_t size,
1507 enum dma_data_direction direction);
1508 void (*unmap_page)(struct ib_device *dev,
1509 u64 addr, size_t size,
1510 enum dma_data_direction direction);
1511 int (*map_sg)(struct ib_device *dev,
1512 struct scatterlist *sg, int nents,
1513 enum dma_data_direction direction);
1514 void (*unmap_sg)(struct ib_device *dev,
1515 struct scatterlist *sg, int nents,
1516 enum dma_data_direction direction);
9b513090
RC
1517 void (*sync_single_for_cpu)(struct ib_device *dev,
1518 u64 dma_handle,
1519 size_t size,
4deccd6d 1520 enum dma_data_direction dir);
9b513090
RC
1521 void (*sync_single_for_device)(struct ib_device *dev,
1522 u64 dma_handle,
1523 size_t size,
1524 enum dma_data_direction dir);
1525 void *(*alloc_coherent)(struct ib_device *dev,
1526 size_t size,
1527 u64 *dma_handle,
1528 gfp_t flag);
1529 void (*free_coherent)(struct ib_device *dev,
1530 size_t size, void *cpu_addr,
1531 u64 dma_handle);
1532};
1533
07ebafba
TT
1534struct iw_cm_verbs;
1535
7738613e
IW
1536struct ib_port_immutable {
1537 int pkey_tbl_len;
1538 int gid_tbl_len;
f9b22e35 1539 u32 core_cap_flags;
337877a4 1540 u32 max_mad_size;
7738613e
IW
1541};
1542
1da177e4
LT
1543struct ib_device {
1544 struct device *dma_device;
1545
1546 char name[IB_DEVICE_NAME_MAX];
1547
1548 struct list_head event_handler_list;
1549 spinlock_t event_handler_lock;
1550
17a55f79 1551 spinlock_t client_data_lock;
1da177e4
LT
1552 struct list_head core_list;
1553 struct list_head client_data_list;
1da177e4
LT
1554
1555 struct ib_cache cache;
7738613e
IW
1556 /**
1557 * port_immutable is indexed by port number
1558 */
1559 struct ib_port_immutable *port_immutable;
1da177e4 1560
f4fd0b22
MT
1561 int num_comp_vectors;
1562
07ebafba
TT
1563 struct iw_cm_verbs *iwcm;
1564
7f624d02
SW
1565 int (*get_protocol_stats)(struct ib_device *device,
1566 union rdma_protocol_stats *stats);
1da177e4 1567 int (*query_device)(struct ib_device *device,
2528e33e
MB
1568 struct ib_device_attr *device_attr,
1569 struct ib_udata *udata);
1da177e4
LT
1570 int (*query_port)(struct ib_device *device,
1571 u8 port_num,
1572 struct ib_port_attr *port_attr);
a3f5adaf
EC
1573 enum rdma_link_layer (*get_link_layer)(struct ib_device *device,
1574 u8 port_num);
1da177e4
LT
1575 int (*query_gid)(struct ib_device *device,
1576 u8 port_num, int index,
1577 union ib_gid *gid);
1578 int (*query_pkey)(struct ib_device *device,
1579 u8 port_num, u16 index, u16 *pkey);
1580 int (*modify_device)(struct ib_device *device,
1581 int device_modify_mask,
1582 struct ib_device_modify *device_modify);
1583 int (*modify_port)(struct ib_device *device,
1584 u8 port_num, int port_modify_mask,
1585 struct ib_port_modify *port_modify);
e2773c06
RD
1586 struct ib_ucontext * (*alloc_ucontext)(struct ib_device *device,
1587 struct ib_udata *udata);
1588 int (*dealloc_ucontext)(struct ib_ucontext *context);
1589 int (*mmap)(struct ib_ucontext *context,
1590 struct vm_area_struct *vma);
1591 struct ib_pd * (*alloc_pd)(struct ib_device *device,
1592 struct ib_ucontext *context,
1593 struct ib_udata *udata);
1da177e4
LT
1594 int (*dealloc_pd)(struct ib_pd *pd);
1595 struct ib_ah * (*create_ah)(struct ib_pd *pd,
1596 struct ib_ah_attr *ah_attr);
1597 int (*modify_ah)(struct ib_ah *ah,
1598 struct ib_ah_attr *ah_attr);
1599 int (*query_ah)(struct ib_ah *ah,
1600 struct ib_ah_attr *ah_attr);
1601 int (*destroy_ah)(struct ib_ah *ah);
d41fcc67
RD
1602 struct ib_srq * (*create_srq)(struct ib_pd *pd,
1603 struct ib_srq_init_attr *srq_init_attr,
1604 struct ib_udata *udata);
1605 int (*modify_srq)(struct ib_srq *srq,
1606 struct ib_srq_attr *srq_attr,
9bc57e2d
RC
1607 enum ib_srq_attr_mask srq_attr_mask,
1608 struct ib_udata *udata);
d41fcc67
RD
1609 int (*query_srq)(struct ib_srq *srq,
1610 struct ib_srq_attr *srq_attr);
1611 int (*destroy_srq)(struct ib_srq *srq);
1612 int (*post_srq_recv)(struct ib_srq *srq,
1613 struct ib_recv_wr *recv_wr,
1614 struct ib_recv_wr **bad_recv_wr);
1da177e4 1615 struct ib_qp * (*create_qp)(struct ib_pd *pd,
e2773c06
RD
1616 struct ib_qp_init_attr *qp_init_attr,
1617 struct ib_udata *udata);
1da177e4
LT
1618 int (*modify_qp)(struct ib_qp *qp,
1619 struct ib_qp_attr *qp_attr,
9bc57e2d
RC
1620 int qp_attr_mask,
1621 struct ib_udata *udata);
1da177e4
LT
1622 int (*query_qp)(struct ib_qp *qp,
1623 struct ib_qp_attr *qp_attr,
1624 int qp_attr_mask,
1625 struct ib_qp_init_attr *qp_init_attr);
1626 int (*destroy_qp)(struct ib_qp *qp);
1627 int (*post_send)(struct ib_qp *qp,
1628 struct ib_send_wr *send_wr,
1629 struct ib_send_wr **bad_send_wr);
1630 int (*post_recv)(struct ib_qp *qp,
1631 struct ib_recv_wr *recv_wr,
1632 struct ib_recv_wr **bad_recv_wr);
bcf4c1ea
MB
1633 struct ib_cq * (*create_cq)(struct ib_device *device,
1634 const struct ib_cq_init_attr *attr,
e2773c06
RD
1635 struct ib_ucontext *context,
1636 struct ib_udata *udata);
2dd57162
EC
1637 int (*modify_cq)(struct ib_cq *cq, u16 cq_count,
1638 u16 cq_period);
1da177e4 1639 int (*destroy_cq)(struct ib_cq *cq);
33b9b3ee
RD
1640 int (*resize_cq)(struct ib_cq *cq, int cqe,
1641 struct ib_udata *udata);
1da177e4
LT
1642 int (*poll_cq)(struct ib_cq *cq, int num_entries,
1643 struct ib_wc *wc);
1644 int (*peek_cq)(struct ib_cq *cq, int wc_cnt);
1645 int (*req_notify_cq)(struct ib_cq *cq,
ed23a727 1646 enum ib_cq_notify_flags flags);
1da177e4
LT
1647 int (*req_ncomp_notif)(struct ib_cq *cq,
1648 int wc_cnt);
1649 struct ib_mr * (*get_dma_mr)(struct ib_pd *pd,
1650 int mr_access_flags);
1651 struct ib_mr * (*reg_phys_mr)(struct ib_pd *pd,
1652 struct ib_phys_buf *phys_buf_array,
1653 int num_phys_buf,
1654 int mr_access_flags,
1655 u64 *iova_start);
e2773c06 1656 struct ib_mr * (*reg_user_mr)(struct ib_pd *pd,
f7c6a7b5
RD
1657 u64 start, u64 length,
1658 u64 virt_addr,
e2773c06
RD
1659 int mr_access_flags,
1660 struct ib_udata *udata);
7e6edb9b
MB
1661 int (*rereg_user_mr)(struct ib_mr *mr,
1662 int flags,
1663 u64 start, u64 length,
1664 u64 virt_addr,
1665 int mr_access_flags,
1666 struct ib_pd *pd,
1667 struct ib_udata *udata);
1da177e4
LT
1668 int (*query_mr)(struct ib_mr *mr,
1669 struct ib_mr_attr *mr_attr);
1670 int (*dereg_mr)(struct ib_mr *mr);
17cd3a2d
SG
1671 int (*destroy_mr)(struct ib_mr *mr);
1672 struct ib_mr * (*create_mr)(struct ib_pd *pd,
1673 struct ib_mr_init_attr *mr_init_attr);
00f7ec36
SW
1674 struct ib_mr * (*alloc_fast_reg_mr)(struct ib_pd *pd,
1675 int max_page_list_len);
1676 struct ib_fast_reg_page_list * (*alloc_fast_reg_page_list)(struct ib_device *device,
1677 int page_list_len);
1678 void (*free_fast_reg_page_list)(struct ib_fast_reg_page_list *page_list);
1da177e4
LT
1679 int (*rereg_phys_mr)(struct ib_mr *mr,
1680 int mr_rereg_mask,
1681 struct ib_pd *pd,
1682 struct ib_phys_buf *phys_buf_array,
1683 int num_phys_buf,
1684 int mr_access_flags,
1685 u64 *iova_start);
7083e42e
SM
1686 struct ib_mw * (*alloc_mw)(struct ib_pd *pd,
1687 enum ib_mw_type type);
1da177e4
LT
1688 int (*bind_mw)(struct ib_qp *qp,
1689 struct ib_mw *mw,
1690 struct ib_mw_bind *mw_bind);
1691 int (*dealloc_mw)(struct ib_mw *mw);
1692 struct ib_fmr * (*alloc_fmr)(struct ib_pd *pd,
1693 int mr_access_flags,
1694 struct ib_fmr_attr *fmr_attr);
1695 int (*map_phys_fmr)(struct ib_fmr *fmr,
1696 u64 *page_list, int list_len,
1697 u64 iova);
1698 int (*unmap_fmr)(struct list_head *fmr_list);
1699 int (*dealloc_fmr)(struct ib_fmr *fmr);
1700 int (*attach_mcast)(struct ib_qp *qp,
1701 union ib_gid *gid,
1702 u16 lid);
1703 int (*detach_mcast)(struct ib_qp *qp,
1704 union ib_gid *gid,
1705 u16 lid);
1706 int (*process_mad)(struct ib_device *device,
1707 int process_mad_flags,
1708 u8 port_num,
a97e2d86
IW
1709 const struct ib_wc *in_wc,
1710 const struct ib_grh *in_grh,
4cd7c947
IW
1711 const struct ib_mad_hdr *in_mad,
1712 size_t in_mad_size,
1713 struct ib_mad_hdr *out_mad,
1714 size_t *out_mad_size,
1715 u16 *out_mad_pkey_index);
59991f94
SH
1716 struct ib_xrcd * (*alloc_xrcd)(struct ib_device *device,
1717 struct ib_ucontext *ucontext,
1718 struct ib_udata *udata);
1719 int (*dealloc_xrcd)(struct ib_xrcd *xrcd);
319a441d
HHZ
1720 struct ib_flow * (*create_flow)(struct ib_qp *qp,
1721 struct ib_flow_attr
1722 *flow_attr,
1723 int domain);
1724 int (*destroy_flow)(struct ib_flow *flow_id);
1b01d335
SG
1725 int (*check_mr_status)(struct ib_mr *mr, u32 check_mask,
1726 struct ib_mr_status *mr_status);
1da177e4 1727
9b513090
RC
1728 struct ib_dma_mapping_ops *dma_ops;
1729
e2773c06 1730 struct module *owner;
f4e91eb4 1731 struct device dev;
35be0681 1732 struct kobject *ports_parent;
1da177e4
LT
1733 struct list_head port_list;
1734
1735 enum {
1736 IB_DEV_UNINITIALIZED,
1737 IB_DEV_REGISTERED,
1738 IB_DEV_UNREGISTERED
1739 } reg_state;
1740
274c0891 1741 int uverbs_abi_ver;
17a55f79 1742 u64 uverbs_cmd_mask;
f21519b2 1743 u64 uverbs_ex_cmd_mask;
274c0891 1744
c5bcbbb9 1745 char node_desc[64];
cf311cd4 1746 __be64 node_guid;
96f15c03 1747 u32 local_dma_lkey;
4139032b 1748 u16 is_switch:1;
1da177e4
LT
1749 u8 node_type;
1750 u8 phys_port_cnt;
7738613e
IW
1751
1752 /**
1753 * The following mandatory functions are used only at device
1754 * registration. Keep functions such as these at the end of this
1755 * structure to avoid cache line misses when accessing struct ib_device
1756 * in fast paths.
1757 */
1758 int (*get_port_immutable)(struct ib_device *, u8, struct ib_port_immutable *);
1da177e4
LT
1759};
1760
1761struct ib_client {
1762 char *name;
1763 void (*add) (struct ib_device *);
1764 void (*remove)(struct ib_device *);
1765
1766 struct list_head list;
1767};
1768
1769struct ib_device *ib_alloc_device(size_t size);
1770void ib_dealloc_device(struct ib_device *device);
1771
9a6edb60
RC
1772int ib_register_device(struct ib_device *device,
1773 int (*port_callback)(struct ib_device *,
1774 u8, struct kobject *));
1da177e4
LT
1775void ib_unregister_device(struct ib_device *device);
1776
1777int ib_register_client (struct ib_client *client);
1778void ib_unregister_client(struct ib_client *client);
1779
1780void *ib_get_client_data(struct ib_device *device, struct ib_client *client);
1781void ib_set_client_data(struct ib_device *device, struct ib_client *client,
1782 void *data);
1783
e2773c06
RD
1784static inline int ib_copy_from_udata(void *dest, struct ib_udata *udata, size_t len)
1785{
1786 return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
1787}
1788
1789static inline int ib_copy_to_udata(struct ib_udata *udata, void *src, size_t len)
1790{
43c61165 1791 return copy_to_user(udata->outbuf, src, len) ? -EFAULT : 0;
e2773c06
RD
1792}
1793
8a51866f
RD
1794/**
1795 * ib_modify_qp_is_ok - Check that the supplied attribute mask
1796 * contains all required attributes and no attributes not allowed for
1797 * the given QP state transition.
1798 * @cur_state: Current QP state
1799 * @next_state: Next QP state
1800 * @type: QP type
1801 * @mask: Mask of supplied QP attributes
dd5f03be 1802 * @ll : link layer of port
8a51866f
RD
1803 *
1804 * This function is a helper function that a low-level driver's
1805 * modify_qp method can use to validate the consumer's input. It
1806 * checks that cur_state and next_state are valid QP states, that a
1807 * transition from cur_state to next_state is allowed by the IB spec,
1808 * and that the attribute mask supplied is allowed for the transition.
1809 */
1810int ib_modify_qp_is_ok(enum ib_qp_state cur_state, enum ib_qp_state next_state,
dd5f03be
MB
1811 enum ib_qp_type type, enum ib_qp_attr_mask mask,
1812 enum rdma_link_layer ll);
8a51866f 1813
1da177e4
LT
1814int ib_register_event_handler (struct ib_event_handler *event_handler);
1815int ib_unregister_event_handler(struct ib_event_handler *event_handler);
1816void ib_dispatch_event(struct ib_event *event);
1817
1818int ib_query_device(struct ib_device *device,
1819 struct ib_device_attr *device_attr);
1820
1821int ib_query_port(struct ib_device *device,
1822 u8 port_num, struct ib_port_attr *port_attr);
1823
a3f5adaf
EC
1824enum rdma_link_layer rdma_port_get_link_layer(struct ib_device *device,
1825 u8 port_num);
1826
4139032b
HR
1827/**
1828 * rdma_cap_ib_switch - Check if the device is IB switch
1829 * @device: Device to check
1830 *
1831 * Device driver is responsible for setting is_switch bit on
1832 * in ib_device structure at init time.
1833 *
1834 * Return: true if the device is IB switch.
1835 */
1836static inline bool rdma_cap_ib_switch(const struct ib_device *device)
1837{
1838 return device->is_switch;
1839}
1840
0cf18d77
IW
1841/**
1842 * rdma_start_port - Return the first valid port number for the device
1843 * specified
1844 *
1845 * @device: Device to be checked
1846 *
1847 * Return start port number
1848 */
1849static inline u8 rdma_start_port(const struct ib_device *device)
1850{
4139032b 1851 return rdma_cap_ib_switch(device) ? 0 : 1;
0cf18d77
IW
1852}
1853
1854/**
1855 * rdma_end_port - Return the last valid port number for the device
1856 * specified
1857 *
1858 * @device: Device to be checked
1859 *
1860 * Return last port number
1861 */
1862static inline u8 rdma_end_port(const struct ib_device *device)
1863{
4139032b 1864 return rdma_cap_ib_switch(device) ? 0 : device->phys_port_cnt;
0cf18d77
IW
1865}
1866
5ede9289 1867static inline bool rdma_protocol_ib(const struct ib_device *device, u8 port_num)
de66be94 1868{
f9b22e35 1869 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_IB;
de66be94
MW
1870}
1871
5ede9289 1872static inline bool rdma_protocol_roce(const struct ib_device *device, u8 port_num)
de66be94 1873{
f9b22e35 1874 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_ROCE;
de66be94
MW
1875}
1876
5ede9289 1877static inline bool rdma_protocol_iwarp(const struct ib_device *device, u8 port_num)
de66be94 1878{
f9b22e35 1879 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_PROT_IWARP;
de66be94
MW
1880}
1881
5ede9289 1882static inline bool rdma_ib_or_roce(const struct ib_device *device, u8 port_num)
de66be94 1883{
f9b22e35
IW
1884 return device->port_immutable[port_num].core_cap_flags &
1885 (RDMA_CORE_CAP_PROT_IB | RDMA_CORE_CAP_PROT_ROCE);
de66be94
MW
1886}
1887
c757dea8 1888/**
296ec009 1889 * rdma_cap_ib_mad - Check if the port of a device supports Infiniband
c757dea8 1890 * Management Datagrams.
296ec009
MW
1891 * @device: Device to check
1892 * @port_num: Port number to check
c757dea8 1893 *
296ec009
MW
1894 * Management Datagrams (MAD) are a required part of the InfiniBand
1895 * specification and are supported on all InfiniBand devices. A slightly
1896 * extended version are also supported on OPA interfaces.
c757dea8 1897 *
296ec009 1898 * Return: true if the port supports sending/receiving of MAD packets.
c757dea8 1899 */
5ede9289 1900static inline bool rdma_cap_ib_mad(const struct ib_device *device, u8 port_num)
c757dea8 1901{
f9b22e35 1902 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_MAD;
c757dea8
MW
1903}
1904
65995fee
IW
1905/**
1906 * rdma_cap_opa_mad - Check if the port of device provides support for OPA
1907 * Management Datagrams.
1908 * @device: Device to check
1909 * @port_num: Port number to check
1910 *
1911 * Intel OmniPath devices extend and/or replace the InfiniBand Management
1912 * datagrams with their own versions. These OPA MADs share many but not all of
1913 * the characteristics of InfiniBand MADs.
1914 *
1915 * OPA MADs differ in the following ways:
1916 *
1917 * 1) MADs are variable size up to 2K
1918 * IBTA defined MADs remain fixed at 256 bytes
1919 * 2) OPA SMPs must carry valid PKeys
1920 * 3) OPA SMP packets are a different format
1921 *
1922 * Return: true if the port supports OPA MAD packet formats.
1923 */
1924static inline bool rdma_cap_opa_mad(struct ib_device *device, u8 port_num)
1925{
1926 return (device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_OPA_MAD)
1927 == RDMA_CORE_CAP_OPA_MAD;
1928}
1929
29541e3a 1930/**
296ec009
MW
1931 * rdma_cap_ib_smi - Check if the port of a device provides an Infiniband
1932 * Subnet Management Agent (SMA) on the Subnet Management Interface (SMI).
1933 * @device: Device to check
1934 * @port_num: Port number to check
29541e3a 1935 *
296ec009
MW
1936 * Each InfiniBand node is required to provide a Subnet Management Agent
1937 * that the subnet manager can access. Prior to the fabric being fully
1938 * configured by the subnet manager, the SMA is accessed via a well known
1939 * interface called the Subnet Management Interface (SMI). This interface
1940 * uses directed route packets to communicate with the SM to get around the
1941 * chicken and egg problem of the SM needing to know what's on the fabric
1942 * in order to configure the fabric, and needing to configure the fabric in
1943 * order to send packets to the devices on the fabric. These directed
1944 * route packets do not need the fabric fully configured in order to reach
1945 * their destination. The SMI is the only method allowed to send
1946 * directed route packets on an InfiniBand fabric.
29541e3a 1947 *
296ec009 1948 * Return: true if the port provides an SMI.
29541e3a 1949 */
5ede9289 1950static inline bool rdma_cap_ib_smi(const struct ib_device *device, u8 port_num)
29541e3a 1951{
f9b22e35 1952 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_SMI;
29541e3a
MW
1953}
1954
72219cea
MW
1955/**
1956 * rdma_cap_ib_cm - Check if the port of device has the capability Infiniband
1957 * Communication Manager.
296ec009
MW
1958 * @device: Device to check
1959 * @port_num: Port number to check
72219cea 1960 *
296ec009
MW
1961 * The InfiniBand Communication Manager is one of many pre-defined General
1962 * Service Agents (GSA) that are accessed via the General Service
1963 * Interface (GSI). It's role is to facilitate establishment of connections
1964 * between nodes as well as other management related tasks for established
1965 * connections.
72219cea 1966 *
296ec009
MW
1967 * Return: true if the port supports an IB CM (this does not guarantee that
1968 * a CM is actually running however).
72219cea 1969 */
5ede9289 1970static inline bool rdma_cap_ib_cm(const struct ib_device *device, u8 port_num)
72219cea 1971{
f9b22e35 1972 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_CM;
72219cea
MW
1973}
1974
04215330
MW
1975/**
1976 * rdma_cap_iw_cm - Check if the port of device has the capability IWARP
1977 * Communication Manager.
296ec009
MW
1978 * @device: Device to check
1979 * @port_num: Port number to check
04215330 1980 *
296ec009
MW
1981 * Similar to above, but specific to iWARP connections which have a different
1982 * managment protocol than InfiniBand.
04215330 1983 *
296ec009
MW
1984 * Return: true if the port supports an iWARP CM (this does not guarantee that
1985 * a CM is actually running however).
04215330 1986 */
5ede9289 1987static inline bool rdma_cap_iw_cm(const struct ib_device *device, u8 port_num)
04215330 1988{
f9b22e35 1989 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IW_CM;
04215330
MW
1990}
1991
fe53ba2f
MW
1992/**
1993 * rdma_cap_ib_sa - Check if the port of device has the capability Infiniband
1994 * Subnet Administration.
296ec009
MW
1995 * @device: Device to check
1996 * @port_num: Port number to check
fe53ba2f 1997 *
296ec009
MW
1998 * An InfiniBand Subnet Administration (SA) service is a pre-defined General
1999 * Service Agent (GSA) provided by the Subnet Manager (SM). On InfiniBand
2000 * fabrics, devices should resolve routes to other hosts by contacting the
2001 * SA to query the proper route.
fe53ba2f 2002 *
296ec009
MW
2003 * Return: true if the port should act as a client to the fabric Subnet
2004 * Administration interface. This does not imply that the SA service is
2005 * running locally.
fe53ba2f 2006 */
5ede9289 2007static inline bool rdma_cap_ib_sa(const struct ib_device *device, u8 port_num)
fe53ba2f 2008{
f9b22e35 2009 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_IB_SA;
fe53ba2f
MW
2010}
2011
a31ad3b0
MW
2012/**
2013 * rdma_cap_ib_mcast - Check if the port of device has the capability Infiniband
2014 * Multicast.
296ec009
MW
2015 * @device: Device to check
2016 * @port_num: Port number to check
a31ad3b0 2017 *
296ec009
MW
2018 * InfiniBand multicast registration is more complex than normal IPv4 or
2019 * IPv6 multicast registration. Each Host Channel Adapter must register
2020 * with the Subnet Manager when it wishes to join a multicast group. It
2021 * should do so only once regardless of how many queue pairs it subscribes
2022 * to this group. And it should leave the group only after all queue pairs
2023 * attached to the group have been detached.
a31ad3b0 2024 *
296ec009
MW
2025 * Return: true if the port must undertake the additional adminstrative
2026 * overhead of registering/unregistering with the SM and tracking of the
2027 * total number of queue pairs attached to the multicast group.
a31ad3b0 2028 */
5ede9289 2029static inline bool rdma_cap_ib_mcast(const struct ib_device *device, u8 port_num)
a31ad3b0
MW
2030{
2031 return rdma_cap_ib_sa(device, port_num);
2032}
2033
30a74ef4
MW
2034/**
2035 * rdma_cap_af_ib - Check if the port of device has the capability
2036 * Native Infiniband Address.
296ec009
MW
2037 * @device: Device to check
2038 * @port_num: Port number to check
30a74ef4 2039 *
296ec009
MW
2040 * InfiniBand addressing uses a port's GUID + Subnet Prefix to make a default
2041 * GID. RoCE uses a different mechanism, but still generates a GID via
2042 * a prescribed mechanism and port specific data.
30a74ef4 2043 *
296ec009
MW
2044 * Return: true if the port uses a GID address to identify devices on the
2045 * network.
30a74ef4 2046 */
5ede9289 2047static inline bool rdma_cap_af_ib(const struct ib_device *device, u8 port_num)
30a74ef4 2048{
f9b22e35 2049 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_AF_IB;
30a74ef4
MW
2050}
2051
227128fc
MW
2052/**
2053 * rdma_cap_eth_ah - Check if the port of device has the capability
296ec009
MW
2054 * Ethernet Address Handle.
2055 * @device: Device to check
2056 * @port_num: Port number to check
227128fc 2057 *
296ec009
MW
2058 * RoCE is InfiniBand over Ethernet, and it uses a well defined technique
2059 * to fabricate GIDs over Ethernet/IP specific addresses native to the
2060 * port. Normally, packet headers are generated by the sending host
2061 * adapter, but when sending connectionless datagrams, we must manually
2062 * inject the proper headers for the fabric we are communicating over.
227128fc 2063 *
296ec009
MW
2064 * Return: true if we are running as a RoCE port and must force the
2065 * addition of a Global Route Header built from our Ethernet Address
2066 * Handle into our header list for connectionless packets.
227128fc 2067 */
5ede9289 2068static inline bool rdma_cap_eth_ah(const struct ib_device *device, u8 port_num)
227128fc 2069{
f9b22e35 2070 return device->port_immutable[port_num].core_cap_flags & RDMA_CORE_CAP_ETH_AH;
227128fc
MW
2071}
2072
337877a4
IW
2073/**
2074 * rdma_max_mad_size - Return the max MAD size required by this RDMA Port.
2075 *
2076 * @device: Device
2077 * @port_num: Port number
2078 *
2079 * This MAD size includes the MAD headers and MAD payload. No other headers
2080 * are included.
2081 *
2082 * Return the max MAD size required by the Port. Will return 0 if the port
2083 * does not support MADs
2084 */
2085static inline size_t rdma_max_mad_size(const struct ib_device *device, u8 port_num)
2086{
2087 return device->port_immutable[port_num].max_mad_size;
2088}
2089
1da177e4
LT
2090int ib_query_gid(struct ib_device *device,
2091 u8 port_num, int index, union ib_gid *gid);
2092
2093int ib_query_pkey(struct ib_device *device,
2094 u8 port_num, u16 index, u16 *pkey);
2095
2096int ib_modify_device(struct ib_device *device,
2097 int device_modify_mask,
2098 struct ib_device_modify *device_modify);
2099
2100int ib_modify_port(struct ib_device *device,
2101 u8 port_num, int port_modify_mask,
2102 struct ib_port_modify *port_modify);
2103
5eb620c8
YE
2104int ib_find_gid(struct ib_device *device, union ib_gid *gid,
2105 u8 *port_num, u16 *index);
2106
2107int ib_find_pkey(struct ib_device *device,
2108 u8 port_num, u16 pkey, u16 *index);
2109
1da177e4
LT
2110/**
2111 * ib_alloc_pd - Allocates an unused protection domain.
2112 * @device: The device on which to allocate the protection domain.
2113 *
2114 * A protection domain object provides an association between QPs, shared
2115 * receive queues, address handles, memory regions, and memory windows.
2116 */
2117struct ib_pd *ib_alloc_pd(struct ib_device *device);
2118
2119/**
2120 * ib_dealloc_pd - Deallocates a protection domain.
2121 * @pd: The protection domain to deallocate.
2122 */
2123int ib_dealloc_pd(struct ib_pd *pd);
2124
2125/**
2126 * ib_create_ah - Creates an address handle for the given address vector.
2127 * @pd: The protection domain associated with the address handle.
2128 * @ah_attr: The attributes of the address vector.
2129 *
2130 * The address handle is used to reference a local or global destination
2131 * in all UD QP post sends.
2132 */
2133struct ib_ah *ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr);
2134
4e00d694
SH
2135/**
2136 * ib_init_ah_from_wc - Initializes address handle attributes from a
2137 * work completion.
2138 * @device: Device on which the received message arrived.
2139 * @port_num: Port on which the received message arrived.
2140 * @wc: Work completion associated with the received message.
2141 * @grh: References the received global route header. This parameter is
2142 * ignored unless the work completion indicates that the GRH is valid.
2143 * @ah_attr: Returned attributes that can be used when creating an address
2144 * handle for replying to the message.
2145 */
73cdaaee
IW
2146int ib_init_ah_from_wc(struct ib_device *device, u8 port_num,
2147 const struct ib_wc *wc, const struct ib_grh *grh,
2148 struct ib_ah_attr *ah_attr);
4e00d694 2149
513789ed
HR
2150/**
2151 * ib_create_ah_from_wc - Creates an address handle associated with the
2152 * sender of the specified work completion.
2153 * @pd: The protection domain associated with the address handle.
2154 * @wc: Work completion information associated with a received message.
2155 * @grh: References the received global route header. This parameter is
2156 * ignored unless the work completion indicates that the GRH is valid.
2157 * @port_num: The outbound port number to associate with the address.
2158 *
2159 * The address handle is used to reference a local or global destination
2160 * in all UD QP post sends.
2161 */
73cdaaee
IW
2162struct ib_ah *ib_create_ah_from_wc(struct ib_pd *pd, const struct ib_wc *wc,
2163 const struct ib_grh *grh, u8 port_num);
513789ed 2164
1da177e4
LT
2165/**
2166 * ib_modify_ah - Modifies the address vector associated with an address
2167 * handle.
2168 * @ah: The address handle to modify.
2169 * @ah_attr: The new address vector attributes to associate with the
2170 * address handle.
2171 */
2172int ib_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
2173
2174/**
2175 * ib_query_ah - Queries the address vector associated with an address
2176 * handle.
2177 * @ah: The address handle to query.
2178 * @ah_attr: The address vector attributes associated with the address
2179 * handle.
2180 */
2181int ib_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr);
2182
2183/**
2184 * ib_destroy_ah - Destroys an address handle.
2185 * @ah: The address handle to destroy.
2186 */
2187int ib_destroy_ah(struct ib_ah *ah);
2188
d41fcc67
RD
2189/**
2190 * ib_create_srq - Creates a SRQ associated with the specified protection
2191 * domain.
2192 * @pd: The protection domain associated with the SRQ.
abb6e9ba
DB
2193 * @srq_init_attr: A list of initial attributes required to create the
2194 * SRQ. If SRQ creation succeeds, then the attributes are updated to
2195 * the actual capabilities of the created SRQ.
d41fcc67
RD
2196 *
2197 * srq_attr->max_wr and srq_attr->max_sge are read the determine the
2198 * requested size of the SRQ, and set to the actual values allocated
2199 * on return. If ib_create_srq() succeeds, then max_wr and max_sge
2200 * will always be at least as large as the requested values.
2201 */
2202struct ib_srq *ib_create_srq(struct ib_pd *pd,
2203 struct ib_srq_init_attr *srq_init_attr);
2204
2205/**
2206 * ib_modify_srq - Modifies the attributes for the specified SRQ.
2207 * @srq: The SRQ to modify.
2208 * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
2209 * the current values of selected SRQ attributes are returned.
2210 * @srq_attr_mask: A bit-mask used to specify which attributes of the SRQ
2211 * are being modified.
2212 *
2213 * The mask may contain IB_SRQ_MAX_WR to resize the SRQ and/or
2214 * IB_SRQ_LIMIT to set the SRQ's limit and request notification when
2215 * the number of receives queued drops below the limit.
2216 */
2217int ib_modify_srq(struct ib_srq *srq,
2218 struct ib_srq_attr *srq_attr,
2219 enum ib_srq_attr_mask srq_attr_mask);
2220
2221/**
2222 * ib_query_srq - Returns the attribute list and current values for the
2223 * specified SRQ.
2224 * @srq: The SRQ to query.
2225 * @srq_attr: The attributes of the specified SRQ.
2226 */
2227int ib_query_srq(struct ib_srq *srq,
2228 struct ib_srq_attr *srq_attr);
2229
2230/**
2231 * ib_destroy_srq - Destroys the specified SRQ.
2232 * @srq: The SRQ to destroy.
2233 */
2234int ib_destroy_srq(struct ib_srq *srq);
2235
2236/**
2237 * ib_post_srq_recv - Posts a list of work requests to the specified SRQ.
2238 * @srq: The SRQ to post the work request on.
2239 * @recv_wr: A list of work requests to post on the receive queue.
2240 * @bad_recv_wr: On an immediate failure, this parameter will reference
2241 * the work request that failed to be posted on the QP.
2242 */
2243static inline int ib_post_srq_recv(struct ib_srq *srq,
2244 struct ib_recv_wr *recv_wr,
2245 struct ib_recv_wr **bad_recv_wr)
2246{
2247 return srq->device->post_srq_recv(srq, recv_wr, bad_recv_wr);
2248}
2249
1da177e4
LT
2250/**
2251 * ib_create_qp - Creates a QP associated with the specified protection
2252 * domain.
2253 * @pd: The protection domain associated with the QP.
abb6e9ba
DB
2254 * @qp_init_attr: A list of initial attributes required to create the
2255 * QP. If QP creation succeeds, then the attributes are updated to
2256 * the actual capabilities of the created QP.
1da177e4
LT
2257 */
2258struct ib_qp *ib_create_qp(struct ib_pd *pd,
2259 struct ib_qp_init_attr *qp_init_attr);
2260
2261/**
2262 * ib_modify_qp - Modifies the attributes for the specified QP and then
2263 * transitions the QP to the given state.
2264 * @qp: The QP to modify.
2265 * @qp_attr: On input, specifies the QP attributes to modify. On output,
2266 * the current values of selected QP attributes are returned.
2267 * @qp_attr_mask: A bit-mask used to specify which attributes of the QP
2268 * are being modified.
2269 */
2270int ib_modify_qp(struct ib_qp *qp,
2271 struct ib_qp_attr *qp_attr,
2272 int qp_attr_mask);
2273
2274/**
2275 * ib_query_qp - Returns the attribute list and current values for the
2276 * specified QP.
2277 * @qp: The QP to query.
2278 * @qp_attr: The attributes of the specified QP.
2279 * @qp_attr_mask: A bit-mask used to select specific attributes to query.
2280 * @qp_init_attr: Additional attributes of the selected QP.
2281 *
2282 * The qp_attr_mask may be used to limit the query to gathering only the
2283 * selected attributes.
2284 */
2285int ib_query_qp(struct ib_qp *qp,
2286 struct ib_qp_attr *qp_attr,
2287 int qp_attr_mask,
2288 struct ib_qp_init_attr *qp_init_attr);
2289
2290/**
2291 * ib_destroy_qp - Destroys the specified QP.
2292 * @qp: The QP to destroy.
2293 */
2294int ib_destroy_qp(struct ib_qp *qp);
2295
d3d72d90 2296/**
0e0ec7e0
SH
2297 * ib_open_qp - Obtain a reference to an existing sharable QP.
2298 * @xrcd - XRC domain
2299 * @qp_open_attr: Attributes identifying the QP to open.
2300 *
2301 * Returns a reference to a sharable QP.
2302 */
2303struct ib_qp *ib_open_qp(struct ib_xrcd *xrcd,
2304 struct ib_qp_open_attr *qp_open_attr);
2305
2306/**
2307 * ib_close_qp - Release an external reference to a QP.
d3d72d90
SH
2308 * @qp: The QP handle to release
2309 *
0e0ec7e0
SH
2310 * The opened QP handle is released by the caller. The underlying
2311 * shared QP is not destroyed until all internal references are released.
d3d72d90 2312 */
0e0ec7e0 2313int ib_close_qp(struct ib_qp *qp);
d3d72d90 2314
1da177e4
LT
2315/**
2316 * ib_post_send - Posts a list of work requests to the send queue of
2317 * the specified QP.
2318 * @qp: The QP to post the work request on.
2319 * @send_wr: A list of work requests to post on the send queue.
2320 * @bad_send_wr: On an immediate failure, this parameter will reference
2321 * the work request that failed to be posted on the QP.
55464d46
BVA
2322 *
2323 * While IBA Vol. 1 section 11.4.1.1 specifies that if an immediate
2324 * error is returned, the QP state shall not be affected,
2325 * ib_post_send() will return an immediate error after queueing any
2326 * earlier work requests in the list.
1da177e4
LT
2327 */
2328static inline int ib_post_send(struct ib_qp *qp,
2329 struct ib_send_wr *send_wr,
2330 struct ib_send_wr **bad_send_wr)
2331{
2332 return qp->device->post_send(qp, send_wr, bad_send_wr);
2333}
2334
2335/**
2336 * ib_post_recv - Posts a list of work requests to the receive queue of
2337 * the specified QP.
2338 * @qp: The QP to post the work request on.
2339 * @recv_wr: A list of work requests to post on the receive queue.
2340 * @bad_recv_wr: On an immediate failure, this parameter will reference
2341 * the work request that failed to be posted on the QP.
2342 */
2343static inline int ib_post_recv(struct ib_qp *qp,
2344 struct ib_recv_wr *recv_wr,
2345 struct ib_recv_wr **bad_recv_wr)
2346{
2347 return qp->device->post_recv(qp, recv_wr, bad_recv_wr);
2348}
2349
2350/**
2351 * ib_create_cq - Creates a CQ on the specified device.
2352 * @device: The device on which to create the CQ.
2353 * @comp_handler: A user-specified callback that is invoked when a
2354 * completion event occurs on the CQ.
2355 * @event_handler: A user-specified callback that is invoked when an
2356 * asynchronous event not associated with a completion occurs on the CQ.
2357 * @cq_context: Context associated with the CQ returned to the user via
2358 * the associated completion and event handlers.
8e37210b 2359 * @cq_attr: The attributes the CQ should be created upon.
1da177e4
LT
2360 *
2361 * Users can examine the cq structure to determine the actual CQ size.
2362 */
2363struct ib_cq *ib_create_cq(struct ib_device *device,
2364 ib_comp_handler comp_handler,
2365 void (*event_handler)(struct ib_event *, void *),
8e37210b
MB
2366 void *cq_context,
2367 const struct ib_cq_init_attr *cq_attr);
1da177e4
LT
2368
2369/**
2370 * ib_resize_cq - Modifies the capacity of the CQ.
2371 * @cq: The CQ to resize.
2372 * @cqe: The minimum size of the CQ.
2373 *
2374 * Users can examine the cq structure to determine the actual CQ size.
2375 */
2376int ib_resize_cq(struct ib_cq *cq, int cqe);
2377
2dd57162
EC
2378/**
2379 * ib_modify_cq - Modifies moderation params of the CQ
2380 * @cq: The CQ to modify.
2381 * @cq_count: number of CQEs that will trigger an event
2382 * @cq_period: max period of time in usec before triggering an event
2383 *
2384 */
2385int ib_modify_cq(struct ib_cq *cq, u16 cq_count, u16 cq_period);
2386
1da177e4
LT
2387/**
2388 * ib_destroy_cq - Destroys the specified CQ.
2389 * @cq: The CQ to destroy.
2390 */
2391int ib_destroy_cq(struct ib_cq *cq);
2392
2393/**
2394 * ib_poll_cq - poll a CQ for completion(s)
2395 * @cq:the CQ being polled
2396 * @num_entries:maximum number of completions to return
2397 * @wc:array of at least @num_entries &struct ib_wc where completions
2398 * will be returned
2399 *
2400 * Poll a CQ for (possibly multiple) completions. If the return value
2401 * is < 0, an error occurred. If the return value is >= 0, it is the
2402 * number of completions returned. If the return value is
2403 * non-negative and < num_entries, then the CQ was emptied.
2404 */
2405static inline int ib_poll_cq(struct ib_cq *cq, int num_entries,
2406 struct ib_wc *wc)
2407{
2408 return cq->device->poll_cq(cq, num_entries, wc);
2409}
2410
2411/**
2412 * ib_peek_cq - Returns the number of unreaped completions currently
2413 * on the specified CQ.
2414 * @cq: The CQ to peek.
2415 * @wc_cnt: A minimum number of unreaped completions to check for.
2416 *
2417 * If the number of unreaped completions is greater than or equal to wc_cnt,
2418 * this function returns wc_cnt, otherwise, it returns the actual number of
2419 * unreaped completions.
2420 */
2421int ib_peek_cq(struct ib_cq *cq, int wc_cnt);
2422
2423/**
2424 * ib_req_notify_cq - Request completion notification on a CQ.
2425 * @cq: The CQ to generate an event for.
ed23a727
RD
2426 * @flags:
2427 * Must contain exactly one of %IB_CQ_SOLICITED or %IB_CQ_NEXT_COMP
2428 * to request an event on the next solicited event or next work
2429 * completion at any type, respectively. %IB_CQ_REPORT_MISSED_EVENTS
2430 * may also be |ed in to request a hint about missed events, as
2431 * described below.
2432 *
2433 * Return Value:
2434 * < 0 means an error occurred while requesting notification
2435 * == 0 means notification was requested successfully, and if
2436 * IB_CQ_REPORT_MISSED_EVENTS was passed in, then no events
2437 * were missed and it is safe to wait for another event. In
2438 * this case is it guaranteed that any work completions added
2439 * to the CQ since the last CQ poll will trigger a completion
2440 * notification event.
2441 * > 0 is only returned if IB_CQ_REPORT_MISSED_EVENTS was passed
2442 * in. It means that the consumer must poll the CQ again to
2443 * make sure it is empty to avoid missing an event because of a
2444 * race between requesting notification and an entry being
2445 * added to the CQ. This return value means it is possible
2446 * (but not guaranteed) that a work completion has been added
2447 * to the CQ since the last poll without triggering a
2448 * completion notification event.
1da177e4
LT
2449 */
2450static inline int ib_req_notify_cq(struct ib_cq *cq,
ed23a727 2451 enum ib_cq_notify_flags flags)
1da177e4 2452{
ed23a727 2453 return cq->device->req_notify_cq(cq, flags);
1da177e4
LT
2454}
2455
2456/**
2457 * ib_req_ncomp_notif - Request completion notification when there are
2458 * at least the specified number of unreaped completions on the CQ.
2459 * @cq: The CQ to generate an event for.
2460 * @wc_cnt: The number of unreaped completions that should be on the
2461 * CQ before an event is generated.
2462 */
2463static inline int ib_req_ncomp_notif(struct ib_cq *cq, int wc_cnt)
2464{
2465 return cq->device->req_ncomp_notif ?
2466 cq->device->req_ncomp_notif(cq, wc_cnt) :
2467 -ENOSYS;
2468}
2469
2470/**
2471 * ib_get_dma_mr - Returns a memory region for system memory that is
2472 * usable for DMA.
2473 * @pd: The protection domain associated with the memory region.
2474 * @mr_access_flags: Specifies the memory access rights.
9b513090
RC
2475 *
2476 * Note that the ib_dma_*() functions defined below must be used
2477 * to create/destroy addresses used with the Lkey or Rkey returned
2478 * by ib_get_dma_mr().
1da177e4
LT
2479 */
2480struct ib_mr *ib_get_dma_mr(struct ib_pd *pd, int mr_access_flags);
2481
9b513090
RC
2482/**
2483 * ib_dma_mapping_error - check a DMA addr for error
2484 * @dev: The device for which the dma_addr was created
2485 * @dma_addr: The DMA address to check
2486 */
2487static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
2488{
d1998ef3
BC
2489 if (dev->dma_ops)
2490 return dev->dma_ops->mapping_error(dev, dma_addr);
8d8bb39b 2491 return dma_mapping_error(dev->dma_device, dma_addr);
9b513090
RC
2492}
2493
2494/**
2495 * ib_dma_map_single - Map a kernel virtual address to DMA address
2496 * @dev: The device for which the dma_addr is to be created
2497 * @cpu_addr: The kernel virtual address
2498 * @size: The size of the region in bytes
2499 * @direction: The direction of the DMA
2500 */
2501static inline u64 ib_dma_map_single(struct ib_device *dev,
2502 void *cpu_addr, size_t size,
2503 enum dma_data_direction direction)
2504{
d1998ef3
BC
2505 if (dev->dma_ops)
2506 return dev->dma_ops->map_single(dev, cpu_addr, size, direction);
2507 return dma_map_single(dev->dma_device, cpu_addr, size, direction);
9b513090
RC
2508}
2509
2510/**
2511 * ib_dma_unmap_single - Destroy a mapping created by ib_dma_map_single()
2512 * @dev: The device for which the DMA address was created
2513 * @addr: The DMA address
2514 * @size: The size of the region in bytes
2515 * @direction: The direction of the DMA
2516 */
2517static inline void ib_dma_unmap_single(struct ib_device *dev,
2518 u64 addr, size_t size,
2519 enum dma_data_direction direction)
2520{
d1998ef3
BC
2521 if (dev->dma_ops)
2522 dev->dma_ops->unmap_single(dev, addr, size, direction);
2523 else
9b513090
RC
2524 dma_unmap_single(dev->dma_device, addr, size, direction);
2525}
2526
cb9fbc5c
AK
2527static inline u64 ib_dma_map_single_attrs(struct ib_device *dev,
2528 void *cpu_addr, size_t size,
2529 enum dma_data_direction direction,
2530 struct dma_attrs *attrs)
2531{
2532 return dma_map_single_attrs(dev->dma_device, cpu_addr, size,
2533 direction, attrs);
2534}
2535
2536static inline void ib_dma_unmap_single_attrs(struct ib_device *dev,
2537 u64 addr, size_t size,
2538 enum dma_data_direction direction,
2539 struct dma_attrs *attrs)
2540{
2541 return dma_unmap_single_attrs(dev->dma_device, addr, size,
2542 direction, attrs);
2543}
2544
9b513090
RC
2545/**
2546 * ib_dma_map_page - Map a physical page to DMA address
2547 * @dev: The device for which the dma_addr is to be created
2548 * @page: The page to be mapped
2549 * @offset: The offset within the page
2550 * @size: The size of the region in bytes
2551 * @direction: The direction of the DMA
2552 */
2553static inline u64 ib_dma_map_page(struct ib_device *dev,
2554 struct page *page,
2555 unsigned long offset,
2556 size_t size,
2557 enum dma_data_direction direction)
2558{
d1998ef3
BC
2559 if (dev->dma_ops)
2560 return dev->dma_ops->map_page(dev, page, offset, size, direction);
2561 return dma_map_page(dev->dma_device, page, offset, size, direction);
9b513090
RC
2562}
2563
2564/**
2565 * ib_dma_unmap_page - Destroy a mapping created by ib_dma_map_page()
2566 * @dev: The device for which the DMA address was created
2567 * @addr: The DMA address
2568 * @size: The size of the region in bytes
2569 * @direction: The direction of the DMA
2570 */
2571static inline void ib_dma_unmap_page(struct ib_device *dev,
2572 u64 addr, size_t size,
2573 enum dma_data_direction direction)
2574{
d1998ef3
BC
2575 if (dev->dma_ops)
2576 dev->dma_ops->unmap_page(dev, addr, size, direction);
2577 else
9b513090
RC
2578 dma_unmap_page(dev->dma_device, addr, size, direction);
2579}
2580
2581/**
2582 * ib_dma_map_sg - Map a scatter/gather list to DMA addresses
2583 * @dev: The device for which the DMA addresses are to be created
2584 * @sg: The array of scatter/gather entries
2585 * @nents: The number of scatter/gather entries
2586 * @direction: The direction of the DMA
2587 */
2588static inline int ib_dma_map_sg(struct ib_device *dev,
2589 struct scatterlist *sg, int nents,
2590 enum dma_data_direction direction)
2591{
d1998ef3
BC
2592 if (dev->dma_ops)
2593 return dev->dma_ops->map_sg(dev, sg, nents, direction);
2594 return dma_map_sg(dev->dma_device, sg, nents, direction);
9b513090
RC
2595}
2596
2597/**
2598 * ib_dma_unmap_sg - Unmap a scatter/gather list of DMA addresses
2599 * @dev: The device for which the DMA addresses were created
2600 * @sg: The array of scatter/gather entries
2601 * @nents: The number of scatter/gather entries
2602 * @direction: The direction of the DMA
2603 */
2604static inline void ib_dma_unmap_sg(struct ib_device *dev,
2605 struct scatterlist *sg, int nents,
2606 enum dma_data_direction direction)
2607{
d1998ef3
BC
2608 if (dev->dma_ops)
2609 dev->dma_ops->unmap_sg(dev, sg, nents, direction);
2610 else
9b513090
RC
2611 dma_unmap_sg(dev->dma_device, sg, nents, direction);
2612}
2613
cb9fbc5c
AK
2614static inline int ib_dma_map_sg_attrs(struct ib_device *dev,
2615 struct scatterlist *sg, int nents,
2616 enum dma_data_direction direction,
2617 struct dma_attrs *attrs)
2618{
2619 return dma_map_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2620}
2621
2622static inline void ib_dma_unmap_sg_attrs(struct ib_device *dev,
2623 struct scatterlist *sg, int nents,
2624 enum dma_data_direction direction,
2625 struct dma_attrs *attrs)
2626{
2627 dma_unmap_sg_attrs(dev->dma_device, sg, nents, direction, attrs);
2628}
9b513090
RC
2629/**
2630 * ib_sg_dma_address - Return the DMA address from a scatter/gather entry
2631 * @dev: The device for which the DMA addresses were created
2632 * @sg: The scatter/gather entry
ea58a595
MM
2633 *
2634 * Note: this function is obsolete. To do: change all occurrences of
2635 * ib_sg_dma_address() into sg_dma_address().
9b513090
RC
2636 */
2637static inline u64 ib_sg_dma_address(struct ib_device *dev,
2638 struct scatterlist *sg)
2639{
d1998ef3 2640 return sg_dma_address(sg);
9b513090
RC
2641}
2642
2643/**
2644 * ib_sg_dma_len - Return the DMA length from a scatter/gather entry
2645 * @dev: The device for which the DMA addresses were created
2646 * @sg: The scatter/gather entry
ea58a595
MM
2647 *
2648 * Note: this function is obsolete. To do: change all occurrences of
2649 * ib_sg_dma_len() into sg_dma_len().
9b513090
RC
2650 */
2651static inline unsigned int ib_sg_dma_len(struct ib_device *dev,
2652 struct scatterlist *sg)
2653{
d1998ef3 2654 return sg_dma_len(sg);
9b513090
RC
2655}
2656
2657/**
2658 * ib_dma_sync_single_for_cpu - Prepare DMA region to be accessed by CPU
2659 * @dev: The device for which the DMA address was created
2660 * @addr: The DMA address
2661 * @size: The size of the region in bytes
2662 * @dir: The direction of the DMA
2663 */
2664static inline void ib_dma_sync_single_for_cpu(struct ib_device *dev,
2665 u64 addr,
2666 size_t size,
2667 enum dma_data_direction dir)
2668{
d1998ef3
BC
2669 if (dev->dma_ops)
2670 dev->dma_ops->sync_single_for_cpu(dev, addr, size, dir);
2671 else
9b513090
RC
2672 dma_sync_single_for_cpu(dev->dma_device, addr, size, dir);
2673}
2674
2675/**
2676 * ib_dma_sync_single_for_device - Prepare DMA region to be accessed by device
2677 * @dev: The device for which the DMA address was created
2678 * @addr: The DMA address
2679 * @size: The size of the region in bytes
2680 * @dir: The direction of the DMA
2681 */
2682static inline void ib_dma_sync_single_for_device(struct ib_device *dev,
2683 u64 addr,
2684 size_t size,
2685 enum dma_data_direction dir)
2686{
d1998ef3
BC
2687 if (dev->dma_ops)
2688 dev->dma_ops->sync_single_for_device(dev, addr, size, dir);
2689 else
9b513090
RC
2690 dma_sync_single_for_device(dev->dma_device, addr, size, dir);
2691}
2692
2693/**
2694 * ib_dma_alloc_coherent - Allocate memory and map it for DMA
2695 * @dev: The device for which the DMA address is requested
2696 * @size: The size of the region to allocate in bytes
2697 * @dma_handle: A pointer for returning the DMA address of the region
2698 * @flag: memory allocator flags
2699 */
2700static inline void *ib_dma_alloc_coherent(struct ib_device *dev,
2701 size_t size,
2702 u64 *dma_handle,
2703 gfp_t flag)
2704{
d1998ef3
BC
2705 if (dev->dma_ops)
2706 return dev->dma_ops->alloc_coherent(dev, size, dma_handle, flag);
c59a3da1
RD
2707 else {
2708 dma_addr_t handle;
2709 void *ret;
2710
2711 ret = dma_alloc_coherent(dev->dma_device, size, &handle, flag);
2712 *dma_handle = handle;
2713 return ret;
2714 }
9b513090
RC
2715}
2716
2717/**
2718 * ib_dma_free_coherent - Free memory allocated by ib_dma_alloc_coherent()
2719 * @dev: The device for which the DMA addresses were allocated
2720 * @size: The size of the region
2721 * @cpu_addr: the address returned by ib_dma_alloc_coherent()
2722 * @dma_handle: the DMA address returned by ib_dma_alloc_coherent()
2723 */
2724static inline void ib_dma_free_coherent(struct ib_device *dev,
2725 size_t size, void *cpu_addr,
2726 u64 dma_handle)
2727{
d1998ef3
BC
2728 if (dev->dma_ops)
2729 dev->dma_ops->free_coherent(dev, size, cpu_addr, dma_handle);
2730 else
9b513090
RC
2731 dma_free_coherent(dev->dma_device, size, cpu_addr, dma_handle);
2732}
2733
1da177e4
LT
2734/**
2735 * ib_reg_phys_mr - Prepares a virtually addressed memory region for use
2736 * by an HCA.
2737 * @pd: The protection domain associated assigned to the registered region.
2738 * @phys_buf_array: Specifies a list of physical buffers to use in the
2739 * memory region.
2740 * @num_phys_buf: Specifies the size of the phys_buf_array.
2741 * @mr_access_flags: Specifies the memory access rights.
2742 * @iova_start: The offset of the region's starting I/O virtual address.
2743 */
2744struct ib_mr *ib_reg_phys_mr(struct ib_pd *pd,
2745 struct ib_phys_buf *phys_buf_array,
2746 int num_phys_buf,
2747 int mr_access_flags,
2748 u64 *iova_start);
2749
2750/**
2751 * ib_rereg_phys_mr - Modifies the attributes of an existing memory region.
2752 * Conceptually, this call performs the functions deregister memory region
2753 * followed by register physical memory region. Where possible,
2754 * resources are reused instead of deallocated and reallocated.
2755 * @mr: The memory region to modify.
2756 * @mr_rereg_mask: A bit-mask used to indicate which of the following
2757 * properties of the memory region are being modified.
2758 * @pd: If %IB_MR_REREG_PD is set in mr_rereg_mask, this field specifies
2759 * the new protection domain to associated with the memory region,
2760 * otherwise, this parameter is ignored.
2761 * @phys_buf_array: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2762 * field specifies a list of physical buffers to use in the new
2763 * translation, otherwise, this parameter is ignored.
2764 * @num_phys_buf: If %IB_MR_REREG_TRANS is set in mr_rereg_mask, this
2765 * field specifies the size of the phys_buf_array, otherwise, this
2766 * parameter is ignored.
2767 * @mr_access_flags: If %IB_MR_REREG_ACCESS is set in mr_rereg_mask, this
2768 * field specifies the new memory access rights, otherwise, this
2769 * parameter is ignored.
2770 * @iova_start: The offset of the region's starting I/O virtual address.
2771 */
2772int ib_rereg_phys_mr(struct ib_mr *mr,
2773 int mr_rereg_mask,
2774 struct ib_pd *pd,
2775 struct ib_phys_buf *phys_buf_array,
2776 int num_phys_buf,
2777 int mr_access_flags,
2778 u64 *iova_start);
2779
2780/**
2781 * ib_query_mr - Retrieves information about a specific memory region.
2782 * @mr: The memory region to retrieve information about.
2783 * @mr_attr: The attributes of the specified memory region.
2784 */
2785int ib_query_mr(struct ib_mr *mr, struct ib_mr_attr *mr_attr);
2786
2787/**
2788 * ib_dereg_mr - Deregisters a memory region and removes it from the
2789 * HCA translation table.
2790 * @mr: The memory region to deregister.
7083e42e
SM
2791 *
2792 * This function can fail, if the memory region has memory windows bound to it.
1da177e4
LT
2793 */
2794int ib_dereg_mr(struct ib_mr *mr);
2795
17cd3a2d
SG
2796
2797/**
2798 * ib_create_mr - Allocates a memory region that may be used for
2799 * signature handover operations.
2800 * @pd: The protection domain associated with the region.
2801 * @mr_init_attr: memory region init attributes.
2802 */
2803struct ib_mr *ib_create_mr(struct ib_pd *pd,
2804 struct ib_mr_init_attr *mr_init_attr);
2805
2806/**
2807 * ib_destroy_mr - Destroys a memory region that was created using
2808 * ib_create_mr and removes it from HW translation tables.
2809 * @mr: The memory region to destroy.
2810 *
2811 * This function can fail, if the memory region has memory windows bound to it.
2812 */
2813int ib_destroy_mr(struct ib_mr *mr);
2814
00f7ec36
SW
2815/**
2816 * ib_alloc_fast_reg_mr - Allocates memory region usable with the
2817 * IB_WR_FAST_REG_MR send work request.
2818 * @pd: The protection domain associated with the region.
2819 * @max_page_list_len: requested max physical buffer list length to be
2820 * used with fast register work requests for this MR.
2821 */
2822struct ib_mr *ib_alloc_fast_reg_mr(struct ib_pd *pd, int max_page_list_len);
2823
2824/**
2825 * ib_alloc_fast_reg_page_list - Allocates a page list array
2826 * @device - ib device pointer.
2827 * @page_list_len - size of the page list array to be allocated.
2828 *
2829 * This allocates and returns a struct ib_fast_reg_page_list * and a
2830 * page_list array that is at least page_list_len in size. The actual
2831 * size is returned in max_page_list_len. The caller is responsible
2832 * for initializing the contents of the page_list array before posting
2833 * a send work request with the IB_WC_FAST_REG_MR opcode.
2834 *
2835 * The page_list array entries must be translated using one of the
2836 * ib_dma_*() functions just like the addresses passed to
2837 * ib_map_phys_fmr(). Once the ib_post_send() is issued, the struct
2838 * ib_fast_reg_page_list must not be modified by the caller until the
2839 * IB_WC_FAST_REG_MR work request completes.
2840 */
2841struct ib_fast_reg_page_list *ib_alloc_fast_reg_page_list(
2842 struct ib_device *device, int page_list_len);
2843
2844/**
2845 * ib_free_fast_reg_page_list - Deallocates a previously allocated
2846 * page list array.
2847 * @page_list - struct ib_fast_reg_page_list pointer to be deallocated.
2848 */
2849void ib_free_fast_reg_page_list(struct ib_fast_reg_page_list *page_list);
2850
2851/**
2852 * ib_update_fast_reg_key - updates the key portion of the fast_reg MR
2853 * R_Key and L_Key.
2854 * @mr - struct ib_mr pointer to be updated.
2855 * @newkey - new key to be used.
2856 */
2857static inline void ib_update_fast_reg_key(struct ib_mr *mr, u8 newkey)
2858{
2859 mr->lkey = (mr->lkey & 0xffffff00) | newkey;
2860 mr->rkey = (mr->rkey & 0xffffff00) | newkey;
2861}
2862
7083e42e
SM
2863/**
2864 * ib_inc_rkey - increments the key portion of the given rkey. Can be used
2865 * for calculating a new rkey for type 2 memory windows.
2866 * @rkey - the rkey to increment.
2867 */
2868static inline u32 ib_inc_rkey(u32 rkey)
2869{
2870 const u32 mask = 0x000000ff;
2871 return ((rkey + 1) & mask) | (rkey & ~mask);
2872}
2873
1da177e4
LT
2874/**
2875 * ib_alloc_mw - Allocates a memory window.
2876 * @pd: The protection domain associated with the memory window.
7083e42e 2877 * @type: The type of the memory window (1 or 2).
1da177e4 2878 */
7083e42e 2879struct ib_mw *ib_alloc_mw(struct ib_pd *pd, enum ib_mw_type type);
1da177e4
LT
2880
2881/**
2882 * ib_bind_mw - Posts a work request to the send queue of the specified
2883 * QP, which binds the memory window to the given address range and
2884 * remote access attributes.
2885 * @qp: QP to post the bind work request on.
2886 * @mw: The memory window to bind.
2887 * @mw_bind: Specifies information about the memory window, including
2888 * its address range, remote access rights, and associated memory region.
7083e42e
SM
2889 *
2890 * If there is no immediate error, the function will update the rkey member
2891 * of the mw parameter to its new value. The bind operation can still fail
2892 * asynchronously.
1da177e4
LT
2893 */
2894static inline int ib_bind_mw(struct ib_qp *qp,
2895 struct ib_mw *mw,
2896 struct ib_mw_bind *mw_bind)
2897{
2898 /* XXX reference counting in corresponding MR? */
2899 return mw->device->bind_mw ?
2900 mw->device->bind_mw(qp, mw, mw_bind) :
2901 -ENOSYS;
2902}
2903
2904/**
2905 * ib_dealloc_mw - Deallocates a memory window.
2906 * @mw: The memory window to deallocate.
2907 */
2908int ib_dealloc_mw(struct ib_mw *mw);
2909
2910/**
2911 * ib_alloc_fmr - Allocates a unmapped fast memory region.
2912 * @pd: The protection domain associated with the unmapped region.
2913 * @mr_access_flags: Specifies the memory access rights.
2914 * @fmr_attr: Attributes of the unmapped region.
2915 *
2916 * A fast memory region must be mapped before it can be used as part of
2917 * a work request.
2918 */
2919struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd,
2920 int mr_access_flags,
2921 struct ib_fmr_attr *fmr_attr);
2922
2923/**
2924 * ib_map_phys_fmr - Maps a list of physical pages to a fast memory region.
2925 * @fmr: The fast memory region to associate with the pages.
2926 * @page_list: An array of physical pages to map to the fast memory region.
2927 * @list_len: The number of pages in page_list.
2928 * @iova: The I/O virtual address to use with the mapped region.
2929 */
2930static inline int ib_map_phys_fmr(struct ib_fmr *fmr,
2931 u64 *page_list, int list_len,
2932 u64 iova)
2933{
2934 return fmr->device->map_phys_fmr(fmr, page_list, list_len, iova);
2935}
2936
2937/**
2938 * ib_unmap_fmr - Removes the mapping from a list of fast memory regions.
2939 * @fmr_list: A linked list of fast memory regions to unmap.
2940 */
2941int ib_unmap_fmr(struct list_head *fmr_list);
2942
2943/**
2944 * ib_dealloc_fmr - Deallocates a fast memory region.
2945 * @fmr: The fast memory region to deallocate.
2946 */
2947int ib_dealloc_fmr(struct ib_fmr *fmr);
2948
2949/**
2950 * ib_attach_mcast - Attaches the specified QP to a multicast group.
2951 * @qp: QP to attach to the multicast group. The QP must be type
2952 * IB_QPT_UD.
2953 * @gid: Multicast group GID.
2954 * @lid: Multicast group LID in host byte order.
2955 *
2956 * In order to send and receive multicast packets, subnet
2957 * administration must have created the multicast group and configured
2958 * the fabric appropriately. The port associated with the specified
2959 * QP must also be a member of the multicast group.
2960 */
2961int ib_attach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2962
2963/**
2964 * ib_detach_mcast - Detaches the specified QP from a multicast group.
2965 * @qp: QP to detach from the multicast group.
2966 * @gid: Multicast group GID.
2967 * @lid: Multicast group LID in host byte order.
2968 */
2969int ib_detach_mcast(struct ib_qp *qp, union ib_gid *gid, u16 lid);
2970
59991f94
SH
2971/**
2972 * ib_alloc_xrcd - Allocates an XRC domain.
2973 * @device: The device on which to allocate the XRC domain.
2974 */
2975struct ib_xrcd *ib_alloc_xrcd(struct ib_device *device);
2976
2977/**
2978 * ib_dealloc_xrcd - Deallocates an XRC domain.
2979 * @xrcd: The XRC domain to deallocate.
2980 */
2981int ib_dealloc_xrcd(struct ib_xrcd *xrcd);
2982
319a441d
HHZ
2983struct ib_flow *ib_create_flow(struct ib_qp *qp,
2984 struct ib_flow_attr *flow_attr, int domain);
2985int ib_destroy_flow(struct ib_flow *flow_id);
2986
1c636f80
EC
2987static inline int ib_check_mr_access(int flags)
2988{
2989 /*
2990 * Local write permission is required if remote write or
2991 * remote atomic permission is also requested.
2992 */
2993 if (flags & (IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_REMOTE_WRITE) &&
2994 !(flags & IB_ACCESS_LOCAL_WRITE))
2995 return -EINVAL;
2996
2997 return 0;
2998}
2999
1b01d335
SG
3000/**
3001 * ib_check_mr_status: lightweight check of MR status.
3002 * This routine may provide status checks on a selected
3003 * ib_mr. first use is for signature status check.
3004 *
3005 * @mr: A memory region.
3006 * @check_mask: Bitmask of which checks to perform from
3007 * ib_mr_status_check enumeration.
3008 * @mr_status: The container of relevant status checks.
3009 * failed checks will be indicated in the status bitmask
3010 * and the relevant info shall be in the error item.
3011 */
3012int ib_check_mr_status(struct ib_mr *mr, u32 check_mask,
3013 struct ib_mr_status *mr_status);
3014
1da177e4 3015#endif /* IB_VERBS_H */
This page took 0.849664 seconds and 5 git commands to generate.