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