7238ecf5515bb88875dce8ac350b4198f61e58ee
[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 typedef uint16_t dpdk_portid_t;
49
50 #define foreach_dpdk_device_flags                                             \
51   _ (0, ADMIN_UP, "admin-up")                                                 \
52   _ (1, PROMISC, "promisc")                                                   \
53   _ (3, PMD_INIT_FAIL, "pmd-init-fail")                                       \
54   _ (4, MAYBE_MULTISEG, "maybe-multiseg")                                     \
55   _ (5, HAVE_SUBIF, "subif")                                                  \
56   _ (9, TX_OFFLOAD, "tx-offload")                                             \
57   _ (10, INTEL_PHDR_CKSUM, "intel-phdr-cksum")                                \
58   _ (11, RX_FLOW_OFFLOAD, "rx-flow-offload")                                  \
59   _ (12, RX_IP4_CKSUM, "rx-ip4-cksum")                                        \
60   _ (13, INT_SUPPORTED, "int-supported")                                      \
61   _ (14, INT_UNMASKABLE, "int-unmaskable")
62
63 typedef enum
64 {
65 #define _(a, b, c) DPDK_DEVICE_FLAG_##b = (1 << a),
66   foreach_dpdk_device_flags
67 #undef _
68 } dpdk_device_flag_t;
69
70 typedef struct
71 {
72   u32 flow_index;
73   u32 mark;
74   struct rte_flow *handle;
75 } dpdk_flow_entry_t;
76
77 typedef struct
78 {
79   u32 flow_id;
80   u16 next_index;
81   i16 buffer_advance;
82 } dpdk_flow_lookup_entry_t;
83
84 typedef struct
85 {
86   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
87   u8 buffer_pool_index;
88   u32 queue_index;
89   int efd;
90   uword clib_file_index;
91 } dpdk_rx_queue_t;
92
93 typedef struct
94 {
95   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
96   clib_spinlock_t lock;
97   u32 queue_index;
98 } dpdk_tx_queue_t;
99
100 typedef struct
101 {
102   const char *name;
103   const char *desc;
104 } dpdk_driver_name_t;
105
106 typedef struct
107 {
108   dpdk_driver_name_t *drivers;
109   const char *interface_name_prefix;
110   u16 n_rx_desc;
111   u16 n_tx_desc;
112   u32 supported_flow_actions;
113   i32 enable_lsc_int : 1;
114   i32 enable_rxq_int : 1;
115   i32 disable_rx_scatter : 1;
116   i32 program_vlans : 1;
117   i32 mq_mode_none : 1;
118   i32 interface_number_from_port_id : 1;
119   i32 use_intel_phdr_cksum : 1;
120   i32 int_unmaskable : 1;
121 } dpdk_driver_t;
122
123 dpdk_driver_t *dpdk_driver_find (const char *name, const char **desc);
124
125 typedef union
126 {
127   struct
128   {
129     u16 disable_multi_seg : 1;
130     u16 enable_lro : 1;
131     u16 enable_tso : 1;
132     u16 enable_tcp_udp_checksum : 1;
133     u16 enable_outer_checksum_offload : 1;
134     u16 enable_lsc_int : 1;
135     u16 enable_rxq_int : 1;
136     u16 disable_tx_checksum_offload : 1;
137     u16 disable_rss : 1;
138     u16 disable_rx_scatter : 1;
139     u16 n_rx_queues;
140     u16 n_tx_queues;
141     u16 n_rx_desc;
142     u16 n_tx_desc;
143     u32 max_lro_pkt_size;
144     u64 rss_hf;
145   };
146   u64 as_u64[3];
147 } dpdk_port_conf_t;
148
149 STATIC_ASSERT_SIZEOF (dpdk_port_conf_t, 24);
150
151 typedef struct
152 {
153   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
154
155   dpdk_rx_queue_t *rx_queues;
156   dpdk_tx_queue_t *tx_queues;
157
158   /* Instance ID to access internal device array. */
159   u32 device_index;
160
161   u32 hw_if_index;
162   u32 sw_if_index;
163   u32 buffer_flags;
164
165   /* next node index if we decide to steal the rx graph arc */
166   u32 per_interface_next_index;
167
168   u16 flags;
169
170   /* DPDK device port number */
171   dpdk_portid_t port_id;
172   i8 cpu_socket;
173
174   CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
175
176   u64 enabled_tx_off;
177   u64 enabled_rx_off;
178   dpdk_driver_t *driver;
179   u8 *name;
180   const char *if_desc;
181
182   /* number of sub-interfaces */
183   u16 num_subifs;
184
185   /* flow related */
186   u32 supported_flow_actions;
187   dpdk_flow_entry_t *flow_entries;      /* pool */
188   dpdk_flow_lookup_entry_t *flow_lookup_entries;        /* pool */
189   u32 *parked_lookup_indexes;   /* vector */
190   u32 parked_loop_count;
191   struct rte_flow_error last_flow_error;
192
193   struct rte_eth_link link;
194   f64 time_last_link_update;
195
196   struct rte_eth_stats stats;
197   struct rte_eth_stats last_stats;
198   struct rte_eth_xstat *xstats;
199   f64 time_last_stats_update;
200
201   /* mac address */
202   u8 *default_mac_address;
203
204   /* maximum supported max frame size */
205   u32 max_supported_frame_size;
206
207   /* due to lack of API to get ethernet max_frame_size we store information
208    * deducted from device info */
209   u8 driver_frame_overhead;
210
211   /* error string */
212   clib_error_t *errors;
213   dpdk_port_conf_t conf;
214 } dpdk_device_t;
215
216 #define DPDK_STATS_POLL_INTERVAL      (10.0)
217 #define DPDK_MIN_STATS_POLL_INTERVAL  (0.001)   /* 1msec */
218
219 #define DPDK_LINK_POLL_INTERVAL       (3.0)
220 #define DPDK_MIN_LINK_POLL_INTERVAL   (0.001)   /* 1msec */
221
222 #define foreach_dpdk_device_config_item                                       \
223   _ (num_rx_queues)                                                           \
224   _ (num_tx_queues)                                                           \
225   _ (num_rx_desc)                                                             \
226   _ (num_tx_desc)                                                             \
227   _ (max_lro_pkt_size)                                                        \
228   _ (rss_fn)
229
230 typedef enum
231 {
232   VNET_DEV_ADDR_PCI,
233   VNET_DEV_ADDR_VMBUS,
234   VNET_DEV_ADDR_ANY,
235 } dpdk_device_addr_type_t;
236
237 typedef struct
238 {
239   union
240   {
241     vlib_pci_addr_t pci_addr;
242     vlib_vmbus_addr_t vmbus_addr;
243   };
244   dpdk_device_addr_type_t dev_addr_type;
245   u8 *name;
246   u8 *tag;
247   u8 is_blacklisted;
248
249 #define _(x) uword x;
250     foreach_dpdk_device_config_item
251 #undef _
252     clib_bitmap_t * workers;
253   u8 tso;
254   u8 *devargs;
255   clib_bitmap_t *rss_queues;
256
257 #define DPDK_DEVICE_TSO_DEFAULT 0
258 #define DPDK_DEVICE_TSO_OFF 1
259 #define DPDK_DEVICE_TSO_ON  2
260 } dpdk_device_config_t;
261
262 typedef struct
263 {
264
265   /* Config stuff */
266   u8 **eal_init_args;
267   u8 *eal_init_args_str;
268   u8 *uio_driver_name;
269   u8 uio_bind_force;
270   u8 enable_telemetry;
271   u16 max_simd_bitwidth;
272
273 #define DPDK_MAX_SIMD_BITWIDTH_DEFAULT 0
274 #define DPDK_MAX_SIMD_BITWIDTH_256     256
275 #define DPDK_MAX_SIMD_BITWIDTH_512     512
276
277   /*
278    * format interface names ala xxxEthernet%d/%d/%d instead of
279    * xxxEthernet%x/%x/%x.
280    */
281   u8 interface_name_format_decimal;
282
283   /* per-device config */
284   dpdk_device_config_t default_devconf;
285   dpdk_device_config_t *dev_confs;
286   uword *device_config_index_by_pci_addr;
287   mhash_t device_config_index_by_vmbus_addr;
288
289   /* devices blacklist by pci vendor_id, device_id */
290   u32 *blacklist_by_pci_vendor_and_device;
291   /* devices blacklist by VMBUS address */
292   vlib_vmbus_addr_t *blacklist_by_vmbus_addr;
293
294 } dpdk_config_main_t;
295
296 extern dpdk_config_main_t dpdk_config_main;
297
298 #define DPDK_RX_BURST_SZ VLIB_FRAME_SIZE
299
300 typedef struct
301 {
302   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
303   struct rte_mbuf *mbufs[DPDK_RX_BURST_SZ];
304   u32 buffers[DPDK_RX_BURST_SZ];
305   u16 next[DPDK_RX_BURST_SZ];
306   u16 etype[DPDK_RX_BURST_SZ];
307   u32 flags[DPDK_RX_BURST_SZ];
308   vlib_buffer_t buffer_template;
309 } dpdk_per_thread_data_t;
310
311 typedef struct
312 {
313   /* Devices */
314   dpdk_device_t *devices;
315   dpdk_per_thread_data_t *per_thread_data;
316
317   /*
318    * flag indicating that a posted admin up/down
319    * (via post_sw_interface_set_flags) is in progress
320    */
321   u8 admin_up_down_in_progress;
322
323   /* control interval of dpdk link state and stat polling */
324   f64 link_state_poll_interval;
325   f64 stat_poll_interval;
326
327   dpdk_config_main_t *conf;
328   dpdk_port_conf_t default_port_conf;
329
330   /* API message ID base */
331   u16 msg_id_base;
332
333   /* logging */
334   vlib_log_class_t log_default;
335   vlib_log_class_t log_cryptodev;
336 } dpdk_main_t;
337
338 extern dpdk_main_t dpdk_main;
339
340 typedef struct
341 {
342   u32 buffer_index;
343   u16 device_index;
344   u8 queue_index;
345   struct rte_mbuf mb;
346   u8 data[256];                 /* First 256 data bytes, used for hexdump */
347   /* Copy of VLIB buffer; packet data stored in pre_data. */
348   vlib_buffer_t buffer;
349 } dpdk_tx_trace_t;
350
351 typedef struct
352 {
353   u32 buffer_index;
354   u16 device_index;
355   u16 queue_index;
356   struct rte_mbuf mb;
357   u8 data[256];                 /* First 256 data bytes, used for hexdump */
358   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
359 } dpdk_rx_trace_t;
360
361 void dpdk_device_setup (dpdk_device_t * xd);
362 void dpdk_device_start (dpdk_device_t * xd);
363 void dpdk_device_stop (dpdk_device_t * xd);
364 int dpdk_port_state_callback (dpdk_portid_t port_id,
365                               enum rte_eth_event_type type,
366                               void *param, void *ret_param);
367
368 #define foreach_dpdk_error                                              \
369   _(NONE, "no error")                                                   \
370   _(RX_PACKET_ERROR, "Rx packet errors")                                \
371   _(RX_BAD_FCS, "Rx bad fcs")                                           \
372   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
373   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
374   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
375   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
376
377 typedef enum
378 {
379 #define _(f,s) DPDK_ERROR_##f,
380   foreach_dpdk_error
381 #undef _
382     DPDK_N_ERROR,
383 } dpdk_error_t;
384
385 #define dpdk_log_err(...) \
386   vlib_log(VLIB_LOG_LEVEL_ERR, dpdk_main.log_default, __VA_ARGS__)
387 #define dpdk_log_warn(...) \
388   vlib_log(VLIB_LOG_LEVEL_WARNING, dpdk_main.log_default, __VA_ARGS__)
389 #define dpdk_log_notice(...) \
390   vlib_log(VLIB_LOG_LEVEL_NOTICE, dpdk_main.log_default, __VA_ARGS__)
391 #define dpdk_log_info(...) \
392   vlib_log(VLIB_LOG_LEVEL_INFO, dpdk_main.log_default, __VA_ARGS__)
393 #define dpdk_log_debug(...)                                                   \
394   vlib_log (VLIB_LOG_LEVEL_DEBUG, dpdk_main.log_default, __VA_ARGS__)
395
396 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
397
398 #define foreach_dpdk_rss_hf                                                   \
399   _ (0, RTE_ETH_RSS_FRAG_IPV4, "ipv4-frag")                                   \
400   _ (1, RTE_ETH_RSS_NONFRAG_IPV4_TCP, "ipv4-tcp")                             \
401   _ (2, RTE_ETH_RSS_NONFRAG_IPV4_UDP, "ipv4-udp")                             \
402   _ (3, RTE_ETH_RSS_NONFRAG_IPV4_SCTP, "ipv4-sctp")                           \
403   _ (4, RTE_ETH_RSS_NONFRAG_IPV4_OTHER, "ipv4-other")                         \
404   _ (5, RTE_ETH_RSS_IPV4, "ipv4")                                             \
405   _ (6, RTE_ETH_RSS_IPV6_TCP_EX, "ipv6-tcp-ex")                               \
406   _ (7, RTE_ETH_RSS_IPV6_UDP_EX, "ipv6-udp-ex")                               \
407   _ (8, RTE_ETH_RSS_FRAG_IPV6, "ipv6-frag")                                   \
408   _ (9, RTE_ETH_RSS_NONFRAG_IPV6_TCP, "ipv6-tcp")                             \
409   _ (10, RTE_ETH_RSS_NONFRAG_IPV6_UDP, "ipv6-udp")                            \
410   _ (11, RTE_ETH_RSS_NONFRAG_IPV6_SCTP, "ipv6-sctp")                          \
411   _ (12, RTE_ETH_RSS_NONFRAG_IPV6_OTHER, "ipv6-other")                        \
412   _ (13, RTE_ETH_RSS_IPV6_EX, "ipv6-ex")                                      \
413   _ (14, RTE_ETH_RSS_IPV6, "ipv6")                                            \
414   _ (15, RTE_ETH_RSS_L2_PAYLOAD, "l2-payload")                                \
415   _ (16, RTE_ETH_RSS_PORT, "port")                                            \
416   _ (17, RTE_ETH_RSS_VXLAN, "vxlan")                                          \
417   _ (18, RTE_ETH_RSS_GENEVE, "geneve")                                        \
418   _ (19, RTE_ETH_RSS_NVGRE, "nvgre")                                          \
419   _ (20, RTE_ETH_RSS_GTPU, "gtpu")                                            \
420   _ (21, RTE_ETH_RSS_ESP, "esp")                                              \
421   _ (60, RTE_ETH_RSS_L4_DST_ONLY, "l4-dst-only")                              \
422   _ (61, RTE_ETH_RSS_L4_SRC_ONLY, "l4-src-only")                              \
423   _ (62, RTE_ETH_RSS_L3_DST_ONLY, "l3-dst-only")                              \
424   _ (63, RTE_ETH_RSS_L3_SRC_ONLY, "l3-src-only")
425
426 format_function_t format_dpdk_device_name;
427 format_function_t format_dpdk_device;
428 format_function_t format_dpdk_device_errors;
429 format_function_t format_dpdk_tx_trace;
430 format_function_t format_dpdk_rx_trace;
431 format_function_t format_dpdk_rte_mbuf;
432 format_function_t format_dpdk_rx_rte_mbuf;
433 format_function_t format_dpdk_flow;
434 format_function_t format_dpdk_rss_hf_name;
435 format_function_t format_dpdk_rx_offload_caps;
436 format_function_t format_dpdk_tx_offload_caps;
437 format_function_t format_dpdk_burst_fn;
438 format_function_t format_dpdk_rte_device;
439 vnet_flow_dev_ops_function_t dpdk_flow_ops_fn;
440
441 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
442
443 struct rte_pci_device *dpdk_get_pci_device (const struct rte_eth_dev_info
444                                             *info);
445 struct rte_vmbus_device *
446 dpdk_get_vmbus_device (const struct rte_eth_dev_info *info);
447 void dpdk_cli_reference (void);
448
449 #if CLI_DEBUG
450 int dpdk_buffer_validate_trajectory_all (u32 * uninitialized);
451 void dpdk_buffer_poison_trajectory_all (void);
452 #endif
453
454 #endif /* __included_dpdk_h__ */
455
456 /*
457  * fd.io coding-style-patch-verification: ON
458  *
459  * Local Variables:
460  * eval: (c-set-style "gnu")
461  * End:
462  */