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