90a50dafa43ede604946820e22f8da22dd965e73
[vpp.git] / vnet / vnet / devices / dpdk / 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_log.h>
26 #include <rte_memory.h>
27 #include <rte_memzone.h>
28 #include <rte_tailq.h>
29 #include <rte_eal.h>
30 #include <rte_per_lcore.h>
31 #include <rte_launch.h>
32 #include <rte_atomic.h>
33 #include <rte_cycles.h>
34 #include <rte_prefetch.h>
35 #include <rte_lcore.h>
36 #include <rte_per_lcore.h>
37 #include <rte_branch_prediction.h>
38 #include <rte_interrupts.h>
39 #include <rte_pci.h>
40 #include <rte_random.h>
41 #include <rte_debug.h>
42 #include <rte_ether.h>
43 #include <rte_ethdev.h>
44 #include <rte_ring.h>
45 #include <rte_mempool.h>
46 #include <rte_mbuf.h>
47 #ifdef RTE_LIBRTE_KNI
48 #include <rte_kni.h>
49 #endif
50 #include <rte_virtio_net.h>
51 #include <rte_pci_dev_ids.h>
52 #include <rte_version.h>
53 #include <rte_eth_bond.h>
54
55 #include <vnet/unix/pcap.h>
56 #include <vnet/devices/virtio/vhost-user.h>
57
58 #if CLIB_DEBUG > 0
59 #define always_inline static inline
60 #else
61 #define always_inline static inline __attribute__ ((__always_inline__))
62 #endif
63
64 #if RTE_VERSION < RTE_VERSION_NUM(16, 7, 0, 0)
65 #define DPDK_VHOST_USER 1
66 #else
67 #define DPDK_VHOST_USER 0
68 #endif
69
70 #include <vlib/pci/pci.h>
71
72 #define NB_MBUF   (16<<10)
73
74 extern vnet_device_class_t dpdk_device_class;
75 extern vlib_node_registration_t dpdk_input_node;
76 extern vlib_node_registration_t handoff_dispatch_node;
77
78 typedef enum
79 {
80   VNET_DPDK_DEV_ETH = 1,        /* Standard DPDK PMD driver */
81   VNET_DPDK_DEV_KNI,            /* Kernel NIC Interface */
82   VNET_DPDK_DEV_VHOST_USER,
83   VNET_DPDK_DEV_UNKNOWN,        /* must be last */
84 } dpdk_device_type_t;
85
86 #define foreach_dpdk_pmd          \
87   _ ("rte_nicvf_pmd", THUNDERX)   \
88   _ ("rte_em_pmd", E1000EM)       \
89   _ ("rte_igb_pmd", IGB)          \
90   _ ("rte_igbvf_pmd", IGBVF)      \
91   _ ("rte_ixgbe_pmd", IXGBE)      \
92   _ ("rte_ixgbevf_pmd", IXGBEVF)  \
93   _ ("rte_i40e_pmd", I40E)        \
94   _ ("rte_i40evf_pmd", I40EVF)    \
95   _ ("rte_virtio_pmd", VIRTIO)    \
96   _ ("rte_enic_pmd", ENIC)        \
97   _ ("rte_vmxnet3_pmd", VMXNET3)  \
98   _ ("AF_PACKET PMD", AF_PACKET)  \
99   _ ("rte_bond_pmd", BOND)        \
100   _ ("rte_pmd_fm10k", FM10K)      \
101   _ ("rte_cxgbe_pmd", CXGBE)      \
102   _ ("rte_dpaa2_dpni", DPAA2)
103
104 typedef enum
105 {
106   VNET_DPDK_PMD_NONE,
107 #define _(s,f) VNET_DPDK_PMD_##f,
108   foreach_dpdk_pmd
109 #undef _
110     VNET_DPDK_PMD_UNKNOWN,      /* must be last */
111 } dpdk_pmd_t;
112
113 typedef enum
114 {
115   VNET_DPDK_PORT_TYPE_ETH_1G,
116   VNET_DPDK_PORT_TYPE_ETH_10G,
117   VNET_DPDK_PORT_TYPE_ETH_40G,
118   VNET_DPDK_PORT_TYPE_ETH_BOND,
119   VNET_DPDK_PORT_TYPE_ETH_SWITCH,
120   VNET_DPDK_PORT_TYPE_AF_PACKET,
121   VNET_DPDK_PORT_TYPE_UNKNOWN,
122 } dpdk_port_type_t;
123
124 typedef struct
125 {
126   f64 deadline;
127   vlib_frame_t *frame;
128 } dpdk_frame_t;
129
130 #define DPDK_EFD_MAX_DISCARD_RATE 10
131
132 typedef struct
133 {
134   u16 last_burst_sz;
135   u16 max_burst_sz;
136   u32 full_frames_cnt;
137   u32 consec_full_frames_cnt;
138   u32 congestion_cnt;
139   u64 last_poll_time;
140   u64 max_poll_delay;
141   u32 discard_cnt;
142   u32 total_packet_cnt;
143 } dpdk_efd_agent_t;
144
145 #if DPDK_VHOST_USER
146 typedef struct
147 {
148   int callfd;
149   int kickfd;
150   int errfd;
151   int enabled;
152   u32 callfd_idx;
153   u32 n_since_last_int;
154   f64 int_deadline;
155   u64 packets;
156   u64 bytes;
157 } dpdk_vu_vring;
158
159 typedef struct
160 {
161   u32 is_up;
162   u32 unix_fd;
163   u32 unix_file_index;
164   u32 client_fd;
165   char sock_filename[256];
166   int sock_errno;
167   u8 sock_is_server;
168   u8 active;
169
170   u64 feature_mask;
171   u32 num_vrings;
172   dpdk_vu_vring vrings[VHOST_MAX_QUEUE_PAIRS * 2];
173   u64 region_addr[VHOST_MEMORY_MAX_NREGIONS];
174   u32 region_fd[VHOST_MEMORY_MAX_NREGIONS];
175   u64 region_offset[VHOST_MEMORY_MAX_NREGIONS];
176 } dpdk_vu_intf_t;
177 #endif
178
179 typedef void (*dpdk_flowcontrol_callback_t) (vlib_main_t * vm,
180                                              u32 hw_if_index, u32 n_packets);
181
182 /*
183  * The header for the tx_vector in dpdk_device_t.
184  * Head and tail are indexes into the tx_vector and are of type
185  * u64 so they never overflow.
186  */
187 typedef struct
188 {
189   u64 tx_head;
190   u64 tx_tail;
191 } tx_ring_hdr_t;
192
193 typedef struct
194 {
195   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
196   volatile u32 **lockp;
197
198   /* Instance ID */
199   u32 device_index;
200
201   u32 vlib_hw_if_index;
202   u32 vlib_sw_if_index;
203
204   /* next node index if we decide to steal the rx graph arc */
205   u32 per_interface_next_index;
206
207   /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
208   struct rte_mbuf ***tx_vectors;        /* one per worker thread */
209   struct rte_mbuf ***rx_vectors;
210
211   /* vector of traced contexts, per device */
212   u32 *d_trace_buffers;
213
214   /* number of sub-interfaces */
215   u16 vlan_subifs;
216
217   dpdk_device_type_t dev_type:8;
218   dpdk_pmd_t pmd:8;
219   i8 cpu_socket;
220
221   u8 admin_up;
222   u8 promisc;
223
224     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
225
226   u8 *interface_name_suffix;
227
228   /* PMD related */
229   u16 tx_q_used;
230   u16 rx_q_used;
231   u16 nb_rx_desc;
232   u16 nb_tx_desc;
233   u16 *cpu_socket_id_by_queue;
234   struct rte_eth_conf port_conf;
235   struct rte_eth_txconf tx_conf;
236
237   /* KNI related */
238   struct rte_kni *kni;
239   u8 kni_port_id;
240
241 #if DPDK_VHOST_USER
242   /* vhost-user related */
243   u32 vu_if_id;
244   struct virtio_net vu_vhost_dev;
245   u32 vu_is_running;
246   dpdk_vu_intf_t *vu_intf;
247 #endif
248
249   /* af_packet */
250   u8 af_packet_port_id;
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 #if RTE_VERSION >= RTE_VERSION_NUM(16, 7, 0, 0)
259   struct rte_eth_xstat *xstats;
260   struct rte_eth_xstat *last_cleared_xstats;
261 #else
262   struct rte_eth_xstats *xstats;
263   struct rte_eth_xstats *last_cleared_xstats;
264 #endif
265   f64 time_last_stats_update;
266   dpdk_port_type_t port_type;
267
268   dpdk_efd_agent_t efd_agent;
269   u8 need_txlock;               /* Used by VNET_DPDK_DEV_VHOST_USER */
270 } dpdk_device_t;
271
272
273 #define DPDK_TX_RING_SIZE (4 * 1024)
274
275 #define DPDK_STATS_POLL_INTERVAL      (10.0)
276 #define DPDK_MIN_STATS_POLL_INTERVAL  (0.001)   /* 1msec */
277
278 #define DPDK_LINK_POLL_INTERVAL       (3.0)
279 #define DPDK_MIN_LINK_POLL_INTERVAL   (0.001)   /* 1msec */
280
281 typedef struct
282 {
283   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
284
285   /* total input packet counter */
286   u64 aggregate_rx_packets;
287 } dpdk_worker_t;
288
289 typedef struct
290 {
291   u32 device;
292   u16 queue_id;
293 } dpdk_device_and_queue_t;
294
295 /* Early-Fast-Discard (EFD) */
296 #define DPDK_EFD_DISABLED                       0
297 #define DPDK_EFD_DISCARD_ENABLED                (1 << 0)
298 #define DPDK_EFD_MONITOR_ENABLED                (1 << 1)
299 #define DPDK_EFD_DROPALL_ENABLED                (1 << 2)
300
301 #define DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT    90
302 #define DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH  6
303
304 typedef struct dpdk_efd_t
305 {
306   u16 enabled;
307   u16 queue_hi_thresh;
308   u16 consec_full_frames_hi_thresh;
309   u16 pad;
310 } dpdk_efd_t;
311
312 #define foreach_dpdk_device_config_item \
313   _ (num_rx_queues) \
314   _ (num_tx_queues) \
315   _ (num_rx_desc) \
316   _ (num_tx_desc) \
317   _ (rss_fn)
318
319 typedef struct
320 {
321   vlib_pci_addr_t pci_addr;
322   u8 is_blacklisted;
323   u8 vlan_strip_offload;
324 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
325 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
326 #define DPDK_DEVICE_VLAN_STRIP_ON  2
327
328 #define _(x) uword x;
329     foreach_dpdk_device_config_item
330 #undef _
331     clib_bitmap_t * workers;
332 } dpdk_device_config_t;
333
334 typedef struct
335 {
336
337   /* Config stuff */
338   u8 **eal_init_args;
339   u8 *eal_init_args_str;
340   u8 *uio_driver_name;
341   u8 no_multi_seg;
342   u8 enable_tcp_udp_checksum;
343
344   /* Required config parameters */
345   u8 coremask_set_manually;
346   u8 nchannels_set_manually;
347   u32 coremask;
348   u32 nchannels;
349   u32 num_mbufs;
350   u8 num_kni;                   /* while kni_init allows u32, port_id in callback fn is only u8 */
351
352   /*
353    * format interface names ala xxxEthernet%d/%d/%d instead of
354    * xxxEthernet%x/%x/%x.
355    */
356   u8 interface_name_format_decimal;
357
358   /* virtio vhost-user switch */
359   u8 use_virtio_vhost;
360
361   /* vhost-user coalescence frames config */
362   u32 vhost_coalesce_frames;
363   f64 vhost_coalesce_time;
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 } dpdk_config_main_t;
371
372 dpdk_config_main_t dpdk_config_main;
373
374 typedef struct
375 {
376
377   /* Devices */
378   dpdk_device_t *devices;
379   dpdk_device_and_queue_t **devices_by_cpu;
380
381   /* per-thread recycle lists */
382   u32 **recycle;
383
384   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
385   u32 buffer_flags_template;
386
387   /* flow control callback. If 0 then flow control is disabled */
388   dpdk_flowcontrol_callback_t flowcontrol_callback;
389
390   /* vlib buffer free list, must be same size as an rte_mbuf */
391   u32 vlib_buffer_free_list_index;
392
393   /* dpdk worker "threads" */
394   dpdk_worker_t *workers;
395
396
397   /* Ethernet input node index */
398   u32 ethernet_input_node_index;
399
400   /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
401   int tx_pcap_enable;
402   pcap_main_t pcap_main;
403   u8 *pcap_filename;
404   u32 pcap_sw_if_index;
405   u32 pcap_pkts_to_capture;
406
407   /* hashes */
408   uword *dpdk_device_by_kni_port_id;
409   uword *vu_sw_if_index_by_listener_fd;
410   uword *vu_sw_if_index_by_sock_fd;
411   u32 *vu_inactive_interfaces_device_index;
412
413   u32 next_vu_if_id;
414
415   /* efd (early-fast-discard) settings */
416   dpdk_efd_t efd;
417
418   /*
419    * flag indicating that a posted admin up/down
420    * (via post_sw_interface_set_flags) is in progress
421    */
422   u8 admin_up_down_in_progress;
423
424   u8 use_rss;
425
426   /* which cpus are running dpdk-input */
427   int input_cpu_first_index;
428   int input_cpu_count;
429
430   /* control interval of dpdk link state and stat polling */
431   f64 link_state_poll_interval;
432   f64 stat_poll_interval;
433
434   /* Sleep for this many MS after each device poll */
435   u32 poll_sleep;
436
437   /* convenience */
438   vlib_main_t *vlib_main;
439   vnet_main_t *vnet_main;
440   dpdk_config_main_t *conf;
441 } dpdk_main_t;
442
443 dpdk_main_t dpdk_main;
444
445 typedef enum
446 {
447   DPDK_RX_NEXT_IP4_INPUT,
448   DPDK_RX_NEXT_IP6_INPUT,
449   DPDK_RX_NEXT_MPLS_INPUT,
450   DPDK_RX_NEXT_ETHERNET_INPUT,
451   DPDK_RX_NEXT_DROP,
452   DPDK_RX_N_NEXT,
453 } dpdk_rx_next_t;
454
455 typedef struct
456 {
457   u32 buffer_index;
458   u16 device_index;
459   u8 queue_index;
460   struct rte_mbuf mb;
461   /* Copy of VLIB buffer; packet data stored in pre_data. */
462   vlib_buffer_t buffer;
463 } dpdk_tx_dma_trace_t;
464
465 typedef struct
466 {
467   u32 buffer_index;
468   u16 device_index;
469   u16 queue_index;
470   struct rte_mbuf mb;
471   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
472   u8 data[256];                 /* First 256 data bytes, used for hexdump */
473 } dpdk_rx_dma_trace_t;
474
475 void vnet_buffer_needs_dpdk_mb (vlib_buffer_t * b);
476
477 void dpdk_set_next_node (dpdk_rx_next_t, char *);
478
479 clib_error_t *dpdk_set_mac_address (vnet_hw_interface_t * hi, char *address);
480
481 clib_error_t *dpdk_set_mc_filter (vnet_hw_interface_t * hi,
482                                   struct ether_addr mc_addr_vec[], int naddr);
483
484 void dpdk_thread_input (dpdk_main_t * dm, dpdk_device_t * xd);
485
486 clib_error_t *dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd);
487
488 void dpdk_set_flowcontrol_callback (vlib_main_t * vm,
489                                     dpdk_flowcontrol_callback_t callback);
490
491 u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance);
492
493 void set_efd_bitmap (u8 * bitmap, u32 value, u32 op);
494
495 struct rte_mbuf *dpdk_replicate_packet_mb (vlib_buffer_t * b);
496 struct rte_mbuf *dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b);
497
498 #define foreach_dpdk_error                                              \
499   _(NONE, "no error")                                                   \
500   _(RX_PACKET_ERROR, "Rx packet errors")                                \
501   _(RX_BAD_FCS, "Rx bad fcs")                                           \
502   _(L4_CHECKSUM_ERROR, "Rx L4 checksum errors")                         \
503   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
504   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
505   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
506   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")        \
507   _(IPV4_EFD_DROP_PKTS, "IPV4 Early Fast Discard rx drops")             \
508   _(IPV6_EFD_DROP_PKTS, "IPV6 Early Fast Discard rx drops")             \
509   _(MPLS_EFD_DROP_PKTS, "MPLS Early Fast Discard rx drops")             \
510   _(VLAN_EFD_DROP_PKTS, "VLAN Early Fast Discard rx drops")
511
512 typedef enum
513 {
514 #define _(f,s) DPDK_ERROR_##f,
515   foreach_dpdk_error
516 #undef _
517     DPDK_N_ERROR,
518 } dpdk_error_t;
519
520 /*
521  * Increment EFD drop counter
522  */
523 static_always_inline void
524 increment_efd_drop_counter (vlib_main_t * vm, u32 counter_index, u32 count)
525 {
526   vlib_node_t *my_n;
527
528   my_n = vlib_get_node (vm, dpdk_input_node.index);
529   vm->error_main.counters[my_n->error_heap_index + counter_index] += count;
530 }
531
532 int dpdk_set_stat_poll_interval (f64 interval);
533 int dpdk_set_link_state_poll_interval (f64 interval);
534 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
535 void dpdk_device_lock_init (dpdk_device_t * xd);
536 void dpdk_device_lock_free (dpdk_device_t * xd);
537 void dpdk_efd_update_counters (dpdk_device_t * xd, u32 n_buffers,
538                                u16 enabled);
539 u32 is_efd_discardable (vlib_thread_main_t * tm, vlib_buffer_t * b0,
540                         struct rte_mbuf *mb);
541
542 #if DPDK_VHOST_USER
543 /* dpdk vhost-user interrupt management */
544 u8 dpdk_vhost_user_want_interrupt (dpdk_device_t * xd, int idx);
545 void dpdk_vhost_user_send_interrupt (vlib_main_t * vm, dpdk_device_t * xd,
546                                      int idx);
547 #endif
548
549
550 static inline u64
551 vnet_get_aggregate_rx_packets (void)
552 {
553   dpdk_main_t *dm = &dpdk_main;
554   u64 sum = 0;
555   dpdk_worker_t *dw;
556
557   vec_foreach (dw, dm->workers) sum += dw->aggregate_rx_packets;
558
559   return sum;
560 }
561
562 void dpdk_rx_trace (dpdk_main_t * dm,
563                     vlib_node_runtime_t * node,
564                     dpdk_device_t * xd,
565                     u16 queue_id, u32 * buffers, uword n_buffers);
566
567 #define EFD_OPERATION_LESS_THAN          0
568 #define EFD_OPERATION_GREATER_OR_EQUAL   1
569
570 void efd_config (u32 enabled,
571                  u32 ip_prec, u32 ip_op,
572                  u32 mpls_exp, u32 mpls_op, u32 vlan_cos, u32 vlan_op);
573
574 void post_sw_interface_set_flags (vlib_main_t * vm, u32 sw_if_index,
575                                   u32 flags);
576
577 #if DPDK_VHOST_USER
578 typedef struct vhost_user_memory vhost_user_memory_t;
579
580 void dpdk_vhost_user_process_init (void **ctx);
581 void dpdk_vhost_user_process_cleanup (void *ctx);
582 uword dpdk_vhost_user_process_if (vlib_main_t * vm, dpdk_device_t * xd,
583                                   void *ctx);
584
585 // vhost-user calls
586 int dpdk_vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm,
587                                const char *sock_filename,
588                                u8 is_server,
589                                u32 * sw_if_index,
590                                u64 feature_mask,
591                                u8 renumber, u32 custom_dev_instance,
592                                u8 * hwaddr);
593 int dpdk_vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
594                                const char *sock_filename,
595                                u8 is_server,
596                                u32 sw_if_index,
597                                u64 feature_mask,
598                                u8 renumber, u32 custom_dev_instance);
599 int dpdk_vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm,
600                                u32 sw_if_index);
601 int dpdk_vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
602                               vhost_user_intf_details_t ** out_vuids);
603 #endif
604
605 u32 dpdk_get_admin_up_down_in_progress (void);
606
607 u32 dpdk_num_mbufs (void);
608
609 dpdk_pmd_t dpdk_get_pmd_type (vnet_hw_interface_t * hi);
610
611 i8 dpdk_get_cpu_socket (vnet_hw_interface_t * hi);
612
613 void *dpdk_input_multiarch_select ();
614 void *dpdk_input_rss_multiarch_select ();
615 void *dpdk_input_efd_multiarch_select ();
616
617 clib_error_t *dpdk_get_hw_interface_stats (u32 hw_if_index,
618                                            struct rte_eth_stats *dest);
619
620 format_function_t format_dpdk_device_name;
621 format_function_t format_dpdk_device;
622 format_function_t format_dpdk_tx_dma_trace;
623 format_function_t format_dpdk_rx_dma_trace;
624 format_function_t format_dpdk_rte_mbuf;
625 format_function_t format_dpdk_rx_rte_mbuf;
626 unformat_function_t unformat_socket_mem;
627 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
628
629
630 static inline void
631 dpdk_pmd_constructor_init ()
632 {
633   /* Add references to DPDK Driver Constructor functions to get the dynamic
634    * loader to pull in the driver library & run the constructors.
635    */
636 #define _(d)                                            \
637   do {                                                  \
638     void devinitfn_ ##d(void);                          \
639     __attribute__((unused)) void (* volatile pf)(void); \
640     pf = devinitfn_ ##d;                                \
641   } while(0);
642
643 #ifdef RTE_LIBRTE_EM_PMD
644   _(em_pmd_drv)
645 #endif
646 #ifdef RTE_LIBRTE_IGB_PMD
647     _(pmd_igb_drv)
648 #endif
649 #ifdef RTE_LIBRTE_IXGBE_PMD
650     _(rte_ixgbe_driver)
651 #endif
652 #ifdef RTE_LIBRTE_I40E_PMD
653     _(rte_i40e_driver) _(rte_i40evf_driver)
654 #endif
655 #ifdef RTE_LIBRTE_FM10K_PMD
656     _(rte_fm10k_driver)
657 #endif
658 #ifdef RTE_LIBRTE_VIRTIO_PMD
659     _(rte_virtio_driver)
660 #endif
661 #ifdef RTE_LIBRTE_VMXNET3_PMD
662     _(rte_vmxnet3_driver)
663 #endif
664 #ifdef RTE_LIBRTE_VICE_PMD
665     _(rte_vice_driver)
666 #endif
667 #ifdef RTE_LIBRTE_ENIC_PMD
668     _(rte_enic_driver)
669 #endif
670 #ifdef RTE_LIBRTE_PMD_AF_PACKET
671     _(pmd_af_packet_drv)
672 #endif
673 #ifdef RTE_LIBRTE_CXGBE_PMD
674     _(rte_cxgbe_driver)
675 #endif
676 #ifdef RTE_LIBRTE_PMD_BOND
677     _(bond_drv)
678 #endif
679 #ifdef RTE_LIBRTE_DPAA2_PMD
680     _(pmd_dpaa2_drv)
681 #endif
682 #undef _
683 /*
684  * At the moment, the ThunderX NIC driver doesn't have
685  * an entry point named "devinitfn_rte_xxx_driver"
686  */
687 #define _(d)                                          \
688   do {                                                  \
689     void d(void);                                             \
690     __attribute__((unused)) void (* volatile pf)(void); \
691     pf = d;                                           \
692   } while(0);
693 #ifdef RTE_LIBRTE_THUNDERVNIC_PMD
694     _(rte_nicvf_pmd_init)
695 #endif
696 #undef _
697 }
698
699 uword
700 admin_up_down_process (vlib_main_t * vm,
701                        vlib_node_runtime_t * rt, vlib_frame_t * f);
702
703 #endif /* __included_dpdk_h__ */
704
705 /*
706  * fd.io coding-style-patch-verification: ON
707  *
708  * Local Variables:
709  * eval: (c-set-style "gnu")
710  * End:
711  */