b1dfd097c7e160dd29b8f9a0717eb32b9c630bb8
[dpdk.git] / app / test-pmd / testpmd.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4
5 #ifndef _TESTPMD_H_
6 #define _TESTPMD_H_
7
8 #include <stdbool.h>
9
10 #include <rte_pci.h>
11 #include <rte_bus_pci.h>
12 #ifdef RTE_LIB_GRO
13 #include <rte_gro.h>
14 #endif
15 #ifdef RTE_LIB_GSO
16 #include <rte_gso.h>
17 #endif
18 #include <rte_os_shim.h>
19 #include <cmdline.h>
20 #include <sys/queue.h>
21 #ifdef RTE_HAS_JANSSON
22 #include <jansson.h>
23 #endif
24
25 #define RTE_PORT_ALL            (~(portid_t)0x0)
26
27 #define RTE_TEST_RX_DESC_MAX    2048
28 #define RTE_TEST_TX_DESC_MAX    2048
29
30 #define RTE_PORT_STOPPED        (uint16_t)0
31 #define RTE_PORT_STARTED        (uint16_t)1
32 #define RTE_PORT_CLOSED         (uint16_t)2
33 #define RTE_PORT_HANDLING       (uint16_t)3
34
35 /*
36  * It is used to allocate the memory for hash key.
37  * The hash key size is NIC dependent.
38  */
39 #define RSS_HASH_KEY_LENGTH 64
40
41 /*
42  * Default size of the mbuf data buffer to receive standard 1518-byte
43  * Ethernet frames in a mono-segment memory buffer.
44  */
45 #define DEFAULT_MBUF_DATA_SIZE RTE_MBUF_DEFAULT_BUF_SIZE
46 /**< Default size of mbuf data buffer. */
47
48 /*
49  * The maximum number of segments per packet is used when creating
50  * scattered transmit packets composed of a list of mbufs.
51  */
52 #define RTE_MAX_SEGS_PER_PKT 255 /**< nb_segs is a 8-bit unsigned char. */
53
54 /*
55  * The maximum number of segments per packet is used to configure
56  * buffer split feature, also specifies the maximum amount of
57  * optional Rx pools to allocate mbufs to split.
58  */
59 #define MAX_SEGS_BUFFER_SPLIT 8 /**< nb_segs is a 8-bit unsigned char. */
60
61 /* The prefix of the mbuf pool names created by the application. */
62 #define MBUF_POOL_NAME_PFX "mb_pool"
63
64 #define MAX_PKT_BURST 512
65 #define DEF_PKT_BURST 32
66
67 #define DEF_MBUF_CACHE 250
68
69 #define RTE_CACHE_LINE_SIZE_ROUNDUP(size) \
70         (RTE_CACHE_LINE_SIZE * ((size + RTE_CACHE_LINE_SIZE - 1) / RTE_CACHE_LINE_SIZE))
71
72 #define NUMA_NO_CONFIG 0xFF
73 #define UMA_NO_CONFIG  0xFF
74
75 typedef uint8_t  lcoreid_t;
76 typedef uint16_t portid_t;
77 typedef uint16_t queueid_t;
78 typedef uint16_t streamid_t;
79
80 enum {
81         PORT_TOPOLOGY_PAIRED,
82         PORT_TOPOLOGY_CHAINED,
83         PORT_TOPOLOGY_LOOP,
84 };
85
86 enum {
87         MP_ALLOC_NATIVE, /**< allocate and populate mempool natively */
88         MP_ALLOC_ANON,
89         /**< allocate mempool natively, but populate using anonymous memory */
90         MP_ALLOC_XMEM,
91         /**< allocate and populate mempool using anonymous memory */
92         MP_ALLOC_XMEM_HUGE,
93         /**< allocate and populate mempool using anonymous hugepage memory */
94         MP_ALLOC_XBUF
95         /**< allocate mempool natively, use rte_pktmbuf_pool_create_extbuf */
96 };
97
98 /**
99  * The data structure associated with RX and TX packet burst statistics
100  * that are recorded for each forwarding stream.
101  */
102 struct pkt_burst_stats {
103         unsigned int pkt_burst_spread[MAX_PKT_BURST + 1];
104 };
105
106 /** Information for a given RSS type. */
107 struct rss_type_info {
108         const char *str; /**< Type name. */
109         uint64_t rss_type; /**< Type value. */
110 };
111
112 /**
113  * RSS type information table.
114  *
115  * An entry with a NULL type name terminates the list.
116  */
117 extern const struct rss_type_info rss_type_table[];
118
119 /**
120  * Dynf name array.
121  *
122  * Array that holds the name for each dynf.
123  */
124 extern char dynf_names[64][RTE_MBUF_DYN_NAMESIZE];
125
126 /**
127  * The data structure associated with a forwarding stream between a receive
128  * port/queue and a transmit port/queue.
129  */
130 struct fwd_stream {
131         /* "read-only" data */
132         portid_t   rx_port;   /**< port to poll for received packets */
133         queueid_t  rx_queue;  /**< RX queue to poll on "rx_port" */
134         portid_t   tx_port;   /**< forwarding port of received packets */
135         queueid_t  tx_queue;  /**< TX queue to send forwarded packets */
136         streamid_t peer_addr; /**< index of peer ethernet address of packets */
137
138         unsigned int retry_enabled;
139
140         /* "read-write" results */
141         uint64_t rx_packets;  /**< received packets */
142         uint64_t tx_packets;  /**< received packets transmitted */
143         uint64_t fwd_dropped; /**< received packets not forwarded */
144         uint64_t rx_bad_ip_csum ; /**< received packets has bad ip checksum */
145         uint64_t rx_bad_l4_csum ; /**< received packets has bad l4 checksum */
146         uint64_t rx_bad_outer_l4_csum;
147         /**< received packets has bad outer l4 checksum */
148         uint64_t rx_bad_outer_ip_csum;
149         /**< received packets having bad outer ip checksum */
150 #ifdef RTE_LIB_GRO
151         unsigned int gro_times; /**< GRO operation times */
152 #endif
153         uint64_t     core_cycles; /**< used for RX and TX processing */
154         struct pkt_burst_stats rx_burst_stats;
155         struct pkt_burst_stats tx_burst_stats;
156         struct fwd_lcore *lcore; /**< Lcore being scheduled. */
157 };
158
159 /**
160  * Age action context types, must be included inside the age action
161  * context structure.
162  */
163 enum age_action_context_type {
164         ACTION_AGE_CONTEXT_TYPE_FLOW,
165         ACTION_AGE_CONTEXT_TYPE_INDIRECT_ACTION,
166 };
167
168 /** Descriptor for a single flow. */
169 struct port_flow {
170         struct port_flow *next; /**< Next flow in list. */
171         struct port_flow *tmp; /**< Temporary linking. */
172         uint32_t id; /**< Flow rule ID. */
173         struct rte_flow *flow; /**< Opaque flow object returned by PMD. */
174         struct rte_flow_conv_rule rule; /**< Saved flow rule description. */
175         enum age_action_context_type age_type; /**< Age action context type. */
176         uint8_t data[]; /**< Storage for flow rule description */
177 };
178
179 /* Descriptor for indirect action */
180 struct port_indirect_action {
181         struct port_indirect_action *next; /**< Next flow in list. */
182         uint32_t id; /**< Indirect action ID. */
183         enum rte_flow_action_type type; /**< Action type. */
184         struct rte_flow_action_handle *handle;  /**< Indirect action handle. */
185         enum age_action_context_type age_type; /**< Age action context type. */
186         /** If true, the action applies to "transfer" flows, and vice versa */
187         bool transfer;
188 };
189
190 struct port_flow_tunnel {
191         LIST_ENTRY(port_flow_tunnel) chain;
192         struct rte_flow_action *pmd_actions;
193         struct rte_flow_item   *pmd_items;
194         uint32_t id;
195         uint32_t num_pmd_actions;
196         uint32_t num_pmd_items;
197         struct rte_flow_tunnel tunnel;
198         struct rte_flow_action *actions;
199         struct rte_flow_item *items;
200 };
201
202 struct tunnel_ops {
203         uint32_t id;
204         char type[16];
205         uint32_t enabled:1;
206         uint32_t actions:1;
207         uint32_t items:1;
208 };
209
210 /** Information for an extended statistics to show. */
211 struct xstat_display_info {
212         /** Supported xstats IDs in the order of xstats_display */
213         uint64_t *ids_supp;
214         size_t   ids_supp_sz;
215         uint64_t *prev_values;
216         uint64_t *curr_values;
217         uint64_t prev_ns;
218         bool     allocated;
219 };
220
221 /**
222  * The data structure associated with each port.
223  */
224 struct rte_port {
225         struct rte_eth_dev_info dev_info;   /**< PCI info + driver name */
226         struct rte_eth_conf     dev_conf;   /**< Port configuration. */
227         struct rte_ether_addr       eth_addr;   /**< Port ethernet address */
228         struct rte_eth_stats    stats;      /**< Last port statistics */
229         unsigned int            socket_id;  /**< For NUMA support */
230         uint16_t                parse_tunnel:1; /**< Parse internal headers */
231         uint16_t                tso_segsz;  /**< Segmentation offload MSS for non-tunneled packets. */
232         uint16_t                tunnel_tso_segsz; /**< Segmentation offload MSS for tunneled pkts. */
233         uint16_t                tx_vlan_id;/**< The tag ID */
234         uint16_t                tx_vlan_id_outer;/**< The outer tag ID */
235         volatile uint16_t        port_status;    /**< port started or not */
236         uint8_t                 need_setup;     /**< port just attached */
237         uint8_t                 need_reconfig;  /**< need reconfiguring port or not */
238         uint8_t                 need_reconfig_queues; /**< need reconfiguring queues or not */
239         uint8_t                 rss_flag;   /**< enable rss or not */
240         uint8_t                 dcb_flag;   /**< enable dcb */
241         uint16_t                nb_rx_desc[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue rx desc number */
242         uint16_t                nb_tx_desc[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue tx desc number */
243         struct rte_eth_rxconf   rx_conf[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue rx configuration */
244         struct rte_eth_txconf   tx_conf[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue tx configuration */
245         struct rte_ether_addr   *mc_addr_pool; /**< pool of multicast addrs */
246         uint32_t                mc_addr_nb; /**< nb. of addr. in mc_addr_pool */
247         uint8_t                 slave_flag; /**< bonding slave port */
248         struct port_flow        *flow_list; /**< Associated flows. */
249         struct port_indirect_action *actions_list;
250         /**< Associated indirect actions. */
251         LIST_HEAD(, port_flow_tunnel) flow_tunnel_list;
252         const struct rte_eth_rxtx_callback *rx_dump_cb[RTE_MAX_QUEUES_PER_PORT+1];
253         const struct rte_eth_rxtx_callback *tx_dump_cb[RTE_MAX_QUEUES_PER_PORT+1];
254         /**< metadata value to insert in Tx packets. */
255         uint32_t                tx_metadata;
256         const struct rte_eth_rxtx_callback *tx_set_md_cb[RTE_MAX_QUEUES_PER_PORT+1];
257         /**< dynamic flags. */
258         uint64_t                mbuf_dynf;
259         const struct rte_eth_rxtx_callback *tx_set_dynf_cb[RTE_MAX_QUEUES_PER_PORT+1];
260         /** Associated port which is supposed to handle "transfer" flows */
261         portid_t                flow_transfer_proxy;
262         struct xstat_display_info xstats_info;
263 };
264
265 /**
266  * The data structure associated with each forwarding logical core.
267  * The logical cores are internally numbered by a core index from 0 to
268  * the maximum number of logical cores - 1.
269  * The system CPU identifier of all logical cores are setup in a global
270  * CPU id. configuration table.
271  */
272 struct fwd_lcore {
273 #ifdef RTE_LIB_GSO
274         struct rte_gso_ctx gso_ctx;     /**< GSO context */
275 #endif
276         struct rte_mempool *mbp; /**< The mbuf pool to use by this core */
277 #ifdef RTE_LIB_GRO
278         void *gro_ctx;          /**< GRO context */
279 #endif
280         streamid_t stream_idx;   /**< index of 1st stream in "fwd_streams" */
281         streamid_t stream_nb;    /**< number of streams in "fwd_streams" */
282         lcoreid_t  cpuid_idx;    /**< index of logical core in CPU id table */
283         volatile char stopped;   /**< stop forwarding when set */
284 };
285
286 /*
287  * Forwarding mode operations:
288  *   - IO forwarding mode (default mode)
289  *     Forwards packets unchanged.
290  *
291  *   - MAC forwarding mode
292  *     Set the source and the destination Ethernet addresses of packets
293  *     before forwarding them.
294  *
295  *   - IEEE1588 forwarding mode
296  *     Check that received IEEE1588 Precise Time Protocol (PTP) packets are
297  *     filtered and timestamped by the hardware.
298  *     Forwards packets unchanged on the same port.
299  *     Check that sent IEEE1588 PTP packets are timestamped by the hardware.
300  */
301 typedef int (*port_fwd_begin_t)(portid_t pi);
302 typedef void (*port_fwd_end_t)(portid_t pi);
303 typedef void (*packet_fwd_t)(struct fwd_stream *fs);
304
305 struct fwd_engine {
306         const char       *fwd_mode_name; /**< Forwarding mode name. */
307         port_fwd_begin_t port_fwd_begin; /**< NULL if nothing special to do. */
308         port_fwd_end_t   port_fwd_end;   /**< NULL if nothing special to do. */
309         packet_fwd_t     packet_fwd;     /**< Mandatory. */
310 };
311
312 #define FLEX_ITEM_MAX_SAMPLES_NUM 16
313 #define FLEX_ITEM_MAX_LINKS_NUM 16
314 #define FLEX_MAX_FLOW_PATTERN_LENGTH 64
315 #define FLEX_MAX_PARSERS_NUM 8
316 #define FLEX_MAX_PATTERNS_NUM 64
317 #define FLEX_PARSER_ERR ((struct flex_item *)-1)
318
319 struct flex_item {
320         struct rte_flow_item_flex_conf flex_conf;
321         struct rte_flow_item_flex_handle *flex_handle;
322         uint32_t flex_id;
323 };
324
325 struct flex_pattern {
326         struct rte_flow_item_flex spec, mask;
327         uint8_t spec_pattern[FLEX_MAX_FLOW_PATTERN_LENGTH];
328         uint8_t mask_pattern[FLEX_MAX_FLOW_PATTERN_LENGTH];
329 };
330 extern struct flex_item *flex_items[RTE_MAX_ETHPORTS][FLEX_MAX_PARSERS_NUM];
331 extern struct flex_pattern flex_patterns[FLEX_MAX_PATTERNS_NUM];
332
333 #define BURST_TX_WAIT_US 1
334 #define BURST_TX_RETRIES 64
335
336 extern uint32_t burst_tx_delay_time;
337 extern uint32_t burst_tx_retry_num;
338
339 extern struct fwd_engine io_fwd_engine;
340 extern struct fwd_engine mac_fwd_engine;
341 extern struct fwd_engine mac_swap_engine;
342 extern struct fwd_engine flow_gen_engine;
343 extern struct fwd_engine rx_only_engine;
344 extern struct fwd_engine tx_only_engine;
345 extern struct fwd_engine csum_fwd_engine;
346 extern struct fwd_engine icmp_echo_engine;
347 extern struct fwd_engine noisy_vnf_engine;
348 extern struct fwd_engine five_tuple_swap_fwd_engine;
349 #ifdef RTE_LIBRTE_IEEE1588
350 extern struct fwd_engine ieee1588_fwd_engine;
351 #endif
352 extern struct fwd_engine shared_rxq_engine;
353
354 extern struct fwd_engine * fwd_engines[]; /**< NULL terminated array. */
355 extern cmdline_parse_inst_t cmd_set_raw;
356 extern cmdline_parse_inst_t cmd_show_set_raw;
357 extern cmdline_parse_inst_t cmd_show_set_raw_all;
358 extern cmdline_parse_inst_t cmd_set_flex_is_pattern;
359 extern cmdline_parse_inst_t cmd_set_flex_spec_pattern;
360
361 extern uint16_t mempool_flags;
362
363 /**
364  * Forwarding Configuration
365  *
366  */
367 struct fwd_config {
368         struct fwd_engine *fwd_eng; /**< Packet forwarding mode. */
369         streamid_t nb_fwd_streams;  /**< Nb. of forward streams to process. */
370         lcoreid_t  nb_fwd_lcores;   /**< Nb. of logical cores to launch. */
371         portid_t   nb_fwd_ports;    /**< Nb. of ports involved. */
372 };
373
374 /**
375  * DCB mode enable
376  */
377 enum dcb_mode_enable
378 {
379         DCB_VT_ENABLED,
380         DCB_ENABLED
381 };
382
383 extern uint8_t xstats_hide_zero; /**< Hide zero values for xstats display */
384
385 /* globals used for configuration */
386 extern uint8_t record_core_cycles; /**< Enables measurement of CPU cycles */
387 extern uint8_t record_burst_stats; /**< Enables display of RX and TX bursts */
388 extern uint16_t verbose_level; /**< Drives messages being displayed, if any. */
389 extern int testpmd_logtype; /**< Log type for testpmd logs */
390 extern uint8_t  interactive;
391 extern uint8_t  auto_start;
392 extern uint8_t  tx_first;
393 extern char cmdline_filename[PATH_MAX]; /**< offline commands file */
394 extern uint8_t  numa_support; /**< set by "--numa" parameter */
395 extern uint16_t port_topology; /**< set by "--port-topology" parameter */
396 extern uint8_t no_flush_rx; /**<set by "--no-flush-rx" parameter */
397 extern uint8_t flow_isolate_all; /**< set by "--flow-isolate-all */
398 extern uint8_t  mp_alloc_type;
399 /**< set by "--mp-anon" or "--mp-alloc" parameter */
400 extern uint32_t eth_link_speed;
401 extern uint8_t no_link_check; /**<set by "--disable-link-check" parameter */
402 extern uint8_t no_device_start; /**<set by "--disable-device-start" parameter */
403 extern volatile int test_done; /* stop packet forwarding when set to 1. */
404 extern uint8_t lsc_interrupt; /**< disabled by "--no-lsc-interrupt" parameter */
405 extern uint8_t rmv_interrupt; /**< disabled by "--no-rmv-interrupt" parameter */
406 extern uint32_t event_print_mask;
407 /**< set by "--print-event xxxx" and "--mask-event xxxx parameters */
408 extern bool setup_on_probe_event; /**< disabled by port setup-on iterator */
409 extern uint8_t hot_plug; /**< enable by "--hot-plug" parameter */
410 extern int do_mlockall; /**< set by "--mlockall" or "--no-mlockall" parameter */
411 extern uint8_t clear_ptypes; /**< disabled by set ptype cmd */
412
413 #ifdef RTE_LIBRTE_IXGBE_BYPASS
414 extern uint32_t bypass_timeout; /**< Store the NIC bypass watchdog timeout */
415 #endif
416
417 /*
418  * Store specified sockets on which memory pool to be used by ports
419  * is allocated.
420  */
421 extern uint8_t port_numa[RTE_MAX_ETHPORTS];
422
423 /*
424  * Store specified sockets on which RX ring to be used by ports
425  * is allocated.
426  */
427 extern uint8_t rxring_numa[RTE_MAX_ETHPORTS];
428
429 /*
430  * Store specified sockets on which TX ring to be used by ports
431  * is allocated.
432  */
433 extern uint8_t txring_numa[RTE_MAX_ETHPORTS];
434
435 extern uint8_t socket_num;
436
437 /*
438  * Configuration of logical cores:
439  * nb_fwd_lcores <= nb_cfg_lcores <= nb_lcores
440  */
441 extern lcoreid_t nb_lcores; /**< Number of logical cores probed at init time. */
442 extern lcoreid_t nb_cfg_lcores; /**< Number of configured logical cores. */
443 extern lcoreid_t nb_fwd_lcores; /**< Number of forwarding logical cores. */
444 extern unsigned int fwd_lcores_cpuids[RTE_MAX_LCORE];
445 extern unsigned int num_sockets;
446 extern unsigned int socket_ids[RTE_MAX_NUMA_NODES];
447
448 /*
449  * Configuration of Ethernet ports:
450  * nb_fwd_ports <= nb_cfg_ports <= nb_ports
451  */
452 extern portid_t nb_ports; /**< Number of ethernet ports probed at init time. */
453 extern portid_t nb_cfg_ports; /**< Number of configured ports. */
454 extern portid_t nb_fwd_ports; /**< Number of forwarding ports. */
455 extern portid_t fwd_ports_ids[RTE_MAX_ETHPORTS];
456 extern struct rte_port *ports;
457
458 extern struct rte_eth_rxmode rx_mode;
459 extern struct rte_eth_txmode tx_mode;
460
461 extern uint64_t rss_hf;
462
463 extern queueid_t nb_hairpinq;
464 extern queueid_t nb_rxq;
465 extern queueid_t nb_txq;
466
467 extern uint16_t nb_rxd;
468 extern uint16_t nb_txd;
469
470 extern int16_t rx_free_thresh;
471 extern int8_t rx_drop_en;
472 extern int16_t tx_free_thresh;
473 extern int16_t tx_rs_thresh;
474
475 extern uint16_t noisy_tx_sw_bufsz;
476 extern uint16_t noisy_tx_sw_buf_flush_time;
477 extern uint64_t noisy_lkup_mem_sz;
478 extern uint64_t noisy_lkup_num_writes;
479 extern uint64_t noisy_lkup_num_reads;
480 extern uint64_t noisy_lkup_num_reads_writes;
481
482 extern uint8_t dcb_config;
483
484 extern uint32_t mbuf_data_size_n;
485 extern uint16_t mbuf_data_size[MAX_SEGS_BUFFER_SPLIT];
486 /**< Mbuf data space size. */
487 extern uint32_t param_total_num_mbufs;
488
489 extern uint16_t stats_period;
490
491 extern struct rte_eth_xstat_name *xstats_display;
492 extern unsigned int xstats_display_num;
493
494 extern uint16_t hairpin_mode;
495
496 #ifdef RTE_LIB_LATENCYSTATS
497 extern uint8_t latencystats_enabled;
498 extern lcoreid_t latencystats_lcore_id;
499 #endif
500
501 #ifdef RTE_LIB_BITRATESTATS
502 extern lcoreid_t bitrate_lcore_id;
503 extern uint8_t bitrate_enabled;
504 #endif
505
506 extern struct rte_eth_fdir_conf fdir_conf;
507
508 extern uint32_t max_rx_pkt_len;
509
510 /*
511  * Configuration of packet segments used to scatter received packets
512  * if some of split features is configured.
513  */
514 extern uint16_t rx_pkt_seg_lengths[MAX_SEGS_BUFFER_SPLIT];
515 extern uint8_t  rx_pkt_nb_segs; /**< Number of segments to split */
516 extern uint16_t rx_pkt_seg_offsets[MAX_SEGS_BUFFER_SPLIT];
517 extern uint8_t  rx_pkt_nb_offs; /**< Number of specified offsets */
518
519 /*
520  * Configuration of packet segments used by the "txonly" processing engine.
521  */
522 #define TXONLY_DEF_PACKET_LEN 64
523 extern uint16_t tx_pkt_length; /**< Length of TXONLY packet */
524 extern uint16_t tx_pkt_seg_lengths[RTE_MAX_SEGS_PER_PKT]; /**< Seg. lengths */
525 extern uint8_t  tx_pkt_nb_segs; /**< Number of segments in TX packets */
526 extern uint32_t tx_pkt_times_intra;
527 extern uint32_t tx_pkt_times_inter;
528
529 enum tx_pkt_split {
530         TX_PKT_SPLIT_OFF,
531         TX_PKT_SPLIT_ON,
532         TX_PKT_SPLIT_RND,
533 };
534
535 extern enum tx_pkt_split tx_pkt_split;
536
537 extern uint8_t txonly_multi_flow;
538
539 extern uint32_t rxq_share;
540
541 extern uint16_t nb_pkt_per_burst;
542 extern uint16_t nb_pkt_flowgen_clones;
543 extern int nb_flows_flowgen;
544 extern uint16_t mb_mempool_cache;
545 extern int8_t rx_pthresh;
546 extern int8_t rx_hthresh;
547 extern int8_t rx_wthresh;
548 extern int8_t tx_pthresh;
549 extern int8_t tx_hthresh;
550 extern int8_t tx_wthresh;
551
552 extern uint16_t tx_udp_src_port;
553 extern uint16_t tx_udp_dst_port;
554
555 extern uint32_t tx_ip_src_addr;
556 extern uint32_t tx_ip_dst_addr;
557
558 extern struct fwd_config cur_fwd_config;
559 extern struct fwd_engine *cur_fwd_eng;
560 extern uint32_t retry_enabled;
561 extern struct fwd_lcore  **fwd_lcores;
562 extern struct fwd_stream **fwd_streams;
563
564 extern uint16_t vxlan_gpe_udp_port; /**< UDP port of tunnel VXLAN-GPE. */
565 extern uint16_t geneve_udp_port; /**< UDP port of tunnel GENEVE. */
566
567 extern portid_t nb_peer_eth_addrs; /**< Number of peer ethernet addresses. */
568 extern struct rte_ether_addr peer_eth_addrs[RTE_MAX_ETHPORTS];
569
570 extern uint32_t burst_tx_delay_time; /**< Burst tx delay time(us) for mac-retry. */
571 extern uint32_t burst_tx_retry_num;  /**< Burst tx retry number for mac-retry. */
572
573 #ifdef RTE_LIB_GRO
574 #define GRO_DEFAULT_ITEM_NUM_PER_FLOW 32
575 #define GRO_DEFAULT_FLOW_NUM (RTE_GRO_MAX_BURST_ITEM_NUM / \
576                 GRO_DEFAULT_ITEM_NUM_PER_FLOW)
577
578 #define GRO_DEFAULT_FLUSH_CYCLES 1
579 #define GRO_MAX_FLUSH_CYCLES 4
580
581 struct gro_status {
582         struct rte_gro_param param;
583         uint8_t enable;
584 };
585 extern struct gro_status gro_ports[RTE_MAX_ETHPORTS];
586 extern uint8_t gro_flush_cycles;
587 #endif /* RTE_LIB_GRO */
588
589 #ifdef RTE_LIB_GSO
590 #define GSO_MAX_PKT_BURST 2048
591 struct gso_status {
592         uint8_t enable;
593 };
594 extern struct gso_status gso_ports[RTE_MAX_ETHPORTS];
595 extern uint16_t gso_max_segment_size;
596 #endif /* RTE_LIB_GSO */
597
598 /* VXLAN encap/decap parameters. */
599 struct vxlan_encap_conf {
600         uint32_t select_ipv4:1;
601         uint32_t select_vlan:1;
602         uint32_t select_tos_ttl:1;
603         uint8_t vni[3];
604         rte_be16_t udp_src;
605         rte_be16_t udp_dst;
606         rte_be32_t ipv4_src;
607         rte_be32_t ipv4_dst;
608         uint8_t ipv6_src[16];
609         uint8_t ipv6_dst[16];
610         rte_be16_t vlan_tci;
611         uint8_t ip_tos;
612         uint8_t ip_ttl;
613         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
614         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
615 };
616
617 extern struct vxlan_encap_conf vxlan_encap_conf;
618
619 /* NVGRE encap/decap parameters. */
620 struct nvgre_encap_conf {
621         uint32_t select_ipv4:1;
622         uint32_t select_vlan:1;
623         uint8_t tni[3];
624         rte_be32_t ipv4_src;
625         rte_be32_t ipv4_dst;
626         uint8_t ipv6_src[16];
627         uint8_t ipv6_dst[16];
628         rte_be16_t vlan_tci;
629         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
630         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
631 };
632
633 extern struct nvgre_encap_conf nvgre_encap_conf;
634
635 /* L2 encap parameters. */
636 struct l2_encap_conf {
637         uint32_t select_ipv4:1;
638         uint32_t select_vlan:1;
639         rte_be16_t vlan_tci;
640         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
641         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
642 };
643 extern struct l2_encap_conf l2_encap_conf;
644
645 /* L2 decap parameters. */
646 struct l2_decap_conf {
647         uint32_t select_vlan:1;
648 };
649 extern struct l2_decap_conf l2_decap_conf;
650
651 /* MPLSoGRE encap parameters. */
652 struct mplsogre_encap_conf {
653         uint32_t select_ipv4:1;
654         uint32_t select_vlan:1;
655         uint8_t label[3];
656         rte_be32_t ipv4_src;
657         rte_be32_t ipv4_dst;
658         uint8_t ipv6_src[16];
659         uint8_t ipv6_dst[16];
660         rte_be16_t vlan_tci;
661         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
662         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
663 };
664 extern struct mplsogre_encap_conf mplsogre_encap_conf;
665
666 /* MPLSoGRE decap parameters. */
667 struct mplsogre_decap_conf {
668         uint32_t select_ipv4:1;
669         uint32_t select_vlan:1;
670 };
671 extern struct mplsogre_decap_conf mplsogre_decap_conf;
672
673 /* MPLSoUDP encap parameters. */
674 struct mplsoudp_encap_conf {
675         uint32_t select_ipv4:1;
676         uint32_t select_vlan:1;
677         uint8_t label[3];
678         rte_be16_t udp_src;
679         rte_be16_t udp_dst;
680         rte_be32_t ipv4_src;
681         rte_be32_t ipv4_dst;
682         uint8_t ipv6_src[16];
683         uint8_t ipv6_dst[16];
684         rte_be16_t vlan_tci;
685         uint8_t eth_src[RTE_ETHER_ADDR_LEN];
686         uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
687 };
688 extern struct mplsoudp_encap_conf mplsoudp_encap_conf;
689
690 /* MPLSoUDP decap parameters. */
691 struct mplsoudp_decap_conf {
692         uint32_t select_ipv4:1;
693         uint32_t select_vlan:1;
694 };
695 extern struct mplsoudp_decap_conf mplsoudp_decap_conf;
696
697 extern enum rte_eth_rx_mq_mode rx_mq_mode;
698
699 extern struct rte_flow_action_conntrack conntrack_context;
700
701 extern int proc_id;
702 extern unsigned int num_procs;
703
704 static inline bool
705 is_proc_primary(void)
706 {
707         return rte_eal_process_type() == RTE_PROC_PRIMARY;
708 }
709
710 static inline unsigned int
711 lcore_num(void)
712 {
713         unsigned int i;
714
715         for (i = 0; i < RTE_MAX_LCORE; ++i)
716                 if (fwd_lcores_cpuids[i] == rte_lcore_id())
717                         return i;
718
719         rte_panic("lcore_id of current thread not found in fwd_lcores_cpuids\n");
720 }
721
722 void
723 parse_fwd_portlist(const char *port);
724
725 static inline struct fwd_lcore *
726 current_fwd_lcore(void)
727 {
728         return fwd_lcores[lcore_num()];
729 }
730
731 /* Mbuf Pools */
732 static inline void
733 mbuf_poolname_build(unsigned int sock_id, char *mp_name,
734                     int name_size, uint16_t idx)
735 {
736         if (!idx)
737                 snprintf(mp_name, name_size,
738                          MBUF_POOL_NAME_PFX "_%u", sock_id);
739         else
740                 snprintf(mp_name, name_size,
741                          MBUF_POOL_NAME_PFX "_%hu_%hu", (uint16_t)sock_id, idx);
742 }
743
744 static inline struct rte_mempool *
745 mbuf_pool_find(unsigned int sock_id, uint16_t idx)
746 {
747         char pool_name[RTE_MEMPOOL_NAMESIZE];
748
749         mbuf_poolname_build(sock_id, pool_name, sizeof(pool_name), idx);
750         return rte_mempool_lookup((const char *)pool_name);
751 }
752
753 /**
754  * Read/Write operations on a PCI register of a port.
755  */
756 static inline uint32_t
757 port_pci_reg_read(struct rte_port *port, uint32_t reg_off)
758 {
759         const struct rte_pci_device *pci_dev;
760         const struct rte_bus *bus;
761         void *reg_addr;
762         uint32_t reg_v;
763
764         if (!port->dev_info.device) {
765                 fprintf(stderr, "Invalid device\n");
766                 return 0;
767         }
768
769         bus = rte_bus_find_by_device(port->dev_info.device);
770         if (bus && !strcmp(bus->name, "pci")) {
771                 pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
772         } else {
773                 fprintf(stderr, "Not a PCI device\n");
774                 return 0;
775         }
776
777         reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
778         reg_v = *((volatile uint32_t *)reg_addr);
779         return rte_le_to_cpu_32(reg_v);
780 }
781
782 #define port_id_pci_reg_read(pt_id, reg_off) \
783         port_pci_reg_read(&ports[(pt_id)], (reg_off))
784
785 static inline void
786 port_pci_reg_write(struct rte_port *port, uint32_t reg_off, uint32_t reg_v)
787 {
788         const struct rte_pci_device *pci_dev;
789         const struct rte_bus *bus;
790         void *reg_addr;
791
792         if (!port->dev_info.device) {
793                 fprintf(stderr, "Invalid device\n");
794                 return;
795         }
796
797         bus = rte_bus_find_by_device(port->dev_info.device);
798         if (bus && !strcmp(bus->name, "pci")) {
799                 pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
800         } else {
801                 fprintf(stderr, "Not a PCI device\n");
802                 return;
803         }
804
805         reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
806         *((volatile uint32_t *)reg_addr) = rte_cpu_to_le_32(reg_v);
807 }
808
809 #define port_id_pci_reg_write(pt_id, reg_off, reg_value) \
810         port_pci_reg_write(&ports[(pt_id)], (reg_off), (reg_value))
811
812 static inline void
813 get_start_cycles(uint64_t *start_tsc)
814 {
815         if (record_core_cycles)
816                 *start_tsc = rte_rdtsc();
817 }
818
819 static inline void
820 get_end_cycles(struct fwd_stream *fs, uint64_t start_tsc)
821 {
822         if (record_core_cycles)
823                 fs->core_cycles += rte_rdtsc() - start_tsc;
824 }
825
826 static inline void
827 inc_rx_burst_stats(struct fwd_stream *fs, uint16_t nb_rx)
828 {
829         if (record_burst_stats)
830                 fs->rx_burst_stats.pkt_burst_spread[nb_rx]++;
831 }
832
833 static inline void
834 inc_tx_burst_stats(struct fwd_stream *fs, uint16_t nb_tx)
835 {
836         if (record_burst_stats)
837                 fs->tx_burst_stats.pkt_burst_spread[nb_tx]++;
838 }
839
840 /* Prototypes */
841 unsigned int parse_item_list(const char *str, const char *item_name,
842                         unsigned int max_items,
843                         unsigned int *parsed_items, int check_unique_values);
844 void launch_args_parse(int argc, char** argv);
845 void cmdline_read_from_file(const char *filename);
846 void prompt(void);
847 void prompt_exit(void);
848 void nic_stats_display(portid_t port_id);
849 void nic_stats_clear(portid_t port_id);
850 void nic_xstats_display(portid_t port_id);
851 void nic_xstats_clear(portid_t port_id);
852 void device_infos_display(const char *identifier);
853 void port_infos_display(portid_t port_id);
854 void port_summary_display(portid_t port_id);
855 void port_eeprom_display(portid_t port_id);
856 void port_module_eeprom_display(portid_t port_id);
857 void port_summary_header_display(void);
858 void rx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
859 void tx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
860 void fwd_lcores_config_display(void);
861 bool pkt_fwd_shared_rxq_check(void);
862 void pkt_fwd_config_display(struct fwd_config *cfg);
863 void rxtx_config_display(void);
864 void fwd_config_setup(void);
865 void set_def_fwd_config(void);
866 void reconfig(portid_t new_port_id, unsigned socket_id);
867 int init_fwd_streams(void);
868 void update_fwd_ports(portid_t new_pid);
869
870 void set_fwd_eth_peer(portid_t port_id, char *peer_addr);
871
872 void port_mtu_set(portid_t port_id, uint16_t mtu);
873 void port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_pos);
874 void port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
875                       uint8_t bit_v);
876 void port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
877                                 uint8_t bit1_pos, uint8_t bit2_pos);
878 void port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
879                             uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value);
880 void port_reg_display(portid_t port_id, uint32_t reg_off);
881 void port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t value);
882 int port_action_handle_create(portid_t port_id, uint32_t id,
883                               const struct rte_flow_indir_action_conf *conf,
884                               const struct rte_flow_action *action);
885 int port_action_handle_destroy(portid_t port_id,
886                                uint32_t n, const uint32_t *action);
887 struct rte_flow_action_handle *port_action_handle_get_by_id(portid_t port_id,
888                                                             uint32_t id);
889 int port_action_handle_update(portid_t port_id, uint32_t id,
890                               const struct rte_flow_action *action);
891 int port_flow_validate(portid_t port_id,
892                        const struct rte_flow_attr *attr,
893                        const struct rte_flow_item *pattern,
894                        const struct rte_flow_action *actions,
895                        const struct tunnel_ops *tunnel_ops);
896 int port_flow_create(portid_t port_id,
897                      const struct rte_flow_attr *attr,
898                      const struct rte_flow_item *pattern,
899                      const struct rte_flow_action *actions,
900                      const struct tunnel_ops *tunnel_ops);
901 int port_action_handle_query(portid_t port_id, uint32_t id);
902 void update_age_action_context(const struct rte_flow_action *actions,
903                      struct port_flow *pf);
904 int port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule);
905 int port_flow_flush(portid_t port_id);
906 int port_flow_dump(portid_t port_id, bool dump_all,
907                         uint32_t rule, const char *file_name);
908 int port_flow_query(portid_t port_id, uint32_t rule,
909                     const struct rte_flow_action *action);
910 void port_flow_list(portid_t port_id, uint32_t n, const uint32_t *group);
911 void port_flow_aged(portid_t port_id, uint8_t destroy);
912 const char *port_flow_tunnel_type(struct rte_flow_tunnel *tunnel);
913 struct port_flow_tunnel *
914 port_flow_locate_tunnel(uint16_t port_id, struct rte_flow_tunnel *tun);
915 void port_flow_tunnel_list(portid_t port_id);
916 void port_flow_tunnel_destroy(portid_t port_id, uint32_t tunnel_id);
917 void port_flow_tunnel_create(portid_t port_id, const struct tunnel_ops *ops);
918 int port_flow_isolate(portid_t port_id, int set);
919 int port_meter_policy_add(portid_t port_id, uint32_t policy_id,
920                 const struct rte_flow_action *actions);
921
922 void rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id);
923 void tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id);
924
925 int set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc);
926 int set_fwd_lcores_mask(uint64_t lcoremask);
927 void set_fwd_lcores_number(uint16_t nb_lc);
928
929 void set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt);
930 void set_fwd_ports_mask(uint64_t portmask);
931 void set_fwd_ports_number(uint16_t nb_pt);
932 int port_is_forwarding(portid_t port_id);
933
934 void rx_vlan_strip_set(portid_t port_id, int on);
935 void rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on);
936
937 void rx_vlan_filter_set(portid_t port_id, int on);
938 void rx_vlan_all_filter_set(portid_t port_id, int on);
939 void rx_vlan_qinq_strip_set(portid_t port_id, int on);
940 int rx_vft_set(portid_t port_id, uint16_t vlan_id, int on);
941 void vlan_extend_set(portid_t port_id, int on);
942 void vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type,
943                    uint16_t tp_id);
944 void tx_vlan_set(portid_t port_id, uint16_t vlan_id);
945 void tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer);
946 void tx_vlan_reset(portid_t port_id);
947 void tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on);
948
949 void set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value);
950
951 void set_xstats_hide_zero(uint8_t on_off);
952
953 void set_record_core_cycles(uint8_t on_off);
954 void set_record_burst_stats(uint8_t on_off);
955 void set_verbose_level(uint16_t vb_level);
956 void set_rx_pkt_segments(unsigned int *seg_lengths, unsigned int nb_segs);
957 void show_rx_pkt_segments(void);
958 void set_rx_pkt_offsets(unsigned int *seg_offsets, unsigned int nb_offs);
959 void show_rx_pkt_offsets(void);
960 void set_tx_pkt_segments(unsigned int *seg_lengths, unsigned int nb_segs);
961 void show_tx_pkt_segments(void);
962 void set_tx_pkt_times(unsigned int *tx_times);
963 void show_tx_pkt_times(void);
964 void set_tx_pkt_split(const char *name);
965 int parse_fec_mode(const char *name, uint32_t *fec_capa);
966 void show_fec_capability(uint32_t num, struct rte_eth_fec_capa *speed_fec_capa);
967 void set_nb_pkt_per_burst(uint16_t pkt_burst);
968 char *list_pkt_forwarding_modes(void);
969 char *list_pkt_forwarding_retry_modes(void);
970 void set_pkt_forwarding_mode(const char *fwd_mode);
971 void start_packet_forwarding(int with_tx_first);
972 void fwd_stats_display(void);
973 void fwd_stats_reset(void);
974 void stop_packet_forwarding(void);
975 void dev_set_link_up(portid_t pid);
976 void dev_set_link_down(portid_t pid);
977 void init_port_config(void);
978 void set_port_slave_flag(portid_t slave_pid);
979 void clear_port_slave_flag(portid_t slave_pid);
980 uint8_t port_is_bonding_slave(portid_t slave_pid);
981
982 int init_port_dcb_config(portid_t pid, enum dcb_mode_enable dcb_mode,
983                      enum rte_eth_nb_tcs num_tcs,
984                      uint8_t pfc_en);
985 int start_port(portid_t pid);
986 void stop_port(portid_t pid);
987 void close_port(portid_t pid);
988 void reset_port(portid_t pid);
989 void attach_port(char *identifier);
990 void detach_devargs(char *identifier);
991 void detach_port_device(portid_t port_id);
992 int all_ports_stopped(void);
993 int port_is_stopped(portid_t port_id);
994 int port_is_started(portid_t port_id);
995 void pmd_test_exit(void);
996 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
997 void fdir_get_infos(portid_t port_id);
998 #endif
999 void fdir_set_flex_mask(portid_t port_id,
1000                            struct rte_eth_fdir_flex_mask *cfg);
1001 void fdir_set_flex_payload(portid_t port_id,
1002                            struct rte_eth_flex_payload_cfg *cfg);
1003 void port_rss_reta_info(portid_t port_id,
1004                         struct rte_eth_rss_reta_entry64 *reta_conf,
1005                         uint16_t nb_entries);
1006
1007 void set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on);
1008
1009 int
1010 rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
1011                uint16_t nb_rx_desc, unsigned int socket_id,
1012                struct rte_eth_rxconf *rx_conf, struct rte_mempool *mp);
1013
1014 int set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate);
1015 int set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate,
1016                                 uint64_t q_msk);
1017
1018 void port_rss_hash_conf_show(portid_t port_id, int show_rss_key);
1019 void port_rss_hash_key_update(portid_t port_id, char rss_type[],
1020                               uint8_t *hash_key, uint8_t hash_key_len);
1021 int rx_queue_id_is_invalid(queueid_t rxq_id);
1022 int tx_queue_id_is_invalid(queueid_t txq_id);
1023 #ifdef RTE_LIB_GRO
1024 void setup_gro(const char *onoff, portid_t port_id);
1025 void setup_gro_flush_cycles(uint8_t cycles);
1026 void show_gro(portid_t port_id);
1027 #endif
1028 #ifdef RTE_LIB_GSO
1029 void setup_gso(const char *mode, portid_t port_id);
1030 #endif
1031 int eth_dev_info_get_print_err(uint16_t port_id,
1032                         struct rte_eth_dev_info *dev_info);
1033 int eth_dev_conf_get_print_err(uint16_t port_id,
1034                         struct rte_eth_conf *dev_conf);
1035 void eth_set_promisc_mode(uint16_t port_id, int enable);
1036 void eth_set_allmulticast_mode(uint16_t port, int enable);
1037 int eth_link_get_nowait_print_err(uint16_t port_id, struct rte_eth_link *link);
1038 int eth_macaddr_get_print_err(uint16_t port_id,
1039                         struct rte_ether_addr *mac_addr);
1040
1041 /* Functions to display the set of MAC addresses added to a port*/
1042 void show_macs(portid_t port_id);
1043 void show_mcast_macs(portid_t port_id);
1044
1045 /* Functions to manage the set of filtered Multicast MAC addresses */
1046 void mcast_addr_add(portid_t port_id, struct rte_ether_addr *mc_addr);
1047 void mcast_addr_remove(portid_t port_id, struct rte_ether_addr *mc_addr);
1048 void port_dcb_info_display(portid_t port_id);
1049
1050 uint8_t *open_file(const char *file_path, uint32_t *size);
1051 int save_file(const char *file_path, uint8_t *buf, uint32_t size);
1052 int close_file(uint8_t *buf);
1053
1054 void port_queue_region_info_display(portid_t port_id, void *buf);
1055
1056 enum print_warning {
1057         ENABLED_WARN = 0,
1058         DISABLED_WARN
1059 };
1060 int port_id_is_invalid(portid_t port_id, enum print_warning warning);
1061 void print_valid_ports(void);
1062 int new_socket_id(unsigned int socket_id);
1063
1064 queueid_t get_allowed_max_nb_rxq(portid_t *pid);
1065 int check_nb_rxq(queueid_t rxq);
1066 queueid_t get_allowed_max_nb_txq(portid_t *pid);
1067 int check_nb_txq(queueid_t txq);
1068 int check_nb_rxd(queueid_t rxd);
1069 int check_nb_txd(queueid_t txd);
1070 queueid_t get_allowed_max_nb_hairpinq(portid_t *pid);
1071 int check_nb_hairpinq(queueid_t hairpinq);
1072
1073 uint16_t dump_rx_pkts(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
1074                       uint16_t nb_pkts, __rte_unused uint16_t max_pkts,
1075                       __rte_unused void *user_param);
1076
1077 uint16_t dump_tx_pkts(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
1078                       uint16_t nb_pkts, __rte_unused void *user_param);
1079
1080 void add_rx_dump_callbacks(portid_t portid);
1081 void remove_rx_dump_callbacks(portid_t portid);
1082 void add_tx_dump_callbacks(portid_t portid);
1083 void remove_tx_dump_callbacks(portid_t portid);
1084 void configure_rxtx_dump_callbacks(uint16_t verbose);
1085
1086 uint16_t tx_pkt_set_md(uint16_t port_id, __rte_unused uint16_t queue,
1087                        struct rte_mbuf *pkts[], uint16_t nb_pkts,
1088                        __rte_unused void *user_param);
1089 void add_tx_md_callback(portid_t portid);
1090 void remove_tx_md_callback(portid_t portid);
1091
1092 uint16_t tx_pkt_set_dynf(uint16_t port_id, __rte_unused uint16_t queue,
1093                          struct rte_mbuf *pkts[], uint16_t nb_pkts,
1094                          __rte_unused void *user_param);
1095 void add_tx_dynf_callback(portid_t portid);
1096 void remove_tx_dynf_callback(portid_t portid);
1097 int update_mtu_from_frame_size(portid_t portid, uint32_t max_rx_pktlen);
1098 int update_jumbo_frame_offload(portid_t portid);
1099 void flex_item_create(portid_t port_id, uint16_t flex_id, const char *filename);
1100 void flex_item_destroy(portid_t port_id, uint16_t flex_id);
1101 void port_flex_item_flush(portid_t port_id);
1102
1103 extern int flow_parse(const char *src, void *result, unsigned int size,
1104                       struct rte_flow_attr **attr,
1105                       struct rte_flow_item **pattern,
1106                       struct rte_flow_action **actions);
1107
1108 /*
1109  * Work-around of a compilation error with ICC on invocations of the
1110  * rte_be_to_cpu_16() function.
1111  */
1112 #ifdef __GCC__
1113 #define RTE_BE_TO_CPU_16(be_16_v)  rte_be_to_cpu_16((be_16_v))
1114 #define RTE_CPU_TO_BE_16(cpu_16_v) rte_cpu_to_be_16((cpu_16_v))
1115 #else
1116 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1117 #define RTE_BE_TO_CPU_16(be_16_v)  (be_16_v)
1118 #define RTE_CPU_TO_BE_16(cpu_16_v) (cpu_16_v)
1119 #else
1120 #define RTE_BE_TO_CPU_16(be_16_v) \
1121         (uint16_t) ((((be_16_v) & 0xFF) << 8) | ((be_16_v) >> 8))
1122 #define RTE_CPU_TO_BE_16(cpu_16_v) \
1123         (uint16_t) ((((cpu_16_v) & 0xFF) << 8) | ((cpu_16_v) >> 8))
1124 #endif
1125 #endif /* __GCC__ */
1126
1127 #define TESTPMD_LOG(level, fmt, args...) \
1128         rte_log(RTE_LOG_ ## level, testpmd_logtype, "testpmd: " fmt, ## args)
1129
1130 #endif /* _TESTPMD_H_ */