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