app/testpmd: fix missing RSS fields in flow action
[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 <rte_pci.h>
9 #include <rte_bus_pci.h>
10 #include <rte_gro.h>
11 #include <rte_gso.h>
12
13 #define RTE_PORT_ALL            (~(portid_t)0x0)
14
15 #define RTE_TEST_RX_DESC_MAX    2048
16 #define RTE_TEST_TX_DESC_MAX    2048
17
18 #define RTE_PORT_STOPPED        (uint16_t)0
19 #define RTE_PORT_STARTED        (uint16_t)1
20 #define RTE_PORT_CLOSED         (uint16_t)2
21 #define RTE_PORT_HANDLING       (uint16_t)3
22
23 /*
24  * It is used to allocate the memory for hash key.
25  * The hash key size is NIC dependent.
26  */
27 #define RSS_HASH_KEY_LENGTH 64
28
29 /*
30  * Default size of the mbuf data buffer to receive standard 1518-byte
31  * Ethernet frames in a mono-segment memory buffer.
32  */
33 #define DEFAULT_MBUF_DATA_SIZE RTE_MBUF_DEFAULT_BUF_SIZE
34 /**< Default size of mbuf data buffer. */
35
36 /*
37  * The maximum number of segments per packet is used when creating
38  * scattered transmit packets composed of a list of mbufs.
39  */
40 #define RTE_MAX_SEGS_PER_PKT 255 /**< nb_segs is a 8-bit unsigned char. */
41
42 #define MAX_PKT_BURST 512
43 #define DEF_PKT_BURST 32
44
45 #define DEF_MBUF_CACHE 250
46
47 #define RTE_CACHE_LINE_SIZE_ROUNDUP(size) \
48         (RTE_CACHE_LINE_SIZE * ((size + RTE_CACHE_LINE_SIZE - 1) / RTE_CACHE_LINE_SIZE))
49
50 #define NUMA_NO_CONFIG 0xFF
51 #define UMA_NO_CONFIG  0xFF
52
53 typedef uint8_t  lcoreid_t;
54 typedef uint16_t portid_t;
55 typedef uint16_t queueid_t;
56 typedef uint16_t streamid_t;
57
58 #define MAX_QUEUE_ID ((1 << (sizeof(queueid_t) * 8)) - 1)
59
60 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED
61 #define TM_MODE                 1
62 #else
63 #define TM_MODE                 0
64 #endif
65
66 enum {
67         PORT_TOPOLOGY_PAIRED,
68         PORT_TOPOLOGY_CHAINED,
69         PORT_TOPOLOGY_LOOP,
70 };
71
72 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
73 /**
74  * The data structure associated with RX and TX packet burst statistics
75  * that are recorded for each forwarding stream.
76  */
77 struct pkt_burst_stats {
78         unsigned int pkt_burst_spread[MAX_PKT_BURST];
79 };
80 #endif
81
82 /** Information for a given RSS type. */
83 struct rss_type_info {
84         const char *str; /**< Type name. */
85         uint64_t rss_type; /**< Type value. */
86 };
87
88 /**
89  * RSS type information table.
90  *
91  * An entry with a NULL type name terminates the list.
92  */
93 extern const struct rss_type_info rss_type_table[];
94
95 /**
96  * The data structure associated with a forwarding stream between a receive
97  * port/queue and a transmit port/queue.
98  */
99 struct fwd_stream {
100         /* "read-only" data */
101         portid_t   rx_port;   /**< port to poll for received packets */
102         queueid_t  rx_queue;  /**< RX queue to poll on "rx_port" */
103         portid_t   tx_port;   /**< forwarding port of received packets */
104         queueid_t  tx_queue;  /**< TX queue to send forwarded packets */
105         streamid_t peer_addr; /**< index of peer ethernet address of packets */
106
107         unsigned int retry_enabled;
108
109         /* "read-write" results */
110         unsigned int rx_packets;  /**< received packets */
111         unsigned int tx_packets;  /**< received packets transmitted */
112         unsigned int fwd_dropped; /**< received packets not forwarded */
113         unsigned int rx_bad_ip_csum ; /**< received packets has bad ip checksum */
114         unsigned int rx_bad_l4_csum ; /**< received packets has bad l4 checksum */
115         unsigned int gro_times; /**< GRO operation times */
116 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
117         uint64_t     core_cycles; /**< used for RX and TX processing */
118 #endif
119 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
120         struct pkt_burst_stats rx_burst_stats;
121         struct pkt_burst_stats tx_burst_stats;
122 #endif
123 };
124
125 /** Descriptor for a single flow. */
126 struct port_flow {
127         size_t size; /**< Allocated space including data[]. */
128         struct port_flow *next; /**< Next flow in list. */
129         struct port_flow *tmp; /**< Temporary linking. */
130         uint32_t id; /**< Flow rule ID. */
131         struct rte_flow *flow; /**< Opaque flow object returned by PMD. */
132         struct rte_flow_attr attr; /**< Attributes. */
133         struct rte_flow_item *pattern; /**< Pattern. */
134         struct rte_flow_action *actions; /**< Actions. */
135         uint8_t data[]; /**< Storage for pattern/actions. */
136 };
137
138 #ifdef TM_MODE
139 /**
140  * Soft port tm related parameters
141  */
142 struct softnic_port_tm {
143         uint32_t default_hierarchy_enable; /**< def hierarchy enable flag */
144         uint32_t hierarchy_config;  /**< set to 1 if hierarchy configured */
145
146         uint32_t n_subports_per_port;  /**< Num of subport nodes per port */
147         uint32_t n_pipes_per_subport;  /**< Num of pipe nodes per subport */
148
149         uint64_t tm_pktfield0_slabpos;  /**< Pkt field position for subport */
150         uint64_t tm_pktfield0_slabmask; /**< Pkt field mask for the subport */
151         uint64_t tm_pktfield0_slabshr;
152         uint64_t tm_pktfield1_slabpos; /**< Pkt field position for the pipe */
153         uint64_t tm_pktfield1_slabmask; /**< Pkt field mask for the pipe */
154         uint64_t tm_pktfield1_slabshr;
155         uint64_t tm_pktfield2_slabpos; /**< Pkt field position table index */
156         uint64_t tm_pktfield2_slabmask; /**< Pkt field mask for tc table idx */
157         uint64_t tm_pktfield2_slabshr;
158         uint64_t tm_tc_table[64];  /**< TC translation table */
159 };
160
161 /**
162  * The data structure associate with softnic port
163  */
164 struct softnic_port {
165         unsigned int tm_flag;   /**< set to 1 if tm feature is enabled */
166         struct softnic_port_tm tm;      /**< softnic port tm parameters */
167 };
168 #endif
169
170 /**
171  * The data structure associated with each port.
172  */
173 struct rte_port {
174         struct rte_eth_dev_info dev_info;   /**< PCI info + driver name */
175         struct rte_eth_conf     dev_conf;   /**< Port configuration. */
176         struct ether_addr       eth_addr;   /**< Port ethernet address */
177         struct rte_eth_stats    stats;      /**< Last port statistics */
178         uint64_t                tx_dropped; /**< If no descriptor in TX ring */
179         struct fwd_stream       *rx_stream; /**< Port RX stream, if unique */
180         struct fwd_stream       *tx_stream; /**< Port TX stream, if unique */
181         unsigned int            socket_id;  /**< For NUMA support */
182         uint16_t                parse_tunnel:1; /**< Parse internal headers */
183         uint16_t                tso_segsz;  /**< Segmentation offload MSS for non-tunneled packets. */
184         uint16_t                tunnel_tso_segsz; /**< Segmentation offload MSS for tunneled pkts. */
185         uint16_t                tx_vlan_id;/**< The tag ID */
186         uint16_t                tx_vlan_id_outer;/**< The outer tag ID */
187         void                    *fwd_ctx;   /**< Forwarding mode context */
188         uint64_t                rx_bad_ip_csum; /**< rx pkts with bad ip checksum  */
189         uint64_t                rx_bad_l4_csum; /**< rx pkts with bad l4 checksum */
190         uint8_t                 tx_queue_stats_mapping_enabled;
191         uint8_t                 rx_queue_stats_mapping_enabled;
192         volatile uint16_t        port_status;    /**< port started or not */
193         uint8_t                 need_reconfig;  /**< need reconfiguring port or not */
194         uint8_t                 need_reconfig_queues; /**< need reconfiguring queues or not */
195         uint8_t                 rss_flag;   /**< enable rss or not */
196         uint8_t                 dcb_flag;   /**< enable dcb */
197         struct rte_eth_rxconf   rx_conf;    /**< rx configuration */
198         struct rte_eth_txconf   tx_conf;    /**< tx configuration */
199         struct ether_addr       *mc_addr_pool; /**< pool of multicast addrs */
200         uint32_t                mc_addr_nb; /**< nb. of addr. in mc_addr_pool */
201         uint8_t                 slave_flag; /**< bonding slave port */
202         struct port_flow        *flow_list; /**< Associated flows. */
203 #ifdef TM_MODE
204         unsigned int                    softnic_enable; /**< softnic flag */
205         struct softnic_port     softport;  /**< softnic port params */
206 #endif
207 };
208
209 /**
210  * The data structure associated with each forwarding logical core.
211  * The logical cores are internally numbered by a core index from 0 to
212  * the maximum number of logical cores - 1.
213  * The system CPU identifier of all logical cores are setup in a global
214  * CPU id. configuration table.
215  */
216 struct fwd_lcore {
217         struct rte_gso_ctx gso_ctx;     /**< GSO context */
218         struct rte_mempool *mbp; /**< The mbuf pool to use by this core */
219         void *gro_ctx;          /**< GRO context */
220         streamid_t stream_idx;   /**< index of 1st stream in "fwd_streams" */
221         streamid_t stream_nb;    /**< number of streams in "fwd_streams" */
222         lcoreid_t  cpuid_idx;    /**< index of logical core in CPU id table */
223         queueid_t  tx_queue;     /**< TX queue to send forwarded packets */
224         volatile char stopped;   /**< stop forwarding when set */
225 };
226
227 /*
228  * Forwarding mode operations:
229  *   - IO forwarding mode (default mode)
230  *     Forwards packets unchanged.
231  *
232  *   - MAC forwarding mode
233  *     Set the source and the destination Ethernet addresses of packets
234  *     before forwarding them.
235  *
236  *   - IEEE1588 forwarding mode
237  *     Check that received IEEE1588 Precise Time Protocol (PTP) packets are
238  *     filtered and timestamped by the hardware.
239  *     Forwards packets unchanged on the same port.
240  *     Check that sent IEEE1588 PTP packets are timestamped by the hardware.
241  */
242 typedef void (*port_fwd_begin_t)(portid_t pi);
243 typedef void (*port_fwd_end_t)(portid_t pi);
244 typedef void (*packet_fwd_t)(struct fwd_stream *fs);
245
246 struct fwd_engine {
247         const char       *fwd_mode_name; /**< Forwarding mode name. */
248         port_fwd_begin_t port_fwd_begin; /**< NULL if nothing special to do. */
249         port_fwd_end_t   port_fwd_end;   /**< NULL if nothing special to do. */
250         packet_fwd_t     packet_fwd;     /**< Mandatory. */
251 };
252
253 #define BURST_TX_WAIT_US 1
254 #define BURST_TX_RETRIES 64
255
256 extern uint32_t burst_tx_delay_time;
257 extern uint32_t burst_tx_retry_num;
258
259 extern struct fwd_engine io_fwd_engine;
260 extern struct fwd_engine mac_fwd_engine;
261 extern struct fwd_engine mac_swap_engine;
262 extern struct fwd_engine flow_gen_engine;
263 extern struct fwd_engine rx_only_engine;
264 extern struct fwd_engine tx_only_engine;
265 extern struct fwd_engine csum_fwd_engine;
266 extern struct fwd_engine icmp_echo_engine;
267 #ifdef TM_MODE
268 extern struct fwd_engine softnic_tm_engine;
269 extern struct fwd_engine softnic_tm_bypass_engine;
270 #endif
271 #ifdef RTE_LIBRTE_IEEE1588
272 extern struct fwd_engine ieee1588_fwd_engine;
273 #endif
274
275 extern struct fwd_engine * fwd_engines[]; /**< NULL terminated array. */
276
277 /**
278  * Forwarding Configuration
279  *
280  */
281 struct fwd_config {
282         struct fwd_engine *fwd_eng; /**< Packet forwarding mode. */
283         streamid_t nb_fwd_streams;  /**< Nb. of forward streams to process. */
284         lcoreid_t  nb_fwd_lcores;   /**< Nb. of logical cores to launch. */
285         portid_t   nb_fwd_ports;    /**< Nb. of ports involved. */
286 };
287
288 /**
289  * DCB mode enable
290  */
291 enum dcb_mode_enable
292 {
293         DCB_VT_ENABLED,
294         DCB_ENABLED
295 };
296
297 #define MAX_TX_QUEUE_STATS_MAPPINGS 1024 /* MAX_PORT of 32 @ 32 tx_queues/port */
298 #define MAX_RX_QUEUE_STATS_MAPPINGS 4096 /* MAX_PORT of 32 @ 128 rx_queues/port */
299
300 struct queue_stats_mappings {
301         portid_t port_id;
302         uint16_t queue_id;
303         uint8_t stats_counter_id;
304 } __rte_cache_aligned;
305
306 extern struct queue_stats_mappings tx_queue_stats_mappings_array[];
307 extern struct queue_stats_mappings rx_queue_stats_mappings_array[];
308
309 /* Assign both tx and rx queue stats mappings to the same default values */
310 extern struct queue_stats_mappings *tx_queue_stats_mappings;
311 extern struct queue_stats_mappings *rx_queue_stats_mappings;
312
313 extern uint16_t nb_tx_queue_stats_mappings;
314 extern uint16_t nb_rx_queue_stats_mappings;
315
316 extern uint8_t xstats_hide_zero; /**< Hide zero values for xstats display */
317
318 /* globals used for configuration */
319 extern uint16_t verbose_level; /**< Drives messages being displayed, if any. */
320 extern int testpmd_logtype; /**< Log type for testpmd logs */
321 extern uint8_t  interactive;
322 extern uint8_t  auto_start;
323 extern uint8_t  tx_first;
324 extern char cmdline_filename[PATH_MAX]; /**< offline commands file */
325 extern uint8_t  numa_support; /**< set by "--numa" parameter */
326 extern uint16_t port_topology; /**< set by "--port-topology" parameter */
327 extern uint8_t no_flush_rx; /**<set by "--no-flush-rx" parameter */
328 extern uint8_t flow_isolate_all; /**< set by "--flow-isolate-all */
329 extern uint8_t  mp_anon; /**< set by "--mp-anon" parameter */
330 extern uint8_t no_link_check; /**<set by "--disable-link-check" parameter */
331 extern volatile int test_done; /* stop packet forwarding when set to 1. */
332 extern uint8_t lsc_interrupt; /**< disabled by "--no-lsc-interrupt" parameter */
333 extern uint8_t rmv_interrupt; /**< disabled by "--no-rmv-interrupt" parameter */
334 extern uint32_t event_print_mask;
335 extern uint8_t hot_plug; /**< enable by "--hot-plug" parameter */
336
337 /**< set by "--print-event xxxx" and "--mask-event xxxx parameters */
338
339 #ifdef RTE_LIBRTE_IXGBE_BYPASS
340 extern uint32_t bypass_timeout; /**< Store the NIC bypass watchdog timeout */
341 #endif
342
343 /*
344  * Store specified sockets on which memory pool to be used by ports
345  * is allocated.
346  */
347 extern uint8_t port_numa[RTE_MAX_ETHPORTS];
348
349 /*
350  * Store specified sockets on which RX ring to be used by ports
351  * is allocated.
352  */
353 extern uint8_t rxring_numa[RTE_MAX_ETHPORTS];
354
355 /*
356  * Store specified sockets on which TX ring to be used by ports
357  * is allocated.
358  */
359 extern uint8_t txring_numa[RTE_MAX_ETHPORTS];
360
361 extern uint8_t socket_num;
362
363 /*
364  * Configuration of logical cores:
365  * nb_fwd_lcores <= nb_cfg_lcores <= nb_lcores
366  */
367 extern lcoreid_t nb_lcores; /**< Number of logical cores probed at init time. */
368 extern lcoreid_t nb_cfg_lcores; /**< Number of configured logical cores. */
369 extern lcoreid_t nb_fwd_lcores; /**< Number of forwarding logical cores. */
370 extern unsigned int fwd_lcores_cpuids[RTE_MAX_LCORE];
371 extern unsigned int num_sockets;
372 extern unsigned int socket_ids[RTE_MAX_NUMA_NODES];
373
374 /*
375  * Configuration of Ethernet ports:
376  * nb_fwd_ports <= nb_cfg_ports <= nb_ports
377  */
378 extern portid_t nb_ports; /**< Number of ethernet ports probed at init time. */
379 extern portid_t nb_cfg_ports; /**< Number of configured ports. */
380 extern portid_t nb_fwd_ports; /**< Number of forwarding ports. */
381 extern portid_t fwd_ports_ids[RTE_MAX_ETHPORTS];
382 extern struct rte_port *ports;
383
384 extern struct rte_eth_rxmode rx_mode;
385 extern struct rte_eth_txmode tx_mode;
386
387 extern uint64_t rss_hf;
388
389 extern queueid_t nb_rxq;
390 extern queueid_t nb_txq;
391
392 extern uint16_t nb_rxd;
393 extern uint16_t nb_txd;
394
395 extern int16_t rx_free_thresh;
396 extern int8_t rx_drop_en;
397 extern int16_t tx_free_thresh;
398 extern int16_t tx_rs_thresh;
399
400 extern uint8_t dcb_config;
401 extern uint8_t dcb_test;
402
403 extern uint16_t mbuf_data_size; /**< Mbuf data space size. */
404 extern uint32_t param_total_num_mbufs;
405
406 extern uint16_t stats_period;
407
408 #ifdef RTE_LIBRTE_LATENCY_STATS
409 extern uint8_t latencystats_enabled;
410 extern lcoreid_t latencystats_lcore_id;
411 #endif
412
413 #ifdef RTE_LIBRTE_BITRATE
414 extern lcoreid_t bitrate_lcore_id;
415 extern uint8_t bitrate_enabled;
416 #endif
417
418 extern struct rte_fdir_conf fdir_conf;
419
420 /*
421  * Configuration of packet segments used by the "txonly" processing engine.
422  */
423 #define TXONLY_DEF_PACKET_LEN 64
424 extern uint16_t tx_pkt_length; /**< Length of TXONLY packet */
425 extern uint16_t tx_pkt_seg_lengths[RTE_MAX_SEGS_PER_PKT]; /**< Seg. lengths */
426 extern uint8_t  tx_pkt_nb_segs; /**< Number of segments in TX packets */
427
428 enum tx_pkt_split {
429         TX_PKT_SPLIT_OFF,
430         TX_PKT_SPLIT_ON,
431         TX_PKT_SPLIT_RND,
432 };
433
434 extern enum tx_pkt_split tx_pkt_split;
435
436 extern uint16_t nb_pkt_per_burst;
437 extern uint16_t mb_mempool_cache;
438 extern int8_t rx_pthresh;
439 extern int8_t rx_hthresh;
440 extern int8_t rx_wthresh;
441 extern int8_t tx_pthresh;
442 extern int8_t tx_hthresh;
443 extern int8_t tx_wthresh;
444
445 extern struct fwd_config cur_fwd_config;
446 extern struct fwd_engine *cur_fwd_eng;
447 extern uint32_t retry_enabled;
448 extern struct fwd_lcore  **fwd_lcores;
449 extern struct fwd_stream **fwd_streams;
450
451 extern portid_t nb_peer_eth_addrs; /**< Number of peer ethernet addresses. */
452 extern struct ether_addr peer_eth_addrs[RTE_MAX_ETHPORTS];
453
454 extern uint32_t burst_tx_delay_time; /**< Burst tx delay time(us) for mac-retry. */
455 extern uint32_t burst_tx_retry_num;  /**< Burst tx retry number for mac-retry. */
456
457 #define GRO_DEFAULT_ITEM_NUM_PER_FLOW 32
458 #define GRO_DEFAULT_FLOW_NUM (RTE_GRO_MAX_BURST_ITEM_NUM / \
459                 GRO_DEFAULT_ITEM_NUM_PER_FLOW)
460
461 #define GRO_DEFAULT_FLUSH_CYCLES 1
462 #define GRO_MAX_FLUSH_CYCLES 4
463
464 struct gro_status {
465         struct rte_gro_param param;
466         uint8_t enable;
467 };
468 extern struct gro_status gro_ports[RTE_MAX_ETHPORTS];
469 extern uint8_t gro_flush_cycles;
470
471 #define GSO_MAX_PKT_BURST 2048
472 struct gso_status {
473         uint8_t enable;
474 };
475 extern struct gso_status gso_ports[RTE_MAX_ETHPORTS];
476 extern uint16_t gso_max_segment_size;
477
478 static inline unsigned int
479 lcore_num(void)
480 {
481         unsigned int i;
482
483         for (i = 0; i < RTE_MAX_LCORE; ++i)
484                 if (fwd_lcores_cpuids[i] == rte_lcore_id())
485                         return i;
486
487         rte_panic("lcore_id of current thread not found in fwd_lcores_cpuids\n");
488 }
489
490 static inline struct fwd_lcore *
491 current_fwd_lcore(void)
492 {
493         return fwd_lcores[lcore_num()];
494 }
495
496 /* Mbuf Pools */
497 static inline void
498 mbuf_poolname_build(unsigned int sock_id, char* mp_name, int name_size)
499 {
500         snprintf(mp_name, name_size, "mbuf_pool_socket_%u", sock_id);
501 }
502
503 static inline struct rte_mempool *
504 mbuf_pool_find(unsigned int sock_id)
505 {
506         char pool_name[RTE_MEMPOOL_NAMESIZE];
507
508         mbuf_poolname_build(sock_id, pool_name, sizeof(pool_name));
509         return rte_mempool_lookup((const char *)pool_name);
510 }
511
512 /**
513  * Read/Write operations on a PCI register of a port.
514  */
515 static inline uint32_t
516 port_pci_reg_read(struct rte_port *port, uint32_t reg_off)
517 {
518         const struct rte_pci_device *pci_dev;
519         const struct rte_bus *bus;
520         void *reg_addr;
521         uint32_t reg_v;
522
523         if (!port->dev_info.device) {
524                 printf("Invalid device\n");
525                 return 0;
526         }
527
528         bus = rte_bus_find_by_device(port->dev_info.device);
529         if (bus && !strcmp(bus->name, "pci")) {
530                 pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
531         } else {
532                 printf("Not a PCI device\n");
533                 return 0;
534         }
535
536         reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
537         reg_v = *((volatile uint32_t *)reg_addr);
538         return rte_le_to_cpu_32(reg_v);
539 }
540
541 #define port_id_pci_reg_read(pt_id, reg_off) \
542         port_pci_reg_read(&ports[(pt_id)], (reg_off))
543
544 static inline void
545 port_pci_reg_write(struct rte_port *port, uint32_t reg_off, uint32_t reg_v)
546 {
547         const struct rte_pci_device *pci_dev;
548         const struct rte_bus *bus;
549         void *reg_addr;
550
551         if (!port->dev_info.device) {
552                 printf("Invalid device\n");
553                 return;
554         }
555
556         bus = rte_bus_find_by_device(port->dev_info.device);
557         if (bus && !strcmp(bus->name, "pci")) {
558                 pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
559         } else {
560                 printf("Not a PCI device\n");
561                 return;
562         }
563
564         reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
565         *((volatile uint32_t *)reg_addr) = rte_cpu_to_le_32(reg_v);
566 }
567
568 #define port_id_pci_reg_write(pt_id, reg_off, reg_value) \
569         port_pci_reg_write(&ports[(pt_id)], (reg_off), (reg_value))
570
571 /* Prototypes */
572 unsigned int parse_item_list(char* str, const char* item_name,
573                         unsigned int max_items,
574                         unsigned int *parsed_items, int check_unique_values);
575 void launch_args_parse(int argc, char** argv);
576 void cmdline_read_from_file(const char *filename);
577 void prompt(void);
578 void prompt_exit(void);
579 void nic_stats_display(portid_t port_id);
580 void nic_stats_clear(portid_t port_id);
581 void nic_xstats_display(portid_t port_id);
582 void nic_xstats_clear(portid_t port_id);
583 void nic_stats_mapping_display(portid_t port_id);
584 void port_infos_display(portid_t port_id);
585 void port_offload_cap_display(portid_t port_id);
586 void rx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
587 void tx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
588 void fwd_lcores_config_display(void);
589 void pkt_fwd_config_display(struct fwd_config *cfg);
590 void rxtx_config_display(void);
591 void fwd_config_setup(void);
592 void set_def_fwd_config(void);
593 void reconfig(portid_t new_port_id, unsigned socket_id);
594 int init_fwd_streams(void);
595
596 void set_fwd_eth_peer(portid_t port_id, char *peer_addr);
597
598 void port_mtu_set(portid_t port_id, uint16_t mtu);
599 void port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_pos);
600 void port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
601                       uint8_t bit_v);
602 void port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
603                                 uint8_t bit1_pos, uint8_t bit2_pos);
604 void port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
605                             uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value);
606 void port_reg_display(portid_t port_id, uint32_t reg_off);
607 void port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t value);
608 int port_flow_validate(portid_t port_id,
609                        const struct rte_flow_attr *attr,
610                        const struct rte_flow_item *pattern,
611                        const struct rte_flow_action *actions);
612 int port_flow_create(portid_t port_id,
613                      const struct rte_flow_attr *attr,
614                      const struct rte_flow_item *pattern,
615                      const struct rte_flow_action *actions);
616 int port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule);
617 int port_flow_flush(portid_t port_id);
618 int port_flow_query(portid_t port_id, uint32_t rule,
619                     enum rte_flow_action_type action);
620 void port_flow_list(portid_t port_id, uint32_t n, const uint32_t *group);
621 int port_flow_isolate(portid_t port_id, int set);
622
623 void rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id);
624 void tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id);
625
626 int set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc);
627 int set_fwd_lcores_mask(uint64_t lcoremask);
628 void set_fwd_lcores_number(uint16_t nb_lc);
629
630 void set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt);
631 void set_fwd_ports_mask(uint64_t portmask);
632 void set_fwd_ports_number(uint16_t nb_pt);
633 int port_is_forwarding(portid_t port_id);
634
635 void rx_vlan_strip_set(portid_t port_id, int on);
636 void rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on);
637
638 void rx_vlan_filter_set(portid_t port_id, int on);
639 void rx_vlan_all_filter_set(portid_t port_id, int on);
640 int rx_vft_set(portid_t port_id, uint16_t vlan_id, int on);
641 void vlan_extend_set(portid_t port_id, int on);
642 void vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type,
643                    uint16_t tp_id);
644 void tx_vlan_set(portid_t port_id, uint16_t vlan_id);
645 void tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer);
646 void tx_vlan_reset(portid_t port_id);
647 void tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on);
648
649 void set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value);
650
651 void set_xstats_hide_zero(uint8_t on_off);
652
653 void set_verbose_level(uint16_t vb_level);
654 void set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs);
655 void show_tx_pkt_segments(void);
656 void set_tx_pkt_split(const char *name);
657 void set_nb_pkt_per_burst(uint16_t pkt_burst);
658 char *list_pkt_forwarding_modes(void);
659 char *list_pkt_forwarding_retry_modes(void);
660 void set_pkt_forwarding_mode(const char *fwd_mode);
661 void start_packet_forwarding(int with_tx_first);
662 void stop_packet_forwarding(void);
663 void dev_set_link_up(portid_t pid);
664 void dev_set_link_down(portid_t pid);
665 void init_port_config(void);
666 void set_port_slave_flag(portid_t slave_pid);
667 void clear_port_slave_flag(portid_t slave_pid);
668 uint8_t port_is_bonding_slave(portid_t slave_pid);
669
670 int init_port_dcb_config(portid_t pid, enum dcb_mode_enable dcb_mode,
671                      enum rte_eth_nb_tcs num_tcs,
672                      uint8_t pfc_en);
673 int start_port(portid_t pid);
674 void stop_port(portid_t pid);
675 void close_port(portid_t pid);
676 void reset_port(portid_t pid);
677 void attach_port(char *identifier);
678 void detach_port(portid_t port_id);
679 int all_ports_stopped(void);
680 int port_is_stopped(portid_t port_id);
681 int port_is_started(portid_t port_id);
682 void pmd_test_exit(void);
683 void fdir_get_infos(portid_t port_id);
684 void fdir_set_flex_mask(portid_t port_id,
685                            struct rte_eth_fdir_flex_mask *cfg);
686 void fdir_set_flex_payload(portid_t port_id,
687                            struct rte_eth_flex_payload_cfg *cfg);
688 void port_rss_reta_info(portid_t port_id,
689                         struct rte_eth_rss_reta_entry64 *reta_conf,
690                         uint16_t nb_entries);
691
692 void set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on);
693
694 int set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate);
695 int set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate,
696                                 uint64_t q_msk);
697
698 void port_rss_hash_conf_show(portid_t port_id, char rss_info[],
699                              int show_rss_key);
700 void port_rss_hash_key_update(portid_t port_id, char rss_type[],
701                               uint8_t *hash_key, uint hash_key_len);
702 int rx_queue_id_is_invalid(queueid_t rxq_id);
703 int tx_queue_id_is_invalid(queueid_t txq_id);
704 void setup_gro(const char *onoff, portid_t port_id);
705 void setup_gro_flush_cycles(uint8_t cycles);
706 void show_gro(portid_t port_id);
707 void setup_gso(const char *mode, portid_t port_id);
708
709 /* Functions to manage the set of filtered Multicast MAC addresses */
710 void mcast_addr_add(portid_t port_id, struct ether_addr *mc_addr);
711 void mcast_addr_remove(portid_t port_id, struct ether_addr *mc_addr);
712 void port_dcb_info_display(portid_t port_id);
713
714 uint8_t *open_file(const char *file_path, uint32_t *size);
715 int save_file(const char *file_path, uint8_t *buf, uint32_t size);
716 int close_file(uint8_t *buf);
717
718 void port_queue_region_info_display(portid_t port_id, void *buf);
719
720 enum print_warning {
721         ENABLED_WARN = 0,
722         DISABLED_WARN
723 };
724 int port_id_is_invalid(portid_t port_id, enum print_warning warning);
725 int new_socket_id(unsigned int socket_id);
726
727 queueid_t get_allowed_max_nb_rxq(portid_t *pid);
728 int check_nb_rxq(queueid_t rxq);
729 queueid_t get_allowed_max_nb_txq(portid_t *pid);
730 int check_nb_txq(queueid_t txq);
731
732 /*
733  * Work-around of a compilation error with ICC on invocations of the
734  * rte_be_to_cpu_16() function.
735  */
736 #ifdef __GCC__
737 #define RTE_BE_TO_CPU_16(be_16_v)  rte_be_to_cpu_16((be_16_v))
738 #define RTE_CPU_TO_BE_16(cpu_16_v) rte_cpu_to_be_16((cpu_16_v))
739 #else
740 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
741 #define RTE_BE_TO_CPU_16(be_16_v)  (be_16_v)
742 #define RTE_CPU_TO_BE_16(cpu_16_v) (cpu_16_v)
743 #else
744 #define RTE_BE_TO_CPU_16(be_16_v) \
745         (uint16_t) ((((be_16_v) & 0xFF) << 8) | ((be_16_v) >> 8))
746 #define RTE_CPU_TO_BE_16(cpu_16_v) \
747         (uint16_t) ((((cpu_16_v) & 0xFF) << 8) | ((cpu_16_v) >> 8))
748 #endif
749 #endif /* __GCC__ */
750
751 #define TESTPMD_LOG(level, fmt, args...) \
752         rte_log(RTE_LOG_ ## level, testpmd_logtype, "testpmd: " fmt, ## args)
753
754 #endif /* _TESTPMD_H_ */