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