1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
/*
* Copyright (c) 2017-2018 Cavium, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD$
*
*/
#ifndef __ECORE_LL2_API_H__
#define __ECORE_LL2_API_H__
/* ECORE LL2 API: called by ECORE's upper level client */
/* must be the asme as core_rx_conn_type */
enum ecore_ll2_conn_type {
ECORE_LL2_TYPE_FCOE /* FCoE L2 connection */,
ECORE_LL2_TYPE_ISCSI /* Iscsi L2 connection */,
ECORE_LL2_TYPE_TEST /* Eth TB test connection */,
ECORE_LL2_TYPE_OOO /* Iscsi OOO L2 connection */,
ECORE_LL2_TYPE_TOE /* toe L2 connection */,
ECORE_LL2_TYPE_ROCE /* RoCE L2 connection */,
ECORE_LL2_TYPE_IWARP,
MAX_ECORE_LL2_RX_CONN_TYPE
};
enum ecore_ll2_roce_flavor_type {
ECORE_LL2_ROCE, /* use this as default or d/c */
ECORE_LL2_RROCE,
MAX_ECORE_LL2_ROCE_FLAVOR_TYPE
};
enum ecore_ll2_tx_dest
{
ECORE_LL2_TX_DEST_NW /* Light L2 TX Destination to the Network */,
ECORE_LL2_TX_DEST_LB /* Light L2 TX Destination to the Loopback */,
ECORE_LL2_TX_DEST_DROP /* Light L2 Drop the TX packet */,
ECORE_LL2_TX_DEST_MAX
};
enum ecore_ll2_error_handle
{
ECORE_LL2_DROP_PACKET /* If error occurs drop packet */,
ECORE_LL2_DO_NOTHING /* If error occurs do nothing */,
ECORE_LL2_ASSERT /* If error occurs assert */,
};
struct ecore_ll2_stats {
u64 gsi_invalid_hdr;
u64 gsi_invalid_pkt_length;
u64 gsi_unsupported_pkt_typ;
u64 gsi_crcchksm_error;
u64 packet_too_big_discard;
u64 no_buff_discard;
u64 rcv_ucast_bytes;
u64 rcv_mcast_bytes;
u64 rcv_bcast_bytes;
u64 rcv_ucast_pkts;
u64 rcv_mcast_pkts;
u64 rcv_bcast_pkts;
u64 sent_ucast_bytes;
u64 sent_mcast_bytes;
u64 sent_bcast_bytes;
u64 sent_ucast_pkts;
u64 sent_mcast_pkts;
u64 sent_bcast_pkts;
};
struct ecore_ll2_comp_rx_data {
u8 connection_handle;
void *cookie;
dma_addr_t rx_buf_addr;
u16 parse_flags;
u16 err_flags;
u16 vlan;
bool b_last_packet;
union {
u8 placement_offset;
u8 data_length_error;
} u;
union {
u16 packet_length;
u16 data_length;
} length;
u32 opaque_data_0; /* src_mac_addr_hi */
u32 opaque_data_1; /* src_mac_addr_lo */
/* GSI only */
u32 gid_dst[4];
u16 qp_id;
};
typedef
void (*ecore_ll2_complete_rx_packet_cb)(void *cxt,
struct ecore_ll2_comp_rx_data *data);
typedef
void (*ecore_ll2_release_rx_packet_cb)(void *cxt,
u8 connection_handle,
void *cookie,
dma_addr_t rx_buf_addr,
bool b_last_packet);
typedef
void (*ecore_ll2_complete_tx_packet_cb)(void *cxt,
u8 connection_handle,
void *cookie,
dma_addr_t first_frag_addr,
bool b_last_fragment,
bool b_last_packet);
typedef
void (*ecore_ll2_release_tx_packet_cb)(void *cxt,
u8 connection_handle,
void *cookie,
dma_addr_t first_frag_addr,
bool b_last_fragment,
bool b_last_packet);
typedef
void (*ecore_ll2_slowpath_cb)(void *cxt,
u8 connection_handle,
u32 opaque_data_0,
u32 opaque_data_1);
struct ecore_ll2_cbs {
ecore_ll2_complete_rx_packet_cb rx_comp_cb;
ecore_ll2_release_rx_packet_cb rx_release_cb;
ecore_ll2_complete_tx_packet_cb tx_comp_cb;
ecore_ll2_release_tx_packet_cb tx_release_cb;
ecore_ll2_slowpath_cb slowpath_cb;
void *cookie;
};
struct ecore_ll2_acquire_data_inputs {
enum ecore_ll2_conn_type conn_type;
u16 mtu; /* Maximum bytes that can be placed on a BD*/
u16 rx_num_desc;
/* Relevant only for OOO connection if 0 OOO rx buffers=2*rx_num_desc */
u16 rx_num_ooo_buffers;
u8 rx_drop_ttl0_flg;
/* if set, 802.1q tags will be removed and copied to CQE */
u8 rx_vlan_removal_en;
u16 tx_num_desc;
u8 tx_max_bds_per_packet;
u8 tx_tc;
enum ecore_ll2_tx_dest tx_dest;
enum ecore_ll2_error_handle ai_err_packet_too_big;
enum ecore_ll2_error_handle ai_err_no_buf;
u8 secondary_queue;
u8 gsi_enable;
};
struct ecore_ll2_acquire_data {
struct ecore_ll2_acquire_data_inputs input;
const struct ecore_ll2_cbs *cbs;
/* Output container for LL2 connection's handle */
u8 *p_connection_handle;
};
/**
* @brief ecore_ll2_acquire_connection - allocate resources,
* starts rx & tx (if relevant) queues pair. Provides
* connecion handler as output parameter.
*
*
* @param p_hwfn
* @param data - describes connection parameters
* @return enum _ecore_status_t
*/
enum _ecore_status_t
ecore_ll2_acquire_connection(void *cxt,
struct ecore_ll2_acquire_data *data);
/**
* @brief ecore_ll2_establish_connection - start previously
* allocated LL2 queues pair
*
* @param p_hwfn
* @param p_ptt
* @param connection_handle LL2 connection's handle
* obtained from
* ecore_ll2_require_connection
*
* @return enum _ecore_status_t
*/
enum _ecore_status_t ecore_ll2_establish_connection(void *cxt,
u8 connection_handle);
/**
* @brief ecore_ll2_post_rx_buffers - submit buffers to LL2 RxQ.
*
* @param p_hwfn
* @param connection_handle LL2 connection's handle
* obtained from
* ecore_ll2_require_connection
* @param addr rx (physical address) buffers to
* submit
* @param cookie
* @param notify_fw produce corresponding Rx BD
* immediately
*
* @return enum _ecore_status_t
*/
enum _ecore_status_t ecore_ll2_post_rx_buffer(void *cxt,
u8 connection_handle,
dma_addr_t addr,
u16 buf_len,
void *cookie,
u8 notify_fw);
struct ecore_ll2_tx_pkt_info {
u8 num_of_bds;
u16 vlan;
u8 bd_flags;
u16 l4_hdr_offset_w; /* from start of packet */
enum ecore_ll2_tx_dest tx_dest;
enum ecore_ll2_roce_flavor_type ecore_roce_flavor;
dma_addr_t first_frag;
u16 first_frag_len;
bool enable_ip_cksum;
bool enable_l4_cksum;
bool calc_ip_len;
void *cookie;
};
/**
* @brief ecore_ll2_prepare_tx_packet - request for start Tx BD
* to prepare Tx packet submission to FW.
*
*
* @param p_hwfn
* @param pkt - info regarding the tx packet
* @param notify_fw - issue doorbell to fw for this packet
*
* @return enum _ecore_status_t
*/
enum _ecore_status_t ecore_ll2_prepare_tx_packet(
void *cxt,
u8 connection_handle,
struct ecore_ll2_tx_pkt_info *pkt,
bool notify_fw);
/**
* @brief ecore_ll2_release_connection - releases resources
* allocated for LL2 connection
*
* @param p_hwfn
* @param connection_handle LL2 connection's handle
* obtained from
* ecore_ll2_require_connection
*/
void ecore_ll2_release_connection(void *cxt,
u8 connection_handle);
/**
* @brief ecore_ll2_set_fragment_of_tx_packet - provides
* fragments to fill Tx BD of BDs requested by
* ecore_ll2_prepare_tx_packet..
*
*
* @param p_hwfn
* @param connection_handle LL2 connection's handle
* obtained from
* ecore_ll2_require_connection
* @param addr
* @param nbytes
*
* @return enum _ecore_status_t
*/
enum _ecore_status_t
ecore_ll2_set_fragment_of_tx_packet(void *cxt,
u8 connection_handle,
dma_addr_t addr,
u16 nbytes);
/**
* @brief ecore_ll2_terminate_connection - stops Tx/Rx queues
*
*
* @param p_hwfn
* @param connection_handle LL2 connection's handle
* obtained from
* ecore_ll2_require_connection
*
* @return enum _ecore_status_t
*/
enum _ecore_status_t ecore_ll2_terminate_connection(void *cxt,
u8 connection_handle);
/**
* @brief ecore_ll2_get_stats - get LL2 queue's statistics
*
*
* @param p_hwfn
* @param connection_handle LL2 connection's handle
* obtained from
* ecore_ll2_require_connection
* @param p_stats
*
* @return enum _ecore_status_t
*/
enum _ecore_status_t ecore_ll2_get_stats(void *cxt,
u8 connection_handle,
struct ecore_ll2_stats *p_stats);
#endif
|