2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 #include <linux/types.h>
38 #include <linux/ioctl.h>
41 * Increment this value if any changes that break userspace ABI
42 * compatibility are made.
44 #define IB_USER_MAD_ABI_VERSION 5
47 * Make sure that all structs defined in this file remain laid out so
48 * that they pack the same way on 32-bit and 64-bit architectures (to
49 * avoid incompatibility between 32-bit userspace and 64-bit kernels).
53 * ib_user_mad_hdr_old - Old version of MAD packet header without pkey_index
54 * @id - ID of agent MAD received with/to be sent with
55 * @status - 0 on successful receive, ETIMEDOUT if no response
56 * received (transaction ID in data[] will be set to TID of original
57 * request) (ignored on send)
58 * @timeout_ms - Milliseconds to wait for response (unset on receive)
59 * @retries - Number of automatic retries to attempt
60 * @qpn - Remote QP number received from/to be sent to
61 * @qkey - Remote Q_Key to be sent with (unset on receive)
62 * @lid - Remote lid received from/to be sent to
63 * @sl - Service level received with/to be sent with
64 * @path_bits - Local path bits received with/to be sent with
65 * @grh_present - If set, GRH was received/should be sent
66 * @gid_index - Local GID index to send with (unset on receive)
67 * @hop_limit - Hop limit in GRH
68 * @traffic_class - Traffic class in GRH
69 * @gid - Remote GID in GRH
70 * @flow_label - Flow label in GRH
72 struct ib_user_mad_hdr_old
{
92 * ib_user_mad_hdr - MAD packet header
93 * This layout allows specifying/receiving the P_Key index. To use
94 * this capability, an application must call the
95 * IB_USER_MAD_ENABLE_PKEY ioctl on the user MAD file handle before
96 * any other actions with the file handle.
97 * @id - ID of agent MAD received with/to be sent with
98 * @status - 0 on successful receive, ETIMEDOUT if no response
99 * received (transaction ID in data[] will be set to TID of original
100 * request) (ignored on send)
101 * @timeout_ms - Milliseconds to wait for response (unset on receive)
102 * @retries - Number of automatic retries to attempt
103 * @qpn - Remote QP number received from/to be sent to
104 * @qkey - Remote Q_Key to be sent with (unset on receive)
105 * @lid - Remote lid received from/to be sent to
106 * @sl - Service level received with/to be sent with
107 * @path_bits - Local path bits received with/to be sent with
108 * @grh_present - If set, GRH was received/should be sent
109 * @gid_index - Local GID index to send with (unset on receive)
110 * @hop_limit - Hop limit in GRH
111 * @traffic_class - Traffic class in GRH
112 * @gid - Remote GID in GRH
113 * @flow_label - Flow label in GRH
114 * @pkey_index - P_Key index
116 struct ib_user_mad_hdr
{
138 * ib_user_mad - MAD packet
139 * @hdr - MAD packet header
140 * @data - Contents of MAD
144 struct ib_user_mad_hdr hdr
;
149 * Earlier versions of this interface definition declared the
150 * method_mask[] member as an array of __u32 but treated it as a
151 * bitmap made up of longs in the kernel. This ambiguity meant that
152 * 32-bit big-endian applications that can run on both 32-bit and
153 * 64-bit kernels had no consistent ABI to rely on, and 64-bit
154 * big-endian applications that treated method_mask as being made up
155 * of 32-bit words would have their bitmap misinterpreted.
157 * To clear up this confusion, we change the declaration of
158 * method_mask[] to use unsigned long and handle the conversion from
159 * 32-bit userspace to 64-bit kernel for big-endian systems in the
160 * compat_ioctl method. Unfortunately, to keep the structure layout
161 * the same, we need the method_mask[] array to be aligned only to 4
162 * bytes even when long is 64 bits, which forces us into this ugly
165 typedef unsigned long __attribute__((aligned(4))) packed_ulong
;
166 #define IB_USER_MAD_LONGS_PER_METHOD_MASK (128 / (8 * sizeof (long)))
169 * ib_user_mad_reg_req - MAD registration request
170 * @id - Set by the kernel; used to identify agent in future requests.
171 * @qpn - Queue pair number; must be 0 or 1.
172 * @method_mask - The caller will receive unsolicited MADs for any method
173 * where @method_mask = 1.
174 * @mgmt_class - Indicates which management class of MADs should be receive
175 * by the caller. This field is only required if the user wishes to
176 * receive unsolicited MADs, otherwise it should be 0.
177 * @mgmt_class_version - Indicates which version of MADs for the given
178 * management class to receive.
179 * @oui: Indicates IEEE OUI when mgmt_class is a vendor class
180 * in the range from 0x30 to 0x4f. Otherwise not used.
181 * @rmpp_version: If set, indicates the RMPP version used.
184 struct ib_user_mad_reg_req
{
186 packed_ulong method_mask
[IB_USER_MAD_LONGS_PER_METHOD_MASK
];
189 __u8 mgmt_class_version
;
194 #define IB_IOCTL_MAGIC 0x1b
196 #define IB_USER_MAD_REGISTER_AGENT _IOWR(IB_IOCTL_MAGIC, 1, \
197 struct ib_user_mad_reg_req)
199 #define IB_USER_MAD_UNREGISTER_AGENT _IOW(IB_IOCTL_MAGIC, 2, __u32)
201 #define IB_USER_MAD_ENABLE_PKEY _IO(IB_IOCTL_MAGIC, 3)
203 #endif /* IB_USER_MAD_H */