2005-04-17 02:20:36 +04:00
/*
* Copyright ( c ) 2004 , 2005 , Voltaire , Inc . All rights reserved .
2005-07-27 22:45:37 +04:00
* Copyright ( c ) 2005 Intel Corporation . All rights reserved .
* Copyright ( c ) 2005 Sun Microsystems , Inc . All rights reserved .
2009-09-07 19:28:48 +04:00
* Copyright ( c ) 2009 HNR Consulting . All rights reserved .
2005-04-17 02:20:36 +04:00
*
* This software is available to you under a choice of one of two
* licenses . You may choose to be licensed under the terms of the GNU
* General Public License ( GPL ) Version 2 , available from the file
* COPYING in the main directory of this source tree , or the
* OpenIB . org BSD license below :
*
* Redistribution and use in source and binary forms , with or
* without modification , are permitted provided that the following
* conditions are met :
*
* - Redistributions of source code must retain the above
* copyright notice , this list of conditions and the following
* disclaimer .
*
* - Redistributions in binary form must reproduce the above
* copyright notice , this list of conditions and the following
* disclaimer in the documentation and / or other materials
* provided with the distribution .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND ,
* EXPRESS OR IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY , FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT . IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER LIABILITY , WHETHER IN AN
* ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM , OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE .
*/
# ifndef __IB_MAD_PRIV_H__
# define __IB_MAD_PRIV_H__
2006-05-13 01:57:52 +04:00
# include <linux/completion.h>
2006-09-23 19:44:16 +04:00
# include <linux/err.h>
2005-04-17 02:20:36 +04:00
# include <linux/workqueue.h>
2005-08-26 00:40:04 +04:00
# include <rdma/ib_mad.h>
# include <rdma/ib_smi.h>
2015-06-06 21:38:34 +03:00
# include <rdma/opa_smi.h>
2005-04-17 02:20:36 +04:00
# define IB_MAD_QPS_CORE 2 /* Always QP0 and QP1 as a minimum */
/* QP and CQ parameters */
# define IB_MAD_QP_SEND_SIZE 128
# define IB_MAD_QP_RECV_SIZE 512
2009-09-07 19:28:48 +04:00
# define IB_MAD_QP_MIN_SIZE 64
# define IB_MAD_QP_MAX_SIZE 8192
2005-04-17 02:20:36 +04:00
# define IB_MAD_SEND_REQ_MAX_SG 2
# define IB_MAD_RECV_REQ_MAX_SG 1
# define IB_MAD_SEND_Q_PSN 0
/* Registration table sizes */
# define MAX_MGMT_CLASS 80
2015-06-06 21:38:33 +03:00
# define MAX_MGMT_VERSION 0x83
2005-04-17 02:20:36 +04:00
# define MAX_MGMT_OUI 8
# define MAX_MGMT_VENDOR_RANGE2 (IB_MGMT_CLASS_VENDOR_RANGE2_END - \
IB_MGMT_CLASS_VENDOR_RANGE2_START + 1 )
struct ib_mad_list_head {
struct list_head list ;
2016-01-06 09:46:12 +03:00
struct ib_cqe cqe ;
2005-04-17 02:20:36 +04:00
struct ib_mad_queue * mad_queue ;
} ;
struct ib_mad_private_header {
struct ib_mad_list_head mad_list ;
struct ib_mad_recv_wc recv_wc ;
2005-04-17 02:26:08 +04:00
struct ib_wc wc ;
2006-12-13 01:28:30 +03:00
u64 mapping ;
2005-04-17 02:20:36 +04:00
} __attribute__ ( ( packed ) ) ;
struct ib_mad_private {
struct ib_mad_private_header header ;
2015-06-06 21:38:30 +03:00
size_t mad_size ;
2005-04-17 02:20:36 +04:00
struct ib_grh grh ;
2015-06-06 21:38:30 +03:00
u8 mad [ 0 ] ;
2005-04-17 02:20:36 +04:00
} __attribute__ ( ( packed ) ) ;
2006-03-04 08:54:13 +03:00
struct ib_rmpp_segment {
struct list_head list ;
u32 num ;
u8 data [ 0 ] ;
} ;
2005-04-17 02:20:36 +04:00
struct ib_mad_agent_private {
struct ib_mad_agent agent ;
struct ib_mad_reg_req * reg_req ;
struct ib_mad_qp_info * qp_info ;
spinlock_t lock ;
struct list_head send_list ;
struct list_head wait_list ;
2005-07-27 22:45:26 +04:00
struct list_head done_list ;
2006-11-22 17:57:56 +03:00
struct delayed_work timed_work ;
2005-04-17 02:20:36 +04:00
unsigned long timeout ;
struct list_head local_list ;
struct work_struct local_work ;
2005-07-27 22:45:37 +04:00
struct list_head rmpp_list ;
2005-04-17 02:20:36 +04:00
atomic_t refcount ;
2018-06-13 15:34:03 +03:00
union {
struct completion comp ;
struct rcu_head rcu ;
} ;
2005-04-17 02:20:36 +04:00
} ;
struct ib_mad_snoop_private {
struct ib_mad_agent agent ;
struct ib_mad_qp_info * qp_info ;
int snoop_index ;
int mad_snoop_flags ;
atomic_t refcount ;
2006-05-13 01:57:52 +04:00
struct completion comp ;
2005-04-17 02:20:36 +04:00
} ;
struct ib_mad_send_wr_private {
struct ib_mad_list_head mad_list ;
struct list_head agent_list ;
2005-07-27 22:45:25 +04:00
struct ib_mad_agent_private * mad_agent_priv ;
2005-10-25 21:51:39 +04:00
struct ib_mad_send_buf send_buf ;
2006-12-13 01:28:30 +03:00
u64 header_mapping ;
u64 payload_mapping ;
2015-10-08 11:16:33 +03:00
struct ib_ud_wr send_wr ;
2005-04-17 02:20:36 +04:00
struct ib_sge sg_list [ IB_MAD_SEND_REQ_MAX_SG ] ;
2005-08-14 08:05:57 +04:00
__be64 tid ;
2005-04-17 02:20:36 +04:00
unsigned long timeout ;
2007-11-27 11:11:04 +03:00
int max_retries ;
int retries_left ;
2005-04-17 02:20:36 +04:00
int retry ;
int refcount ;
enum ib_wc_status status ;
2005-07-27 22:45:37 +04:00
/* RMPP control */
2006-03-04 08:54:13 +03:00
struct list_head rmpp_list ;
struct ib_rmpp_segment * last_ack_seg ;
struct ib_rmpp_segment * cur_seg ;
2005-07-27 22:45:37 +04:00
int last_ack ;
int seg_num ;
int newwin ;
int pad ;
2005-04-17 02:20:36 +04:00
} ;
struct ib_mad_local_private {
struct list_head completion_list ;
struct ib_mad_private * mad_priv ;
struct ib_mad_agent_private * recv_mad_agent ;
2005-10-25 21:51:39 +04:00
struct ib_mad_send_wr_private * mad_send_wr ;
2015-06-10 23:16:48 +03:00
size_t return_wc_byte_len ;
2005-04-17 02:20:36 +04:00
} ;
struct ib_mad_mgmt_method_table {
struct ib_mad_agent_private * agent [ IB_MGMT_MAX_METHODS ] ;
} ;
struct ib_mad_mgmt_class_table {
struct ib_mad_mgmt_method_table * method_table [ MAX_MGMT_CLASS ] ;
} ;
struct ib_mad_mgmt_vendor_class {
u8 oui [ MAX_MGMT_OUI ] [ 3 ] ;
struct ib_mad_mgmt_method_table * method_table [ MAX_MGMT_OUI ] ;
} ;
struct ib_mad_mgmt_vendor_class_table {
struct ib_mad_mgmt_vendor_class * vendor_class [ MAX_MGMT_VENDOR_RANGE2 ] ;
} ;
struct ib_mad_mgmt_version_table {
struct ib_mad_mgmt_class_table * class ;
struct ib_mad_mgmt_vendor_class_table * vendor ;
} ;
struct ib_mad_queue {
spinlock_t lock ;
struct list_head list ;
int count ;
int max_active ;
struct ib_mad_qp_info * qp_info ;
} ;
struct ib_mad_qp_info {
struct ib_mad_port_private * port_priv ;
struct ib_qp * qp ;
struct ib_mad_queue send_queue ;
struct ib_mad_queue recv_queue ;
struct list_head overflow_list ;
spinlock_t snoop_lock ;
struct ib_mad_snoop_private * * snoop_table ;
int snoop_table_size ;
atomic_t snoop_count ;
} ;
struct ib_mad_port_private {
struct list_head port_list ;
struct ib_device * device ;
int port_num ;
struct ib_cq * cq ;
struct ib_pd * pd ;
spinlock_t reg_lock ;
struct ib_mad_mgmt_version_table version [ MAX_MGMT_VERSION ] ;
struct workqueue_struct * wq ;
struct ib_mad_qp_info qp_info [ IB_MAD_QPS_CORE ] ;
} ;
2005-07-27 22:45:37 +04:00
int ib_send_mad ( struct ib_mad_send_wr_private * mad_send_wr ) ;
struct ib_mad_send_wr_private *
2015-05-08 21:27:24 +03:00
ib_find_send_mad ( const struct ib_mad_agent_private * mad_agent_priv ,
const struct ib_mad_recv_wc * mad_recv_wc ) ;
2005-07-27 22:45:37 +04:00
void ib_mad_complete_send_wr ( struct ib_mad_send_wr_private * mad_send_wr ,
struct ib_mad_send_wc * mad_send_wc ) ;
void ib_mark_mad_done ( struct ib_mad_send_wr_private * mad_send_wr ) ;
void ib_reset_mad_timeout ( struct ib_mad_send_wr_private * mad_send_wr ,
int timeout_ms ) ;
2005-04-17 02:20:36 +04:00
# endif /* __IB_MAD_PRIV_H__ */