dpdk: remove support for dpdk 2.2
[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 #include <rte_virtio_net.h>
48 #include <rte_version.h>
49 #include <rte_eth_bond.h>
50 #include <rte_sched.h>
51
52 #include <vnet/unix/pcap.h>
53 #include <vnet/devices/virtio/vhost-user.h>
54
55 #if CLIB_DEBUG > 0
56 #define always_inline static inline
57 #else
58 #define always_inline static inline __attribute__ ((__always_inline__))
59 #endif
60
61 #if RTE_VERSION < RTE_VERSION_NUM(16, 7, 0, 0)
62 #define DPDK_VHOST_USER 1
63 #else
64 #define DPDK_VHOST_USER 0
65 #endif
66
67 #include <vlib/pci/pci.h>
68
69 #define NB_MBUF   (16<<10)
70
71 extern vnet_device_class_t dpdk_device_class;
72 extern vlib_node_registration_t dpdk_input_node;
73 extern vlib_node_registration_t handoff_dispatch_node;
74
75 #define foreach_dpdk_pmd          \
76   _ ("rte_nicvf_pmd", THUNDERX)   \
77   _ ("rte_em_pmd", E1000EM)       \
78   _ ("rte_igb_pmd", IGB)          \
79   _ ("rte_igbvf_pmd", IGBVF)      \
80   _ ("rte_ixgbe_pmd", IXGBE)      \
81   _ ("rte_ixgbevf_pmd", IXGBEVF)  \
82   _ ("rte_i40e_pmd", I40E)        \
83   _ ("rte_i40evf_pmd", I40EVF)    \
84   _ ("rte_virtio_pmd", VIRTIO)    \
85   _ ("rte_enic_pmd", ENIC)        \
86   _ ("rte_vmxnet3_pmd", VMXNET3)  \
87   _ ("AF_PACKET PMD", AF_PACKET)  \
88   _ ("rte_bond_pmd", BOND)        \
89   _ ("rte_pmd_fm10k", FM10K)      \
90   _ ("rte_cxgbe_pmd", CXGBE)      \
91   _ ("rte_dpaa2_dpni", DPAA2)
92
93 typedef enum
94 {
95   VNET_DPDK_PMD_NONE,
96 #define _(s,f) VNET_DPDK_PMD_##f,
97   foreach_dpdk_pmd
98 #undef _
99     VNET_DPDK_PMD_UNKNOWN,      /* must be last */
100 } dpdk_pmd_t;
101
102 typedef enum
103 {
104   VNET_DPDK_PORT_TYPE_ETH_1G,
105   VNET_DPDK_PORT_TYPE_ETH_10G,
106   VNET_DPDK_PORT_TYPE_ETH_40G,
107   VNET_DPDK_PORT_TYPE_ETH_BOND,
108   VNET_DPDK_PORT_TYPE_ETH_SWITCH,
109   VNET_DPDK_PORT_TYPE_AF_PACKET,
110   VNET_DPDK_PORT_TYPE_UNKNOWN,
111 } dpdk_port_type_t;
112
113 typedef struct
114 {
115   f64 deadline;
116   vlib_frame_t *frame;
117 } dpdk_frame_t;
118
119 #define DPDK_EFD_MAX_DISCARD_RATE 10
120
121 typedef struct
122 {
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 #if DPDK_VHOST_USER
135 typedef struct
136 {
137   int callfd;
138   int kickfd;
139   int errfd;
140   int enabled;
141   u32 callfd_idx;
142   u32 n_since_last_int;
143   f64 int_deadline;
144   u64 packets;
145   u64 bytes;
146 } dpdk_vu_vring;
147
148 typedef struct
149 {
150   u32 is_up;
151   u32 unix_fd;
152   u32 unix_file_index;
153   u32 client_fd;
154   char sock_filename[256];
155   int sock_errno;
156   u8 sock_is_server;
157   u8 active;
158
159   u64 feature_mask;
160   u32 num_vrings;
161   dpdk_vu_vring vrings[VHOST_MAX_QUEUE_PAIRS * 2];
162   u64 region_addr[VHOST_MEMORY_MAX_NREGIONS];
163   u32 region_fd[VHOST_MEMORY_MAX_NREGIONS];
164   u64 region_offset[VHOST_MEMORY_MAX_NREGIONS];
165 } dpdk_vu_intf_t;
166 #endif
167
168 typedef void (*dpdk_flowcontrol_callback_t) (vlib_main_t * vm,
169                                              u32 hw_if_index, u32 n_packets);
170
171 /*
172  * The header for the tx_vector in dpdk_device_t.
173  * Head and tail are indexes into the tx_vector and are of type
174  * u64 so they never overflow.
175  */
176 typedef struct
177 {
178   u64 tx_head;
179   u64 tx_tail;
180 } tx_ring_hdr_t;
181
182 typedef struct
183 {
184   struct rte_ring *swq;
185
186   u64 hqos_field0_slabmask;
187   u32 hqos_field0_slabpos;
188   u32 hqos_field0_slabshr;
189   u64 hqos_field1_slabmask;
190   u32 hqos_field1_slabpos;
191   u32 hqos_field1_slabshr;
192   u64 hqos_field2_slabmask;
193   u32 hqos_field2_slabpos;
194   u32 hqos_field2_slabshr;
195   u32 hqos_tc_table[64];
196 } dpdk_device_hqos_per_worker_thread_t;
197
198 typedef struct
199 {
200   struct rte_ring **swq;
201   struct rte_mbuf **pkts_enq;
202   struct rte_mbuf **pkts_deq;
203   struct rte_sched_port *hqos;
204   u32 hqos_burst_enq;
205   u32 hqos_burst_deq;
206   u32 pkts_enq_len;
207   u32 swq_pos;
208 } dpdk_device_hqos_per_hqos_thread_t;
209
210 typedef struct
211 {
212   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
213   volatile u32 **lockp;
214
215   /* Instance ID */
216   u32 device_index;
217
218   u32 vlib_hw_if_index;
219   u32 vlib_sw_if_index;
220
221   /* next node index if we decide to steal the rx graph arc */
222   u32 per_interface_next_index;
223
224   /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
225   struct rte_mbuf ***tx_vectors;        /* one per worker thread */
226   struct rte_mbuf ***rx_vectors;
227
228   /* vector of traced contexts, per device */
229   u32 *d_trace_buffers;
230
231   dpdk_pmd_t pmd:8;
232   i8 cpu_socket;
233
234   u16 flags;
235 #define DPDK_DEVICE_FLAG_ADMIN_UP       (1 << 0)
236 #define DPDK_DEVICE_FLAG_PROMISC        (1 << 1)
237 #define DPDK_DEVICE_FLAG_PMD            (1 << 2)
238
239 #define DPDK_DEVICE_FLAG_VHOST_USER     (1 << 4)
240 #define DPDK_DEVICE_FLAG_HAVE_SUBIF     (1 << 5)
241 #define DPDK_DEVICE_FLAG_HQOS           (1 << 6)
242
243   u16 nb_tx_desc;
244     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
245
246   u8 *interface_name_suffix;
247
248   /* number of sub-interfaces */
249   u16 num_subifs;
250
251   /* PMD related */
252   u16 tx_q_used;
253   u16 rx_q_used;
254   u16 nb_rx_desc;
255   u16 *cpu_socket_id_by_queue;
256   struct rte_eth_conf port_conf;
257   struct rte_eth_txconf tx_conf;
258
259   /* HQoS related */
260   dpdk_device_hqos_per_worker_thread_t *hqos_wt;
261   dpdk_device_hqos_per_hqos_thread_t *hqos_ht;
262
263 #if DPDK_VHOST_USER
264   /* vhost-user related */
265   u32 vu_if_id;
266   struct virtio_net vu_vhost_dev;
267   u32 vu_is_running;
268   dpdk_vu_intf_t *vu_intf;
269 #endif
270
271   /* af_packet */
272   u8 af_packet_port_id;
273
274   struct rte_eth_link link;
275   f64 time_last_link_update;
276
277   struct rte_eth_stats stats;
278   struct rte_eth_stats last_stats;
279   struct rte_eth_stats last_cleared_stats;
280 #if RTE_VERSION >= RTE_VERSION_NUM(16, 7, 0, 0)
281   struct rte_eth_xstat *xstats;
282   struct rte_eth_xstat *last_cleared_xstats;
283 #else
284   struct rte_eth_xstats *xstats;
285   struct rte_eth_xstats *last_cleared_xstats;
286 #endif
287   f64 time_last_stats_update;
288   dpdk_port_type_t port_type;
289
290   dpdk_efd_agent_t efd_agent;
291   u8 need_txlock;               /* Used by VNET_DPDK_DEV_VHOST_USER */
292 } dpdk_device_t;
293
294 #define DPDK_STATS_POLL_INTERVAL      (10.0)
295 #define DPDK_MIN_STATS_POLL_INTERVAL  (0.001)   /* 1msec */
296
297 #define DPDK_LINK_POLL_INTERVAL       (3.0)
298 #define DPDK_MIN_LINK_POLL_INTERVAL   (0.001)   /* 1msec */
299
300 typedef struct
301 {
302   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
303
304   /* total input packet counter */
305   u64 aggregate_rx_packets;
306 } dpdk_worker_t;
307
308 typedef struct
309 {
310   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
311
312   /* total input packet counter */
313   u64 aggregate_rx_packets;
314 } dpdk_hqos_thread_t;
315
316 typedef struct
317 {
318   u32 device;
319   u16 queue_id;
320 } dpdk_device_and_queue_t;
321
322 /* Early-Fast-Discard (EFD) */
323 #define DPDK_EFD_DISABLED                       0
324 #define DPDK_EFD_DISCARD_ENABLED                (1 << 0)
325 #define DPDK_EFD_MONITOR_ENABLED                (1 << 1)
326 #define DPDK_EFD_DROPALL_ENABLED                (1 << 2)
327
328 #define DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT    90
329 #define DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH  6
330
331 typedef struct dpdk_efd_t
332 {
333   u16 enabled;
334   u16 queue_hi_thresh;
335   u16 consec_full_frames_hi_thresh;
336   u16 pad;
337 } dpdk_efd_t;
338
339 #ifndef DPDK_HQOS_DBG_BYPASS
340 #define DPDK_HQOS_DBG_BYPASS 0
341 #endif
342
343 typedef struct dpdk_device_config_hqos_t
344 {
345   u32 hqos_thread;
346   u32 hqos_thread_valid;
347
348   u32 swq_size;
349   u32 burst_enq;
350   u32 burst_deq;
351
352   u32 pktfield0_slabpos;
353   u32 pktfield1_slabpos;
354   u32 pktfield2_slabpos;
355   u64 pktfield0_slabmask;
356   u64 pktfield1_slabmask;
357   u64 pktfield2_slabmask;
358   u32 tc_table[64];
359
360   struct rte_sched_port_params port;
361   struct rte_sched_subport_params *subport;
362   struct rte_sched_pipe_params *pipe;
363   uint32_t *pipe_map;
364 } dpdk_device_config_hqos_t;
365
366 int dpdk_hqos_validate_mask (u64 mask, u32 n);
367 void dpdk_device_config_hqos_pipe_profile_default (dpdk_device_config_hqos_t *
368                                                    hqos, u32 pipe_profile_id);
369 void dpdk_device_config_hqos_default (dpdk_device_config_hqos_t * hqos);
370 clib_error_t *dpdk_port_setup_hqos (dpdk_device_t * xd,
371                                     dpdk_device_config_hqos_t * hqos);
372 void dpdk_hqos_metadata_set (dpdk_device_hqos_per_worker_thread_t * hqos,
373                              struct rte_mbuf **pkts, u32 n_pkts);
374
375 #define foreach_dpdk_device_config_item \
376   _ (num_rx_queues) \
377   _ (num_tx_queues) \
378   _ (num_rx_desc) \
379   _ (num_tx_desc) \
380   _ (rss_fn)
381
382 typedef struct
383 {
384   vlib_pci_addr_t pci_addr;
385   u8 is_blacklisted;
386   u8 vlan_strip_offload;
387 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
388 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
389 #define DPDK_DEVICE_VLAN_STRIP_ON  2
390
391 #define _(x) uword x;
392     foreach_dpdk_device_config_item
393 #undef _
394     clib_bitmap_t * workers;
395   u32 hqos_enabled;
396   dpdk_device_config_hqos_t hqos;
397 } dpdk_device_config_t;
398
399 typedef struct
400 {
401
402   /* Config stuff */
403   u8 **eal_init_args;
404   u8 *eal_init_args_str;
405   u8 *uio_driver_name;
406   u8 no_multi_seg;
407   u8 enable_tcp_udp_checksum;
408
409   /* Required config parameters */
410   u8 coremask_set_manually;
411   u8 nchannels_set_manually;
412   u32 coremask;
413   u32 nchannels;
414   u32 num_mbufs;
415   u8 num_kni;                   /* while kni_init allows u32, port_id in callback fn is only u8 */
416
417   /*
418    * format interface names ala xxxEthernet%d/%d/%d instead of
419    * xxxEthernet%x/%x/%x.
420    */
421   u8 interface_name_format_decimal;
422
423   /* virtio vhost-user switch */
424   u8 use_virtio_vhost;
425
426   /* vhost-user coalescence frames config */
427   u32 vhost_coalesce_frames;
428   f64 vhost_coalesce_time;
429
430   /* per-device config */
431   dpdk_device_config_t default_devconf;
432   dpdk_device_config_t *dev_confs;
433   uword *device_config_index_by_pci_addr;
434
435 } dpdk_config_main_t;
436
437 dpdk_config_main_t dpdk_config_main;
438
439 typedef struct
440 {
441
442   /* Devices */
443   dpdk_device_t *devices;
444   dpdk_device_and_queue_t **devices_by_cpu;
445   dpdk_device_and_queue_t **devices_by_hqos_cpu;
446
447   /* per-thread recycle lists */
448   u32 **recycle;
449
450   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
451   u32 buffer_flags_template;
452
453   /* flow control callback. If 0 then flow control is disabled */
454   dpdk_flowcontrol_callback_t flowcontrol_callback;
455
456   /* vlib buffer free list, must be same size as an rte_mbuf */
457   u32 vlib_buffer_free_list_index;
458
459   /* dpdk worker "threads" */
460   dpdk_worker_t *workers;
461
462   /* dpdk HQoS "threads" */
463   dpdk_hqos_thread_t *hqos_threads;
464
465   /* Ethernet input node index */
466   u32 ethernet_input_node_index;
467
468   /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
469   int tx_pcap_enable;
470   pcap_main_t pcap_main;
471   u8 *pcap_filename;
472   u32 pcap_sw_if_index;
473   u32 pcap_pkts_to_capture;
474
475   /* hashes */
476   uword *dpdk_device_by_kni_port_id;
477   uword *vu_sw_if_index_by_listener_fd;
478   uword *vu_sw_if_index_by_sock_fd;
479   u32 *vu_inactive_interfaces_device_index;
480
481   u32 next_vu_if_id;
482
483   /* efd (early-fast-discard) settings */
484   dpdk_efd_t efd;
485
486   /*
487    * flag indicating that a posted admin up/down
488    * (via post_sw_interface_set_flags) is in progress
489    */
490   u8 admin_up_down_in_progress;
491
492   u8 use_rss;
493
494   /* which cpus are running dpdk-input */
495   int input_cpu_first_index;
496   int input_cpu_count;
497
498   /* which cpus are running I/O TX */
499   int hqos_cpu_first_index;
500   int hqos_cpu_count;
501
502   /* control interval of dpdk link state and stat polling */
503   f64 link_state_poll_interval;
504   f64 stat_poll_interval;
505
506   /* Sleep for this many MS after each device poll */
507   u32 poll_sleep;
508
509   /* convenience */
510   vlib_main_t *vlib_main;
511   vnet_main_t *vnet_main;
512   dpdk_config_main_t *conf;
513 } dpdk_main_t;
514
515 dpdk_main_t dpdk_main;
516
517 typedef enum
518 {
519   DPDK_RX_NEXT_IP4_INPUT,
520   DPDK_RX_NEXT_IP6_INPUT,
521   DPDK_RX_NEXT_MPLS_INPUT,
522   DPDK_RX_NEXT_ETHERNET_INPUT,
523   DPDK_RX_NEXT_DROP,
524   DPDK_RX_N_NEXT,
525 } dpdk_rx_next_t;
526
527 typedef struct
528 {
529   u32 buffer_index;
530   u16 device_index;
531   u8 queue_index;
532   struct rte_mbuf mb;
533   /* Copy of VLIB buffer; packet data stored in pre_data. */
534   vlib_buffer_t buffer;
535 } dpdk_tx_dma_trace_t;
536
537 typedef struct
538 {
539   u32 buffer_index;
540   u16 device_index;
541   u16 queue_index;
542   struct rte_mbuf mb;
543   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
544   u8 data[256];                 /* First 256 data bytes, used for hexdump */
545 } dpdk_rx_dma_trace_t;
546
547 void vnet_buffer_needs_dpdk_mb (vlib_buffer_t * b);
548
549 void dpdk_set_next_node (dpdk_rx_next_t, char *);
550
551 clib_error_t *dpdk_set_mac_address (vnet_hw_interface_t * hi, char *address);
552
553 clib_error_t *dpdk_set_mc_filter (vnet_hw_interface_t * hi,
554                                   struct ether_addr mc_addr_vec[], int naddr);
555
556 void dpdk_thread_input (dpdk_main_t * dm, dpdk_device_t * xd);
557
558 clib_error_t *dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd);
559
560 void dpdk_set_flowcontrol_callback (vlib_main_t * vm,
561                                     dpdk_flowcontrol_callback_t callback);
562
563 u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance);
564
565 void set_efd_bitmap (u8 * bitmap, u32 value, u32 op);
566
567 struct rte_mbuf *dpdk_replicate_packet_mb (vlib_buffer_t * b);
568 struct rte_mbuf *dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b);
569
570 #define foreach_dpdk_error                                              \
571   _(NONE, "no error")                                                   \
572   _(RX_PACKET_ERROR, "Rx packet errors")                                \
573   _(RX_BAD_FCS, "Rx bad fcs")                                           \
574   _(L4_CHECKSUM_ERROR, "Rx L4 checksum errors")                         \
575   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
576   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
577   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
578   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")        \
579   _(IPV4_EFD_DROP_PKTS, "IPV4 Early Fast Discard rx drops")             \
580   _(IPV6_EFD_DROP_PKTS, "IPV6 Early Fast Discard rx drops")             \
581   _(MPLS_EFD_DROP_PKTS, "MPLS Early Fast Discard rx drops")             \
582   _(VLAN_EFD_DROP_PKTS, "VLAN Early Fast Discard rx drops")
583
584 typedef enum
585 {
586 #define _(f,s) DPDK_ERROR_##f,
587   foreach_dpdk_error
588 #undef _
589     DPDK_N_ERROR,
590 } dpdk_error_t;
591
592 /*
593  * Increment EFD drop counter
594  */
595 static_always_inline void
596 increment_efd_drop_counter (vlib_main_t * vm, u32 counter_index, u32 count)
597 {
598   vlib_node_t *my_n;
599
600   my_n = vlib_get_node (vm, dpdk_input_node.index);
601   vm->error_main.counters[my_n->error_heap_index + counter_index] += count;
602 }
603
604 int dpdk_set_stat_poll_interval (f64 interval);
605 int dpdk_set_link_state_poll_interval (f64 interval);
606 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
607 void dpdk_device_lock_init (dpdk_device_t * xd);
608 void dpdk_device_lock_free (dpdk_device_t * xd);
609 void dpdk_efd_update_counters (dpdk_device_t * xd, u32 n_buffers,
610                                u16 enabled);
611 u32 is_efd_discardable (vlib_thread_main_t * tm, vlib_buffer_t * b0,
612                         struct rte_mbuf *mb);
613
614 #if DPDK_VHOST_USER
615 /* dpdk vhost-user interrupt management */
616 u8 dpdk_vhost_user_want_interrupt (dpdk_device_t * xd, int idx);
617 void dpdk_vhost_user_send_interrupt (vlib_main_t * vm, dpdk_device_t * xd,
618                                      int idx);
619 #endif
620
621
622 static inline u64
623 vnet_get_aggregate_rx_packets (void)
624 {
625   dpdk_main_t *dm = &dpdk_main;
626   u64 sum = 0;
627   dpdk_worker_t *dw;
628
629   vec_foreach (dw, dm->workers) sum += dw->aggregate_rx_packets;
630
631   return sum;
632 }
633
634 void dpdk_rx_trace (dpdk_main_t * dm,
635                     vlib_node_runtime_t * node,
636                     dpdk_device_t * xd,
637                     u16 queue_id, u32 * buffers, uword n_buffers);
638
639 #define EFD_OPERATION_LESS_THAN          0
640 #define EFD_OPERATION_GREATER_OR_EQUAL   1
641
642 void efd_config (u32 enabled,
643                  u32 ip_prec, u32 ip_op,
644                  u32 mpls_exp, u32 mpls_op, u32 vlan_cos, u32 vlan_op);
645
646 void post_sw_interface_set_flags (vlib_main_t * vm, u32 sw_if_index,
647                                   u32 flags);
648
649 #if DPDK_VHOST_USER
650 typedef struct vhost_user_memory vhost_user_memory_t;
651
652 void dpdk_vhost_user_process_init (void **ctx);
653 void dpdk_vhost_user_process_cleanup (void *ctx);
654 uword dpdk_vhost_user_process_if (vlib_main_t * vm, dpdk_device_t * xd,
655                                   void *ctx);
656
657 // vhost-user calls
658 int dpdk_vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm,
659                                const char *sock_filename,
660                                u8 is_server,
661                                u32 * sw_if_index,
662                                u64 feature_mask,
663                                u8 renumber, u32 custom_dev_instance,
664                                u8 * hwaddr);
665 int dpdk_vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
666                                const char *sock_filename,
667                                u8 is_server,
668                                u32 sw_if_index,
669                                u64 feature_mask,
670                                u8 renumber, u32 custom_dev_instance);
671 int dpdk_vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm,
672                                u32 sw_if_index);
673 int dpdk_vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
674                               vhost_user_intf_details_t ** out_vuids);
675 #endif
676
677 u32 dpdk_get_admin_up_down_in_progress (void);
678
679 u32 dpdk_num_mbufs (void);
680
681 dpdk_pmd_t dpdk_get_pmd_type (vnet_hw_interface_t * hi);
682
683 i8 dpdk_get_cpu_socket (vnet_hw_interface_t * hi);
684
685 void *dpdk_input_multiarch_select ();
686 void *dpdk_input_rss_multiarch_select ();
687 void *dpdk_input_efd_multiarch_select ();
688
689 clib_error_t *dpdk_get_hw_interface_stats (u32 hw_if_index,
690                                            struct rte_eth_stats *dest);
691
692 format_function_t format_dpdk_device_name;
693 format_function_t format_dpdk_device;
694 format_function_t format_dpdk_tx_dma_trace;
695 format_function_t format_dpdk_rx_dma_trace;
696 format_function_t format_dpdk_rte_mbuf;
697 format_function_t format_dpdk_rx_rte_mbuf;
698 unformat_function_t unformat_socket_mem;
699 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
700 clib_error_t *unformat_hqos (unformat_input_t * input,
701                              dpdk_device_config_hqos_t * hqos);
702
703 uword
704 admin_up_down_process (vlib_main_t * vm,
705                        vlib_node_runtime_t * rt, vlib_frame_t * f);
706
707 #endif /* __included_dpdk_h__ */
708
709 /*
710  * fd.io coding-style-patch-verification: ON
711  *
712  * Local Variables:
713  * eval: (c-set-style "gnu")
714  * End:
715  */