64a2330a3782f8e24fc8e6ad725587c715c26593
[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 #define ALLOW_EXPERIMENTAL_API
22
23 #include <rte_config.h>
24
25 #include <rte_eal.h>
26 #include <rte_bus_pci.h>
27 #include <rte_bus_vmbus.h>
28 #include <rte_ethdev.h>
29 #include <rte_version.h>
30 #include <rte_net.h>
31
32 #include <vnet/devices/devices.h>
33
34 #if CLIB_DEBUG > 0
35 #define always_inline static inline
36 #else
37 #define always_inline static inline __attribute__ ((__always_inline__))
38 #endif
39
40 #include <vlib/pci/pci.h>
41 #include <vlib/vmbus/vmbus.h>
42 #include <vnet/flow/flow.h>
43
44 extern vnet_device_class_t dpdk_device_class;
45 extern vlib_node_registration_t dpdk_input_node;
46 extern vlib_node_registration_t admin_up_down_process_node;
47
48 #if RTE_VERSION < RTE_VERSION_NUM(20, 8, 0, 0)
49 #define DPDK_MLX5_PMD_NAME "net_mlx5"
50 #else
51 #define DPDK_MLX5_PMD_NAME "mlx5_pci"
52 #endif
53
54 #define foreach_dpdk_pmd                                                      \
55   _ ("net_thunderx", THUNDERX)                                                \
56   _ ("net_e1000_em", E1000EM)                                                 \
57   _ ("net_e1000_igb", IGB)                                                    \
58   _ ("net_e1000_igb_vf", IGBVF)                                               \
59   _ ("net_ixgbe", IXGBE)                                                      \
60   _ ("net_ixgbe_vf", IXGBEVF)                                                 \
61   _ ("net_i40e", I40E)                                                        \
62   _ ("net_i40e_vf", I40EVF)                                                   \
63   _ ("net_ice", ICE)                                                          \
64   _ ("net_iavf", IAVF)                                                        \
65   _ ("net_igc", IGC)                                                          \
66   _ ("net_virtio", VIRTIO)                                                    \
67   _ ("net_enic", ENIC)                                                        \
68   _ ("net_vmxnet3", VMXNET3)                                                  \
69   _ ("AF_PACKET PMD", AF_PACKET)                                              \
70   _ ("net_fm10k", FM10K)                                                      \
71   _ ("net_cxgbe", CXGBE)                                                      \
72   _ ("net_mlx4", MLX4)                                                        \
73   _ (DPDK_MLX5_PMD_NAME, MLX5)                                                \
74   _ ("net_dpaa2", DPAA2)                                                      \
75   _ ("net_virtio_user", VIRTIO_USER)                                          \
76   _ ("net_vhost", VHOST_ETHER)                                                \
77   _ ("net_ena", ENA)                                                          \
78   _ ("net_failsafe", FAILSAFE)                                                \
79   _ ("net_liovf", LIOVF_ETHER)                                                \
80   _ ("net_qede", QEDE)                                                        \
81   _ ("net_netvsc", NETVSC)                                                    \
82   _ ("net_bnxt", BNXT)
83
84 typedef enum
85 {
86   VNET_DPDK_PMD_NONE,
87 #define _(s,f) VNET_DPDK_PMD_##f,
88   foreach_dpdk_pmd
89 #undef _
90     VNET_DPDK_PMD_UNKNOWN,      /* must be last */
91 } dpdk_pmd_t;
92
93 typedef enum
94 {
95   VNET_DPDK_PORT_TYPE_ETH_1G,
96   VNET_DPDK_PORT_TYPE_ETH_2_5G,
97   VNET_DPDK_PORT_TYPE_ETH_5G,
98   VNET_DPDK_PORT_TYPE_ETH_10G,
99   VNET_DPDK_PORT_TYPE_ETH_20G,
100   VNET_DPDK_PORT_TYPE_ETH_25G,
101   VNET_DPDK_PORT_TYPE_ETH_40G,
102   VNET_DPDK_PORT_TYPE_ETH_50G,
103   VNET_DPDK_PORT_TYPE_ETH_56G,
104   VNET_DPDK_PORT_TYPE_ETH_100G,
105   VNET_DPDK_PORT_TYPE_ETH_SWITCH,
106   VNET_DPDK_PORT_TYPE_AF_PACKET,
107   VNET_DPDK_PORT_TYPE_ETH_VF,
108   VNET_DPDK_PORT_TYPE_VIRTIO_USER,
109   VNET_DPDK_PORT_TYPE_VHOST_ETHER,
110   VNET_DPDK_PORT_TYPE_FAILSAFE,
111   VNET_DPDK_PORT_TYPE_NETVSC,
112   VNET_DPDK_PORT_TYPE_UNKNOWN,
113 } dpdk_port_type_t;
114
115 typedef uint16_t dpdk_portid_t;
116
117 #define foreach_dpdk_device_flags                                             \
118   _ (0, ADMIN_UP, "admin-up")                                                 \
119   _ (1, PROMISC, "promisc")                                                   \
120   _ (2, PMD, "pmd")                                                           \
121   _ (3, PMD_INIT_FAIL, "pmd-init-fail")                                       \
122   _ (4, MAYBE_MULTISEG, "maybe-multiseg")                                     \
123   _ (5, HAVE_SUBIF, "subif")                                                  \
124   _ (9, TX_OFFLOAD, "tx-offload")                                             \
125   _ (10, INTEL_PHDR_CKSUM, "intel-phdr-cksum")                                \
126   _ (11, RX_FLOW_OFFLOAD, "rx-flow-offload")                                  \
127   _ (12, RX_IP4_CKSUM, "rx-ip4-cksum")                                        \
128   _ (13, INT_SUPPORTED, "int-supported")                                      \
129   _ (14, INT_UNMASKABLE, "int-unmaskable")
130
131 enum
132 {
133 #define _(a, b, c) DPDK_DEVICE_FLAG_##b = (1 << a),
134   foreach_dpdk_device_flags
135 #undef _
136 };
137
138 typedef struct
139 {
140   u32 flow_index;
141   u32 mark;
142   struct rte_flow *handle;
143 } dpdk_flow_entry_t;
144
145 typedef struct
146 {
147   u32 flow_id;
148   u16 next_index;
149   i16 buffer_advance;
150 } dpdk_flow_lookup_entry_t;
151
152 typedef struct
153 {
154   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
155   u8 buffer_pool_index;
156   u32 queue_index;
157   int efd;
158   uword clib_file_index;
159 } dpdk_rx_queue_t;
160
161 typedef struct
162 {
163   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
164   clib_spinlock_t lock;
165 } dpdk_tx_queue_t;
166
167 typedef struct
168 {
169   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
170
171   dpdk_rx_queue_t *rx_queues;
172   dpdk_tx_queue_t *tx_queues;
173
174   /* Instance ID to access internal device array. */
175   u32 device_index;
176
177   u32 hw_if_index;
178   u32 sw_if_index;
179
180   /* next node index if we decide to steal the rx graph arc */
181   u32 per_interface_next_index;
182
183   u16 rx_q_used;
184   u16 tx_q_used;
185   u16 flags;
186
187   /* DPDK device port number */
188   dpdk_portid_t port_id;
189   dpdk_pmd_t pmd:8;
190   i8 cpu_socket;
191
192     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
193   u16 nb_tx_desc;
194   u16 nb_rx_desc;
195
196   u8 *name;
197   u8 *interface_name_suffix;
198
199   /* number of sub-interfaces */
200   u16 num_subifs;
201
202   /* PMD related */
203   struct rte_eth_conf port_conf;
204   struct rte_eth_txconf tx_conf;
205
206   /* flow related */
207   u32 supported_flow_actions;
208   dpdk_flow_entry_t *flow_entries;      /* pool */
209   dpdk_flow_lookup_entry_t *flow_lookup_entries;        /* pool */
210   u32 *parked_lookup_indexes;   /* vector */
211   u32 parked_loop_count;
212   struct rte_flow_error last_flow_error;
213
214   /* af_packet instance number */
215   u16 af_packet_instance_num;
216
217   struct rte_eth_link link;
218   f64 time_last_link_update;
219
220   struct rte_eth_stats stats;
221   struct rte_eth_stats last_stats;
222   struct rte_eth_xstat *xstats;
223   f64 time_last_stats_update;
224   dpdk_port_type_t port_type;
225
226   /* mac address */
227   u8 *default_mac_address;
228
229   /* error string */
230   clib_error_t *errors;
231 } dpdk_device_t;
232
233 #define DPDK_STATS_POLL_INTERVAL      (10.0)
234 #define DPDK_MIN_STATS_POLL_INTERVAL  (0.001)   /* 1msec */
235
236 #define DPDK_LINK_POLL_INTERVAL       (3.0)
237 #define DPDK_MIN_LINK_POLL_INTERVAL   (0.001)   /* 1msec */
238
239 #define foreach_dpdk_device_config_item                                       \
240   _ (num_rx_queues)                                                           \
241   _ (num_tx_queues)                                                           \
242   _ (num_rx_desc)                                                             \
243   _ (num_tx_desc)                                                             \
244   _ (max_lro_pkt_size)                                                        \
245   _ (rss_fn)
246
247 typedef enum
248 {
249   VNET_DEV_ADDR_PCI,
250   VNET_DEV_ADDR_VMBUS,
251   VNET_DEV_ADDR_ANY,
252 } dpdk_device_addr_type_t;
253
254 typedef struct
255 {
256   union
257   {
258     vlib_pci_addr_t pci_addr;
259     vlib_vmbus_addr_t vmbus_addr;
260   };
261   dpdk_device_addr_type_t dev_addr_type;
262   u8 *name;
263   u8 is_blacklisted;
264   u8 vlan_strip_offload;
265 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
266 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
267 #define DPDK_DEVICE_VLAN_STRIP_ON  2
268
269 #define _(x) uword x;
270     foreach_dpdk_device_config_item
271 #undef _
272     clib_bitmap_t * workers;
273   u8 tso;
274   u8 *devargs;
275   clib_bitmap_t *rss_queues;
276
277 #define DPDK_DEVICE_TSO_DEFAULT 0
278 #define DPDK_DEVICE_TSO_OFF 1
279 #define DPDK_DEVICE_TSO_ON  2
280 } dpdk_device_config_t;
281
282 typedef struct
283 {
284
285   /* Config stuff */
286   u8 **eal_init_args;
287   u8 *eal_init_args_str;
288   u8 *uio_driver_name;
289   u8 no_multi_seg;
290   u8 enable_lro;
291   u8 enable_tcp_udp_checksum;
292   u8 enable_outer_checksum_offload;
293   u8 no_tx_checksum_offload;
294   u8 enable_telemetry;
295   u16 max_simd_bitwidth;
296
297 #define DPDK_MAX_SIMD_BITWIDTH_DEFAULT 0
298 #define DPDK_MAX_SIMD_BITWIDTH_256     256
299 #define DPDK_MAX_SIMD_BITWIDTH_512     512
300
301   /*
302    * format interface names ala xxxEthernet%d/%d/%d instead of
303    * xxxEthernet%x/%x/%x.
304    */
305   u8 interface_name_format_decimal;
306
307   /* per-device config */
308   dpdk_device_config_t default_devconf;
309   dpdk_device_config_t *dev_confs;
310   uword *device_config_index_by_pci_addr;
311   mhash_t device_config_index_by_vmbus_addr;
312
313   /* devices blacklist by pci vendor_id, device_id */
314   u32 *blacklist_by_pci_vendor_and_device;
315   /* devices blacklist by VMBUS address */
316   vlib_vmbus_addr_t *blacklist_by_vmbus_addr;
317
318 } dpdk_config_main_t;
319
320 extern dpdk_config_main_t dpdk_config_main;
321
322 #define DPDK_RX_BURST_SZ VLIB_FRAME_SIZE
323
324 typedef struct
325 {
326   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
327   struct rte_mbuf *mbufs[DPDK_RX_BURST_SZ];
328   u32 buffers[DPDK_RX_BURST_SZ];
329   u16 next[DPDK_RX_BURST_SZ];
330   u16 etype[DPDK_RX_BURST_SZ];
331   u32 flags[DPDK_RX_BURST_SZ];
332   vlib_buffer_t buffer_template;
333 } dpdk_per_thread_data_t;
334
335 typedef struct
336 {
337
338   /* Devices */
339   dpdk_device_t *devices;
340   dpdk_per_thread_data_t *per_thread_data;
341
342   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
343   u32 buffer_flags_template;
344
345   /*
346    * flag indicating that a posted admin up/down
347    * (via post_sw_interface_set_flags) is in progress
348    */
349   u8 admin_up_down_in_progress;
350
351   /* control interval of dpdk link state and stat polling */
352   f64 link_state_poll_interval;
353   f64 stat_poll_interval;
354
355   dpdk_config_main_t *conf;
356
357   /* API message ID base */
358   u16 msg_id_base;
359
360   /* logging */
361   vlib_log_class_t log_default;
362   vlib_log_class_t log_cryptodev;
363   vlib_log_class_t log_ipsec;
364 } dpdk_main_t;
365
366 extern dpdk_main_t dpdk_main;
367
368 typedef struct
369 {
370   u32 buffer_index;
371   u16 device_index;
372   u8 queue_index;
373   struct rte_mbuf mb;
374   u8 data[256];                 /* First 256 data bytes, used for hexdump */
375   /* Copy of VLIB buffer; packet data stored in pre_data. */
376   vlib_buffer_t buffer;
377 } dpdk_tx_trace_t;
378
379 typedef struct
380 {
381   u32 buffer_index;
382   u16 device_index;
383   u16 queue_index;
384   struct rte_mbuf mb;
385   u8 data[256];                 /* First 256 data bytes, used for hexdump */
386   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
387 } dpdk_rx_trace_t;
388
389 void dpdk_device_setup (dpdk_device_t * xd);
390 void dpdk_device_start (dpdk_device_t * xd);
391 void dpdk_device_stop (dpdk_device_t * xd);
392 int dpdk_port_state_callback (dpdk_portid_t port_id,
393                               enum rte_eth_event_type type,
394                               void *param, void *ret_param);
395
396 #define foreach_dpdk_error                                              \
397   _(NONE, "no error")                                                   \
398   _(RX_PACKET_ERROR, "Rx packet errors")                                \
399   _(RX_BAD_FCS, "Rx bad fcs")                                           \
400   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
401   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
402   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
403   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
404
405 typedef enum
406 {
407 #define _(f,s) DPDK_ERROR_##f,
408   foreach_dpdk_error
409 #undef _
410     DPDK_N_ERROR,
411 } dpdk_error_t;
412
413 #define dpdk_log_err(...) \
414   vlib_log(VLIB_LOG_LEVEL_ERR, dpdk_main.log_default, __VA_ARGS__)
415 #define dpdk_log_warn(...) \
416   vlib_log(VLIB_LOG_LEVEL_WARNING, dpdk_main.log_default, __VA_ARGS__)
417 #define dpdk_log_notice(...) \
418   vlib_log(VLIB_LOG_LEVEL_NOTICE, dpdk_main.log_default, __VA_ARGS__)
419 #define dpdk_log_info(...) \
420   vlib_log(VLIB_LOG_LEVEL_INFO, dpdk_main.log_default, __VA_ARGS__)
421
422 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
423
424 #define foreach_dpdk_rss_hf                                                   \
425   _ (0, ETH_RSS_FRAG_IPV4, "ipv4-frag")                                       \
426   _ (1, ETH_RSS_NONFRAG_IPV4_TCP, "ipv4-tcp")                                 \
427   _ (2, ETH_RSS_NONFRAG_IPV4_UDP, "ipv4-udp")                                 \
428   _ (3, ETH_RSS_NONFRAG_IPV4_SCTP, "ipv4-sctp")                               \
429   _ (4, ETH_RSS_NONFRAG_IPV4_OTHER, "ipv4-other")                             \
430   _ (5, ETH_RSS_IPV4, "ipv4")                                                 \
431   _ (6, ETH_RSS_IPV6_TCP_EX, "ipv6-tcp-ex")                                   \
432   _ (7, ETH_RSS_IPV6_UDP_EX, "ipv6-udp-ex")                                   \
433   _ (8, ETH_RSS_FRAG_IPV6, "ipv6-frag")                                       \
434   _ (9, ETH_RSS_NONFRAG_IPV6_TCP, "ipv6-tcp")                                 \
435   _ (10, ETH_RSS_NONFRAG_IPV6_UDP, "ipv6-udp")                                \
436   _ (11, ETH_RSS_NONFRAG_IPV6_SCTP, "ipv6-sctp")                              \
437   _ (12, ETH_RSS_NONFRAG_IPV6_OTHER, "ipv6-other")                            \
438   _ (13, ETH_RSS_IPV6_EX, "ipv6-ex")                                          \
439   _ (14, ETH_RSS_IPV6, "ipv6")                                                \
440   _ (15, ETH_RSS_L2_PAYLOAD, "l2-payload")                                    \
441   _ (16, ETH_RSS_PORT, "port")                                                \
442   _ (17, ETH_RSS_VXLAN, "vxlan")                                              \
443   _ (18, ETH_RSS_GENEVE, "geneve")                                            \
444   _ (19, ETH_RSS_NVGRE, "nvgre")                                              \
445   _ (20, ETH_RSS_GTPU, "gtpu")                                                \
446   _ (21, ETH_RSS_ESP, "esp")                                                  \
447   _ (60, ETH_RSS_L4_DST_ONLY, "l4-dst-only")                                  \
448   _ (61, ETH_RSS_L4_SRC_ONLY, "l4-src-only")                                  \
449   _ (62, ETH_RSS_L3_DST_ONLY, "l3-dst-only")                                  \
450   _ (63, ETH_RSS_L3_SRC_ONLY, "l3-src-only")
451
452 format_function_t format_dpdk_device_name;
453 format_function_t format_dpdk_device;
454 format_function_t format_dpdk_device_errors;
455 format_function_t format_dpdk_tx_trace;
456 format_function_t format_dpdk_rx_trace;
457 format_function_t format_dpdk_rte_mbuf;
458 format_function_t format_dpdk_rx_rte_mbuf;
459 format_function_t format_dpdk_flow;
460 format_function_t format_dpdk_rss_hf_name;
461 format_function_t format_dpdk_rx_offload_caps;
462 format_function_t format_dpdk_tx_offload_caps;
463 vnet_flow_dev_ops_function_t dpdk_flow_ops_fn;
464
465 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
466
467 struct rte_pci_device *dpdk_get_pci_device (const struct rte_eth_dev_info
468                                             *info);
469 struct rte_vmbus_device *
470 dpdk_get_vmbus_device (const struct rte_eth_dev_info *info);
471 void dpdk_cli_reference (void);
472
473 #if CLI_DEBUG
474 int dpdk_buffer_validate_trajectory_all (u32 * uninitialized);
475 void dpdk_buffer_poison_trajectory_all (void);
476 #endif
477
478 #endif /* __included_dpdk_h__ */
479
480 /*
481  * fd.io coding-style-patch-verification: ON
482  *
483  * Local Variables:
484  * eval: (c-set-style "gnu")
485  * End:
486  */