dpdk: add support for DPDK 18.02, deprecate 17.08
[vpp.git] / src / plugins / dpdk / device / dpdk.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_dpdk_h__
16 #define __included_dpdk_h__
17
18 /* $$$$ We should rename always_inline -> clib_always_inline */
19 #undef always_inline
20
21 #include <rte_config.h>
22
23 #include <rte_common.h>
24 #include <rte_dev.h>
25 #include <rte_memory.h>
26 #include <rte_eal.h>
27 #include <rte_per_lcore.h>
28 #include <rte_cycles.h>
29 #include <rte_lcore.h>
30 #include <rte_per_lcore.h>
31 #include <rte_interrupts.h>
32 #include <rte_pci.h>
33 #include <rte_ether.h>
34 #include <rte_ethdev.h>
35 #include <rte_ring.h>
36 #include <rte_mempool.h>
37 #include <rte_mbuf.h>
38 #include <rte_version.h>
39 #include <rte_eth_bond.h>
40 #include <rte_sched.h>
41 #include <rte_net.h>
42 #include <rte_bus_pci.h>
43
44 #include <vnet/unix/pcap.h>
45 #include <vnet/devices/devices.h>
46
47 #if CLIB_DEBUG > 0
48 #define always_inline static inline
49 #else
50 #define always_inline static inline __attribute__ ((__always_inline__))
51 #endif
52
53 #include <vlib/pci/pci.h>
54
55 #define NB_MBUF   (16<<10)
56
57 extern vnet_device_class_t dpdk_device_class;
58 extern vlib_node_registration_t dpdk_input_node;
59
60 #define foreach_dpdk_pmd          \
61   _ ("net_thunderx", THUNDERX)    \
62   _ ("net_e1000_em", E1000EM)     \
63   _ ("net_e1000_igb", IGB)        \
64   _ ("net_e1000_igb_vf", IGBVF)   \
65   _ ("net_ixgbe", IXGBE)          \
66   _ ("net_ixgbe_vf", IXGBEVF)     \
67   _ ("net_i40e", I40E)            \
68   _ ("net_i40e_vf", I40EVF)       \
69   _ ("net_virtio", VIRTIO)        \
70   _ ("net_enic", ENIC)            \
71   _ ("net_vmxnet3", VMXNET3)      \
72   _ ("AF_PACKET PMD", AF_PACKET)  \
73   _ ("net_bonding", BOND)         \
74   _ ("net_fm10k", FM10K)          \
75   _ ("net_cxgbe", CXGBE)          \
76   _ ("net_mlx4", MLX4)            \
77   _ ("net_mlx5", MLX5)            \
78   _ ("net_dpaa2", DPAA2)          \
79   _ ("net_virtio_user", VIRTIO_USER) \
80   _ ("net_vhost", VHOST_ETHER)    \
81   _ ("net_ena", ENA)
82
83 typedef enum
84 {
85   VNET_DPDK_PMD_NONE,
86 #define _(s,f) VNET_DPDK_PMD_##f,
87   foreach_dpdk_pmd
88 #undef _
89     VNET_DPDK_PMD_UNKNOWN,      /* must be last */
90 } dpdk_pmd_t;
91
92 typedef enum
93 {
94   VNET_DPDK_PORT_TYPE_ETH_1G,
95   VNET_DPDK_PORT_TYPE_ETH_10G,
96   VNET_DPDK_PORT_TYPE_ETH_25G,
97   VNET_DPDK_PORT_TYPE_ETH_40G,
98   VNET_DPDK_PORT_TYPE_ETH_50G,
99   VNET_DPDK_PORT_TYPE_ETH_100G,
100   VNET_DPDK_PORT_TYPE_ETH_BOND,
101   VNET_DPDK_PORT_TYPE_ETH_SWITCH,
102   VNET_DPDK_PORT_TYPE_AF_PACKET,
103   VNET_DPDK_PORT_TYPE_ETH_VF,
104   VNET_DPDK_PORT_TYPE_VIRTIO_USER,
105   VNET_DPDK_PORT_TYPE_VHOST_ETHER,
106   VNET_DPDK_PORT_TYPE_UNKNOWN,
107 } dpdk_port_type_t;
108
109 /*
110  * The header for the tx_vector in dpdk_device_t.
111  * Head and tail are indexes into the tx_vector and are of type
112  * u64 so they never overflow.
113  */
114 typedef struct
115 {
116   u64 tx_head;
117   u64 tx_tail;
118 } tx_ring_hdr_t;
119
120 typedef uint16_t dpdk_portid_t;
121
122 typedef struct
123 {
124   struct rte_ring *swq;
125
126   u64 hqos_field0_slabmask;
127   u32 hqos_field0_slabpos;
128   u32 hqos_field0_slabshr;
129   u64 hqos_field1_slabmask;
130   u32 hqos_field1_slabpos;
131   u32 hqos_field1_slabshr;
132   u64 hqos_field2_slabmask;
133   u32 hqos_field2_slabpos;
134   u32 hqos_field2_slabshr;
135   u32 hqos_tc_table[64];
136 } dpdk_device_hqos_per_worker_thread_t;
137
138 typedef struct
139 {
140   struct rte_ring **swq;
141   struct rte_mbuf **pkts_enq;
142   struct rte_mbuf **pkts_deq;
143   struct rte_sched_port *hqos;
144   u32 hqos_burst_enq;
145   u32 hqos_burst_deq;
146   u32 pkts_enq_len;
147   u32 swq_pos;
148   u32 flush_count;
149 } dpdk_device_hqos_per_hqos_thread_t;
150
151 typedef struct
152 {
153   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
154   volatile u32 **lockp;
155
156   /* Instance ID */
157   dpdk_portid_t device_index;
158
159   u32 hw_if_index;
160   u32 vlib_sw_if_index;
161
162   /* next node index if we decide to steal the rx graph arc */
163   u32 per_interface_next_index;
164
165   /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
166   struct rte_mbuf ***tx_vectors;        /* one per worker thread */
167   struct rte_mbuf ***rx_vectors;
168
169   dpdk_pmd_t pmd:8;
170   i8 cpu_socket;
171
172   u16 flags;
173 #define DPDK_DEVICE_FLAG_ADMIN_UP           (1 << 0)
174 #define DPDK_DEVICE_FLAG_PROMISC            (1 << 1)
175 #define DPDK_DEVICE_FLAG_PMD                (1 << 2)
176 #define DPDK_DEVICE_FLAG_PMD_INIT_FAIL      (1 << 3)
177 #define DPDK_DEVICE_FLAG_MAYBE_MULTISEG     (1 << 4)
178 #define DPDK_DEVICE_FLAG_HAVE_SUBIF         (1 << 5)
179 #define DPDK_DEVICE_FLAG_HQOS               (1 << 6)
180 #define DPDK_DEVICE_FLAG_BOND_SLAVE         (1 << 7)
181 #define DPDK_DEVICE_FLAG_BOND_SLAVE_UP      (1 << 8)
182 #define DPDK_DEVICE_FLAG_TX_OFFLOAD         (1 << 9)
183 #define DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM   (1 << 10)
184
185   u16 nb_tx_desc;
186     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
187
188   u8 *interface_name_suffix;
189
190   /* number of sub-interfaces */
191   u16 num_subifs;
192
193   /* PMD related */
194   u16 tx_q_used;
195   u16 rx_q_used;
196   u16 nb_rx_desc;
197   u16 *cpu_socket_id_by_queue;
198   u8 *buffer_pool_for_queue;
199   struct rte_eth_conf port_conf;
200   struct rte_eth_txconf tx_conf;
201
202   /* HQoS related */
203   dpdk_device_hqos_per_worker_thread_t *hqos_wt;
204   dpdk_device_hqos_per_hqos_thread_t *hqos_ht;
205
206   /* af_packet or BondEthernet instance number */
207   dpdk_portid_t port_id;
208
209   /* Bonded interface port# of a slave -
210      only valid if DPDK_DEVICE_FLAG_BOND_SLAVE bit is set */
211   dpdk_portid_t bond_port;
212
213   struct rte_eth_link link;
214   f64 time_last_link_update;
215
216   struct rte_eth_stats stats;
217   struct rte_eth_stats last_stats;
218   struct rte_eth_stats last_cleared_stats;
219   struct rte_eth_xstat *xstats;
220   struct rte_eth_xstat *last_cleared_xstats;
221   f64 time_last_stats_update;
222   dpdk_port_type_t port_type;
223
224   /* mac address */
225   u8 *default_mac_address;
226
227   /* error string */
228   clib_error_t *errors;
229 } dpdk_device_t;
230
231 #define DPDK_STATS_POLL_INTERVAL      (10.0)
232 #define DPDK_MIN_STATS_POLL_INTERVAL  (0.001)   /* 1msec */
233
234 #define DPDK_LINK_POLL_INTERVAL       (3.0)
235 #define DPDK_MIN_LINK_POLL_INTERVAL   (0.001)   /* 1msec */
236
237 typedef struct
238 {
239   u32 device;
240   u16 queue_id;
241 } dpdk_device_and_queue_t;
242
243 #ifndef DPDK_HQOS_DBG_BYPASS
244 #define DPDK_HQOS_DBG_BYPASS 0
245 #endif
246
247 #ifndef HQOS_FLUSH_COUNT_THRESHOLD
248 #define HQOS_FLUSH_COUNT_THRESHOLD              100000
249 #endif
250
251 typedef struct dpdk_device_config_hqos_t
252 {
253   u32 hqos_thread;
254   u32 hqos_thread_valid;
255
256   u32 swq_size;
257   u32 burst_enq;
258   u32 burst_deq;
259
260   u32 pktfield0_slabpos;
261   u32 pktfield1_slabpos;
262   u32 pktfield2_slabpos;
263   u64 pktfield0_slabmask;
264   u64 pktfield1_slabmask;
265   u64 pktfield2_slabmask;
266   u32 tc_table[64];
267
268   struct rte_sched_port_params port;
269   struct rte_sched_subport_params *subport;
270   struct rte_sched_pipe_params *pipe;
271   uint32_t *pipe_map;
272 } dpdk_device_config_hqos_t;
273
274 int dpdk_hqos_validate_mask (u64 mask, u32 n);
275 void dpdk_device_config_hqos_pipe_profile_default (dpdk_device_config_hqos_t *
276                                                    hqos, u32 pipe_profile_id);
277 void dpdk_device_config_hqos_default (dpdk_device_config_hqos_t * hqos);
278 clib_error_t *dpdk_port_setup_hqos (dpdk_device_t * xd,
279                                     dpdk_device_config_hqos_t * hqos);
280 void dpdk_hqos_metadata_set (dpdk_device_hqos_per_worker_thread_t * hqos,
281                              struct rte_mbuf **pkts, u32 n_pkts);
282
283 #define foreach_dpdk_device_config_item \
284   _ (num_rx_queues) \
285   _ (num_tx_queues) \
286   _ (num_rx_desc) \
287   _ (num_tx_desc) \
288   _ (rss_fn)
289
290 typedef struct
291 {
292   vlib_pci_addr_t pci_addr;
293   u8 is_blacklisted;
294   u8 vlan_strip_offload;
295 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
296 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
297 #define DPDK_DEVICE_VLAN_STRIP_ON  2
298
299 #define _(x) uword x;
300     foreach_dpdk_device_config_item
301 #undef _
302     clib_bitmap_t * workers;
303   u32 hqos_enabled;
304   dpdk_device_config_hqos_t hqos;
305 } dpdk_device_config_t;
306
307 typedef struct
308 {
309
310   /* Config stuff */
311   u8 **eal_init_args;
312   u8 *eal_init_args_str;
313   u8 *uio_driver_name;
314   u8 no_multi_seg;
315   u8 enable_tcp_udp_checksum;
316   u8 no_tx_checksum_offload;
317
318   /* Required config parameters */
319   u8 coremask_set_manually;
320   u8 nchannels_set_manually;
321   u32 coremask;
322   u32 nchannels;
323   u32 num_mbufs;
324
325   /*
326    * format interface names ala xxxEthernet%d/%d/%d instead of
327    * xxxEthernet%x/%x/%x.
328    */
329   u8 interface_name_format_decimal;
330
331   /* per-device config */
332   dpdk_device_config_t default_devconf;
333   dpdk_device_config_t *dev_confs;
334   uword *device_config_index_by_pci_addr;
335
336 } dpdk_config_main_t;
337
338 extern dpdk_config_main_t dpdk_config_main;
339
340 typedef struct
341 {
342
343   /* Devices */
344   dpdk_device_t *devices;
345   dpdk_device_and_queue_t **devices_by_hqos_cpu;
346
347   /* per-thread recycle lists */
348   u32 **recycle;
349
350   /* per-thread buffer templates */
351   vlib_buffer_t *buffer_templates;
352
353   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
354   u32 buffer_flags_template;
355
356   /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
357   int tx_pcap_enable;
358   pcap_main_t pcap_main;
359   u8 *pcap_filename;
360   u32 pcap_sw_if_index;
361   u32 pcap_pkts_to_capture;
362
363   /*
364    * flag indicating that a posted admin up/down
365    * (via post_sw_interface_set_flags) is in progress
366    */
367   u8 admin_up_down_in_progress;
368
369   /* which cpus are running I/O TX */
370   int hqos_cpu_first_index;
371   int hqos_cpu_count;
372
373   /* control interval of dpdk link state and stat polling */
374   f64 link_state_poll_interval;
375   f64 stat_poll_interval;
376
377   /* Sleep for this many usec after each device poll */
378   u32 poll_sleep_usec;
379
380   /* convenience */
381   vlib_main_t *vlib_main;
382   vnet_main_t *vnet_main;
383   dpdk_config_main_t *conf;
384
385   /* mempool */
386   struct rte_mempool **pktmbuf_pools;
387
388   /* API message ID base */
389   u16 msg_id_base;
390 } dpdk_main_t;
391
392 extern dpdk_main_t dpdk_main;
393
394 typedef struct
395 {
396   u32 buffer_index;
397   u16 device_index;
398   u8 queue_index;
399   struct rte_mbuf mb;
400   /* Copy of VLIB buffer; packet data stored in pre_data. */
401   vlib_buffer_t buffer;
402   u8 data[256];                 /* First 256 data bytes, used for hexdump */
403 } dpdk_tx_dma_trace_t;
404
405 typedef struct
406 {
407   u32 buffer_index;
408   u16 device_index;
409   u16 queue_index;
410   struct rte_mbuf mb;
411   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
412   u8 data[256];                 /* First 256 data bytes, used for hexdump */
413 } dpdk_rx_dma_trace_t;
414
415 void dpdk_device_setup (dpdk_device_t * xd);
416 void dpdk_device_start (dpdk_device_t * xd);
417 void dpdk_device_stop (dpdk_device_t * xd);
418
419 int dpdk_port_state_callback (dpdk_portid_t port_id,
420                               enum rte_eth_event_type type,
421                               void *param, void *ret_param);
422
423 #define foreach_dpdk_error                                              \
424   _(NONE, "no error")                                                   \
425   _(RX_PACKET_ERROR, "Rx packet errors")                                \
426   _(RX_BAD_FCS, "Rx bad fcs")                                           \
427   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
428   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
429   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
430   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
431
432 typedef enum
433 {
434 #define _(f,s) DPDK_ERROR_##f,
435   foreach_dpdk_error
436 #undef _
437     DPDK_N_ERROR,
438 } dpdk_error_t;
439
440 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
441
442 format_function_t format_dpdk_device_name;
443 format_function_t format_dpdk_device;
444 format_function_t format_dpdk_device_errors;
445 format_function_t format_dpdk_tx_dma_trace;
446 format_function_t format_dpdk_rx_dma_trace;
447 format_function_t format_dpdk_rte_mbuf;
448 format_function_t format_dpdk_rx_rte_mbuf;
449 unformat_function_t unformat_dpdk_log_level;
450 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
451 clib_error_t *unformat_hqos (unformat_input_t * input,
452                              dpdk_device_config_hqos_t * hqos);
453
454 uword
455 admin_up_down_process (vlib_main_t * vm,
456                        vlib_node_runtime_t * rt, vlib_frame_t * f);
457
458 clib_error_t *dpdk_pool_create (vlib_main_t * vm, u8 * pool_name,
459                                 u32 elt_size, u32 num_elts,
460                                 u32 pool_priv_size, u16 cache_size, u8 numa,
461                                 struct rte_mempool **_mp,
462                                 vlib_physmem_region_index_t * pri);
463
464 clib_error_t *dpdk_buffer_pool_create (vlib_main_t * vm, unsigned num_mbufs,
465                                        unsigned socket_id);
466
467 #if CLI_DEBUG
468 int dpdk_buffer_validate_trajectory_all (u32 * uninitialized);
469 void dpdk_buffer_poison_trajectory_all (void);
470 #endif
471
472 #endif /* __included_dpdk_h__ */
473
474 /*
475  * fd.io coding-style-patch-verification: ON
476  *
477  * Local Variables:
478  * eval: (c-set-style "gnu")
479  * End:
480  */