4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
35 * Copyright 2013-2014 6WIND S.A.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
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
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.
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.
72 #include <sys/queue.h>
74 #include <rte_common.h>
75 #include <rte_byteorder.h>
76 #include <rte_debug.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>
84 #include <rte_per_lcore.h>
85 #include <rte_lcore.h>
86 #include <rte_atomic.h>
87 #include <rte_branch_prediction.h>
89 #include <rte_mempool.h>
91 #include <rte_interrupts.h>
93 #include <rte_ether.h>
94 #include <rte_ethdev.h>
95 #include <rte_string_fns.h>
99 static const char *flowtype_str[RTE_ETH_FLOW_TYPE_MAX] = {
115 print_ethaddr(const char *name, struct ether_addr *eth_addr)
117 char buf[ETHER_ADDR_FMT_SIZE];
118 ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
119 printf("%s%s", name, buf);
123 nic_stats_display(portid_t port_id)
125 struct rte_eth_stats stats;
126 struct rte_port *port = &ports[port_id];
129 static const char *nic_stats_border = "########################";
131 if (port_id >= nb_ports) {
132 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
135 rte_eth_stats_get(port_id, &stats);
136 printf("\n %s NIC statistics for port %-2d %s\n",
137 nic_stats_border, port_id, nic_stats_border);
139 if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
140 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: "
142 stats.ipackets, stats.imissed, stats.ibytes);
143 printf(" RX-badcrc: %-10"PRIu64" RX-badlen: %-10"PRIu64" RX-errors: "
145 stats.ibadcrc, stats.ibadlen, stats.ierrors);
146 printf(" RX-nombuf: %-10"PRIu64"\n",
148 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: "
150 stats.opackets, stats.oerrors, stats.obytes);
153 printf(" RX-packets: %10"PRIu64" RX-errors: %10"PRIu64
154 " RX-bytes: %10"PRIu64"\n",
155 stats.ipackets, stats.ierrors, stats.ibytes);
156 printf(" RX-badcrc: %10"PRIu64" RX-badlen: %10"PRIu64
157 " RX-errors: %10"PRIu64"\n",
158 stats.ibadcrc, stats.ibadlen, stats.ierrors);
159 printf(" RX-nombuf: %10"PRIu64"\n",
161 printf(" TX-packets: %10"PRIu64" TX-errors: %10"PRIu64
162 " TX-bytes: %10"PRIu64"\n",
163 stats.opackets, stats.oerrors, stats.obytes);
167 if (fdir_conf.mode != RTE_FDIR_MODE_NONE)
168 printf(" Fdirmiss: %-10"PRIu64" Fdirmatch: %-10"PRIu64"\n",
172 if (port->rx_queue_stats_mapping_enabled) {
174 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
175 printf(" Stats reg %2d RX-packets: %10"PRIu64
176 " RX-errors: %10"PRIu64
177 " RX-bytes: %10"PRIu64"\n",
178 i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
181 if (port->tx_queue_stats_mapping_enabled) {
183 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
184 printf(" Stats reg %2d TX-packets: %10"PRIu64
185 " TX-bytes: %10"PRIu64"\n",
186 i, stats.q_opackets[i], stats.q_obytes[i]);
190 /* Display statistics of XON/XOFF pause frames, if any. */
191 if ((stats.tx_pause_xon | stats.rx_pause_xon |
192 stats.tx_pause_xoff | stats.rx_pause_xoff) > 0) {
193 printf(" RX-XOFF: %-10"PRIu64" RX-XON: %-10"PRIu64"\n",
194 stats.rx_pause_xoff, stats.rx_pause_xon);
195 printf(" TX-XOFF: %-10"PRIu64" TX-XON: %-10"PRIu64"\n",
196 stats.tx_pause_xoff, stats.tx_pause_xon);
198 printf(" %s############################%s\n",
199 nic_stats_border, nic_stats_border);
203 nic_stats_clear(portid_t port_id)
205 if (port_id >= nb_ports) {
206 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
209 rte_eth_stats_reset(port_id);
210 printf("\n NIC statistics for port %d cleared\n", port_id);
214 nic_xstats_display(portid_t port_id)
216 struct rte_eth_xstats *xstats;
219 printf("###### NIC extended statistics for port %-2d\n", port_id);
221 len = rte_eth_xstats_get(port_id, NULL, 0);
223 printf("Cannot get xstats count\n");
226 xstats = malloc(sizeof(xstats[0]) * len);
227 if (xstats == NULL) {
228 printf("Cannot allocate memory for xstats\n");
231 ret = rte_eth_xstats_get(port_id, xstats, len);
232 if (ret < 0 || ret > len) {
233 printf("Cannot get xstats\n");
237 for (i = 0; i < len; i++)
238 printf("%s: %"PRIu64"\n", xstats[i].name, xstats[i].value);
243 nic_xstats_clear(portid_t port_id)
245 rte_eth_xstats_reset(port_id);
249 nic_stats_mapping_display(portid_t port_id)
251 struct rte_port *port = &ports[port_id];
254 static const char *nic_stats_mapping_border = "########################";
256 if (port_id >= nb_ports) {
257 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
261 if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
262 printf("Port id %d - either does not support queue statistic mapping or"
263 " no queue statistic mapping set\n", port_id);
267 printf("\n %s NIC statistics mapping for port %-2d %s\n",
268 nic_stats_mapping_border, port_id, nic_stats_mapping_border);
270 if (port->rx_queue_stats_mapping_enabled) {
271 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
272 if (rx_queue_stats_mappings[i].port_id == port_id) {
273 printf(" RX-queue %2d mapped to Stats Reg %2d\n",
274 rx_queue_stats_mappings[i].queue_id,
275 rx_queue_stats_mappings[i].stats_counter_id);
282 if (port->tx_queue_stats_mapping_enabled) {
283 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
284 if (tx_queue_stats_mappings[i].port_id == port_id) {
285 printf(" TX-queue %2d mapped to Stats Reg %2d\n",
286 tx_queue_stats_mappings[i].queue_id,
287 tx_queue_stats_mappings[i].stats_counter_id);
292 printf(" %s####################################%s\n",
293 nic_stats_mapping_border, nic_stats_mapping_border);
297 port_infos_display(portid_t port_id)
299 struct rte_port *port;
300 struct ether_addr mac_addr;
301 struct rte_eth_link link;
302 struct rte_eth_dev_info dev_info;
304 struct rte_mempool * mp;
305 static const char *info_border = "*********************";
307 if (port_id >= nb_ports) {
308 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
311 port = &ports[port_id];
312 rte_eth_link_get_nowait(port_id, &link);
313 printf("\n%s Infos for port %-2d %s\n",
314 info_border, port_id, info_border);
315 rte_eth_macaddr_get(port_id, &mac_addr);
316 print_ethaddr("MAC address: ", &mac_addr);
317 printf("\nConnect to socket: %u", port->socket_id);
319 if (port_numa[port_id] != NUMA_NO_CONFIG) {
320 mp = mbuf_pool_find(port_numa[port_id]);
322 printf("\nmemory allocation on the socket: %d",
325 printf("\nmemory allocation on the socket: %u",port->socket_id);
327 printf("\nLink status: %s\n", (link.link_status) ? ("up") : ("down"));
328 printf("Link speed: %u Mbps\n", (unsigned) link.link_speed);
329 printf("Link duplex: %s\n", (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
330 ("full-duplex") : ("half-duplex"));
331 printf("Promiscuous mode: %s\n",
332 rte_eth_promiscuous_get(port_id) ? "enabled" : "disabled");
333 printf("Allmulticast mode: %s\n",
334 rte_eth_allmulticast_get(port_id) ? "enabled" : "disabled");
335 printf("Maximum number of MAC addresses: %u\n",
336 (unsigned int)(port->dev_info.max_mac_addrs));
337 printf("Maximum number of MAC addresses of hash filtering: %u\n",
338 (unsigned int)(port->dev_info.max_hash_mac_addrs));
340 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
341 if (vlan_offload >= 0){
342 printf("VLAN offload: \n");
343 if (vlan_offload & ETH_VLAN_STRIP_OFFLOAD)
344 printf(" strip on \n");
346 printf(" strip off \n");
348 if (vlan_offload & ETH_VLAN_FILTER_OFFLOAD)
349 printf(" filter on \n");
351 printf(" filter off \n");
353 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)
354 printf(" qinq(extend) on \n");
356 printf(" qinq(extend) off \n");
359 memset(&dev_info, 0, sizeof(dev_info));
360 rte_eth_dev_info_get(port_id, &dev_info);
361 if (dev_info.reta_size > 0)
362 printf("Redirection table size: %u\n", dev_info.reta_size);
366 port_id_is_invalid(portid_t port_id)
368 if (port_id < nb_ports)
370 printf("Invalid port %d (must be < nb_ports=%d)\n", port_id, nb_ports);
375 vlan_id_is_invalid(uint16_t vlan_id)
379 printf("Invalid vlan_id %d (must be < 4096)\n", vlan_id);
384 port_reg_off_is_invalid(portid_t port_id, uint32_t reg_off)
389 printf("Port register offset 0x%X not aligned on a 4-byte "
394 pci_len = ports[port_id].dev_info.pci_dev->mem_resource[0].len;
395 if (reg_off >= pci_len) {
396 printf("Port %d: register offset %u (0x%X) out of port PCI "
397 "resource (length=%"PRIu64")\n",
398 port_id, (unsigned)reg_off, (unsigned)reg_off, pci_len);
405 reg_bit_pos_is_invalid(uint8_t bit_pos)
409 printf("Invalid bit position %d (must be <= 31)\n", bit_pos);
413 #define display_port_and_reg_off(port_id, reg_off) \
414 printf("port %d PCI register at offset 0x%X: ", (port_id), (reg_off))
417 display_port_reg_value(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
419 display_port_and_reg_off(port_id, (unsigned)reg_off);
420 printf("0x%08X (%u)\n", (unsigned)reg_v, (unsigned)reg_v);
424 port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_x)
429 if (port_id_is_invalid(port_id))
431 if (port_reg_off_is_invalid(port_id, reg_off))
433 if (reg_bit_pos_is_invalid(bit_x))
435 reg_v = port_id_pci_reg_read(port_id, reg_off);
436 display_port_and_reg_off(port_id, (unsigned)reg_off);
437 printf("bit %d=%d\n", bit_x, (int) ((reg_v & (1 << bit_x)) >> bit_x));
441 port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
442 uint8_t bit1_pos, uint8_t bit2_pos)
448 if (port_id_is_invalid(port_id))
450 if (port_reg_off_is_invalid(port_id, reg_off))
452 if (reg_bit_pos_is_invalid(bit1_pos))
454 if (reg_bit_pos_is_invalid(bit2_pos))
456 if (bit1_pos > bit2_pos)
457 l_bit = bit2_pos, h_bit = bit1_pos;
459 l_bit = bit1_pos, h_bit = bit2_pos;
461 reg_v = port_id_pci_reg_read(port_id, reg_off);
464 reg_v &= ((1 << (h_bit - l_bit + 1)) - 1);
465 display_port_and_reg_off(port_id, (unsigned)reg_off);
466 printf("bits[%d, %d]=0x%0*X (%u)\n", l_bit, h_bit,
467 ((h_bit - l_bit) / 4) + 1, (unsigned)reg_v, (unsigned)reg_v);
471 port_reg_display(portid_t port_id, uint32_t reg_off)
475 if (port_id_is_invalid(port_id))
477 if (port_reg_off_is_invalid(port_id, reg_off))
479 reg_v = port_id_pci_reg_read(port_id, reg_off);
480 display_port_reg_value(port_id, reg_off, reg_v);
484 port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
489 if (port_id_is_invalid(port_id))
491 if (port_reg_off_is_invalid(port_id, reg_off))
493 if (reg_bit_pos_is_invalid(bit_pos))
496 printf("Invalid bit value %d (must be 0 or 1)\n", (int) bit_v);
499 reg_v = port_id_pci_reg_read(port_id, reg_off);
501 reg_v &= ~(1 << bit_pos);
503 reg_v |= (1 << bit_pos);
504 port_id_pci_reg_write(port_id, reg_off, reg_v);
505 display_port_reg_value(port_id, reg_off, reg_v);
509 port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
510 uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value)
517 if (port_id_is_invalid(port_id))
519 if (port_reg_off_is_invalid(port_id, reg_off))
521 if (reg_bit_pos_is_invalid(bit1_pos))
523 if (reg_bit_pos_is_invalid(bit2_pos))
525 if (bit1_pos > bit2_pos)
526 l_bit = bit2_pos, h_bit = bit1_pos;
528 l_bit = bit1_pos, h_bit = bit2_pos;
530 if ((h_bit - l_bit) < 31)
531 max_v = (1 << (h_bit - l_bit + 1)) - 1;
536 printf("Invalid value %u (0x%x) must be < %u (0x%x)\n",
537 (unsigned)value, (unsigned)value,
538 (unsigned)max_v, (unsigned)max_v);
541 reg_v = port_id_pci_reg_read(port_id, reg_off);
542 reg_v &= ~(max_v << l_bit); /* Keep unchanged bits */
543 reg_v |= (value << l_bit); /* Set changed bits */
544 port_id_pci_reg_write(port_id, reg_off, reg_v);
545 display_port_reg_value(port_id, reg_off, reg_v);
549 port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
551 if (port_id_is_invalid(port_id))
553 if (port_reg_off_is_invalid(port_id, reg_off))
555 port_id_pci_reg_write(port_id, reg_off, reg_v);
556 display_port_reg_value(port_id, reg_off, reg_v);
560 port_mtu_set(portid_t port_id, uint16_t mtu)
564 if (port_id_is_invalid(port_id))
566 diag = rte_eth_dev_set_mtu(port_id, mtu);
569 printf("Set MTU failed. diag=%d\n", diag);
573 * RX/TX ring descriptors display functions.
576 rx_queue_id_is_invalid(queueid_t rxq_id)
580 printf("Invalid RX queue %d (must be < nb_rxq=%d)\n", rxq_id, nb_rxq);
585 tx_queue_id_is_invalid(queueid_t txq_id)
589 printf("Invalid TX queue %d (must be < nb_rxq=%d)\n", txq_id, nb_txq);
594 rx_desc_id_is_invalid(uint16_t rxdesc_id)
596 if (rxdesc_id < nb_rxd)
598 printf("Invalid RX descriptor %d (must be < nb_rxd=%d)\n",
604 tx_desc_id_is_invalid(uint16_t txdesc_id)
606 if (txdesc_id < nb_txd)
608 printf("Invalid TX descriptor %d (must be < nb_txd=%d)\n",
613 static const struct rte_memzone *
614 ring_dma_zone_lookup(const char *ring_name, uint8_t port_id, uint16_t q_id)
616 char mz_name[RTE_MEMZONE_NAMESIZE];
617 const struct rte_memzone *mz;
619 snprintf(mz_name, sizeof(mz_name), "%s_%s_%d_%d",
620 ports[port_id].dev_info.driver_name, ring_name, port_id, q_id);
621 mz = rte_memzone_lookup(mz_name);
623 printf("%s ring memory zoneof (port %d, queue %d) not"
624 "found (zone name = %s\n",
625 ring_name, port_id, q_id, mz_name);
629 union igb_ring_dword {
632 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
642 struct igb_ring_desc_32_bytes {
643 union igb_ring_dword lo_dword;
644 union igb_ring_dword hi_dword;
645 union igb_ring_dword resv1;
646 union igb_ring_dword resv2;
649 struct igb_ring_desc_16_bytes {
650 union igb_ring_dword lo_dword;
651 union igb_ring_dword hi_dword;
655 ring_rxd_display_dword(union igb_ring_dword dword)
657 printf(" 0x%08X - 0x%08X\n", (unsigned)dword.words.lo,
658 (unsigned)dword.words.hi);
662 ring_rx_descriptor_display(const struct rte_memzone *ring_mz,
663 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
666 __rte_unused uint8_t port_id,
670 struct igb_ring_desc_16_bytes *ring =
671 (struct igb_ring_desc_16_bytes *)ring_mz->addr;
672 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
673 struct rte_eth_dev_info dev_info;
675 memset(&dev_info, 0, sizeof(dev_info));
676 rte_eth_dev_info_get(port_id, &dev_info);
677 if (strstr(dev_info.driver_name, "i40e") != NULL) {
678 /* 32 bytes RX descriptor, i40e only */
679 struct igb_ring_desc_32_bytes *ring =
680 (struct igb_ring_desc_32_bytes *)ring_mz->addr;
681 ring[desc_id].lo_dword.dword =
682 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
683 ring_rxd_display_dword(ring[desc_id].lo_dword);
684 ring[desc_id].hi_dword.dword =
685 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
686 ring_rxd_display_dword(ring[desc_id].hi_dword);
687 ring[desc_id].resv1.dword =
688 rte_le_to_cpu_64(ring[desc_id].resv1.dword);
689 ring_rxd_display_dword(ring[desc_id].resv1);
690 ring[desc_id].resv2.dword =
691 rte_le_to_cpu_64(ring[desc_id].resv2.dword);
692 ring_rxd_display_dword(ring[desc_id].resv2);
697 /* 16 bytes RX descriptor */
698 ring[desc_id].lo_dword.dword =
699 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
700 ring_rxd_display_dword(ring[desc_id].lo_dword);
701 ring[desc_id].hi_dword.dword =
702 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
703 ring_rxd_display_dword(ring[desc_id].hi_dword);
707 ring_tx_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
709 struct igb_ring_desc_16_bytes *ring;
710 struct igb_ring_desc_16_bytes txd;
712 ring = (struct igb_ring_desc_16_bytes *)ring_mz->addr;
713 txd.lo_dword.dword = rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
714 txd.hi_dword.dword = rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
715 printf(" 0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
716 (unsigned)txd.lo_dword.words.lo,
717 (unsigned)txd.lo_dword.words.hi,
718 (unsigned)txd.hi_dword.words.lo,
719 (unsigned)txd.hi_dword.words.hi);
723 rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id)
725 const struct rte_memzone *rx_mz;
727 if (port_id_is_invalid(port_id))
729 if (rx_queue_id_is_invalid(rxq_id))
731 if (rx_desc_id_is_invalid(rxd_id))
733 rx_mz = ring_dma_zone_lookup("rx_ring", port_id, rxq_id);
736 ring_rx_descriptor_display(rx_mz, port_id, rxd_id);
740 tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id)
742 const struct rte_memzone *tx_mz;
744 if (port_id_is_invalid(port_id))
746 if (tx_queue_id_is_invalid(txq_id))
748 if (tx_desc_id_is_invalid(txd_id))
750 tx_mz = ring_dma_zone_lookup("tx_ring", port_id, txq_id);
753 ring_tx_descriptor_display(tx_mz, txd_id);
757 fwd_lcores_config_display(void)
761 printf("List of forwarding lcores:");
762 for (lc_id = 0; lc_id < nb_cfg_lcores; lc_id++)
763 printf(" %2u", fwd_lcores_cpuids[lc_id]);
767 rxtx_config_display(void)
769 printf(" %s packet forwarding - CRC stripping %s - "
770 "packets/burst=%d\n", cur_fwd_eng->fwd_mode_name,
771 rx_mode.hw_strip_crc ? "enabled" : "disabled",
774 if (cur_fwd_eng == &tx_only_engine)
775 printf(" packet len=%u - nb packet segments=%d\n",
776 (unsigned)tx_pkt_length, (int) tx_pkt_nb_segs);
778 struct rte_eth_rxconf *rx_conf = &ports[0].rx_conf;
779 struct rte_eth_txconf *tx_conf = &ports[0].tx_conf;
781 printf(" nb forwarding cores=%d - nb forwarding ports=%d\n",
782 nb_fwd_lcores, nb_fwd_ports);
783 printf(" RX queues=%d - RX desc=%d - RX free threshold=%d\n",
784 nb_rxq, nb_rxd, rx_conf->rx_free_thresh);
785 printf(" RX threshold registers: pthresh=%d hthresh=%d wthresh=%d\n",
786 rx_conf->rx_thresh.pthresh, rx_conf->rx_thresh.hthresh,
787 rx_conf->rx_thresh.wthresh);
788 printf(" TX queues=%d - TX desc=%d - TX free threshold=%d\n",
789 nb_txq, nb_txd, tx_conf->tx_free_thresh);
790 printf(" TX threshold registers: pthresh=%d hthresh=%d wthresh=%d\n",
791 tx_conf->tx_thresh.pthresh, tx_conf->tx_thresh.hthresh,
792 tx_conf->tx_thresh.wthresh);
793 printf(" TX RS bit threshold=%d - TXQ flags=0x%"PRIx32"\n",
794 tx_conf->tx_rs_thresh, tx_conf->txq_flags);
798 port_rss_reta_info(portid_t port_id,
799 struct rte_eth_rss_reta_entry64 *reta_conf,
802 uint16_t i, idx, shift;
805 if (port_id_is_invalid(port_id))
808 ret = rte_eth_dev_rss_reta_query(port_id, reta_conf, nb_entries);
810 printf("Failed to get RSS RETA info, return code = %d\n", ret);
814 for (i = 0; i < nb_entries; i++) {
815 idx = i / RTE_RETA_GROUP_SIZE;
816 shift = i % RTE_RETA_GROUP_SIZE;
817 if (!(reta_conf[idx].mask & (1ULL << shift)))
819 printf("RSS RETA configuration: hash index=%u, queue=%u\n",
820 i, reta_conf[idx].reta[shift]);
825 * Displays the RSS hash functions of a port, and, optionaly, the RSS hash
829 port_rss_hash_conf_show(portid_t port_id, int show_rss_key)
831 struct rte_eth_rss_conf rss_conf;
832 uint8_t rss_key[10 * 4];
837 if (port_id_is_invalid(port_id))
839 /* Get RSS hash key if asked to display it */
840 rss_conf.rss_key = (show_rss_key) ? rss_key : NULL;
841 diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
845 printf("port index %d invalid\n", port_id);
848 printf("operation not supported by device\n");
851 printf("operation failed - diag=%d\n", diag);
856 rss_hf = rss_conf.rss_hf;
858 printf("RSS disabled\n");
861 printf("RSS functions:\n ");
862 if (rss_hf & ETH_RSS_IPV4)
864 if (rss_hf & ETH_RSS_IPV4_TCP)
866 if (rss_hf & ETH_RSS_IPV4_UDP)
868 if (rss_hf & ETH_RSS_IPV6)
870 if (rss_hf & ETH_RSS_IPV6_EX)
872 if (rss_hf & ETH_RSS_IPV6_TCP)
874 if (rss_hf & ETH_RSS_IPV6_TCP_EX)
876 if (rss_hf & ETH_RSS_IPV6_UDP)
878 if (rss_hf & ETH_RSS_IPV6_UDP_EX)
883 printf("RSS key:\n");
884 for (i = 0; i < sizeof(rss_key); i++)
885 printf("%02X", rss_key[i]);
890 port_rss_hash_key_update(portid_t port_id, uint8_t *hash_key)
892 struct rte_eth_rss_conf rss_conf;
895 rss_conf.rss_key = NULL;
896 diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
898 rss_conf.rss_key = hash_key;
899 diag = rte_eth_dev_rss_hash_update(port_id, &rss_conf);
906 printf("port index %d invalid\n", port_id);
909 printf("operation not supported by device\n");
912 printf("operation failed - diag=%d\n", diag);
918 * Setup forwarding configuration for each logical core.
921 setup_fwd_config_of_each_lcore(struct fwd_config *cfg)
923 streamid_t nb_fs_per_lcore;
931 nb_fs = cfg->nb_fwd_streams;
932 nb_fc = cfg->nb_fwd_lcores;
933 if (nb_fs <= nb_fc) {
937 nb_fs_per_lcore = (streamid_t) (nb_fs / nb_fc);
938 nb_extra = (lcoreid_t) (nb_fs % nb_fc);
941 nb_lc = (lcoreid_t) (nb_fc - nb_extra);
943 for (lc_id = 0; lc_id < nb_lc; lc_id++) {
944 fwd_lcores[lc_id]->stream_idx = sm_id;
945 fwd_lcores[lc_id]->stream_nb = nb_fs_per_lcore;
946 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
950 * Assign extra remaining streams, if any.
952 nb_fs_per_lcore = (streamid_t) (nb_fs_per_lcore + 1);
953 for (lc_id = 0; lc_id < nb_extra; lc_id++) {
954 fwd_lcores[nb_lc + lc_id]->stream_idx = sm_id;
955 fwd_lcores[nb_lc + lc_id]->stream_nb = nb_fs_per_lcore;
956 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
961 simple_fwd_config_setup(void)
967 if (port_topology == PORT_TOPOLOGY_CHAINED ||
968 port_topology == PORT_TOPOLOGY_LOOP) {
970 } else if (nb_fwd_ports % 2) {
971 printf("\nWarning! Cannot handle an odd number of ports "
972 "with the current port topology. Configuration "
973 "must be changed to have an even number of ports, "
974 "or relaunch application with "
975 "--port-topology=chained\n\n");
978 cur_fwd_config.nb_fwd_ports = (portid_t) nb_fwd_ports;
979 cur_fwd_config.nb_fwd_streams =
980 (streamid_t) cur_fwd_config.nb_fwd_ports;
982 /* reinitialize forwarding streams */
986 * In the simple forwarding test, the number of forwarding cores
987 * must be lower or equal to the number of forwarding ports.
989 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
990 if (cur_fwd_config.nb_fwd_lcores > cur_fwd_config.nb_fwd_ports)
991 cur_fwd_config.nb_fwd_lcores =
992 (lcoreid_t) cur_fwd_config.nb_fwd_ports;
993 setup_fwd_config_of_each_lcore(&cur_fwd_config);
995 for (i = 0; i < cur_fwd_config.nb_fwd_ports; i = (portid_t) (i + inc)) {
996 if (port_topology != PORT_TOPOLOGY_LOOP)
997 j = (portid_t) ((i + 1) % cur_fwd_config.nb_fwd_ports);
1000 fwd_streams[i]->rx_port = fwd_ports_ids[i];
1001 fwd_streams[i]->rx_queue = 0;
1002 fwd_streams[i]->tx_port = fwd_ports_ids[j];
1003 fwd_streams[i]->tx_queue = 0;
1004 fwd_streams[i]->peer_addr = j;
1006 if (port_topology == PORT_TOPOLOGY_PAIRED) {
1007 fwd_streams[j]->rx_port = fwd_ports_ids[j];
1008 fwd_streams[j]->rx_queue = 0;
1009 fwd_streams[j]->tx_port = fwd_ports_ids[i];
1010 fwd_streams[j]->tx_queue = 0;
1011 fwd_streams[j]->peer_addr = i;
1017 * For the RSS forwarding test, each core is assigned on every port a transmit
1018 * queue whose index is the index of the core itself. This approach limits the
1019 * maximumm number of processing cores of the RSS test to the maximum number of
1020 * TX queues supported by the devices.
1022 * Each core is assigned a single stream, each stream being composed of
1023 * a RX queue to poll on a RX port for input messages, associated with
1024 * a TX queue of a TX port where to send forwarded packets.
1025 * All packets received on the RX queue of index "RxQj" of the RX port "RxPi"
1026 * are sent on the TX queue "TxQl" of the TX port "TxPk" according to the two
1028 * - TxPk = (RxPi + 1) if RxPi is even, (RxPi - 1) if RxPi is odd
1032 rss_fwd_config_setup(void)
1043 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
1044 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
1045 cur_fwd_config.nb_fwd_streams =
1046 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
1047 if (cur_fwd_config.nb_fwd_streams > cur_fwd_config.nb_fwd_lcores)
1048 cur_fwd_config.nb_fwd_streams =
1049 (streamid_t)cur_fwd_config.nb_fwd_lcores;
1051 cur_fwd_config.nb_fwd_lcores =
1052 (lcoreid_t)cur_fwd_config.nb_fwd_streams;
1054 /* reinitialize forwarding streams */
1057 setup_fwd_config_of_each_lcore(&cur_fwd_config);
1059 for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
1060 struct fwd_stream *fs;
1062 fs = fwd_streams[lc_id];
1064 if ((rxp & 0x1) == 0)
1065 txp = (portid_t) (rxp + 1);
1067 txp = (portid_t) (rxp - 1);
1069 * if we are in loopback, simply send stuff out through the
1072 if (port_topology == PORT_TOPOLOGY_LOOP)
1075 fs->rx_port = fwd_ports_ids[rxp];
1077 fs->tx_port = fwd_ports_ids[txp];
1079 fs->peer_addr = fs->tx_port;
1080 rxq = (queueid_t) (rxq + 1);
1085 * Restart from RX queue 0 on next RX port
1088 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
1090 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
1092 rxp = (portid_t) (rxp + 1);
1097 * In DCB and VT on,the mapping of 128 receive queues to 128 transmit queues.
1100 dcb_rxq_2_txq_mapping(queueid_t rxq, queueid_t *txq)
1102 if(dcb_q_mapping == DCB_4_TCS_Q_MAPPING) {
1107 else if (rxq < 64) {
1109 *txq = (uint16_t)(rxq + 32);
1112 /* tc2: 96-111;tc3:112-127 */
1113 *txq = (uint16_t)(rxq/2 + 64);
1120 else if (rxq < 32) {
1122 *txq = (uint16_t)(rxq + 16);
1124 else if (rxq < 64) {
1125 /*tc2,tc3 mapping */
1126 *txq = (uint16_t)(rxq + 32);
1129 /* tc4,tc5,tc6 and tc7 mapping */
1130 *txq = (uint16_t)(rxq/2 + 64);
1136 * For the DCB forwarding test, each core is assigned on every port multi-transmit
1139 * Each core is assigned a multi-stream, each stream being composed of
1140 * a RX queue to poll on a RX port for input messages, associated with
1141 * a TX queue of a TX port where to send forwarded packets.
1142 * All packets received on the RX queue of index "RxQj" of the RX port "RxPi"
1143 * are sent on the TX queue "TxQl" of the TX port "TxPk" according to the two
1146 * - TxPk = (RxPi + 1) if RxPi is even, (RxPi - 1) if RxPi is odd
1149 * - TxPk = (RxPi + 1) if RxPi is even, (RxPi - 1) if RxPi is odd
1150 * There is a mapping of RxQj to TxQl to be required,and the mapping was implemented
1151 * in dcb_rxq_2_txq_mapping function.
1154 dcb_fwd_config_setup(void)
1165 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
1166 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
1167 cur_fwd_config.nb_fwd_streams =
1168 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
1170 /* reinitialize forwarding streams */
1173 setup_fwd_config_of_each_lcore(&cur_fwd_config);
1175 for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
1176 /* a fwd core can run multi-streams */
1177 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++)
1179 struct fwd_stream *fs;
1180 fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
1181 if ((rxp & 0x1) == 0)
1182 txp = (portid_t) (rxp + 1);
1184 txp = (portid_t) (rxp - 1);
1185 fs->rx_port = fwd_ports_ids[rxp];
1187 fs->tx_port = fwd_ports_ids[txp];
1188 if (dcb_q_mapping == DCB_VT_Q_MAPPING)
1191 dcb_rxq_2_txq_mapping(rxq, &fs->tx_queue);
1192 fs->peer_addr = fs->tx_port;
1193 rxq = (queueid_t) (rxq + 1);
1197 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
1199 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
1201 rxp = (portid_t) (rxp + 1);
1207 icmp_echo_config_setup(void)
1214 if ((nb_txq * nb_fwd_ports) < nb_fwd_lcores)
1215 cur_fwd_config.nb_fwd_lcores = (lcoreid_t)
1216 (nb_txq * nb_fwd_ports);
1218 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
1219 cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
1220 cur_fwd_config.nb_fwd_streams =
1221 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
1222 if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
1223 cur_fwd_config.nb_fwd_lcores =
1224 (lcoreid_t)cur_fwd_config.nb_fwd_streams;
1225 if (verbose_level > 0) {
1226 printf("%s fwd_cores=%d fwd_ports=%d fwd_streams=%d\n",
1228 cur_fwd_config.nb_fwd_lcores,
1229 cur_fwd_config.nb_fwd_ports,
1230 cur_fwd_config.nb_fwd_streams);
1233 /* reinitialize forwarding streams */
1235 setup_fwd_config_of_each_lcore(&cur_fwd_config);
1237 for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
1238 if (verbose_level > 0)
1239 printf(" core=%d: \n", lc_id);
1240 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
1241 struct fwd_stream *fs;
1242 fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
1243 fs->rx_port = fwd_ports_ids[rxp];
1245 fs->tx_port = fs->rx_port;
1246 fs->tx_queue = lc_id;
1247 fs->peer_addr = fs->tx_port;
1248 if (verbose_level > 0)
1249 printf(" stream=%d port=%d rxq=%d txq=%d\n",
1250 sm_id, fs->rx_port, fs->rx_queue,
1252 rxq = (queueid_t) (rxq + 1);
1253 if (rxq == nb_rxq) {
1255 rxp = (portid_t) (rxp + 1);
1262 fwd_config_setup(void)
1264 cur_fwd_config.fwd_eng = cur_fwd_eng;
1265 if (strcmp(cur_fwd_eng->fwd_mode_name, "icmpecho") == 0) {
1266 icmp_echo_config_setup();
1269 if ((nb_rxq > 1) && (nb_txq > 1)){
1271 dcb_fwd_config_setup();
1273 rss_fwd_config_setup();
1276 simple_fwd_config_setup();
1280 pkt_fwd_config_display(struct fwd_config *cfg)
1282 struct fwd_stream *fs;
1286 printf("%s packet forwarding - ports=%d - cores=%d - streams=%d - "
1287 "NUMA support %s, MP over anonymous pages %s\n",
1288 cfg->fwd_eng->fwd_mode_name,
1289 cfg->nb_fwd_ports, cfg->nb_fwd_lcores, cfg->nb_fwd_streams,
1290 numa_support == 1 ? "enabled" : "disabled",
1291 mp_anon != 0 ? "enabled" : "disabled");
1293 if (strcmp(cfg->fwd_eng->fwd_mode_name, "mac_retry") == 0)
1294 printf("TX retry num: %u, delay between TX retries: %uus\n",
1295 burst_tx_retry_num, burst_tx_delay_time);
1296 for (lc_id = 0; lc_id < cfg->nb_fwd_lcores; lc_id++) {
1297 printf("Logical Core %u (socket %u) forwards packets on "
1299 fwd_lcores_cpuids[lc_id],
1300 rte_lcore_to_socket_id(fwd_lcores_cpuids[lc_id]),
1301 fwd_lcores[lc_id]->stream_nb);
1302 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
1303 fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
1304 printf("\n RX P=%d/Q=%d (socket %u) -> TX "
1305 "P=%d/Q=%d (socket %u) ",
1306 fs->rx_port, fs->rx_queue,
1307 ports[fs->rx_port].socket_id,
1308 fs->tx_port, fs->tx_queue,
1309 ports[fs->tx_port].socket_id);
1310 print_ethaddr("peer=",
1311 &peer_eth_addrs[fs->peer_addr]);
1320 fwd_config_display(void)
1322 if((dcb_config) && (nb_fwd_lcores == 1)) {
1323 printf("In DCB mode,the nb forwarding cores should be larger than 1\n");
1327 pkt_fwd_config_display(&cur_fwd_config);
1331 set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
1334 unsigned int lcore_cpuid;
1339 for (i = 0; i < nb_lc; i++) {
1340 lcore_cpuid = lcorelist[i];
1341 if (! rte_lcore_is_enabled(lcore_cpuid)) {
1342 printf("lcore %u not enabled\n", lcore_cpuid);
1345 if (lcore_cpuid == rte_get_master_lcore()) {
1346 printf("lcore %u cannot be masked on for running "
1347 "packet forwarding, which is the master lcore "
1348 "and reserved for command line parsing only\n",
1353 fwd_lcores_cpuids[i] = lcore_cpuid;
1355 if (record_now == 0) {
1359 nb_cfg_lcores = (lcoreid_t) nb_lc;
1360 if (nb_fwd_lcores != (lcoreid_t) nb_lc) {
1361 printf("previous number of forwarding cores %u - changed to "
1362 "number of configured cores %u\n",
1363 (unsigned int) nb_fwd_lcores, nb_lc);
1364 nb_fwd_lcores = (lcoreid_t) nb_lc;
1371 set_fwd_lcores_mask(uint64_t lcoremask)
1373 unsigned int lcorelist[64];
1377 if (lcoremask == 0) {
1378 printf("Invalid NULL mask of cores\n");
1382 for (i = 0; i < 64; i++) {
1383 if (! ((uint64_t)(1ULL << i) & lcoremask))
1385 lcorelist[nb_lc++] = i;
1387 return set_fwd_lcores_list(lcorelist, nb_lc);
1391 set_fwd_lcores_number(uint16_t nb_lc)
1393 if (nb_lc > nb_cfg_lcores) {
1394 printf("nb fwd cores %u > %u (max. number of configured "
1395 "lcores) - ignored\n",
1396 (unsigned int) nb_lc, (unsigned int) nb_cfg_lcores);
1399 nb_fwd_lcores = (lcoreid_t) nb_lc;
1400 printf("Number of forwarding cores set to %u\n",
1401 (unsigned int) nb_fwd_lcores);
1405 set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt)
1413 for (i = 0; i < nb_pt; i++) {
1414 port_id = (portid_t) portlist[i];
1415 if (port_id >= nb_ports) {
1416 printf("Invalid port id %u >= %u\n",
1417 (unsigned int) port_id,
1418 (unsigned int) nb_ports);
1422 fwd_ports_ids[i] = port_id;
1424 if (record_now == 0) {
1428 nb_cfg_ports = (portid_t) nb_pt;
1429 if (nb_fwd_ports != (portid_t) nb_pt) {
1430 printf("previous number of forwarding ports %u - changed to "
1431 "number of configured ports %u\n",
1432 (unsigned int) nb_fwd_ports, nb_pt);
1433 nb_fwd_ports = (portid_t) nb_pt;
1438 set_fwd_ports_mask(uint64_t portmask)
1440 unsigned int portlist[64];
1444 if (portmask == 0) {
1445 printf("Invalid NULL mask of ports\n");
1449 for (i = 0; i < (unsigned)RTE_MIN(64, RTE_MAX_ETHPORTS); i++) {
1450 if (! ((uint64_t)(1ULL << i) & portmask))
1452 portlist[nb_pt++] = i;
1454 set_fwd_ports_list(portlist, nb_pt);
1458 set_fwd_ports_number(uint16_t nb_pt)
1460 if (nb_pt > nb_cfg_ports) {
1461 printf("nb fwd ports %u > %u (number of configured "
1462 "ports) - ignored\n",
1463 (unsigned int) nb_pt, (unsigned int) nb_cfg_ports);
1466 nb_fwd_ports = (portid_t) nb_pt;
1467 printf("Number of forwarding ports set to %u\n",
1468 (unsigned int) nb_fwd_ports);
1472 set_nb_pkt_per_burst(uint16_t nb)
1474 if (nb > MAX_PKT_BURST) {
1475 printf("nb pkt per burst: %u > %u (maximum packet per burst) "
1477 (unsigned int) nb, (unsigned int) MAX_PKT_BURST);
1480 nb_pkt_per_burst = nb;
1481 printf("Number of packets per burst set to %u\n",
1482 (unsigned int) nb_pkt_per_burst);
1486 set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs)
1488 uint16_t tx_pkt_len;
1491 if (nb_segs >= (unsigned) nb_txd) {
1492 printf("nb segments per TX packets=%u >= nb_txd=%u - ignored\n",
1493 nb_segs, (unsigned int) nb_txd);
1498 * Check that each segment length is greater or equal than
1499 * the mbuf data sise.
1500 * Check also that the total packet length is greater or equal than the
1501 * size of an empty UDP/IP packet (sizeof(struct ether_hdr) + 20 + 8).
1504 for (i = 0; i < nb_segs; i++) {
1505 if (seg_lengths[i] > (unsigned) mbuf_data_size) {
1506 printf("length[%u]=%u > mbuf_data_size=%u - give up\n",
1507 i, seg_lengths[i], (unsigned) mbuf_data_size);
1510 tx_pkt_len = (uint16_t)(tx_pkt_len + seg_lengths[i]);
1512 if (tx_pkt_len < (sizeof(struct ether_hdr) + 20 + 8)) {
1513 printf("total packet length=%u < %d - give up\n",
1514 (unsigned) tx_pkt_len,
1515 (int)(sizeof(struct ether_hdr) + 20 + 8));
1519 for (i = 0; i < nb_segs; i++)
1520 tx_pkt_seg_lengths[i] = (uint16_t) seg_lengths[i];
1522 tx_pkt_length = tx_pkt_len;
1523 tx_pkt_nb_segs = (uint8_t) nb_segs;
1527 list_pkt_forwarding_modes(void)
1529 static char fwd_modes[128] = "";
1530 const char *separator = "|";
1531 struct fwd_engine *fwd_eng;
1534 if (strlen (fwd_modes) == 0) {
1535 while ((fwd_eng = fwd_engines[i++]) != NULL) {
1536 strcat(fwd_modes, fwd_eng->fwd_mode_name);
1537 strcat(fwd_modes, separator);
1539 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
1546 set_pkt_forwarding_mode(const char *fwd_mode_name)
1548 struct fwd_engine *fwd_eng;
1552 while ((fwd_eng = fwd_engines[i]) != NULL) {
1553 if (! strcmp(fwd_eng->fwd_mode_name, fwd_mode_name)) {
1554 printf("Set %s packet forwarding mode\n",
1556 cur_fwd_eng = fwd_eng;
1561 printf("Invalid %s packet forwarding mode\n", fwd_mode_name);
1565 set_verbose_level(uint16_t vb_level)
1567 printf("Change verbose level from %u to %u\n",
1568 (unsigned int) verbose_level, (unsigned int) vb_level);
1569 verbose_level = vb_level;
1573 vlan_extend_set(portid_t port_id, int on)
1578 if (port_id_is_invalid(port_id))
1581 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
1584 vlan_offload |= ETH_VLAN_EXTEND_OFFLOAD;
1586 vlan_offload &= ~ETH_VLAN_EXTEND_OFFLOAD;
1588 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
1590 printf("rx_vlan_extend_set(port_pi=%d, on=%d) failed "
1591 "diag=%d\n", port_id, on, diag);
1595 rx_vlan_strip_set(portid_t port_id, int on)
1600 if (port_id_is_invalid(port_id))
1603 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
1606 vlan_offload |= ETH_VLAN_STRIP_OFFLOAD;
1608 vlan_offload &= ~ETH_VLAN_STRIP_OFFLOAD;
1610 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
1612 printf("rx_vlan_strip_set(port_pi=%d, on=%d) failed "
1613 "diag=%d\n", port_id, on, diag);
1617 rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on)
1621 if (port_id_is_invalid(port_id))
1624 diag = rte_eth_dev_set_vlan_strip_on_queue(port_id, queue_id, on);
1626 printf("rx_vlan_strip_set_on_queue(port_pi=%d, queue_id=%d, on=%d) failed "
1627 "diag=%d\n", port_id, queue_id, on, diag);
1631 rx_vlan_filter_set(portid_t port_id, int on)
1636 if (port_id_is_invalid(port_id))
1639 vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
1642 vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
1644 vlan_offload &= ~ETH_VLAN_FILTER_OFFLOAD;
1646 diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
1648 printf("rx_vlan_filter_set(port_pi=%d, on=%d) failed "
1649 "diag=%d\n", port_id, on, diag);
1653 rx_vft_set(portid_t port_id, uint16_t vlan_id, int on)
1657 if (port_id_is_invalid(port_id))
1659 if (vlan_id_is_invalid(vlan_id))
1661 diag = rte_eth_dev_vlan_filter(port_id, vlan_id, on);
1664 printf("rte_eth_dev_vlan_filter(port_pi=%d, vlan_id=%d, on=%d) failed "
1666 port_id, vlan_id, on, diag);
1670 rx_vlan_all_filter_set(portid_t port_id, int on)
1674 if (port_id_is_invalid(port_id))
1676 for (vlan_id = 0; vlan_id < 4096; vlan_id++)
1677 rx_vft_set(port_id, vlan_id, on);
1681 vlan_tpid_set(portid_t port_id, uint16_t tp_id)
1684 if (port_id_is_invalid(port_id))
1687 diag = rte_eth_dev_set_vlan_ether_type(port_id, tp_id);
1691 printf("tx_vlan_tpid_set(port_pi=%d, tpid=%d) failed "
1693 port_id, tp_id, diag);
1697 tx_vlan_set(portid_t port_id, uint16_t vlan_id)
1699 if (port_id_is_invalid(port_id))
1701 if (vlan_id_is_invalid(vlan_id))
1703 ports[port_id].tx_ol_flags |= TESTPMD_TX_OFFLOAD_INSERT_VLAN;
1704 ports[port_id].tx_vlan_id = vlan_id;
1708 tx_vlan_reset(portid_t port_id)
1710 if (port_id_is_invalid(port_id))
1712 ports[port_id].tx_ol_flags &= ~TESTPMD_TX_OFFLOAD_INSERT_VLAN;
1716 tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on)
1718 if (port_id_is_invalid(port_id))
1721 rte_eth_dev_set_vlan_pvid(port_id, vlan_id, on);
1725 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
1728 uint8_t existing_mapping_found = 0;
1730 if (port_id_is_invalid(port_id))
1733 if (is_rx ? (rx_queue_id_is_invalid(queue_id)) : (tx_queue_id_is_invalid(queue_id)))
1736 if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
1737 printf("map_value not in required range 0..%d\n",
1738 RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
1742 if (!is_rx) { /*then tx*/
1743 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
1744 if ((tx_queue_stats_mappings[i].port_id == port_id) &&
1745 (tx_queue_stats_mappings[i].queue_id == queue_id)) {
1746 tx_queue_stats_mappings[i].stats_counter_id = map_value;
1747 existing_mapping_found = 1;
1751 if (!existing_mapping_found) { /* A new additional mapping... */
1752 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
1753 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
1754 tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
1755 nb_tx_queue_stats_mappings++;
1759 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
1760 if ((rx_queue_stats_mappings[i].port_id == port_id) &&
1761 (rx_queue_stats_mappings[i].queue_id == queue_id)) {
1762 rx_queue_stats_mappings[i].stats_counter_id = map_value;
1763 existing_mapping_found = 1;
1767 if (!existing_mapping_found) { /* A new additional mapping... */
1768 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
1769 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
1770 rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
1771 nb_rx_queue_stats_mappings++;
1777 print_fdir_mask(struct rte_eth_fdir_masks *mask)
1779 printf("\n vlan_tci: 0x%04x, src_ipv4: 0x%08x, dst_ipv4: 0x%08x,"
1780 " src_port: 0x%04x, dst_port: 0x%04x",
1781 mask->vlan_tci_mask, mask->ipv4_mask.src_ip,
1782 mask->ipv4_mask.dst_ip,
1783 mask->src_port_mask, mask->dst_port_mask);
1785 printf("\n src_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x,"
1786 " dst_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
1787 mask->ipv6_mask.src_ip[0], mask->ipv6_mask.src_ip[1],
1788 mask->ipv6_mask.src_ip[2], mask->ipv6_mask.src_ip[3],
1789 mask->ipv6_mask.dst_ip[0], mask->ipv6_mask.dst_ip[1],
1790 mask->ipv6_mask.dst_ip[2], mask->ipv6_mask.dst_ip[3]);
1795 print_fdir_flex_payload(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
1797 struct rte_eth_flex_payload_cfg *cfg;
1800 for (i = 0; i < flex_conf->nb_payloads; i++) {
1801 cfg = &flex_conf->flex_set[i];
1802 if (cfg->type == RTE_ETH_RAW_PAYLOAD)
1804 else if (cfg->type == RTE_ETH_L2_PAYLOAD)
1805 printf("\n L2_PAYLOAD: ");
1806 else if (cfg->type == RTE_ETH_L3_PAYLOAD)
1807 printf("\n L3_PAYLOAD: ");
1808 else if (cfg->type == RTE_ETH_L4_PAYLOAD)
1809 printf("\n L4_PAYLOAD: ");
1811 printf("\n UNKNOWN PAYLOAD(%u): ", cfg->type);
1812 for (j = 0; j < num; j++)
1813 printf(" %-5u", cfg->src_offset[j]);
1819 print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
1821 struct rte_eth_fdir_flex_mask *mask;
1824 for (i = 0; i < flex_conf->nb_flexmasks; i++) {
1825 mask = &flex_conf->flex_mask[i];
1826 printf("\n %s:\t", flowtype_str[mask->flow_type]);
1827 for (j = 0; j < num; j++)
1828 printf(" %02x", mask->mask[j]);
1834 print_fdir_flow_type(uint32_t flow_types_mask)
1838 for (i = RTE_ETH_FLOW_TYPE_UDPV4;
1839 i <= RTE_ETH_FLOW_TYPE_FRAG_IPV6;
1841 if (flow_types_mask & (1 << i))
1842 printf(" %s", flowtype_str[i]);
1848 fdir_get_infos(portid_t port_id)
1850 struct rte_eth_fdir_stats fdir_stat;
1851 struct rte_eth_fdir_info fdir_info;
1854 static const char *fdir_stats_border = "########################";
1856 if (port_id_is_invalid(port_id))
1858 ret = rte_eth_dev_filter_supported(port_id, RTE_ETH_FILTER_FDIR);
1860 printf("\n FDIR is not supported on port %-2d\n",
1865 memset(&fdir_info, 0, sizeof(fdir_info));
1866 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
1867 RTE_ETH_FILTER_INFO, &fdir_info);
1868 memset(&fdir_stat, 0, sizeof(fdir_stat));
1869 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
1870 RTE_ETH_FILTER_STATS, &fdir_stat);
1871 printf("\n %s FDIR infos for port %-2d %s\n",
1872 fdir_stats_border, port_id, fdir_stats_border);
1874 if (fdir_info.mode == RTE_FDIR_MODE_PERFECT)
1875 printf(" PERFECT\n");
1876 else if (fdir_info.mode == RTE_FDIR_MODE_SIGNATURE)
1877 printf(" SIGNATURE\n");
1879 printf(" DISABLE\n");
1880 printf(" SUPPORTED FLOW TYPE: ");
1881 print_fdir_flow_type(fdir_info.flow_types_mask[0]);
1882 printf(" FLEX PAYLOAD INFO:\n");
1883 printf(" max_len: %-10"PRIu32" payload_limit: %-10"PRIu32"\n"
1884 " payload_unit: %-10"PRIu32" payload_seg: %-10"PRIu32"\n"
1885 " bitmask_unit: %-10"PRIu32" bitmask_num: %-10"PRIu32"\n",
1886 fdir_info.max_flexpayload, fdir_info.flex_payload_limit,
1887 fdir_info.flex_payload_unit,
1888 fdir_info.max_flex_payload_segment_num,
1889 fdir_info.flex_bitmask_unit, fdir_info.max_flex_bitmask_num);
1891 print_fdir_mask(&fdir_info.mask);
1892 if (fdir_info.flex_conf.nb_payloads > 0) {
1893 printf(" FLEX PAYLOAD SRC OFFSET:");
1894 print_fdir_flex_payload(&fdir_info.flex_conf, fdir_info.max_flexpayload);
1896 if (fdir_info.flex_conf.nb_flexmasks > 0) {
1897 printf(" FLEX MASK CFG:");
1898 print_fdir_flex_mask(&fdir_info.flex_conf, fdir_info.max_flexpayload);
1900 printf(" guarant_count: %-10"PRIu32" best_count: %"PRIu32"\n",
1901 fdir_stat.guarant_cnt, fdir_stat.best_cnt);
1902 printf(" guarant_space: %-10"PRIu32" best_space: %"PRIu32"\n",
1903 fdir_info.guarant_spc, fdir_info.best_spc);
1904 printf(" collision: %-10"PRIu32" free: %"PRIu32"\n"
1905 " maxhash: %-10"PRIu32" maxlen: %"PRIu32"\n"
1906 " add: %-10"PRIu64" remove: %"PRIu64"\n"
1907 " f_add: %-10"PRIu64" f_remove: %"PRIu64"\n",
1908 fdir_stat.collision, fdir_stat.free,
1909 fdir_stat.maxhash, fdir_stat.maxlen,
1910 fdir_stat.add, fdir_stat.remove,
1911 fdir_stat.f_add, fdir_stat.f_remove);
1912 printf(" %s############################%s\n",
1913 fdir_stats_border, fdir_stats_border);
1917 fdir_set_flex_mask(portid_t port_id, struct rte_eth_fdir_flex_mask *cfg)
1919 struct rte_port *port;
1920 struct rte_eth_fdir_flex_conf *flex_conf;
1923 port = &ports[port_id];
1924 flex_conf = &port->dev_conf.fdir_conf.flex_conf;
1925 for (i = 0; i < RTE_ETH_FLOW_TYPE_MAX; i++) {
1926 if (cfg->flow_type == flex_conf->flex_mask[i].flow_type) {
1931 if (i >= RTE_ETH_FLOW_TYPE_MAX) {
1932 if (flex_conf->nb_flexmasks < RTE_DIM(flex_conf->flex_mask)) {
1933 idx = flex_conf->nb_flexmasks;
1934 flex_conf->nb_flexmasks++;
1936 printf("The flex mask table is full. Can not set flex"
1937 " mask for flow_type(%u).", cfg->flow_type);
1941 (void)rte_memcpy(&flex_conf->flex_mask[idx],
1943 sizeof(struct rte_eth_fdir_flex_mask));
1947 fdir_set_flex_payload(portid_t port_id, struct rte_eth_flex_payload_cfg *cfg)
1949 struct rte_port *port;
1950 struct rte_eth_fdir_flex_conf *flex_conf;
1953 port = &ports[port_id];
1954 flex_conf = &port->dev_conf.fdir_conf.flex_conf;
1955 for (i = 0; i < RTE_ETH_PAYLOAD_MAX; i++) {
1956 if (cfg->type == flex_conf->flex_set[i].type) {
1961 if (i >= RTE_ETH_PAYLOAD_MAX) {
1962 if (flex_conf->nb_payloads < RTE_DIM(flex_conf->flex_set)) {
1963 idx = flex_conf->nb_payloads;
1964 flex_conf->nb_payloads++;
1966 printf("The flex payload table is full. Can not set"
1967 " flex payload for type(%u).", cfg->type);
1971 (void)rte_memcpy(&flex_conf->flex_set[idx],
1973 sizeof(struct rte_eth_flex_payload_cfg));
1978 set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on)
1982 if (port_id_is_invalid(port_id))
1985 diag = rte_eth_dev_set_vf_rx(port_id,vf,on);
1987 diag = rte_eth_dev_set_vf_tx(port_id,vf,on);
1991 printf("rte_eth_dev_set_vf_rx for port_id=%d failed "
1992 "diag=%d\n", port_id, diag);
1994 printf("rte_eth_dev_set_vf_tx for port_id=%d failed "
1995 "diag=%d\n", port_id, diag);
2000 set_vf_rx_vlan(portid_t port_id, uint16_t vlan_id, uint64_t vf_mask, uint8_t on)
2004 if (port_id_is_invalid(port_id))
2006 if (vlan_id_is_invalid(vlan_id))
2008 diag = rte_eth_dev_set_vf_vlan_filter(port_id, vlan_id, vf_mask, on);
2011 printf("rte_eth_dev_set_vf_vlan_filter for port_id=%d failed "
2012 "diag=%d\n", port_id, diag);
2016 set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate)
2019 struct rte_eth_link link;
2021 if (port_id_is_invalid(port_id))
2023 rte_eth_link_get_nowait(port_id, &link);
2024 if (rate > link.link_speed) {
2025 printf("Invalid rate value:%u bigger than link speed: %u\n",
2026 rate, link.link_speed);
2029 diag = rte_eth_set_queue_rate_limit(port_id, queue_idx, rate);
2032 printf("rte_eth_set_queue_rate_limit for port_id=%d failed diag=%d\n",
2038 set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate, uint64_t q_msk)
2041 struct rte_eth_link link;
2046 if (port_id_is_invalid(port_id))
2048 rte_eth_link_get_nowait(port_id, &link);
2049 if (rate > link.link_speed) {
2050 printf("Invalid rate value:%u bigger than link speed: %u\n",
2051 rate, link.link_speed);
2054 diag = rte_eth_set_vf_rate_limit(port_id, vf, rate, q_msk);
2057 printf("rte_eth_set_vf_rate_limit for port_id=%d failed diag=%d\n",
2063 get_syn_filter(uint8_t port_id)
2065 struct rte_syn_filter filter;
2069 memset(&filter, 0, sizeof(filter));
2070 ret = rte_eth_dev_get_syn_filter(port_id, &filter, &rx_queue);
2073 if (ret == (-ENOENT))
2074 printf("syn filter is not enabled\n");
2076 printf("get syn filter fails(%s)\n", strerror(-ret));
2079 printf("syn filter: priority: %s, queue: %d\n",
2080 filter.hig_pri ? "high" : "low",
2084 get_2tuple_filter(uint8_t port_id, uint16_t index)
2086 struct rte_2tuple_filter filter;
2090 memset(&filter, 0, sizeof(filter));
2091 ret = rte_eth_dev_get_2tuple_filter(port_id, index,
2092 &filter, &rx_queue);
2094 if (ret == (-ENOENT))
2095 printf("filter[%d] is not enabled\n", index);
2097 printf("get 2tuple filter fails(%s)\n", strerror(-ret));
2100 printf("filter[%d]:\n", index);
2101 printf(" Destination Port: 0x%04x mask: %d\n",
2102 rte_be_to_cpu_16(filter.dst_port),
2103 filter.dst_port_mask ? 0 : 1);
2104 printf(" protocol: 0x%02x mask:%d tcp_flags: 0x%02x\n",
2105 filter.protocol, filter.protocol_mask ? 0 : 1,
2107 printf(" priority: %d queue: %d\n",
2108 filter.priority, rx_queue);
2113 get_5tuple_filter(uint8_t port_id, uint16_t index)
2115 struct rte_5tuple_filter filter;
2119 memset(&filter, 0, sizeof(filter));
2120 ret = rte_eth_dev_get_5tuple_filter(port_id, index,
2121 &filter, &rx_queue);
2123 if (ret == (-ENOENT))
2124 printf("filter[%d] is not enabled\n", index);
2126 printf("get 5tuple filter fails(%s)\n", strerror(-ret));
2129 printf("filter[%d]:\n", index);
2130 printf(" Destination IP: 0x%08x mask: %d\n",
2131 (unsigned)rte_be_to_cpu_32(filter.dst_ip),
2132 filter.dst_ip_mask ? 0 : 1);
2133 printf(" Source IP: 0x%08x mask: %d\n",
2134 (unsigned)rte_be_to_cpu_32(filter.src_ip),
2135 filter.src_ip_mask ? 0 : 1);
2136 printf(" Destination Port: 0x%04x mask: %d\n",
2137 rte_be_to_cpu_16(filter.dst_port),
2138 filter.dst_port_mask ? 0 : 1);
2139 printf(" Source Port: 0x%04x mask: %d\n",
2140 rte_be_to_cpu_16(filter.src_port),
2141 filter.src_port_mask ? 0 : 1);
2142 printf(" protocol: 0x%02x mask: %d\n",
2144 filter.protocol_mask ? 0 : 1);
2145 printf(" priority: %d flags: 0x%02x queue: %d\n",
2146 filter.priority, filter.tcp_flags, rx_queue);