app/testpmd: add --total-num-mbufs option
[dpdk.git] / app / test-pmd / testpmd.h
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright 
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright 
14  *       notice, this list of conditions and the following disclaimer in 
15  *       the documentation and/or other materials provided with the 
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its 
18  *       contributors may be used to endorse or promote products derived 
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  * 
33  */
34
35 #ifndef _TESTPMD_H_
36 #define _TESTPMD_H_
37
38 /* icc on baremetal gives us troubles with function named 'main' */
39 #ifdef RTE_EXEC_ENV_BAREMETAL
40 #define main _main
41 int main(int argc, char **argv);
42 #endif
43
44 /*
45  * Default size of the mbuf data buffer to receive standard 1518-byte
46  * Ethernet frames in a mono-segment memory buffer.
47  */
48 #define DEFAULT_MBUF_DATA_SIZE 2048 /**< Default size of mbuf data buffer. */
49
50 /*
51  * The maximum number of segments per packet is used when creating
52  * scattered transmit packets composed of a list of mbufs.
53  */
54 #define RTE_MAX_SEGS_PER_PKT 255 /**< pkt.nb_segs is a 8-bit unsigned char. */
55
56 #define MAX_PKT_BURST 512
57 #define DEF_PKT_BURST 16
58
59 #define CACHE_LINE_SIZE_ROUNDUP(size) \
60         (CACHE_LINE_SIZE * ((size + CACHE_LINE_SIZE - 1) / CACHE_LINE_SIZE))
61
62 typedef uint8_t  lcoreid_t;
63 typedef uint8_t  portid_t;
64 typedef uint16_t queueid_t;
65 typedef uint16_t streamid_t;
66
67 #define MAX_QUEUE_ID ((1 << (sizeof(queueid_t) * 8)) - 1)
68
69 enum {
70         PORT_TOPOLOGY_PAIRED,
71         PORT_TOPOLOGY_CHAINED
72 };
73
74 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
75 /**
76  * The data structure associated with RX and TX packet burst statistics
77  * that are recorded for each forwarding stream.
78  */
79 struct pkt_burst_stats {
80         unsigned int pkt_burst_spread[MAX_PKT_BURST];
81 };
82 #endif
83
84 /**
85  * The data structure associated with a forwarding stream between a receive
86  * port/queue and a transmit port/queue.
87  */
88 struct fwd_stream {
89         /* "read-only" data */
90         portid_t   rx_port;   /**< port to poll for received packets */
91         queueid_t  rx_queue;  /**< RX queue to poll on "rx_port" */
92         portid_t   tx_port;   /**< forwarding port of received packets */
93         queueid_t  tx_queue;  /**< TX queue to send forwarded packets */
94         streamid_t peer_addr; /**< index of peer ethernet address of packets */
95
96         /* "read-write" results */
97         unsigned int rx_packets;  /**< received packets */
98         unsigned int tx_packets;  /**< received packets transmitted */
99         unsigned int fwd_dropped; /**< received packets not forwarded */
100         unsigned int rx_bad_ip_csum ; /**< received packets has bad ip checksum */
101         unsigned int rx_bad_l4_csum ; /**< received packets has bad l4 checksum */
102 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
103         uint64_t     core_cycles; /**< used for RX and TX processing */
104 #endif
105 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
106         struct pkt_burst_stats rx_burst_stats;
107         struct pkt_burst_stats tx_burst_stats;
108 #endif
109 };
110
111 /**
112  * The data structure associated with each port.
113  * tx_ol_flags is slightly different from ol_flags of rte_mbuf.
114  *       Bit  0: Insert IP checksum
115  *   Bit  1: Insert UDP checksum
116  *   Bit  2: Insert TCP checksum
117  *   Bit  3: Insert SCTP checksum
118  *   Bit 11: Insert VLAN Label
119  */
120 struct rte_port {
121         struct rte_eth_dev_info dev_info;   /**< PCI info + driver name */
122         struct rte_eth_conf     dev_conf;   /**< Port configuration. */
123         struct ether_addr       eth_addr;   /**< Port ethernet address */
124         struct rte_eth_stats    stats;      /**< Last port statistics */
125         uint64_t                tx_dropped; /**< If no descriptor in TX ring */
126         struct fwd_stream       *rx_stream; /**< Port RX stream, if unique */
127         struct fwd_stream       *tx_stream; /**< Port TX stream, if unique */
128         unsigned int            socket_id;  /**< For NUMA support */
129         uint16_t                tx_ol_flags;/**< Offload Flags of TX packets. */
130         uint16_t                tx_vlan_id; /**< Tag Id. in TX VLAN packets. */
131         void                    *fwd_ctx;   /**< Forwarding mode context */
132         uint64_t                rx_bad_ip_csum; /**< rx pkts with bad ip checksum  */
133         uint64_t                rx_bad_l4_csum; /**< rx pkts with bad l4 checksum */
134         uint8_t                 tx_queue_stats_mapping_enabled;
135         uint8_t                 rx_queue_stats_mapping_enabled;
136 };
137
138 /**
139  * The data structure associated with each forwarding logical core.
140  * The logical cores are internally numbered by a core index from 0 to
141  * the maximum number of logical cores - 1.
142  * The system CPU identifier of all logical cores are setup in a global
143  * CPU id. configuration table.
144  */
145 struct fwd_lcore {
146         struct rte_mempool *mbp; /**< The mbuf pool to use by this core */
147         streamid_t stream_idx;   /**< index of 1st stream in "fwd_streams" */
148         streamid_t stream_nb;    /**< number of streams in "fwd_streams" */
149         lcoreid_t  cpuid_idx;    /**< index of logical core in CPU id table */
150         queueid_t  tx_queue;     /**< TX queue to send forwarded packets */
151         volatile char stopped;   /**< stop forwarding when set */
152 };
153
154 /*
155  * Forwarding mode operations:
156  *   - IO forwarding mode (default mode)
157  *     Forwards packets unchanged.
158  *
159  *   - MAC forwarding mode
160  *     Set the source and the destination Ethernet addresses of packets
161  *     before forwarding them.
162  *
163  *   - IEEE1588 forwarding mode
164  *     Check that received IEEE1588 Precise Time Protocol (PTP) packets are
165  *     filtered and timestamped by the hardware.
166  *     Forwards packets unchanged on the same port.
167  *     Check that sent IEEE1588 PTP packets are timestamped by the hardware.
168  */
169 typedef void (*port_fwd_begin_t)(portid_t pi);
170 typedef void (*port_fwd_end_t)(portid_t pi);
171 typedef void (*packet_fwd_t)(struct fwd_stream *fs);
172
173 struct fwd_engine {
174         const char       *fwd_mode_name; /**< Forwarding mode name. */
175         port_fwd_begin_t port_fwd_begin; /**< NULL if nothing special to do. */
176         port_fwd_end_t   port_fwd_end;   /**< NULL if nothing special to do. */
177         packet_fwd_t     packet_fwd;     /**< Mandatory. */
178 };
179
180 extern struct fwd_engine io_fwd_engine;
181 extern struct fwd_engine mac_fwd_engine;
182 extern struct fwd_engine rx_only_engine;
183 extern struct fwd_engine tx_only_engine;
184 extern struct fwd_engine csum_fwd_engine;
185 #ifdef RTE_LIBRTE_IEEE1588
186 extern struct fwd_engine ieee1588_fwd_engine;
187 #endif
188
189 extern struct fwd_engine * fwd_engines[]; /**< NULL terminated array. */
190
191 /**
192  * Forwarding Configuration
193  *
194  */
195 struct fwd_config {
196         struct fwd_engine *fwd_eng; /**< Packet forwarding mode. */
197         streamid_t nb_fwd_streams;  /**< Nb. of forward streams to process. */
198         lcoreid_t  nb_fwd_lcores;   /**< Nb. of logical cores to launch. */
199         portid_t   nb_fwd_ports;    /**< Nb. of ports involved. */
200 };
201
202 #define MAX_TX_QUEUE_STATS_MAPPINGS 1024 /* MAX_PORT of 32 @ 32 tx_queues/port */
203 #define MAX_RX_QUEUE_STATS_MAPPINGS 4096 /* MAX_PORT of 32 @ 128 rx_queues/port */
204
205 struct queue_stats_mappings {
206         uint8_t port_id;
207         uint16_t queue_id;
208         uint8_t stats_counter_id;
209 } __rte_cache_aligned;
210
211 extern struct queue_stats_mappings tx_queue_stats_mappings_array[];
212 extern struct queue_stats_mappings rx_queue_stats_mappings_array[];
213
214 /* Assign both tx and rx queue stats mappings to the same default values */
215 extern struct queue_stats_mappings *tx_queue_stats_mappings;
216 extern struct queue_stats_mappings *rx_queue_stats_mappings;
217
218 extern uint16_t nb_tx_queue_stats_mappings;
219 extern uint16_t nb_rx_queue_stats_mappings;
220
221 /* globals used for configuration */
222 extern uint16_t verbose_level; /**< Drives messages being displayed, if any. */
223 extern uint8_t  interactive;
224 extern uint8_t  numa_support; /**< set by "--numa" parameter */
225 extern uint16_t port_topology; /**< set by "--port-topology" parameter */
226
227 /*
228  * Configuration of logical cores:
229  * nb_fwd_lcores <= nb_cfg_lcores <= nb_lcores
230  */
231 extern lcoreid_t nb_lcores; /**< Number of logical cores probed at init time. */
232 extern lcoreid_t nb_cfg_lcores; /**< Number of configured logical cores. */
233 extern lcoreid_t nb_fwd_lcores; /**< Number of forwarding logical cores. */
234 extern unsigned int fwd_lcores_cpuids[RTE_MAX_LCORE];
235
236 /*
237  * Configuration of Ethernet ports:
238  * nb_fwd_ports <= nb_cfg_ports <= nb_ports
239  */
240 extern portid_t nb_ports; /**< Number of ethernet ports probed at init time. */
241 extern portid_t nb_cfg_ports; /**< Number of configured ports. */
242 extern portid_t nb_fwd_ports; /**< Number of forwarding ports. */
243 extern portid_t fwd_ports_ids[RTE_MAX_ETHPORTS];
244 extern struct rte_port *ports;
245
246 extern struct rte_eth_rxmode rx_mode;
247 extern uint16_t rss_hf;
248
249 extern queueid_t nb_rxq;
250 extern queueid_t nb_txq;
251
252 extern uint16_t nb_rxd;
253 extern uint16_t nb_txd;
254
255 extern uint16_t rx_free_thresh;
256 extern uint16_t tx_free_thresh;
257 extern uint16_t tx_rs_thresh;
258
259 extern uint16_t mbuf_data_size; /**< Mbuf data space size. */
260 extern uint32_t param_total_num_mbufs;
261
262 extern struct rte_fdir_conf fdir_conf;
263
264 /*
265  * Configuration of packet segments used by the "txonly" processing engine.
266  */
267 #define TXONLY_DEF_PACKET_LEN 64
268 extern uint16_t tx_pkt_length; /**< Length of TXONLY packet */
269 extern uint16_t tx_pkt_seg_lengths[RTE_MAX_SEGS_PER_PKT]; /**< Seg. lengths */
270 extern uint8_t  tx_pkt_nb_segs; /**< Number of segments in TX packets */
271
272 extern uint16_t nb_pkt_per_burst;
273 extern uint16_t mb_mempool_cache;
274 extern struct rte_eth_thresh rx_thresh;
275 extern struct rte_eth_thresh tx_thresh;
276
277 extern struct fwd_config cur_fwd_config;
278 extern struct fwd_engine *cur_fwd_eng;
279 extern struct fwd_lcore  **fwd_lcores;
280 extern struct fwd_stream **fwd_streams;
281
282 extern portid_t nb_peer_eth_addrs; /**< Number of peer ethernet addresses. */
283 extern struct ether_addr peer_eth_addrs[RTE_MAX_ETHPORTS];
284
285 static inline unsigned int
286 lcore_num(void)
287 {
288         unsigned int i;
289
290         for (i = 0; i < RTE_MAX_LCORE; ++i)
291                 if (fwd_lcores_cpuids[i] == rte_lcore_id())
292                         return i;
293
294         rte_panic("lcore_id of current thread not found in fwd_lcores_cpuids\n");
295 }
296
297 static inline struct fwd_lcore *
298 current_fwd_lcore(void)
299 {
300         return fwd_lcores[lcore_num()];
301 }
302
303 /* Mbuf Pools */
304 static inline void
305 mbuf_poolname_build(unsigned int sock_id, char* mp_name, int name_size)
306 {
307         rte_snprintf(mp_name, name_size, "mbuf_pool_socket_%u", sock_id);
308 }
309
310 static inline struct rte_mempool *
311 mbuf_pool_find(unsigned int sock_id)
312 {
313         char pool_name[RTE_MEMPOOL_NAMESIZE];
314
315         mbuf_poolname_build(sock_id, pool_name, sizeof(pool_name));
316         return (rte_mempool_lookup((const char *)pool_name));
317 }
318
319 /**
320  * Read/Write operations on a PCI register of a port.
321  */
322 static inline uint32_t
323 port_pci_reg_read(struct rte_port *port, uint32_t reg_off)
324 {
325         void *reg_addr;
326         uint32_t reg_v;
327
328         reg_addr = (void *)((char *)port->dev_info.pci_dev->mem_resource.addr +
329                             reg_off);
330         reg_v = *((volatile uint32_t *)reg_addr);
331         return rte_le_to_cpu_32(reg_v);
332 }
333
334 #define port_id_pci_reg_read(pt_id, reg_off) \
335         port_pci_reg_read(&ports[(pt_id)], (reg_off))
336
337 static inline void
338 port_pci_reg_write(struct rte_port *port, uint32_t reg_off, uint32_t reg_v)
339 {
340         void *reg_addr;
341
342         reg_addr = (void *)((char *)port->dev_info.pci_dev->mem_resource.addr +
343                             reg_off);
344         *((volatile uint32_t *)reg_addr) = rte_cpu_to_le_32(reg_v);
345 }
346
347 #define port_id_pci_reg_write(pt_id, reg_off, reg_value) \
348         port_pci_reg_write(&ports[(pt_id)], (reg_off), (reg_value))
349
350 /* Prototypes */
351 void launch_args_parse(int argc, char** argv);
352 void prompt(void);
353 void nic_stats_display(portid_t port_id);
354 void nic_stats_clear(portid_t port_id);
355 void nic_stats_mapping_display(portid_t port_id);
356 void port_infos_display(portid_t port_id);
357 void fwd_lcores_config_display(void);
358 void fwd_config_display(void);
359 void rxtx_config_display(void);
360 void fwd_config_setup(void);
361 void set_def_fwd_config(void);
362
363 void port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_pos);
364 void port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
365                       uint8_t bit_v);
366 void port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
367                                 uint8_t bit1_pos, uint8_t bit2_pos);
368 void port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
369                             uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value);
370 void port_reg_display(portid_t port_id, uint32_t reg_off);
371 void port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t value);
372
373 void rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id);
374 void tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id);
375
376 void set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc);
377 void set_fwd_lcores_mask(uint64_t lcoremask);
378 void set_fwd_lcores_number(uint16_t nb_lc);
379
380 void set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt);
381 void set_fwd_ports_mask(uint64_t portmask);
382 void set_fwd_ports_number(uint16_t nb_pt);
383
384 void rx_vlan_strip_set(portid_t port_id, int on);
385 void rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on);
386
387 void rx_vlan_filter_set(portid_t port_id, int on);
388 void rx_vlan_all_filter_set(portid_t port_id, int on);
389 void rx_vft_set(portid_t port_id, uint16_t vlan_id, int on);
390 void vlan_extend_set(portid_t port_id, int on);
391 void vlan_tpid_set(portid_t port_id, uint16_t tp_id);
392 void tx_vlan_set(portid_t port_id, uint16_t vlan_id);
393 void tx_vlan_reset(portid_t port_id);
394
395
396 void set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value);
397
398 void tx_cksum_set(portid_t port_id, uint8_t cksum_mask);
399
400 void set_verbose_level(uint16_t vb_level);
401 void set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs);
402 void set_nb_pkt_per_burst(uint16_t pkt_burst);
403 void set_pkt_forwarding_mode(const char *fwd_mode);
404 void start_packet_forwarding(int with_tx_first);
405 void stop_packet_forwarding(void);
406 void pmd_test_exit(void);
407
408 void fdir_add_signature_filter(portid_t port_id, uint8_t queue_id,
409                                struct rte_fdir_filter *fdir_filter);
410 void fdir_update_signature_filter(portid_t port_id, uint8_t queue_id,
411                                   struct rte_fdir_filter *fdir_filter);
412 void fdir_remove_signature_filter(portid_t port_id,
413                                   struct rte_fdir_filter *fdir_filter);
414 void fdir_get_infos(portid_t port_id);
415 void fdir_add_perfect_filter(portid_t port_id, uint16_t soft_id,
416                              uint8_t queue_id, uint8_t drop,
417                              struct rte_fdir_filter *fdir_filter);
418 void fdir_update_perfect_filter(portid_t port_id, uint16_t soft_id,
419                                 uint8_t queue_id, uint8_t drop,
420                                 struct rte_fdir_filter *fdir_filter);
421 void fdir_remove_perfect_filter(portid_t port_id, uint16_t soft_id,
422                                 struct rte_fdir_filter *fdir_filter);
423 void fdir_set_masks(portid_t port_id, struct rte_fdir_masks *fdir_masks);
424
425 /*
426  * Work-around of a compilation error with ICC on invocations of the
427  * rte_be_to_cpu_16() function.
428  */
429 #ifdef __GCC__
430 #define RTE_BE_TO_CPU_16(be_16_v)  rte_be_to_cpu_16((be_16_v))
431 #define RTE_CPU_TO_BE_16(cpu_16_v) rte_cpu_to_be_16((cpu_16_v))
432 #else
433 #ifdef __big_endian__
434 #define RTE_BE_TO_CPU_16(be_16_v)  (be_16_v)
435 #define RTE_CPU_TO_BE_16(cpu_16_v) (cpu_16_v)
436 #else
437 #define RTE_BE_TO_CPU_16(be_16_v) \
438         (uint16_t) ((((be_16_v) & 0xFF) << 8) | ((be_16_v) >> 8))
439 #define RTE_CPU_TO_BE_16(cpu_16_v) \
440         (uint16_t) ((((cpu_16_v) & 0xFF) << 8) | ((cpu_16_v) >> 8))
441 #endif
442 #endif /* __GCC__ */
443
444 #endif /* _TESTPMD_H_ */