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