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