]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/contrib/rdma/ib_pack.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / contrib / rdma / ib_pack.h
1 /*
2  * Copyright (c) 2004 Topspin Corporation.  All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  *
32  * $Id: ib_pack.h 1349 2004-12-16 21:09:43Z roland $
33  *
34  * $FreeBSD$
35  */
36
37 #ifndef IB_PACK_H
38 #define IB_PACK_H
39
40 #include <rdma/ib_verbs.h>
41
42 enum {
43         IB_LRH_BYTES  = 8,
44         IB_GRH_BYTES  = 40,
45         IB_BTH_BYTES  = 12,
46         IB_DETH_BYTES = 8
47 };
48
49 struct ib_field {
50         size_t struct_offset_bytes;
51         size_t struct_size_bytes;
52         int    offset_words;
53         int    offset_bits;
54         int    size_bits;
55         char  *field_name;
56 };
57
58 #define RESERVED \
59         .field_name          = "reserved"
60
61 /*
62  * This macro cleans up the definitions of constants for BTH opcodes.
63  * It is used to define constants such as IB_OPCODE_UD_SEND_ONLY,
64  * which becomes IB_OPCODE_UD + IB_OPCODE_SEND_ONLY, and this gives
65  * the correct value.
66  *
67  * In short, user code should use the constants defined using the
68  * macro rather than worrying about adding together other constants.
69 */
70 #define IB_OPCODE(transport, op) \
71         IB_OPCODE_ ## transport ## _ ## op = \
72                 IB_OPCODE_ ## transport + IB_OPCODE_ ## op
73
74 enum {
75         /* transport types -- just used to define real constants */
76         IB_OPCODE_RC                                = 0x00,
77         IB_OPCODE_UC                                = 0x20,
78         IB_OPCODE_RD                                = 0x40,
79         IB_OPCODE_UD                                = 0x60,
80
81         /* operations -- just used to define real constants */
82         IB_OPCODE_SEND_FIRST                        = 0x00,
83         IB_OPCODE_SEND_MIDDLE                       = 0x01,
84         IB_OPCODE_SEND_LAST                         = 0x02,
85         IB_OPCODE_SEND_LAST_WITH_IMMEDIATE          = 0x03,
86         IB_OPCODE_SEND_ONLY                         = 0x04,
87         IB_OPCODE_SEND_ONLY_WITH_IMMEDIATE          = 0x05,
88         IB_OPCODE_RDMA_WRITE_FIRST                  = 0x06,
89         IB_OPCODE_RDMA_WRITE_MIDDLE                 = 0x07,
90         IB_OPCODE_RDMA_WRITE_LAST                   = 0x08,
91         IB_OPCODE_RDMA_WRITE_LAST_WITH_IMMEDIATE    = 0x09,
92         IB_OPCODE_RDMA_WRITE_ONLY                   = 0x0a,
93         IB_OPCODE_RDMA_WRITE_ONLY_WITH_IMMEDIATE    = 0x0b,
94         IB_OPCODE_RDMA_READ_REQUEST                 = 0x0c,
95         IB_OPCODE_RDMA_READ_RESPONSE_FIRST          = 0x0d,
96         IB_OPCODE_RDMA_READ_RESPONSE_MIDDLE         = 0x0e,
97         IB_OPCODE_RDMA_READ_RESPONSE_LAST           = 0x0f,
98         IB_OPCODE_RDMA_READ_RESPONSE_ONLY           = 0x10,
99         IB_OPCODE_ACKNOWLEDGE                       = 0x11,
100         IB_OPCODE_ATOMIC_ACKNOWLEDGE                = 0x12,
101         IB_OPCODE_COMPARE_SWAP                      = 0x13,
102         IB_OPCODE_FETCH_ADD                         = 0x14,
103
104         /* real constants follow -- see comment about above IB_OPCODE()
105            macro for more details */
106
107         /* RC */
108         IB_OPCODE(RC, SEND_FIRST),
109         IB_OPCODE(RC, SEND_MIDDLE),
110         IB_OPCODE(RC, SEND_LAST),
111         IB_OPCODE(RC, SEND_LAST_WITH_IMMEDIATE),
112         IB_OPCODE(RC, SEND_ONLY),
113         IB_OPCODE(RC, SEND_ONLY_WITH_IMMEDIATE),
114         IB_OPCODE(RC, RDMA_WRITE_FIRST),
115         IB_OPCODE(RC, RDMA_WRITE_MIDDLE),
116         IB_OPCODE(RC, RDMA_WRITE_LAST),
117         IB_OPCODE(RC, RDMA_WRITE_LAST_WITH_IMMEDIATE),
118         IB_OPCODE(RC, RDMA_WRITE_ONLY),
119         IB_OPCODE(RC, RDMA_WRITE_ONLY_WITH_IMMEDIATE),
120         IB_OPCODE(RC, RDMA_READ_REQUEST),
121         IB_OPCODE(RC, RDMA_READ_RESPONSE_FIRST),
122         IB_OPCODE(RC, RDMA_READ_RESPONSE_MIDDLE),
123         IB_OPCODE(RC, RDMA_READ_RESPONSE_LAST),
124         IB_OPCODE(RC, RDMA_READ_RESPONSE_ONLY),
125         IB_OPCODE(RC, ACKNOWLEDGE),
126         IB_OPCODE(RC, ATOMIC_ACKNOWLEDGE),
127         IB_OPCODE(RC, COMPARE_SWAP),
128         IB_OPCODE(RC, FETCH_ADD),
129
130         /* UC */
131         IB_OPCODE(UC, SEND_FIRST),
132         IB_OPCODE(UC, SEND_MIDDLE),
133         IB_OPCODE(UC, SEND_LAST),
134         IB_OPCODE(UC, SEND_LAST_WITH_IMMEDIATE),
135         IB_OPCODE(UC, SEND_ONLY),
136         IB_OPCODE(UC, SEND_ONLY_WITH_IMMEDIATE),
137         IB_OPCODE(UC, RDMA_WRITE_FIRST),
138         IB_OPCODE(UC, RDMA_WRITE_MIDDLE),
139         IB_OPCODE(UC, RDMA_WRITE_LAST),
140         IB_OPCODE(UC, RDMA_WRITE_LAST_WITH_IMMEDIATE),
141         IB_OPCODE(UC, RDMA_WRITE_ONLY),
142         IB_OPCODE(UC, RDMA_WRITE_ONLY_WITH_IMMEDIATE),
143
144         /* RD */
145         IB_OPCODE(RD, SEND_FIRST),
146         IB_OPCODE(RD, SEND_MIDDLE),
147         IB_OPCODE(RD, SEND_LAST),
148         IB_OPCODE(RD, SEND_LAST_WITH_IMMEDIATE),
149         IB_OPCODE(RD, SEND_ONLY),
150         IB_OPCODE(RD, SEND_ONLY_WITH_IMMEDIATE),
151         IB_OPCODE(RD, RDMA_WRITE_FIRST),
152         IB_OPCODE(RD, RDMA_WRITE_MIDDLE),
153         IB_OPCODE(RD, RDMA_WRITE_LAST),
154         IB_OPCODE(RD, RDMA_WRITE_LAST_WITH_IMMEDIATE),
155         IB_OPCODE(RD, RDMA_WRITE_ONLY),
156         IB_OPCODE(RD, RDMA_WRITE_ONLY_WITH_IMMEDIATE),
157         IB_OPCODE(RD, RDMA_READ_REQUEST),
158         IB_OPCODE(RD, RDMA_READ_RESPONSE_FIRST),
159         IB_OPCODE(RD, RDMA_READ_RESPONSE_MIDDLE),
160         IB_OPCODE(RD, RDMA_READ_RESPONSE_LAST),
161         IB_OPCODE(RD, RDMA_READ_RESPONSE_ONLY),
162         IB_OPCODE(RD, ACKNOWLEDGE),
163         IB_OPCODE(RD, ATOMIC_ACKNOWLEDGE),
164         IB_OPCODE(RD, COMPARE_SWAP),
165         IB_OPCODE(RD, FETCH_ADD),
166
167         /* UD */
168         IB_OPCODE(UD, SEND_ONLY),
169         IB_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
170 };
171
172 enum {
173         IB_LNH_RAW        = 0,
174         IB_LNH_IP         = 1,
175         IB_LNH_IBA_LOCAL  = 2,
176         IB_LNH_IBA_GLOBAL = 3
177 };
178
179 struct ib_unpacked_lrh {
180         u8        virtual_lane;
181         u8        link_version;
182         u8        service_level;
183         u8        link_next_header;
184         __be16    destination_lid;
185         __be16    packet_length;
186         __be16    source_lid;
187 };
188
189 struct ib_unpacked_grh {
190         u8           ip_version;
191         u8           traffic_class;
192         __be32       flow_label;
193         __be16       payload_length;
194         u8           next_header;
195         u8           hop_limit;
196         union ib_gid source_gid;
197         union ib_gid destination_gid;
198 };
199
200 struct ib_unpacked_bth {
201         u8           opcode;
202         u8           solicited_event;
203         u8           mig_req;
204         u8           pad_count;
205         u8           transport_header_version;
206         __be16       pkey;
207         __be32       destination_qpn;
208         u8           ack_req;
209         __be32       psn;
210 };
211
212 struct ib_unpacked_deth {
213         __be32       qkey;
214         __be32       source_qpn;
215 };
216
217 struct ib_ud_header {
218         struct ib_unpacked_lrh  lrh;
219         int                     grh_present;
220         struct ib_unpacked_grh  grh;
221         struct ib_unpacked_bth  bth;
222         struct ib_unpacked_deth deth;
223         int                     immediate_present;
224         __be32                  immediate_data;
225 };
226
227 void ib_pack(const struct ib_field        *desc,
228              int                           desc_len,
229              void                         *structure,
230              void                         *buf);
231
232 void ib_unpack(const struct ib_field        *desc,
233                int                           desc_len,
234                void                         *buf,
235                void                         *structure);
236
237 void ib_ud_header_init(int                 payload_bytes,
238                        int                 grh_present,
239                        struct ib_ud_header *header);
240
241 int ib_ud_header_pack(struct ib_ud_header *header,
242                       void                *buf);
243
244 int ib_ud_header_unpack(void                *buf,
245                         struct ib_ud_header *header);
246
247 #endif /* IB_PACK_H */