/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */ /* * Copyright (c) 2004 Mellanox Technologies Ltd. All rights reserved. * Copyright (c) 2004 Infinicon Corporation. All rights reserved. * Copyright (c) 2004 Intel Corporation. All rights reserved. * Copyright (c) 2004 Topspin Corporation. All rights reserved. * Copyright (c) 2004-2006 Voltaire Corporation. All rights reserved. */ #ifndef IB_MAD_H #define IB_MAD_H #include <linux/list.h> #include <rdma/ib_verbs.h> #include <uapi/rdma/ib_user_mad.h> /* Management base versions */ #define IB_MGMT_BASE_VERSION … #define OPA_MGMT_BASE_VERSION … #define OPA_SM_CLASS_VERSION … /* Management classes */ #define IB_MGMT_CLASS_SUBN_LID_ROUTED … #define IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE … #define IB_MGMT_CLASS_SUBN_ADM … #define IB_MGMT_CLASS_PERF_MGMT … #define IB_MGMT_CLASS_BM … #define IB_MGMT_CLASS_DEVICE_MGMT … #define IB_MGMT_CLASS_CM … #define IB_MGMT_CLASS_SNMP … #define IB_MGMT_CLASS_DEVICE_ADM … #define IB_MGMT_CLASS_BOOT_MGMT … #define IB_MGMT_CLASS_BIS … #define IB_MGMT_CLASS_CONG_MGMT … #define IB_MGMT_CLASS_VENDOR_RANGE2_START … #define IB_MGMT_CLASS_VENDOR_RANGE2_END … #define IB_OPENIB_OUI … /* Management methods */ #define IB_MGMT_METHOD_GET … #define IB_MGMT_METHOD_SET … #define IB_MGMT_METHOD_GET_RESP … #define IB_MGMT_METHOD_SEND … #define IB_MGMT_METHOD_TRAP … #define IB_MGMT_METHOD_REPORT … #define IB_MGMT_METHOD_REPORT_RESP … #define IB_MGMT_METHOD_TRAP_REPRESS … #define IB_MGMT_METHOD_RESP … #define IB_BM_ATTR_MOD_RESP … #define IB_MGMT_MAX_METHODS … /* MAD Status field bit masks */ #define IB_MGMT_MAD_STATUS_SUCCESS … #define IB_MGMT_MAD_STATUS_BUSY … #define IB_MGMT_MAD_STATUS_REDIRECT_REQD … #define IB_MGMT_MAD_STATUS_BAD_VERSION … #define IB_MGMT_MAD_STATUS_UNSUPPORTED_METHOD … #define IB_MGMT_MAD_STATUS_UNSUPPORTED_METHOD_ATTRIB … #define IB_MGMT_MAD_STATUS_INVALID_ATTRIB_VALUE … /* RMPP information */ #define IB_MGMT_RMPP_VERSION … #define IB_MGMT_RMPP_TYPE_DATA … #define IB_MGMT_RMPP_TYPE_ACK … #define IB_MGMT_RMPP_TYPE_STOP … #define IB_MGMT_RMPP_TYPE_ABORT … #define IB_MGMT_RMPP_FLAG_ACTIVE … #define IB_MGMT_RMPP_FLAG_FIRST … #define IB_MGMT_RMPP_FLAG_LAST … #define IB_MGMT_RMPP_NO_RESPTIME … #define IB_MGMT_RMPP_STATUS_SUCCESS … #define IB_MGMT_RMPP_STATUS_RESX … #define IB_MGMT_RMPP_STATUS_ABORT_MIN … #define IB_MGMT_RMPP_STATUS_T2L … #define IB_MGMT_RMPP_STATUS_BAD_LEN … #define IB_MGMT_RMPP_STATUS_BAD_SEG … #define IB_MGMT_RMPP_STATUS_BADT … #define IB_MGMT_RMPP_STATUS_W2S … #define IB_MGMT_RMPP_STATUS_S2B … #define IB_MGMT_RMPP_STATUS_BAD_STATUS … #define IB_MGMT_RMPP_STATUS_UNV … #define IB_MGMT_RMPP_STATUS_TMR … #define IB_MGMT_RMPP_STATUS_UNSPEC … #define IB_MGMT_RMPP_STATUS_ABORT_MAX … #define IB_QP0 … #define IB_QP1 … #define IB_QP1_QKEY … #define IB_QP_SET_QKEY … #define IB_DEFAULT_PKEY_PARTIAL … #define IB_DEFAULT_PKEY_FULL … /* * Generic trap/notice types */ #define IB_NOTICE_TYPE_FATAL … #define IB_NOTICE_TYPE_URGENT … #define IB_NOTICE_TYPE_SECURITY … #define IB_NOTICE_TYPE_SM … #define IB_NOTICE_TYPE_INFO … /* * Generic trap/notice producers */ #define IB_NOTICE_PROD_CA … #define IB_NOTICE_PROD_SWITCH … #define IB_NOTICE_PROD_ROUTER … #define IB_NOTICE_PROD_CLASS_MGR … enum { … }; struct ib_mad_hdr { … }; struct ib_rmpp_hdr { … }; ib_sa_comp_mask; #define IB_SA_COMP_MASK(n) … /* * ib_sa_hdr and ib_sa_mad structures must be packed because they have * 64-bit fields that are only 32-bit aligned. 64-bit architectures will * lay them out wrong otherwise. (And unfortunately they are sent on * the wire so we can't change the layout) */ struct ib_sa_hdr { … } __packed; struct ib_mad { … }; struct opa_mad { … }; struct ib_rmpp_mad { … }; struct opa_rmpp_mad { … }; struct ib_sa_mad { … } __packed; struct ib_vendor_mad { … }; #define IB_MGMT_CLASSPORTINFO_ATTR_ID … #define IB_CLASS_PORT_INFO_RESP_TIME_MASK … #define IB_CLASS_PORT_INFO_RESP_TIME_FIELD_SIZE … struct ib_class_port_info { … }; /* PortInfo CapabilityMask */ enum ib_port_capability_mask_bits { … }; enum ib_port_capability_mask2_bits { … }; #define OPA_CLASS_PORT_INFO_PR_SUPPORT … struct opa_class_port_info { … } __packed; /** * ib_get_cpi_resp_time - Returns the resp_time value from * cap_mask2_resp_time in ib_class_port_info. * @cpi: A struct ib_class_port_info mad. */ static inline u8 ib_get_cpi_resp_time(struct ib_class_port_info *cpi) { … } /** * ib_set_cpi_resptime - Sets the response time in an * ib_class_port_info mad. * @cpi: A struct ib_class_port_info. * @rtime: The response time to set. */ static inline void ib_set_cpi_resp_time(struct ib_class_port_info *cpi, u8 rtime) { … } /** * ib_get_cpi_capmask2 - Returns the capmask2 value from * cap_mask2_resp_time in ib_class_port_info. * @cpi: A struct ib_class_port_info mad. */ static inline u32 ib_get_cpi_capmask2(struct ib_class_port_info *cpi) { … } /** * ib_set_cpi_capmask2 - Sets the capmask2 in an * ib_class_port_info mad. * @cpi: A struct ib_class_port_info. * @capmask2: The capmask2 to set. */ static inline void ib_set_cpi_capmask2(struct ib_class_port_info *cpi, u32 capmask2) { … } /** * opa_get_cpi_capmask2 - Returns the capmask2 value from * cap_mask2_resp_time in ib_class_port_info. * @cpi: A struct opa_class_port_info mad. */ static inline u32 opa_get_cpi_capmask2(struct opa_class_port_info *cpi) { … } struct ib_mad_notice_attr { … }; /** * ib_mad_send_buf - MAD data buffer and work request for sends. * @next: A pointer used to chain together MADs for posting. * @mad: References an allocated MAD data buffer for MADs that do not have * RMPP active. For MADs using RMPP, references the common and management * class specific headers. * @mad_agent: MAD agent that allocated the buffer. * @ah: The address handle to use when sending the MAD. * @context: User-controlled context fields. * @hdr_len: Indicates the size of the data header of the MAD. This length * includes the common MAD, RMPP, and class specific headers. * @data_len: Indicates the total size of user-transferred data. * @seg_count: The number of RMPP segments allocated for this send. * @seg_size: Size of the data in each RMPP segment. This does not include * class specific headers. * @seg_rmpp_size: Size of each RMPP segment including the class specific * headers. * @timeout_ms: Time to wait for a response. * @retries: Number of times to retry a request for a response. For MADs * using RMPP, this applies per window. On completion, returns the number * of retries needed to complete the transfer. * * Users are responsible for initializing the MAD buffer itself, with the * exception of any RMPP header. Additional segment buffer space allocated * beyond data_len is padding. */ struct ib_mad_send_buf { … }; /** * ib_response_mad - Returns if the specified MAD has been generated in * response to a sent request or trap. */ int ib_response_mad(const struct ib_mad_hdr *hdr); /** * ib_get_rmpp_resptime - Returns the RMPP response time. * @rmpp_hdr: An RMPP header. */ static inline u8 ib_get_rmpp_resptime(struct ib_rmpp_hdr *rmpp_hdr) { … } /** * ib_get_rmpp_flags - Returns the RMPP flags. * @rmpp_hdr: An RMPP header. */ static inline u8 ib_get_rmpp_flags(struct ib_rmpp_hdr *rmpp_hdr) { … } /** * ib_set_rmpp_resptime - Sets the response time in an RMPP header. * @rmpp_hdr: An RMPP header. * @rtime: The response time to set. */ static inline void ib_set_rmpp_resptime(struct ib_rmpp_hdr *rmpp_hdr, u8 rtime) { … } /** * ib_set_rmpp_flags - Sets the flags in an RMPP header. * @rmpp_hdr: An RMPP header. * @flags: The flags to set. */ static inline void ib_set_rmpp_flags(struct ib_rmpp_hdr *rmpp_hdr, u8 flags) { … } struct ib_mad_agent; struct ib_mad_send_wc; struct ib_mad_recv_wc; /** * ib_mad_send_handler - callback handler for a sent MAD. * @mad_agent: MAD agent that sent the MAD. * @mad_send_wc: Send work completion information on the sent MAD. */ ib_mad_send_handler; /** * ib_mad_recv_handler - callback handler for a received MAD. * @mad_agent: MAD agent requesting the received MAD. * @send_buf: Send buffer if found, else NULL * @mad_recv_wc: Received work completion information on the received MAD. * * MADs received in response to a send request operation will be handed to * the user before the send operation completes. All data buffers given * to registered agents through this routine are owned by the receiving * client. */ ib_mad_recv_handler; /** * ib_mad_agent - Used to track MAD registration with the access layer. * @device: Reference to device registration is on. * @qp: Reference to QP used for sending and receiving MADs. * @mr: Memory region for system memory usable for DMA. * @recv_handler: Callback handler for a received MAD. * @send_handler: Callback handler for a sent MAD. * @context: User-specified context associated with this registration. * @hi_tid: Access layer assigned transaction ID for this client. * Unsolicited MADs sent by this client will have the upper 32-bits * of their TID set to this value. * @flags: registration flags * @port_num: Port number on which QP is registered * @rmpp_version: If set, indicates the RMPP version used by this agent. */ enum { … }; struct ib_mad_agent { … }; /** * ib_mad_send_wc - MAD send completion information. * @send_buf: Send MAD data buffer associated with the send MAD request. * @status: Completion status. * @vendor_err: Optional vendor error information returned with a failed * request. */ struct ib_mad_send_wc { … }; /** * ib_mad_recv_buf - received MAD buffer information. * @list: Reference to next data buffer for a received RMPP MAD. * @grh: References a data buffer containing the global route header. * The data refereced by this buffer is only valid if the GRH is * valid. * @mad: References the start of the received MAD. */ struct ib_mad_recv_buf { … }; /** * ib_mad_recv_wc - received MAD information. * @wc: Completion information for the received data. * @recv_buf: Specifies the location of the received data buffer(s). * @rmpp_list: Specifies a list of RMPP reassembled received MAD buffers. * @mad_len: The length of the received MAD, without duplicated headers. * @mad_seg_size: The size of individual MAD segments * * For received response, the wr_id contains a pointer to the ib_mad_send_buf * for the corresponding send request. */ struct ib_mad_recv_wc { … }; /** * ib_mad_reg_req - MAD registration request * @mgmt_class: Indicates which management class of MADs should be receive * by the caller. This field is only required if the user wishes to * receive unsolicited MADs, otherwise it should be 0. * @mgmt_class_version: Indicates which version of MADs for the given * management class to receive. * @oui: Indicates IEEE OUI when mgmt_class is a vendor class * in the range from 0x30 to 0x4f. Otherwise not used. * @method_mask: The caller will receive unsolicited MADs for any method * where @method_mask = 1. * */ struct ib_mad_reg_req { … }; /** * ib_register_mad_agent - Register to send/receive MADs. * @device: The device to register with. * @port_num: The port on the specified device to use. * @qp_type: Specifies which QP to access. Must be either * IB_QPT_SMI or IB_QPT_GSI. * @mad_reg_req: Specifies which unsolicited MADs should be received * by the caller. This parameter may be NULL if the caller only * wishes to receive solicited responses. * @rmpp_version: If set, indicates that the client will send * and receive MADs that contain the RMPP header for the given version. * If set to 0, indicates that RMPP is not used by this client. * @send_handler: The completion callback routine invoked after a send * request has completed. * @recv_handler: The completion callback routine invoked for a received * MAD. * @context: User specified context associated with the registration. * @registration_flags: Registration flags to set for this agent */ struct ib_mad_agent *ib_register_mad_agent(struct ib_device *device, u32 port_num, enum ib_qp_type qp_type, struct ib_mad_reg_req *mad_reg_req, u8 rmpp_version, ib_mad_send_handler send_handler, ib_mad_recv_handler recv_handler, void *context, u32 registration_flags); /** * ib_unregister_mad_agent - Unregisters a client from using MAD services. * @mad_agent: Corresponding MAD registration request to deregister. * * After invoking this routine, MAD services are no longer usable by the * client on the associated QP. */ void ib_unregister_mad_agent(struct ib_mad_agent *mad_agent); /** * ib_post_send_mad - Posts MAD(s) to the send queue of the QP associated * with the registered client. * @send_buf: Specifies the information needed to send the MAD(s). * @bad_send_buf: Specifies the MAD on which an error was encountered. This * parameter is optional if only a single MAD is posted. * * Sent MADs are not guaranteed to complete in the order that they were posted. * * If the MAD requires RMPP, the data buffer should contain a single copy * of the common MAD, RMPP, and class specific headers, followed by the class * defined data. If the class defined data would not divide evenly into * RMPP segments, then space must be allocated at the end of the referenced * buffer for any required padding. To indicate the amount of class defined * data being transferred, the paylen_newwin field in the RMPP header should * be set to the size of the class specific header plus the amount of class * defined data being transferred. The paylen_newwin field should be * specified in network-byte order. */ int ib_post_send_mad(struct ib_mad_send_buf *send_buf, struct ib_mad_send_buf **bad_send_buf); /** * ib_free_recv_mad - Returns data buffers used to receive a MAD. * @mad_recv_wc: Work completion information for a received MAD. * * Clients receiving MADs through their ib_mad_recv_handler must call this * routine to return the work completion buffers to the access layer. */ void ib_free_recv_mad(struct ib_mad_recv_wc *mad_recv_wc); /** * ib_modify_mad - Modifies an outstanding send MAD operation. * @send_buf: Indicates the MAD to modify. * @timeout_ms: New timeout value for sent MAD. * * This call will reset the timeout value for a sent MAD to the specified * value. */ int ib_modify_mad(struct ib_mad_send_buf *send_buf, u32 timeout_ms); /** * ib_cancel_mad - Cancels an outstanding send MAD operation. * @send_buf: Indicates the MAD to cancel. * * MADs will be returned to the user through the corresponding * ib_mad_send_handler. */ static inline void ib_cancel_mad(struct ib_mad_send_buf *send_buf) { … } /** * ib_create_send_mad - Allocate and initialize a data buffer and work request * for sending a MAD. * @mad_agent: Specifies the registered MAD service to associate with the MAD. * @remote_qpn: Specifies the QPN of the receiving node. * @pkey_index: Specifies which PKey the MAD will be sent using. This field * is valid only if the remote_qpn is QP 1. * @rmpp_active: Indicates if the send will enable RMPP. * @hdr_len: Indicates the size of the data header of the MAD. This length * should include the common MAD header, RMPP header, plus any class * specific header. * @data_len: Indicates the size of any user-transferred data. The call will * automatically adjust the allocated buffer size to account for any * additional padding that may be necessary. * @gfp_mask: GFP mask used for the memory allocation. * @base_version: Base Version of this MAD * * This routine allocates a MAD for sending. The returned MAD send buffer * will reference a data buffer usable for sending a MAD, along * with an initialized work request structure. Users may modify the returned * MAD data buffer before posting the send. * * The returned MAD header, class specific headers, and any padding will be * cleared. Users are responsible for initializing the common MAD header, * any class specific header, and MAD data area. * If @rmpp_active is set, the RMPP header will be initialized for sending. */ struct ib_mad_send_buf *ib_create_send_mad(struct ib_mad_agent *mad_agent, u32 remote_qpn, u16 pkey_index, int rmpp_active, int hdr_len, int data_len, gfp_t gfp_mask, u8 base_version); /** * ib_is_mad_class_rmpp - returns whether given management class * supports RMPP. * @mgmt_class: management class * * This routine returns whether the management class supports RMPP. */ int ib_is_mad_class_rmpp(u8 mgmt_class); /** * ib_get_mad_data_offset - returns the data offset for a given * management class. * @mgmt_class: management class * * This routine returns the data offset in the MAD for the management * class requested. */ int ib_get_mad_data_offset(u8 mgmt_class); /** * ib_get_rmpp_segment - returns the data buffer for a given RMPP segment. * @send_buf: Previously allocated send data buffer. * @seg_num: number of segment to return * * This routine returns a pointer to the data buffer of an RMPP MAD. * Users must provide synchronization to @send_buf around this call. */ void *ib_get_rmpp_segment(struct ib_mad_send_buf *send_buf, int seg_num); /** * ib_free_send_mad - Returns data buffers used to send a MAD. * @send_buf: Previously allocated send data buffer. */ void ib_free_send_mad(struct ib_mad_send_buf *send_buf); /** * ib_mad_kernel_rmpp_agent - Returns if the agent is performing RMPP. * @agent: the agent in question * @return: true if agent is performing rmpp, false otherwise. */ int ib_mad_kernel_rmpp_agent(const struct ib_mad_agent *agent); #endif /* IB_MAD_H */