avf: chained buffers rx support
[vpp.git] / src / plugins / avf / avf.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #ifndef _AVF_H_
19 #define _AVF_H_
20
21 #include <avf/virtchnl.h>
22
23 #include <vlib/log.h>
24
25 #define AVF_RXD_STATUS(x)               (1ULL << x)
26 #define AVF_RXD_STATUS_DD               AVF_RXD_STATUS(0)
27 #define AVF_RXD_STATUS_EOP              AVF_RXD_STATUS(1)
28 #define AVF_RXD_ERROR_SHIFT             19
29 #define AVF_RXD_PTYPE_SHIFT             30
30 #define AVF_RXD_LEN_SHIFT               38
31 #define AVF_RX_MAX_DESC_IN_CHAIN        5
32
33 #define AVF_RXD_ERROR_IPE               (1ULL << (AVF_RXD_ERROR_SHIFT + 3))
34 #define AVF_RXD_ERROR_L4E               (1ULL << (AVF_RXD_ERROR_SHIFT + 4))
35
36 #define AVF_TXD_CMD(x)                  (1 << (x + 4))
37 #define AVF_TXD_CMD_EOP                 AVF_TXD_CMD(0)
38 #define AVF_TXD_CMD_RS                  AVF_TXD_CMD(1)
39 #define AVF_TXD_CMD_RSV                 AVF_TXD_CMD(2)
40
41 #define foreach_avf_device_flags \
42   _(0, INITIALIZED, "initialized") \
43   _(1, ERROR, "error") \
44   _(2, ADMIN_UP, "admin-up") \
45   _(3, VA_DMA, "vaddr-dma") \
46   _(4, LINK_UP, "link-up") \
47   _(5, SHARED_TXQ_LOCK, "shared-txq-lock") \
48   _(6, ELOG, "elog")
49
50 enum
51 {
52 #define _(a, b, c) AVF_DEVICE_F_##b = (1 << a),
53   foreach_avf_device_flags
54 #undef _
55 };
56
57 typedef volatile struct
58 {
59   union
60   {
61     struct
62     {
63       u64 mirr:13;
64       u64 rsv1:3;
65       u64 l2tag1:16;
66       u64 filter_status:32;
67       u64 status:19;
68       u64 error:8;
69       u64 rsv2:3;
70       u64 ptype:8;
71       u64 length:26;
72     };
73     u64 qword[4];
74 #ifdef CLIB_HAVE_VEC256
75     u64x4 as_u64x4;
76 #endif
77   };
78 } avf_rx_desc_t;
79
80 STATIC_ASSERT_SIZEOF (avf_rx_desc_t, 32);
81
82 typedef volatile struct
83 {
84   union
85   {
86     u64 qword[2];
87 #ifdef CLIB_HAVE_VEC128
88     u64x2 as_u64x2;
89 #endif
90   };
91 } avf_tx_desc_t;
92
93 STATIC_ASSERT_SIZEOF (avf_tx_desc_t, 16);
94
95 typedef struct
96 {
97   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
98   volatile u32 *qrx_tail;
99   u16 next;
100   u16 size;
101   avf_rx_desc_t *descs;
102   u32 *bufs;
103   u16 n_enqueued;
104   u8 int_mode;
105 } avf_rxq_t;
106
107 typedef struct
108 {
109   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
110   volatile u32 *qtx_tail;
111   u16 next;
112   u16 size;
113   clib_spinlock_t lock;
114   avf_tx_desc_t *descs;
115   u32 *bufs;
116   u16 n_enqueued;
117 } avf_txq_t;
118
119 typedef struct
120 {
121   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
122   u32 flags;
123   u32 per_interface_next_index;
124
125   u32 dev_instance;
126   u32 sw_if_index;
127   u32 hw_if_index;
128   vlib_pci_dev_handle_t pci_dev_handle;
129   void *bar0;
130   u8 *name;
131
132   /* queues */
133   avf_rxq_t *rxqs;
134   avf_txq_t *txqs;
135   u16 n_tx_queues;
136   u16 n_rx_queues;
137
138   /* Admin queues */
139   avf_aq_desc_t *atq;
140   avf_aq_desc_t *arq;
141   void *atq_bufs;
142   void *arq_bufs;
143   u64 atq_bufs_pa;
144   u64 arq_bufs_pa;
145   u16 atq_next_slot;
146   u16 arq_next_slot;
147   virtchnl_pf_event_t *events;
148
149   u16 vsi_id;
150   u32 feature_bitmap;
151   u8 hwaddr[6];
152   u16 num_queue_pairs;
153   u16 max_vectors;
154   u16 max_mtu;
155   u32 rss_key_size;
156   u32 rss_lut_size;
157   virtchnl_link_speed_t link_speed;
158
159   /* stats */
160   virtchnl_eth_stats_t eth_stats;
161
162   /* error */
163   clib_error_t *error;
164 } avf_device_t;
165
166 #define AVF_RX_VECTOR_SZ VLIB_FRAME_SIZE
167
168 enum
169 {
170   AVF_PROCESS_EVENT_START = 1,
171   AVF_PROCESS_EVENT_STOP = 2,
172   AVF_PROCESS_EVENT_AQ_INT = 3,
173 } avf_process_event_t;
174
175 typedef struct
176 {
177   u64 qw1s[AVF_RX_MAX_DESC_IN_CHAIN - 1];
178   u32 buffers[AVF_RX_MAX_DESC_IN_CHAIN - 1];
179 } avf_rx_tail_t;
180
181 typedef struct
182 {
183   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
184   vlib_buffer_t *bufs[AVF_RX_VECTOR_SZ];
185   u64 qw1s[AVF_RX_VECTOR_SZ];
186   avf_rx_tail_t tails[AVF_RX_VECTOR_SZ];
187   vlib_buffer_t buffer_template;
188 } avf_per_thread_data_t;
189
190 typedef struct
191 {
192   u16 msg_id_base;
193
194   avf_device_t *devices;
195   avf_per_thread_data_t *per_thread_data;
196
197   vlib_log_class_t log_class;
198 } avf_main_t;
199
200 extern avf_main_t avf_main;
201
202 typedef struct
203 {
204   vlib_pci_addr_t addr;
205   u8 *name;
206   int enable_elog;
207   u16 rxq_num;
208   u16 rxq_size;
209   u16 txq_size;
210   /* return */
211   int rv;
212   u32 sw_if_index;
213   clib_error_t *error;
214 } avf_create_if_args_t;
215
216 void avf_create_if (vlib_main_t * vm, avf_create_if_args_t * args);
217 void avf_delete_if (vlib_main_t * vm, avf_device_t * ad);
218
219 extern vlib_node_registration_t avf_input_node;
220 extern vnet_device_class_t avf_device_class;
221
222 /* format.c */
223 format_function_t format_avf_device;
224 format_function_t format_avf_device_name;
225 format_function_t format_avf_input_trace;
226
227 static inline u32
228 avf_get_u32 (void *start, int offset)
229 {
230   return *(u32 *) (((u8 *) start) + offset);
231 }
232
233 static inline u64
234 avf_get_u64 (void *start, int offset)
235 {
236   return *(u64 *) (((u8 *) start) + offset);
237 }
238
239 static inline u32
240 avf_get_u32_bits (void *start, int offset, int first, int last)
241 {
242   u32 value = avf_get_u32 (start, offset);
243   if ((last == 0) && (first == 31))
244     return value;
245   value >>= last;
246   value &= (1 << (first - last + 1)) - 1;
247   return value;
248 }
249
250 static inline u64
251 avf_get_u64_bits (void *start, int offset, int first, int last)
252 {
253   u64 value = avf_get_u64 (start, offset);
254   if ((last == 0) && (first == 63))
255     return value;
256   value >>= last;
257   value &= (1 << (first - last + 1)) - 1;
258   return value;
259 }
260
261 static inline void
262 avf_set_u32 (void *start, int offset, u32 value)
263 {
264   (*(u32 *) (((u8 *) start) + offset)) = value;
265 }
266
267 static inline void
268 avf_reg_write (avf_device_t * ad, u32 addr, u32 val)
269 {
270   *(volatile u32 *) ((u8 *) ad->bar0 + addr) = val;
271 }
272
273 static inline u32
274 avf_reg_read (avf_device_t * ad, u32 addr)
275 {
276   return *(volatile u32 *) (ad->bar0 + addr);
277 }
278
279 static inline void
280 avf_reg_flush (avf_device_t * ad)
281 {
282   avf_reg_read (ad, AVFGEN_RSTAT);
283   asm volatile ("":::"memory");
284 }
285
286 static_always_inline int
287 avf_rxd_is_not_eop (avf_rx_desc_t * d)
288 {
289   return (d->qword[1] & AVF_RXD_STATUS_EOP) == 0;
290 }
291
292 static_always_inline int
293 avf_rxd_is_not_dd (avf_rx_desc_t * d)
294 {
295   return (d->qword[1] & AVF_RXD_STATUS_DD) == 0;
296 }
297
298 typedef struct
299 {
300   u32 next_index;
301   u32 hw_if_index;
302   u64 qw1s[AVF_RX_MAX_DESC_IN_CHAIN];
303 } avf_input_trace_t;
304
305 #define foreach_avf_tx_func_error              \
306 _(NO_FREE_SLOTS, "no free tx slots")
307
308 typedef enum
309 {
310 #define _(f,s) AVF_TX_ERROR_##f,
311   foreach_avf_tx_func_error
312 #undef _
313     AVF_TX_N_ERROR,
314 } avf_tx_func_error_t;
315
316 #endif /* AVF_H */
317
318 /*
319  * fd.io coding-style-patch-verification: ON
320  *
321  * Local Variables:
322  * eval: (c-set-style "gnu")
323  * End:
324  */