dpdk: remove bonding code
[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_common.h>
26 #include <rte_dev.h>
27 #include <rte_memory.h>
28 #include <rte_eal.h>
29 #include <rte_per_lcore.h>
30 #include <rte_cycles.h>
31 #include <rte_lcore.h>
32 #include <rte_per_lcore.h>
33 #include <rte_interrupts.h>
34 #include <rte_pci.h>
35 #include <rte_ether.h>
36 #include <rte_ethdev.h>
37 #include <rte_ring.h>
38 #include <rte_mempool.h>
39 #include <rte_mbuf.h>
40 #include <rte_version.h>
41 #include <rte_sched.h>
42 #include <rte_net.h>
43 #include <rte_bus_pci.h>
44 #include <rte_flow.h>
45
46 #include <vnet/devices/devices.h>
47
48 #if CLIB_DEBUG > 0
49 #define always_inline static inline
50 #else
51 #define always_inline static inline __attribute__ ((__always_inline__))
52 #endif
53
54 #include <vlib/pci/pci.h>
55 #include <vnet/flow/flow.h>
56
57 extern vnet_device_class_t dpdk_device_class;
58 extern vlib_node_registration_t dpdk_input_node;
59 extern vlib_node_registration_t admin_up_down_process_node;
60
61 #define foreach_dpdk_pmd          \
62   _ ("net_thunderx", THUNDERX)    \
63   _ ("net_e1000_em", E1000EM)     \
64   _ ("net_e1000_igb", IGB)        \
65   _ ("net_e1000_igb_vf", IGBVF)   \
66   _ ("net_ixgbe", IXGBE)          \
67   _ ("net_ixgbe_vf", IXGBEVF)     \
68   _ ("net_i40e", I40E)            \
69   _ ("net_i40e_vf", I40EVF)       \
70   _ ("net_ice", ICE)              \
71   _ ("net_virtio", VIRTIO)        \
72   _ ("net_enic", ENIC)            \
73   _ ("net_vmxnet3", VMXNET3)      \
74   _ ("AF_PACKET PMD", AF_PACKET)  \
75   _ ("net_fm10k", FM10K)          \
76   _ ("net_cxgbe", CXGBE)          \
77   _ ("net_mlx4", MLX4)            \
78   _ ("net_mlx5", MLX5)            \
79   _ ("net_dpaa2", DPAA2)          \
80   _ ("net_virtio_user", VIRTIO_USER) \
81   _ ("net_vhost", VHOST_ETHER)    \
82   _ ("net_ena", ENA)              \
83   _ ("net_failsafe", FAILSAFE)    \
84   _ ("net_liovf", LIOVF_ETHER)    \
85   _ ("net_qede", QEDE)            \
86   _ ("net_netvsc", NETVSC)
87
88 typedef enum
89 {
90   VNET_DPDK_PMD_NONE,
91 #define _(s,f) VNET_DPDK_PMD_##f,
92   foreach_dpdk_pmd
93 #undef _
94     VNET_DPDK_PMD_UNKNOWN,      /* must be last */
95 } dpdk_pmd_t;
96
97 typedef enum
98 {
99   VNET_DPDK_PORT_TYPE_ETH_1G,
100   VNET_DPDK_PORT_TYPE_ETH_2_5G,
101   VNET_DPDK_PORT_TYPE_ETH_5G,
102   VNET_DPDK_PORT_TYPE_ETH_10G,
103   VNET_DPDK_PORT_TYPE_ETH_20G,
104   VNET_DPDK_PORT_TYPE_ETH_25G,
105   VNET_DPDK_PORT_TYPE_ETH_40G,
106   VNET_DPDK_PORT_TYPE_ETH_50G,
107   VNET_DPDK_PORT_TYPE_ETH_56G,
108   VNET_DPDK_PORT_TYPE_ETH_100G,
109   VNET_DPDK_PORT_TYPE_ETH_SWITCH,
110   VNET_DPDK_PORT_TYPE_AF_PACKET,
111   VNET_DPDK_PORT_TYPE_ETH_VF,
112   VNET_DPDK_PORT_TYPE_VIRTIO_USER,
113   VNET_DPDK_PORT_TYPE_VHOST_ETHER,
114   VNET_DPDK_PORT_TYPE_FAILSAFE,
115   VNET_DPDK_PORT_TYPE_NETVSC,
116   VNET_DPDK_PORT_TYPE_UNKNOWN,
117 } dpdk_port_type_t;
118
119 typedef uint16_t dpdk_portid_t;
120
121 typedef struct
122 {
123   /* Required for vec_validate_aligned */
124   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
125
126   struct rte_ring *swq;
127
128   u64 hqos_field0_slabmask;
129   u32 hqos_field0_slabpos;
130   u32 hqos_field0_slabshr;
131   u64 hqos_field1_slabmask;
132   u32 hqos_field1_slabpos;
133   u32 hqos_field1_slabshr;
134   u64 hqos_field2_slabmask;
135   u32 hqos_field2_slabpos;
136   u32 hqos_field2_slabshr;
137   u32 hqos_tc_table[64];
138 } dpdk_device_hqos_per_worker_thread_t;
139
140 typedef struct
141 {
142   /* Required for vec_validate_aligned */
143   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
144   struct rte_ring **swq;
145   struct rte_mbuf **pkts_enq;
146   struct rte_mbuf **pkts_deq;
147   struct rte_sched_port *hqos;
148   u32 hqos_burst_enq;
149   u32 hqos_burst_deq;
150   u32 pkts_enq_len;
151   u32 swq_pos;
152   u32 flush_count;
153 } dpdk_device_hqos_per_hqos_thread_t;
154
155 #define foreach_dpdk_device_flags \
156   _( 0, ADMIN_UP, "admin-up") \
157   _( 1, PROMISC, "promisc") \
158   _( 2, PMD, "pmd") \
159   _( 3, PMD_INIT_FAIL, "pmd-init-fail") \
160   _( 4, MAYBE_MULTISEG, "maybe-multiseg") \
161   _( 5, HAVE_SUBIF, "subif") \
162   _( 6, HQOS, "hqos") \
163   _( 9, TX_OFFLOAD, "tx-offload") \
164   _(10, INTEL_PHDR_CKSUM, "intel-phdr-cksum") \
165   _(11, RX_FLOW_OFFLOAD, "rx-flow-offload") \
166   _(12, RX_IP4_CKSUM, "rx-ip4-cksum")
167
168 enum
169 {
170 #define _(a, b, c) DPDK_DEVICE_FLAG_##b = (1 << a),
171   foreach_dpdk_device_flags
172 #undef _
173 };
174
175 typedef struct
176 {
177   u32 flow_index;
178   u32 mark;
179   struct rte_flow *handle;
180 } dpdk_flow_entry_t;
181
182 typedef struct
183 {
184   u32 flow_id;
185   u16 next_index;
186   i16 buffer_advance;
187 } dpdk_flow_lookup_entry_t;
188
189 typedef struct
190 {
191   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
192   volatile u32 **lockp;
193
194   /* Instance ID to access internal device array. */
195   dpdk_portid_t device_index;
196
197   /* DPDK device port number */
198   dpdk_portid_t port_id;
199
200   u32 hw_if_index;
201   u32 sw_if_index;
202
203   /* next node index if we decide to steal the rx graph arc */
204   u32 per_interface_next_index;
205
206   dpdk_pmd_t pmd:8;
207   i8 cpu_socket;
208
209   u16 flags;
210
211   u16 nb_tx_desc;
212     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
213
214   u8 *name;
215   u8 *interface_name_suffix;
216
217   /* number of sub-interfaces */
218   u16 num_subifs;
219
220   /* PMD related */
221   u16 tx_q_used;
222   u16 rx_q_used;
223   u16 nb_rx_desc;
224   u16 *cpu_socket_id_by_queue;
225   u8 *buffer_pool_for_queue;
226   struct rte_eth_conf port_conf;
227   struct rte_eth_txconf tx_conf;
228
229   /* flow related */
230   u32 supported_flow_actions;
231   dpdk_flow_entry_t *flow_entries;      /* pool */
232   dpdk_flow_lookup_entry_t *flow_lookup_entries;        /* pool */
233   u32 *parked_lookup_indexes;   /* vector */
234   u32 parked_loop_count;
235   struct rte_flow_error last_flow_error;
236
237   /* HQoS related */
238   dpdk_device_hqos_per_worker_thread_t *hqos_wt;
239   dpdk_device_hqos_per_hqos_thread_t *hqos_ht;
240
241   /* af_packet instance number */
242   u16 af_packet_instance_num;
243
244   struct rte_eth_link link;
245   f64 time_last_link_update;
246
247   struct rte_eth_stats stats;
248   struct rte_eth_stats last_stats;
249   struct rte_eth_stats last_cleared_stats;
250   struct rte_eth_xstat *xstats;
251   struct rte_eth_xstat *last_cleared_xstats;
252   f64 time_last_stats_update;
253   dpdk_port_type_t port_type;
254
255   /* mac address */
256   u8 *default_mac_address;
257
258   /* error string */
259   clib_error_t *errors;
260 } dpdk_device_t;
261
262 #define DPDK_STATS_POLL_INTERVAL      (10.0)
263 #define DPDK_MIN_STATS_POLL_INTERVAL  (0.001)   /* 1msec */
264
265 #define DPDK_LINK_POLL_INTERVAL       (3.0)
266 #define DPDK_MIN_LINK_POLL_INTERVAL   (0.001)   /* 1msec */
267
268 typedef struct
269 {
270   u32 device;
271   u16 queue_id;
272 } dpdk_device_and_queue_t;
273
274 #ifndef DPDK_HQOS_DBG_BYPASS
275 #define DPDK_HQOS_DBG_BYPASS 0
276 #endif
277
278 #ifndef HQOS_FLUSH_COUNT_THRESHOLD
279 #define HQOS_FLUSH_COUNT_THRESHOLD              100000
280 #endif
281
282 typedef struct dpdk_device_config_hqos_t
283 {
284   u32 hqos_thread;
285   u32 hqos_thread_valid;
286
287   u32 swq_size;
288   u32 burst_enq;
289   u32 burst_deq;
290
291   u32 pktfield0_slabpos;
292   u32 pktfield1_slabpos;
293   u32 pktfield2_slabpos;
294   u64 pktfield0_slabmask;
295   u64 pktfield1_slabmask;
296   u64 pktfield2_slabmask;
297   u32 tc_table[64];
298
299   struct rte_sched_port_params port;
300   struct rte_sched_subport_params *subport;
301   struct rte_sched_pipe_params *pipe;
302   uint32_t *pipe_map;
303 } dpdk_device_config_hqos_t;
304
305 int dpdk_hqos_validate_mask (u64 mask, u32 n);
306 void dpdk_device_config_hqos_pipe_profile_default (dpdk_device_config_hqos_t *
307                                                    hqos, u32 pipe_profile_id);
308 #if 0
309 void dpdk_device_config_hqos_default (dpdk_device_config_hqos_t * hqos);
310 #endif
311 clib_error_t *dpdk_port_setup_hqos (dpdk_device_t * xd,
312                                     dpdk_device_config_hqos_t * hqos);
313 void dpdk_hqos_metadata_set (dpdk_device_hqos_per_worker_thread_t * hqos,
314                              struct rte_mbuf **pkts, u32 n_pkts);
315
316 #define foreach_dpdk_device_config_item \
317   _ (num_rx_queues) \
318   _ (num_tx_queues) \
319   _ (num_rx_desc) \
320   _ (num_tx_desc) \
321   _ (rss_fn)
322
323 typedef struct
324 {
325   vlib_pci_addr_t pci_addr;
326   u8 *name;
327   u8 is_blacklisted;
328   u8 vlan_strip_offload;
329 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
330 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
331 #define DPDK_DEVICE_VLAN_STRIP_ON  2
332
333 #define _(x) uword x;
334     foreach_dpdk_device_config_item
335 #undef _
336     clib_bitmap_t * workers;
337   u32 hqos_enabled;
338   dpdk_device_config_hqos_t hqos;
339 } dpdk_device_config_t;
340
341 typedef struct
342 {
343
344   /* Config stuff */
345   u8 **eal_init_args;
346   u8 *eal_init_args_str;
347   u8 *uio_driver_name;
348   u8 no_multi_seg;
349   u8 enable_tcp_udp_checksum;
350   u8 no_tx_checksum_offload;
351
352   /* Required config parameters */
353   u8 coremask_set_manually;
354   u8 nchannels_set_manually;
355   u32 coremask;
356   u32 nchannels;
357   u32 num_crypto_mbufs;
358
359   /*
360    * format interface names ala xxxEthernet%d/%d/%d instead of
361    * xxxEthernet%x/%x/%x.
362    */
363   u8 interface_name_format_decimal;
364
365   /* per-device config */
366   dpdk_device_config_t default_devconf;
367   dpdk_device_config_t *dev_confs;
368   uword *device_config_index_by_pci_addr;
369
370   /* devices blacklist by pci vendor_id, device_id */
371   u32 *blacklist_by_pci_vendor_and_device;
372
373 } dpdk_config_main_t;
374
375 extern dpdk_config_main_t dpdk_config_main;
376
377 #define DPDK_RX_BURST_SZ VLIB_FRAME_SIZE
378
379 typedef struct
380 {
381   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
382   struct rte_mbuf *mbufs[DPDK_RX_BURST_SZ];
383   u32 buffers[DPDK_RX_BURST_SZ];
384   u16 next[DPDK_RX_BURST_SZ];
385   u16 etype[DPDK_RX_BURST_SZ];
386   u16 flags[DPDK_RX_BURST_SZ];
387   vlib_buffer_t buffer_template;
388 } dpdk_per_thread_data_t;
389
390 typedef struct
391 {
392
393   /* Devices */
394   dpdk_device_t *devices;
395   dpdk_device_and_queue_t **devices_by_hqos_cpu;
396   dpdk_per_thread_data_t *per_thread_data;
397
398   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
399   u32 buffer_flags_template;
400
401   /*
402    * flag indicating that a posted admin up/down
403    * (via post_sw_interface_set_flags) is in progress
404    */
405   u8 admin_up_down_in_progress;
406
407   /* which cpus are running I/O TX */
408   int hqos_cpu_first_index;
409   int hqos_cpu_count;
410
411   /* control interval of dpdk link state and stat polling */
412   f64 link_state_poll_interval;
413   f64 stat_poll_interval;
414
415   /* convenience */
416   vlib_main_t *vlib_main;
417   vnet_main_t *vnet_main;
418   dpdk_config_main_t *conf;
419
420   /* API message ID base */
421   u16 msg_id_base;
422
423   /* logging */
424   vlib_log_class_t log_default;
425 } dpdk_main_t;
426
427 extern dpdk_main_t dpdk_main;
428
429 typedef struct
430 {
431   u32 buffer_index;
432   u16 device_index;
433   u8 queue_index;
434   struct rte_mbuf mb;
435   /* Copy of VLIB buffer; packet data stored in pre_data. */
436   vlib_buffer_t buffer;
437   u8 data[256];                 /* First 256 data bytes, used for hexdump */
438 } dpdk_tx_trace_t;
439
440 typedef struct
441 {
442   u32 buffer_index;
443   u16 device_index;
444   u16 queue_index;
445   struct rte_mbuf mb;
446   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
447   u8 data[256];                 /* First 256 data bytes, used for hexdump */
448 } dpdk_rx_trace_t;
449
450 void dpdk_device_setup (dpdk_device_t * xd);
451 void dpdk_device_start (dpdk_device_t * xd);
452 void dpdk_device_stop (dpdk_device_t * xd);
453
454 int dpdk_port_state_callback (dpdk_portid_t port_id,
455                               enum rte_eth_event_type type,
456                               void *param, void *ret_param);
457
458 #define foreach_dpdk_error                                              \
459   _(NONE, "no error")                                                   \
460   _(RX_PACKET_ERROR, "Rx packet errors")                                \
461   _(RX_BAD_FCS, "Rx bad fcs")                                           \
462   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
463   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
464   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
465   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
466
467 typedef enum
468 {
469 #define _(f,s) DPDK_ERROR_##f,
470   foreach_dpdk_error
471 #undef _
472     DPDK_N_ERROR,
473 } dpdk_error_t;
474
475 #define dpdk_log_err(...) \
476   vlib_log(VLIB_LOG_LEVEL_ERR, dpdk_main.log_default, __VA_ARGS__)
477 #define dpdk_log_warn(...) \
478   vlib_log(VLIB_LOG_LEVEL_WARNING, dpdk_main.log_default, __VA_ARGS__)
479 #define dpdk_log_notice(...) \
480   vlib_log(VLIB_LOG_LEVEL_NOTICE, dpdk_main.log_default, __VA_ARGS__)
481 #define dpdk_log_info(...) \
482   vlib_log(VLIB_LOG_LEVEL_INFO, dpdk_main.log_default, __VA_ARGS__)
483
484 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
485
486 format_function_t format_dpdk_device_name;
487 format_function_t format_dpdk_device;
488 format_function_t format_dpdk_device_errors;
489 format_function_t format_dpdk_tx_trace;
490 format_function_t format_dpdk_rx_trace;
491 format_function_t format_dpdk_rte_mbuf;
492 format_function_t format_dpdk_rx_rte_mbuf;
493 format_function_t format_dpdk_flow;
494 format_function_t format_dpdk_rss_hf_name;
495 format_function_t format_dpdk_rx_offload_caps;
496 format_function_t format_dpdk_tx_offload_caps;
497 vnet_flow_dev_ops_function_t dpdk_flow_ops_fn;
498
499 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
500 clib_error_t *unformat_hqos (unformat_input_t * input,
501                              dpdk_device_config_hqos_t * hqos);
502
503 struct rte_pci_device *dpdk_get_pci_device (const struct rte_eth_dev_info
504                                             *info);
505 void dpdk_cli_reference (void);
506
507 #if CLI_DEBUG
508 int dpdk_buffer_validate_trajectory_all (u32 * uninitialized);
509 void dpdk_buffer_poison_trajectory_all (void);
510 #endif
511
512 #endif /* __included_dpdk_h__ */
513
514 /*
515  * fd.io coding-style-patch-verification: ON
516  *
517  * Local Variables:
518  * eval: (c-set-style "gnu")
519  * End:
520  */