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