dpdk: Remove obsolete VMXNET3 driver start/stop workaround
[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   u16 flags;
222 #define DPDK_DEVICE_FLAG_ADMIN_UP (1 << 0)
223 #define DPDK_DEVICE_FLAG_PROMISC  (1 << 1)
224
225     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
226
227   u8 *interface_name_suffix;
228
229   /* PMD related */
230   u16 tx_q_used;
231   u16 rx_q_used;
232   u16 nb_rx_desc;
233   u16 nb_tx_desc;
234   u16 *cpu_socket_id_by_queue;
235   struct rte_eth_conf port_conf;
236   struct rte_eth_txconf tx_conf;
237
238   /* KNI related */
239   struct rte_kni *kni;
240   u8 kni_port_id;
241
242 #if DPDK_VHOST_USER
243   /* vhost-user related */
244   u32 vu_if_id;
245   struct virtio_net vu_vhost_dev;
246   u32 vu_is_running;
247   dpdk_vu_intf_t *vu_intf;
248 #endif
249
250   /* af_packet */
251   u8 af_packet_port_id;
252
253   struct rte_eth_link link;
254   f64 time_last_link_update;
255
256   struct rte_eth_stats stats;
257   struct rte_eth_stats last_stats;
258   struct rte_eth_stats last_cleared_stats;
259 #if RTE_VERSION >= RTE_VERSION_NUM(16, 7, 0, 0)
260   struct rte_eth_xstat *xstats;
261   struct rte_eth_xstat *last_cleared_xstats;
262 #else
263   struct rte_eth_xstats *xstats;
264   struct rte_eth_xstats *last_cleared_xstats;
265 #endif
266   f64 time_last_stats_update;
267   dpdk_port_type_t port_type;
268
269   dpdk_efd_agent_t efd_agent;
270   u8 need_txlock;               /* Used by VNET_DPDK_DEV_VHOST_USER */
271 } dpdk_device_t;
272
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 {
284   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
285
286   /* total input packet counter */
287   u64 aggregate_rx_packets;
288 } dpdk_worker_t;
289
290 typedef struct
291 {
292   u32 device;
293   u16 queue_id;
294 } dpdk_device_and_queue_t;
295
296 /* Early-Fast-Discard (EFD) */
297 #define DPDK_EFD_DISABLED                       0
298 #define DPDK_EFD_DISCARD_ENABLED                (1 << 0)
299 #define DPDK_EFD_MONITOR_ENABLED                (1 << 1)
300 #define DPDK_EFD_DROPALL_ENABLED                (1 << 2)
301
302 #define DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT    90
303 #define DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH  6
304
305 typedef struct dpdk_efd_t
306 {
307   u16 enabled;
308   u16 queue_hi_thresh;
309   u16 consec_full_frames_hi_thresh;
310   u16 pad;
311 } dpdk_efd_t;
312
313 #define foreach_dpdk_device_config_item \
314   _ (num_rx_queues) \
315   _ (num_tx_queues) \
316   _ (num_rx_desc) \
317   _ (num_tx_desc) \
318   _ (rss_fn)
319
320 typedef struct
321 {
322   vlib_pci_addr_t pci_addr;
323   u8 is_blacklisted;
324   u8 vlan_strip_offload;
325 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
326 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
327 #define DPDK_DEVICE_VLAN_STRIP_ON  2
328
329 #define _(x) uword x;
330     foreach_dpdk_device_config_item
331 #undef _
332     clib_bitmap_t * workers;
333 } dpdk_device_config_t;
334
335 typedef struct
336 {
337
338   /* Config stuff */
339   u8 **eal_init_args;
340   u8 *eal_init_args_str;
341   u8 *uio_driver_name;
342   u8 no_multi_seg;
343   u8 enable_tcp_udp_checksum;
344
345   /* Required config parameters */
346   u8 coremask_set_manually;
347   u8 nchannels_set_manually;
348   u32 coremask;
349   u32 nchannels;
350   u32 num_mbufs;
351   u8 num_kni;                   /* while kni_init allows u32, port_id in callback fn is only u8 */
352
353   /*
354    * format interface names ala xxxEthernet%d/%d/%d instead of
355    * xxxEthernet%x/%x/%x.
356    */
357   u8 interface_name_format_decimal;
358
359   /* virtio vhost-user switch */
360   u8 use_virtio_vhost;
361
362   /* vhost-user coalescence frames config */
363   u32 vhost_coalesce_frames;
364   f64 vhost_coalesce_time;
365
366   /* per-device config */
367   dpdk_device_config_t default_devconf;
368   dpdk_device_config_t *dev_confs;
369   uword *device_config_index_by_pci_addr;
370
371 } dpdk_config_main_t;
372
373 dpdk_config_main_t dpdk_config_main;
374
375 typedef struct
376 {
377
378   /* Devices */
379   dpdk_device_t *devices;
380   dpdk_device_and_queue_t **devices_by_cpu;
381
382   /* per-thread recycle lists */
383   u32 **recycle;
384
385   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
386   u32 buffer_flags_template;
387
388   /* flow control callback. If 0 then flow control is disabled */
389   dpdk_flowcontrol_callback_t flowcontrol_callback;
390
391   /* vlib buffer free list, must be same size as an rte_mbuf */
392   u32 vlib_buffer_free_list_index;
393
394   /* dpdk worker "threads" */
395   dpdk_worker_t *workers;
396
397
398   /* Ethernet input node index */
399   u32 ethernet_input_node_index;
400
401   /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
402   int tx_pcap_enable;
403   pcap_main_t pcap_main;
404   u8 *pcap_filename;
405   u32 pcap_sw_if_index;
406   u32 pcap_pkts_to_capture;
407
408   /* hashes */
409   uword *dpdk_device_by_kni_port_id;
410   uword *vu_sw_if_index_by_listener_fd;
411   uword *vu_sw_if_index_by_sock_fd;
412   u32 *vu_inactive_interfaces_device_index;
413
414   u32 next_vu_if_id;
415
416   /* efd (early-fast-discard) settings */
417   dpdk_efd_t efd;
418
419   /*
420    * flag indicating that a posted admin up/down
421    * (via post_sw_interface_set_flags) is in progress
422    */
423   u8 admin_up_down_in_progress;
424
425   u8 use_rss;
426
427   /* which cpus are running dpdk-input */
428   int input_cpu_first_index;
429   int input_cpu_count;
430
431   /* control interval of dpdk link state and stat polling */
432   f64 link_state_poll_interval;
433   f64 stat_poll_interval;
434
435   /* Sleep for this many MS after each device poll */
436   u32 poll_sleep;
437
438   /* convenience */
439   vlib_main_t *vlib_main;
440   vnet_main_t *vnet_main;
441   dpdk_config_main_t *conf;
442 } dpdk_main_t;
443
444 dpdk_main_t dpdk_main;
445
446 typedef enum
447 {
448   DPDK_RX_NEXT_IP4_INPUT,
449   DPDK_RX_NEXT_IP6_INPUT,
450   DPDK_RX_NEXT_MPLS_INPUT,
451   DPDK_RX_NEXT_ETHERNET_INPUT,
452   DPDK_RX_NEXT_DROP,
453   DPDK_RX_N_NEXT,
454 } dpdk_rx_next_t;
455
456 typedef struct
457 {
458   u32 buffer_index;
459   u16 device_index;
460   u8 queue_index;
461   struct rte_mbuf mb;
462   /* Copy of VLIB buffer; packet data stored in pre_data. */
463   vlib_buffer_t buffer;
464 } dpdk_tx_dma_trace_t;
465
466 typedef struct
467 {
468   u32 buffer_index;
469   u16 device_index;
470   u16 queue_index;
471   struct rte_mbuf mb;
472   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
473   u8 data[256];                 /* First 256 data bytes, used for hexdump */
474 } dpdk_rx_dma_trace_t;
475
476 void vnet_buffer_needs_dpdk_mb (vlib_buffer_t * b);
477
478 void dpdk_set_next_node (dpdk_rx_next_t, char *);
479
480 clib_error_t *dpdk_set_mac_address (vnet_hw_interface_t * hi, char *address);
481
482 clib_error_t *dpdk_set_mc_filter (vnet_hw_interface_t * hi,
483                                   struct ether_addr mc_addr_vec[], int naddr);
484
485 void dpdk_thread_input (dpdk_main_t * dm, dpdk_device_t * xd);
486
487 clib_error_t *dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd);
488
489 void dpdk_set_flowcontrol_callback (vlib_main_t * vm,
490                                     dpdk_flowcontrol_callback_t callback);
491
492 u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance);
493
494 void set_efd_bitmap (u8 * bitmap, u32 value, u32 op);
495
496 struct rte_mbuf *dpdk_replicate_packet_mb (vlib_buffer_t * b);
497 struct rte_mbuf *dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b);
498
499 #define foreach_dpdk_error                                              \
500   _(NONE, "no error")                                                   \
501   _(RX_PACKET_ERROR, "Rx packet errors")                                \
502   _(RX_BAD_FCS, "Rx bad fcs")                                           \
503   _(L4_CHECKSUM_ERROR, "Rx L4 checksum errors")                         \
504   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
505   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
506   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
507   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")        \
508   _(IPV4_EFD_DROP_PKTS, "IPV4 Early Fast Discard rx drops")             \
509   _(IPV6_EFD_DROP_PKTS, "IPV6 Early Fast Discard rx drops")             \
510   _(MPLS_EFD_DROP_PKTS, "MPLS Early Fast Discard rx drops")             \
511   _(VLAN_EFD_DROP_PKTS, "VLAN Early Fast Discard rx drops")
512
513 typedef enum
514 {
515 #define _(f,s) DPDK_ERROR_##f,
516   foreach_dpdk_error
517 #undef _
518     DPDK_N_ERROR,
519 } dpdk_error_t;
520
521 /*
522  * Increment EFD drop counter
523  */
524 static_always_inline void
525 increment_efd_drop_counter (vlib_main_t * vm, u32 counter_index, u32 count)
526 {
527   vlib_node_t *my_n;
528
529   my_n = vlib_get_node (vm, dpdk_input_node.index);
530   vm->error_main.counters[my_n->error_heap_index + counter_index] += count;
531 }
532
533 int dpdk_set_stat_poll_interval (f64 interval);
534 int dpdk_set_link_state_poll_interval (f64 interval);
535 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
536 void dpdk_device_lock_init (dpdk_device_t * xd);
537 void dpdk_device_lock_free (dpdk_device_t * xd);
538 void dpdk_efd_update_counters (dpdk_device_t * xd, u32 n_buffers,
539                                u16 enabled);
540 u32 is_efd_discardable (vlib_thread_main_t * tm, vlib_buffer_t * b0,
541                         struct rte_mbuf *mb);
542
543 #if DPDK_VHOST_USER
544 /* dpdk vhost-user interrupt management */
545 u8 dpdk_vhost_user_want_interrupt (dpdk_device_t * xd, int idx);
546 void dpdk_vhost_user_send_interrupt (vlib_main_t * vm, dpdk_device_t * xd,
547                                      int idx);
548 #endif
549
550
551 static inline u64
552 vnet_get_aggregate_rx_packets (void)
553 {
554   dpdk_main_t *dm = &dpdk_main;
555   u64 sum = 0;
556   dpdk_worker_t *dw;
557
558   vec_foreach (dw, dm->workers) sum += dw->aggregate_rx_packets;
559
560   return sum;
561 }
562
563 void dpdk_rx_trace (dpdk_main_t * dm,
564                     vlib_node_runtime_t * node,
565                     dpdk_device_t * xd,
566                     u16 queue_id, u32 * buffers, uword n_buffers);
567
568 #define EFD_OPERATION_LESS_THAN          0
569 #define EFD_OPERATION_GREATER_OR_EQUAL   1
570
571 void efd_config (u32 enabled,
572                  u32 ip_prec, u32 ip_op,
573                  u32 mpls_exp, u32 mpls_op, u32 vlan_cos, u32 vlan_op);
574
575 void post_sw_interface_set_flags (vlib_main_t * vm, u32 sw_if_index,
576                                   u32 flags);
577
578 #if DPDK_VHOST_USER
579 typedef struct vhost_user_memory vhost_user_memory_t;
580
581 void dpdk_vhost_user_process_init (void **ctx);
582 void dpdk_vhost_user_process_cleanup (void *ctx);
583 uword dpdk_vhost_user_process_if (vlib_main_t * vm, dpdk_device_t * xd,
584                                   void *ctx);
585
586 // vhost-user calls
587 int dpdk_vhost_user_create_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                                u8 * hwaddr);
594 int dpdk_vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
595                                const char *sock_filename,
596                                u8 is_server,
597                                u32 sw_if_index,
598                                u64 feature_mask,
599                                u8 renumber, u32 custom_dev_instance);
600 int dpdk_vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm,
601                                u32 sw_if_index);
602 int dpdk_vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
603                               vhost_user_intf_details_t ** out_vuids);
604 #endif
605
606 u32 dpdk_get_admin_up_down_in_progress (void);
607
608 u32 dpdk_num_mbufs (void);
609
610 dpdk_pmd_t dpdk_get_pmd_type (vnet_hw_interface_t * hi);
611
612 i8 dpdk_get_cpu_socket (vnet_hw_interface_t * hi);
613
614 void *dpdk_input_multiarch_select ();
615 void *dpdk_input_rss_multiarch_select ();
616 void *dpdk_input_efd_multiarch_select ();
617
618 clib_error_t *dpdk_get_hw_interface_stats (u32 hw_if_index,
619                                            struct rte_eth_stats *dest);
620
621 format_function_t format_dpdk_device_name;
622 format_function_t format_dpdk_device;
623 format_function_t format_dpdk_tx_dma_trace;
624 format_function_t format_dpdk_rx_dma_trace;
625 format_function_t format_dpdk_rte_mbuf;
626 format_function_t format_dpdk_rx_rte_mbuf;
627 unformat_function_t unformat_socket_mem;
628 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
629
630
631 static inline void
632 dpdk_pmd_constructor_init ()
633 {
634   /* Add references to DPDK Driver Constructor functions to get the dynamic
635    * loader to pull in the driver library & run the constructors.
636    */
637 #define _(d)                                            \
638   do {                                                  \
639     void devinitfn_ ##d(void);                          \
640     __attribute__((unused)) void (* volatile pf)(void); \
641     pf = devinitfn_ ##d;                                \
642   } while(0);
643
644 #ifdef RTE_LIBRTE_EM_PMD
645   _(em_pmd_drv)
646 #endif
647 #ifdef RTE_LIBRTE_IGB_PMD
648     _(pmd_igb_drv)
649 #endif
650 #ifdef RTE_LIBRTE_IXGBE_PMD
651     _(rte_ixgbe_driver)
652 #endif
653 #ifdef RTE_LIBRTE_I40E_PMD
654     _(rte_i40e_driver) _(rte_i40evf_driver)
655 #endif
656 #ifdef RTE_LIBRTE_FM10K_PMD
657     _(rte_fm10k_driver)
658 #endif
659 #ifdef RTE_LIBRTE_VIRTIO_PMD
660     _(rte_virtio_driver)
661 #endif
662 #ifdef RTE_LIBRTE_VMXNET3_PMD
663     _(rte_vmxnet3_driver)
664 #endif
665 #ifdef RTE_LIBRTE_VICE_PMD
666     _(rte_vice_driver)
667 #endif
668 #ifdef RTE_LIBRTE_ENIC_PMD
669     _(rte_enic_driver)
670 #endif
671 #ifdef RTE_LIBRTE_PMD_AF_PACKET
672     _(pmd_af_packet_drv)
673 #endif
674 #ifdef RTE_LIBRTE_CXGBE_PMD
675     _(rte_cxgbe_driver)
676 #endif
677 #ifdef RTE_LIBRTE_PMD_BOND
678     _(bond_drv)
679 #endif
680 #ifdef RTE_LIBRTE_DPAA2_PMD
681     _(pmd_dpaa2_drv)
682 #endif
683 #undef _
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 #ifdef RTE_LIBRTE_THUNDERVNIC_PMD
695     _(rte_nicvf_pmd_init)
696 #endif
697 #undef _
698 }
699
700 uword
701 admin_up_down_process (vlib_main_t * vm,
702                        vlib_node_runtime_t * rt, vlib_frame_t * f);
703
704 #endif /* __included_dpdk_h__ */
705
706 /*
707  * fd.io coding-style-patch-verification: ON
708  *
709  * Local Variables:
710  * eval: (c-set-style "gnu")
711  * End:
712  */