15 #ifndef __included_dpdk_h__ 16 #define __included_dpdk_h__ 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> 56 #define always_inline static inline 58 #define always_inline static inline __attribute__ ((__always_inline__)) 63 #define NB_MBUF (16<<10) 69 #if RTE_VERSION >= RTE_VERSION_NUM(16, 11, 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 _ ("net_af_packet", AF_PACKET) \ 83 _ ("net_bonding", BOND) \ 84 _ ("net_fm10k", FM10K) \ 85 _ ("net_cxgbe", CXGBE) \ 86 _ ("net_dpaa2", DPAA2) 88 #define foreach_dpdk_pmd \ 89 _ ("rte_nicvf_pmd", THUNDERX) \ 90 _ ("rte_em_pmd", E1000EM) \ 91 _ ("rte_igb_pmd", IGB) \ 92 _ ("rte_igbvf_pmd", IGBVF) \ 93 _ ("rte_ixgbe_pmd", IXGBE) \ 94 _ ("rte_ixgbevf_pmd", IXGBEVF) \ 95 _ ("rte_i40e_pmd", I40E) \ 96 _ ("rte_i40evf_pmd", I40EVF) \ 97 _ ("rte_virtio_pmd", VIRTIO) \ 98 _ ("rte_enic_pmd", ENIC) \ 99 _ ("rte_vmxnet3_pmd", VMXNET3) \ 100 _ ("AF_PACKET PMD", AF_PACKET) \ 101 _ ("rte_bond_pmd", BOND) \ 102 _ ("rte_pmd_fm10k", FM10K) \ 103 _ ("rte_cxgbe_pmd", CXGBE) \ 104 _ ("rte_dpaa2_dpni", DPAA2) 110 #define _(s,f) VNET_DPDK_PMD_##f, 133 #define DPDK_EFD_MAX_DISCARD_RATE 10 149 u32 hw_if_index,
u32 n_packets);
216 #define DPDK_DEVICE_FLAG_ADMIN_UP (1 << 0) 217 #define DPDK_DEVICE_FLAG_PROMISC (1 << 1) 218 #define DPDK_DEVICE_FLAG_PMD (1 << 2) 220 #define DPDK_DEVICE_FLAG_HAVE_SUBIF (1 << 5) 221 #define DPDK_DEVICE_FLAG_HQOS (1 << 6) 236 struct rte_eth_conf port_conf;
237 struct rte_eth_txconf tx_conf;
246 struct rte_eth_link link;
249 struct rte_eth_stats stats;
250 struct rte_eth_stats last_stats;
251 struct rte_eth_stats last_cleared_stats;
260 #define DPDK_STATS_POLL_INTERVAL (10.0) 261 #define DPDK_MIN_STATS_POLL_INTERVAL (0.001) 263 #define DPDK_LINK_POLL_INTERVAL (3.0) 264 #define DPDK_MIN_LINK_POLL_INTERVAL (0.001) 289 #define DPDK_EFD_DISABLED 0 290 #define DPDK_EFD_DISCARD_ENABLED (1 << 0) 291 #define DPDK_EFD_MONITOR_ENABLED (1 << 1) 292 #define DPDK_EFD_DROPALL_ENABLED (1 << 2) 294 #define DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT 90 295 #define DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH 6 305 #ifndef DPDK_HQOS_DBG_BYPASS 306 #define DPDK_HQOS_DBG_BYPASS 0 309 #ifndef HQOS_FLUSH_COUNT_THRESHOLD 310 #define HQOS_FLUSH_COUNT_THRESHOLD 100000 330 struct rte_sched_port_params port;
332 struct rte_sched_pipe_params *
pipe;
338 hqos,
u32 pipe_profile_id);
343 struct rte_mbuf **pkts,
u32 n_pkts);
345 #define foreach_dpdk_device_config_item \ 357 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0 358 #define DPDK_DEVICE_VLAN_STRIP_OFF 1 359 #define DPDK_DEVICE_VLAN_STRIP_ON 2 361 #define _(x) uword x; 503 struct ether_addr mc_addr_vec[],
int naddr);
519 #define foreach_dpdk_error \ 520 _(NONE, "no error") \ 521 _(RX_PACKET_ERROR, "Rx packet errors") \ 522 _(RX_BAD_FCS, "Rx bad fcs") \ 523 _(L4_CHECKSUM_ERROR, "Rx L4 checksum errors") \ 524 _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \ 525 _(RX_ALLOC_FAIL, "rx buf alloc from free list failed") \ 526 _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem") \ 527 _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error") \ 528 _(IPV4_EFD_DROP_PKTS, "IPV4 Early Fast Discard rx drops") \ 529 _(IPV6_EFD_DROP_PKTS, "IPV6 Early Fast Discard rx drops") \ 530 _(MPLS_EFD_DROP_PKTS, "MPLS Early Fast Discard rx drops") \ 531 _(VLAN_EFD_DROP_PKTS, "VLAN Early Fast Discard rx drops") 535 #define _(f,s) DPDK_ERROR_##f, 561 struct rte_mbuf *mb);
580 #define EFD_OPERATION_LESS_THAN 0 581 #define EFD_OPERATION_GREATER_OR_EQUAL 1 603 struct rte_eth_stats *dest);
void(* dpdk_flowcontrol_callback_t)(vlib_main_t *vm, u32 hw_if_index, u32 n_packets)
void dpdk_device_lock_free(dpdk_device_t *xd)
f64 time_last_link_update
struct dpdk_device_config_hqos_t dpdk_device_config_hqos_t
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
struct rte_mbuf * dpdk_replicate_packet_mb(vlib_buffer_t *b)
void post_sw_interface_set_flags(vlib_main_t *vm, u32 sw_if_index, u32 flags)
u8 interface_name_format_decimal
int dpdk_hqos_validate_mask(u64 mask, u32 n)
vnet_device_class_t dpdk_device_class
clib_error_t * dpdk_set_mc_filter(vnet_hw_interface_t *hi, struct ether_addr mc_addr_vec[], int naddr)
#define foreach_dpdk_error
i8 dpdk_get_cpu_socket(vnet_hw_interface_t *hi)
PCAP utility definitions.
struct dpdk_efd_t dpdk_efd_t
dpdk_pmd_t dpdk_get_pmd_type(vnet_hw_interface_t *hi)
dpdk_device_and_queue_t ** devices_by_hqos_cpu
struct _vlib_node_registration vlib_node_registration_t
u32 per_interface_next_index
u8 enable_tcp_udp_checksum
struct rte_mbuf ** pkts_enq
struct rte_sched_port * hqos
struct rte_eth_xstat * last_cleared_xstats
format_function_t format_dpdk_rte_mbuf
dpdk_device_config_hqos_t hqos
struct _vnet_device_class vnet_device_class_t
format_function_t format_dpdk_tx_dma_trace
clib_error_t * dpdk_port_setup(dpdk_main_t *dm, dpdk_device_t *xd)
struct rte_sched_pipe_params * pipe
void * dpdk_input_efd_multiarch_select()
struct rte_mbuf *** tx_vectors
foreach_dpdk_device_config_item clib_bitmap_t * workers
#define static_always_inline
PCAP main state data structure.
dpdk_config_main_t dpdk_config_main
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
struct rte_mbuf ** pkts_deq
dpdk_device_config_t default_devconf
static u32 counter_index(vlib_main_t *vm, vlib_error_t e)
unformat_function_t unformat_socket_mem
int input_cpu_first_index
u32 dpdk_interface_tx_vector(vlib_main_t *vm, u32 dev_instance)
u32 dpdk_get_admin_up_down_in_progress(void)
format_function_t format_dpdk_rx_rte_mbuf
clib_error_t * unformat_rss_fn(unformat_input_t *input, uword *rss_fn)
dpdk_device_hqos_per_worker_thread_t * hqos_wt
void * dpdk_input_multiarch_select()
vlib_node_registration_t handoff_dispatch_node
(constructor) VLIB_REGISTER_NODE (handoff_dispatch_node)
f64 time_last_stats_update
u16 consec_full_frames_hi_thresh
dpdk_hqos_thread_t * hqos_threads
format_function_t format_dpdk_rx_dma_trace
dpdk_device_and_queue_t ** devices_by_cpu
static_always_inline void increment_efd_drop_counter(vlib_main_t *vm, u32 counter_index, u32 count)
int dpdk_set_link_state_poll_interval(f64 interval)
u32 consec_full_frames_cnt
vlib_error_main_t error_main
void vnet_buffer_needs_dpdk_mb(vlib_buffer_t *b)
dpdk_flowcontrol_callback_t flowcontrol_callback
static u64 vnet_get_aggregate_rx_packets(void)
void efd_config(u32 enabled, u32 ip_prec, u32 ip_op, u32 mpls_exp, u32 mpls_op, u32 vlan_cos, u32 vlan_op)
void dpdk_hqos_metadata_set(dpdk_device_hqos_per_worker_thread_t *hqos, struct rte_mbuf **pkts, u32 n_pkts)
dpdk_port_type_t port_type
void dpdk_rx_trace(dpdk_main_t *dm, vlib_node_runtime_t *node, dpdk_device_t *xd, u16 queue_id, u32 *buffers, uword n_buffers)
void dpdk_thread_input(dpdk_main_t *dm, dpdk_device_t *xd)
clib_error_t * dpdk_get_hw_interface_stats(u32 hw_if_index, struct rte_eth_stats *dest)
u8 nchannels_set_manually
u16 * cpu_socket_id_by_queue
void dpdk_device_config_hqos_pipe_profile_default(dpdk_device_config_hqos_t *hqos, u32 pipe_profile_id)
dpdk_device_config_t * dev_confs
struct rte_mbuf *** rx_vectors
int dpdk_set_stat_poll_interval(f64 interval)
uword admin_up_down_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
format_function_t format_dpdk_device
void dpdk_efd_update_counters(dpdk_device_t *xd, u32 n_buffers, u16 enabled)
struct rte_eth_xstat * xstats
u8 * interface_name_suffix
void dpdk_set_flowcontrol_callback(vlib_main_t *vm, dpdk_flowcontrol_callback_t callback)
format_function_t format_dpdk_device_name
void dpdk_device_config_hqos_default(dpdk_device_config_hqos_t *hqos)
u32 * vu_inactive_interfaces_device_index
void * dpdk_input_rss_multiarch_select()
void dpdk_device_lock_init(dpdk_device_t *xd)
dpdk_device_hqos_per_hqos_thread_t * hqos_ht
struct rte_mbuf * dpdk_zerocopy_replicate_packet_mb(vlib_buffer_t *b)
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
clib_error_t * dpdk_set_mac_address(vnet_hw_interface_t *hi, char *address)
u32 is_efd_discardable(vlib_thread_main_t *tm, vlib_buffer_t *b0, struct rte_mbuf *mb)
clib_error_t * dpdk_port_setup_hqos(dpdk_device_t *xd, dpdk_device_config_hqos_t *hqos)
u32 ethernet_input_node_index
dpdk_efd_agent_t efd_agent
u8 admin_up_down_in_progress
void set_efd_bitmap(u8 *bitmap, u32 value, u32 op)
u32 buffer_flags_template
u32 vlib_buffer_free_list_index
struct rte_sched_subport_params * subport
#define foreach_dpdk_device_config_item
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
#define vec_foreach(var, vec)
Vector iterator.
clib_error_t * unformat_hqos(unformat_input_t *input, dpdk_device_config_hqos_t *hqos)
uword * device_config_index_by_pci_addr
uword * dpdk_device_by_kni_port_id
uword * vu_sw_if_index_by_listener_fd
f64 link_state_poll_interval
dpdk_config_main_t * conf
uword * vu_sw_if_index_by_sock_fd