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