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