Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ib_pma.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006, 2007, 2008, 2009, 2010 QLogic Corporation.
3  * All rights reserved.
4  * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
5  *
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:
11  *
12  * Redistribution and use in source and binary forms, with or
13  * without modification, are permitted provided that the following
14  * conditions are met:
15  *
16  * - Redistributions of source code must retain the above
17  * copyright notice, this list of conditions and the following
18  * disclaimer.
19  *
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.
24  *
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
32  * SOFTWARE.
33  */
34 
35 #if !defined(IB_PMA_H)
36 #define IB_PMA_H
37 
38 #include <rdma/ib_mad.h>
39 
40 /*
41  * PMA class portinfo capability mask bits
42  */
43 #define IB_PMA_CLASS_CAP_ALLPORTSELECT cpu_to_be16(1 << 8)
44 #define IB_PMA_CLASS_CAP_EXT_WIDTH cpu_to_be16(1 << 9)
45 #define IB_PMA_CLASS_CAP_XMIT_WAIT cpu_to_be16(1 << 12)
46 
47 #define IB_PMA_CLASS_PORT_INFO cpu_to_be16(0x0001)
48 #define IB_PMA_PORT_SAMPLES_CONTROL cpu_to_be16(0x0010)
49 #define IB_PMA_PORT_SAMPLES_RESULT cpu_to_be16(0x0011)
50 #define IB_PMA_PORT_COUNTERS cpu_to_be16(0x0012)
51 #define IB_PMA_PORT_COUNTERS_EXT cpu_to_be16(0x001D)
52 #define IB_PMA_PORT_SAMPLES_RESULT_EXT cpu_to_be16(0x001E)
53 
54 struct ib_pma_mad {
56  u8 reserved[40];
57  u8 data[192];
58 } __packed;
59 
64  u8 counter_width; /* resv: 7:3, counter width: 2:0 */
65  __be32 counter_mask0_9; /* 2, 10 3-bit fields */
66  __be16 counter_mask10_14; /* 1, 5 3-bit fields */
68  u8 sample_status; /* only lower 2 bits */
78 };
79 
82  __be16 sample_status; /* only lower 2 bits */
84 };
85 
88  __be16 sample_status; /* only lower 2 bits */
89  __be32 extended_width; /* only upper 2 bits */
91 };
92 
107  u8 link_overrun_errors; /* LocalLink: 7:4, BufferOverrun: 3:0 */
115 } __packed;
116 
117 
118 #define IB_PMA_SEL_SYMBOL_ERROR cpu_to_be16(0x0001)
119 #define IB_PMA_SEL_LINK_ERROR_RECOVERY cpu_to_be16(0x0002)
120 #define IB_PMA_SEL_LINK_DOWNED cpu_to_be16(0x0004)
121 #define IB_PMA_SEL_PORT_RCV_ERRORS cpu_to_be16(0x0008)
122 #define IB_PMA_SEL_PORT_RCV_REMPHYS_ERRORS cpu_to_be16(0x0010)
123 #define IB_PMA_SEL_PORT_XMIT_DISCARDS cpu_to_be16(0x0040)
124 #define IB_PMA_SEL_LOCAL_LINK_INTEGRITY_ERRORS cpu_to_be16(0x0200)
125 #define IB_PMA_SEL_EXCESSIVE_BUFFER_OVERRUNS cpu_to_be16(0x0400)
126 #define IB_PMA_SEL_PORT_VL15_DROPPED cpu_to_be16(0x0800)
127 #define IB_PMA_SEL_PORT_XMIT_DATA cpu_to_be16(0x1000)
128 #define IB_PMA_SEL_PORT_RCV_DATA cpu_to_be16(0x2000)
129 #define IB_PMA_SEL_PORT_XMIT_PACKETS cpu_to_be16(0x4000)
130 #define IB_PMA_SEL_PORT_RCV_PACKETS cpu_to_be16(0x8000)
131 
145 } __packed;
146 
147 #define IB_PMA_SELX_PORT_XMIT_DATA cpu_to_be16(0x0001)
148 #define IB_PMA_SELX_PORT_RCV_DATA cpu_to_be16(0x0002)
149 #define IB_PMA_SELX_PORT_XMIT_PACKETS cpu_to_be16(0x0004)
150 #define IB_PMA_SELX_PORT_RCV_PACKETS cpu_to_be16(0x0008)
151 #define IB_PMA_SELX_PORT_UNI_XMIT_PACKETS cpu_to_be16(0x0010)
152 #define IB_PMA_SELX_PORT_UNI_RCV_PACKETS cpu_to_be16(0x0020)
153 #define IB_PMA_SELX_PORT_MULTI_XMIT_PACKETS cpu_to_be16(0x0040)
154 #define IB_PMA_SELX_PORT_MULTI_RCV_PACKETS cpu_to_be16(0x0080)
155 
156 #endif /* IB_PMA_H */