2 * Copyright (c) 2004-2007 Voltaire, Inc. All rights reserved.
3 * Copyright (c) 2005 Intel Corporation. All rights reserved.
4 * Copyright (c) 2005 Mellanox Technologies Ltd. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35 #include <linux/dma-mapping.h>
36 #include <rdma/ib_cache.h>
43 MODULE_LICENSE("Dual BSD/GPL");
44 MODULE_DESCRIPTION("kernel IB MAD API");
45 MODULE_AUTHOR("Hal Rosenstock");
46 MODULE_AUTHOR("Sean Hefty");
48 static struct kmem_cache
*ib_mad_cache
;
50 static struct list_head ib_mad_port_list
;
51 static u32 ib_mad_client_id
= 0;
54 static spinlock_t ib_mad_port_list_lock
;
57 /* Forward declarations */
58 static int method_in_use(struct ib_mad_mgmt_method_table
**method
,
59 struct ib_mad_reg_req
*mad_reg_req
);
60 static void remove_mad_reg_req(struct ib_mad_agent_private
*priv
);
61 static struct ib_mad_agent_private
*find_mad_agent(
62 struct ib_mad_port_private
*port_priv
,
64 static int ib_mad_post_receive_mads(struct ib_mad_qp_info
*qp_info
,
65 struct ib_mad_private
*mad
);
66 static void cancel_mads(struct ib_mad_agent_private
*mad_agent_priv
);
67 static void timeout_sends(struct work_struct
*work
);
68 static void local_completions(struct work_struct
*work
);
69 static int add_nonoui_reg_req(struct ib_mad_reg_req
*mad_reg_req
,
70 struct ib_mad_agent_private
*agent_priv
,
72 static int add_oui_reg_req(struct ib_mad_reg_req
*mad_reg_req
,
73 struct ib_mad_agent_private
*agent_priv
);
76 * Returns a ib_mad_port_private structure or NULL for a device/port
77 * Assumes ib_mad_port_list_lock is being held
79 static inline struct ib_mad_port_private
*
80 __ib_get_mad_port(struct ib_device
*device
, int port_num
)
82 struct ib_mad_port_private
*entry
;
84 list_for_each_entry(entry
, &ib_mad_port_list
, port_list
) {
85 if (entry
->device
== device
&& entry
->port_num
== port_num
)
92 * Wrapper function to return a ib_mad_port_private structure or NULL
95 static inline struct ib_mad_port_private
*
96 ib_get_mad_port(struct ib_device
*device
, int port_num
)
98 struct ib_mad_port_private
*entry
;
101 spin_lock_irqsave(&ib_mad_port_list_lock
, flags
);
102 entry
= __ib_get_mad_port(device
, port_num
);
103 spin_unlock_irqrestore(&ib_mad_port_list_lock
, flags
);
108 static inline u8
convert_mgmt_class(u8 mgmt_class
)
110 /* Alias IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE to 0 */
111 return mgmt_class
== IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
?
115 static int get_spl_qp_index(enum ib_qp_type qp_type
)
128 static int vendor_class_index(u8 mgmt_class
)
130 return mgmt_class
- IB_MGMT_CLASS_VENDOR_RANGE2_START
;
133 static int is_vendor_class(u8 mgmt_class
)
135 if ((mgmt_class
< IB_MGMT_CLASS_VENDOR_RANGE2_START
) ||
136 (mgmt_class
> IB_MGMT_CLASS_VENDOR_RANGE2_END
))
141 static int is_vendor_oui(char *oui
)
143 if (oui
[0] || oui
[1] || oui
[2])
148 static int is_vendor_method_in_use(
149 struct ib_mad_mgmt_vendor_class
*vendor_class
,
150 struct ib_mad_reg_req
*mad_reg_req
)
152 struct ib_mad_mgmt_method_table
*method
;
155 for (i
= 0; i
< MAX_MGMT_OUI
; i
++) {
156 if (!memcmp(vendor_class
->oui
[i
], mad_reg_req
->oui
, 3)) {
157 method
= vendor_class
->method_table
[i
];
159 if (method_in_use(&method
, mad_reg_req
))
169 int ib_response_mad(struct ib_mad
*mad
)
171 return ((mad
->mad_hdr
.method
& IB_MGMT_METHOD_RESP
) ||
172 (mad
->mad_hdr
.method
== IB_MGMT_METHOD_TRAP_REPRESS
) ||
173 ((mad
->mad_hdr
.mgmt_class
== IB_MGMT_CLASS_BM
) &&
174 (mad
->mad_hdr
.attr_mod
& IB_BM_ATTR_MOD_RESP
)));
176 EXPORT_SYMBOL(ib_response_mad
);
179 * ib_register_mad_agent - Register to send/receive MADs
181 struct ib_mad_agent
*ib_register_mad_agent(struct ib_device
*device
,
183 enum ib_qp_type qp_type
,
184 struct ib_mad_reg_req
*mad_reg_req
,
186 ib_mad_send_handler send_handler
,
187 ib_mad_recv_handler recv_handler
,
190 struct ib_mad_port_private
*port_priv
;
191 struct ib_mad_agent
*ret
= ERR_PTR(-EINVAL
);
192 struct ib_mad_agent_private
*mad_agent_priv
;
193 struct ib_mad_reg_req
*reg_req
= NULL
;
194 struct ib_mad_mgmt_class_table
*class;
195 struct ib_mad_mgmt_vendor_class_table
*vendor
;
196 struct ib_mad_mgmt_vendor_class
*vendor_class
;
197 struct ib_mad_mgmt_method_table
*method
;
200 u8 mgmt_class
, vclass
;
202 /* Validate parameters */
203 qpn
= get_spl_qp_index(qp_type
);
207 if (rmpp_version
&& rmpp_version
!= IB_MGMT_RMPP_VERSION
)
210 /* Validate MAD registration request if supplied */
212 if (mad_reg_req
->mgmt_class_version
>= MAX_MGMT_VERSION
)
216 if (mad_reg_req
->mgmt_class
>= MAX_MGMT_CLASS
) {
218 * IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE is the only
219 * one in this range currently allowed
221 if (mad_reg_req
->mgmt_class
!=
222 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
)
224 } else if (mad_reg_req
->mgmt_class
== 0) {
226 * Class 0 is reserved in IBA and is used for
227 * aliasing of IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
230 } else if (is_vendor_class(mad_reg_req
->mgmt_class
)) {
232 * If class is in "new" vendor range,
233 * ensure supplied OUI is not zero
235 if (!is_vendor_oui(mad_reg_req
->oui
))
238 /* Make sure class supplied is consistent with RMPP */
239 if (!ib_is_mad_class_rmpp(mad_reg_req
->mgmt_class
)) {
243 /* Make sure class supplied is consistent with QP type */
244 if (qp_type
== IB_QPT_SMI
) {
245 if ((mad_reg_req
->mgmt_class
!=
246 IB_MGMT_CLASS_SUBN_LID_ROUTED
) &&
247 (mad_reg_req
->mgmt_class
!=
248 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
))
251 if ((mad_reg_req
->mgmt_class
==
252 IB_MGMT_CLASS_SUBN_LID_ROUTED
) ||
253 (mad_reg_req
->mgmt_class
==
254 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
))
258 /* No registration request supplied */
263 /* Validate device and port */
264 port_priv
= ib_get_mad_port(device
, port_num
);
266 ret
= ERR_PTR(-ENODEV
);
270 /* Allocate structures */
271 mad_agent_priv
= kzalloc(sizeof *mad_agent_priv
, GFP_KERNEL
);
272 if (!mad_agent_priv
) {
273 ret
= ERR_PTR(-ENOMEM
);
277 mad_agent_priv
->agent
.mr
= ib_get_dma_mr(port_priv
->qp_info
[qpn
].qp
->pd
,
278 IB_ACCESS_LOCAL_WRITE
);
279 if (IS_ERR(mad_agent_priv
->agent
.mr
)) {
280 ret
= ERR_PTR(-ENOMEM
);
285 reg_req
= kmalloc(sizeof *reg_req
, GFP_KERNEL
);
287 ret
= ERR_PTR(-ENOMEM
);
290 /* Make a copy of the MAD registration request */
291 memcpy(reg_req
, mad_reg_req
, sizeof *reg_req
);
294 /* Now, fill in the various structures */
295 mad_agent_priv
->qp_info
= &port_priv
->qp_info
[qpn
];
296 mad_agent_priv
->reg_req
= reg_req
;
297 mad_agent_priv
->agent
.rmpp_version
= rmpp_version
;
298 mad_agent_priv
->agent
.device
= device
;
299 mad_agent_priv
->agent
.recv_handler
= recv_handler
;
300 mad_agent_priv
->agent
.send_handler
= send_handler
;
301 mad_agent_priv
->agent
.context
= context
;
302 mad_agent_priv
->agent
.qp
= port_priv
->qp_info
[qpn
].qp
;
303 mad_agent_priv
->agent
.port_num
= port_num
;
304 spin_lock_init(&mad_agent_priv
->lock
);
305 INIT_LIST_HEAD(&mad_agent_priv
->send_list
);
306 INIT_LIST_HEAD(&mad_agent_priv
->wait_list
);
307 INIT_LIST_HEAD(&mad_agent_priv
->done_list
);
308 INIT_LIST_HEAD(&mad_agent_priv
->rmpp_list
);
309 INIT_DELAYED_WORK(&mad_agent_priv
->timed_work
, timeout_sends
);
310 INIT_LIST_HEAD(&mad_agent_priv
->local_list
);
311 INIT_WORK(&mad_agent_priv
->local_work
, local_completions
);
312 atomic_set(&mad_agent_priv
->refcount
, 1);
313 init_completion(&mad_agent_priv
->comp
);
315 spin_lock_irqsave(&port_priv
->reg_lock
, flags
);
316 mad_agent_priv
->agent
.hi_tid
= ++ib_mad_client_id
;
319 * Make sure MAD registration (if supplied)
320 * is non overlapping with any existing ones
323 mgmt_class
= convert_mgmt_class(mad_reg_req
->mgmt_class
);
324 if (!is_vendor_class(mgmt_class
)) {
325 class = port_priv
->version
[mad_reg_req
->
326 mgmt_class_version
].class;
328 method
= class->method_table
[mgmt_class
];
330 if (method_in_use(&method
,
335 ret2
= add_nonoui_reg_req(mad_reg_req
, mad_agent_priv
,
338 /* "New" vendor class range */
339 vendor
= port_priv
->version
[mad_reg_req
->
340 mgmt_class_version
].vendor
;
342 vclass
= vendor_class_index(mgmt_class
);
343 vendor_class
= vendor
->vendor_class
[vclass
];
345 if (is_vendor_method_in_use(
351 ret2
= add_oui_reg_req(mad_reg_req
, mad_agent_priv
);
359 /* Add mad agent into port's agent list */
360 list_add_tail(&mad_agent_priv
->agent_list
, &port_priv
->agent_list
);
361 spin_unlock_irqrestore(&port_priv
->reg_lock
, flags
);
363 return &mad_agent_priv
->agent
;
366 spin_unlock_irqrestore(&port_priv
->reg_lock
, flags
);
369 ib_dereg_mr(mad_agent_priv
->agent
.mr
);
371 kfree(mad_agent_priv
);
375 EXPORT_SYMBOL(ib_register_mad_agent
);
377 static inline int is_snooping_sends(int mad_snoop_flags
)
379 return (mad_snoop_flags
&
380 (/*IB_MAD_SNOOP_POSTED_SENDS |
381 IB_MAD_SNOOP_RMPP_SENDS |*/
382 IB_MAD_SNOOP_SEND_COMPLETIONS
/*|
383 IB_MAD_SNOOP_RMPP_SEND_COMPLETIONS*/));
386 static inline int is_snooping_recvs(int mad_snoop_flags
)
388 return (mad_snoop_flags
&
389 (IB_MAD_SNOOP_RECVS
/*|
390 IB_MAD_SNOOP_RMPP_RECVS*/));
393 static int register_snoop_agent(struct ib_mad_qp_info
*qp_info
,
394 struct ib_mad_snoop_private
*mad_snoop_priv
)
396 struct ib_mad_snoop_private
**new_snoop_table
;
400 spin_lock_irqsave(&qp_info
->snoop_lock
, flags
);
401 /* Check for empty slot in array. */
402 for (i
= 0; i
< qp_info
->snoop_table_size
; i
++)
403 if (!qp_info
->snoop_table
[i
])
406 if (i
== qp_info
->snoop_table_size
) {
408 new_snoop_table
= krealloc(qp_info
->snoop_table
,
409 sizeof mad_snoop_priv
*
410 (qp_info
->snoop_table_size
+ 1),
412 if (!new_snoop_table
) {
417 qp_info
->snoop_table
= new_snoop_table
;
418 qp_info
->snoop_table_size
++;
420 qp_info
->snoop_table
[i
] = mad_snoop_priv
;
421 atomic_inc(&qp_info
->snoop_count
);
423 spin_unlock_irqrestore(&qp_info
->snoop_lock
, flags
);
427 struct ib_mad_agent
*ib_register_mad_snoop(struct ib_device
*device
,
429 enum ib_qp_type qp_type
,
431 ib_mad_snoop_handler snoop_handler
,
432 ib_mad_recv_handler recv_handler
,
435 struct ib_mad_port_private
*port_priv
;
436 struct ib_mad_agent
*ret
;
437 struct ib_mad_snoop_private
*mad_snoop_priv
;
440 /* Validate parameters */
441 if ((is_snooping_sends(mad_snoop_flags
) && !snoop_handler
) ||
442 (is_snooping_recvs(mad_snoop_flags
) && !recv_handler
)) {
443 ret
= ERR_PTR(-EINVAL
);
446 qpn
= get_spl_qp_index(qp_type
);
448 ret
= ERR_PTR(-EINVAL
);
451 port_priv
= ib_get_mad_port(device
, port_num
);
453 ret
= ERR_PTR(-ENODEV
);
456 /* Allocate structures */
457 mad_snoop_priv
= kzalloc(sizeof *mad_snoop_priv
, GFP_KERNEL
);
458 if (!mad_snoop_priv
) {
459 ret
= ERR_PTR(-ENOMEM
);
463 /* Now, fill in the various structures */
464 mad_snoop_priv
->qp_info
= &port_priv
->qp_info
[qpn
];
465 mad_snoop_priv
->agent
.device
= device
;
466 mad_snoop_priv
->agent
.recv_handler
= recv_handler
;
467 mad_snoop_priv
->agent
.snoop_handler
= snoop_handler
;
468 mad_snoop_priv
->agent
.context
= context
;
469 mad_snoop_priv
->agent
.qp
= port_priv
->qp_info
[qpn
].qp
;
470 mad_snoop_priv
->agent
.port_num
= port_num
;
471 mad_snoop_priv
->mad_snoop_flags
= mad_snoop_flags
;
472 init_completion(&mad_snoop_priv
->comp
);
473 mad_snoop_priv
->snoop_index
= register_snoop_agent(
474 &port_priv
->qp_info
[qpn
],
476 if (mad_snoop_priv
->snoop_index
< 0) {
477 ret
= ERR_PTR(mad_snoop_priv
->snoop_index
);
481 atomic_set(&mad_snoop_priv
->refcount
, 1);
482 return &mad_snoop_priv
->agent
;
485 kfree(mad_snoop_priv
);
489 EXPORT_SYMBOL(ib_register_mad_snoop
);
491 static inline void deref_mad_agent(struct ib_mad_agent_private
*mad_agent_priv
)
493 if (atomic_dec_and_test(&mad_agent_priv
->refcount
))
494 complete(&mad_agent_priv
->comp
);
497 static inline void deref_snoop_agent(struct ib_mad_snoop_private
*mad_snoop_priv
)
499 if (atomic_dec_and_test(&mad_snoop_priv
->refcount
))
500 complete(&mad_snoop_priv
->comp
);
503 static void unregister_mad_agent(struct ib_mad_agent_private
*mad_agent_priv
)
505 struct ib_mad_port_private
*port_priv
;
508 /* Note that we could still be handling received MADs */
511 * Canceling all sends results in dropping received response
512 * MADs, preventing us from queuing additional work
514 cancel_mads(mad_agent_priv
);
515 port_priv
= mad_agent_priv
->qp_info
->port_priv
;
516 cancel_delayed_work(&mad_agent_priv
->timed_work
);
518 spin_lock_irqsave(&port_priv
->reg_lock
, flags
);
519 remove_mad_reg_req(mad_agent_priv
);
520 list_del(&mad_agent_priv
->agent_list
);
521 spin_unlock_irqrestore(&port_priv
->reg_lock
, flags
);
523 flush_workqueue(port_priv
->wq
);
524 ib_cancel_rmpp_recvs(mad_agent_priv
);
526 deref_mad_agent(mad_agent_priv
);
527 wait_for_completion(&mad_agent_priv
->comp
);
529 kfree(mad_agent_priv
->reg_req
);
530 ib_dereg_mr(mad_agent_priv
->agent
.mr
);
531 kfree(mad_agent_priv
);
534 static void unregister_mad_snoop(struct ib_mad_snoop_private
*mad_snoop_priv
)
536 struct ib_mad_qp_info
*qp_info
;
539 qp_info
= mad_snoop_priv
->qp_info
;
540 spin_lock_irqsave(&qp_info
->snoop_lock
, flags
);
541 qp_info
->snoop_table
[mad_snoop_priv
->snoop_index
] = NULL
;
542 atomic_dec(&qp_info
->snoop_count
);
543 spin_unlock_irqrestore(&qp_info
->snoop_lock
, flags
);
545 deref_snoop_agent(mad_snoop_priv
);
546 wait_for_completion(&mad_snoop_priv
->comp
);
548 kfree(mad_snoop_priv
);
552 * ib_unregister_mad_agent - Unregisters a client from using MAD services
554 int ib_unregister_mad_agent(struct ib_mad_agent
*mad_agent
)
556 struct ib_mad_agent_private
*mad_agent_priv
;
557 struct ib_mad_snoop_private
*mad_snoop_priv
;
559 /* If the TID is zero, the agent can only snoop. */
560 if (mad_agent
->hi_tid
) {
561 mad_agent_priv
= container_of(mad_agent
,
562 struct ib_mad_agent_private
,
564 unregister_mad_agent(mad_agent_priv
);
566 mad_snoop_priv
= container_of(mad_agent
,
567 struct ib_mad_snoop_private
,
569 unregister_mad_snoop(mad_snoop_priv
);
573 EXPORT_SYMBOL(ib_unregister_mad_agent
);
575 static void dequeue_mad(struct ib_mad_list_head
*mad_list
)
577 struct ib_mad_queue
*mad_queue
;
580 BUG_ON(!mad_list
->mad_queue
);
581 mad_queue
= mad_list
->mad_queue
;
582 spin_lock_irqsave(&mad_queue
->lock
, flags
);
583 list_del(&mad_list
->list
);
585 spin_unlock_irqrestore(&mad_queue
->lock
, flags
);
588 static void snoop_send(struct ib_mad_qp_info
*qp_info
,
589 struct ib_mad_send_buf
*send_buf
,
590 struct ib_mad_send_wc
*mad_send_wc
,
593 struct ib_mad_snoop_private
*mad_snoop_priv
;
597 spin_lock_irqsave(&qp_info
->snoop_lock
, flags
);
598 for (i
= 0; i
< qp_info
->snoop_table_size
; i
++) {
599 mad_snoop_priv
= qp_info
->snoop_table
[i
];
600 if (!mad_snoop_priv
||
601 !(mad_snoop_priv
->mad_snoop_flags
& mad_snoop_flags
))
604 atomic_inc(&mad_snoop_priv
->refcount
);
605 spin_unlock_irqrestore(&qp_info
->snoop_lock
, flags
);
606 mad_snoop_priv
->agent
.snoop_handler(&mad_snoop_priv
->agent
,
607 send_buf
, mad_send_wc
);
608 deref_snoop_agent(mad_snoop_priv
);
609 spin_lock_irqsave(&qp_info
->snoop_lock
, flags
);
611 spin_unlock_irqrestore(&qp_info
->snoop_lock
, flags
);
614 static void snoop_recv(struct ib_mad_qp_info
*qp_info
,
615 struct ib_mad_recv_wc
*mad_recv_wc
,
618 struct ib_mad_snoop_private
*mad_snoop_priv
;
622 spin_lock_irqsave(&qp_info
->snoop_lock
, flags
);
623 for (i
= 0; i
< qp_info
->snoop_table_size
; i
++) {
624 mad_snoop_priv
= qp_info
->snoop_table
[i
];
625 if (!mad_snoop_priv
||
626 !(mad_snoop_priv
->mad_snoop_flags
& mad_snoop_flags
))
629 atomic_inc(&mad_snoop_priv
->refcount
);
630 spin_unlock_irqrestore(&qp_info
->snoop_lock
, flags
);
631 mad_snoop_priv
->agent
.recv_handler(&mad_snoop_priv
->agent
,
633 deref_snoop_agent(mad_snoop_priv
);
634 spin_lock_irqsave(&qp_info
->snoop_lock
, flags
);
636 spin_unlock_irqrestore(&qp_info
->snoop_lock
, flags
);
639 static void build_smp_wc(struct ib_qp
*qp
,
640 u64 wr_id
, u16 slid
, u16 pkey_index
, u8 port_num
,
643 memset(wc
, 0, sizeof *wc
);
645 wc
->status
= IB_WC_SUCCESS
;
646 wc
->opcode
= IB_WC_RECV
;
647 wc
->pkey_index
= pkey_index
;
648 wc
->byte_len
= sizeof(struct ib_mad
) + sizeof(struct ib_grh
);
653 wc
->dlid_path_bits
= 0;
654 wc
->port_num
= port_num
;
658 * Return 0 if SMP is to be sent
659 * Return 1 if SMP was consumed locally (whether or not solicited)
660 * Return < 0 if error
662 static int handle_outgoing_dr_smp(struct ib_mad_agent_private
*mad_agent_priv
,
663 struct ib_mad_send_wr_private
*mad_send_wr
)
666 struct ib_smp
*smp
= mad_send_wr
->send_buf
.mad
;
668 struct ib_mad_local_private
*local
;
669 struct ib_mad_private
*mad_priv
;
670 struct ib_mad_port_private
*port_priv
;
671 struct ib_mad_agent_private
*recv_mad_agent
= NULL
;
672 struct ib_device
*device
= mad_agent_priv
->agent
.device
;
675 struct ib_send_wr
*send_wr
= &mad_send_wr
->send_wr
;
677 if (device
->node_type
== RDMA_NODE_IB_SWITCH
&&
678 smp
->mgmt_class
== IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
)
679 port_num
= send_wr
->wr
.ud
.port_num
;
681 port_num
= mad_agent_priv
->agent
.port_num
;
684 * Directed route handling starts if the initial LID routed part of
685 * a request or the ending LID routed part of a response is empty.
686 * If we are at the start of the LID routed part, don't update the
687 * hop_ptr or hop_cnt. See section 14.2.2, Vol 1 IB spec.
689 if ((ib_get_smp_direction(smp
) ? smp
->dr_dlid
: smp
->dr_slid
) ==
691 smi_handle_dr_smp_send(smp
, device
->node_type
, port_num
) ==
694 printk(KERN_ERR PFX
"Invalid directed route\n");
698 /* Check to post send on QP or process locally */
699 if (smi_check_local_smp(smp
, device
) == IB_SMI_DISCARD
&&
700 smi_check_local_returning_smp(smp
, device
) == IB_SMI_DISCARD
)
703 local
= kmalloc(sizeof *local
, GFP_ATOMIC
);
706 printk(KERN_ERR PFX
"No memory for ib_mad_local_private\n");
709 local
->mad_priv
= NULL
;
710 local
->recv_mad_agent
= NULL
;
711 mad_priv
= kmem_cache_alloc(ib_mad_cache
, GFP_ATOMIC
);
714 printk(KERN_ERR PFX
"No memory for local response MAD\n");
719 build_smp_wc(mad_agent_priv
->agent
.qp
,
720 send_wr
->wr_id
, be16_to_cpu(smp
->dr_slid
),
721 send_wr
->wr
.ud
.pkey_index
,
722 send_wr
->wr
.ud
.port_num
, &mad_wc
);
724 /* No GRH for DR SMP */
725 ret
= device
->process_mad(device
, 0, port_num
, &mad_wc
, NULL
,
726 (struct ib_mad
*)smp
,
727 (struct ib_mad
*)&mad_priv
->mad
);
730 case IB_MAD_RESULT_SUCCESS
| IB_MAD_RESULT_REPLY
:
731 if (ib_response_mad(&mad_priv
->mad
.mad
) &&
732 mad_agent_priv
->agent
.recv_handler
) {
733 local
->mad_priv
= mad_priv
;
734 local
->recv_mad_agent
= mad_agent_priv
;
736 * Reference MAD agent until receive
737 * side of local completion handled
739 atomic_inc(&mad_agent_priv
->refcount
);
741 kmem_cache_free(ib_mad_cache
, mad_priv
);
743 case IB_MAD_RESULT_SUCCESS
| IB_MAD_RESULT_CONSUMED
:
744 kmem_cache_free(ib_mad_cache
, mad_priv
);
746 case IB_MAD_RESULT_SUCCESS
:
747 /* Treat like an incoming receive MAD */
748 port_priv
= ib_get_mad_port(mad_agent_priv
->agent
.device
,
749 mad_agent_priv
->agent
.port_num
);
751 memcpy(&mad_priv
->mad
.mad
, smp
, sizeof(struct ib_mad
));
752 recv_mad_agent
= find_mad_agent(port_priv
,
755 if (!port_priv
|| !recv_mad_agent
) {
757 * No receiving agent so drop packet and
758 * generate send completion.
760 kmem_cache_free(ib_mad_cache
, mad_priv
);
763 local
->mad_priv
= mad_priv
;
764 local
->recv_mad_agent
= recv_mad_agent
;
767 kmem_cache_free(ib_mad_cache
, mad_priv
);
773 local
->mad_send_wr
= mad_send_wr
;
774 /* Reference MAD agent until send side of local completion handled */
775 atomic_inc(&mad_agent_priv
->refcount
);
776 /* Queue local completion to local list */
777 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
778 list_add_tail(&local
->completion_list
, &mad_agent_priv
->local_list
);
779 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
780 queue_work(mad_agent_priv
->qp_info
->port_priv
->wq
,
781 &mad_agent_priv
->local_work
);
787 static int get_pad_size(int hdr_len
, int data_len
)
791 seg_size
= sizeof(struct ib_mad
) - hdr_len
;
792 if (data_len
&& seg_size
) {
793 pad
= seg_size
- data_len
% seg_size
;
794 return pad
== seg_size
? 0 : pad
;
799 static void free_send_rmpp_list(struct ib_mad_send_wr_private
*mad_send_wr
)
801 struct ib_rmpp_segment
*s
, *t
;
803 list_for_each_entry_safe(s
, t
, &mad_send_wr
->rmpp_list
, list
) {
809 static int alloc_send_rmpp_list(struct ib_mad_send_wr_private
*send_wr
,
812 struct ib_mad_send_buf
*send_buf
= &send_wr
->send_buf
;
813 struct ib_rmpp_mad
*rmpp_mad
= send_buf
->mad
;
814 struct ib_rmpp_segment
*seg
= NULL
;
815 int left
, seg_size
, pad
;
817 send_buf
->seg_size
= sizeof (struct ib_mad
) - send_buf
->hdr_len
;
818 seg_size
= send_buf
->seg_size
;
821 /* Allocate data segments. */
822 for (left
= send_buf
->data_len
+ pad
; left
> 0; left
-= seg_size
) {
823 seg
= kmalloc(sizeof (*seg
) + seg_size
, gfp_mask
);
825 printk(KERN_ERR
"alloc_send_rmpp_segs: RMPP mem "
826 "alloc failed for len %zd, gfp %#x\n",
827 sizeof (*seg
) + seg_size
, gfp_mask
);
828 free_send_rmpp_list(send_wr
);
831 seg
->num
= ++send_buf
->seg_count
;
832 list_add_tail(&seg
->list
, &send_wr
->rmpp_list
);
835 /* Zero any padding */
837 memset(seg
->data
+ seg_size
- pad
, 0, pad
);
839 rmpp_mad
->rmpp_hdr
.rmpp_version
= send_wr
->mad_agent_priv
->
841 rmpp_mad
->rmpp_hdr
.rmpp_type
= IB_MGMT_RMPP_TYPE_DATA
;
842 ib_set_rmpp_flags(&rmpp_mad
->rmpp_hdr
, IB_MGMT_RMPP_FLAG_ACTIVE
);
844 send_wr
->cur_seg
= container_of(send_wr
->rmpp_list
.next
,
845 struct ib_rmpp_segment
, list
);
846 send_wr
->last_ack_seg
= send_wr
->cur_seg
;
850 struct ib_mad_send_buf
* ib_create_send_mad(struct ib_mad_agent
*mad_agent
,
851 u32 remote_qpn
, u16 pkey_index
,
853 int hdr_len
, int data_len
,
856 struct ib_mad_agent_private
*mad_agent_priv
;
857 struct ib_mad_send_wr_private
*mad_send_wr
;
858 int pad
, message_size
, ret
, size
;
861 mad_agent_priv
= container_of(mad_agent
, struct ib_mad_agent_private
,
863 pad
= get_pad_size(hdr_len
, data_len
);
864 message_size
= hdr_len
+ data_len
+ pad
;
866 if ((!mad_agent
->rmpp_version
&&
867 (rmpp_active
|| message_size
> sizeof(struct ib_mad
))) ||
868 (!rmpp_active
&& message_size
> sizeof(struct ib_mad
)))
869 return ERR_PTR(-EINVAL
);
871 size
= rmpp_active
? hdr_len
: sizeof(struct ib_mad
);
872 buf
= kzalloc(sizeof *mad_send_wr
+ size
, gfp_mask
);
874 return ERR_PTR(-ENOMEM
);
876 mad_send_wr
= buf
+ size
;
877 INIT_LIST_HEAD(&mad_send_wr
->rmpp_list
);
878 mad_send_wr
->send_buf
.mad
= buf
;
879 mad_send_wr
->send_buf
.hdr_len
= hdr_len
;
880 mad_send_wr
->send_buf
.data_len
= data_len
;
881 mad_send_wr
->pad
= pad
;
883 mad_send_wr
->mad_agent_priv
= mad_agent_priv
;
884 mad_send_wr
->sg_list
[0].length
= hdr_len
;
885 mad_send_wr
->sg_list
[0].lkey
= mad_agent
->mr
->lkey
;
886 mad_send_wr
->sg_list
[1].length
= sizeof(struct ib_mad
) - hdr_len
;
887 mad_send_wr
->sg_list
[1].lkey
= mad_agent
->mr
->lkey
;
889 mad_send_wr
->send_wr
.wr_id
= (unsigned long) mad_send_wr
;
890 mad_send_wr
->send_wr
.sg_list
= mad_send_wr
->sg_list
;
891 mad_send_wr
->send_wr
.num_sge
= 2;
892 mad_send_wr
->send_wr
.opcode
= IB_WR_SEND
;
893 mad_send_wr
->send_wr
.send_flags
= IB_SEND_SIGNALED
;
894 mad_send_wr
->send_wr
.wr
.ud
.remote_qpn
= remote_qpn
;
895 mad_send_wr
->send_wr
.wr
.ud
.remote_qkey
= IB_QP_SET_QKEY
;
896 mad_send_wr
->send_wr
.wr
.ud
.pkey_index
= pkey_index
;
899 ret
= alloc_send_rmpp_list(mad_send_wr
, gfp_mask
);
906 mad_send_wr
->send_buf
.mad_agent
= mad_agent
;
907 atomic_inc(&mad_agent_priv
->refcount
);
908 return &mad_send_wr
->send_buf
;
910 EXPORT_SYMBOL(ib_create_send_mad
);
912 int ib_get_mad_data_offset(u8 mgmt_class
)
914 if (mgmt_class
== IB_MGMT_CLASS_SUBN_ADM
)
915 return IB_MGMT_SA_HDR
;
916 else if ((mgmt_class
== IB_MGMT_CLASS_DEVICE_MGMT
) ||
917 (mgmt_class
== IB_MGMT_CLASS_DEVICE_ADM
) ||
918 (mgmt_class
== IB_MGMT_CLASS_BIS
))
919 return IB_MGMT_DEVICE_HDR
;
920 else if ((mgmt_class
>= IB_MGMT_CLASS_VENDOR_RANGE2_START
) &&
921 (mgmt_class
<= IB_MGMT_CLASS_VENDOR_RANGE2_END
))
922 return IB_MGMT_VENDOR_HDR
;
924 return IB_MGMT_MAD_HDR
;
926 EXPORT_SYMBOL(ib_get_mad_data_offset
);
928 int ib_is_mad_class_rmpp(u8 mgmt_class
)
930 if ((mgmt_class
== IB_MGMT_CLASS_SUBN_ADM
) ||
931 (mgmt_class
== IB_MGMT_CLASS_DEVICE_MGMT
) ||
932 (mgmt_class
== IB_MGMT_CLASS_DEVICE_ADM
) ||
933 (mgmt_class
== IB_MGMT_CLASS_BIS
) ||
934 ((mgmt_class
>= IB_MGMT_CLASS_VENDOR_RANGE2_START
) &&
935 (mgmt_class
<= IB_MGMT_CLASS_VENDOR_RANGE2_END
)))
939 EXPORT_SYMBOL(ib_is_mad_class_rmpp
);
941 void *ib_get_rmpp_segment(struct ib_mad_send_buf
*send_buf
, int seg_num
)
943 struct ib_mad_send_wr_private
*mad_send_wr
;
944 struct list_head
*list
;
946 mad_send_wr
= container_of(send_buf
, struct ib_mad_send_wr_private
,
948 list
= &mad_send_wr
->cur_seg
->list
;
950 if (mad_send_wr
->cur_seg
->num
< seg_num
) {
951 list_for_each_entry(mad_send_wr
->cur_seg
, list
, list
)
952 if (mad_send_wr
->cur_seg
->num
== seg_num
)
954 } else if (mad_send_wr
->cur_seg
->num
> seg_num
) {
955 list_for_each_entry_reverse(mad_send_wr
->cur_seg
, list
, list
)
956 if (mad_send_wr
->cur_seg
->num
== seg_num
)
959 return mad_send_wr
->cur_seg
->data
;
961 EXPORT_SYMBOL(ib_get_rmpp_segment
);
963 static inline void *ib_get_payload(struct ib_mad_send_wr_private
*mad_send_wr
)
965 if (mad_send_wr
->send_buf
.seg_count
)
966 return ib_get_rmpp_segment(&mad_send_wr
->send_buf
,
967 mad_send_wr
->seg_num
);
969 return mad_send_wr
->send_buf
.mad
+
970 mad_send_wr
->send_buf
.hdr_len
;
973 void ib_free_send_mad(struct ib_mad_send_buf
*send_buf
)
975 struct ib_mad_agent_private
*mad_agent_priv
;
976 struct ib_mad_send_wr_private
*mad_send_wr
;
978 mad_agent_priv
= container_of(send_buf
->mad_agent
,
979 struct ib_mad_agent_private
, agent
);
980 mad_send_wr
= container_of(send_buf
, struct ib_mad_send_wr_private
,
983 free_send_rmpp_list(mad_send_wr
);
984 kfree(send_buf
->mad
);
985 deref_mad_agent(mad_agent_priv
);
987 EXPORT_SYMBOL(ib_free_send_mad
);
989 int ib_send_mad(struct ib_mad_send_wr_private
*mad_send_wr
)
991 struct ib_mad_qp_info
*qp_info
;
992 struct list_head
*list
;
993 struct ib_send_wr
*bad_send_wr
;
994 struct ib_mad_agent
*mad_agent
;
999 /* Set WR ID to find mad_send_wr upon completion */
1000 qp_info
= mad_send_wr
->mad_agent_priv
->qp_info
;
1001 mad_send_wr
->send_wr
.wr_id
= (unsigned long)&mad_send_wr
->mad_list
;
1002 mad_send_wr
->mad_list
.mad_queue
= &qp_info
->send_queue
;
1004 mad_agent
= mad_send_wr
->send_buf
.mad_agent
;
1005 sge
= mad_send_wr
->sg_list
;
1006 sge
[0].addr
= ib_dma_map_single(mad_agent
->device
,
1007 mad_send_wr
->send_buf
.mad
,
1010 mad_send_wr
->header_mapping
= sge
[0].addr
;
1012 sge
[1].addr
= ib_dma_map_single(mad_agent
->device
,
1013 ib_get_payload(mad_send_wr
),
1016 mad_send_wr
->payload_mapping
= sge
[1].addr
;
1018 spin_lock_irqsave(&qp_info
->send_queue
.lock
, flags
);
1019 if (qp_info
->send_queue
.count
< qp_info
->send_queue
.max_active
) {
1020 ret
= ib_post_send(mad_agent
->qp
, &mad_send_wr
->send_wr
,
1022 list
= &qp_info
->send_queue
.list
;
1025 list
= &qp_info
->overflow_list
;
1029 qp_info
->send_queue
.count
++;
1030 list_add_tail(&mad_send_wr
->mad_list
.list
, list
);
1032 spin_unlock_irqrestore(&qp_info
->send_queue
.lock
, flags
);
1034 ib_dma_unmap_single(mad_agent
->device
,
1035 mad_send_wr
->header_mapping
,
1036 sge
[0].length
, DMA_TO_DEVICE
);
1037 ib_dma_unmap_single(mad_agent
->device
,
1038 mad_send_wr
->payload_mapping
,
1039 sge
[1].length
, DMA_TO_DEVICE
);
1045 * ib_post_send_mad - Posts MAD(s) to the send queue of the QP associated
1046 * with the registered client
1048 int ib_post_send_mad(struct ib_mad_send_buf
*send_buf
,
1049 struct ib_mad_send_buf
**bad_send_buf
)
1051 struct ib_mad_agent_private
*mad_agent_priv
;
1052 struct ib_mad_send_buf
*next_send_buf
;
1053 struct ib_mad_send_wr_private
*mad_send_wr
;
1054 unsigned long flags
;
1057 /* Walk list of send WRs and post each on send list */
1058 for (; send_buf
; send_buf
= next_send_buf
) {
1060 mad_send_wr
= container_of(send_buf
,
1061 struct ib_mad_send_wr_private
,
1063 mad_agent_priv
= mad_send_wr
->mad_agent_priv
;
1065 if (!send_buf
->mad_agent
->send_handler
||
1066 (send_buf
->timeout_ms
&&
1067 !send_buf
->mad_agent
->recv_handler
)) {
1072 if (!ib_is_mad_class_rmpp(((struct ib_mad_hdr
*) send_buf
->mad
)->mgmt_class
)) {
1073 if (mad_agent_priv
->agent
.rmpp_version
) {
1080 * Save pointer to next work request to post in case the
1081 * current one completes, and the user modifies the work
1082 * request associated with the completion
1084 next_send_buf
= send_buf
->next
;
1085 mad_send_wr
->send_wr
.wr
.ud
.ah
= send_buf
->ah
;
1087 if (((struct ib_mad_hdr
*) send_buf
->mad
)->mgmt_class
==
1088 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
) {
1089 ret
= handle_outgoing_dr_smp(mad_agent_priv
,
1091 if (ret
< 0) /* error */
1093 else if (ret
== 1) /* locally consumed */
1097 mad_send_wr
->tid
= ((struct ib_mad_hdr
*) send_buf
->mad
)->tid
;
1098 /* Timeout will be updated after send completes */
1099 mad_send_wr
->timeout
= msecs_to_jiffies(send_buf
->timeout_ms
);
1100 mad_send_wr
->max_retries
= send_buf
->retries
;
1101 mad_send_wr
->retries_left
= send_buf
->retries
;
1102 send_buf
->retries
= 0;
1103 /* Reference for work request to QP + response */
1104 mad_send_wr
->refcount
= 1 + (mad_send_wr
->timeout
> 0);
1105 mad_send_wr
->status
= IB_WC_SUCCESS
;
1107 /* Reference MAD agent until send completes */
1108 atomic_inc(&mad_agent_priv
->refcount
);
1109 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
1110 list_add_tail(&mad_send_wr
->agent_list
,
1111 &mad_agent_priv
->send_list
);
1112 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
1114 if (mad_agent_priv
->agent
.rmpp_version
) {
1115 ret
= ib_send_rmpp_mad(mad_send_wr
);
1116 if (ret
>= 0 && ret
!= IB_RMPP_RESULT_CONSUMED
)
1117 ret
= ib_send_mad(mad_send_wr
);
1119 ret
= ib_send_mad(mad_send_wr
);
1121 /* Fail send request */
1122 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
1123 list_del(&mad_send_wr
->agent_list
);
1124 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
1125 atomic_dec(&mad_agent_priv
->refcount
);
1132 *bad_send_buf
= send_buf
;
1135 EXPORT_SYMBOL(ib_post_send_mad
);
1138 * ib_free_recv_mad - Returns data buffers used to receive
1139 * a MAD to the access layer
1141 void ib_free_recv_mad(struct ib_mad_recv_wc
*mad_recv_wc
)
1143 struct ib_mad_recv_buf
*mad_recv_buf
, *temp_recv_buf
;
1144 struct ib_mad_private_header
*mad_priv_hdr
;
1145 struct ib_mad_private
*priv
;
1146 struct list_head free_list
;
1148 INIT_LIST_HEAD(&free_list
);
1149 list_splice_init(&mad_recv_wc
->rmpp_list
, &free_list
);
1151 list_for_each_entry_safe(mad_recv_buf
, temp_recv_buf
,
1153 mad_recv_wc
= container_of(mad_recv_buf
, struct ib_mad_recv_wc
,
1155 mad_priv_hdr
= container_of(mad_recv_wc
,
1156 struct ib_mad_private_header
,
1158 priv
= container_of(mad_priv_hdr
, struct ib_mad_private
,
1160 kmem_cache_free(ib_mad_cache
, priv
);
1163 EXPORT_SYMBOL(ib_free_recv_mad
);
1165 struct ib_mad_agent
*ib_redirect_mad_qp(struct ib_qp
*qp
,
1167 ib_mad_send_handler send_handler
,
1168 ib_mad_recv_handler recv_handler
,
1171 return ERR_PTR(-EINVAL
); /* XXX: for now */
1173 EXPORT_SYMBOL(ib_redirect_mad_qp
);
1175 int ib_process_mad_wc(struct ib_mad_agent
*mad_agent
,
1178 printk(KERN_ERR PFX
"ib_process_mad_wc() not implemented yet\n");
1181 EXPORT_SYMBOL(ib_process_mad_wc
);
1183 static int method_in_use(struct ib_mad_mgmt_method_table
**method
,
1184 struct ib_mad_reg_req
*mad_reg_req
)
1188 for (i
= find_first_bit(mad_reg_req
->method_mask
, IB_MGMT_MAX_METHODS
);
1189 i
< IB_MGMT_MAX_METHODS
;
1190 i
= find_next_bit(mad_reg_req
->method_mask
, IB_MGMT_MAX_METHODS
,
1192 if ((*method
)->agent
[i
]) {
1193 printk(KERN_ERR PFX
"Method %d already in use\n", i
);
1200 static int allocate_method_table(struct ib_mad_mgmt_method_table
**method
)
1202 /* Allocate management method table */
1203 *method
= kzalloc(sizeof **method
, GFP_ATOMIC
);
1205 printk(KERN_ERR PFX
"No memory for "
1206 "ib_mad_mgmt_method_table\n");
1214 * Check to see if there are any methods still in use
1216 static int check_method_table(struct ib_mad_mgmt_method_table
*method
)
1220 for (i
= 0; i
< IB_MGMT_MAX_METHODS
; i
++)
1221 if (method
->agent
[i
])
1227 * Check to see if there are any method tables for this class still in use
1229 static int check_class_table(struct ib_mad_mgmt_class_table
*class)
1233 for (i
= 0; i
< MAX_MGMT_CLASS
; i
++)
1234 if (class->method_table
[i
])
1239 static int check_vendor_class(struct ib_mad_mgmt_vendor_class
*vendor_class
)
1243 for (i
= 0; i
< MAX_MGMT_OUI
; i
++)
1244 if (vendor_class
->method_table
[i
])
1249 static int find_vendor_oui(struct ib_mad_mgmt_vendor_class
*vendor_class
,
1254 for (i
= 0; i
< MAX_MGMT_OUI
; i
++)
1255 /* Is there matching OUI for this vendor class ? */
1256 if (!memcmp(vendor_class
->oui
[i
], oui
, 3))
1262 static int check_vendor_table(struct ib_mad_mgmt_vendor_class_table
*vendor
)
1266 for (i
= 0; i
< MAX_MGMT_VENDOR_RANGE2
; i
++)
1267 if (vendor
->vendor_class
[i
])
1273 static void remove_methods_mad_agent(struct ib_mad_mgmt_method_table
*method
,
1274 struct ib_mad_agent_private
*agent
)
1278 /* Remove any methods for this mad agent */
1279 for (i
= 0; i
< IB_MGMT_MAX_METHODS
; i
++) {
1280 if (method
->agent
[i
] == agent
) {
1281 method
->agent
[i
] = NULL
;
1286 static int add_nonoui_reg_req(struct ib_mad_reg_req
*mad_reg_req
,
1287 struct ib_mad_agent_private
*agent_priv
,
1290 struct ib_mad_port_private
*port_priv
;
1291 struct ib_mad_mgmt_class_table
**class;
1292 struct ib_mad_mgmt_method_table
**method
;
1295 port_priv
= agent_priv
->qp_info
->port_priv
;
1296 class = &port_priv
->version
[mad_reg_req
->mgmt_class_version
].class;
1298 /* Allocate management class table for "new" class version */
1299 *class = kzalloc(sizeof **class, GFP_ATOMIC
);
1301 printk(KERN_ERR PFX
"No memory for "
1302 "ib_mad_mgmt_class_table\n");
1307 /* Allocate method table for this management class */
1308 method
= &(*class)->method_table
[mgmt_class
];
1309 if ((ret
= allocate_method_table(method
)))
1312 method
= &(*class)->method_table
[mgmt_class
];
1314 /* Allocate method table for this management class */
1315 if ((ret
= allocate_method_table(method
)))
1320 /* Now, make sure methods are not already in use */
1321 if (method_in_use(method
, mad_reg_req
))
1324 /* Finally, add in methods being registered */
1325 for (i
= find_first_bit(mad_reg_req
->method_mask
,
1326 IB_MGMT_MAX_METHODS
);
1327 i
< IB_MGMT_MAX_METHODS
;
1328 i
= find_next_bit(mad_reg_req
->method_mask
, IB_MGMT_MAX_METHODS
,
1330 (*method
)->agent
[i
] = agent_priv
;
1335 /* Remove any methods for this mad agent */
1336 remove_methods_mad_agent(*method
, agent_priv
);
1337 /* Now, check to see if there are any methods in use */
1338 if (!check_method_table(*method
)) {
1339 /* If not, release management method table */
1352 static int add_oui_reg_req(struct ib_mad_reg_req
*mad_reg_req
,
1353 struct ib_mad_agent_private
*agent_priv
)
1355 struct ib_mad_port_private
*port_priv
;
1356 struct ib_mad_mgmt_vendor_class_table
**vendor_table
;
1357 struct ib_mad_mgmt_vendor_class_table
*vendor
= NULL
;
1358 struct ib_mad_mgmt_vendor_class
*vendor_class
= NULL
;
1359 struct ib_mad_mgmt_method_table
**method
;
1360 int i
, ret
= -ENOMEM
;
1363 /* "New" vendor (with OUI) class */
1364 vclass
= vendor_class_index(mad_reg_req
->mgmt_class
);
1365 port_priv
= agent_priv
->qp_info
->port_priv
;
1366 vendor_table
= &port_priv
->version
[
1367 mad_reg_req
->mgmt_class_version
].vendor
;
1368 if (!*vendor_table
) {
1369 /* Allocate mgmt vendor class table for "new" class version */
1370 vendor
= kzalloc(sizeof *vendor
, GFP_ATOMIC
);
1372 printk(KERN_ERR PFX
"No memory for "
1373 "ib_mad_mgmt_vendor_class_table\n");
1377 *vendor_table
= vendor
;
1379 if (!(*vendor_table
)->vendor_class
[vclass
]) {
1380 /* Allocate table for this management vendor class */
1381 vendor_class
= kzalloc(sizeof *vendor_class
, GFP_ATOMIC
);
1382 if (!vendor_class
) {
1383 printk(KERN_ERR PFX
"No memory for "
1384 "ib_mad_mgmt_vendor_class\n");
1388 (*vendor_table
)->vendor_class
[vclass
] = vendor_class
;
1390 for (i
= 0; i
< MAX_MGMT_OUI
; i
++) {
1391 /* Is there matching OUI for this vendor class ? */
1392 if (!memcmp((*vendor_table
)->vendor_class
[vclass
]->oui
[i
],
1393 mad_reg_req
->oui
, 3)) {
1394 method
= &(*vendor_table
)->vendor_class
[
1395 vclass
]->method_table
[i
];
1400 for (i
= 0; i
< MAX_MGMT_OUI
; i
++) {
1401 /* OUI slot available ? */
1402 if (!is_vendor_oui((*vendor_table
)->vendor_class
[
1404 method
= &(*vendor_table
)->vendor_class
[
1405 vclass
]->method_table
[i
];
1407 /* Allocate method table for this OUI */
1408 if ((ret
= allocate_method_table(method
)))
1410 memcpy((*vendor_table
)->vendor_class
[vclass
]->oui
[i
],
1411 mad_reg_req
->oui
, 3);
1415 printk(KERN_ERR PFX
"All OUI slots in use\n");
1419 /* Now, make sure methods are not already in use */
1420 if (method_in_use(method
, mad_reg_req
))
1423 /* Finally, add in methods being registered */
1424 for (i
= find_first_bit(mad_reg_req
->method_mask
,
1425 IB_MGMT_MAX_METHODS
);
1426 i
< IB_MGMT_MAX_METHODS
;
1427 i
= find_next_bit(mad_reg_req
->method_mask
, IB_MGMT_MAX_METHODS
,
1429 (*method
)->agent
[i
] = agent_priv
;
1434 /* Remove any methods for this mad agent */
1435 remove_methods_mad_agent(*method
, agent_priv
);
1436 /* Now, check to see if there are any methods in use */
1437 if (!check_method_table(*method
)) {
1438 /* If not, release management method table */
1445 (*vendor_table
)->vendor_class
[vclass
] = NULL
;
1446 kfree(vendor_class
);
1450 *vendor_table
= NULL
;
1457 static void remove_mad_reg_req(struct ib_mad_agent_private
*agent_priv
)
1459 struct ib_mad_port_private
*port_priv
;
1460 struct ib_mad_mgmt_class_table
*class;
1461 struct ib_mad_mgmt_method_table
*method
;
1462 struct ib_mad_mgmt_vendor_class_table
*vendor
;
1463 struct ib_mad_mgmt_vendor_class
*vendor_class
;
1468 * Was MAD registration request supplied
1469 * with original registration ?
1471 if (!agent_priv
->reg_req
) {
1475 port_priv
= agent_priv
->qp_info
->port_priv
;
1476 mgmt_class
= convert_mgmt_class(agent_priv
->reg_req
->mgmt_class
);
1477 class = port_priv
->version
[
1478 agent_priv
->reg_req
->mgmt_class_version
].class;
1482 method
= class->method_table
[mgmt_class
];
1484 /* Remove any methods for this mad agent */
1485 remove_methods_mad_agent(method
, agent_priv
);
1486 /* Now, check to see if there are any methods still in use */
1487 if (!check_method_table(method
)) {
1488 /* If not, release management method table */
1490 class->method_table
[mgmt_class
] = NULL
;
1491 /* Any management classes left ? */
1492 if (!check_class_table(class)) {
1493 /* If not, release management class table */
1496 agent_priv
->reg_req
->
1497 mgmt_class_version
].class = NULL
;
1503 if (!is_vendor_class(mgmt_class
))
1506 /* normalize mgmt_class to vendor range 2 */
1507 mgmt_class
= vendor_class_index(agent_priv
->reg_req
->mgmt_class
);
1508 vendor
= port_priv
->version
[
1509 agent_priv
->reg_req
->mgmt_class_version
].vendor
;
1514 vendor_class
= vendor
->vendor_class
[mgmt_class
];
1516 index
= find_vendor_oui(vendor_class
, agent_priv
->reg_req
->oui
);
1519 method
= vendor_class
->method_table
[index
];
1521 /* Remove any methods for this mad agent */
1522 remove_methods_mad_agent(method
, agent_priv
);
1524 * Now, check to see if there are
1525 * any methods still in use
1527 if (!check_method_table(method
)) {
1528 /* If not, release management method table */
1530 vendor_class
->method_table
[index
] = NULL
;
1531 memset(vendor_class
->oui
[index
], 0, 3);
1532 /* Any OUIs left ? */
1533 if (!check_vendor_class(vendor_class
)) {
1534 /* If not, release vendor class table */
1535 kfree(vendor_class
);
1536 vendor
->vendor_class
[mgmt_class
] = NULL
;
1537 /* Any other vendor classes left ? */
1538 if (!check_vendor_table(vendor
)) {
1541 agent_priv
->reg_req
->
1542 mgmt_class_version
].
1554 static struct ib_mad_agent_private
*
1555 find_mad_agent(struct ib_mad_port_private
*port_priv
,
1558 struct ib_mad_agent_private
*mad_agent
= NULL
;
1559 unsigned long flags
;
1561 spin_lock_irqsave(&port_priv
->reg_lock
, flags
);
1562 if (ib_response_mad(mad
)) {
1564 struct ib_mad_agent_private
*entry
;
1567 * Routing is based on high 32 bits of transaction ID
1570 hi_tid
= be64_to_cpu(mad
->mad_hdr
.tid
) >> 32;
1571 list_for_each_entry(entry
, &port_priv
->agent_list
, agent_list
) {
1572 if (entry
->agent
.hi_tid
== hi_tid
) {
1578 struct ib_mad_mgmt_class_table
*class;
1579 struct ib_mad_mgmt_method_table
*method
;
1580 struct ib_mad_mgmt_vendor_class_table
*vendor
;
1581 struct ib_mad_mgmt_vendor_class
*vendor_class
;
1582 struct ib_vendor_mad
*vendor_mad
;
1586 * Routing is based on version, class, and method
1587 * For "newer" vendor MADs, also based on OUI
1589 if (mad
->mad_hdr
.class_version
>= MAX_MGMT_VERSION
)
1591 if (!is_vendor_class(mad
->mad_hdr
.mgmt_class
)) {
1592 class = port_priv
->version
[
1593 mad
->mad_hdr
.class_version
].class;
1596 method
= class->method_table
[convert_mgmt_class(
1597 mad
->mad_hdr
.mgmt_class
)];
1599 mad_agent
= method
->agent
[mad
->mad_hdr
.method
&
1600 ~IB_MGMT_METHOD_RESP
];
1602 vendor
= port_priv
->version
[
1603 mad
->mad_hdr
.class_version
].vendor
;
1606 vendor_class
= vendor
->vendor_class
[vendor_class_index(
1607 mad
->mad_hdr
.mgmt_class
)];
1610 /* Find matching OUI */
1611 vendor_mad
= (struct ib_vendor_mad
*)mad
;
1612 index
= find_vendor_oui(vendor_class
, vendor_mad
->oui
);
1615 method
= vendor_class
->method_table
[index
];
1617 mad_agent
= method
->agent
[mad
->mad_hdr
.method
&
1618 ~IB_MGMT_METHOD_RESP
];
1624 if (mad_agent
->agent
.recv_handler
)
1625 atomic_inc(&mad_agent
->refcount
);
1627 printk(KERN_NOTICE PFX
"No receive handler for client "
1629 &mad_agent
->agent
, port_priv
->port_num
);
1634 spin_unlock_irqrestore(&port_priv
->reg_lock
, flags
);
1639 static int validate_mad(struct ib_mad
*mad
, u32 qp_num
)
1643 /* Make sure MAD base version is understood */
1644 if (mad
->mad_hdr
.base_version
!= IB_MGMT_BASE_VERSION
) {
1645 printk(KERN_ERR PFX
"MAD received with unsupported base "
1646 "version %d\n", mad
->mad_hdr
.base_version
);
1650 /* Filter SMI packets sent to other than QP0 */
1651 if ((mad
->mad_hdr
.mgmt_class
== IB_MGMT_CLASS_SUBN_LID_ROUTED
) ||
1652 (mad
->mad_hdr
.mgmt_class
== IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
)) {
1656 /* Filter GSI packets sent to QP0 */
1665 static int is_data_mad(struct ib_mad_agent_private
*mad_agent_priv
,
1666 struct ib_mad_hdr
*mad_hdr
)
1668 struct ib_rmpp_mad
*rmpp_mad
;
1670 rmpp_mad
= (struct ib_rmpp_mad
*)mad_hdr
;
1671 return !mad_agent_priv
->agent
.rmpp_version
||
1672 !(ib_get_rmpp_flags(&rmpp_mad
->rmpp_hdr
) &
1673 IB_MGMT_RMPP_FLAG_ACTIVE
) ||
1674 (rmpp_mad
->rmpp_hdr
.rmpp_type
== IB_MGMT_RMPP_TYPE_DATA
);
1677 static inline int rcv_has_same_class(struct ib_mad_send_wr_private
*wr
,
1678 struct ib_mad_recv_wc
*rwc
)
1680 return ((struct ib_mad
*)(wr
->send_buf
.mad
))->mad_hdr
.mgmt_class
==
1681 rwc
->recv_buf
.mad
->mad_hdr
.mgmt_class
;
1684 static inline int rcv_has_same_gid(struct ib_mad_agent_private
*mad_agent_priv
,
1685 struct ib_mad_send_wr_private
*wr
,
1686 struct ib_mad_recv_wc
*rwc
)
1688 struct ib_ah_attr attr
;
1689 u8 send_resp
, rcv_resp
;
1691 struct ib_device
*device
= mad_agent_priv
->agent
.device
;
1692 u8 port_num
= mad_agent_priv
->agent
.port_num
;
1695 send_resp
= ib_response_mad((struct ib_mad
*)wr
->send_buf
.mad
);
1696 rcv_resp
= ib_response_mad(rwc
->recv_buf
.mad
);
1698 if (send_resp
== rcv_resp
)
1699 /* both requests, or both responses. GIDs different */
1702 if (ib_query_ah(wr
->send_buf
.ah
, &attr
))
1703 /* Assume not equal, to avoid false positives. */
1706 if (!!(attr
.ah_flags
& IB_AH_GRH
) !=
1707 !!(rwc
->wc
->wc_flags
& IB_WC_GRH
))
1708 /* one has GID, other does not. Assume different */
1711 if (!send_resp
&& rcv_resp
) {
1712 /* is request/response. */
1713 if (!(attr
.ah_flags
& IB_AH_GRH
)) {
1714 if (ib_get_cached_lmc(device
, port_num
, &lmc
))
1716 return (!lmc
|| !((attr
.src_path_bits
^
1717 rwc
->wc
->dlid_path_bits
) &
1720 if (ib_get_cached_gid(device
, port_num
,
1721 attr
.grh
.sgid_index
, &sgid
))
1723 return !memcmp(sgid
.raw
, rwc
->recv_buf
.grh
->dgid
.raw
,
1728 if (!(attr
.ah_flags
& IB_AH_GRH
))
1729 return attr
.dlid
== rwc
->wc
->slid
;
1731 return !memcmp(attr
.grh
.dgid
.raw
, rwc
->recv_buf
.grh
->sgid
.raw
,
1735 static inline int is_direct(u8
class)
1737 return (class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
);
1740 struct ib_mad_send_wr_private
*
1741 ib_find_send_mad(struct ib_mad_agent_private
*mad_agent_priv
,
1742 struct ib_mad_recv_wc
*wc
)
1744 struct ib_mad_send_wr_private
*wr
;
1747 mad
= (struct ib_mad
*)wc
->recv_buf
.mad
;
1749 list_for_each_entry(wr
, &mad_agent_priv
->wait_list
, agent_list
) {
1750 if ((wr
->tid
== mad
->mad_hdr
.tid
) &&
1751 rcv_has_same_class(wr
, wc
) &&
1753 * Don't check GID for direct routed MADs.
1754 * These might have permissive LIDs.
1756 (is_direct(wc
->recv_buf
.mad
->mad_hdr
.mgmt_class
) ||
1757 rcv_has_same_gid(mad_agent_priv
, wr
, wc
)))
1758 return (wr
->status
== IB_WC_SUCCESS
) ? wr
: NULL
;
1762 * It's possible to receive the response before we've
1763 * been notified that the send has completed
1765 list_for_each_entry(wr
, &mad_agent_priv
->send_list
, agent_list
) {
1766 if (is_data_mad(mad_agent_priv
, wr
->send_buf
.mad
) &&
1767 wr
->tid
== mad
->mad_hdr
.tid
&&
1769 rcv_has_same_class(wr
, wc
) &&
1771 * Don't check GID for direct routed MADs.
1772 * These might have permissive LIDs.
1774 (is_direct(wc
->recv_buf
.mad
->mad_hdr
.mgmt_class
) ||
1775 rcv_has_same_gid(mad_agent_priv
, wr
, wc
)))
1776 /* Verify request has not been canceled */
1777 return (wr
->status
== IB_WC_SUCCESS
) ? wr
: NULL
;
1782 void ib_mark_mad_done(struct ib_mad_send_wr_private
*mad_send_wr
)
1784 mad_send_wr
->timeout
= 0;
1785 if (mad_send_wr
->refcount
== 1)
1786 list_move_tail(&mad_send_wr
->agent_list
,
1787 &mad_send_wr
->mad_agent_priv
->done_list
);
1790 static void ib_mad_complete_recv(struct ib_mad_agent_private
*mad_agent_priv
,
1791 struct ib_mad_recv_wc
*mad_recv_wc
)
1793 struct ib_mad_send_wr_private
*mad_send_wr
;
1794 struct ib_mad_send_wc mad_send_wc
;
1795 unsigned long flags
;
1797 INIT_LIST_HEAD(&mad_recv_wc
->rmpp_list
);
1798 list_add(&mad_recv_wc
->recv_buf
.list
, &mad_recv_wc
->rmpp_list
);
1799 if (mad_agent_priv
->agent
.rmpp_version
) {
1800 mad_recv_wc
= ib_process_rmpp_recv_wc(mad_agent_priv
,
1803 deref_mad_agent(mad_agent_priv
);
1808 /* Complete corresponding request */
1809 if (ib_response_mad(mad_recv_wc
->recv_buf
.mad
)) {
1810 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
1811 mad_send_wr
= ib_find_send_mad(mad_agent_priv
, mad_recv_wc
);
1813 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
1814 ib_free_recv_mad(mad_recv_wc
);
1815 deref_mad_agent(mad_agent_priv
);
1818 ib_mark_mad_done(mad_send_wr
);
1819 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
1821 /* Defined behavior is to complete response before request */
1822 mad_recv_wc
->wc
->wr_id
= (unsigned long) &mad_send_wr
->send_buf
;
1823 mad_agent_priv
->agent
.recv_handler(&mad_agent_priv
->agent
,
1825 atomic_dec(&mad_agent_priv
->refcount
);
1827 mad_send_wc
.status
= IB_WC_SUCCESS
;
1828 mad_send_wc
.vendor_err
= 0;
1829 mad_send_wc
.send_buf
= &mad_send_wr
->send_buf
;
1830 ib_mad_complete_send_wr(mad_send_wr
, &mad_send_wc
);
1832 mad_agent_priv
->agent
.recv_handler(&mad_agent_priv
->agent
,
1834 deref_mad_agent(mad_agent_priv
);
1838 static void ib_mad_recv_done_handler(struct ib_mad_port_private
*port_priv
,
1841 struct ib_mad_qp_info
*qp_info
;
1842 struct ib_mad_private_header
*mad_priv_hdr
;
1843 struct ib_mad_private
*recv
, *response
= NULL
;
1844 struct ib_mad_list_head
*mad_list
;
1845 struct ib_mad_agent_private
*mad_agent
;
1848 mad_list
= (struct ib_mad_list_head
*)(unsigned long)wc
->wr_id
;
1849 qp_info
= mad_list
->mad_queue
->qp_info
;
1850 dequeue_mad(mad_list
);
1852 mad_priv_hdr
= container_of(mad_list
, struct ib_mad_private_header
,
1854 recv
= container_of(mad_priv_hdr
, struct ib_mad_private
, header
);
1855 ib_dma_unmap_single(port_priv
->device
,
1856 recv
->header
.mapping
,
1857 sizeof(struct ib_mad_private
) -
1858 sizeof(struct ib_mad_private_header
),
1861 /* Setup MAD receive work completion from "normal" work completion */
1862 recv
->header
.wc
= *wc
;
1863 recv
->header
.recv_wc
.wc
= &recv
->header
.wc
;
1864 recv
->header
.recv_wc
.mad_len
= sizeof(struct ib_mad
);
1865 recv
->header
.recv_wc
.recv_buf
.mad
= &recv
->mad
.mad
;
1866 recv
->header
.recv_wc
.recv_buf
.grh
= &recv
->grh
;
1868 if (atomic_read(&qp_info
->snoop_count
))
1869 snoop_recv(qp_info
, &recv
->header
.recv_wc
, IB_MAD_SNOOP_RECVS
);
1872 if (!validate_mad(&recv
->mad
.mad
, qp_info
->qp
->qp_num
))
1875 response
= kmem_cache_alloc(ib_mad_cache
, GFP_KERNEL
);
1877 printk(KERN_ERR PFX
"ib_mad_recv_done_handler no memory "
1878 "for response buffer\n");
1882 if (port_priv
->device
->node_type
== RDMA_NODE_IB_SWITCH
)
1883 port_num
= wc
->port_num
;
1885 port_num
= port_priv
->port_num
;
1887 if (recv
->mad
.mad
.mad_hdr
.mgmt_class
==
1888 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
) {
1889 enum smi_forward_action retsmi
;
1891 if (smi_handle_dr_smp_recv(&recv
->mad
.smp
,
1892 port_priv
->device
->node_type
,
1894 port_priv
->device
->phys_port_cnt
) ==
1898 retsmi
= smi_check_forward_dr_smp(&recv
->mad
.smp
);
1899 if (retsmi
== IB_SMI_LOCAL
)
1902 if (retsmi
== IB_SMI_SEND
) { /* don't forward */
1903 if (smi_handle_dr_smp_send(&recv
->mad
.smp
,
1904 port_priv
->device
->node_type
,
1905 port_num
) == IB_SMI_DISCARD
)
1908 if (smi_check_local_smp(&recv
->mad
.smp
, port_priv
->device
) == IB_SMI_DISCARD
)
1910 } else if (port_priv
->device
->node_type
== RDMA_NODE_IB_SWITCH
) {
1911 /* forward case for switches */
1912 memcpy(response
, recv
, sizeof(*response
));
1913 response
->header
.recv_wc
.wc
= &response
->header
.wc
;
1914 response
->header
.recv_wc
.recv_buf
.mad
= &response
->mad
.mad
;
1915 response
->header
.recv_wc
.recv_buf
.grh
= &response
->grh
;
1917 agent_send_response(&response
->mad
.mad
,
1920 smi_get_fwd_port(&recv
->mad
.smp
),
1921 qp_info
->qp
->qp_num
);
1928 /* Give driver "right of first refusal" on incoming MAD */
1929 if (port_priv
->device
->process_mad
) {
1932 ret
= port_priv
->device
->process_mad(port_priv
->device
, 0,
1933 port_priv
->port_num
,
1936 &response
->mad
.mad
);
1937 if (ret
& IB_MAD_RESULT_SUCCESS
) {
1938 if (ret
& IB_MAD_RESULT_CONSUMED
)
1940 if (ret
& IB_MAD_RESULT_REPLY
) {
1941 agent_send_response(&response
->mad
.mad
,
1945 qp_info
->qp
->qp_num
);
1951 mad_agent
= find_mad_agent(port_priv
, &recv
->mad
.mad
);
1953 ib_mad_complete_recv(mad_agent
, &recv
->header
.recv_wc
);
1955 * recv is freed up in error cases in ib_mad_complete_recv
1956 * or via recv_handler in ib_mad_complete_recv()
1962 /* Post another receive request for this QP */
1964 ib_mad_post_receive_mads(qp_info
, response
);
1966 kmem_cache_free(ib_mad_cache
, recv
);
1968 ib_mad_post_receive_mads(qp_info
, recv
);
1971 static void adjust_timeout(struct ib_mad_agent_private
*mad_agent_priv
)
1973 struct ib_mad_send_wr_private
*mad_send_wr
;
1974 unsigned long delay
;
1976 if (list_empty(&mad_agent_priv
->wait_list
)) {
1977 cancel_delayed_work(&mad_agent_priv
->timed_work
);
1979 mad_send_wr
= list_entry(mad_agent_priv
->wait_list
.next
,
1980 struct ib_mad_send_wr_private
,
1983 if (time_after(mad_agent_priv
->timeout
,
1984 mad_send_wr
->timeout
)) {
1985 mad_agent_priv
->timeout
= mad_send_wr
->timeout
;
1986 cancel_delayed_work(&mad_agent_priv
->timed_work
);
1987 delay
= mad_send_wr
->timeout
- jiffies
;
1988 if ((long)delay
<= 0)
1990 queue_delayed_work(mad_agent_priv
->qp_info
->
1992 &mad_agent_priv
->timed_work
, delay
);
1997 static void wait_for_response(struct ib_mad_send_wr_private
*mad_send_wr
)
1999 struct ib_mad_agent_private
*mad_agent_priv
;
2000 struct ib_mad_send_wr_private
*temp_mad_send_wr
;
2001 struct list_head
*list_item
;
2002 unsigned long delay
;
2004 mad_agent_priv
= mad_send_wr
->mad_agent_priv
;
2005 list_del(&mad_send_wr
->agent_list
);
2007 delay
= mad_send_wr
->timeout
;
2008 mad_send_wr
->timeout
+= jiffies
;
2011 list_for_each_prev(list_item
, &mad_agent_priv
->wait_list
) {
2012 temp_mad_send_wr
= list_entry(list_item
,
2013 struct ib_mad_send_wr_private
,
2015 if (time_after(mad_send_wr
->timeout
,
2016 temp_mad_send_wr
->timeout
))
2021 list_item
= &mad_agent_priv
->wait_list
;
2022 list_add(&mad_send_wr
->agent_list
, list_item
);
2024 /* Reschedule a work item if we have a shorter timeout */
2025 if (mad_agent_priv
->wait_list
.next
== &mad_send_wr
->agent_list
) {
2026 cancel_delayed_work(&mad_agent_priv
->timed_work
);
2027 queue_delayed_work(mad_agent_priv
->qp_info
->port_priv
->wq
,
2028 &mad_agent_priv
->timed_work
, delay
);
2032 void ib_reset_mad_timeout(struct ib_mad_send_wr_private
*mad_send_wr
,
2035 mad_send_wr
->timeout
= msecs_to_jiffies(timeout_ms
);
2036 wait_for_response(mad_send_wr
);
2040 * Process a send work completion
2042 void ib_mad_complete_send_wr(struct ib_mad_send_wr_private
*mad_send_wr
,
2043 struct ib_mad_send_wc
*mad_send_wc
)
2045 struct ib_mad_agent_private
*mad_agent_priv
;
2046 unsigned long flags
;
2049 mad_agent_priv
= mad_send_wr
->mad_agent_priv
;
2050 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
2051 if (mad_agent_priv
->agent
.rmpp_version
) {
2052 ret
= ib_process_rmpp_send_wc(mad_send_wr
, mad_send_wc
);
2053 if (ret
== IB_RMPP_RESULT_CONSUMED
)
2056 ret
= IB_RMPP_RESULT_UNHANDLED
;
2058 if (mad_send_wc
->status
!= IB_WC_SUCCESS
&&
2059 mad_send_wr
->status
== IB_WC_SUCCESS
) {
2060 mad_send_wr
->status
= mad_send_wc
->status
;
2061 mad_send_wr
->refcount
-= (mad_send_wr
->timeout
> 0);
2064 if (--mad_send_wr
->refcount
> 0) {
2065 if (mad_send_wr
->refcount
== 1 && mad_send_wr
->timeout
&&
2066 mad_send_wr
->status
== IB_WC_SUCCESS
) {
2067 wait_for_response(mad_send_wr
);
2072 /* Remove send from MAD agent and notify client of completion */
2073 list_del(&mad_send_wr
->agent_list
);
2074 adjust_timeout(mad_agent_priv
);
2075 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2077 if (mad_send_wr
->status
!= IB_WC_SUCCESS
)
2078 mad_send_wc
->status
= mad_send_wr
->status
;
2079 if (ret
== IB_RMPP_RESULT_INTERNAL
)
2080 ib_rmpp_send_handler(mad_send_wc
);
2082 mad_agent_priv
->agent
.send_handler(&mad_agent_priv
->agent
,
2085 /* Release reference on agent taken when sending */
2086 deref_mad_agent(mad_agent_priv
);
2089 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2092 static void ib_mad_send_done_handler(struct ib_mad_port_private
*port_priv
,
2095 struct ib_mad_send_wr_private
*mad_send_wr
, *queued_send_wr
;
2096 struct ib_mad_list_head
*mad_list
;
2097 struct ib_mad_qp_info
*qp_info
;
2098 struct ib_mad_queue
*send_queue
;
2099 struct ib_send_wr
*bad_send_wr
;
2100 struct ib_mad_send_wc mad_send_wc
;
2101 unsigned long flags
;
2104 mad_list
= (struct ib_mad_list_head
*)(unsigned long)wc
->wr_id
;
2105 mad_send_wr
= container_of(mad_list
, struct ib_mad_send_wr_private
,
2107 send_queue
= mad_list
->mad_queue
;
2108 qp_info
= send_queue
->qp_info
;
2111 ib_dma_unmap_single(mad_send_wr
->send_buf
.mad_agent
->device
,
2112 mad_send_wr
->header_mapping
,
2113 mad_send_wr
->sg_list
[0].length
, DMA_TO_DEVICE
);
2114 ib_dma_unmap_single(mad_send_wr
->send_buf
.mad_agent
->device
,
2115 mad_send_wr
->payload_mapping
,
2116 mad_send_wr
->sg_list
[1].length
, DMA_TO_DEVICE
);
2117 queued_send_wr
= NULL
;
2118 spin_lock_irqsave(&send_queue
->lock
, flags
);
2119 list_del(&mad_list
->list
);
2121 /* Move queued send to the send queue */
2122 if (send_queue
->count
-- > send_queue
->max_active
) {
2123 mad_list
= container_of(qp_info
->overflow_list
.next
,
2124 struct ib_mad_list_head
, list
);
2125 queued_send_wr
= container_of(mad_list
,
2126 struct ib_mad_send_wr_private
,
2128 list_move_tail(&mad_list
->list
, &send_queue
->list
);
2130 spin_unlock_irqrestore(&send_queue
->lock
, flags
);
2132 mad_send_wc
.send_buf
= &mad_send_wr
->send_buf
;
2133 mad_send_wc
.status
= wc
->status
;
2134 mad_send_wc
.vendor_err
= wc
->vendor_err
;
2135 if (atomic_read(&qp_info
->snoop_count
))
2136 snoop_send(qp_info
, &mad_send_wr
->send_buf
, &mad_send_wc
,
2137 IB_MAD_SNOOP_SEND_COMPLETIONS
);
2138 ib_mad_complete_send_wr(mad_send_wr
, &mad_send_wc
);
2140 if (queued_send_wr
) {
2141 ret
= ib_post_send(qp_info
->qp
, &queued_send_wr
->send_wr
,
2144 printk(KERN_ERR PFX
"ib_post_send failed: %d\n", ret
);
2145 mad_send_wr
= queued_send_wr
;
2146 wc
->status
= IB_WC_LOC_QP_OP_ERR
;
2152 static void mark_sends_for_retry(struct ib_mad_qp_info
*qp_info
)
2154 struct ib_mad_send_wr_private
*mad_send_wr
;
2155 struct ib_mad_list_head
*mad_list
;
2156 unsigned long flags
;
2158 spin_lock_irqsave(&qp_info
->send_queue
.lock
, flags
);
2159 list_for_each_entry(mad_list
, &qp_info
->send_queue
.list
, list
) {
2160 mad_send_wr
= container_of(mad_list
,
2161 struct ib_mad_send_wr_private
,
2163 mad_send_wr
->retry
= 1;
2165 spin_unlock_irqrestore(&qp_info
->send_queue
.lock
, flags
);
2168 static void mad_error_handler(struct ib_mad_port_private
*port_priv
,
2171 struct ib_mad_list_head
*mad_list
;
2172 struct ib_mad_qp_info
*qp_info
;
2173 struct ib_mad_send_wr_private
*mad_send_wr
;
2176 /* Determine if failure was a send or receive */
2177 mad_list
= (struct ib_mad_list_head
*)(unsigned long)wc
->wr_id
;
2178 qp_info
= mad_list
->mad_queue
->qp_info
;
2179 if (mad_list
->mad_queue
== &qp_info
->recv_queue
)
2181 * Receive errors indicate that the QP has entered the error
2182 * state - error handling/shutdown code will cleanup
2187 * Send errors will transition the QP to SQE - move
2188 * QP to RTS and repost flushed work requests
2190 mad_send_wr
= container_of(mad_list
, struct ib_mad_send_wr_private
,
2192 if (wc
->status
== IB_WC_WR_FLUSH_ERR
) {
2193 if (mad_send_wr
->retry
) {
2195 struct ib_send_wr
*bad_send_wr
;
2197 mad_send_wr
->retry
= 0;
2198 ret
= ib_post_send(qp_info
->qp
, &mad_send_wr
->send_wr
,
2201 ib_mad_send_done_handler(port_priv
, wc
);
2203 ib_mad_send_done_handler(port_priv
, wc
);
2205 struct ib_qp_attr
*attr
;
2207 /* Transition QP to RTS and fail offending send */
2208 attr
= kmalloc(sizeof *attr
, GFP_KERNEL
);
2210 attr
->qp_state
= IB_QPS_RTS
;
2211 attr
->cur_qp_state
= IB_QPS_SQE
;
2212 ret
= ib_modify_qp(qp_info
->qp
, attr
,
2213 IB_QP_STATE
| IB_QP_CUR_STATE
);
2216 printk(KERN_ERR PFX
"mad_error_handler - "
2217 "ib_modify_qp to RTS : %d\n", ret
);
2219 mark_sends_for_retry(qp_info
);
2221 ib_mad_send_done_handler(port_priv
, wc
);
2226 * IB MAD completion callback
2228 static void ib_mad_completion_handler(struct work_struct
*work
)
2230 struct ib_mad_port_private
*port_priv
;
2233 port_priv
= container_of(work
, struct ib_mad_port_private
, work
);
2234 ib_req_notify_cq(port_priv
->cq
, IB_CQ_NEXT_COMP
);
2236 while (ib_poll_cq(port_priv
->cq
, 1, &wc
) == 1) {
2237 if (wc
.status
== IB_WC_SUCCESS
) {
2238 switch (wc
.opcode
) {
2240 ib_mad_send_done_handler(port_priv
, &wc
);
2243 ib_mad_recv_done_handler(port_priv
, &wc
);
2250 mad_error_handler(port_priv
, &wc
);
2254 static void cancel_mads(struct ib_mad_agent_private
*mad_agent_priv
)
2256 unsigned long flags
;
2257 struct ib_mad_send_wr_private
*mad_send_wr
, *temp_mad_send_wr
;
2258 struct ib_mad_send_wc mad_send_wc
;
2259 struct list_head cancel_list
;
2261 INIT_LIST_HEAD(&cancel_list
);
2263 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
2264 list_for_each_entry_safe(mad_send_wr
, temp_mad_send_wr
,
2265 &mad_agent_priv
->send_list
, agent_list
) {
2266 if (mad_send_wr
->status
== IB_WC_SUCCESS
) {
2267 mad_send_wr
->status
= IB_WC_WR_FLUSH_ERR
;
2268 mad_send_wr
->refcount
-= (mad_send_wr
->timeout
> 0);
2272 /* Empty wait list to prevent receives from finding a request */
2273 list_splice_init(&mad_agent_priv
->wait_list
, &cancel_list
);
2274 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2276 /* Report all cancelled requests */
2277 mad_send_wc
.status
= IB_WC_WR_FLUSH_ERR
;
2278 mad_send_wc
.vendor_err
= 0;
2280 list_for_each_entry_safe(mad_send_wr
, temp_mad_send_wr
,
2281 &cancel_list
, agent_list
) {
2282 mad_send_wc
.send_buf
= &mad_send_wr
->send_buf
;
2283 list_del(&mad_send_wr
->agent_list
);
2284 mad_agent_priv
->agent
.send_handler(&mad_agent_priv
->agent
,
2286 atomic_dec(&mad_agent_priv
->refcount
);
2290 static struct ib_mad_send_wr_private
*
2291 find_send_wr(struct ib_mad_agent_private
*mad_agent_priv
,
2292 struct ib_mad_send_buf
*send_buf
)
2294 struct ib_mad_send_wr_private
*mad_send_wr
;
2296 list_for_each_entry(mad_send_wr
, &mad_agent_priv
->wait_list
,
2298 if (&mad_send_wr
->send_buf
== send_buf
)
2302 list_for_each_entry(mad_send_wr
, &mad_agent_priv
->send_list
,
2304 if (is_data_mad(mad_agent_priv
, mad_send_wr
->send_buf
.mad
) &&
2305 &mad_send_wr
->send_buf
== send_buf
)
2311 int ib_modify_mad(struct ib_mad_agent
*mad_agent
,
2312 struct ib_mad_send_buf
*send_buf
, u32 timeout_ms
)
2314 struct ib_mad_agent_private
*mad_agent_priv
;
2315 struct ib_mad_send_wr_private
*mad_send_wr
;
2316 unsigned long flags
;
2319 mad_agent_priv
= container_of(mad_agent
, struct ib_mad_agent_private
,
2321 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
2322 mad_send_wr
= find_send_wr(mad_agent_priv
, send_buf
);
2323 if (!mad_send_wr
|| mad_send_wr
->status
!= IB_WC_SUCCESS
) {
2324 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2328 active
= (!mad_send_wr
->timeout
|| mad_send_wr
->refcount
> 1);
2330 mad_send_wr
->status
= IB_WC_WR_FLUSH_ERR
;
2331 mad_send_wr
->refcount
-= (mad_send_wr
->timeout
> 0);
2334 mad_send_wr
->send_buf
.timeout_ms
= timeout_ms
;
2336 mad_send_wr
->timeout
= msecs_to_jiffies(timeout_ms
);
2338 ib_reset_mad_timeout(mad_send_wr
, timeout_ms
);
2340 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2343 EXPORT_SYMBOL(ib_modify_mad
);
2345 void ib_cancel_mad(struct ib_mad_agent
*mad_agent
,
2346 struct ib_mad_send_buf
*send_buf
)
2348 ib_modify_mad(mad_agent
, send_buf
, 0);
2350 EXPORT_SYMBOL(ib_cancel_mad
);
2352 static void local_completions(struct work_struct
*work
)
2354 struct ib_mad_agent_private
*mad_agent_priv
;
2355 struct ib_mad_local_private
*local
;
2356 struct ib_mad_agent_private
*recv_mad_agent
;
2357 unsigned long flags
;
2360 struct ib_mad_send_wc mad_send_wc
;
2363 container_of(work
, struct ib_mad_agent_private
, local_work
);
2365 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
2366 while (!list_empty(&mad_agent_priv
->local_list
)) {
2367 local
= list_entry(mad_agent_priv
->local_list
.next
,
2368 struct ib_mad_local_private
,
2370 list_del(&local
->completion_list
);
2371 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2373 if (local
->mad_priv
) {
2374 recv_mad_agent
= local
->recv_mad_agent
;
2375 if (!recv_mad_agent
) {
2376 printk(KERN_ERR PFX
"No receive MAD agent for local completion\n");
2378 goto local_send_completion
;
2382 * Defined behavior is to complete response
2385 build_smp_wc(recv_mad_agent
->agent
.qp
,
2386 (unsigned long) local
->mad_send_wr
,
2387 be16_to_cpu(IB_LID_PERMISSIVE
),
2388 0, recv_mad_agent
->agent
.port_num
, &wc
);
2390 local
->mad_priv
->header
.recv_wc
.wc
= &wc
;
2391 local
->mad_priv
->header
.recv_wc
.mad_len
=
2392 sizeof(struct ib_mad
);
2393 INIT_LIST_HEAD(&local
->mad_priv
->header
.recv_wc
.rmpp_list
);
2394 list_add(&local
->mad_priv
->header
.recv_wc
.recv_buf
.list
,
2395 &local
->mad_priv
->header
.recv_wc
.rmpp_list
);
2396 local
->mad_priv
->header
.recv_wc
.recv_buf
.grh
= NULL
;
2397 local
->mad_priv
->header
.recv_wc
.recv_buf
.mad
=
2398 &local
->mad_priv
->mad
.mad
;
2399 if (atomic_read(&recv_mad_agent
->qp_info
->snoop_count
))
2400 snoop_recv(recv_mad_agent
->qp_info
,
2401 &local
->mad_priv
->header
.recv_wc
,
2402 IB_MAD_SNOOP_RECVS
);
2403 recv_mad_agent
->agent
.recv_handler(
2404 &recv_mad_agent
->agent
,
2405 &local
->mad_priv
->header
.recv_wc
);
2406 spin_lock_irqsave(&recv_mad_agent
->lock
, flags
);
2407 atomic_dec(&recv_mad_agent
->refcount
);
2408 spin_unlock_irqrestore(&recv_mad_agent
->lock
, flags
);
2411 local_send_completion
:
2413 mad_send_wc
.status
= IB_WC_SUCCESS
;
2414 mad_send_wc
.vendor_err
= 0;
2415 mad_send_wc
.send_buf
= &local
->mad_send_wr
->send_buf
;
2416 if (atomic_read(&mad_agent_priv
->qp_info
->snoop_count
))
2417 snoop_send(mad_agent_priv
->qp_info
,
2418 &local
->mad_send_wr
->send_buf
,
2419 &mad_send_wc
, IB_MAD_SNOOP_SEND_COMPLETIONS
);
2420 mad_agent_priv
->agent
.send_handler(&mad_agent_priv
->agent
,
2423 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
2424 atomic_dec(&mad_agent_priv
->refcount
);
2426 kmem_cache_free(ib_mad_cache
, local
->mad_priv
);
2429 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2432 static int retry_send(struct ib_mad_send_wr_private
*mad_send_wr
)
2436 if (!mad_send_wr
->retries_left
)
2439 mad_send_wr
->retries_left
--;
2440 mad_send_wr
->send_buf
.retries
++;
2442 mad_send_wr
->timeout
= msecs_to_jiffies(mad_send_wr
->send_buf
.timeout_ms
);
2444 if (mad_send_wr
->mad_agent_priv
->agent
.rmpp_version
) {
2445 ret
= ib_retry_rmpp(mad_send_wr
);
2447 case IB_RMPP_RESULT_UNHANDLED
:
2448 ret
= ib_send_mad(mad_send_wr
);
2450 case IB_RMPP_RESULT_CONSUMED
:
2458 ret
= ib_send_mad(mad_send_wr
);
2461 mad_send_wr
->refcount
++;
2462 list_add_tail(&mad_send_wr
->agent_list
,
2463 &mad_send_wr
->mad_agent_priv
->send_list
);
2468 static void timeout_sends(struct work_struct
*work
)
2470 struct ib_mad_agent_private
*mad_agent_priv
;
2471 struct ib_mad_send_wr_private
*mad_send_wr
;
2472 struct ib_mad_send_wc mad_send_wc
;
2473 unsigned long flags
, delay
;
2475 mad_agent_priv
= container_of(work
, struct ib_mad_agent_private
,
2477 mad_send_wc
.vendor_err
= 0;
2479 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
2480 while (!list_empty(&mad_agent_priv
->wait_list
)) {
2481 mad_send_wr
= list_entry(mad_agent_priv
->wait_list
.next
,
2482 struct ib_mad_send_wr_private
,
2485 if (time_after(mad_send_wr
->timeout
, jiffies
)) {
2486 delay
= mad_send_wr
->timeout
- jiffies
;
2487 if ((long)delay
<= 0)
2489 queue_delayed_work(mad_agent_priv
->qp_info
->
2491 &mad_agent_priv
->timed_work
, delay
);
2495 list_del(&mad_send_wr
->agent_list
);
2496 if (mad_send_wr
->status
== IB_WC_SUCCESS
&&
2497 !retry_send(mad_send_wr
))
2500 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2502 if (mad_send_wr
->status
== IB_WC_SUCCESS
)
2503 mad_send_wc
.status
= IB_WC_RESP_TIMEOUT_ERR
;
2505 mad_send_wc
.status
= mad_send_wr
->status
;
2506 mad_send_wc
.send_buf
= &mad_send_wr
->send_buf
;
2507 mad_agent_priv
->agent
.send_handler(&mad_agent_priv
->agent
,
2510 atomic_dec(&mad_agent_priv
->refcount
);
2511 spin_lock_irqsave(&mad_agent_priv
->lock
, flags
);
2513 spin_unlock_irqrestore(&mad_agent_priv
->lock
, flags
);
2516 static void ib_mad_thread_completion_handler(struct ib_cq
*cq
, void *arg
)
2518 struct ib_mad_port_private
*port_priv
= cq
->cq_context
;
2519 unsigned long flags
;
2521 spin_lock_irqsave(&ib_mad_port_list_lock
, flags
);
2522 if (!list_empty(&port_priv
->port_list
))
2523 queue_work(port_priv
->wq
, &port_priv
->work
);
2524 spin_unlock_irqrestore(&ib_mad_port_list_lock
, flags
);
2528 * Allocate receive MADs and post receive WRs for them
2530 static int ib_mad_post_receive_mads(struct ib_mad_qp_info
*qp_info
,
2531 struct ib_mad_private
*mad
)
2533 unsigned long flags
;
2535 struct ib_mad_private
*mad_priv
;
2536 struct ib_sge sg_list
;
2537 struct ib_recv_wr recv_wr
, *bad_recv_wr
;
2538 struct ib_mad_queue
*recv_queue
= &qp_info
->recv_queue
;
2540 /* Initialize common scatter list fields */
2541 sg_list
.length
= sizeof *mad_priv
- sizeof mad_priv
->header
;
2542 sg_list
.lkey
= (*qp_info
->port_priv
->mr
).lkey
;
2544 /* Initialize common receive WR fields */
2545 recv_wr
.next
= NULL
;
2546 recv_wr
.sg_list
= &sg_list
;
2547 recv_wr
.num_sge
= 1;
2550 /* Allocate and map receive buffer */
2555 mad_priv
= kmem_cache_alloc(ib_mad_cache
, GFP_KERNEL
);
2557 printk(KERN_ERR PFX
"No memory for receive buffer\n");
2562 sg_list
.addr
= ib_dma_map_single(qp_info
->port_priv
->device
,
2565 sizeof mad_priv
->header
,
2567 mad_priv
->header
.mapping
= sg_list
.addr
;
2568 recv_wr
.wr_id
= (unsigned long)&mad_priv
->header
.mad_list
;
2569 mad_priv
->header
.mad_list
.mad_queue
= recv_queue
;
2571 /* Post receive WR */
2572 spin_lock_irqsave(&recv_queue
->lock
, flags
);
2573 post
= (++recv_queue
->count
< recv_queue
->max_active
);
2574 list_add_tail(&mad_priv
->header
.mad_list
.list
, &recv_queue
->list
);
2575 spin_unlock_irqrestore(&recv_queue
->lock
, flags
);
2576 ret
= ib_post_recv(qp_info
->qp
, &recv_wr
, &bad_recv_wr
);
2578 spin_lock_irqsave(&recv_queue
->lock
, flags
);
2579 list_del(&mad_priv
->header
.mad_list
.list
);
2580 recv_queue
->count
--;
2581 spin_unlock_irqrestore(&recv_queue
->lock
, flags
);
2582 ib_dma_unmap_single(qp_info
->port_priv
->device
,
2583 mad_priv
->header
.mapping
,
2585 sizeof mad_priv
->header
,
2587 kmem_cache_free(ib_mad_cache
, mad_priv
);
2588 printk(KERN_ERR PFX
"ib_post_recv failed: %d\n", ret
);
2597 * Return all the posted receive MADs
2599 static void cleanup_recv_queue(struct ib_mad_qp_info
*qp_info
)
2601 struct ib_mad_private_header
*mad_priv_hdr
;
2602 struct ib_mad_private
*recv
;
2603 struct ib_mad_list_head
*mad_list
;
2605 while (!list_empty(&qp_info
->recv_queue
.list
)) {
2607 mad_list
= list_entry(qp_info
->recv_queue
.list
.next
,
2608 struct ib_mad_list_head
, list
);
2609 mad_priv_hdr
= container_of(mad_list
,
2610 struct ib_mad_private_header
,
2612 recv
= container_of(mad_priv_hdr
, struct ib_mad_private
,
2615 /* Remove from posted receive MAD list */
2616 list_del(&mad_list
->list
);
2618 ib_dma_unmap_single(qp_info
->port_priv
->device
,
2619 recv
->header
.mapping
,
2620 sizeof(struct ib_mad_private
) -
2621 sizeof(struct ib_mad_private_header
),
2623 kmem_cache_free(ib_mad_cache
, recv
);
2626 qp_info
->recv_queue
.count
= 0;
2632 static int ib_mad_port_start(struct ib_mad_port_private
*port_priv
)
2635 struct ib_qp_attr
*attr
;
2638 attr
= kmalloc(sizeof *attr
, GFP_KERNEL
);
2640 printk(KERN_ERR PFX
"Couldn't kmalloc ib_qp_attr\n");
2644 for (i
= 0; i
< IB_MAD_QPS_CORE
; i
++) {
2645 qp
= port_priv
->qp_info
[i
].qp
;
2647 * PKey index for QP1 is irrelevant but
2648 * one is needed for the Reset to Init transition
2650 attr
->qp_state
= IB_QPS_INIT
;
2651 attr
->pkey_index
= 0;
2652 attr
->qkey
= (qp
->qp_num
== 0) ? 0 : IB_QP1_QKEY
;
2653 ret
= ib_modify_qp(qp
, attr
, IB_QP_STATE
|
2654 IB_QP_PKEY_INDEX
| IB_QP_QKEY
);
2656 printk(KERN_ERR PFX
"Couldn't change QP%d state to "
2657 "INIT: %d\n", i
, ret
);
2661 attr
->qp_state
= IB_QPS_RTR
;
2662 ret
= ib_modify_qp(qp
, attr
, IB_QP_STATE
);
2664 printk(KERN_ERR PFX
"Couldn't change QP%d state to "
2665 "RTR: %d\n", i
, ret
);
2669 attr
->qp_state
= IB_QPS_RTS
;
2670 attr
->sq_psn
= IB_MAD_SEND_Q_PSN
;
2671 ret
= ib_modify_qp(qp
, attr
, IB_QP_STATE
| IB_QP_SQ_PSN
);
2673 printk(KERN_ERR PFX
"Couldn't change QP%d state to "
2674 "RTS: %d\n", i
, ret
);
2679 ret
= ib_req_notify_cq(port_priv
->cq
, IB_CQ_NEXT_COMP
);
2681 printk(KERN_ERR PFX
"Failed to request completion "
2682 "notification: %d\n", ret
);
2686 for (i
= 0; i
< IB_MAD_QPS_CORE
; i
++) {
2687 ret
= ib_mad_post_receive_mads(&port_priv
->qp_info
[i
], NULL
);
2689 printk(KERN_ERR PFX
"Couldn't post receive WRs\n");
2698 static void qp_event_handler(struct ib_event
*event
, void *qp_context
)
2700 struct ib_mad_qp_info
*qp_info
= qp_context
;
2702 /* It's worse than that! He's dead, Jim! */
2703 printk(KERN_ERR PFX
"Fatal error (%d) on MAD QP (%d)\n",
2704 event
->event
, qp_info
->qp
->qp_num
);
2707 static void init_mad_queue(struct ib_mad_qp_info
*qp_info
,
2708 struct ib_mad_queue
*mad_queue
)
2710 mad_queue
->qp_info
= qp_info
;
2711 mad_queue
->count
= 0;
2712 spin_lock_init(&mad_queue
->lock
);
2713 INIT_LIST_HEAD(&mad_queue
->list
);
2716 static void init_mad_qp(struct ib_mad_port_private
*port_priv
,
2717 struct ib_mad_qp_info
*qp_info
)
2719 qp_info
->port_priv
= port_priv
;
2720 init_mad_queue(qp_info
, &qp_info
->send_queue
);
2721 init_mad_queue(qp_info
, &qp_info
->recv_queue
);
2722 INIT_LIST_HEAD(&qp_info
->overflow_list
);
2723 spin_lock_init(&qp_info
->snoop_lock
);
2724 qp_info
->snoop_table
= NULL
;
2725 qp_info
->snoop_table_size
= 0;
2726 atomic_set(&qp_info
->snoop_count
, 0);
2729 static int create_mad_qp(struct ib_mad_qp_info
*qp_info
,
2730 enum ib_qp_type qp_type
)
2732 struct ib_qp_init_attr qp_init_attr
;
2735 memset(&qp_init_attr
, 0, sizeof qp_init_attr
);
2736 qp_init_attr
.send_cq
= qp_info
->port_priv
->cq
;
2737 qp_init_attr
.recv_cq
= qp_info
->port_priv
->cq
;
2738 qp_init_attr
.sq_sig_type
= IB_SIGNAL_ALL_WR
;
2739 qp_init_attr
.cap
.max_send_wr
= IB_MAD_QP_SEND_SIZE
;
2740 qp_init_attr
.cap
.max_recv_wr
= IB_MAD_QP_RECV_SIZE
;
2741 qp_init_attr
.cap
.max_send_sge
= IB_MAD_SEND_REQ_MAX_SG
;
2742 qp_init_attr
.cap
.max_recv_sge
= IB_MAD_RECV_REQ_MAX_SG
;
2743 qp_init_attr
.qp_type
= qp_type
;
2744 qp_init_attr
.port_num
= qp_info
->port_priv
->port_num
;
2745 qp_init_attr
.qp_context
= qp_info
;
2746 qp_init_attr
.event_handler
= qp_event_handler
;
2747 qp_info
->qp
= ib_create_qp(qp_info
->port_priv
->pd
, &qp_init_attr
);
2748 if (IS_ERR(qp_info
->qp
)) {
2749 printk(KERN_ERR PFX
"Couldn't create ib_mad QP%d\n",
2750 get_spl_qp_index(qp_type
));
2751 ret
= PTR_ERR(qp_info
->qp
);
2754 /* Use minimum queue sizes unless the CQ is resized */
2755 qp_info
->send_queue
.max_active
= IB_MAD_QP_SEND_SIZE
;
2756 qp_info
->recv_queue
.max_active
= IB_MAD_QP_RECV_SIZE
;
2763 static void destroy_mad_qp(struct ib_mad_qp_info
*qp_info
)
2765 ib_destroy_qp(qp_info
->qp
);
2766 kfree(qp_info
->snoop_table
);
2771 * Create the QP, PD, MR, and CQ if needed
2773 static int ib_mad_port_open(struct ib_device
*device
,
2777 struct ib_mad_port_private
*port_priv
;
2778 unsigned long flags
;
2779 char name
[sizeof "ib_mad123"];
2781 /* Create new device info */
2782 port_priv
= kzalloc(sizeof *port_priv
, GFP_KERNEL
);
2784 printk(KERN_ERR PFX
"No memory for ib_mad_port_private\n");
2788 port_priv
->device
= device
;
2789 port_priv
->port_num
= port_num
;
2790 spin_lock_init(&port_priv
->reg_lock
);
2791 INIT_LIST_HEAD(&port_priv
->agent_list
);
2792 init_mad_qp(port_priv
, &port_priv
->qp_info
[0]);
2793 init_mad_qp(port_priv
, &port_priv
->qp_info
[1]);
2795 cq_size
= (IB_MAD_QP_SEND_SIZE
+ IB_MAD_QP_RECV_SIZE
) * 2;
2796 port_priv
->cq
= ib_create_cq(port_priv
->device
,
2797 ib_mad_thread_completion_handler
,
2798 NULL
, port_priv
, cq_size
, 0);
2799 if (IS_ERR(port_priv
->cq
)) {
2800 printk(KERN_ERR PFX
"Couldn't create ib_mad CQ\n");
2801 ret
= PTR_ERR(port_priv
->cq
);
2805 port_priv
->pd
= ib_alloc_pd(device
);
2806 if (IS_ERR(port_priv
->pd
)) {
2807 printk(KERN_ERR PFX
"Couldn't create ib_mad PD\n");
2808 ret
= PTR_ERR(port_priv
->pd
);
2812 port_priv
->mr
= ib_get_dma_mr(port_priv
->pd
, IB_ACCESS_LOCAL_WRITE
);
2813 if (IS_ERR(port_priv
->mr
)) {
2814 printk(KERN_ERR PFX
"Couldn't get ib_mad DMA MR\n");
2815 ret
= PTR_ERR(port_priv
->mr
);
2819 ret
= create_mad_qp(&port_priv
->qp_info
[0], IB_QPT_SMI
);
2822 ret
= create_mad_qp(&port_priv
->qp_info
[1], IB_QPT_GSI
);
2826 snprintf(name
, sizeof name
, "ib_mad%d", port_num
);
2827 port_priv
->wq
= create_singlethread_workqueue(name
);
2828 if (!port_priv
->wq
) {
2832 INIT_WORK(&port_priv
->work
, ib_mad_completion_handler
);
2834 spin_lock_irqsave(&ib_mad_port_list_lock
, flags
);
2835 list_add_tail(&port_priv
->port_list
, &ib_mad_port_list
);
2836 spin_unlock_irqrestore(&ib_mad_port_list_lock
, flags
);
2838 ret
= ib_mad_port_start(port_priv
);
2840 printk(KERN_ERR PFX
"Couldn't start port\n");
2847 spin_lock_irqsave(&ib_mad_port_list_lock
, flags
);
2848 list_del_init(&port_priv
->port_list
);
2849 spin_unlock_irqrestore(&ib_mad_port_list_lock
, flags
);
2851 destroy_workqueue(port_priv
->wq
);
2853 destroy_mad_qp(&port_priv
->qp_info
[1]);
2855 destroy_mad_qp(&port_priv
->qp_info
[0]);
2857 ib_dereg_mr(port_priv
->mr
);
2859 ib_dealloc_pd(port_priv
->pd
);
2861 ib_destroy_cq(port_priv
->cq
);
2862 cleanup_recv_queue(&port_priv
->qp_info
[1]);
2863 cleanup_recv_queue(&port_priv
->qp_info
[0]);
2872 * If there are no classes using the port, free the port
2873 * resources (CQ, MR, PD, QP) and remove the port's info structure
2875 static int ib_mad_port_close(struct ib_device
*device
, int port_num
)
2877 struct ib_mad_port_private
*port_priv
;
2878 unsigned long flags
;
2880 spin_lock_irqsave(&ib_mad_port_list_lock
, flags
);
2881 port_priv
= __ib_get_mad_port(device
, port_num
);
2882 if (port_priv
== NULL
) {
2883 spin_unlock_irqrestore(&ib_mad_port_list_lock
, flags
);
2884 printk(KERN_ERR PFX
"Port %d not found\n", port_num
);
2887 list_del_init(&port_priv
->port_list
);
2888 spin_unlock_irqrestore(&ib_mad_port_list_lock
, flags
);
2890 destroy_workqueue(port_priv
->wq
);
2891 destroy_mad_qp(&port_priv
->qp_info
[1]);
2892 destroy_mad_qp(&port_priv
->qp_info
[0]);
2893 ib_dereg_mr(port_priv
->mr
);
2894 ib_dealloc_pd(port_priv
->pd
);
2895 ib_destroy_cq(port_priv
->cq
);
2896 cleanup_recv_queue(&port_priv
->qp_info
[1]);
2897 cleanup_recv_queue(&port_priv
->qp_info
[0]);
2898 /* XXX: Handle deallocation of MAD registration tables */
2905 static void ib_mad_init_device(struct ib_device
*device
)
2909 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
2912 if (device
->node_type
== RDMA_NODE_IB_SWITCH
) {
2917 end
= device
->phys_port_cnt
;
2920 for (i
= start
; i
<= end
; i
++) {
2921 if (ib_mad_port_open(device
, i
)) {
2922 printk(KERN_ERR PFX
"Couldn't open %s port %d\n",
2926 if (ib_agent_port_open(device
, i
)) {
2927 printk(KERN_ERR PFX
"Couldn't open %s port %d "
2936 if (ib_mad_port_close(device
, i
))
2937 printk(KERN_ERR PFX
"Couldn't close %s port %d\n",
2943 while (i
>= start
) {
2944 if (ib_agent_port_close(device
, i
))
2945 printk(KERN_ERR PFX
"Couldn't close %s port %d "
2948 if (ib_mad_port_close(device
, i
))
2949 printk(KERN_ERR PFX
"Couldn't close %s port %d\n",
2955 static void ib_mad_remove_device(struct ib_device
*device
)
2957 int i
, num_ports
, cur_port
;
2959 if (device
->node_type
== RDMA_NODE_IB_SWITCH
) {
2963 num_ports
= device
->phys_port_cnt
;
2966 for (i
= 0; i
< num_ports
; i
++, cur_port
++) {
2967 if (ib_agent_port_close(device
, cur_port
))
2968 printk(KERN_ERR PFX
"Couldn't close %s port %d "
2970 device
->name
, cur_port
);
2971 if (ib_mad_port_close(device
, cur_port
))
2972 printk(KERN_ERR PFX
"Couldn't close %s port %d\n",
2973 device
->name
, cur_port
);
2977 static struct ib_client mad_client
= {
2979 .add
= ib_mad_init_device
,
2980 .remove
= ib_mad_remove_device
2983 static int __init
ib_mad_init_module(void)
2987 spin_lock_init(&ib_mad_port_list_lock
);
2989 ib_mad_cache
= kmem_cache_create("ib_mad",
2990 sizeof(struct ib_mad_private
),
2994 if (!ib_mad_cache
) {
2995 printk(KERN_ERR PFX
"Couldn't create ib_mad cache\n");
3000 INIT_LIST_HEAD(&ib_mad_port_list
);
3002 if (ib_register_client(&mad_client
)) {
3003 printk(KERN_ERR PFX
"Couldn't register ib_mad client\n");
3011 kmem_cache_destroy(ib_mad_cache
);
3016 static void __exit
ib_mad_cleanup_module(void)
3018 ib_unregister_client(&mad_client
);
3019 kmem_cache_destroy(ib_mad_cache
);
3022 module_init(ib_mad_init_module
);
3023 module_exit(ib_mad_cleanup_module
);