ib_mad.h
来自「linux 内核源代码」· C头文件 代码 · 共 657 行 · 第 1/2 页
H
657 行
/* * 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. * * 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. * * $Id: ib_mad.h 5596 2006-03-03 01:00:07Z sean.hefty $ */#if !defined( IB_MAD_H )#define IB_MAD_H#include <linux/list.h>#include <rdma/ib_verbs.h>/* Management base version */#define IB_MGMT_BASE_VERSION 1/* Management classes */#define IB_MGMT_CLASS_SUBN_LID_ROUTED 0x01#define IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE 0x81#define IB_MGMT_CLASS_SUBN_ADM 0x03#define IB_MGMT_CLASS_PERF_MGMT 0x04#define IB_MGMT_CLASS_BM 0x05#define IB_MGMT_CLASS_DEVICE_MGMT 0x06#define IB_MGMT_CLASS_CM 0x07#define IB_MGMT_CLASS_SNMP 0x08#define IB_MGMT_CLASS_DEVICE_ADM 0x10#define IB_MGMT_CLASS_BOOT_MGMT 0x11#define IB_MGMT_CLASS_BIS 0x12#define IB_MGMT_CLASS_CONG_MGMT 0x21#define IB_MGMT_CLASS_VENDOR_RANGE2_START 0x30#define IB_MGMT_CLASS_VENDOR_RANGE2_END 0x4F#define IB_OPENIB_OUI (0x001405)/* Management methods */#define IB_MGMT_METHOD_GET 0x01#define IB_MGMT_METHOD_SET 0x02#define IB_MGMT_METHOD_GET_RESP 0x81#define IB_MGMT_METHOD_SEND 0x03#define IB_MGMT_METHOD_TRAP 0x05#define IB_MGMT_METHOD_REPORT 0x06#define IB_MGMT_METHOD_REPORT_RESP 0x86#define IB_MGMT_METHOD_TRAP_REPRESS 0x07#define IB_MGMT_METHOD_RESP 0x80#define IB_BM_ATTR_MOD_RESP cpu_to_be32(1)#define IB_MGMT_MAX_METHODS 128/* RMPP information */#define IB_MGMT_RMPP_VERSION 1#define IB_MGMT_RMPP_TYPE_DATA 1#define IB_MGMT_RMPP_TYPE_ACK 2#define IB_MGMT_RMPP_TYPE_STOP 3#define IB_MGMT_RMPP_TYPE_ABORT 4#define IB_MGMT_RMPP_FLAG_ACTIVE 1#define IB_MGMT_RMPP_FLAG_FIRST (1<<1)#define IB_MGMT_RMPP_FLAG_LAST (1<<2)#define IB_MGMT_RMPP_NO_RESPTIME 0x1F#define IB_MGMT_RMPP_STATUS_SUCCESS 0#define IB_MGMT_RMPP_STATUS_RESX 1#define IB_MGMT_RMPP_STATUS_ABORT_MIN 118#define IB_MGMT_RMPP_STATUS_T2L 118#define IB_MGMT_RMPP_STATUS_BAD_LEN 119#define IB_MGMT_RMPP_STATUS_BAD_SEG 120#define IB_MGMT_RMPP_STATUS_BADT 121#define IB_MGMT_RMPP_STATUS_W2S 122#define IB_MGMT_RMPP_STATUS_S2B 123#define IB_MGMT_RMPP_STATUS_BAD_STATUS 124#define IB_MGMT_RMPP_STATUS_UNV 125#define IB_MGMT_RMPP_STATUS_TMR 126#define IB_MGMT_RMPP_STATUS_UNSPEC 127#define IB_MGMT_RMPP_STATUS_ABORT_MAX 127#define IB_QP0 0#define IB_QP1 __constant_htonl(1)#define IB_QP1_QKEY 0x80010000#define IB_QP_SET_QKEY 0x80000000#define IB_DEFAULT_PKEY_PARTIAL 0x7FFF#define IB_DEFAULT_PKEY_FULL 0xFFFFenum { IB_MGMT_MAD_HDR = 24, IB_MGMT_MAD_DATA = 232, IB_MGMT_RMPP_HDR = 36, IB_MGMT_RMPP_DATA = 220, IB_MGMT_VENDOR_HDR = 40, IB_MGMT_VENDOR_DATA = 216, IB_MGMT_SA_HDR = 56, IB_MGMT_SA_DATA = 200, IB_MGMT_DEVICE_HDR = 64, IB_MGMT_DEVICE_DATA = 192,};struct ib_mad_hdr { u8 base_version; u8 mgmt_class; u8 class_version; u8 method; __be16 status; __be16 class_specific; __be64 tid; __be16 attr_id; __be16 resv; __be32 attr_mod;};struct ib_rmpp_hdr { u8 rmpp_version; u8 rmpp_type; u8 rmpp_rtime_flags; u8 rmpp_status; __be32 seg_num; __be32 paylen_newwin;};typedef u64 __bitwise ib_sa_comp_mask;#define IB_SA_COMP_MASK(n) ((__force ib_sa_comp_mask) cpu_to_be64(1ull << 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 { __be64 sm_key; __be16 attr_offset; __be16 reserved; ib_sa_comp_mask comp_mask;} __attribute__ ((packed));struct ib_mad { struct ib_mad_hdr mad_hdr; u8 data[IB_MGMT_MAD_DATA];};struct ib_rmpp_mad { struct ib_mad_hdr mad_hdr; struct ib_rmpp_hdr rmpp_hdr; u8 data[IB_MGMT_RMPP_DATA];};struct ib_sa_mad { struct ib_mad_hdr mad_hdr; struct ib_rmpp_hdr rmpp_hdr; struct ib_sa_hdr sa_hdr; u8 data[IB_MGMT_SA_DATA];} __attribute__ ((packed));struct ib_vendor_mad { struct ib_mad_hdr mad_hdr; struct ib_rmpp_hdr rmpp_hdr; u8 reserved; u8 oui[3]; u8 data[IB_MGMT_VENDOR_DATA];};struct ib_class_port_info{ u8 base_version; u8 class_version; __be16 capability_mask; u8 reserved[3]; u8 resp_time_value; u8 redirect_gid[16]; __be32 redirect_tcslfl; __be16 redirect_lid; __be16 redirect_pkey; __be32 redirect_qp; __be32 redirect_qkey; u8 trap_gid[16]; __be32 trap_tcslfl; __be16 trap_lid; __be16 trap_pkey; __be32 trap_hlqp; __be32 trap_qkey;};/** * 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 each RMPP segment. * @timeout_ms: Time to wait for a response. * @retries: Number of times to retry a request for a response. * * 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 { struct ib_mad_send_buf *next; void *mad; struct ib_mad_agent *mad_agent; struct ib_ah *ah; void *context[2]; int hdr_len; int data_len; int seg_count; int seg_size; int timeout_ms; int retries;};/** * ib_response_mad - Returns if the specified MAD has been generated in * response to a sent request or trap. */int ib_response_mad(struct ib_mad *mad);/** * 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){ return rmpp_hdr->rmpp_rtime_flags >> 3;}/** * 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){ return rmpp_hdr->rmpp_rtime_flags & 0x7;}/** * 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){ rmpp_hdr->rmpp_rtime_flags = ib_get_rmpp_flags(rmpp_hdr) | (rtime << 3);}/** * 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){ rmpp_hdr->rmpp_rtime_flags = (rmpp_hdr->rmpp_rtime_flags & 0xF1) | (flags & 0x7);}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. */typedef void (*ib_mad_send_handler)(struct ib_mad_agent *mad_agent, struct ib_mad_send_wc *mad_send_wc);/** * ib_mad_snoop_handler - Callback handler for snooping sent MADs. * @mad_agent: MAD agent that snooped the MAD. * @send_wr: Work request information on the sent MAD. * @mad_send_wc: Work completion information on the sent MAD. Valid * only for snooping that occurs on a send completion. * * Clients snooping MADs should not modify data referenced by the @send_wr * or @mad_send_wc. */typedef void (*ib_mad_snoop_handler)(struct ib_mad_agent *mad_agent, struct ib_mad_send_buf *send_buf, struct ib_mad_send_wc *mad_send_wc);/** * ib_mad_recv_handler - callback handler for a received MAD. * @mad_agent: MAD agent requesting the received MAD. * @mad_recv_wc: Received work completion information on the received MAD. * * MADs received in response to a send request operation will be handed to
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?