41326fe987dd2b5e048b90ddd8edd5732a548f64
[dpdk.git] / app / test-pmd / config.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2014 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 /*   BSD LICENSE
34  *
35  *   Copyright(c) 2013 6WIND.
36  *
37  *   Redistribution and use in source and binary forms, with or without
38  *   modification, are permitted provided that the following conditions
39  *   are met:
40  *
41  *     * Redistributions of source code must retain the above copyright
42  *       notice, this list of conditions and the following disclaimer.
43  *     * Redistributions in binary form must reproduce the above copyright
44  *       notice, this list of conditions and the following disclaimer in
45  *       the documentation and/or other materials provided with the
46  *       distribution.
47  *     * Neither the name of 6WIND S.A. nor the names of its
48  *       contributors may be used to endorse or promote products derived
49  *       from this software without specific prior written permission.
50  *
51  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
52  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
53  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
54  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
55  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
56  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
57  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
61  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62  */
63
64 #include <stdarg.h>
65 #include <errno.h>
66 #include <stdio.h>
67 #include <string.h>
68 #include <stdarg.h>
69 #include <stdint.h>
70 #include <inttypes.h>
71
72 #include <sys/queue.h>
73
74 #include <rte_common.h>
75 #include <rte_byteorder.h>
76 #include <rte_debug.h>
77 #include <rte_log.h>
78 #include <rte_memory.h>
79 #include <rte_memcpy.h>
80 #include <rte_memzone.h>
81 #include <rte_launch.h>
82 #include <rte_tailq.h>
83 #include <rte_eal.h>
84 #include <rte_per_lcore.h>
85 #include <rte_lcore.h>
86 #include <rte_atomic.h>
87 #include <rte_branch_prediction.h>
88 #include <rte_ring.h>
89 #include <rte_mempool.h>
90 #include <rte_mbuf.h>
91 #include <rte_interrupts.h>
92 #include <rte_pci.h>
93 #include <rte_ether.h>
94 #include <rte_ethdev.h>
95 #include <rte_string_fns.h>
96
97 #include "testpmd.h"
98
99 static void
100 print_ethaddr(const char *name, struct ether_addr *eth_addr)
101 {
102         printf("%s%02X:%02X:%02X:%02X:%02X:%02X", name,
103                (unsigned int)eth_addr->addr_bytes[0],
104                (unsigned int)eth_addr->addr_bytes[1],
105                (unsigned int)eth_addr->addr_bytes[2],
106                (unsigned int)eth_addr->addr_bytes[3],
107                (unsigned int)eth_addr->addr_bytes[4],
108                (unsigned int)eth_addr->addr_bytes[5]);
109 }
110
111 void
112 nic_stats_display(portid_t port_id)
113 {
114         struct rte_eth_stats stats;
115         struct rte_port *port = &ports[port_id];
116         uint8_t i;
117
118         static const char *nic_stats_border = "########################";
119
120         if (port_id >= nb_ports) {
121                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
122                 return;
123         }
124         rte_eth_stats_get(port_id, &stats);
125         printf("\n  %s NIC statistics for port %-2d %s\n",
126                nic_stats_border, port_id, nic_stats_border);
127
128         if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
129                 printf("  RX-packets: %-10"PRIu64" RX-errors: %-10"PRIu64"RX-bytes: "
130                        "%-"PRIu64"\n"
131                        "  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64"TX-bytes: "
132                        "%-"PRIu64"\n",
133                        stats.ipackets, stats.ierrors, stats.ibytes,
134                        stats.opackets, stats.oerrors, stats.obytes);
135         }
136         else {
137                 printf("  RX-packets:              %10"PRIu64"    RX-errors: %10"PRIu64
138                        "    RX-bytes: %10"PRIu64"\n"
139                        "  TX-packets:              %10"PRIu64"    TX-errors: %10"PRIu64
140                        "    TX-bytes: %10"PRIu64"\n",
141                        stats.ipackets, stats.ierrors, stats.ibytes,
142                        stats.opackets, stats.oerrors, stats.obytes);
143         }
144
145         /* stats fdir */
146         if (fdir_conf.mode != RTE_FDIR_MODE_NONE)
147                 printf("  Fdirmiss:   %-10"PRIu64" Fdirmatch: %-10"PRIu64"\n",
148                        stats.fdirmiss,
149                        stats.fdirmatch);
150
151         if (port->rx_queue_stats_mapping_enabled) {
152                 printf("\n");
153                 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
154                         printf("  Stats reg %2d RX-packets: %10"PRIu64
155                                "    RX-errors: %10"PRIu64
156                                "    RX-bytes: %10"PRIu64"\n",
157                                i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
158                 }
159         }
160         if (port->tx_queue_stats_mapping_enabled) {
161                 printf("\n");
162                 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
163                         printf("  Stats reg %2d TX-packets: %10"PRIu64
164                                "                             TX-bytes: %10"PRIu64"\n",
165                                i, stats.q_opackets[i], stats.q_obytes[i]);
166                 }
167         }
168
169         /* Display statistics of XON/XOFF pause frames, if any. */
170         if ((stats.tx_pause_xon  | stats.rx_pause_xon |
171              stats.tx_pause_xoff | stats.rx_pause_xoff) > 0) {
172                 printf("  RX-XOFF:    %-10"PRIu64" RX-XON:    %-10"PRIu64"\n",
173                        stats.rx_pause_xoff, stats.rx_pause_xon);
174                 printf("  TX-XOFF:    %-10"PRIu64" TX-XON:    %-10"PRIu64"\n",
175                        stats.tx_pause_xoff, stats.tx_pause_xon);
176         }
177         printf("  %s############################%s\n",
178                nic_stats_border, nic_stats_border);
179 }
180
181 void
182 nic_stats_clear(portid_t port_id)
183 {
184         if (port_id >= nb_ports) {
185                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
186                 return;
187         }
188         rte_eth_stats_reset(port_id);
189         printf("\n  NIC statistics for port %d cleared\n", port_id);
190 }
191
192
193 void
194 nic_stats_mapping_display(portid_t port_id)
195 {
196         struct rte_port *port = &ports[port_id];
197         uint16_t i;
198
199         static const char *nic_stats_mapping_border = "########################";
200
201         if (port_id >= nb_ports) {
202                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
203                 return;
204         }
205
206         if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
207                 printf("Port id %d - either does not support queue statistic mapping or"
208                        " no queue statistic mapping set\n", port_id);
209                 return;
210         }
211
212         printf("\n  %s NIC statistics mapping for port %-2d %s\n",
213                nic_stats_mapping_border, port_id, nic_stats_mapping_border);
214
215         if (port->rx_queue_stats_mapping_enabled) {
216                 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
217                         if (rx_queue_stats_mappings[i].port_id == port_id) {
218                                 printf("  RX-queue %2d mapped to Stats Reg %2d\n",
219                                        rx_queue_stats_mappings[i].queue_id,
220                                        rx_queue_stats_mappings[i].stats_counter_id);
221                         }
222                 }
223                 printf("\n");
224         }
225
226
227         if (port->tx_queue_stats_mapping_enabled) {
228                 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
229                         if (tx_queue_stats_mappings[i].port_id == port_id) {
230                                 printf("  TX-queue %2d mapped to Stats Reg %2d\n",
231                                        tx_queue_stats_mappings[i].queue_id,
232                                        tx_queue_stats_mappings[i].stats_counter_id);
233                         }
234                 }
235         }
236
237         printf("  %s####################################%s\n",
238                nic_stats_mapping_border, nic_stats_mapping_border);
239 }
240
241 void
242 port_infos_display(portid_t port_id)
243 {
244         struct rte_port *port;
245         struct rte_eth_link link;
246         int vlan_offload;
247         struct rte_mempool * mp;
248         static const char *info_border = "*********************";
249
250         if (port_id >= nb_ports) {
251                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
252                 return;
253         }
254         port = &ports[port_id];
255         rte_eth_link_get_nowait(port_id, &link);
256         printf("\n%s Infos for port %-2d %s\n",
257                info_border, port_id, info_border);
258         print_ethaddr("MAC address: ", &port->eth_addr);
259         printf("\nConnect to socket: %u", port->socket_id);
260
261         if (port_numa[port_id] != NUMA_NO_CONFIG) {
262                 mp = mbuf_pool_find(port_numa[port_id]);
263                 if (mp)
264                         printf("\nmemory allocation on the socket: %d",
265                                                         port_numa[port_id]);
266         } else
267                 printf("\nmemory allocation on the socket: %u",port->socket_id);
268
269         printf("\nLink status: %s\n", (link.link_status) ? ("up") : ("down"));
270         printf("Link speed: %u Mbps\n", (unsigned) link.link_speed);
271         printf("Link duplex: %s\n", (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
272                ("full-duplex") : ("half-duplex"));
273         printf("Promiscuous mode: %s\n",
274                rte_eth_promiscuous_get(port_id) ? "enabled" : "disabled");
275         printf("Allmulticast mode: %s\n",
276                rte_eth_allmulticast_get(port_id) ? "enabled" : "disabled");
277         printf("Maximum number of MAC addresses: %u\n",
278                (unsigned int)(port->dev_info.max_mac_addrs));
279         printf("Maximum number of MAC addresses of hash filtering: %u\n",
280                (unsigned int)(port->dev_info.max_hash_mac_addrs));
281
282         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
283         if (vlan_offload >= 0){
284                 printf("VLAN offload: \n");
285                 if (vlan_offload & ETH_VLAN_STRIP_OFFLOAD)
286                         printf("  strip on \n");
287                 else
288                         printf("  strip off \n");
289
290                 if (vlan_offload & ETH_VLAN_FILTER_OFFLOAD)
291                         printf("  filter on \n");
292                 else
293                         printf("  filter off \n");
294
295                 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)
296                         printf("  qinq(extend) on \n");
297                 else
298                         printf("  qinq(extend) off \n");
299         }
300 }
301
302 static int
303 port_id_is_invalid(portid_t port_id)
304 {
305         if (port_id < nb_ports)
306                 return 0;
307         printf("Invalid port %d (must be < nb_ports=%d)\n", port_id, nb_ports);
308         return 1;
309 }
310
311 static int
312 vlan_id_is_invalid(uint16_t vlan_id)
313 {
314         if (vlan_id < 4096)
315                 return 0;
316         printf("Invalid vlan_id %d (must be < 4096)\n", vlan_id);
317         return 1;
318 }
319
320 static int
321 port_reg_off_is_invalid(portid_t port_id, uint32_t reg_off)
322 {
323         uint64_t pci_len;
324
325         if (reg_off & 0x3) {
326                 printf("Port register offset 0x%X not aligned on a 4-byte "
327                        "boundary\n",
328                        (unsigned)reg_off);
329                 return 1;
330         }
331         pci_len = ports[port_id].dev_info.pci_dev->mem_resource[0].len;
332         if (reg_off >= pci_len) {
333                 printf("Port %d: register offset %u (0x%X) out of port PCI "
334                        "resource (length=%"PRIu64")\n",
335                        port_id, (unsigned)reg_off, (unsigned)reg_off,  pci_len);
336                 return 1;
337         }
338         return 0;
339 }
340
341 static int
342 reg_bit_pos_is_invalid(uint8_t bit_pos)
343 {
344         if (bit_pos <= 31)
345                 return 0;
346         printf("Invalid bit position %d (must be <= 31)\n", bit_pos);
347         return 1;
348 }
349
350 #define display_port_and_reg_off(port_id, reg_off) \
351         printf("port %d PCI register at offset 0x%X: ", (port_id), (reg_off))
352
353 static inline void
354 display_port_reg_value(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
355 {
356         display_port_and_reg_off(port_id, (unsigned)reg_off);
357         printf("0x%08X (%u)\n", (unsigned)reg_v, (unsigned)reg_v);
358 }
359
360 void
361 port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_x)
362 {
363         uint32_t reg_v;
364
365
366         if (port_id_is_invalid(port_id))
367                 return;
368         if (port_reg_off_is_invalid(port_id, reg_off))
369                 return;
370         if (reg_bit_pos_is_invalid(bit_x))
371                 return;
372         reg_v = port_id_pci_reg_read(port_id, reg_off);
373         display_port_and_reg_off(port_id, (unsigned)reg_off);
374         printf("bit %d=%d\n", bit_x, (int) ((reg_v & (1 << bit_x)) >> bit_x));
375 }
376
377 void
378 port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
379                            uint8_t bit1_pos, uint8_t bit2_pos)
380 {
381         uint32_t reg_v;
382         uint8_t  l_bit;
383         uint8_t  h_bit;
384
385         if (port_id_is_invalid(port_id))
386                 return;
387         if (port_reg_off_is_invalid(port_id, reg_off))
388                 return;
389         if (reg_bit_pos_is_invalid(bit1_pos))
390                 return;
391         if (reg_bit_pos_is_invalid(bit2_pos))
392                 return;
393         if (bit1_pos > bit2_pos)
394                 l_bit = bit2_pos, h_bit = bit1_pos;
395         else
396                 l_bit = bit1_pos, h_bit = bit2_pos;
397
398         reg_v = port_id_pci_reg_read(port_id, reg_off);
399         reg_v >>= l_bit;
400         if (h_bit < 31)
401                 reg_v &= ((1 << (h_bit - l_bit + 1)) - 1);
402         display_port_and_reg_off(port_id, (unsigned)reg_off);
403         printf("bits[%d, %d]=0x%0*X (%u)\n", l_bit, h_bit,
404                ((h_bit - l_bit) / 4) + 1, (unsigned)reg_v, (unsigned)reg_v);
405 }
406
407 void
408 port_reg_display(portid_t port_id, uint32_t reg_off)
409 {
410         uint32_t reg_v;
411
412         if (port_id_is_invalid(port_id))
413                 return;
414         if (port_reg_off_is_invalid(port_id, reg_off))
415                 return;
416         reg_v = port_id_pci_reg_read(port_id, reg_off);
417         display_port_reg_value(port_id, reg_off, reg_v);
418 }
419
420 void
421 port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
422                  uint8_t bit_v)
423 {
424         uint32_t reg_v;
425
426         if (port_id_is_invalid(port_id))
427                 return;
428         if (port_reg_off_is_invalid(port_id, reg_off))
429                 return;
430         if (reg_bit_pos_is_invalid(bit_pos))
431                 return;
432         if (bit_v > 1) {
433                 printf("Invalid bit value %d (must be 0 or 1)\n", (int) bit_v);
434                 return;
435         }
436         reg_v = port_id_pci_reg_read(port_id, reg_off);
437         if (bit_v == 0)
438                 reg_v &= ~(1 << bit_pos);
439         else
440                 reg_v |= (1 << bit_pos);
441         port_id_pci_reg_write(port_id, reg_off, reg_v);
442         display_port_reg_value(port_id, reg_off, reg_v);
443 }
444
445 void
446 port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
447                        uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value)
448 {
449         uint32_t max_v;
450         uint32_t reg_v;
451         uint8_t  l_bit;
452         uint8_t  h_bit;
453
454         if (port_id_is_invalid(port_id))
455                 return;
456         if (port_reg_off_is_invalid(port_id, reg_off))
457                 return;
458         if (reg_bit_pos_is_invalid(bit1_pos))
459                 return;
460         if (reg_bit_pos_is_invalid(bit2_pos))
461                 return;
462         if (bit1_pos > bit2_pos)
463                 l_bit = bit2_pos, h_bit = bit1_pos;
464         else
465                 l_bit = bit1_pos, h_bit = bit2_pos;
466
467         if ((h_bit - l_bit) < 31)
468                 max_v = (1 << (h_bit - l_bit + 1)) - 1;
469         else
470                 max_v = 0xFFFFFFFF;
471
472         if (value > max_v) {
473                 printf("Invalid value %u (0x%x) must be < %u (0x%x)\n",
474                                 (unsigned)value, (unsigned)value,
475                                 (unsigned)max_v, (unsigned)max_v);
476                 return;
477         }
478         reg_v = port_id_pci_reg_read(port_id, reg_off);
479         reg_v &= ~(max_v << l_bit); /* Keep unchanged bits */
480         reg_v |= (value << l_bit); /* Set changed bits */
481         port_id_pci_reg_write(port_id, reg_off, reg_v);
482         display_port_reg_value(port_id, reg_off, reg_v);
483 }
484
485 void
486 port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
487 {
488         if (port_id_is_invalid(port_id))
489                 return;
490         if (port_reg_off_is_invalid(port_id, reg_off))
491                 return;
492         port_id_pci_reg_write(port_id, reg_off, reg_v);
493         display_port_reg_value(port_id, reg_off, reg_v);
494 }
495
496 /*
497  * RX/TX ring descriptors display functions.
498  */
499 static int
500 rx_queue_id_is_invalid(queueid_t rxq_id)
501 {
502         if (rxq_id < nb_rxq)
503                 return 0;
504         printf("Invalid RX queue %d (must be < nb_rxq=%d)\n", rxq_id, nb_rxq);
505         return 1;
506 }
507
508 static int
509 tx_queue_id_is_invalid(queueid_t txq_id)
510 {
511         if (txq_id < nb_txq)
512                 return 0;
513         printf("Invalid TX queue %d (must be < nb_rxq=%d)\n", txq_id, nb_txq);
514         return 1;
515 }
516
517 static int
518 rx_desc_id_is_invalid(uint16_t rxdesc_id)
519 {
520         if (rxdesc_id < nb_rxd)
521                 return 0;
522         printf("Invalid RX descriptor %d (must be < nb_rxd=%d)\n",
523                rxdesc_id, nb_rxd);
524         return 1;
525 }
526
527 static int
528 tx_desc_id_is_invalid(uint16_t txdesc_id)
529 {
530         if (txdesc_id < nb_txd)
531                 return 0;
532         printf("Invalid TX descriptor %d (must be < nb_txd=%d)\n",
533                txdesc_id, nb_txd);
534         return 1;
535 }
536
537 static const struct rte_memzone *
538 ring_dma_zone_lookup(const char *ring_name, uint8_t port_id, uint16_t q_id)
539 {
540         char mz_name[RTE_MEMZONE_NAMESIZE];
541         const struct rte_memzone *mz;
542
543         rte_snprintf(mz_name, sizeof(mz_name), "%s_%s_%d_%d",
544                  ports[port_id].dev_info.driver_name, ring_name, port_id, q_id);
545         mz = rte_memzone_lookup(mz_name);
546         if (mz == NULL)
547                 printf("%s ring memory zoneof (port %d, queue %d) not"
548                        "found (zone name = %s\n",
549                        ring_name, port_id, q_id, mz_name);
550         return (mz);
551 }
552
553 union igb_ring_dword {
554         uint64_t dword;
555         struct {
556                 uint32_t hi;
557                 uint32_t lo;
558         } words;
559 };
560
561 struct igb_ring_desc {
562         union igb_ring_dword lo_dword;
563         union igb_ring_dword hi_dword;
564 };
565
566 static void
567 ring_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
568 {
569         struct igb_ring_desc *ring;
570         struct igb_ring_desc rd;
571
572         ring = (struct igb_ring_desc *) ring_mz->addr;
573         rd.lo_dword = rte_le_to_cpu_64(ring[desc_id].lo_dword);
574         rd.hi_dword = rte_le_to_cpu_64(ring[desc_id].hi_dword);
575         printf("    0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
576                 (unsigned)rd.lo_dword.words.lo, (unsigned)rd.lo_dword.words.hi,
577                 (unsigned)rd.hi_dword.words.lo, (unsigned)rd.hi_dword.words.hi);
578 }
579
580 void
581 rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id)
582 {
583         const struct rte_memzone *rx_mz;
584
585         if (port_id_is_invalid(port_id))
586                 return;
587         if (rx_queue_id_is_invalid(rxq_id))
588                 return;
589         if (rx_desc_id_is_invalid(rxd_id))
590                 return;
591         rx_mz = ring_dma_zone_lookup("rx_ring", port_id, rxq_id);
592         if (rx_mz == NULL)
593                 return;
594         ring_descriptor_display(rx_mz, rxd_id);
595 }
596
597 void
598 tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id)
599 {
600         const struct rte_memzone *tx_mz;
601
602         if (port_id_is_invalid(port_id))
603                 return;
604         if (tx_queue_id_is_invalid(txq_id))
605                 return;
606         if (tx_desc_id_is_invalid(txd_id))
607                 return;
608         tx_mz = ring_dma_zone_lookup("tx_ring", port_id, txq_id);
609         if (tx_mz == NULL)
610                 return;
611         ring_descriptor_display(tx_mz, txd_id);
612 }
613
614 void
615 fwd_lcores_config_display(void)
616 {
617         lcoreid_t lc_id;
618
619         printf("List of forwarding lcores:");
620         for (lc_id = 0; lc_id < nb_cfg_lcores; lc_id++)
621                 printf(" %2u", fwd_lcores_cpuids[lc_id]);
622         printf("\n");
623 }
624 void
625 rxtx_config_display(void)
626 {
627         printf("  %s packet forwarding - CRC stripping %s - "
628                "packets/burst=%d\n", cur_fwd_eng->fwd_mode_name,
629                rx_mode.hw_strip_crc ? "enabled" : "disabled",
630                nb_pkt_per_burst);
631
632         if (cur_fwd_eng == &tx_only_engine)
633                 printf("  packet len=%u - nb packet segments=%d\n",
634                                 (unsigned)tx_pkt_length, (int) tx_pkt_nb_segs);
635
636         printf("  nb forwarding cores=%d - nb forwarding ports=%d\n",
637                nb_fwd_lcores, nb_fwd_ports);
638         printf("  RX queues=%d - RX desc=%d - RX free threshold=%d\n",
639                nb_rxq, nb_rxd, rx_free_thresh);
640         printf("  RX threshold registers: pthresh=%d hthresh=%d wthresh=%d\n",
641                rx_thresh.pthresh, rx_thresh.hthresh, rx_thresh.wthresh);
642         printf("  TX queues=%d - TX desc=%d - TX free threshold=%d\n",
643                nb_txq, nb_txd, tx_free_thresh);
644         printf("  TX threshold registers: pthresh=%d hthresh=%d wthresh=%d\n",
645                tx_thresh.pthresh, tx_thresh.hthresh, tx_thresh.wthresh);
646         printf("  TX RS bit threshold=%d - TXQ flags=0x%"PRIx32"\n",
647                tx_rs_thresh, txq_flags);
648 }
649
650 void
651 port_rss_reta_info(portid_t port_id,struct rte_eth_rss_reta *reta_conf)
652 {
653         uint8_t i,j;
654         int ret;
655
656         if (port_id_is_invalid(port_id)) 
657                 return;
658
659         ret = rte_eth_dev_rss_reta_query(port_id, reta_conf);
660         if (ret != 0) {
661                 printf("Failed to get RSS RETA info, return code = %d\n", ret);
662                 return;
663         }
664
665         if (reta_conf->mask_lo != 0) {
666                 for (i = 0; i< ETH_RSS_RETA_NUM_ENTRIES/2; i++) {
667                         if (reta_conf->mask_lo & (uint64_t)(1ULL << i))
668                                 printf("RSS RETA configuration: hash index=%d,"
669                                         "queue=%d\n",i,reta_conf->reta[i]);     
670                 }
671         }
672         
673         if (reta_conf->mask_hi != 0) {
674                 for (i = 0; i< ETH_RSS_RETA_NUM_ENTRIES/2; i++) {
675                         if(reta_conf->mask_hi & (uint64_t)(1ULL << i)) {
676                                 j = (uint8_t)(i + ETH_RSS_RETA_NUM_ENTRIES/2);          
677                                 printf("RSS RETA configuration: hash index=%d,"
678                                         "queue=%d\n",j,reta_conf->reta[j]);
679                         }
680                 }
681         }
682 }
683
684 /*
685  * Setup forwarding configuration for each logical core.
686  */
687 static void
688 setup_fwd_config_of_each_lcore(struct fwd_config *cfg)
689 {
690         streamid_t nb_fs_per_lcore;
691         streamid_t nb_fs;
692         streamid_t sm_id;
693         lcoreid_t  nb_extra;
694         lcoreid_t  nb_fc;
695         lcoreid_t  nb_lc;
696         lcoreid_t  lc_id;
697
698         nb_fs = cfg->nb_fwd_streams;
699         nb_fc = cfg->nb_fwd_lcores;
700         if (nb_fs <= nb_fc) {
701                 nb_fs_per_lcore = 1;
702                 nb_extra = 0;
703         } else {
704                 nb_fs_per_lcore = (streamid_t) (nb_fs / nb_fc);
705                 nb_extra = (lcoreid_t) (nb_fs % nb_fc);
706         }
707
708         nb_lc = (lcoreid_t) (nb_fc - nb_extra);
709         sm_id = 0;
710         for (lc_id = 0; lc_id < nb_lc; lc_id++) {
711                 fwd_lcores[lc_id]->stream_idx = sm_id;
712                 fwd_lcores[lc_id]->stream_nb = nb_fs_per_lcore;
713                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
714         }
715
716         /*
717          * Assign extra remaining streams, if any.
718          */
719         nb_fs_per_lcore = (streamid_t) (nb_fs_per_lcore + 1);
720         for (lc_id = 0; lc_id < nb_extra; lc_id++) {
721                 fwd_lcores[nb_lc + lc_id]->stream_idx = sm_id;
722                 fwd_lcores[nb_lc + lc_id]->stream_nb = nb_fs_per_lcore;
723                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
724         }
725 }
726
727 static void
728 simple_fwd_config_setup(void)
729 {
730         portid_t i;
731         portid_t j;
732         portid_t inc = 2;
733
734         if (port_topology == PORT_TOPOLOGY_CHAINED ||
735             port_topology == PORT_TOPOLOGY_LOOP) {
736                 inc = 1;
737         } else if (nb_fwd_ports % 2) {
738                 printf("\nWarning! Cannot handle an odd number of ports "
739                        "with the current port topology. Configuration "
740                        "must be changed to have an even number of ports, "
741                        "or relaunch application with "
742                        "--port-topology=chained\n\n");
743         }
744
745         cur_fwd_config.nb_fwd_ports = (portid_t) nb_fwd_ports;
746         cur_fwd_config.nb_fwd_streams =
747                 (streamid_t) cur_fwd_config.nb_fwd_ports;
748
749         /* reinitialize forwarding streams */
750         init_fwd_streams();
751
752         /*
753          * In the simple forwarding test, the number of forwarding cores
754          * must be lower or equal to the number of forwarding ports.
755          */
756         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
757         if (cur_fwd_config.nb_fwd_lcores > cur_fwd_config.nb_fwd_ports)
758                 cur_fwd_config.nb_fwd_lcores =
759                         (lcoreid_t) cur_fwd_config.nb_fwd_ports;
760         setup_fwd_config_of_each_lcore(&cur_fwd_config);
761
762         for (i = 0; i < cur_fwd_config.nb_fwd_ports; i = (portid_t) (i + inc)) {
763                 if (port_topology != PORT_TOPOLOGY_LOOP)
764                         j = (portid_t) ((i + 1) % cur_fwd_config.nb_fwd_ports);
765                 else
766                         j = i;
767                 fwd_streams[i]->rx_port   = fwd_ports_ids[i];
768                 fwd_streams[i]->rx_queue  = 0;
769                 fwd_streams[i]->tx_port   = fwd_ports_ids[j];
770                 fwd_streams[i]->tx_queue  = 0;
771                 fwd_streams[i]->peer_addr = j;
772
773                 if (port_topology == PORT_TOPOLOGY_PAIRED) {
774                         fwd_streams[j]->rx_port   = fwd_ports_ids[j];
775                         fwd_streams[j]->rx_queue  = 0;
776                         fwd_streams[j]->tx_port   = fwd_ports_ids[i];
777                         fwd_streams[j]->tx_queue  = 0;
778                         fwd_streams[j]->peer_addr = i;
779                 }
780         }
781 }
782
783 /**
784  * For the RSS forwarding test, each core is assigned on every port a transmit
785  * queue whose index is the index of the core itself. This approach limits the
786  * maximumm number of processing cores of the RSS test to the maximum number of
787  * TX queues supported by the devices.
788  *
789  * Each core is assigned a single stream, each stream being composed of
790  * a RX queue to poll on a RX port for input messages, associated with
791  * a TX queue of a TX port where to send forwarded packets.
792  * All packets received on the RX queue of index "RxQj" of the RX port "RxPi"
793  * are sent on the TX queue "TxQl" of the TX port "TxPk" according to the two
794  * following rules:
795  *    - TxPk = (RxPi + 1) if RxPi is even, (RxPi - 1) if RxPi is odd
796  *    - TxQl = RxQj
797  */
798 static void
799 rss_fwd_config_setup(void)
800 {
801         portid_t   rxp;
802         portid_t   txp;
803         queueid_t  rxq;
804         queueid_t  nb_q;
805         lcoreid_t  lc_id;
806
807         nb_q = nb_rxq;
808         if (nb_q > nb_txq)
809                 nb_q = nb_txq;
810         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
811         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
812         cur_fwd_config.nb_fwd_streams =
813                 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
814         if (cur_fwd_config.nb_fwd_streams > cur_fwd_config.nb_fwd_lcores)
815                 cur_fwd_config.nb_fwd_streams =
816                         (streamid_t)cur_fwd_config.nb_fwd_lcores;
817         else
818                 cur_fwd_config.nb_fwd_lcores =
819                         (lcoreid_t)cur_fwd_config.nb_fwd_streams;
820
821         /* reinitialize forwarding streams */
822         init_fwd_streams();
823
824         setup_fwd_config_of_each_lcore(&cur_fwd_config);
825         rxp = 0; rxq = 0;
826         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
827                 struct fwd_stream *fs;
828
829                 fs = fwd_streams[lc_id];
830
831                 if ((rxp & 0x1) == 0)
832                         txp = (portid_t) (rxp + 1);
833                 else
834                         txp = (portid_t) (rxp - 1);
835                 /*
836                  * if we are in loopback, simply send stuff out through the
837                  * ingress port
838                  */
839                 if (port_topology == PORT_TOPOLOGY_LOOP)
840                         txp = rxp;
841
842                 fs->rx_port = fwd_ports_ids[rxp];
843                 fs->rx_queue = rxq;
844                 fs->tx_port = fwd_ports_ids[txp];
845                 fs->tx_queue = rxq;
846                 fs->peer_addr = fs->tx_port;
847                 rxq = (queueid_t) (rxq + 1);
848                 if (rxq < nb_q)
849                         continue;
850                 /*
851                  * rxq == nb_q
852                  * Restart from RX queue 0 on next RX port
853                  */
854                 rxq = 0;
855                 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
856                         rxp = (portid_t)
857                                 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
858                 else
859                         rxp = (portid_t) (rxp + 1);
860         }
861 }
862
863 /*
864  * In DCB and VT on,the mapping of 128 receive queues to 128 transmit queues.
865  */
866 static void
867 dcb_rxq_2_txq_mapping(queueid_t rxq, queueid_t *txq)
868 {
869         if(dcb_q_mapping == DCB_4_TCS_Q_MAPPING) {
870
871                 if (rxq < 32)
872                         /* tc0: 0-31 */ 
873                         *txq = rxq;  
874                 else if (rxq < 64) {
875                         /* tc1: 64-95 */ 
876                         *txq =  (uint16_t)(rxq + 32);
877                 } 
878                 else {  
879                         /* tc2: 96-111;tc3:112-127 */
880                         *txq =  (uint16_t)(rxq/2 + 64);
881                 }
882         }
883         else {
884                 if (rxq < 16)
885                         /* tc0 mapping*/
886                         *txq = rxq;
887                 else if (rxq < 32) {
888                         /* tc1 mapping*/
889                          *txq = (uint16_t)(rxq + 16);
890                 }
891                 else if (rxq < 64) {
892                         /*tc2,tc3 mapping */
893                         *txq =  (uint16_t)(rxq + 32);
894                 }
895                 else {
896                         /* tc4,tc5,tc6 and tc7 mapping */
897                         *txq =  (uint16_t)(rxq/2 + 64);
898                 }
899         }
900 }
901
902 /**
903  * For the DCB forwarding test, each core is assigned on every port multi-transmit
904  * queue. 
905  *
906  * Each core is assigned a multi-stream, each stream being composed of
907  * a RX queue to poll on a RX port for input messages, associated with
908  * a TX queue of a TX port where to send forwarded packets.
909  * All packets received on the RX queue of index "RxQj" of the RX port "RxPi"
910  * are sent on the TX queue "TxQl" of the TX port "TxPk" according to the two
911  * following rules:
912  * In VT mode,
913  *    - TxPk = (RxPi + 1) if RxPi is even, (RxPi - 1) if RxPi is odd
914  *    - TxQl = RxQj
915  * In non-VT mode,
916  *    - TxPk = (RxPi + 1) if RxPi is even, (RxPi - 1) if RxPi is odd  
917  *    There is a mapping of RxQj to TxQl to be required,and the mapping was implemented
918  *    in dcb_rxq_2_txq_mapping function.
919  */
920 static void
921 dcb_fwd_config_setup(void)
922 {
923         portid_t   rxp;
924         portid_t   txp;
925         queueid_t  rxq;
926         queueid_t  nb_q;
927         lcoreid_t  lc_id;
928         uint16_t sm_id;
929
930         nb_q = nb_rxq;
931
932         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
933         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
934         cur_fwd_config.nb_fwd_streams = 
935                 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
936
937         /* reinitialize forwarding streams */
938         init_fwd_streams();
939
940         setup_fwd_config_of_each_lcore(&cur_fwd_config);
941         rxp = 0; rxq = 0;
942         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
943                 /* a fwd core can run multi-streams */
944                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++)
945                 {
946                         struct fwd_stream *fs;
947                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
948                         if ((rxp & 0x1) == 0)
949                                 txp = (portid_t) (rxp + 1);
950                         else
951                                 txp = (portid_t) (rxp - 1);
952                         fs->rx_port = fwd_ports_ids[rxp];
953                         fs->rx_queue = rxq;
954                         fs->tx_port = fwd_ports_ids[txp];
955                         if (dcb_q_mapping == DCB_VT_Q_MAPPING)
956                                 fs->tx_queue = rxq;
957                         else
958                                 dcb_rxq_2_txq_mapping(rxq, &fs->tx_queue);
959                         fs->peer_addr = fs->tx_port;
960                         rxq = (queueid_t) (rxq + 1);
961                         if (rxq < nb_q)
962                                 continue;
963                         rxq = 0;
964                         if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
965                                 rxp = (portid_t)
966                                         (rxp + ((nb_ports >> 1) / nb_fwd_ports));
967                         else
968                                 rxp = (portid_t) (rxp + 1);
969                 }
970         }
971 }
972
973 void
974 fwd_config_setup(void)
975 {
976         cur_fwd_config.fwd_eng = cur_fwd_eng;
977         if ((nb_rxq > 1) && (nb_txq > 1)){
978                 if (dcb_config)
979                         dcb_fwd_config_setup();
980                 else
981                         rss_fwd_config_setup();
982         }
983         else
984                 simple_fwd_config_setup();
985 }
986
987 static void
988 pkt_fwd_config_display(struct fwd_config *cfg)
989 {
990         struct fwd_stream *fs;
991         lcoreid_t  lc_id;
992         streamid_t sm_id;
993
994         printf("%s packet forwarding - ports=%d - cores=%d - streams=%d - "
995                 "NUMA support %s, MP over anonymous pages %s\n",
996                 cfg->fwd_eng->fwd_mode_name,
997                 cfg->nb_fwd_ports, cfg->nb_fwd_lcores, cfg->nb_fwd_streams,
998                 numa_support == 1 ? "enabled" : "disabled",
999                 mp_anon != 0 ? "enabled" : "disabled");
1000
1001         if (strcmp(cfg->fwd_eng->fwd_mode_name, "mac_retry") == 0)
1002                 printf("TX retry num: %u, delay between TX retries: %uus\n",
1003                         burst_tx_retry_num, burst_tx_delay_time);
1004         for (lc_id = 0; lc_id < cfg->nb_fwd_lcores; lc_id++) {
1005                 printf("Logical Core %u (socket %u) forwards packets on "
1006                        "%d streams:",
1007                        fwd_lcores_cpuids[lc_id],
1008                        rte_lcore_to_socket_id(fwd_lcores_cpuids[lc_id]),
1009                        fwd_lcores[lc_id]->stream_nb);
1010                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
1011                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
1012                         printf("\n  RX P=%d/Q=%d (socket %u) -> TX "
1013                                "P=%d/Q=%d (socket %u) ",
1014                                fs->rx_port, fs->rx_queue,
1015                                ports[fs->rx_port].socket_id,
1016                                fs->tx_port, fs->tx_queue,
1017                                ports[fs->tx_port].socket_id);
1018                         print_ethaddr("peer=",
1019                                       &peer_eth_addrs[fs->peer_addr]);
1020                 }
1021                 printf("\n");
1022         }
1023         printf("\n");
1024 }
1025
1026
1027 void
1028 fwd_config_display(void)
1029 {
1030         if((dcb_config) && (nb_fwd_lcores == 1)) {
1031                 printf("In DCB mode,the nb forwarding cores should be larger than 1\n");
1032                 return;
1033         } 
1034         fwd_config_setup();
1035         pkt_fwd_config_display(&cur_fwd_config);
1036 }
1037
1038 int
1039 set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
1040 {
1041         unsigned int i;
1042         unsigned int lcore_cpuid;
1043         int record_now;
1044
1045         record_now = 0;
1046  again:
1047         for (i = 0; i < nb_lc; i++) {
1048                 lcore_cpuid = lcorelist[i];
1049                 if (! rte_lcore_is_enabled(lcore_cpuid)) {
1050                         printf("lcore %u not enabled\n", lcore_cpuid);
1051                         return -1;
1052                 }
1053                 if (lcore_cpuid == rte_get_master_lcore()) {
1054                         printf("lcore %u cannot be masked on for running "
1055                                "packet forwarding, which is the master lcore "
1056                                "and reserved for command line parsing only\n",
1057                                lcore_cpuid);
1058                         return -1;
1059                 }
1060                 if (record_now)
1061                         fwd_lcores_cpuids[i] = lcore_cpuid;
1062         }
1063         if (record_now == 0) {
1064                 record_now = 1;
1065                 goto again;
1066         }
1067         nb_cfg_lcores = (lcoreid_t) nb_lc;
1068         if (nb_fwd_lcores != (lcoreid_t) nb_lc) {
1069                 printf("previous number of forwarding cores %u - changed to "
1070                        "number of configured cores %u\n",
1071                        (unsigned int) nb_fwd_lcores, nb_lc);
1072                 nb_fwd_lcores = (lcoreid_t) nb_lc;
1073         }
1074
1075         return 0;
1076 }
1077
1078 int
1079 set_fwd_lcores_mask(uint64_t lcoremask)
1080 {
1081         unsigned int lcorelist[64];
1082         unsigned int nb_lc;
1083         unsigned int i;
1084
1085         if (lcoremask == 0) {
1086                 printf("Invalid NULL mask of cores\n");
1087                 return -1;
1088         }
1089         nb_lc = 0;
1090         for (i = 0; i < 64; i++) {
1091                 if (! ((uint64_t)(1ULL << i) & lcoremask))
1092                         continue;
1093                 lcorelist[nb_lc++] = i;
1094         }
1095         return set_fwd_lcores_list(lcorelist, nb_lc);
1096 }
1097
1098 void
1099 set_fwd_lcores_number(uint16_t nb_lc)
1100 {
1101         if (nb_lc > nb_cfg_lcores) {
1102                 printf("nb fwd cores %u > %u (max. number of configured "
1103                        "lcores) - ignored\n",
1104                        (unsigned int) nb_lc, (unsigned int) nb_cfg_lcores);
1105                 return;
1106         }
1107         nb_fwd_lcores = (lcoreid_t) nb_lc;
1108         printf("Number of forwarding cores set to %u\n",
1109                (unsigned int) nb_fwd_lcores);
1110 }
1111
1112 void
1113 set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt)
1114 {
1115         unsigned int i;
1116         portid_t port_id;
1117         int record_now;
1118
1119         record_now = 0;
1120  again:
1121         for (i = 0; i < nb_pt; i++) {
1122                 port_id = (portid_t) portlist[i];
1123                 if (port_id >= nb_ports) {
1124                         printf("Invalid port id %u >= %u\n",
1125                                (unsigned int) port_id,
1126                                (unsigned int) nb_ports);
1127                         return;
1128                 }
1129                 if (record_now)
1130                         fwd_ports_ids[i] = port_id;
1131         }
1132         if (record_now == 0) {
1133                 record_now = 1;
1134                 goto again;
1135         }
1136         nb_cfg_ports = (portid_t) nb_pt;
1137         if (nb_fwd_ports != (portid_t) nb_pt) {
1138                 printf("previous number of forwarding ports %u - changed to "
1139                        "number of configured ports %u\n",
1140                        (unsigned int) nb_fwd_ports, nb_pt);
1141                 nb_fwd_ports = (portid_t) nb_pt;
1142         }
1143 }
1144
1145 void
1146 set_fwd_ports_mask(uint64_t portmask)
1147 {
1148         unsigned int portlist[64];
1149         unsigned int nb_pt;
1150         unsigned int i;
1151
1152         if (portmask == 0) {
1153                 printf("Invalid NULL mask of ports\n");
1154                 return;
1155         }
1156         nb_pt = 0;
1157         for (i = 0; i < 64; i++) {
1158                 if (! ((uint64_t)(1ULL << i) & portmask))
1159                         continue;
1160                 portlist[nb_pt++] = i;
1161         }
1162         set_fwd_ports_list(portlist, nb_pt);
1163 }
1164
1165 void
1166 set_fwd_ports_number(uint16_t nb_pt)
1167 {
1168         if (nb_pt > nb_cfg_ports) {
1169                 printf("nb fwd ports %u > %u (number of configured "
1170                        "ports) - ignored\n",
1171                        (unsigned int) nb_pt, (unsigned int) nb_cfg_ports);
1172                 return;
1173         }
1174         nb_fwd_ports = (portid_t) nb_pt;
1175         printf("Number of forwarding ports set to %u\n",
1176                (unsigned int) nb_fwd_ports);
1177 }
1178
1179 void
1180 set_nb_pkt_per_burst(uint16_t nb)
1181 {
1182         if (nb > MAX_PKT_BURST) {
1183                 printf("nb pkt per burst: %u > %u (maximum packet per burst) "
1184                        " ignored\n",
1185                        (unsigned int) nb, (unsigned int) MAX_PKT_BURST);
1186                 return;
1187         }
1188         nb_pkt_per_burst = nb;
1189         printf("Number of packets per burst set to %u\n",
1190                (unsigned int) nb_pkt_per_burst);
1191 }
1192
1193 void
1194 set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs)
1195 {
1196         uint16_t tx_pkt_len;
1197         unsigned i;
1198
1199         if (nb_segs >= (unsigned) nb_txd) {
1200                 printf("nb segments per TX packets=%u >= nb_txd=%u - ignored\n",
1201                        nb_segs, (unsigned int) nb_txd);
1202                 return;
1203         }
1204
1205         /*
1206          * Check that each segment length is greater or equal than
1207          * the mbuf data sise.
1208          * Check also that the total packet length is greater or equal than the
1209          * size of an empty UDP/IP packet (sizeof(struct ether_hdr) + 20 + 8).
1210          */
1211         tx_pkt_len = 0;
1212         for (i = 0; i < nb_segs; i++) {
1213                 if (seg_lengths[i] > (unsigned) mbuf_data_size) {
1214                         printf("length[%u]=%u > mbuf_data_size=%u - give up\n",
1215                                i, seg_lengths[i], (unsigned) mbuf_data_size);
1216                         return;
1217                 }
1218                 tx_pkt_len = (uint16_t)(tx_pkt_len + seg_lengths[i]);
1219         }
1220         if (tx_pkt_len < (sizeof(struct ether_hdr) + 20 + 8)) {
1221                 printf("total packet length=%u < %d - give up\n",
1222                                 (unsigned) tx_pkt_len,
1223                                 (int)(sizeof(struct ether_hdr) + 20 + 8));
1224                 return;
1225         }
1226
1227         for (i = 0; i < nb_segs; i++)
1228                 tx_pkt_seg_lengths[i] = (uint16_t) seg_lengths[i];
1229
1230         tx_pkt_length  = tx_pkt_len;
1231         tx_pkt_nb_segs = (uint8_t) nb_segs;
1232 }
1233
1234 char*
1235 list_pkt_forwarding_modes(void)
1236 {
1237         static char fwd_modes[128] = "";
1238         const char *separator = "|";
1239         struct fwd_engine *fwd_eng;
1240         unsigned i = 0;
1241
1242         if (strlen (fwd_modes) == 0) {
1243                 while ((fwd_eng = fwd_engines[i++]) != NULL) {
1244                         strcat(fwd_modes, fwd_eng->fwd_mode_name);
1245                         strcat(fwd_modes, separator);
1246                 }
1247                 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
1248         }
1249
1250         return fwd_modes;
1251 }
1252
1253 void
1254 set_pkt_forwarding_mode(const char *fwd_mode_name)
1255 {
1256         struct fwd_engine *fwd_eng;
1257         unsigned i;
1258
1259         i = 0;
1260         while ((fwd_eng = fwd_engines[i]) != NULL) {
1261                 if (! strcmp(fwd_eng->fwd_mode_name, fwd_mode_name)) {
1262                         printf("Set %s packet forwarding mode\n",
1263                                fwd_mode_name);
1264                         cur_fwd_eng = fwd_eng;
1265                         return;
1266                 }
1267                 i++;
1268         }
1269         printf("Invalid %s packet forwarding mode\n", fwd_mode_name);
1270 }
1271
1272 void
1273 set_verbose_level(uint16_t vb_level)
1274 {
1275         printf("Change verbose level from %u to %u\n",
1276                (unsigned int) verbose_level, (unsigned int) vb_level);
1277         verbose_level = vb_level;
1278 }
1279
1280 void
1281 vlan_extend_set(portid_t port_id, int on)
1282 {
1283         int diag;
1284         int vlan_offload;
1285
1286         if (port_id_is_invalid(port_id))
1287                 return;
1288
1289         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
1290
1291         if (on)
1292                 vlan_offload |= ETH_VLAN_EXTEND_OFFLOAD;
1293         else
1294                 vlan_offload &= ~ETH_VLAN_EXTEND_OFFLOAD;
1295
1296         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
1297         if (diag < 0)
1298                 printf("rx_vlan_extend_set(port_pi=%d, on=%d) failed "
1299                "diag=%d\n", port_id, on, diag);
1300 }
1301
1302 void
1303 rx_vlan_strip_set(portid_t port_id, int on)
1304 {
1305         int diag;
1306         int vlan_offload;
1307
1308         if (port_id_is_invalid(port_id))
1309                 return;
1310
1311         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
1312
1313         if (on)
1314                 vlan_offload |= ETH_VLAN_STRIP_OFFLOAD;
1315         else
1316                 vlan_offload &= ~ETH_VLAN_STRIP_OFFLOAD;
1317
1318         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
1319         if (diag < 0)
1320                 printf("rx_vlan_strip_set(port_pi=%d, on=%d) failed "
1321                "diag=%d\n", port_id, on, diag);
1322 }
1323
1324 void
1325 rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on)
1326 {
1327         int diag;
1328
1329         if (port_id_is_invalid(port_id))
1330                 return;
1331
1332         diag = rte_eth_dev_set_vlan_strip_on_queue(port_id, queue_id, on);
1333         if (diag < 0)
1334                 printf("rx_vlan_strip_set_on_queue(port_pi=%d, queue_id=%d, on=%d) failed "
1335                "diag=%d\n", port_id, queue_id, on, diag);
1336 }
1337
1338 void
1339 rx_vlan_filter_set(portid_t port_id, int on)
1340 {
1341         int diag;
1342         int vlan_offload;
1343
1344         if (port_id_is_invalid(port_id))
1345                 return;
1346
1347         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
1348
1349         if (on)
1350                 vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
1351         else
1352                 vlan_offload &= ~ETH_VLAN_FILTER_OFFLOAD;
1353
1354         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
1355         if (diag < 0)
1356                 printf("rx_vlan_filter_set(port_pi=%d, on=%d) failed "
1357                "diag=%d\n", port_id, on, diag);
1358 }
1359
1360 void
1361 rx_vft_set(portid_t port_id, uint16_t vlan_id, int on)
1362 {
1363         int diag;
1364
1365         if (port_id_is_invalid(port_id))
1366                 return;
1367         if (vlan_id_is_invalid(vlan_id))
1368                 return;
1369         diag = rte_eth_dev_vlan_filter(port_id, vlan_id, on);
1370         if (diag == 0)
1371                 return;
1372         printf("rte_eth_dev_vlan_filter(port_pi=%d, vlan_id=%d, on=%d) failed "
1373                "diag=%d\n",
1374                port_id, vlan_id, on, diag);
1375 }
1376
1377 void
1378 rx_vlan_all_filter_set(portid_t port_id, int on)
1379 {
1380         uint16_t vlan_id;
1381
1382         if (port_id_is_invalid(port_id))
1383                 return;
1384         for (vlan_id = 0; vlan_id < 4096; vlan_id++)
1385                 rx_vft_set(port_id, vlan_id, on);
1386 }
1387
1388 void
1389 vlan_tpid_set(portid_t port_id, uint16_t tp_id)
1390 {
1391         int diag;
1392         if (port_id_is_invalid(port_id))
1393                 return;
1394
1395         diag = rte_eth_dev_set_vlan_ether_type(port_id, tp_id);
1396         if (diag == 0)
1397                 return;
1398
1399         printf("tx_vlan_tpid_set(port_pi=%d, tpid=%d) failed "
1400                "diag=%d\n",
1401                port_id, tp_id, diag);
1402 }
1403
1404 void
1405 tx_vlan_set(portid_t port_id, uint16_t vlan_id)
1406 {
1407         if (port_id_is_invalid(port_id))
1408                 return;
1409         if (vlan_id_is_invalid(vlan_id))
1410                 return;
1411         ports[port_id].tx_ol_flags |= PKT_TX_VLAN_PKT;
1412         ports[port_id].tx_vlan_id = vlan_id;
1413 }
1414
1415 void
1416 tx_vlan_reset(portid_t port_id)
1417 {
1418         if (port_id_is_invalid(port_id))
1419                 return;
1420         ports[port_id].tx_ol_flags &= ~PKT_TX_VLAN_PKT;
1421 }
1422
1423 void
1424 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
1425 {
1426         uint16_t i;
1427         uint8_t existing_mapping_found = 0;
1428
1429         if (port_id_is_invalid(port_id))
1430                 return;
1431
1432         if (is_rx ? (rx_queue_id_is_invalid(queue_id)) : (tx_queue_id_is_invalid(queue_id)))
1433                 return;
1434
1435         if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
1436                 printf("map_value not in required range 0..%d\n",
1437                                 RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
1438                 return;
1439         }
1440
1441         if (!is_rx) { /*then tx*/
1442                 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
1443                         if ((tx_queue_stats_mappings[i].port_id == port_id) &&
1444                             (tx_queue_stats_mappings[i].queue_id == queue_id)) {
1445                                 tx_queue_stats_mappings[i].stats_counter_id = map_value;
1446                                 existing_mapping_found = 1;
1447                                 break;
1448                         }
1449                 }
1450                 if (!existing_mapping_found) { /* A new additional mapping... */
1451                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
1452                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
1453                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
1454                         nb_tx_queue_stats_mappings++;
1455                 }
1456         }
1457         else { /*rx*/
1458                 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
1459                         if ((rx_queue_stats_mappings[i].port_id == port_id) &&
1460                             (rx_queue_stats_mappings[i].queue_id == queue_id)) {
1461                                 rx_queue_stats_mappings[i].stats_counter_id = map_value;
1462                                 existing_mapping_found = 1;
1463                                 break;
1464                         }
1465                 }
1466                 if (!existing_mapping_found) { /* A new additional mapping... */
1467                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
1468                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
1469                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
1470                         nb_rx_queue_stats_mappings++;
1471                 }
1472         }
1473 }
1474
1475 void
1476 tx_cksum_set(portid_t port_id, uint8_t cksum_mask)
1477 {
1478         uint16_t tx_ol_flags;
1479         if (port_id_is_invalid(port_id))
1480                 return;
1481         /* Clear last 4 bits and then set L3/4 checksum mask again */
1482         tx_ol_flags = (uint16_t) (ports[port_id].tx_ol_flags & 0xFFF0);
1483         ports[port_id].tx_ol_flags = (uint16_t) ((cksum_mask & 0xf) | tx_ol_flags);
1484 }
1485
1486 void
1487 fdir_add_signature_filter(portid_t port_id, uint8_t queue_id,
1488                           struct rte_fdir_filter *fdir_filter)
1489 {
1490         int diag;
1491
1492         if (port_id_is_invalid(port_id))
1493                 return;
1494
1495         diag = rte_eth_dev_fdir_add_signature_filter(port_id, fdir_filter,
1496                                                      queue_id);
1497         if (diag == 0)
1498                 return;
1499
1500         printf("rte_eth_dev_fdir_add_signature_filter for port_id=%d failed "
1501                "diag=%d\n", port_id, diag);
1502 }
1503
1504 void
1505 fdir_update_signature_filter(portid_t port_id, uint8_t queue_id,
1506                              struct rte_fdir_filter *fdir_filter)
1507 {
1508         int diag;
1509
1510         if (port_id_is_invalid(port_id))
1511                 return;
1512
1513         diag = rte_eth_dev_fdir_update_signature_filter(port_id, fdir_filter,
1514                                                         queue_id);
1515         if (diag == 0)
1516                 return;
1517
1518         printf("rte_eth_dev_fdir_update_signature_filter for port_id=%d failed "
1519                "diag=%d\n", port_id, diag);
1520 }
1521
1522 void
1523 fdir_remove_signature_filter(portid_t port_id,
1524                              struct rte_fdir_filter *fdir_filter)
1525 {
1526         int diag;
1527
1528         if (port_id_is_invalid(port_id))
1529                 return;
1530
1531         diag = rte_eth_dev_fdir_remove_signature_filter(port_id, fdir_filter);
1532         if (diag == 0)
1533                 return;
1534
1535         printf("rte_eth_dev_fdir_add_signature_filter for port_id=%d failed "
1536                "diag=%d\n", port_id, diag);
1537
1538 }
1539
1540 void
1541 fdir_get_infos(portid_t port_id)
1542 {
1543         struct rte_eth_fdir fdir_infos;
1544
1545         static const char *fdir_stats_border = "########################";
1546
1547         if (port_id_is_invalid(port_id))
1548                 return;
1549
1550         rte_eth_dev_fdir_get_infos(port_id, &fdir_infos);
1551
1552         printf("\n  %s FDIR infos for port %-2d     %s\n",
1553                fdir_stats_border, port_id, fdir_stats_border);
1554
1555         printf("  collision: %-10"PRIu64"  free:     %"PRIu64"\n"
1556                "  maxhash:   %-10"PRIu64"  maxlen:   %"PRIu64"\n"
1557                "  add:       %-10"PRIu64"  remove:   %"PRIu64"\n"
1558                "  f_add:     %-10"PRIu64"  f_remove: %"PRIu64"\n",
1559                (uint64_t)(fdir_infos.collision), (uint64_t)(fdir_infos.free),
1560                (uint64_t)(fdir_infos.maxhash), (uint64_t)(fdir_infos.maxlen),
1561                fdir_infos.add, fdir_infos.remove,
1562                fdir_infos.f_add, fdir_infos.f_remove);
1563         printf("  %s############################%s\n",
1564                fdir_stats_border, fdir_stats_border);
1565 }
1566
1567 void
1568 fdir_add_perfect_filter(portid_t port_id, uint16_t soft_id, uint8_t queue_id,
1569                         uint8_t drop, struct rte_fdir_filter *fdir_filter)
1570 {
1571         int diag;
1572
1573         if (port_id_is_invalid(port_id))
1574                 return;
1575
1576         diag = rte_eth_dev_fdir_add_perfect_filter(port_id, fdir_filter,
1577                                                    soft_id, queue_id, drop);
1578         if (diag == 0)
1579                 return;
1580
1581         printf("rte_eth_dev_fdir_add_perfect_filter for port_id=%d failed "
1582                "diag=%d\n", port_id, diag);
1583 }
1584
1585 void
1586 fdir_update_perfect_filter(portid_t port_id, uint16_t soft_id, uint8_t queue_id,
1587                            uint8_t drop, struct rte_fdir_filter *fdir_filter)
1588 {
1589         int diag;
1590
1591         if (port_id_is_invalid(port_id))
1592                 return;
1593
1594         diag = rte_eth_dev_fdir_update_perfect_filter(port_id, fdir_filter,
1595                                                       soft_id, queue_id, drop);
1596         if (diag == 0)
1597                 return;
1598
1599         printf("rte_eth_dev_fdir_update_perfect_filter for port_id=%d failed "
1600                "diag=%d\n", port_id, diag);
1601 }
1602
1603 void
1604 fdir_remove_perfect_filter(portid_t port_id, uint16_t soft_id,
1605                            struct rte_fdir_filter *fdir_filter)
1606 {
1607         int diag;
1608
1609         if (port_id_is_invalid(port_id))
1610                 return;
1611
1612         diag = rte_eth_dev_fdir_remove_perfect_filter(port_id, fdir_filter,
1613                                                       soft_id);
1614         if (diag == 0)
1615                 return;
1616
1617         printf("rte_eth_dev_fdir_update_perfect_filter for port_id=%d failed "
1618                "diag=%d\n", port_id, diag);
1619 }
1620
1621 void
1622 fdir_set_masks(portid_t port_id, struct rte_fdir_masks *fdir_masks)
1623 {
1624         int diag;
1625
1626         if (port_id_is_invalid(port_id))
1627                 return;
1628
1629         diag = rte_eth_dev_fdir_set_masks(port_id, fdir_masks);
1630         if (diag == 0)
1631                 return;
1632
1633         printf("rte_eth_dev_set_masks_filter for port_id=%d failed "
1634                "diag=%d\n", port_id, diag);
1635 }
1636
1637 void 
1638 set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on)
1639 {
1640         int diag;
1641         
1642         if (port_id_is_invalid(port_id))
1643                 return;
1644         if (is_rx)
1645                 diag = rte_eth_dev_set_vf_rx(port_id,vf,on);
1646         else
1647                 diag = rte_eth_dev_set_vf_tx(port_id,vf,on);
1648         if (diag == 0)
1649                 return;
1650         if(is_rx)       
1651                 printf("rte_eth_dev_set_vf_rx for port_id=%d failed "
1652                         "diag=%d\n", port_id, diag);
1653         else
1654                 printf("rte_eth_dev_set_vf_tx for port_id=%d failed "
1655                         "diag=%d\n", port_id, diag);
1656                 
1657 }
1658
1659 void
1660 set_vf_rx_vlan(portid_t port_id, uint16_t vlan_id, uint64_t vf_mask, uint8_t on)
1661 {
1662         int diag;
1663
1664         if (port_id_is_invalid(port_id))
1665                 return;
1666         if (vlan_id_is_invalid(vlan_id))
1667                 return;
1668         diag = rte_eth_dev_set_vf_vlan_filter(port_id, vlan_id, vf_mask, on);
1669         if (diag == 0)
1670                 return;
1671         printf("rte_eth_dev_set_vf_vlan_filter for port_id=%d failed "
1672                "diag=%d\n", port_id, diag);
1673 }
1674