2 * Copyright (c) 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved.
4 * Copyright (c) 2005 PathScale, Inc. All rights reserved.
5 * Copyright (c) 2006 Mellanox Technologies. All rights reserved.
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35 * $Id: ib_user_verbs.h 4019 2005-11-11 00:33:09Z sean.hefty $
38 #ifndef IB_USER_VERBS_H
39 #define IB_USER_VERBS_H
41 #include <linux/types.h>
44 * Increment this value if any changes that break userspace ABI
45 * compatibility are made.
47 #define IB_USER_VERBS_ABI_VERSION 6
50 IB_USER_VERBS_CMD_GET_CONTEXT
,
51 IB_USER_VERBS_CMD_QUERY_DEVICE
,
52 IB_USER_VERBS_CMD_QUERY_PORT
,
53 IB_USER_VERBS_CMD_ALLOC_PD
,
54 IB_USER_VERBS_CMD_DEALLOC_PD
,
55 IB_USER_VERBS_CMD_CREATE_AH
,
56 IB_USER_VERBS_CMD_MODIFY_AH
,
57 IB_USER_VERBS_CMD_QUERY_AH
,
58 IB_USER_VERBS_CMD_DESTROY_AH
,
59 IB_USER_VERBS_CMD_REG_MR
,
60 IB_USER_VERBS_CMD_REG_SMR
,
61 IB_USER_VERBS_CMD_REREG_MR
,
62 IB_USER_VERBS_CMD_QUERY_MR
,
63 IB_USER_VERBS_CMD_DEREG_MR
,
64 IB_USER_VERBS_CMD_ALLOC_MW
,
65 IB_USER_VERBS_CMD_BIND_MW
,
66 IB_USER_VERBS_CMD_DEALLOC_MW
,
67 IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL
,
68 IB_USER_VERBS_CMD_CREATE_CQ
,
69 IB_USER_VERBS_CMD_RESIZE_CQ
,
70 IB_USER_VERBS_CMD_DESTROY_CQ
,
71 IB_USER_VERBS_CMD_POLL_CQ
,
72 IB_USER_VERBS_CMD_PEEK_CQ
,
73 IB_USER_VERBS_CMD_REQ_NOTIFY_CQ
,
74 IB_USER_VERBS_CMD_CREATE_QP
,
75 IB_USER_VERBS_CMD_QUERY_QP
,
76 IB_USER_VERBS_CMD_MODIFY_QP
,
77 IB_USER_VERBS_CMD_DESTROY_QP
,
78 IB_USER_VERBS_CMD_POST_SEND
,
79 IB_USER_VERBS_CMD_POST_RECV
,
80 IB_USER_VERBS_CMD_ATTACH_MCAST
,
81 IB_USER_VERBS_CMD_DETACH_MCAST
,
82 IB_USER_VERBS_CMD_CREATE_SRQ
,
83 IB_USER_VERBS_CMD_MODIFY_SRQ
,
84 IB_USER_VERBS_CMD_QUERY_SRQ
,
85 IB_USER_VERBS_CMD_DESTROY_SRQ
,
86 IB_USER_VERBS_CMD_POST_SRQ_RECV
90 * Make sure that all structs defined in this file remain laid out so
91 * that they pack the same way on 32-bit and 64-bit architectures (to
92 * avoid incompatibility between 32-bit userspace and 64-bit kernels).
94 * - Do not use pointer types -- pass pointers in __u64 instead.
95 * - Make sure that any structure larger than 4 bytes is padded to a
96 * multiple of 8 bytes. Otherwise the structure size will be
97 * different between 32-bit and 64-bit architectures.
100 struct ib_uverbs_async_event_desc
{
102 __u32 event_type
; /* enum ib_event_type */
106 struct ib_uverbs_comp_event_desc
{
111 * All commands from userspace should start with a __u32 command field
112 * followed by __u16 in_words and out_words fields (which give the
113 * length of the command block and response buffer if any in 32-bit
114 * words). The kernel driver will read these fields first and read
115 * the rest of the command struct based on these value.
118 struct ib_uverbs_cmd_hdr
{
124 struct ib_uverbs_get_context
{
126 __u64 driver_data
[0];
129 struct ib_uverbs_get_context_resp
{
131 __u32 num_comp_vectors
;
134 struct ib_uverbs_query_device
{
136 __u64 driver_data
[0];
139 struct ib_uverbs_query_device_resp
{
142 __be64 sys_image_guid
;
146 __u32 vendor_part_id
;
150 __u32 device_cap_flags
;
157 __u32 max_qp_rd_atom
;
158 __u32 max_ee_rd_atom
;
159 __u32 max_res_rd_atom
;
160 __u32 max_qp_init_rd_atom
;
161 __u32 max_ee_init_rd_atom
;
166 __u32 max_raw_ipv6_qp
;
167 __u32 max_raw_ethy_qp
;
169 __u32 max_mcast_qp_attach
;
170 __u32 max_total_mcast_qp_attach
;
173 __u32 max_map_per_fmr
;
178 __u8 local_ca_ack_delay
;
183 struct ib_uverbs_query_port
{
187 __u64 driver_data
[0];
190 struct ib_uverbs_query_port_resp
{
191 __u32 port_cap_flags
;
194 __u32 qkey_viol_cntr
;
206 __u8 init_type_reply
;
213 struct ib_uverbs_alloc_pd
{
215 __u64 driver_data
[0];
218 struct ib_uverbs_alloc_pd_resp
{
222 struct ib_uverbs_dealloc_pd
{
226 struct ib_uverbs_reg_mr
{
233 __u64 driver_data
[0];
236 struct ib_uverbs_reg_mr_resp
{
242 struct ib_uverbs_dereg_mr
{
246 struct ib_uverbs_create_comp_channel
{
250 struct ib_uverbs_create_comp_channel_resp
{
254 struct ib_uverbs_create_cq
{
261 __u64 driver_data
[0];
264 struct ib_uverbs_create_cq_resp
{
269 struct ib_uverbs_resize_cq
{
273 __u64 driver_data
[0];
276 struct ib_uverbs_resize_cq_resp
{
280 struct ib_uverbs_poll_cq
{
286 struct ib_uverbs_wc
{
304 struct ib_uverbs_poll_cq_resp
{
307 struct ib_uverbs_wc wc
[0];
310 struct ib_uverbs_req_notify_cq
{
312 __u32 solicited_only
;
315 struct ib_uverbs_destroy_cq
{
321 struct ib_uverbs_destroy_cq_resp
{
322 __u32 comp_events_reported
;
323 __u32 async_events_reported
;
326 struct ib_uverbs_global_route
{
335 struct ib_uverbs_ah_attr
{
336 struct ib_uverbs_global_route grh
;
346 struct ib_uverbs_qp_attr
{
351 __u32 path_mig_state
;
356 __u32 qp_access_flags
;
358 struct ib_uverbs_ah_attr ah_attr
;
359 struct ib_uverbs_ah_attr alt_ah_attr
;
366 __u32 max_inline_data
;
369 __u16 alt_pkey_index
;
370 __u8 en_sqd_async_notify
;
373 __u8 max_dest_rd_atomic
;
384 struct ib_uverbs_create_qp
{
388 __u32 send_cq_handle
;
389 __u32 recv_cq_handle
;
395 __u32 max_inline_data
;
400 __u64 driver_data
[0];
403 struct ib_uverbs_create_qp_resp
{
410 __u32 max_inline_data
;
415 * This struct needs to remain a multiple of 8 bytes to keep the
416 * alignment of the modify QP parameters.
418 struct ib_uverbs_qp_dest
{
433 struct ib_uverbs_query_qp
{
437 __u64 driver_data
[0];
440 struct ib_uverbs_query_qp_resp
{
441 struct ib_uverbs_qp_dest dest
;
442 struct ib_uverbs_qp_dest alt_dest
;
447 __u32 max_inline_data
;
452 __u32 qp_access_flags
;
454 __u16 alt_pkey_index
;
459 __u8 en_sqd_async_notify
;
461 __u8 max_dest_rd_atomic
;
471 __u64 driver_data
[0];
474 struct ib_uverbs_modify_qp
{
475 struct ib_uverbs_qp_dest dest
;
476 struct ib_uverbs_qp_dest alt_dest
;
483 __u32 qp_access_flags
;
485 __u16 alt_pkey_index
;
490 __u8 en_sqd_async_notify
;
492 __u8 max_dest_rd_atomic
;
501 __u64 driver_data
[0];
504 struct ib_uverbs_modify_qp_resp
{
507 struct ib_uverbs_destroy_qp
{
513 struct ib_uverbs_destroy_qp_resp
{
514 __u32 events_reported
;
518 * The ib_uverbs_sge structure isn't used anywhere, since we assume
519 * the ib_sge structure is packed the same way on 32-bit and 64-bit
520 * architectures in both kernel and user space. It's just here to
523 struct ib_uverbs_sge
{
529 struct ib_uverbs_send_wr
{
557 struct ib_uverbs_post_send
{
563 struct ib_uverbs_send_wr send_wr
[0];
566 struct ib_uverbs_post_send_resp
{
570 struct ib_uverbs_recv_wr
{
576 struct ib_uverbs_post_recv
{
582 struct ib_uverbs_recv_wr recv_wr
[0];
585 struct ib_uverbs_post_recv_resp
{
589 struct ib_uverbs_post_srq_recv
{
595 struct ib_uverbs_recv_wr recv
[0];
598 struct ib_uverbs_post_srq_recv_resp
{
602 struct ib_uverbs_create_ah
{
607 struct ib_uverbs_ah_attr attr
;
610 struct ib_uverbs_create_ah_resp
{
614 struct ib_uverbs_destroy_ah
{
618 struct ib_uverbs_attach_mcast
{
623 __u64 driver_data
[0];
626 struct ib_uverbs_detach_mcast
{
631 __u64 driver_data
[0];
634 struct ib_uverbs_create_srq
{
641 __u64 driver_data
[0];
644 struct ib_uverbs_create_srq_resp
{
651 struct ib_uverbs_modify_srq
{
656 __u64 driver_data
[0];
659 struct ib_uverbs_query_srq
{
663 __u64 driver_data
[0];
666 struct ib_uverbs_query_srq_resp
{
673 struct ib_uverbs_destroy_srq
{
679 struct ib_uverbs_destroy_srq_resp
{
680 __u32 events_reported
;
683 #endif /* IB_USER_VERBS_H */