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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
15 #ifndef __included_dpdk_h__
16 #define __included_dpdk_h__
18 /* $$$$ We should rename always_inline -> clib_always_inline */
21 #include <rte_config.h>
23 #include <rte_common.h>
26 #include <rte_memory.h>
27 #include <rte_memzone.h>
28 #include <rte_tailq.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>
40 #include <rte_random.h>
41 #include <rte_debug.h>
42 #include <rte_ether.h>
43 #include <rte_ethdev.h>
45 #include <rte_mempool.h>
47 #include <rte_virtio_net.h>
48 #include <rte_version.h>
49 #include <rte_eth_bond.h>
50 #include <rte_sched.h>
52 #include <vnet/unix/pcap.h>
53 #include <vnet/devices/devices.h>
56 #define always_inline static inline
58 #define always_inline static inline __attribute__ ((__always_inline__))
61 #include <vlib/pci/pci.h>
63 #define NB_MBUF (16<<10)
65 extern vnet_device_class_t dpdk_device_class;
66 extern vlib_node_registration_t dpdk_input_node;
67 extern vlib_node_registration_t handoff_dispatch_node;
69 #if RTE_VERSION >= RTE_VERSION_NUM(17, 2, 0, 0)
70 #define foreach_dpdk_pmd \
71 _ ("net_thunderx", THUNDERX) \
72 _ ("net_e1000_em", E1000EM) \
73 _ ("net_e1000_igb", IGB) \
74 _ ("net_e1000_igb_vf", IGBVF) \
75 _ ("net_ixgbe", IXGBE) \
76 _ ("net_ixgbe_vf", IXGBEVF) \
77 _ ("net_i40e", I40E) \
78 _ ("net_i40e_vf", I40EVF) \
79 _ ("net_virtio", VIRTIO) \
80 _ ("net_enic", ENIC) \
81 _ ("net_vmxnet3", VMXNET3) \
82 _ ("AF_PACKET PMD", AF_PACKET) \
83 _ ("net_bonding", BOND) \
84 _ ("net_fm10k", FM10K) \
85 _ ("net_cxgbe", CXGBE) \
86 _ ("net_mlx5", MLX5) \
87 _ ("net_dpaa2", DPAA2)
89 #define foreach_dpdk_pmd \
90 _ ("net_thunderx", THUNDERX) \
91 _ ("net_e1000_em", E1000EM) \
92 _ ("net_e1000_igb", IGB) \
93 _ ("net_e1000_igb_vf", IGBVF) \
94 _ ("net_ixgbe", IXGBE) \
95 _ ("net_ixgbe_vf", IXGBEVF) \
96 _ ("net_i40e", I40E) \
97 _ ("net_i40e_vf", I40EVF) \
98 _ ("net_virtio", VIRTIO) \
99 _ ("net_enic", ENIC) \
100 _ ("net_vmxnet3", VMXNET3) \
101 _ ("AF_PACKET PMD", AF_PACKET) \
102 _ ("rte_bond_pmd", BOND) \
103 _ ("net_fm10k", FM10K) \
104 _ ("net_cxgbe", CXGBE) \
105 _ ("net_mlx5", MLX5) \
106 _ ("net_dpaa2", DPAA2)
112 #define _(s,f) VNET_DPDK_PMD_##f,
115 VNET_DPDK_PMD_UNKNOWN, /* must be last */
120 VNET_DPDK_PORT_TYPE_ETH_1G,
121 VNET_DPDK_PORT_TYPE_ETH_10G,
122 VNET_DPDK_PORT_TYPE_ETH_40G,
123 VNET_DPDK_PORT_TYPE_ETH_100G,
124 VNET_DPDK_PORT_TYPE_ETH_BOND,
125 VNET_DPDK_PORT_TYPE_ETH_SWITCH,
126 VNET_DPDK_PORT_TYPE_AF_PACKET,
127 VNET_DPDK_PORT_TYPE_UNKNOWN,
131 * The header for the tx_vector in dpdk_device_t.
132 * Head and tail are indexes into the tx_vector and are of type
133 * u64 so they never overflow.
143 struct rte_ring *swq;
145 u64 hqos_field0_slabmask;
146 u32 hqos_field0_slabpos;
147 u32 hqos_field0_slabshr;
148 u64 hqos_field1_slabmask;
149 u32 hqos_field1_slabpos;
150 u32 hqos_field1_slabshr;
151 u64 hqos_field2_slabmask;
152 u32 hqos_field2_slabpos;
153 u32 hqos_field2_slabshr;
154 u32 hqos_tc_table[64];
155 } dpdk_device_hqos_per_worker_thread_t;
159 struct rte_ring **swq;
160 struct rte_mbuf **pkts_enq;
161 struct rte_mbuf **pkts_deq;
162 struct rte_sched_port *hqos;
168 } dpdk_device_hqos_per_hqos_thread_t;
172 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
173 volatile u32 **lockp;
179 u32 vlib_sw_if_index;
181 /* next node index if we decide to steal the rx graph arc */
182 u32 per_interface_next_index;
184 /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
185 struct rte_mbuf ***tx_vectors; /* one per worker thread */
186 struct rte_mbuf ***rx_vectors;
188 /* vector of traced contexts, per device */
189 u32 **d_trace_buffers;
195 #define DPDK_DEVICE_FLAG_ADMIN_UP (1 << 0)
196 #define DPDK_DEVICE_FLAG_PROMISC (1 << 1)
197 #define DPDK_DEVICE_FLAG_PMD (1 << 2)
198 #define DPDK_DEVICE_FLAG_PMD_SUPPORTS_PTYPE (1 << 3)
199 #define DPDK_DEVICE_FLAG_MAYBE_MULTISEG (1 << 4)
200 #define DPDK_DEVICE_FLAG_HAVE_SUBIF (1 << 5)
201 #define DPDK_DEVICE_FLAG_HQOS (1 << 6)
204 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
206 u8 *interface_name_suffix;
208 /* number of sub-interfaces */
215 u16 *cpu_socket_id_by_queue;
216 struct rte_eth_conf port_conf;
217 struct rte_eth_txconf tx_conf;
220 dpdk_device_hqos_per_worker_thread_t *hqos_wt;
221 dpdk_device_hqos_per_hqos_thread_t *hqos_ht;
223 /* af_packet or BondEthernet instance number */
226 struct rte_eth_link link;
227 f64 time_last_link_update;
229 struct rte_eth_stats stats;
230 struct rte_eth_stats last_stats;
231 struct rte_eth_stats last_cleared_stats;
232 struct rte_eth_xstat *xstats;
233 struct rte_eth_xstat *last_cleared_xstats;
234 f64 time_last_stats_update;
235 dpdk_port_type_t port_type;
238 u8 *default_mac_address;
241 #define DPDK_STATS_POLL_INTERVAL (10.0)
242 #define DPDK_MIN_STATS_POLL_INTERVAL (0.001) /* 1msec */
244 #define DPDK_LINK_POLL_INTERVAL (3.0)
245 #define DPDK_MIN_LINK_POLL_INTERVAL (0.001) /* 1msec */
251 } dpdk_device_and_queue_t;
253 #ifndef DPDK_HQOS_DBG_BYPASS
254 #define DPDK_HQOS_DBG_BYPASS 0
257 #ifndef HQOS_FLUSH_COUNT_THRESHOLD
258 #define HQOS_FLUSH_COUNT_THRESHOLD 100000
261 typedef struct dpdk_device_config_hqos_t
264 u32 hqos_thread_valid;
270 u32 pktfield0_slabpos;
271 u32 pktfield1_slabpos;
272 u32 pktfield2_slabpos;
273 u64 pktfield0_slabmask;
274 u64 pktfield1_slabmask;
275 u64 pktfield2_slabmask;
278 struct rte_sched_port_params port;
279 struct rte_sched_subport_params *subport;
280 struct rte_sched_pipe_params *pipe;
282 } dpdk_device_config_hqos_t;
284 int dpdk_hqos_validate_mask (u64 mask, u32 n);
285 void dpdk_device_config_hqos_pipe_profile_default (dpdk_device_config_hqos_t *
286 hqos, u32 pipe_profile_id);
287 void dpdk_device_config_hqos_default (dpdk_device_config_hqos_t * hqos);
288 clib_error_t *dpdk_port_setup_hqos (dpdk_device_t * xd,
289 dpdk_device_config_hqos_t * hqos);
290 void dpdk_hqos_metadata_set (dpdk_device_hqos_per_worker_thread_t * hqos,
291 struct rte_mbuf **pkts, u32 n_pkts);
293 #define foreach_dpdk_device_config_item \
302 vlib_pci_addr_t pci_addr;
304 u8 vlan_strip_offload;
305 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
306 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
307 #define DPDK_DEVICE_VLAN_STRIP_ON 2
309 #define _(x) uword x;
310 foreach_dpdk_device_config_item
312 clib_bitmap_t * workers;
314 dpdk_device_config_hqos_t hqos;
315 } dpdk_device_config_t;
322 u8 *eal_init_args_str;
325 u8 enable_tcp_udp_checksum;
328 /* Required config parameters */
329 u8 coremask_set_manually;
330 u8 nchannels_set_manually;
334 u8 num_kni; /* while kni_init allows u32, port_id in callback fn is only u8 */
337 * format interface names ala xxxEthernet%d/%d/%d instead of
338 * xxxEthernet%x/%x/%x.
340 u8 interface_name_format_decimal;
342 /* per-device config */
343 dpdk_device_config_t default_devconf;
344 dpdk_device_config_t *dev_confs;
345 uword *device_config_index_by_pci_addr;
347 } dpdk_config_main_t;
349 dpdk_config_main_t dpdk_config_main;
355 dpdk_device_t *devices;
356 dpdk_device_and_queue_t **devices_by_hqos_cpu;
358 /* per-thread recycle lists */
361 /* per-thread buffer templates */
362 vlib_buffer_t *buffer_templates;
364 /* buffer flags template, configurable to enable/disable tcp / udp cksum */
365 u32 buffer_flags_template;
367 /* vlib buffer free list, must be same size as an rte_mbuf */
368 u32 vlib_buffer_free_list_index;
370 /* Ethernet input node index */
371 u32 ethernet_input_node_index;
373 /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
375 pcap_main_t pcap_main;
377 u32 pcap_sw_if_index;
378 u32 pcap_pkts_to_capture;
381 uword *dpdk_device_by_kni_port_id;
382 uword *vu_sw_if_index_by_listener_fd;
383 uword *vu_sw_if_index_by_sock_fd;
384 u32 *vu_inactive_interfaces_device_index;
387 * flag indicating that a posted admin up/down
388 * (via post_sw_interface_set_flags) is in progress
390 u8 admin_up_down_in_progress;
394 /* which cpus are running I/O TX */
395 int hqos_cpu_first_index;
398 /* control interval of dpdk link state and stat polling */
399 f64 link_state_poll_interval;
400 f64 stat_poll_interval;
402 /* Sleep for this many usec after each device poll */
406 vlib_main_t *vlib_main;
407 vnet_main_t *vnet_main;
408 dpdk_config_main_t *conf;
411 struct rte_mempool **pktmbuf_pools;
413 /* API message ID base */
417 dpdk_main_t dpdk_main;
425 /* Copy of VLIB buffer; packet data stored in pre_data. */
426 vlib_buffer_t buffer;
427 } dpdk_tx_dma_trace_t;
435 vlib_buffer_t buffer; /* Copy of VLIB buffer; pkt data stored in pre_data. */
436 u8 data[256]; /* First 256 data bytes, used for hexdump */
437 } dpdk_rx_dma_trace_t;
439 void vnet_buffer_needs_dpdk_mb (vlib_buffer_t * b);
441 clib_error_t *dpdk_set_mac_address (vnet_hw_interface_t * hi, char *address);
443 clib_error_t *dpdk_set_mc_filter (vnet_hw_interface_t * hi,
444 struct ether_addr mc_addr_vec[], int naddr);
446 void dpdk_thread_input (dpdk_main_t * dm, dpdk_device_t * xd);
448 clib_error_t *dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd);
450 u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance);
452 struct rte_mbuf *dpdk_replicate_packet_mb (vlib_buffer_t * b);
453 struct rte_mbuf *dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b);
455 #define foreach_dpdk_error \
456 _(NONE, "no error") \
457 _(RX_PACKET_ERROR, "Rx packet errors") \
458 _(RX_BAD_FCS, "Rx bad fcs") \
459 _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
460 _(RX_ALLOC_FAIL, "rx buf alloc from free list failed") \
461 _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem") \
462 _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
466 #define _(f,s) DPDK_ERROR_##f,
472 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
474 format_function_t format_dpdk_device_name;
475 format_function_t format_dpdk_device;
476 format_function_t format_dpdk_tx_dma_trace;
477 format_function_t format_dpdk_rx_dma_trace;
478 format_function_t format_dpdk_rte_mbuf;
479 format_function_t format_dpdk_rx_rte_mbuf;
480 unformat_function_t unformat_socket_mem;
481 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
482 clib_error_t *unformat_hqos (unformat_input_t * input,
483 dpdk_device_config_hqos_t * hqos);
486 admin_up_down_process (vlib_main_t * vm,
487 vlib_node_runtime_t * rt, vlib_frame_t * f);
489 #endif /* __included_dpdk_h__ */
492 * fd.io coding-style-patch-verification: ON
495 * eval: (c-set-style "gnu")