Add -fno-common compile option
[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   u8 buffer_pool_index;
106 } avf_rxq_t;
107
108 typedef struct
109 {
110   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
111   volatile u32 *qtx_tail;
112   u16 next;
113   u16 size;
114   clib_spinlock_t lock;
115   avf_tx_desc_t *descs;
116   u32 *bufs;
117   u16 n_enqueued;
118   u16 *rs_slots;
119 } avf_txq_t;
120
121 typedef struct
122 {
123   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
124   u32 flags;
125   u32 per_interface_next_index;
126
127   u32 dev_instance;
128   u32 sw_if_index;
129   u32 hw_if_index;
130   vlib_pci_dev_handle_t pci_dev_handle;
131   u32 numa_node;
132   void *bar0;
133   u8 *name;
134
135   /* queues */
136   avf_rxq_t *rxqs;
137   avf_txq_t *txqs;
138   u16 n_tx_queues;
139   u16 n_rx_queues;
140
141   /* Admin queues */
142   avf_aq_desc_t *atq;
143   avf_aq_desc_t *arq;
144   void *atq_bufs;
145   void *arq_bufs;
146   u64 atq_bufs_pa;
147   u64 arq_bufs_pa;
148   u16 atq_next_slot;
149   u16 arq_next_slot;
150   virtchnl_pf_event_t *events;
151
152   u16 vsi_id;
153   u32 feature_bitmap;
154   u8 hwaddr[6];
155   u16 num_queue_pairs;
156   u16 max_vectors;
157   u16 max_mtu;
158   u32 rss_key_size;
159   u32 rss_lut_size;
160   virtchnl_link_speed_t link_speed;
161
162   /* stats */
163   virtchnl_eth_stats_t eth_stats;
164
165   /* error */
166   clib_error_t *error;
167 } avf_device_t;
168
169 #define AVF_RX_VECTOR_SZ VLIB_FRAME_SIZE
170
171 typedef enum
172 {
173   AVF_PROCESS_EVENT_START = 1,
174   AVF_PROCESS_EVENT_STOP = 2,
175   AVF_PROCESS_EVENT_AQ_INT = 3,
176 } avf_process_event_t;
177
178 typedef struct
179 {
180   u64 qw1s[AVF_RX_MAX_DESC_IN_CHAIN - 1];
181   u32 buffers[AVF_RX_MAX_DESC_IN_CHAIN - 1];
182 } avf_rx_tail_t;
183
184 typedef struct
185 {
186   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
187   vlib_buffer_t *bufs[AVF_RX_VECTOR_SZ];
188   u64 qw1s[AVF_RX_VECTOR_SZ];
189   avf_rx_tail_t tails[AVF_RX_VECTOR_SZ];
190   vlib_buffer_t buffer_template;
191 } avf_per_thread_data_t;
192
193 typedef struct
194 {
195   u16 msg_id_base;
196
197   avf_device_t *devices;
198   avf_per_thread_data_t *per_thread_data;
199
200   vlib_log_class_t log_class;
201 } avf_main_t;
202
203 extern avf_main_t avf_main;
204
205 typedef struct
206 {
207   vlib_pci_addr_t addr;
208   u8 *name;
209   int enable_elog;
210   u16 rxq_num;
211   u16 rxq_size;
212   u16 txq_size;
213   /* return */
214   int rv;
215   u32 sw_if_index;
216   clib_error_t *error;
217 } avf_create_if_args_t;
218
219 void avf_create_if (vlib_main_t * vm, avf_create_if_args_t * args);
220 void avf_delete_if (vlib_main_t * vm, avf_device_t * ad);
221
222 extern vlib_node_registration_t avf_input_node;
223 extern vnet_device_class_t avf_device_class;
224
225 /* format.c */
226 format_function_t format_avf_device;
227 format_function_t format_avf_device_name;
228 format_function_t format_avf_input_trace;
229
230 static inline u32
231 avf_get_u32 (void *start, int offset)
232 {
233   return *(u32 *) (((u8 *) start) + offset);
234 }
235
236 static inline u64
237 avf_get_u64 (void *start, int offset)
238 {
239   return *(u64 *) (((u8 *) start) + offset);
240 }
241
242 static inline u32
243 avf_get_u32_bits (void *start, int offset, int first, int last)
244 {
245   u32 value = avf_get_u32 (start, offset);
246   if ((last == 0) && (first == 31))
247     return value;
248   value >>= last;
249   value &= (1 << (first - last + 1)) - 1;
250   return value;
251 }
252
253 static inline u64
254 avf_get_u64_bits (void *start, int offset, int first, int last)
255 {
256   u64 value = avf_get_u64 (start, offset);
257   if ((last == 0) && (first == 63))
258     return value;
259   value >>= last;
260   value &= (1 << (first - last + 1)) - 1;
261   return value;
262 }
263
264 static inline void
265 avf_set_u32 (void *start, int offset, u32 value)
266 {
267   (*(u32 *) (((u8 *) start) + offset)) = value;
268 }
269
270 static inline void
271 avf_reg_write (avf_device_t * ad, u32 addr, u32 val)
272 {
273   *(volatile u32 *) ((u8 *) ad->bar0 + addr) = val;
274 }
275
276 static inline u32
277 avf_reg_read (avf_device_t * ad, u32 addr)
278 {
279   return *(volatile u32 *) (ad->bar0 + addr);
280 }
281
282 static inline void
283 avf_reg_flush (avf_device_t * ad)
284 {
285   avf_reg_read (ad, AVFGEN_RSTAT);
286   asm volatile ("":::"memory");
287 }
288
289 static_always_inline int
290 avf_rxd_is_not_eop (avf_rx_desc_t * d)
291 {
292   return (d->qword[1] & AVF_RXD_STATUS_EOP) == 0;
293 }
294
295 static_always_inline int
296 avf_rxd_is_not_dd (avf_rx_desc_t * d)
297 {
298   return (d->qword[1] & AVF_RXD_STATUS_DD) == 0;
299 }
300
301 typedef struct
302 {
303   u32 next_index;
304   u32 hw_if_index;
305   u64 qw1s[AVF_RX_MAX_DESC_IN_CHAIN];
306 } avf_input_trace_t;
307
308 #define foreach_avf_tx_func_error              \
309 _(NO_FREE_SLOTS, "no free tx slots")
310
311 typedef enum
312 {
313 #define _(f,s) AVF_TX_ERROR_##f,
314   foreach_avf_tx_func_error
315 #undef _
316     AVF_TX_N_ERROR,
317 } avf_tx_func_error_t;
318
319 #endif /* AVF_H */
320
321 /*
322  * fd.io coding-style-patch-verification: ON
323  *
324  * Local Variables:
325  * eval: (c-set-style "gnu")
326  * End:
327  */