]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/rdma/ib_mad.h
IB/core: Add OPA MAD core capability flag
[mirror_ubuntu-bionic-kernel.git] / include / rdma / ib_mad.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.
618a3c03 6 * Copyright (c) 2004-2006 Voltaire Corporation. All rights reserved.
1da177e4
LT
7 *
8 * This software is available to you under a choice of one of two
9 * licenses. You may choose to be licensed under the terms of the GNU
10 * General Public License (GPL) Version 2, available from the file
11 * COPYING in the main directory of this source tree, or the
12 * OpenIB.org BSD license below:
13 *
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
16 * conditions are met:
17 *
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer.
21 *
22 * - Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials
25 * provided with the distribution.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 * SOFTWARE.
1da177e4
LT
35 */
36
4deccd6d 37#if !defined(IB_MAD_H)
1da177e4
LT
38#define IB_MAD_H
39
e8b398de
DB
40#include <linux/list.h>
41
a4d61e84 42#include <rdma/ib_verbs.h>
1471cb6c 43#include <uapi/rdma/ib_user_mad.h>
1da177e4
LT
44
45/* Management base version */
46#define IB_MGMT_BASE_VERSION 1
47
48/* Management classes */
49#define IB_MGMT_CLASS_SUBN_LID_ROUTED 0x01
50#define IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE 0x81
51#define IB_MGMT_CLASS_SUBN_ADM 0x03
52#define IB_MGMT_CLASS_PERF_MGMT 0x04
53#define IB_MGMT_CLASS_BM 0x05
54#define IB_MGMT_CLASS_DEVICE_MGMT 0x06
55#define IB_MGMT_CLASS_CM 0x07
56#define IB_MGMT_CLASS_SNMP 0x08
618a3c03
HR
57#define IB_MGMT_CLASS_DEVICE_ADM 0x10
58#define IB_MGMT_CLASS_BOOT_MGMT 0x11
59#define IB_MGMT_CLASS_BIS 0x12
60#define IB_MGMT_CLASS_CONG_MGMT 0x21
1da177e4
LT
61#define IB_MGMT_CLASS_VENDOR_RANGE2_START 0x30
62#define IB_MGMT_CLASS_VENDOR_RANGE2_END 0x4F
63
d2082ee5
HR
64#define IB_OPENIB_OUI (0x001405)
65
1da177e4
LT
66/* Management methods */
67#define IB_MGMT_METHOD_GET 0x01
68#define IB_MGMT_METHOD_SET 0x02
69#define IB_MGMT_METHOD_GET_RESP 0x81
70#define IB_MGMT_METHOD_SEND 0x03
71#define IB_MGMT_METHOD_TRAP 0x05
72#define IB_MGMT_METHOD_REPORT 0x06
73#define IB_MGMT_METHOD_REPORT_RESP 0x86
74#define IB_MGMT_METHOD_TRAP_REPRESS 0x07
75
76#define IB_MGMT_METHOD_RESP 0x80
2527e681 77#define IB_BM_ATTR_MOD_RESP cpu_to_be32(1)
1da177e4
LT
78
79#define IB_MGMT_MAX_METHODS 128
80
d144b650
ST
81/* MAD Status field bit masks */
82#define IB_MGMT_MAD_STATUS_SUCCESS 0x0000
83#define IB_MGMT_MAD_STATUS_BUSY 0x0001
84#define IB_MGMT_MAD_STATUS_REDIRECT_REQD 0x0002
85#define IB_MGMT_MAD_STATUS_BAD_VERSION 0x0004
86#define IB_MGMT_MAD_STATUS_UNSUPPORTED_METHOD 0x0008
87#define IB_MGMT_MAD_STATUS_UNSUPPORTED_METHOD_ATTRIB 0x000c
88#define IB_MGMT_MAD_STATUS_INVALID_ATTRIB_VALUE 0x001c
89
d2082ee5
HR
90/* RMPP information */
91#define IB_MGMT_RMPP_VERSION 1
92
93#define IB_MGMT_RMPP_TYPE_DATA 1
94#define IB_MGMT_RMPP_TYPE_ACK 2
95#define IB_MGMT_RMPP_TYPE_STOP 3
96#define IB_MGMT_RMPP_TYPE_ABORT 4
97
98#define IB_MGMT_RMPP_FLAG_ACTIVE 1
99#define IB_MGMT_RMPP_FLAG_FIRST (1<<1)
100#define IB_MGMT_RMPP_FLAG_LAST (1<<2)
101
102#define IB_MGMT_RMPP_NO_RESPTIME 0x1F
103
104#define IB_MGMT_RMPP_STATUS_SUCCESS 0
105#define IB_MGMT_RMPP_STATUS_RESX 1
fe9e08e1 106#define IB_MGMT_RMPP_STATUS_ABORT_MIN 118
d2082ee5
HR
107#define IB_MGMT_RMPP_STATUS_T2L 118
108#define IB_MGMT_RMPP_STATUS_BAD_LEN 119
109#define IB_MGMT_RMPP_STATUS_BAD_SEG 120
110#define IB_MGMT_RMPP_STATUS_BADT 121
111#define IB_MGMT_RMPP_STATUS_W2S 122
112#define IB_MGMT_RMPP_STATUS_S2B 123
113#define IB_MGMT_RMPP_STATUS_BAD_STATUS 124
114#define IB_MGMT_RMPP_STATUS_UNV 125
115#define IB_MGMT_RMPP_STATUS_TMR 126
116#define IB_MGMT_RMPP_STATUS_UNSPEC 127
fe9e08e1 117#define IB_MGMT_RMPP_STATUS_ABORT_MAX 127
d2082ee5 118
1da177e4 119#define IB_QP0 0
9c3da099 120#define IB_QP1 cpu_to_be32(1)
1da177e4 121#define IB_QP1_QKEY 0x80010000
824c8ae7 122#define IB_QP_SET_QKEY 0x80000000
1da177e4 123
2aec5c60
SH
124#define IB_DEFAULT_PKEY_PARTIAL 0x7FFF
125#define IB_DEFAULT_PKEY_FULL 0xFFFF
126
972d512a 127enum {
34816ad9 128 IB_MGMT_MAD_HDR = 24,
972d512a 129 IB_MGMT_MAD_DATA = 232,
34816ad9 130 IB_MGMT_RMPP_HDR = 36,
972d512a 131 IB_MGMT_RMPP_DATA = 220,
34816ad9 132 IB_MGMT_VENDOR_HDR = 40,
972d512a 133 IB_MGMT_VENDOR_DATA = 216,
34816ad9
SH
134 IB_MGMT_SA_HDR = 56,
135 IB_MGMT_SA_DATA = 200,
618a3c03
HR
136 IB_MGMT_DEVICE_HDR = 64,
137 IB_MGMT_DEVICE_DATA = 192,
337877a4 138 IB_MGMT_MAD_SIZE = IB_MGMT_MAD_HDR + IB_MGMT_MAD_DATA,
972d512a
SH
139};
140
1da177e4
LT
141struct ib_mad_hdr {
142 u8 base_version;
143 u8 mgmt_class;
144 u8 class_version;
145 u8 method;
97f52eb4
SH
146 __be16 status;
147 __be16 class_specific;
148 __be64 tid;
149 __be16 attr_id;
150 __be16 resv;
151 __be32 attr_mod;
d2082ee5 152};
1da177e4
LT
153
154struct ib_rmpp_hdr {
155 u8 rmpp_version;
156 u8 rmpp_type;
157 u8 rmpp_rtime_flags;
158 u8 rmpp_status;
97f52eb4
SH
159 __be32 seg_num;
160 __be32 paylen_newwin;
d2082ee5
HR
161};
162
163typedef u64 __bitwise ib_sa_comp_mask;
164
02daaf27 165#define IB_SA_COMP_MASK(n) ((__force ib_sa_comp_mask) cpu_to_be64(1ull << (n)))
d2082ee5
HR
166
167/*
168 * ib_sa_hdr and ib_sa_mad structures must be packed because they have
169 * 64-bit fields that are only 32-bit aligned. 64-bit architectures will
170 * lay them out wrong otherwise. (And unfortunately they are sent on
171 * the wire so we can't change the layout)
172 */
173struct ib_sa_hdr {
97f52eb4
SH
174 __be64 sm_key;
175 __be16 attr_offset;
176 __be16 reserved;
d2082ee5 177 ib_sa_comp_mask comp_mask;
1da177e4
LT
178} __attribute__ ((packed));
179
180struct ib_mad {
181 struct ib_mad_hdr mad_hdr;
972d512a 182 u8 data[IB_MGMT_MAD_DATA];
d2082ee5 183};
1da177e4
LT
184
185struct ib_rmpp_mad {
186 struct ib_mad_hdr mad_hdr;
187 struct ib_rmpp_hdr rmpp_hdr;
972d512a 188 u8 data[IB_MGMT_RMPP_DATA];
d2082ee5
HR
189};
190
191struct ib_sa_mad {
192 struct ib_mad_hdr mad_hdr;
193 struct ib_rmpp_hdr rmpp_hdr;
194 struct ib_sa_hdr sa_hdr;
972d512a 195 u8 data[IB_MGMT_SA_DATA];
1da177e4
LT
196} __attribute__ ((packed));
197
198struct ib_vendor_mad {
199 struct ib_mad_hdr mad_hdr;
200 struct ib_rmpp_hdr rmpp_hdr;
201 u8 reserved;
202 u8 oui[3];
972d512a 203 u8 data[IB_MGMT_VENDOR_DATA];
d2082ee5 204};
1da177e4 205
4deccd6d 206struct ib_class_port_info {
2e9f7cb7
RD
207 u8 base_version;
208 u8 class_version;
209 __be16 capability_mask;
210 u8 reserved[3];
211 u8 resp_time_value;
212 u8 redirect_gid[16];
213 __be32 redirect_tcslfl;
214 __be16 redirect_lid;
215 __be16 redirect_pkey;
216 __be32 redirect_qp;
217 __be32 redirect_qkey;
218 u8 trap_gid[16];
219 __be32 trap_tcslfl;
220 __be16 trap_lid;
221 __be16 trap_pkey;
222 __be32 trap_hlqp;
223 __be32 trap_qkey;
224};
225
824c8ae7
HR
226/**
227 * ib_mad_send_buf - MAD data buffer and work request for sends.
34816ad9 228 * @next: A pointer used to chain together MADs for posting.
f36e1793
JM
229 * @mad: References an allocated MAD data buffer for MADs that do not have
230 * RMPP active. For MADs using RMPP, references the common and management
231 * class specific headers.
824c8ae7 232 * @mad_agent: MAD agent that allocated the buffer.
34816ad9 233 * @ah: The address handle to use when sending the MAD.
824c8ae7 234 * @context: User-controlled context fields.
f36e1793
JM
235 * @hdr_len: Indicates the size of the data header of the MAD. This length
236 * includes the common MAD, RMPP, and class specific headers.
237 * @data_len: Indicates the total size of user-transferred data.
238 * @seg_count: The number of RMPP segments allocated for this send.
239 * @seg_size: Size of each RMPP segment.
34816ad9 240 * @timeout_ms: Time to wait for a response.
4fc8cd49
SH
241 * @retries: Number of times to retry a request for a response. For MADs
242 * using RMPP, this applies per window. On completion, returns the number
243 * of retries needed to complete the transfer.
824c8ae7
HR
244 *
245 * Users are responsible for initializing the MAD buffer itself, with the
f36e1793
JM
246 * exception of any RMPP header. Additional segment buffer space allocated
247 * beyond data_len is padding.
824c8ae7
HR
248 */
249struct ib_mad_send_buf {
34816ad9
SH
250 struct ib_mad_send_buf *next;
251 void *mad;
824c8ae7 252 struct ib_mad_agent *mad_agent;
34816ad9 253 struct ib_ah *ah;
824c8ae7 254 void *context[2];
f36e1793
JM
255 int hdr_len;
256 int data_len;
257 int seg_count;
258 int seg_size;
34816ad9
SH
259 int timeout_ms;
260 int retries;
824c8ae7
HR
261};
262
2527e681
SH
263/**
264 * ib_response_mad - Returns if the specified MAD has been generated in
265 * response to a sent request or trap.
266 */
96909308 267int ib_response_mad(const struct ib_mad_hdr *hdr);
2527e681 268
d2082ee5
HR
269/**
270 * ib_get_rmpp_resptime - Returns the RMPP response time.
271 * @rmpp_hdr: An RMPP header.
272 */
273static inline u8 ib_get_rmpp_resptime(struct ib_rmpp_hdr *rmpp_hdr)
274{
275 return rmpp_hdr->rmpp_rtime_flags >> 3;
276}
277
278/**
279 * ib_get_rmpp_flags - Returns the RMPP flags.
280 * @rmpp_hdr: An RMPP header.
281 */
282static inline u8 ib_get_rmpp_flags(struct ib_rmpp_hdr *rmpp_hdr)
283{
284 return rmpp_hdr->rmpp_rtime_flags & 0x7;
285}
286
287/**
288 * ib_set_rmpp_resptime - Sets the response time in an RMPP header.
289 * @rmpp_hdr: An RMPP header.
290 * @rtime: The response time to set.
291 */
292static inline void ib_set_rmpp_resptime(struct ib_rmpp_hdr *rmpp_hdr, u8 rtime)
293{
294 rmpp_hdr->rmpp_rtime_flags = ib_get_rmpp_flags(rmpp_hdr) | (rtime << 3);
295}
296
297/**
298 * ib_set_rmpp_flags - Sets the flags in an RMPP header.
299 * @rmpp_hdr: An RMPP header.
300 * @flags: The flags to set.
301 */
302static inline void ib_set_rmpp_flags(struct ib_rmpp_hdr *rmpp_hdr, u8 flags)
303{
7020cb0f 304 rmpp_hdr->rmpp_rtime_flags = (rmpp_hdr->rmpp_rtime_flags & 0xF8) |
d2082ee5
HR
305 (flags & 0x7);
306}
307
1da177e4
LT
308struct ib_mad_agent;
309struct ib_mad_send_wc;
310struct ib_mad_recv_wc;
311
312/**
313 * ib_mad_send_handler - callback handler for a sent MAD.
314 * @mad_agent: MAD agent that sent the MAD.
315 * @mad_send_wc: Send work completion information on the sent MAD.
316 */
317typedef void (*ib_mad_send_handler)(struct ib_mad_agent *mad_agent,
318 struct ib_mad_send_wc *mad_send_wc);
319
320/**
321 * ib_mad_snoop_handler - Callback handler for snooping sent MADs.
322 * @mad_agent: MAD agent that snooped the MAD.
323 * @send_wr: Work request information on the sent MAD.
324 * @mad_send_wc: Work completion information on the sent MAD. Valid
325 * only for snooping that occurs on a send completion.
326 *
327 * Clients snooping MADs should not modify data referenced by the @send_wr
328 * or @mad_send_wc.
329 */
330typedef void (*ib_mad_snoop_handler)(struct ib_mad_agent *mad_agent,
34816ad9 331 struct ib_mad_send_buf *send_buf,
1da177e4
LT
332 struct ib_mad_send_wc *mad_send_wc);
333
334/**
335 * ib_mad_recv_handler - callback handler for a received MAD.
336 * @mad_agent: MAD agent requesting the received MAD.
337 * @mad_recv_wc: Received work completion information on the received MAD.
338 *
339 * MADs received in response to a send request operation will be handed to
f36e1793 340 * the user before the send operation completes. All data buffers given
1da177e4
LT
341 * to registered agents through this routine are owned by the receiving
342 * client, except for snooping agents. Clients snooping MADs should not
343 * modify the data referenced by @mad_recv_wc.
344 */
345typedef void (*ib_mad_recv_handler)(struct ib_mad_agent *mad_agent,
346 struct ib_mad_recv_wc *mad_recv_wc);
347
348/**
349 * ib_mad_agent - Used to track MAD registration with the access layer.
350 * @device: Reference to device registration is on.
351 * @qp: Reference to QP used for sending and receiving MADs.
d2082ee5 352 * @mr: Memory region for system memory usable for DMA.
1da177e4
LT
353 * @recv_handler: Callback handler for a received MAD.
354 * @send_handler: Callback handler for a sent MAD.
355 * @snoop_handler: Callback handler for snooped sent MADs.
356 * @context: User-specified context associated with this registration.
357 * @hi_tid: Access layer assigned transaction ID for this client.
358 * Unsolicited MADs sent by this client will have the upper 32-bits
359 * of their TID set to this value.
0f29b46d 360 * @flags: registration flags
1da177e4 361 * @port_num: Port number on which QP is registered
d2082ee5 362 * @rmpp_version: If set, indicates the RMPP version used by this agent.
1da177e4 363 */
1471cb6c
IW
364enum {
365 IB_MAD_USER_RMPP = IB_USER_MAD_USER_RMPP,
366};
1da177e4
LT
367struct ib_mad_agent {
368 struct ib_device *device;
369 struct ib_qp *qp;
b82cab6b 370 struct ib_mr *mr;
1da177e4
LT
371 ib_mad_recv_handler recv_handler;
372 ib_mad_send_handler send_handler;
373 ib_mad_snoop_handler snoop_handler;
374 void *context;
375 u32 hi_tid;
0f29b46d 376 u32 flags;
1da177e4 377 u8 port_num;
d2082ee5 378 u8 rmpp_version;
1da177e4
LT
379};
380
381/**
382 * ib_mad_send_wc - MAD send completion information.
34816ad9 383 * @send_buf: Send MAD data buffer associated with the send MAD request.
1da177e4
LT
384 * @status: Completion status.
385 * @vendor_err: Optional vendor error information returned with a failed
386 * request.
387 */
388struct ib_mad_send_wc {
34816ad9 389 struct ib_mad_send_buf *send_buf;
1da177e4
LT
390 enum ib_wc_status status;
391 u32 vendor_err;
392};
393
394/**
395 * ib_mad_recv_buf - received MAD buffer information.
396 * @list: Reference to next data buffer for a received RMPP MAD.
397 * @grh: References a data buffer containing the global route header.
398 * The data refereced by this buffer is only valid if the GRH is
399 * valid.
400 * @mad: References the start of the received MAD.
401 */
402struct ib_mad_recv_buf {
403 struct list_head list;
404 struct ib_grh *grh;
405 struct ib_mad *mad;
406};
407
408/**
409 * ib_mad_recv_wc - received MAD information.
410 * @wc: Completion information for the received data.
411 * @recv_buf: Specifies the location of the received data buffer(s).
d2082ee5 412 * @rmpp_list: Specifies a list of RMPP reassembled received MAD buffers.
1da177e4
LT
413 * @mad_len: The length of the received MAD, without duplicated headers.
414 *
34816ad9 415 * For received response, the wr_id contains a pointer to the ib_mad_send_buf
1da177e4
LT
416 * for the corresponding send request.
417 */
418struct ib_mad_recv_wc {
419 struct ib_wc *wc;
420 struct ib_mad_recv_buf recv_buf;
d2082ee5 421 struct list_head rmpp_list;
1da177e4
LT
422 int mad_len;
423};
424
425/**
426 * ib_mad_reg_req - MAD registration request
427 * @mgmt_class: Indicates which management class of MADs should be receive
428 * by the caller. This field is only required if the user wishes to
429 * receive unsolicited MADs, otherwise it should be 0.
430 * @mgmt_class_version: Indicates which version of MADs for the given
431 * management class to receive.
432 * @oui: Indicates IEEE OUI when mgmt_class is a vendor class
433 * in the range from 0x30 to 0x4f. Otherwise not used.
434 * @method_mask: The caller will receive unsolicited MADs for any method
435 * where @method_mask = 1.
0f29b46d 436 *
1da177e4
LT
437 */
438struct ib_mad_reg_req {
439 u8 mgmt_class;
440 u8 mgmt_class_version;
441 u8 oui[3];
442 DECLARE_BITMAP(method_mask, IB_MGMT_MAX_METHODS);
443};
444
445/**
446 * ib_register_mad_agent - Register to send/receive MADs.
447 * @device: The device to register with.
448 * @port_num: The port on the specified device to use.
449 * @qp_type: Specifies which QP to access. Must be either
450 * IB_QPT_SMI or IB_QPT_GSI.
451 * @mad_reg_req: Specifies which unsolicited MADs should be received
452 * by the caller. This parameter may be NULL if the caller only
453 * wishes to receive solicited responses.
454 * @rmpp_version: If set, indicates that the client will send
455 * and receive MADs that contain the RMPP header for the given version.
456 * If set to 0, indicates that RMPP is not used by this client.
457 * @send_handler: The completion callback routine invoked after a send
458 * request has completed.
459 * @recv_handler: The completion callback routine invoked for a received
460 * MAD.
461 * @context: User specified context associated with the registration.
0f29b46d 462 * @registration_flags: Registration flags to set for this agent
1da177e4
LT
463 */
464struct ib_mad_agent *ib_register_mad_agent(struct ib_device *device,
465 u8 port_num,
466 enum ib_qp_type qp_type,
467 struct ib_mad_reg_req *mad_reg_req,
468 u8 rmpp_version,
469 ib_mad_send_handler send_handler,
470 ib_mad_recv_handler recv_handler,
0f29b46d
IW
471 void *context,
472 u32 registration_flags);
1da177e4
LT
473
474enum ib_mad_snoop_flags {
475 /*IB_MAD_SNOOP_POSTED_SENDS = 1,*/
476 /*IB_MAD_SNOOP_RMPP_SENDS = (1<<1),*/
477 IB_MAD_SNOOP_SEND_COMPLETIONS = (1<<2),
478 /*IB_MAD_SNOOP_RMPP_SEND_COMPLETIONS = (1<<3),*/
479 IB_MAD_SNOOP_RECVS = (1<<4)
480 /*IB_MAD_SNOOP_RMPP_RECVS = (1<<5),*/
481 /*IB_MAD_SNOOP_REDIRECTED_QPS = (1<<6)*/
482};
483
484/**
485 * ib_register_mad_snoop - Register to snoop sent and received MADs.
486 * @device: The device to register with.
487 * @port_num: The port on the specified device to use.
488 * @qp_type: Specifies which QP traffic to snoop. Must be either
489 * IB_QPT_SMI or IB_QPT_GSI.
490 * @mad_snoop_flags: Specifies information where snooping occurs.
491 * @send_handler: The callback routine invoked for a snooped send.
492 * @recv_handler: The callback routine invoked for a snooped receive.
493 * @context: User specified context associated with the registration.
494 */
495struct ib_mad_agent *ib_register_mad_snoop(struct ib_device *device,
496 u8 port_num,
497 enum ib_qp_type qp_type,
498 int mad_snoop_flags,
499 ib_mad_snoop_handler snoop_handler,
500 ib_mad_recv_handler recv_handler,
501 void *context);
502
503/**
504 * ib_unregister_mad_agent - Unregisters a client from using MAD services.
505 * @mad_agent: Corresponding MAD registration request to deregister.
506 *
507 * After invoking this routine, MAD services are no longer usable by the
508 * client on the associated QP.
509 */
510int ib_unregister_mad_agent(struct ib_mad_agent *mad_agent);
511
512/**
513 * ib_post_send_mad - Posts MAD(s) to the send queue of the QP associated
514 * with the registered client.
34816ad9
SH
515 * @send_buf: Specifies the information needed to send the MAD(s).
516 * @bad_send_buf: Specifies the MAD on which an error was encountered. This
517 * parameter is optional if only a single MAD is posted.
1da177e4
LT
518 *
519 * Sent MADs are not guaranteed to complete in the order that they were posted.
d2082ee5
HR
520 *
521 * If the MAD requires RMPP, the data buffer should contain a single copy
522 * of the common MAD, RMPP, and class specific headers, followed by the class
523 * defined data. If the class defined data would not divide evenly into
524 * RMPP segments, then space must be allocated at the end of the referenced
525 * buffer for any required padding. To indicate the amount of class defined
526 * data being transferred, the paylen_newwin field in the RMPP header should
527 * be set to the size of the class specific header plus the amount of class
528 * defined data being transferred. The paylen_newwin field should be
529 * specified in network-byte order.
1da177e4 530 */
34816ad9
SH
531int ib_post_send_mad(struct ib_mad_send_buf *send_buf,
532 struct ib_mad_send_buf **bad_send_buf);
1da177e4 533
1da177e4
LT
534
535/**
d2082ee5 536 * ib_free_recv_mad - Returns data buffers used to receive a MAD.
1da177e4
LT
537 * @mad_recv_wc: Work completion information for a received MAD.
538 *
539 * Clients receiving MADs through their ib_mad_recv_handler must call this
540 * routine to return the work completion buffers to the access layer.
541 */
542void ib_free_recv_mad(struct ib_mad_recv_wc *mad_recv_wc);
543
544/**
545 * ib_cancel_mad - Cancels an outstanding send MAD operation.
546 * @mad_agent: Specifies the registration associated with sent MAD.
34816ad9 547 * @send_buf: Indicates the MAD to cancel.
1da177e4
LT
548 *
549 * MADs will be returned to the user through the corresponding
550 * ib_mad_send_handler.
551 */
34816ad9
SH
552void ib_cancel_mad(struct ib_mad_agent *mad_agent,
553 struct ib_mad_send_buf *send_buf);
03b61ad2
HR
554
555/**
556 * ib_modify_mad - Modifies an outstanding send MAD operation.
557 * @mad_agent: Specifies the registration associated with sent MAD.
34816ad9 558 * @send_buf: Indicates the MAD to modify.
03b61ad2
HR
559 * @timeout_ms: New timeout value for sent MAD.
560 *
561 * This call will reset the timeout value for a sent MAD to the specified
562 * value.
563 */
34816ad9
SH
564int ib_modify_mad(struct ib_mad_agent *mad_agent,
565 struct ib_mad_send_buf *send_buf, u32 timeout_ms);
1da177e4
LT
566
567/**
568 * ib_redirect_mad_qp - Registers a QP for MAD services.
569 * @qp: Reference to a QP that requires MAD services.
570 * @rmpp_version: If set, indicates that the client will send
571 * and receive MADs that contain the RMPP header for the given version.
572 * If set to 0, indicates that RMPP is not used by this client.
573 * @send_handler: The completion callback routine invoked after a send
574 * request has completed.
575 * @recv_handler: The completion callback routine invoked for a received
576 * MAD.
577 * @context: User specified context associated with the registration.
578 *
579 * Use of this call allows clients to use MAD services, such as RMPP,
580 * on user-owned QPs. After calling this routine, users may send
581 * MADs on the specified QP by calling ib_mad_post_send.
582 */
583struct ib_mad_agent *ib_redirect_mad_qp(struct ib_qp *qp,
584 u8 rmpp_version,
585 ib_mad_send_handler send_handler,
586 ib_mad_recv_handler recv_handler,
587 void *context);
588
589/**
590 * ib_process_mad_wc - Processes a work completion associated with a
591 * MAD sent or received on a redirected QP.
592 * @mad_agent: Specifies the registered MAD service using the redirected QP.
593 * @wc: References a work completion associated with a sent or received
594 * MAD segment.
595 *
596 * This routine is used to complete or continue processing on a MAD request.
597 * If the work completion is associated with a send operation, calling
598 * this routine is required to continue an RMPP transfer or to wait for a
599 * corresponding response, if it is a request. If the work completion is
600 * associated with a receive operation, calling this routine is required to
601 * process an inbound or outbound RMPP transfer, or to match a response MAD
602 * with its corresponding request.
603 */
604int ib_process_mad_wc(struct ib_mad_agent *mad_agent,
605 struct ib_wc *wc);
606
824c8ae7
HR
607/**
608 * ib_create_send_mad - Allocate and initialize a data buffer and work request
609 * for sending a MAD.
610 * @mad_agent: Specifies the registered MAD service to associate with the MAD.
611 * @remote_qpn: Specifies the QPN of the receiving node.
612 * @pkey_index: Specifies which PKey the MAD will be sent using. This field
613 * is valid only if the remote_qpn is QP 1.
d2082ee5 614 * @rmpp_active: Indicates if the send will enable RMPP.
824c8ae7
HR
615 * @hdr_len: Indicates the size of the data header of the MAD. This length
616 * should include the common MAD header, RMPP header, plus any class
617 * specific header.
d2082ee5 618 * @data_len: Indicates the size of any user-transferred data. The call will
824c8ae7
HR
619 * automatically adjust the allocated buffer size to account for any
620 * additional padding that may be necessary.
621 * @gfp_mask: GFP mask used for the memory allocation.
da2dfaa3 622 * @base_version: Base Version of this MAD
824c8ae7 623 *
34816ad9
SH
624 * This routine allocates a MAD for sending. The returned MAD send buffer
625 * will reference a data buffer usable for sending a MAD, along
d2082ee5 626 * with an initialized work request structure. Users may modify the returned
34816ad9 627 * MAD data buffer before posting the send.
d2082ee5 628 *
f36e1793
JM
629 * The returned MAD header, class specific headers, and any padding will be
630 * cleared. Users are responsible for initializing the common MAD header,
631 * any class specific header, and MAD data area.
632 * If @rmpp_active is set, the RMPP header will be initialized for sending.
824c8ae7 633 */
4deccd6d
DB
634struct ib_mad_send_buf *ib_create_send_mad(struct ib_mad_agent *mad_agent,
635 u32 remote_qpn, u16 pkey_index,
636 int rmpp_active,
637 int hdr_len, int data_len,
da2dfaa3
IW
638 gfp_t gfp_mask,
639 u8 base_version);
824c8ae7 640
618a3c03
HR
641/**
642 * ib_is_mad_class_rmpp - returns whether given management class
643 * supports RMPP.
644 * @mgmt_class: management class
645 *
646 * This routine returns whether the management class supports RMPP.
647 */
648int ib_is_mad_class_rmpp(u8 mgmt_class);
649
650/**
651 * ib_get_mad_data_offset - returns the data offset for a given
652 * management class.
653 * @mgmt_class: management class
654 *
655 * This routine returns the data offset in the MAD for the management
656 * class requested.
657 */
658int ib_get_mad_data_offset(u8 mgmt_class);
659
f36e1793
JM
660/**
661 * ib_get_rmpp_segment - returns the data buffer for a given RMPP segment.
662 * @send_buf: Previously allocated send data buffer.
663 * @seg_num: number of segment to return
664 *
665 * This routine returns a pointer to the data buffer of an RMPP MAD.
666 * Users must provide synchronization to @send_buf around this call.
667 */
668void *ib_get_rmpp_segment(struct ib_mad_send_buf *send_buf, int seg_num);
669
824c8ae7
HR
670/**
671 * ib_free_send_mad - Returns data buffers used to send a MAD.
672 * @send_buf: Previously allocated send data buffer.
673 */
674void ib_free_send_mad(struct ib_mad_send_buf *send_buf);
675
1471cb6c
IW
676/**
677 * ib_mad_kernel_rmpp_agent - Returns if the agent is performing RMPP.
678 * @agent: the agent in question
679 * @return: true if agent is performing rmpp, false otherwise.
680 */
f766c58f 681int ib_mad_kernel_rmpp_agent(const struct ib_mad_agent *agent);
1471cb6c 682
1da177e4 683#endif /* IB_MAD_H */