FD.io VPP  v21.06-1-gbb7418cf9
Vector Packet Processing
avf.h
Go to the documentation of this file.
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 <vppinfra/types.h>
25 #include <vppinfra/lock.h>
26 
27 #include <vlib/log.h>
28 #include <vlib/pci/pci.h>
29 
30 #include <vnet/interface.h>
31 
32 #include <vnet/devices/devices.h>
33 #include <vnet/flow/flow.h>
34 
35 #define AVF_QUEUE_SZ_MAX 4096
36 #define AVF_QUEUE_SZ_MIN 64
37 
38 #define AVF_AQ_ENQ_SUSPEND_TIME 50e-6
39 #define AVF_AQ_ENQ_MAX_WAIT_TIME 250e-3
40 
41 #define AVF_RESET_SUSPEND_TIME 20e-3
42 #define AVF_RESET_MAX_WAIT_TIME 1
43 
44 #define AVF_SEND_TO_PF_SUSPEND_TIME 10e-3
45 #define AVF_SEND_TO_PF_MAX_WAIT_TIME 1
46 
47 #define AVF_RXD_STATUS(x) (1ULL << x)
48 #define AVF_RXD_STATUS_DD AVF_RXD_STATUS(0)
49 #define AVF_RXD_STATUS_EOP AVF_RXD_STATUS(1)
50 #define AVF_RXD_STATUS_FLM AVF_RXD_STATUS (11)
51 #define AVF_RXD_ERROR_SHIFT 19
52 #define AVF_RXD_PTYPE_SHIFT 30
53 #define AVF_RXD_LEN_SHIFT 38
54 #define AVF_RX_MAX_DESC_IN_CHAIN 5
55 
56 #define AVF_RXD_ERROR_IPE (1ULL << (AVF_RXD_ERROR_SHIFT + 3))
57 #define AVF_RXD_ERROR_L4E (1ULL << (AVF_RXD_ERROR_SHIFT + 4))
58 
59 #define AVF_TXD_CMD(x) (1 << (x + 4))
60 #define AVF_TXD_CMD_EXT(x, val) ((u64)val << (x + 4))
61 #define AVF_TXD_CMD_EOP AVF_TXD_CMD(0)
62 #define AVF_TXD_CMD_RS AVF_TXD_CMD(1)
63 #define AVF_TXD_CMD_RSV AVF_TXD_CMD(2)
64 
65 #define AVF_TXD_CMD_IIPT_NONE AVF_TXD_CMD_EXT(5, 0)
66 #define AVF_TXD_CMD_IIPT_IPV6 AVF_TXD_CMD_EXT(5, 1)
67 #define AVF_TXD_CMD_IIPT_IPV4_NO_CSUM AVF_TXD_CMD_EXT(5, 2)
68 #define AVF_TXD_CMD_IIPT_IPV4 AVF_TXD_CMD_EXT(5, 3)
69 
70 #define AVF_TXD_CMD_L4T_UNKNOWN AVF_TXD_CMD_EXT(8, 0)
71 #define AVF_TXD_CMD_L4T_TCP AVF_TXD_CMD_EXT(8, 1)
72 #define AVF_TXD_CMD_L4T_SCTP AVF_TXD_CMD_EXT(8, 2)
73 #define AVF_TXD_CMD_L4T_UDP AVF_TXD_CMD_EXT(8, 3)
74 
75 #define AVF_TXD_OFFSET(x,factor,val) (((u64)val/(u64)factor) << (16 + x))
76 #define AVF_TXD_OFFSET_MACLEN(val) AVF_TXD_OFFSET( 0, 2, val)
77 #define AVF_TXD_OFFSET_IPLEN(val) AVF_TXD_OFFSET( 7, 4, val)
78 #define AVF_TXD_OFFSET_L4LEN(val) AVF_TXD_OFFSET(14, 4, val)
79 
80 #define AVF_TXD_DTYP_CTX 0x1ULL
81 #define AVF_TXD_CTX_CMD_TSO AVF_TXD_CMD(0)
82 #define AVF_TXD_CTX_SEG(val,x) (((u64)val) << (30 + x))
83 #define AVF_TXD_CTX_SEG_TLEN(val) AVF_TXD_CTX_SEG(val,0)
84 #define AVF_TXD_CTX_SEG_MSS(val) AVF_TXD_CTX_SEG(val,20)
85 
86 
89 
90 #define avf_log_err(dev, f, ...) \
91  vlib_log (VLIB_LOG_LEVEL_ERR, avf_log.class, "%U: " f, \
92  format_vlib_pci_addr, &dev->pci_addr, \
93  ## __VA_ARGS__)
94 
95 #define avf_log_warn(dev, f, ...) \
96  vlib_log (VLIB_LOG_LEVEL_WARNING, avf_log.class, "%U: " f, \
97  format_vlib_pci_addr, &dev->pci_addr, \
98  ## __VA_ARGS__)
99 
100 #define avf_log_debug(dev, f, ...) \
101  vlib_log (VLIB_LOG_LEVEL_DEBUG, avf_log.class, "%U: " f, \
102  format_vlib_pci_addr, &dev->pci_addr, \
103  ## __VA_ARGS__)
104 
105 #define avf_stats_log_debug(dev, f, ...) \
106  vlib_log (VLIB_LOG_LEVEL_DEBUG, avf_stats_log.class, "%U: " f, \
107  format_vlib_pci_addr, &dev->pci_addr, ##__VA_ARGS__)
108 
109 #define foreach_avf_device_flags \
110  _ (0, INITIALIZED, "initialized") \
111  _ (1, ERROR, "error") \
112  _ (2, ADMIN_UP, "admin-up") \
113  _ (3, VA_DMA, "vaddr-dma") \
114  _ (4, LINK_UP, "link-up") \
115  _ (6, ELOG, "elog") \
116  _ (7, PROMISC, "promisc") \
117  _ (8, RX_INT, "rx-interrupts") \
118  _ (9, RX_FLOW_OFFLOAD, "rx-flow-offload")
119 
120 enum
121 {
122 #define _(a, b, c) AVF_DEVICE_F_##b = (1 << a),
124 #undef _
125 };
126 
127 typedef volatile struct
128 {
129  union
130  {
131  struct
132  {
133  u64 mirr:13;
142 
143  u64 rsv3 : 64;
146  };
147  u64 qword[4];
148 #ifdef CLIB_HAVE_VEC256
149  u64x4 as_u64x4;
150 #endif
151  };
152 } avf_rx_desc_t;
153 
155 
156 typedef struct
157 {
158  union
159  {
160  u64 qword[2];
161 #ifdef CLIB_HAVE_VEC128
162  u64x2 as_u64x2;
163 #endif
164  };
165 } avf_tx_desc_t;
166 
168 
169 typedef struct
170 {
171  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
172  volatile u32 *qrx_tail;
181 } avf_rxq_t;
182 
183 typedef struct
184 {
185  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
186  volatile u32 *qtx_tail;
195 
199 } avf_txq_t;
200 
201 typedef struct
202 {
207 
208 typedef struct
209 {
214 
215 typedef struct
216 {
217  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
220 
226  void *bar0;
228 
229  /* queues */
234 
235  /* Admin queues */
238  void *atq_bufs;
239  void *arq_bufs;
245 
248  u8 hwaddr[6];
256  vlib_pci_addr_t pci_addr;
257 
258  /* flow */
261 
262  /* stats */
265 
266  /* error */
268 } avf_device_t;
269 
270 #define AVF_RX_VECTOR_SZ VLIB_FRAME_SIZE
271 
272 typedef enum
273 {
279 
280 typedef enum
281 {
286 
287 typedef struct
288 {
292  u8 eth_addr[6];
293  int is_add, is_enable;
294 
295  /* below parameters are used for 'program flow' event */
300 
303 
304 typedef struct
305 {
308 } avf_rx_tail_t;
309 
310 typedef struct
311 {
312  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
320 
321 typedef struct
322 {
324 
327 } avf_main_t;
328 
329 extern avf_main_t avf_main;
330 
331 typedef struct
332 {
333  vlib_pci_addr_t addr;
340  /* return */
341  int rv;
345 
347 
351 
352 clib_error_t *avf_program_flow (u32 dev_instance, int is_add, u8 *rule,
353  u32 rule_len, u8 *program_status,
354  u32 status_len);
355 
356 /* format.c */
366 
368 avf_get_device (u32 dev_instance)
369 {
370  return pool_elt_at_index (avf_main.devices, dev_instance)[0];
371 }
372 
373 /* elog.c */
374 void avf_elog_init ();
375 void avf_elog_reg (avf_device_t *ad, u32 addr, u32 val, int is_read);
379 
380 static inline u32
381 avf_get_u32 (void *start, int offset)
382 {
383  return *(u32 *) (((u8 *) start) + offset);
384 }
385 
386 static inline u64
387 avf_get_u64 (void *start, int offset)
388 {
389  return *(u64 *) (((u8 *) start) + offset);
390 }
391 
392 static inline u32
393 avf_get_u32_bits (void *start, int offset, int first, int last)
394 {
395  u32 value = avf_get_u32 (start, offset);
396  if ((last == 0) && (first == 31))
397  return value;
398  value >>= last;
399  value &= (1 << (first - last + 1)) - 1;
400  return value;
401 }
402 
403 static inline u64
404 avf_get_u64_bits (void *start, int offset, int first, int last)
405 {
406  u64 value = avf_get_u64 (start, offset);
407  if ((last == 0) && (first == 63))
408  return value;
409  value >>= last;
410  value &= (1 << (first - last + 1)) - 1;
411  return value;
412 }
413 
414 static inline void
415 avf_set_u32 (void *start, int offset, u32 value)
416 {
417  (*(u32 *) (((u8 *) start) + offset)) = value;
418 }
419 
420 static inline void
422 {
423  if (ad->flags & AVF_DEVICE_F_ELOG)
424  avf_elog_reg (ad, addr, val, 0);
425  *(volatile u32 *) ((u8 *) ad->bar0 + addr) = val;
426 }
427 
428 static inline u32
430 {
431  u32 val = *(volatile u32 *) (ad->bar0 + addr);
432 
433  if (ad->flags & AVF_DEVICE_F_ELOG)
434  avf_elog_reg (ad, addr, val, 1);
435 
436  return val;
437 }
438 
439 static inline void
441 {
443  asm volatile ("":::"memory");
444 }
445 
446 static inline void
447 avf_tail_write (volatile u32 *addr, u32 val)
448 {
449 #ifdef __MOVDIRI__
450  _mm_sfence ();
451  _directstoreu_u32 ((void *) addr, val);
452 #else
453  clib_atomic_store_rel_n (addr, val);
454 #endif
455 }
456 
459 {
460  return (d->qword[1] & AVF_RXD_STATUS_EOP) == 0;
461 }
462 
465 {
466  return (d->qword[1] & AVF_RXD_STATUS_DD) == 0;
467 }
468 
469 typedef struct
470 {
477 
478 #define foreach_avf_tx_func_error \
479  _(SEGMENT_SIZE_EXCEEDED, "segment size exceeded") \
480  _(NO_FREE_SLOTS, "no free tx slots")
481 
482 typedef enum
483 {
484 #define _(f,s) AVF_TX_ERROR_##f,
486 #undef _
489 
490 #endif /* AVF_H */
491 
492 /*
493  * fd.io coding-style-patch-verification: ON
494  *
495  * Local Variables:
496  * eval: (c-set-style "gnu")
497  * End:
498  */
u8 int_mode
Definition: avf.h:178
u32 hw_if_index
Definition: avf.h:223
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
format_function_t format_avf_vlan_caps
Definition: avf.h:362
u32 flow_index
Definition: avf.h:203
static u64 avf_get_u64_bits(void *start, int offset, int first, int last)
Definition: avf.h:404
u32 status_len
Definition: avf.h:299
u8 * program_status
Definition: avf.h:298
clib_error_t * error
Definition: avf.h:267
u64 mirr
Definition: avf.h:133
u32 * tmp_bufs
Definition: avf.h:197
u64 atq_bufs_pa
Definition: avf.h:240
u64 rsv3
Definition: avf.h:143
unsigned long u64
Definition: types.h:89
u16 n_rx_irqs
Definition: avf.h:251
Definition: avf.h:201
virtchnl_link_speed_t link_speed
Definition: avf.h:255
static u64 avf_get_u64(void *start, int offset)
Definition: avf.h:387
avf_process_req_type_t type
Definition: avf.h:289
static void avf_tail_write(volatile u32 *addr, u32 val)
Definition: avf.h:447
static heap_elt_t * last(heap_header_t *h)
Definition: heap.c:53
format_function_t format_avf_device
Definition: avf.h:357
vlib_pci_addr_t addr
Definition: avf.h:333
vnet_flow_dev_ops_function_t avf_flow_ops_fn
Definition: avf.h:365
u32 dev_instance
Definition: avf.h:221
virtchnl_link_speed_t
Definition: virtchnl.h:227
u32 fdid_flex_hi
Definition: avf.h:145
#define AVF_RXD_STATUS_DD
Definition: avf.h:48
struct _vnet_device_class vnet_device_class_t
format_function_t format_avf_input_trace
Definition: avf.h:359
vhost_vring_addr_t addr
Definition: vhost_user.h:130
volatile u32 * qtx_tail
Definition: avf.h:186
clib_error_t * avf_program_flow(u32 dev_instance, int is_add, u8 *rule, u32 rule_len, u8 *program_status, u32 status_len)
Definition: device.c:1886
clib_error_t * error
Definition: avf.h:301
#define foreach_avf_device_flags
Definition: avf.h:109
unsigned char u8
Definition: types.h:56
vnet_device_class_t avf_device_class
unsigned int u32
Definition: types.h:88
u8 buffer_pool_index
Definition: avf.h:179
u8 *() format_function_t(u8 *s, va_list *args)
Definition: format.h:48
u32 cap_flags
Definition: avf.h:247
u32 calling_process_index
Definition: avf.h:291
u16 * rs_slots
Definition: avf.h:194
#define static_always_inline
Definition: clib.h:112
avf_tx_desc_t * tmp_descs
Definition: avf.h:196
clib_spinlock_t lock
Definition: avf.h:190
static u32 avf_reg_read(avf_device_t *ad, u32 addr)
Definition: avf.h:429
static u32 avf_get_u32_bits(void *start, int offset, int first, int last)
Definition: avf.h:393
volatile u32 * qrx_tail
Definition: avf.h:172
vlib_log_class_registration_t avf_log
vlib_pci_dev_handle_t pci_dev_handle
Definition: avf.h:224
int is_enable
Definition: avf.h:293
void * arq_bufs
Definition: avf.h:239
avf_aq_desc_t * arq
Definition: avf.h:237
epu8_epi32 epu16_epi32 u64x2
Definition: vector_sse42.h:641
void avf_create_if(vlib_main_t *vm, avf_create_if_args_t *args)
Definition: device.c:1582
static heap_elt_t * first(heap_header_t *h)
Definition: heap.c:59
u16 next_index
Definition: avf.h:472
u32 hw_if_index
Definition: avf.h:473
u16 * next
void avf_elog_aq_enq_resp(avf_device_t *ad, avf_aq_desc_t *d)
Definition: elog.c:70
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
u8 * name
Definition: avf.h:227
virtchnl_eth_stats_t last_cleared_eth_stats
Definition: avf.h:264
void avf_elog_aq_enq_req(avf_device_t *ad, avf_aq_desc_t *d)
Definition: elog.c:15
static u32 avf_get_u32(void *start, int offset)
Definition: avf.h:381
u32 rule_len
Definition: avf.h:297
unsigned short u16
Definition: types.h:57
u64 qword[4]
Definition: avf.h:147
#define AVF_RX_VECTOR_SZ
Definition: avf.h:270
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
u32 * ph_bufs
Definition: avf.h:189
vlib_log_class_registration_t avf_stats_log
static void avf_reg_flush(avf_device_t *ad)
Definition: avf.h:440
u32 vlib_pci_dev_handle_t
Definition: pci.h:97
#define AVF_RXD_STATUS_EOP
Definition: avf.h:49
avf_device_t ** devices
Definition: avf.h:325
u16 n_rx_queues
Definition: avf.h:233
vlib_node_registration_t avf_process_node
(constructor) VLIB_REGISTER_NODE (avf_process_node)
Definition: device.c:1394
u16 atq_next_slot
Definition: avf.h:242
avf_flow_entry_t * flow_entries
Definition: avf.h:259
u32 queue_index
Definition: avf.h:180
u32 numa_node
Definition: avf.h:225
vlib_node_registration_t avf_input_node
(constructor) VLIB_REGISTER_NODE (avf_input_node)
Definition: input.c:575
u32 flow_id
Definition: avf.h:210
static_always_inline int avf_rxd_is_not_dd(avf_rx_desc_t *d)
Definition: avf.h:464
u64 length
Definition: avf.h:141
avf_tx_func_error_t
Definition: avf.h:482
Definition: avf.h:169
u64 l2tag1
Definition: avf.h:135
i16 buffer_advance
Definition: avf.h:212
avf_tx_desc_t * descs
Definition: avf.h:191
u64 status
Definition: avf.h:137
u64 rsv1
Definition: avf.h:134
u64 filter_status
Definition: avf.h:136
static_always_inline avf_device_t * avf_get_device(u32 dev_instance)
Definition: avf.h:368
u16 vsi_id
Definition: avf.h:246
u32 per_interface_next_index
Definition: avf.h:219
u32 * bufs
Definition: avf.h:192
u32 queue_index
Definition: avf.h:198
u8 value
Definition: qos.api:54
avf_process_req_type_t
Definition: avf.h:280
void avf_elog_init()
Definition: elog.c:176
avf_aq_desc_t * atq
Definition: avf.h:236
format_function_t format_avf_vlan_support
Definition: avf.h:363
u32 flags
Definition: avf.h:218
Definition: avf.h:183
static void avf_set_u32(void *start, int offset, u32 value)
Definition: avf.h:415
u32 * bufs
Definition: avf.h:176
void avf_elog_reg(avf_device_t *ad, u32 addr, u32 val, int is_read)
Definition: elog.c:146
void * bar0
Definition: avf.h:226
format_function_t format_avf_eth_stats
Definition: avf.h:364
vlib_buffer_t buffer_template
Definition: avf.h:318
u16 n_enqueued
Definition: avf.h:193
u16 next_index
Definition: avf.h:211
u16 n_enqueued
Definition: avf.h:177
virtchnl_pf_event_t * events
Definition: avf.h:244
u32 flex_lo
Definition: avf.h:144
static void avf_reg_write(avf_device_t *ad, u32 addr, u32 val)
Definition: avf.h:421
void avf_elog_arq_desc(avf_device_t *ad, avf_aq_desc_t *d)
Definition: elog.c:90
avf_main_t avf_main
Definition: device.c:48
#define clib_atomic_store_rel_n(a, b)
Definition: atomics.h:52
virtchnl_eth_stats_t eth_stats
Definition: avf.h:263
void * atq_bufs
Definition: avf.h:238
#define AVFGEN_RSTAT
Definition: virtchnl.h:49
u16 msg_id_base
Definition: avf.h:323
u16 num_queue_pairs
Definition: avf.h:249
u16 next
Definition: avf.h:187
u32 dev_instance
Definition: avf.h:290
struct _vlib_node_registration vlib_node_registration_t
template key/value backing page structure
Definition: bihash_doc.h:44
avf_process_event_t
Definition: avf.h:272
u32 rss_lut_size
Definition: avf.h:254
u16 n_tx_queues
Definition: avf.h:232
avf_flow_lookup_entry_t * flow_lookup_entries
Definition: avf.h:260
format_function_t format_avf_device_name
Definition: avf.h:358
VLIB buffer representation.
Definition: buffer.h:111
#define foreach_avf_tx_func_error
Definition: avf.h:478
u16 size
Definition: avf.h:174
struct avf_fdir_conf * rcfg
Definition: avf.h:205
u16 arq_next_slot
Definition: avf.h:243
Definition: avf.h:208
avf_rxq_t * rxqs
Definition: avf.h:230
u64 error
Definition: avf.h:138
struct clib_bihash_value offset
template key/value backing page structure
clib_error_t * error
Definition: avf.h:343
format_function_t format_avf_vlan_supported_caps
Definition: avf.h:361
avf_per_thread_data_t * per_thread_data
Definition: avf.h:326
u16 size
Definition: avf.h:188
vlib_pci_addr_t pci_addr
Definition: avf.h:256
u32 sw_if_index
Definition: avf.h:222
u64 rsv2
Definition: avf.h:139
u64 arq_bufs_pa
Definition: avf.h:241
u64 ptype
Definition: avf.h:140
static_always_inline int avf_rxd_is_not_eop(avf_rx_desc_t *d)
Definition: avf.h:458
STATIC_ASSERT_SIZEOF(avf_rx_desc_t, 32)
u32 mark
Definition: avf.h:204
#define AVF_RX_MAX_DESC_IN_CHAIN
Definition: avf.h:54
vlib_buffer_t * bufs[VLIB_FRAME_SIZE]
format_function_t format_avf_vf_cap_flags
Definition: avf.h:360
u64x4
Definition: vector_avx2.h:142
u16 next
Definition: avf.h:173
avf_txq_t * txqs
Definition: avf.h:231
avf_rx_desc_t * descs
Definition: avf.h:175
u16 max_vectors
Definition: avf.h:250
signed short i16
Definition: types.h:46
int() vnet_flow_dev_ops_function_t(struct vnet_main_t *vnm, vnet_flow_dev_op_t op, u32 hw_if_index, u32 index, uword *private_data)
Definition: interface.h:105
u32 rss_key_size
Definition: avf.h:253
u16 max_mtu
Definition: avf.h:252