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