1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation.
3 * Copyright(c) 2014 6WIND S.A.
14 #include <sys/socket.h>
15 #include <netinet/in.h>
17 #include <sys/queue.h>
19 #include <rte_common.h>
20 #include <rte_byteorder.h>
22 #include <rte_debug.h>
23 #include <rte_cycles.h>
24 #include <rte_memory.h>
25 #include <rte_memzone.h>
26 #include <rte_malloc.h>
27 #include <rte_launch.h>
29 #include <rte_per_lcore.h>
30 #include <rte_lcore.h>
31 #include <rte_atomic.h>
32 #include <rte_branch_prediction.h>
34 #include <rte_mempool.h>
35 #include <rte_interrupts.h>
37 #include <rte_ether.h>
38 #include <rte_ethdev.h>
39 #include <rte_string_fns.h>
40 #include <rte_devargs.h>
43 #include <rte_mbuf_dyn.h>
45 #include <cmdline_rdline.h>
46 #include <cmdline_parse.h>
47 #include <cmdline_parse_num.h>
48 #include <cmdline_parse_string.h>
49 #include <cmdline_parse_ipaddr.h>
50 #include <cmdline_parse_etheraddr.h>
51 #include <cmdline_socket.h>
54 #include <rte_eth_bond.h>
55 #include <rte_eth_bond_8023ad.h>
57 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA
58 #include <rte_pmd_dpaa.h>
61 #include <rte_pmd_ixgbe.h>
64 #include <rte_pmd_i40e.h>
67 #include <rte_pmd_bnxt.h>
70 #include "cmdline_mtr.h"
71 #include "cmdline_tm.h"
74 static struct cmdline *testpmd_cl;
76 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue);
78 /* *** Help command with introduction. *** */
79 struct cmd_help_brief_result {
80 cmdline_fixed_string_t help;
83 static void cmd_help_brief_parsed(__rte_unused void *parsed_result,
85 __rte_unused void *data)
90 "Help is available for the following sections:\n\n"
91 " help control : Start and stop forwarding.\n"
92 " help display : Displaying port, stats and config "
94 " help config : Configuration information.\n"
95 " help ports : Configuring ports.\n"
96 " help registers : Reading and setting port registers.\n"
97 " help filters : Filters configuration help.\n"
98 " help traffic_management : Traffic Management commands.\n"
99 " help devices : Device related cmds.\n"
100 " help all : All of the above sections.\n\n"
105 cmdline_parse_token_string_t cmd_help_brief_help =
106 TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help");
108 cmdline_parse_inst_t cmd_help_brief = {
109 .f = cmd_help_brief_parsed,
111 .help_str = "help: Show help",
113 (void *)&cmd_help_brief_help,
118 /* *** Help command with help sections. *** */
119 struct cmd_help_long_result {
120 cmdline_fixed_string_t help;
121 cmdline_fixed_string_t section;
124 static void cmd_help_long_parsed(void *parsed_result,
126 __rte_unused void *data)
129 struct cmd_help_long_result *res = parsed_result;
131 if (!strcmp(res->section, "all"))
134 if (show_all || !strcmp(res->section, "control")) {
139 "Control forwarding:\n"
140 "-------------------\n\n"
143 " Start packet forwarding with current configuration.\n\n"
146 " Start packet forwarding with current config"
147 " after sending one burst of packets.\n\n"
150 " Stop packet forwarding, and display accumulated"
154 " Quit to prompt.\n\n"
158 if (show_all || !strcmp(res->section, "display")) {
166 "show port (info|stats|summary|xstats|fdir|dcb_tc|cap) (port_id|all)\n"
167 " Display information for port_id, or all.\n\n"
169 "show port port_id (module_eeprom|eeprom)\n"
170 " Display the module EEPROM or EEPROM information for port_id.\n\n"
172 "show port X rss reta (size) (mask0,mask1,...)\n"
173 " Display the rss redirection table entry indicated"
174 " by masks on port X. size is used to indicate the"
175 " hardware supported reta size\n\n"
177 "show port (port_id) rss-hash [key]\n"
178 " Display the RSS hash functions and RSS hash key of port\n\n"
180 "clear port (info|stats|xstats|fdir) (port_id|all)\n"
181 " Clear information for port_id, or all.\n\n"
183 "show (rxq|txq) info (port_id) (queue_id)\n"
184 " Display information for configured RX/TX queue.\n\n"
186 "show config (rxtx|cores|fwd|rxoffs|rxpkts|txpkts)\n"
187 " Display the given configuration.\n\n"
189 "read rxd (port_id) (queue_id) (rxd_id)\n"
190 " Display an RX descriptor of a port RX queue.\n\n"
192 "read txd (port_id) (queue_id) (txd_id)\n"
193 " Display a TX descriptor of a port TX queue.\n\n"
195 "ddp get list (port_id)\n"
196 " Get ddp profile info list\n\n"
198 "ddp get info (profile_path)\n"
199 " Get ddp profile information.\n\n"
201 "show vf stats (port_id) (vf_id)\n"
202 " Display a VF's statistics.\n\n"
204 "clear vf stats (port_id) (vf_id)\n"
205 " Reset a VF's statistics.\n\n"
207 "show port (port_id) pctype mapping\n"
208 " Get flow ptype to pctype mapping on a port\n\n"
210 "show port meter stats (port_id) (meter_id) (clear)\n"
211 " Get meter stats on a port\n\n"
213 "show fwd stats all\n"
214 " Display statistics for all fwd engines.\n\n"
216 "clear fwd stats all\n"
217 " Clear statistics for all fwd engines.\n\n"
219 "show port (port_id) rx_offload capabilities\n"
220 " List all per queue and per port Rx offloading"
221 " capabilities of a port\n\n"
223 "show port (port_id) rx_offload configuration\n"
224 " List port level and all queue level"
225 " Rx offloading configuration\n\n"
227 "show port (port_id) tx_offload capabilities\n"
228 " List all per queue and per port"
229 " Tx offloading capabilities of a port\n\n"
231 "show port (port_id) tx_offload configuration\n"
232 " List port level and all queue level"
233 " Tx offloading configuration\n\n"
235 "show port (port_id) tx_metadata\n"
236 " Show Tx metadata value set"
237 " for a specific port\n\n"
239 "show port (port_id) ptypes\n"
240 " Show port supported ptypes"
241 " for a specific port\n\n"
243 "show device info (<identifier>|all)"
244 " Show general information about devices probed.\n\n"
246 "show port (port_id) rxq|txq (queue_id) desc (desc_id) status"
247 " Show status of rx|tx descriptor.\n\n"
249 "show port (port_id) macs|mcast_macs"
250 " Display list of mac addresses added to port.\n\n"
252 "show port (port_id) fec capabilities"
253 " Show fec capabilities of a port.\n\n"
255 "show port (port_id) fec_mode"
256 " Show fec mode of a port.\n\n"
260 if (show_all || !strcmp(res->section, "config")) {
266 "Configuration changes only become active when"
267 " forwarding is started/restarted.\n\n"
270 " Reset forwarding to the default configuration.\n\n"
272 "set verbose (level)\n"
273 " Set the debug verbosity level X.\n\n"
275 "set log global|(type) (level)\n"
276 " Set the log level.\n\n"
279 " Set number of ports.\n\n"
282 " Set number of cores.\n\n"
284 "set coremask (mask)\n"
285 " Set the forwarding cores hexadecimal mask.\n\n"
287 "set portmask (mask)\n"
288 " Set the forwarding ports hexadecimal mask.\n\n"
291 " Set number of packets per burst.\n\n"
293 "set burst tx delay (microseconds) retry (num)\n"
294 " Set the transmit delay time and number of retries,"
295 " effective when retry is enabled.\n\n"
297 "set rxoffs (x[,y]*)\n"
298 " Set the offset of each packet segment on"
299 " receiving if split feature is engaged."
300 " Affects only the queues configured with split"
303 "set rxpkts (x[,y]*)\n"
304 " Set the length of each segment to scatter"
305 " packets on receiving if split feature is engaged."
306 " Affects only the queues configured with split"
309 "set txpkts (x[,y]*)\n"
310 " Set the length of each segment of TXONLY"
311 " and optionally CSUM packets.\n\n"
313 "set txsplit (off|on|rand)\n"
314 " Set the split policy for the TX packets."
315 " Right now only applicable for CSUM and TXONLY"
318 "set txtimes (x, y)\n"
319 " Set the scheduling on timestamps"
320 " timings for the TXONLY mode\n\n"
322 "set corelist (x[,y]*)\n"
323 " Set the list of forwarding cores.\n\n"
325 "set portlist (x[,y]*)\n"
326 " Set the list of forwarding ports.\n\n"
328 "set port setup on (iterator|event)\n"
329 " Select how attached port is retrieved for setup.\n\n"
331 "set tx loopback (port_id) (on|off)\n"
332 " Enable or disable tx loopback.\n\n"
334 "set all queues drop (port_id) (on|off)\n"
335 " Set drop enable bit for all queues.\n\n"
337 "set vf split drop (port_id) (vf_id) (on|off)\n"
338 " Set split drop enable bit for a VF from the PF.\n\n"
340 "set vf mac antispoof (port_id) (vf_id) (on|off).\n"
341 " Set MAC antispoof for a VF from the PF.\n\n"
343 "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n"
344 " Enable MACsec offload.\n\n"
346 "set macsec offload (port_id) off\n"
347 " Disable MACsec offload.\n\n"
349 "set macsec sc (tx|rx) (port_id) (mac) (pi)\n"
350 " Configure MACsec secure connection (SC).\n\n"
352 "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n"
353 " Configure MACsec secure association (SA).\n\n"
355 "set vf broadcast (port_id) (vf_id) (on|off)\n"
356 " Set VF broadcast for a VF from the PF.\n\n"
358 "vlan set stripq (on|off) (port_id,queue_id)\n"
359 " Set the VLAN strip for a queue on a port.\n\n"
361 "set vf vlan stripq (port_id) (vf_id) (on|off)\n"
362 " Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n"
364 "set vf vlan insert (port_id) (vf_id) (vlan_id)\n"
365 " Set VLAN insert for a VF from the PF.\n\n"
367 "set vf vlan antispoof (port_id) (vf_id) (on|off)\n"
368 " Set VLAN antispoof for a VF from the PF.\n\n"
370 "set vf vlan tag (port_id) (vf_id) (on|off)\n"
371 " Set VLAN tag for a VF from the PF.\n\n"
373 "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n"
374 " Set a VF's max bandwidth(Mbps).\n\n"
376 "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n"
377 " Set all TCs' min bandwidth(%%) on a VF.\n\n"
379 "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n"
380 " Set a TC's max bandwidth(Mbps) on a VF.\n\n"
382 "set tx strict-link-priority (port_id) (tc_bitmap)\n"
383 " Set some TCs' strict link priority mode on a physical port.\n\n"
385 "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n"
386 " Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n"
388 "vlan set (strip|filter|qinq_strip|extend) (on|off) (port_id)\n"
389 " Set the VLAN strip or filter or qinq strip or extend\n\n"
391 "vlan set (inner|outer) tpid (value) (port_id)\n"
392 " Set the VLAN TPID for Packet Filtering on"
395 "rx_vlan add (vlan_id|all) (port_id)\n"
396 " Add a vlan_id, or all identifiers, to the set"
397 " of VLAN identifiers filtered by port_id.\n\n"
399 "rx_vlan rm (vlan_id|all) (port_id)\n"
400 " Remove a vlan_id, or all identifiers, from the set"
401 " of VLAN identifiers filtered by port_id.\n\n"
403 "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n"
404 " Add a vlan_id, to the set of VLAN identifiers"
405 "filtered for VF(s) from port_id.\n\n"
407 "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n"
408 " Remove a vlan_id, to the set of VLAN identifiers"
409 "filtered for VF(s) from port_id.\n\n"
411 "rx_vxlan_port add (udp_port) (port_id)\n"
412 " Add an UDP port for VXLAN packet filter on a port\n\n"
414 "rx_vxlan_port rm (udp_port) (port_id)\n"
415 " Remove an UDP port for VXLAN packet filter on a port\n\n"
417 "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n"
418 " Set hardware insertion of VLAN IDs (single or double VLAN "
419 "depends on the number of VLAN IDs) in packets sent on a port.\n\n"
421 "tx_vlan set pvid port_id vlan_id (on|off)\n"
422 " Set port based TX VLAN insertion.\n\n"
424 "tx_vlan reset (port_id)\n"
425 " Disable hardware insertion of a VLAN header in"
426 " packets sent on a port.\n\n"
428 "csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)\n"
429 " Select hardware or software calculation of the"
430 " checksum when transmitting a packet using the"
431 " csum forward engine.\n"
432 " ip|udp|tcp|sctp always concern the inner layer.\n"
433 " outer-ip concerns the outer IP layer in"
434 " outer-udp concerns the outer UDP layer in"
435 " case the packet is recognized as a tunnel packet by"
436 " the forward engine (vxlan, gre and ipip are supported)\n"
437 " Please check the NIC datasheet for HW limits.\n\n"
439 "csum parse-tunnel (on|off) (tx_port_id)\n"
440 " If disabled, treat tunnel packets as non-tunneled"
441 " packets (treat inner headers as payload). The port\n"
442 " argument is the port used for TX in csum forward"
445 "csum show (port_id)\n"
446 " Display tx checksum offload configuration\n\n"
448 "tso set (segsize) (portid)\n"
449 " Enable TCP Segmentation Offload in csum forward"
451 " Please check the NIC datasheet for HW limits.\n\n"
454 " Display the status of TCP Segmentation Offload.\n\n"
456 "set port (port_id) gro on|off\n"
457 " Enable or disable Generic Receive Offload in"
458 " csum forwarding engine.\n\n"
460 "show port (port_id) gro\n"
461 " Display GRO configuration.\n\n"
463 "set gro flush (cycles)\n"
464 " Set the cycle to flush GROed packets from"
465 " reassembly tables.\n\n"
467 "set port (port_id) gso (on|off)"
468 " Enable or disable Generic Segmentation Offload in"
469 " csum forwarding engine.\n\n"
471 "set gso segsz (length)\n"
472 " Set max packet length for output GSO segments,"
473 " including packet header and payload.\n\n"
475 "show port (port_id) gso\n"
476 " Show GSO configuration.\n\n"
479 " Set packet forwarding mode.\n\n"
481 "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n"
482 " Add a MAC address on port_id.\n\n"
484 "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n"
485 " Remove a MAC address from port_id.\n\n"
487 "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n"
488 " Set the default MAC address for port_id.\n\n"
490 "mac_addr add port (port_id) vf (vf_id) (mac_address)\n"
491 " Add a MAC address for a VF on the port.\n\n"
493 "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n"
494 " Set the MAC address for a VF from the PF.\n\n"
496 "set eth-peer (port_id) (peer_addr)\n"
497 " set the peer address for certain port.\n\n"
499 "set port (port_id) uta (mac_address|all) (on|off)\n"
500 " Add/Remove a or all unicast hash filter(s)"
503 "set promisc (port_id|all) (on|off)\n"
504 " Set the promiscuous mode on port_id, or all.\n\n"
506 "set allmulti (port_id|all) (on|off)\n"
507 " Set the allmulti mode on port_id, or all.\n\n"
509 "set vf promisc (port_id) (vf_id) (on|off)\n"
510 " Set unicast promiscuous mode for a VF from the PF.\n\n"
512 "set vf allmulti (port_id) (vf_id) (on|off)\n"
513 " Set multicast promiscuous mode for a VF from the PF.\n\n"
515 "set flow_ctrl rx (on|off) tx (on|off) (high_water)"
516 " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd"
517 " (on|off) autoneg (on|off) (port_id)\n"
518 "set flow_ctrl rx (on|off) (portid)\n"
519 "set flow_ctrl tx (on|off) (portid)\n"
520 "set flow_ctrl high_water (high_water) (portid)\n"
521 "set flow_ctrl low_water (low_water) (portid)\n"
522 "set flow_ctrl pause_time (pause_time) (portid)\n"
523 "set flow_ctrl send_xon (send_xon) (portid)\n"
524 "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n"
525 "set flow_ctrl autoneg (on|off) (port_id)\n"
526 " Set the link flow control parameter on a port.\n\n"
528 "set pfc_ctrl rx (on|off) tx (on|off) (high_water)"
529 " (low_water) (pause_time) (priority) (port_id)\n"
530 " Set the priority flow control parameter on a"
533 "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
534 " Set statistics mapping (qmapping 0..15) for RX/TX"
536 " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
537 " on port 0 to mapping 5.\n\n"
539 "set xstats-hide-zero on|off\n"
540 " Set the option to hide the zero values"
541 " for xstats display.\n"
543 "set record-core-cycles on|off\n"
544 " Set the option to enable measurement of CPU cycles.\n"
546 "set record-burst-stats on|off\n"
547 " Set the option to enable display of RX and TX bursts.\n"
549 "set port (port_id) vf (vf_id) rx|tx on|off\n"
550 " Enable/Disable a VF receive/tranmit from a port\n\n"
552 "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM"
554 " AUPE:accepts untagged VLAN;"
555 "ROPE:accept unicast hash\n\n"
556 " BAM:accepts broadcast packets;"
557 "MPE:accepts all multicast packets\n\n"
558 " Enable/Disable a VF receive mode of a port\n\n"
560 "set port (port_id) queue (queue_id) rate (rate_num)\n"
561 " Set rate limit for a queue of a port\n\n"
563 "set port (port_id) vf (vf_id) rate (rate_num) "
564 "queue_mask (queue_mask_value)\n"
565 " Set rate limit for queues in VF of a port\n\n"
567 "set port (port_id) mirror-rule (rule_id)"
568 " (pool-mirror-up|pool-mirror-down|vlan-mirror)"
569 " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n"
570 " Set pool or vlan type mirror rule on a port.\n"
571 " e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1"
572 " dst-pool 0 on' enable mirror traffic with vlan 0,1"
575 "set port (port_id) mirror-rule (rule_id)"
576 " (uplink-mirror|downlink-mirror) dst-pool"
577 " (pool_id) (on|off)\n"
578 " Set uplink or downlink type mirror rule on a port.\n"
579 " e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool"
580 " 0 on' enable mirror income traffic to pool 0.\n\n"
582 "reset port (port_id) mirror-rule (rule_id)\n"
583 " Reset a mirror rule.\n\n"
585 "set flush_rx (on|off)\n"
586 " Flush (default) or don't flush RX streams before"
587 " forwarding. Mainly used with PCAP drivers.\n\n"
589 "set bypass mode (normal|bypass|isolate) (port_id)\n"
590 " Set the bypass mode for the lowest port on bypass enabled"
593 "set bypass event (timeout|os_on|os_off|power_on|power_off) "
594 "mode (normal|bypass|isolate) (port_id)\n"
595 " Set the event required to initiate specified bypass mode for"
596 " the lowest port on a bypass enabled NIC where:\n"
597 " timeout = enable bypass after watchdog timeout.\n"
598 " os_on = enable bypass when OS/board is powered on.\n"
599 " os_off = enable bypass when OS/board is powered off.\n"
600 " power_on = enable bypass when power supply is turned on.\n"
601 " power_off = enable bypass when power supply is turned off."
604 "set bypass timeout (0|1.5|2|3|4|8|16|32)\n"
605 " Set the bypass watchdog timeout to 'n' seconds"
606 " where 0 = instant.\n\n"
608 "show bypass config (port_id)\n"
609 " Show the bypass configuration for a bypass enabled NIC"
610 " using the lowest port on the NIC.\n\n"
613 "create bonded device (mode) (socket)\n"
614 " Create a new bonded device with specific bonding mode and socket.\n\n"
616 "add bonding slave (slave_id) (port_id)\n"
617 " Add a slave device to a bonded device.\n\n"
619 "remove bonding slave (slave_id) (port_id)\n"
620 " Remove a slave device from a bonded device.\n\n"
622 "set bonding mode (value) (port_id)\n"
623 " Set the bonding mode on a bonded device.\n\n"
625 "set bonding primary (slave_id) (port_id)\n"
626 " Set the primary slave for a bonded device.\n\n"
628 "show bonding config (port_id)\n"
629 " Show the bonding config for port_id.\n\n"
631 "set bonding mac_addr (port_id) (address)\n"
632 " Set the MAC address of a bonded device.\n\n"
634 "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)"
635 " Set Aggregation mode for IEEE802.3AD (mode 4)"
637 "set bonding balance_xmit_policy (port_id) (l2|l23|l34)\n"
638 " Set the transmit balance policy for bonded device running in balance mode.\n\n"
640 "set bonding mon_period (port_id) (value)\n"
641 " Set the bonding link status monitoring polling period in ms.\n\n"
643 "set bonding lacp dedicated_queues <port_id> (enable|disable)\n"
644 " Enable/disable dedicated queues for LACP control traffic.\n\n"
647 "set link-up port (port_id)\n"
648 " Set link up for a port.\n\n"
650 "set link-down port (port_id)\n"
651 " Set link down for a port.\n\n"
653 "ddp add (port_id) (profile_path[,backup_profile_path])\n"
654 " Load a profile package on a port\n\n"
656 "ddp del (port_id) (backup_profile_path)\n"
657 " Delete a profile package from a port\n\n"
659 "ptype mapping get (port_id) (valid_only)\n"
660 " Get ptype mapping on a port\n\n"
662 "ptype mapping replace (port_id) (target) (mask) (pky_type)\n"
663 " Replace target with the pkt_type in ptype mapping\n\n"
665 "ptype mapping reset (port_id)\n"
666 " Reset ptype mapping on a port\n\n"
668 "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n"
669 " Update a ptype mapping item on a port\n\n"
671 "set port (port_id) ptype_mask (ptype_mask)\n"
672 " set packet types classification for a specific port\n\n"
674 "set port (port_id) queue-region region_id (value) "
675 "queue_start_index (value) queue_num (value)\n"
676 " Set a queue region on a port\n\n"
678 "set port (port_id) queue-region region_id (value) "
680 " Set a flowtype region index on a port\n\n"
682 "set port (port_id) queue-region UP (value) region_id (value)\n"
683 " Set the mapping of User Priority to "
684 "queue region on a port\n\n"
686 "set port (port_id) queue-region flush (on|off)\n"
687 " flush all queue region related configuration\n\n"
689 "show port meter cap (port_id)\n"
690 " Show port meter capability information\n\n"
692 "add port meter profile srtcm_rfc2697 (port_id) (profile_id) (cir) (cbs) (ebs)\n"
693 " meter profile add - srtcm rfc 2697\n\n"
695 "add port meter profile trtcm_rfc2698 (port_id) (profile_id) (cir) (pir) (cbs) (pbs)\n"
696 " meter profile add - trtcm rfc 2698\n\n"
698 "add port meter profile trtcm_rfc4115 (port_id) (profile_id) (cir) (eir) (cbs) (ebs)\n"
699 " meter profile add - trtcm rfc 4115\n\n"
701 "del port meter profile (port_id) (profile_id)\n"
702 " meter profile delete\n\n"
704 "create port meter (port_id) (mtr_id) (profile_id) (meter_enable)\n"
705 "(g_action) (y_action) (r_action) (stats_mask) (shared)\n"
706 "(use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n"
707 "(dscp_tbl_entry63)]\n"
710 "enable port meter (port_id) (mtr_id)\n"
713 "disable port meter (port_id) (mtr_id)\n"
716 "del port meter (port_id) (mtr_id)\n"
719 "set port meter profile (port_id) (mtr_id) (profile_id)\n"
720 " meter update meter profile\n\n"
722 "set port meter dscp table (port_id) (mtr_id) [(dscp_tbl_entry0)\n"
723 "(dscp_tbl_entry1)...(dscp_tbl_entry63)]\n"
724 " update meter dscp table entries\n\n"
726 "set port meter policer action (port_id) (mtr_id) (action_mask)\n"
727 "(action0) [(action1) (action2)]\n"
728 " meter update policer action\n\n"
730 "set port meter stats mask (port_id) (mtr_id) (stats_mask)\n"
731 " meter update stats\n\n"
733 "show port (port_id) queue-region\n"
734 " show all queue region related configuration info\n\n"
736 "set port (port_id) fec_mode auto|off|rs|baser\n"
737 " set fec mode for a specific port\n\n"
739 , list_pkt_forwarding_modes()
743 if (show_all || !strcmp(res->section, "ports")) {
749 "----------------\n\n"
751 "port start (port_id|all)\n"
752 " Start all ports or port_id.\n\n"
754 "port stop (port_id|all)\n"
755 " Stop all ports or port_id.\n\n"
757 "port close (port_id|all)\n"
758 " Close all ports or port_id.\n\n"
760 "port reset (port_id|all)\n"
761 " Reset all ports or port_id.\n\n"
763 "port attach (ident)\n"
764 " Attach physical or virtual dev by pci address or virtual device name\n\n"
766 "port detach (port_id)\n"
767 " Detach physical or virtual dev by port_id\n\n"
769 "port config (port_id|all)"
770 " speed (10|100|1000|10000|25000|40000|50000|100000|200000|auto)"
771 " duplex (half|full|auto)\n"
772 " Set speed and duplex for all ports or port_id\n\n"
774 "port config (port_id|all) loopback (mode)\n"
775 " Set loopback mode for all ports or port_id\n\n"
777 "port config all (rxq|txq|rxd|txd) (value)\n"
778 " Set number for rxq/txq/rxd/txd.\n\n"
780 "port config all max-pkt-len (value)\n"
781 " Set the max packet length.\n\n"
783 "port config all max-lro-pkt-size (value)\n"
784 " Set the max LRO aggregated packet size.\n\n"
786 "port config all drop-en (on|off)\n"
787 " Enable or disable packet drop on all RX queues of all ports when no "
788 "receive buffers available.\n\n"
790 "port config all rss (all|default|ip|tcp|udp|sctp|"
791 "ether|port|vxlan|geneve|nvgre|vxlan-gpe|ecpri|none|level-default|"
792 "level-outer|level-inner|<flowtype_id>)\n"
793 " Set the RSS mode.\n\n"
795 "port config port-id rss reta (hash,queue)[,(hash,queue)]\n"
796 " Set the RSS redirection table.\n\n"
798 "port config (port_id) dcb vt (on|off) (traffic_class)"
800 " Set the DCB mode.\n\n"
802 "port config all burst (value)\n"
803 " Set the number of packets per burst.\n\n"
805 "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)"
807 " Set the ring prefetch/host/writeback threshold"
808 " for tx/rx queue.\n\n"
810 "port config all (txfreet|txrst|rxfreet) (value)\n"
811 " Set free threshold for rx/tx, or set"
812 " tx rs bit threshold.\n\n"
813 "port config mtu X value\n"
814 " Set the MTU of port X to a given value\n\n"
816 "port config (port_id) (rxq|txq) (queue_id) ring_size (value)\n"
817 " Set a rx/tx queue's ring size configuration, the new"
818 " value will take effect after command that (re-)start the port"
819 " or command that setup the specific queue\n\n"
821 "port (port_id) (rxq|txq) (queue_id) (start|stop)\n"
822 " Start/stop a rx/tx queue of port X. Only take effect"
823 " when port X is started\n\n"
825 "port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)\n"
826 " Switch on/off a deferred start of port X rx/tx queue. Only"
827 " take effect when port X is stopped.\n\n"
829 "port (port_id) (rxq|txq) (queue_id) setup\n"
830 " Setup a rx/tx queue of port X.\n\n"
832 "port config (port_id) pctype mapping reset\n"
833 " Reset flow type to pctype mapping on a port\n\n"
835 "port config (port_id) pctype mapping update"
836 " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n"
837 " Update a flow type to pctype mapping item on a port\n\n"
839 "port config (port_id) pctype (pctype_id) hash_inset|"
840 "fdir_inset|fdir_flx_inset get|set|clear field\n"
842 " Configure RSS|FDIR|FDIR_FLX input set for some pctype\n\n"
844 "port config (port_id) pctype (pctype_id) hash_inset|"
845 "fdir_inset|fdir_flx_inset clear all"
846 " Clear RSS|FDIR|FDIR_FLX input set completely for some pctype\n\n"
848 "port config (port_id) udp_tunnel_port add|rm vxlan|geneve (udp_port)\n\n"
849 " Add/remove UDP tunnel port for tunneling offload\n\n"
851 "port config <port_id> rx_offload vlan_strip|"
852 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
853 "outer_ipv4_cksum|macsec_strip|header_split|"
854 "vlan_filter|vlan_extend|jumbo_frame|scatter|"
855 "buffer_split|timestamp|security|keep_crc on|off\n"
856 " Enable or disable a per port Rx offloading"
857 " on all Rx queues of a port\n\n"
859 "port (port_id) rxq (queue_id) rx_offload vlan_strip|"
860 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
861 "outer_ipv4_cksum|macsec_strip|header_split|"
862 "vlan_filter|vlan_extend|jumbo_frame|scatter|"
863 "buffer_split|timestamp|security|keep_crc on|off\n"
864 " Enable or disable a per queue Rx offloading"
865 " only on a specific Rx queue\n\n"
867 "port config (port_id) tx_offload vlan_insert|"
868 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
869 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
870 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|"
871 "macsec_insert|mt_lockfree|multi_segs|mbuf_fast_free|"
873 " Enable or disable a per port Tx offloading"
874 " on all Tx queues of a port\n\n"
876 "port (port_id) txq (queue_id) tx_offload vlan_insert|"
877 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
878 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
879 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|macsec_insert"
880 "|mt_lockfree|multi_segs|mbuf_fast_free|security"
882 " Enable or disable a per queue Tx offloading"
883 " only on a specific Tx queue\n\n"
885 "bpf-load rx|tx (port) (queue) (J|M|B) (file_name)\n"
886 " Load an eBPF program as a callback"
887 " for particular RX/TX queue\n\n"
889 "bpf-unload rx|tx (port) (queue)\n"
890 " Unload previously loaded eBPF program"
891 " for particular RX/TX queue\n\n"
893 "port config (port_id) tx_metadata (value)\n"
894 " Set Tx metadata value per port. Testpmd will add this value"
895 " to any Tx packet sent from this port\n\n"
897 "port config (port_id) dynf (name) set|clear\n"
898 " Register a dynf and Set/clear this flag on Tx. "
899 "Testpmd will set this value to any Tx packet "
900 "sent from this port\n\n"
904 if (show_all || !strcmp(res->section, "registers")) {
912 "read reg (port_id) (address)\n"
913 " Display value of a port register.\n\n"
915 "read regfield (port_id) (address) (bit_x) (bit_y)\n"
916 " Display a port register bit field.\n\n"
918 "read regbit (port_id) (address) (bit_x)\n"
919 " Display a single port register bit.\n\n"
921 "write reg (port_id) (address) (value)\n"
922 " Set value of a port register.\n\n"
924 "write regfield (port_id) (address) (bit_x) (bit_y)"
926 " Set bit field of a port register.\n\n"
928 "write regbit (port_id) (address) (bit_x) (value)\n"
929 " Set single bit value of a port register.\n\n"
932 if (show_all || !strcmp(res->section, "filters")) {
941 "flow_director_filter (port_id) mode raw (add|del|update)"
942 " flow (flow_id) (drop|fwd) queue (queue_id)"
943 " fd_id (fd_id_value) packet (packet file name)\n"
944 " Add/Del a raw type flow director filter.\n\n"
947 "flow_director_mask (port_id) mode IP vlan (vlan_value)"
948 " src_mask (ipv4_src) (ipv6_src) (src_port)"
949 " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n"
950 " Set flow director IP mask.\n\n"
952 "flow_director_mask (port_id) mode MAC-VLAN"
953 " vlan (vlan_value)\n"
954 " Set flow director MAC-VLAN mask.\n\n"
956 "flow_director_mask (port_id) mode Tunnel"
957 " vlan (vlan_value) mac (mac_value)"
958 " tunnel-type (tunnel_type_value)"
959 " tunnel-id (tunnel_id_value)\n"
960 " Set flow director Tunnel mask.\n\n"
962 "flow_director_flex_payload (port_id)"
963 " (raw|l2|l3|l4) (config)\n"
964 " Configure flex payload selection.\n\n"
966 "flow validate {port_id}"
967 " [group {group_id}] [priority {level}]"
968 " [ingress] [egress]"
969 " pattern {item} [/ {item} [...]] / end"
970 " actions {action} [/ {action} [...]] / end\n"
971 " Check whether a flow rule can be created.\n\n"
973 "flow create {port_id}"
974 " [group {group_id}] [priority {level}]"
975 " [ingress] [egress]"
976 " pattern {item} [/ {item} [...]] / end"
977 " actions {action} [/ {action} [...]] / end\n"
978 " Create a flow rule.\n\n"
980 "flow destroy {port_id} rule {rule_id} [...]\n"
981 " Destroy specific flow rules.\n\n"
983 "flow flush {port_id}\n"
984 " Destroy all flow rules.\n\n"
986 "flow query {port_id} {rule_id} {action}\n"
987 " Query an existing flow rule.\n\n"
989 "flow list {port_id} [group {group_id}] [...]\n"
990 " List existing flow rules sorted by priority,"
991 " filtered by group identifiers.\n\n"
993 "flow isolate {port_id} {boolean}\n"
994 " Restrict ingress traffic to the defined"
997 "flow aged {port_id} [destroy]\n"
998 " List and destroy aged flows"
1001 "flow shared_action {port_id} create"
1002 " [action_id {shared_action_id}]"
1003 " [ingress] [egress]"
1004 " action {action} / end\n"
1005 " Create shared action.\n\n"
1007 "flow shared_action {port_id} update"
1008 " {shared_action_id} action {action} / end\n"
1009 " Update shared action.\n\n"
1011 "flow shared_action {port_id} destroy"
1012 " action_id {shared_action_id} [...]\n"
1013 " Destroy specific shared actions.\n\n"
1015 "flow shared_action {port_id} query"
1016 " {shared_action_id}\n"
1017 " Query an existing shared action.\n\n"
1019 "set vxlan ip-version (ipv4|ipv6) vni (vni) udp-src"
1020 " (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst"
1021 " (ip-dst) eth-src (eth-src) eth-dst (eth-dst)\n"
1022 " Configure the VXLAN encapsulation for flows.\n\n"
1024 "set vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni)"
1025 " udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src)"
1026 " ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src)"
1027 " eth-dst (eth-dst)\n"
1028 " Configure the VXLAN encapsulation for flows.\n\n"
1030 "set vxlan-tos-ttl ip-version (ipv4|ipv6) vni (vni) udp-src"
1031 " (udp-src) udp-dst (udp-dst) ip-tos (ip-tos) ip-ttl (ip-ttl)"
1032 " ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src)"
1033 " eth-dst (eth-dst)\n"
1034 " Configure the VXLAN encapsulation for flows.\n\n"
1036 "set nvgre ip-version (ipv4|ipv6) tni (tni) ip-src"
1037 " (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst"
1039 " Configure the NVGRE encapsulation for flows.\n\n"
1041 "set nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni)"
1042 " ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci)"
1043 " eth-src (eth-src) eth-dst (eth-dst)\n"
1044 " Configure the NVGRE encapsulation for flows.\n\n"
1046 "set raw_encap {flow items}\n"
1047 " Configure the encapsulation with raw data.\n\n"
1049 "set raw_decap {flow items}\n"
1050 " Configure the decapsulation with raw data.\n\n"
1055 if (show_all || !strcmp(res->section, "traffic_management")) {
1059 "Traffic Management:\n"
1061 "show port tm cap (port_id)\n"
1062 " Display the port TM capability.\n\n"
1064 "show port tm level cap (port_id) (level_id)\n"
1065 " Display the port TM hierarchical level capability.\n\n"
1067 "show port tm node cap (port_id) (node_id)\n"
1068 " Display the port TM node capability.\n\n"
1070 "show port tm node type (port_id) (node_id)\n"
1071 " Display the port TM node type.\n\n"
1073 "show port tm node stats (port_id) (node_id) (clear)\n"
1074 " Display the port TM node stats.\n\n"
1076 "add port tm node shaper profile (port_id) (shaper_profile_id)"
1077 " (cmit_tb_rate) (cmit_tb_size) (peak_tb_rate) (peak_tb_size)"
1078 " (packet_length_adjust) (packet_mode)\n"
1079 " Add port tm node private shaper profile.\n\n"
1081 "del port tm node shaper profile (port_id) (shaper_profile_id)\n"
1082 " Delete port tm node private shaper profile.\n\n"
1084 "add port tm node shared shaper (port_id) (shared_shaper_id)"
1085 " (shaper_profile_id)\n"
1086 " Add/update port tm node shared shaper.\n\n"
1088 "del port tm node shared shaper (port_id) (shared_shaper_id)\n"
1089 " Delete port tm node shared shaper.\n\n"
1091 "set port tm node shaper profile (port_id) (node_id)"
1092 " (shaper_profile_id)\n"
1093 " Set port tm node shaper profile.\n\n"
1095 "add port tm node wred profile (port_id) (wred_profile_id)"
1096 " (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g)"
1097 " (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y)"
1098 " (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)\n"
1099 " Add port tm node wred profile.\n\n"
1101 "del port tm node wred profile (port_id) (wred_profile_id)\n"
1102 " Delete port tm node wred profile.\n\n"
1104 "add port tm nonleaf node (port_id) (node_id) (parent_node_id)"
1105 " (priority) (weight) (level_id) (shaper_profile_id)"
1106 " (n_sp_priorities) (stats_mask) (n_shared_shapers)"
1107 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1108 " Add port tm nonleaf node.\n\n"
1110 "add port tm nonleaf node pktmode (port_id) (node_id) (parent_node_id)"
1111 " (priority) (weight) (level_id) (shaper_profile_id)"
1112 " (n_sp_priorities) (stats_mask) (n_shared_shapers)"
1113 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1114 " Add port tm nonleaf node with pkt mode enabled.\n\n"
1116 "add port tm leaf node (port_id) (node_id) (parent_node_id)"
1117 " (priority) (weight) (level_id) (shaper_profile_id)"
1118 " (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers)"
1119 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1120 " Add port tm leaf node.\n\n"
1122 "del port tm node (port_id) (node_id)\n"
1123 " Delete port tm node.\n\n"
1125 "set port tm node parent (port_id) (node_id) (parent_node_id)"
1126 " (priority) (weight)\n"
1127 " Set port tm node parent.\n\n"
1129 "suspend port tm node (port_id) (node_id)"
1130 " Suspend tm node.\n\n"
1132 "resume port tm node (port_id) (node_id)"
1133 " Resume tm node.\n\n"
1135 "port tm hierarchy commit (port_id) (clean_on_fail)\n"
1136 " Commit tm hierarchy.\n\n"
1138 "set port tm mark ip_ecn (port) (green) (yellow)"
1140 " Enables/Disables the traffic management marking"
1141 " for IP ECN (Explicit Congestion Notification)"
1142 " packets on a given port\n\n"
1144 "set port tm mark ip_dscp (port) (green) (yellow)"
1146 " Enables/Disables the traffic management marking"
1147 " on the port for IP dscp packets\n\n"
1149 "set port tm mark vlan_dei (port) (green) (yellow)"
1151 " Enables/Disables the traffic management marking"
1152 " on the port for VLAN packets with DEI enabled\n\n"
1156 if (show_all || !strcmp(res->section, "devices")) {
1160 "Device Operations:\n"
1162 "device detach (identifier)\n"
1163 " Detach device by identifier.\n\n"
1169 cmdline_parse_token_string_t cmd_help_long_help =
1170 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help");
1172 cmdline_parse_token_string_t cmd_help_long_section =
1173 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section,
1174 "all#control#display#config#"
1175 "ports#registers#filters#traffic_management#devices");
1177 cmdline_parse_inst_t cmd_help_long = {
1178 .f = cmd_help_long_parsed,
1180 .help_str = "help all|control|display|config|ports|register|"
1181 "filters|traffic_management|devices: "
1184 (void *)&cmd_help_long_help,
1185 (void *)&cmd_help_long_section,
1191 /* *** start/stop/close all ports *** */
1192 struct cmd_operate_port_result {
1193 cmdline_fixed_string_t keyword;
1194 cmdline_fixed_string_t name;
1195 cmdline_fixed_string_t value;
1198 static void cmd_operate_port_parsed(void *parsed_result,
1199 __rte_unused struct cmdline *cl,
1200 __rte_unused void *data)
1202 struct cmd_operate_port_result *res = parsed_result;
1204 if (!strcmp(res->name, "start"))
1205 start_port(RTE_PORT_ALL);
1206 else if (!strcmp(res->name, "stop"))
1207 stop_port(RTE_PORT_ALL);
1208 else if (!strcmp(res->name, "close"))
1209 close_port(RTE_PORT_ALL);
1210 else if (!strcmp(res->name, "reset"))
1211 reset_port(RTE_PORT_ALL);
1213 printf("Unknown parameter\n");
1216 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
1217 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword,
1219 cmdline_parse_token_string_t cmd_operate_port_all_port =
1220 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name,
1221 "start#stop#close#reset");
1222 cmdline_parse_token_string_t cmd_operate_port_all_all =
1223 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all");
1225 cmdline_parse_inst_t cmd_operate_port = {
1226 .f = cmd_operate_port_parsed,
1228 .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports",
1230 (void *)&cmd_operate_port_all_cmd,
1231 (void *)&cmd_operate_port_all_port,
1232 (void *)&cmd_operate_port_all_all,
1237 /* *** start/stop/close specific port *** */
1238 struct cmd_operate_specific_port_result {
1239 cmdline_fixed_string_t keyword;
1240 cmdline_fixed_string_t name;
1244 static void cmd_operate_specific_port_parsed(void *parsed_result,
1245 __rte_unused struct cmdline *cl,
1246 __rte_unused void *data)
1248 struct cmd_operate_specific_port_result *res = parsed_result;
1250 if (!strcmp(res->name, "start"))
1251 start_port(res->value);
1252 else if (!strcmp(res->name, "stop"))
1253 stop_port(res->value);
1254 else if (!strcmp(res->name, "close"))
1255 close_port(res->value);
1256 else if (!strcmp(res->name, "reset"))
1257 reset_port(res->value);
1259 printf("Unknown parameter\n");
1262 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
1263 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1265 cmdline_parse_token_string_t cmd_operate_specific_port_port =
1266 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1267 name, "start#stop#close#reset");
1268 cmdline_parse_token_num_t cmd_operate_specific_port_id =
1269 TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result,
1272 cmdline_parse_inst_t cmd_operate_specific_port = {
1273 .f = cmd_operate_specific_port_parsed,
1275 .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id",
1277 (void *)&cmd_operate_specific_port_cmd,
1278 (void *)&cmd_operate_specific_port_port,
1279 (void *)&cmd_operate_specific_port_id,
1284 /* *** enable port setup (after attach) via iterator or event *** */
1285 struct cmd_set_port_setup_on_result {
1286 cmdline_fixed_string_t set;
1287 cmdline_fixed_string_t port;
1288 cmdline_fixed_string_t setup;
1289 cmdline_fixed_string_t on;
1290 cmdline_fixed_string_t mode;
1293 static void cmd_set_port_setup_on_parsed(void *parsed_result,
1294 __rte_unused struct cmdline *cl,
1295 __rte_unused void *data)
1297 struct cmd_set_port_setup_on_result *res = parsed_result;
1299 if (strcmp(res->mode, "event") == 0)
1300 setup_on_probe_event = true;
1301 else if (strcmp(res->mode, "iterator") == 0)
1302 setup_on_probe_event = false;
1304 printf("Unknown mode\n");
1307 cmdline_parse_token_string_t cmd_set_port_setup_on_set =
1308 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1310 cmdline_parse_token_string_t cmd_set_port_setup_on_port =
1311 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1313 cmdline_parse_token_string_t cmd_set_port_setup_on_setup =
1314 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1316 cmdline_parse_token_string_t cmd_set_port_setup_on_on =
1317 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1319 cmdline_parse_token_string_t cmd_set_port_setup_on_mode =
1320 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1321 mode, "iterator#event");
1323 cmdline_parse_inst_t cmd_set_port_setup_on = {
1324 .f = cmd_set_port_setup_on_parsed,
1326 .help_str = "set port setup on iterator|event",
1328 (void *)&cmd_set_port_setup_on_set,
1329 (void *)&cmd_set_port_setup_on_port,
1330 (void *)&cmd_set_port_setup_on_setup,
1331 (void *)&cmd_set_port_setup_on_on,
1332 (void *)&cmd_set_port_setup_on_mode,
1337 /* *** attach a specified port *** */
1338 struct cmd_operate_attach_port_result {
1339 cmdline_fixed_string_t port;
1340 cmdline_fixed_string_t keyword;
1341 cmdline_multi_string_t identifier;
1344 static void cmd_operate_attach_port_parsed(void *parsed_result,
1345 __rte_unused struct cmdline *cl,
1346 __rte_unused void *data)
1348 struct cmd_operate_attach_port_result *res = parsed_result;
1350 if (!strcmp(res->keyword, "attach"))
1351 attach_port(res->identifier);
1353 printf("Unknown parameter\n");
1356 cmdline_parse_token_string_t cmd_operate_attach_port_port =
1357 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1359 cmdline_parse_token_string_t cmd_operate_attach_port_keyword =
1360 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1362 cmdline_parse_token_string_t cmd_operate_attach_port_identifier =
1363 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1364 identifier, TOKEN_STRING_MULTI);
1366 cmdline_parse_inst_t cmd_operate_attach_port = {
1367 .f = cmd_operate_attach_port_parsed,
1369 .help_str = "port attach <identifier>: "
1370 "(identifier: pci address or virtual dev name)",
1372 (void *)&cmd_operate_attach_port_port,
1373 (void *)&cmd_operate_attach_port_keyword,
1374 (void *)&cmd_operate_attach_port_identifier,
1379 /* *** detach a specified port *** */
1380 struct cmd_operate_detach_port_result {
1381 cmdline_fixed_string_t port;
1382 cmdline_fixed_string_t keyword;
1386 static void cmd_operate_detach_port_parsed(void *parsed_result,
1387 __rte_unused struct cmdline *cl,
1388 __rte_unused void *data)
1390 struct cmd_operate_detach_port_result *res = parsed_result;
1392 if (!strcmp(res->keyword, "detach")) {
1393 RTE_ETH_VALID_PORTID_OR_RET(res->port_id);
1394 detach_port_device(res->port_id);
1396 printf("Unknown parameter\n");
1400 cmdline_parse_token_string_t cmd_operate_detach_port_port =
1401 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1403 cmdline_parse_token_string_t cmd_operate_detach_port_keyword =
1404 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1406 cmdline_parse_token_num_t cmd_operate_detach_port_port_id =
1407 TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result,
1408 port_id, RTE_UINT16);
1410 cmdline_parse_inst_t cmd_operate_detach_port = {
1411 .f = cmd_operate_detach_port_parsed,
1413 .help_str = "port detach <port_id>",
1415 (void *)&cmd_operate_detach_port_port,
1416 (void *)&cmd_operate_detach_port_keyword,
1417 (void *)&cmd_operate_detach_port_port_id,
1422 /* *** detach device by identifier *** */
1423 struct cmd_operate_detach_device_result {
1424 cmdline_fixed_string_t device;
1425 cmdline_fixed_string_t keyword;
1426 cmdline_fixed_string_t identifier;
1429 static void cmd_operate_detach_device_parsed(void *parsed_result,
1430 __rte_unused struct cmdline *cl,
1431 __rte_unused void *data)
1433 struct cmd_operate_detach_device_result *res = parsed_result;
1435 if (!strcmp(res->keyword, "detach"))
1436 detach_devargs(res->identifier);
1438 printf("Unknown parameter\n");
1441 cmdline_parse_token_string_t cmd_operate_detach_device_device =
1442 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1444 cmdline_parse_token_string_t cmd_operate_detach_device_keyword =
1445 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1447 cmdline_parse_token_string_t cmd_operate_detach_device_identifier =
1448 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1451 cmdline_parse_inst_t cmd_operate_detach_device = {
1452 .f = cmd_operate_detach_device_parsed,
1454 .help_str = "device detach <identifier>:"
1455 "(identifier: pci address or virtual dev name)",
1457 (void *)&cmd_operate_detach_device_device,
1458 (void *)&cmd_operate_detach_device_keyword,
1459 (void *)&cmd_operate_detach_device_identifier,
1463 /* *** configure speed for all ports *** */
1464 struct cmd_config_speed_all {
1465 cmdline_fixed_string_t port;
1466 cmdline_fixed_string_t keyword;
1467 cmdline_fixed_string_t all;
1468 cmdline_fixed_string_t item1;
1469 cmdline_fixed_string_t item2;
1470 cmdline_fixed_string_t value1;
1471 cmdline_fixed_string_t value2;
1475 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
1480 if (!strcmp(duplexstr, "half")) {
1481 duplex = ETH_LINK_HALF_DUPLEX;
1482 } else if (!strcmp(duplexstr, "full")) {
1483 duplex = ETH_LINK_FULL_DUPLEX;
1484 } else if (!strcmp(duplexstr, "auto")) {
1485 duplex = ETH_LINK_FULL_DUPLEX;
1487 printf("Unknown duplex parameter\n");
1491 if (!strcmp(speedstr, "10")) {
1492 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1493 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M;
1494 } else if (!strcmp(speedstr, "100")) {
1495 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1496 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
1498 if (duplex != ETH_LINK_FULL_DUPLEX) {
1499 printf("Invalid speed/duplex parameters\n");
1502 if (!strcmp(speedstr, "1000")) {
1503 *speed = ETH_LINK_SPEED_1G;
1504 } else if (!strcmp(speedstr, "10000")) {
1505 *speed = ETH_LINK_SPEED_10G;
1506 } else if (!strcmp(speedstr, "25000")) {
1507 *speed = ETH_LINK_SPEED_25G;
1508 } else if (!strcmp(speedstr, "40000")) {
1509 *speed = ETH_LINK_SPEED_40G;
1510 } else if (!strcmp(speedstr, "50000")) {
1511 *speed = ETH_LINK_SPEED_50G;
1512 } else if (!strcmp(speedstr, "100000")) {
1513 *speed = ETH_LINK_SPEED_100G;
1514 } else if (!strcmp(speedstr, "200000")) {
1515 *speed = ETH_LINK_SPEED_200G;
1516 } else if (!strcmp(speedstr, "auto")) {
1517 *speed = ETH_LINK_SPEED_AUTONEG;
1519 printf("Unknown speed parameter\n");
1528 cmd_config_speed_all_parsed(void *parsed_result,
1529 __rte_unused struct cmdline *cl,
1530 __rte_unused void *data)
1532 struct cmd_config_speed_all *res = parsed_result;
1533 uint32_t link_speed;
1536 if (!all_ports_stopped()) {
1537 printf("Please stop all ports first\n");
1541 if (parse_and_check_speed_duplex(res->value1, res->value2,
1545 RTE_ETH_FOREACH_DEV(pid) {
1546 ports[pid].dev_conf.link_speeds = link_speed;
1549 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1552 cmdline_parse_token_string_t cmd_config_speed_all_port =
1553 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port");
1554 cmdline_parse_token_string_t cmd_config_speed_all_keyword =
1555 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword,
1557 cmdline_parse_token_string_t cmd_config_speed_all_all =
1558 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all");
1559 cmdline_parse_token_string_t cmd_config_speed_all_item1 =
1560 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
1561 cmdline_parse_token_string_t cmd_config_speed_all_value1 =
1562 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
1563 "10#100#1000#10000#25000#40000#50000#100000#200000#auto");
1564 cmdline_parse_token_string_t cmd_config_speed_all_item2 =
1565 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
1566 cmdline_parse_token_string_t cmd_config_speed_all_value2 =
1567 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2,
1570 cmdline_parse_inst_t cmd_config_speed_all = {
1571 .f = cmd_config_speed_all_parsed,
1573 .help_str = "port config all speed "
1574 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex "
1577 (void *)&cmd_config_speed_all_port,
1578 (void *)&cmd_config_speed_all_keyword,
1579 (void *)&cmd_config_speed_all_all,
1580 (void *)&cmd_config_speed_all_item1,
1581 (void *)&cmd_config_speed_all_value1,
1582 (void *)&cmd_config_speed_all_item2,
1583 (void *)&cmd_config_speed_all_value2,
1588 /* *** configure speed for specific port *** */
1589 struct cmd_config_speed_specific {
1590 cmdline_fixed_string_t port;
1591 cmdline_fixed_string_t keyword;
1593 cmdline_fixed_string_t item1;
1594 cmdline_fixed_string_t item2;
1595 cmdline_fixed_string_t value1;
1596 cmdline_fixed_string_t value2;
1600 cmd_config_speed_specific_parsed(void *parsed_result,
1601 __rte_unused struct cmdline *cl,
1602 __rte_unused void *data)
1604 struct cmd_config_speed_specific *res = parsed_result;
1605 uint32_t link_speed;
1607 if (!all_ports_stopped()) {
1608 printf("Please stop all ports first\n");
1612 if (port_id_is_invalid(res->id, ENABLED_WARN))
1615 if (parse_and_check_speed_duplex(res->value1, res->value2,
1619 ports[res->id].dev_conf.link_speeds = link_speed;
1621 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1625 cmdline_parse_token_string_t cmd_config_speed_specific_port =
1626 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port,
1628 cmdline_parse_token_string_t cmd_config_speed_specific_keyword =
1629 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword,
1631 cmdline_parse_token_num_t cmd_config_speed_specific_id =
1632 TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, RTE_UINT16);
1633 cmdline_parse_token_string_t cmd_config_speed_specific_item1 =
1634 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1,
1636 cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
1637 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
1638 "10#100#1000#10000#25000#40000#50000#100000#200000#auto");
1639 cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
1640 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
1642 cmdline_parse_token_string_t cmd_config_speed_specific_value2 =
1643 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2,
1646 cmdline_parse_inst_t cmd_config_speed_specific = {
1647 .f = cmd_config_speed_specific_parsed,
1649 .help_str = "port config <port_id> speed "
1650 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex "
1653 (void *)&cmd_config_speed_specific_port,
1654 (void *)&cmd_config_speed_specific_keyword,
1655 (void *)&cmd_config_speed_specific_id,
1656 (void *)&cmd_config_speed_specific_item1,
1657 (void *)&cmd_config_speed_specific_value1,
1658 (void *)&cmd_config_speed_specific_item2,
1659 (void *)&cmd_config_speed_specific_value2,
1664 /* *** configure loopback for all ports *** */
1665 struct cmd_config_loopback_all {
1666 cmdline_fixed_string_t port;
1667 cmdline_fixed_string_t keyword;
1668 cmdline_fixed_string_t all;
1669 cmdline_fixed_string_t item;
1674 cmd_config_loopback_all_parsed(void *parsed_result,
1675 __rte_unused struct cmdline *cl,
1676 __rte_unused void *data)
1678 struct cmd_config_loopback_all *res = parsed_result;
1681 if (!all_ports_stopped()) {
1682 printf("Please stop all ports first\n");
1686 RTE_ETH_FOREACH_DEV(pid) {
1687 ports[pid].dev_conf.lpbk_mode = res->mode;
1690 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1693 cmdline_parse_token_string_t cmd_config_loopback_all_port =
1694 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, port, "port");
1695 cmdline_parse_token_string_t cmd_config_loopback_all_keyword =
1696 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, keyword,
1698 cmdline_parse_token_string_t cmd_config_loopback_all_all =
1699 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, all, "all");
1700 cmdline_parse_token_string_t cmd_config_loopback_all_item =
1701 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, item,
1703 cmdline_parse_token_num_t cmd_config_loopback_all_mode =
1704 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_all, mode, RTE_UINT32);
1706 cmdline_parse_inst_t cmd_config_loopback_all = {
1707 .f = cmd_config_loopback_all_parsed,
1709 .help_str = "port config all loopback <mode>",
1711 (void *)&cmd_config_loopback_all_port,
1712 (void *)&cmd_config_loopback_all_keyword,
1713 (void *)&cmd_config_loopback_all_all,
1714 (void *)&cmd_config_loopback_all_item,
1715 (void *)&cmd_config_loopback_all_mode,
1720 /* *** configure loopback for specific port *** */
1721 struct cmd_config_loopback_specific {
1722 cmdline_fixed_string_t port;
1723 cmdline_fixed_string_t keyword;
1725 cmdline_fixed_string_t item;
1730 cmd_config_loopback_specific_parsed(void *parsed_result,
1731 __rte_unused struct cmdline *cl,
1732 __rte_unused void *data)
1734 struct cmd_config_loopback_specific *res = parsed_result;
1736 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
1739 if (!port_is_stopped(res->port_id)) {
1740 printf("Please stop port %u first\n", res->port_id);
1744 ports[res->port_id].dev_conf.lpbk_mode = res->mode;
1746 cmd_reconfig_device_queue(res->port_id, 1, 1);
1750 cmdline_parse_token_string_t cmd_config_loopback_specific_port =
1751 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, port,
1753 cmdline_parse_token_string_t cmd_config_loopback_specific_keyword =
1754 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, keyword,
1756 cmdline_parse_token_num_t cmd_config_loopback_specific_id =
1757 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, port_id,
1759 cmdline_parse_token_string_t cmd_config_loopback_specific_item =
1760 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, item,
1762 cmdline_parse_token_num_t cmd_config_loopback_specific_mode =
1763 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, mode,
1766 cmdline_parse_inst_t cmd_config_loopback_specific = {
1767 .f = cmd_config_loopback_specific_parsed,
1769 .help_str = "port config <port_id> loopback <mode>",
1771 (void *)&cmd_config_loopback_specific_port,
1772 (void *)&cmd_config_loopback_specific_keyword,
1773 (void *)&cmd_config_loopback_specific_id,
1774 (void *)&cmd_config_loopback_specific_item,
1775 (void *)&cmd_config_loopback_specific_mode,
1780 /* *** configure txq/rxq, txd/rxd *** */
1781 struct cmd_config_rx_tx {
1782 cmdline_fixed_string_t port;
1783 cmdline_fixed_string_t keyword;
1784 cmdline_fixed_string_t all;
1785 cmdline_fixed_string_t name;
1790 cmd_config_rx_tx_parsed(void *parsed_result,
1791 __rte_unused struct cmdline *cl,
1792 __rte_unused void *data)
1794 struct cmd_config_rx_tx *res = parsed_result;
1796 if (!all_ports_stopped()) {
1797 printf("Please stop all ports first\n");
1800 if (!strcmp(res->name, "rxq")) {
1801 if (!res->value && !nb_txq) {
1802 printf("Warning: Either rx or tx queues should be non zero\n");
1805 if (check_nb_rxq(res->value) != 0)
1807 nb_rxq = res->value;
1809 else if (!strcmp(res->name, "txq")) {
1810 if (!res->value && !nb_rxq) {
1811 printf("Warning: Either rx or tx queues should be non zero\n");
1814 if (check_nb_txq(res->value) != 0)
1816 nb_txq = res->value;
1818 else if (!strcmp(res->name, "rxd")) {
1819 if (check_nb_rxd(res->value) != 0)
1821 nb_rxd = res->value;
1822 } else if (!strcmp(res->name, "txd")) {
1823 if (check_nb_txd(res->value) != 0)
1826 nb_txd = res->value;
1828 printf("Unknown parameter\n");
1836 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1839 cmdline_parse_token_string_t cmd_config_rx_tx_port =
1840 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port");
1841 cmdline_parse_token_string_t cmd_config_rx_tx_keyword =
1842 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config");
1843 cmdline_parse_token_string_t cmd_config_rx_tx_all =
1844 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all");
1845 cmdline_parse_token_string_t cmd_config_rx_tx_name =
1846 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name,
1848 cmdline_parse_token_num_t cmd_config_rx_tx_value =
1849 TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, RTE_UINT16);
1851 cmdline_parse_inst_t cmd_config_rx_tx = {
1852 .f = cmd_config_rx_tx_parsed,
1854 .help_str = "port config all rxq|txq|rxd|txd <value>",
1856 (void *)&cmd_config_rx_tx_port,
1857 (void *)&cmd_config_rx_tx_keyword,
1858 (void *)&cmd_config_rx_tx_all,
1859 (void *)&cmd_config_rx_tx_name,
1860 (void *)&cmd_config_rx_tx_value,
1865 /* *** config max packet length *** */
1866 struct cmd_config_max_pkt_len_result {
1867 cmdline_fixed_string_t port;
1868 cmdline_fixed_string_t keyword;
1869 cmdline_fixed_string_t all;
1870 cmdline_fixed_string_t name;
1875 cmd_config_max_pkt_len_parsed(void *parsed_result,
1876 __rte_unused struct cmdline *cl,
1877 __rte_unused void *data)
1879 struct cmd_config_max_pkt_len_result *res = parsed_result;
1882 if (!all_ports_stopped()) {
1883 printf("Please stop all ports first\n");
1887 RTE_ETH_FOREACH_DEV(pid) {
1888 struct rte_port *port = &ports[pid];
1889 uint64_t rx_offloads = port->dev_conf.rxmode.offloads;
1891 if (!strcmp(res->name, "max-pkt-len")) {
1892 if (res->value < RTE_ETHER_MIN_LEN) {
1893 printf("max-pkt-len can not be less than %d\n",
1897 if (res->value == port->dev_conf.rxmode.max_rx_pkt_len)
1900 port->dev_conf.rxmode.max_rx_pkt_len = res->value;
1901 if (res->value > RTE_ETHER_MAX_LEN)
1902 rx_offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
1904 rx_offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
1905 port->dev_conf.rxmode.offloads = rx_offloads;
1907 printf("Unknown parameter\n");
1914 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1917 cmdline_parse_token_string_t cmd_config_max_pkt_len_port =
1918 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port,
1920 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword =
1921 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword,
1923 cmdline_parse_token_string_t cmd_config_max_pkt_len_all =
1924 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all,
1926 cmdline_parse_token_string_t cmd_config_max_pkt_len_name =
1927 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name,
1929 cmdline_parse_token_num_t cmd_config_max_pkt_len_value =
1930 TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value,
1933 cmdline_parse_inst_t cmd_config_max_pkt_len = {
1934 .f = cmd_config_max_pkt_len_parsed,
1936 .help_str = "port config all max-pkt-len <value>",
1938 (void *)&cmd_config_max_pkt_len_port,
1939 (void *)&cmd_config_max_pkt_len_keyword,
1940 (void *)&cmd_config_max_pkt_len_all,
1941 (void *)&cmd_config_max_pkt_len_name,
1942 (void *)&cmd_config_max_pkt_len_value,
1947 /* *** config max LRO aggregated packet size *** */
1948 struct cmd_config_max_lro_pkt_size_result {
1949 cmdline_fixed_string_t port;
1950 cmdline_fixed_string_t keyword;
1951 cmdline_fixed_string_t all;
1952 cmdline_fixed_string_t name;
1957 cmd_config_max_lro_pkt_size_parsed(void *parsed_result,
1958 __rte_unused struct cmdline *cl,
1959 __rte_unused void *data)
1961 struct cmd_config_max_lro_pkt_size_result *res = parsed_result;
1964 if (!all_ports_stopped()) {
1965 printf("Please stop all ports first\n");
1969 RTE_ETH_FOREACH_DEV(pid) {
1970 struct rte_port *port = &ports[pid];
1972 if (!strcmp(res->name, "max-lro-pkt-size")) {
1974 port->dev_conf.rxmode.max_lro_pkt_size)
1977 port->dev_conf.rxmode.max_lro_pkt_size = res->value;
1979 printf("Unknown parameter\n");
1986 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1989 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_port =
1990 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
1992 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_keyword =
1993 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
1995 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_all =
1996 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
1998 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_name =
1999 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2000 name, "max-lro-pkt-size");
2001 cmdline_parse_token_num_t cmd_config_max_lro_pkt_size_value =
2002 TOKEN_NUM_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2005 cmdline_parse_inst_t cmd_config_max_lro_pkt_size = {
2006 .f = cmd_config_max_lro_pkt_size_parsed,
2008 .help_str = "port config all max-lro-pkt-size <value>",
2010 (void *)&cmd_config_max_lro_pkt_size_port,
2011 (void *)&cmd_config_max_lro_pkt_size_keyword,
2012 (void *)&cmd_config_max_lro_pkt_size_all,
2013 (void *)&cmd_config_max_lro_pkt_size_name,
2014 (void *)&cmd_config_max_lro_pkt_size_value,
2019 /* *** configure port MTU *** */
2020 struct cmd_config_mtu_result {
2021 cmdline_fixed_string_t port;
2022 cmdline_fixed_string_t keyword;
2023 cmdline_fixed_string_t mtu;
2029 cmd_config_mtu_parsed(void *parsed_result,
2030 __rte_unused struct cmdline *cl,
2031 __rte_unused void *data)
2033 struct cmd_config_mtu_result *res = parsed_result;
2035 if (res->value < RTE_ETHER_MIN_LEN) {
2036 printf("mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN);
2039 port_mtu_set(res->port_id, res->value);
2042 cmdline_parse_token_string_t cmd_config_mtu_port =
2043 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port,
2045 cmdline_parse_token_string_t cmd_config_mtu_keyword =
2046 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2048 cmdline_parse_token_string_t cmd_config_mtu_mtu =
2049 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2051 cmdline_parse_token_num_t cmd_config_mtu_port_id =
2052 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id,
2054 cmdline_parse_token_num_t cmd_config_mtu_value =
2055 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value,
2058 cmdline_parse_inst_t cmd_config_mtu = {
2059 .f = cmd_config_mtu_parsed,
2061 .help_str = "port config mtu <port_id> <value>",
2063 (void *)&cmd_config_mtu_port,
2064 (void *)&cmd_config_mtu_keyword,
2065 (void *)&cmd_config_mtu_mtu,
2066 (void *)&cmd_config_mtu_port_id,
2067 (void *)&cmd_config_mtu_value,
2072 /* *** configure rx mode *** */
2073 struct cmd_config_rx_mode_flag {
2074 cmdline_fixed_string_t port;
2075 cmdline_fixed_string_t keyword;
2076 cmdline_fixed_string_t all;
2077 cmdline_fixed_string_t name;
2078 cmdline_fixed_string_t value;
2082 cmd_config_rx_mode_flag_parsed(void *parsed_result,
2083 __rte_unused struct cmdline *cl,
2084 __rte_unused void *data)
2086 struct cmd_config_rx_mode_flag *res = parsed_result;
2088 if (!all_ports_stopped()) {
2089 printf("Please stop all ports first\n");
2093 if (!strcmp(res->name, "drop-en")) {
2094 if (!strcmp(res->value, "on"))
2096 else if (!strcmp(res->value, "off"))
2099 printf("Unknown parameter\n");
2103 printf("Unknown parameter\n");
2109 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2112 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port =
2113 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port");
2114 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword =
2115 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword,
2117 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all =
2118 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all");
2119 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name =
2120 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name,
2122 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value =
2123 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value,
2126 cmdline_parse_inst_t cmd_config_rx_mode_flag = {
2127 .f = cmd_config_rx_mode_flag_parsed,
2129 .help_str = "port config all drop-en on|off",
2131 (void *)&cmd_config_rx_mode_flag_port,
2132 (void *)&cmd_config_rx_mode_flag_keyword,
2133 (void *)&cmd_config_rx_mode_flag_all,
2134 (void *)&cmd_config_rx_mode_flag_name,
2135 (void *)&cmd_config_rx_mode_flag_value,
2140 /* *** configure rss *** */
2141 struct cmd_config_rss {
2142 cmdline_fixed_string_t port;
2143 cmdline_fixed_string_t keyword;
2144 cmdline_fixed_string_t all;
2145 cmdline_fixed_string_t name;
2146 cmdline_fixed_string_t value;
2150 cmd_config_rss_parsed(void *parsed_result,
2151 __rte_unused struct cmdline *cl,
2152 __rte_unused void *data)
2154 struct cmd_config_rss *res = parsed_result;
2155 struct rte_eth_rss_conf rss_conf = { .rss_key_len = 0, };
2156 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, };
2157 int use_default = 0;
2158 int all_updated = 1;
2163 if (!strcmp(res->value, "all"))
2164 rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP |
2165 ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP |
2166 ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP |
2167 ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU |
2169 else if (!strcmp(res->value, "eth"))
2170 rss_conf.rss_hf = ETH_RSS_ETH;
2171 else if (!strcmp(res->value, "vlan"))
2172 rss_conf.rss_hf = ETH_RSS_VLAN;
2173 else if (!strcmp(res->value, "ip"))
2174 rss_conf.rss_hf = ETH_RSS_IP;
2175 else if (!strcmp(res->value, "udp"))
2176 rss_conf.rss_hf = ETH_RSS_UDP;
2177 else if (!strcmp(res->value, "tcp"))
2178 rss_conf.rss_hf = ETH_RSS_TCP;
2179 else if (!strcmp(res->value, "sctp"))
2180 rss_conf.rss_hf = ETH_RSS_SCTP;
2181 else if (!strcmp(res->value, "ether"))
2182 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD;
2183 else if (!strcmp(res->value, "port"))
2184 rss_conf.rss_hf = ETH_RSS_PORT;
2185 else if (!strcmp(res->value, "vxlan"))
2186 rss_conf.rss_hf = ETH_RSS_VXLAN;
2187 else if (!strcmp(res->value, "geneve"))
2188 rss_conf.rss_hf = ETH_RSS_GENEVE;
2189 else if (!strcmp(res->value, "nvgre"))
2190 rss_conf.rss_hf = ETH_RSS_NVGRE;
2191 else if (!strcmp(res->value, "l3-pre32"))
2192 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE32;
2193 else if (!strcmp(res->value, "l3-pre40"))
2194 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE40;
2195 else if (!strcmp(res->value, "l3-pre48"))
2196 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE48;
2197 else if (!strcmp(res->value, "l3-pre56"))
2198 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE56;
2199 else if (!strcmp(res->value, "l3-pre64"))
2200 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE64;
2201 else if (!strcmp(res->value, "l3-pre96"))
2202 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE96;
2203 else if (!strcmp(res->value, "l3-src-only"))
2204 rss_conf.rss_hf = ETH_RSS_L3_SRC_ONLY;
2205 else if (!strcmp(res->value, "l3-dst-only"))
2206 rss_conf.rss_hf = ETH_RSS_L3_DST_ONLY;
2207 else if (!strcmp(res->value, "l4-src-only"))
2208 rss_conf.rss_hf = ETH_RSS_L4_SRC_ONLY;
2209 else if (!strcmp(res->value, "l4-dst-only"))
2210 rss_conf.rss_hf = ETH_RSS_L4_DST_ONLY;
2211 else if (!strcmp(res->value, "l2-src-only"))
2212 rss_conf.rss_hf = ETH_RSS_L2_SRC_ONLY;
2213 else if (!strcmp(res->value, "l2-dst-only"))
2214 rss_conf.rss_hf = ETH_RSS_L2_DST_ONLY;
2215 else if (!strcmp(res->value, "l2tpv3"))
2216 rss_conf.rss_hf = ETH_RSS_L2TPV3;
2217 else if (!strcmp(res->value, "esp"))
2218 rss_conf.rss_hf = ETH_RSS_ESP;
2219 else if (!strcmp(res->value, "ah"))
2220 rss_conf.rss_hf = ETH_RSS_AH;
2221 else if (!strcmp(res->value, "pfcp"))
2222 rss_conf.rss_hf = ETH_RSS_PFCP;
2223 else if (!strcmp(res->value, "pppoe"))
2224 rss_conf.rss_hf = ETH_RSS_PPPOE;
2225 else if (!strcmp(res->value, "gtpu"))
2226 rss_conf.rss_hf = ETH_RSS_GTPU;
2227 else if (!strcmp(res->value, "ecpri"))
2228 rss_conf.rss_hf = ETH_RSS_ECPRI;
2229 else if (!strcmp(res->value, "none"))
2230 rss_conf.rss_hf = 0;
2231 else if (!strcmp(res->value, "level-default")) {
2232 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2233 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_PMD_DEFAULT);
2234 } else if (!strcmp(res->value, "level-outer")) {
2235 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2236 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_OUTERMOST);
2237 } else if (!strcmp(res->value, "level-inner")) {
2238 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2239 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_INNERMOST);
2240 } else if (!strcmp(res->value, "default"))
2242 else if (isdigit(res->value[0]) && atoi(res->value) > 0 &&
2243 atoi(res->value) < 64)
2244 rss_conf.rss_hf = 1ULL << atoi(res->value);
2246 printf("Unknown parameter\n");
2249 rss_conf.rss_key = NULL;
2250 /* Update global configuration for RSS types. */
2251 RTE_ETH_FOREACH_DEV(i) {
2252 struct rte_eth_rss_conf local_rss_conf;
2254 ret = eth_dev_info_get_print_err(i, &dev_info);
2259 rss_conf.rss_hf = dev_info.flow_type_rss_offloads;
2261 local_rss_conf = rss_conf;
2262 local_rss_conf.rss_hf = rss_conf.rss_hf &
2263 dev_info.flow_type_rss_offloads;
2264 if (local_rss_conf.rss_hf != rss_conf.rss_hf) {
2265 printf("Port %u modified RSS hash function based on hardware support,"
2266 "requested:%#"PRIx64" configured:%#"PRIx64"\n",
2267 i, rss_conf.rss_hf, local_rss_conf.rss_hf);
2269 diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf);
2272 printf("Configuration of RSS hash at ethernet port %d "
2273 "failed with error (%d): %s.\n",
2274 i, -diag, strerror(-diag));
2277 if (all_updated && !use_default) {
2278 rss_hf = rss_conf.rss_hf;
2279 printf("rss_hf %#"PRIx64"\n", rss_hf);
2283 cmdline_parse_token_string_t cmd_config_rss_port =
2284 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port");
2285 cmdline_parse_token_string_t cmd_config_rss_keyword =
2286 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config");
2287 cmdline_parse_token_string_t cmd_config_rss_all =
2288 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all");
2289 cmdline_parse_token_string_t cmd_config_rss_name =
2290 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss");
2291 cmdline_parse_token_string_t cmd_config_rss_value =
2292 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL);
2294 cmdline_parse_inst_t cmd_config_rss = {
2295 .f = cmd_config_rss_parsed,
2297 .help_str = "port config all rss "
2298 "all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|"
2299 "nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|none|level-default|"
2300 "level-outer|level-inner|<flowtype_id>",
2302 (void *)&cmd_config_rss_port,
2303 (void *)&cmd_config_rss_keyword,
2304 (void *)&cmd_config_rss_all,
2305 (void *)&cmd_config_rss_name,
2306 (void *)&cmd_config_rss_value,
2311 /* *** configure rss hash key *** */
2312 struct cmd_config_rss_hash_key {
2313 cmdline_fixed_string_t port;
2314 cmdline_fixed_string_t config;
2316 cmdline_fixed_string_t rss_hash_key;
2317 cmdline_fixed_string_t rss_type;
2318 cmdline_fixed_string_t key;
2322 hexa_digit_to_value(char hexa_digit)
2324 if ((hexa_digit >= '0') && (hexa_digit <= '9'))
2325 return (uint8_t) (hexa_digit - '0');
2326 if ((hexa_digit >= 'a') && (hexa_digit <= 'f'))
2327 return (uint8_t) ((hexa_digit - 'a') + 10);
2328 if ((hexa_digit >= 'A') && (hexa_digit <= 'F'))
2329 return (uint8_t) ((hexa_digit - 'A') + 10);
2330 /* Invalid hexa digit */
2335 parse_and_check_key_hexa_digit(char *key, int idx)
2339 hexa_v = hexa_digit_to_value(key[idx]);
2341 printf("invalid key: character %c at position %d is not a "
2342 "valid hexa digit\n", key[idx], idx);
2347 cmd_config_rss_hash_key_parsed(void *parsed_result,
2348 __rte_unused struct cmdline *cl,
2349 __rte_unused void *data)
2351 struct cmd_config_rss_hash_key *res = parsed_result;
2352 uint8_t hash_key[RSS_HASH_KEY_LENGTH];
2356 struct rte_eth_dev_info dev_info;
2357 uint8_t hash_key_size;
2361 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2365 if (dev_info.hash_key_size > 0 &&
2366 dev_info.hash_key_size <= sizeof(hash_key))
2367 hash_key_size = dev_info.hash_key_size;
2369 printf("dev_info did not provide a valid hash key size\n");
2372 /* Check the length of the RSS hash key */
2373 key_len = strlen(res->key);
2374 if (key_len != (hash_key_size * 2)) {
2375 printf("key length: %d invalid - key must be a string of %d"
2376 " hexa-decimal numbers\n",
2377 (int) key_len, hash_key_size * 2);
2380 /* Translate RSS hash key into binary representation */
2381 for (i = 0; i < hash_key_size; i++) {
2382 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
2385 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
2388 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
2390 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key,
2394 cmdline_parse_token_string_t cmd_config_rss_hash_key_port =
2395 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port");
2396 cmdline_parse_token_string_t cmd_config_rss_hash_key_config =
2397 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config,
2399 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id =
2400 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id,
2402 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key =
2403 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key,
2404 rss_hash_key, "rss-hash-key");
2405 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
2406 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
2407 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
2408 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
2409 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
2410 "ipv6-tcp-ex#ipv6-udp-ex#"
2411 "l3-src-only#l3-dst-only#l4-src-only#l4-dst-only#"
2412 "l2-src-only#l2-dst-only#s-vlan#c-vlan#"
2413 "l2tpv3#esp#ah#pfcp#pppoe#gtpu#ecpri");
2414 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
2415 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
2417 cmdline_parse_inst_t cmd_config_rss_hash_key = {
2418 .f = cmd_config_rss_hash_key_parsed,
2420 .help_str = "port config <port_id> rss-hash-key "
2421 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2422 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2423 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex|"
2424 "l3-src-only|l3-dst-only|l4-src-only|l4-dst-only|"
2425 "l2-src-only|l2-dst-only|s-vlan|c-vlan|"
2426 "l2tpv3|esp|ah|pfcp|pppoe|gtpu|ecpri "
2427 "<string of hex digits (variable length, NIC dependent)>",
2429 (void *)&cmd_config_rss_hash_key_port,
2430 (void *)&cmd_config_rss_hash_key_config,
2431 (void *)&cmd_config_rss_hash_key_port_id,
2432 (void *)&cmd_config_rss_hash_key_rss_hash_key,
2433 (void *)&cmd_config_rss_hash_key_rss_type,
2434 (void *)&cmd_config_rss_hash_key_value,
2439 /* *** configure port rxq/txq ring size *** */
2440 struct cmd_config_rxtx_ring_size {
2441 cmdline_fixed_string_t port;
2442 cmdline_fixed_string_t config;
2444 cmdline_fixed_string_t rxtxq;
2446 cmdline_fixed_string_t rsize;
2451 cmd_config_rxtx_ring_size_parsed(void *parsed_result,
2452 __rte_unused struct cmdline *cl,
2453 __rte_unused void *data)
2455 struct cmd_config_rxtx_ring_size *res = parsed_result;
2456 struct rte_port *port;
2459 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2462 if (res->portid == (portid_t)RTE_PORT_ALL) {
2463 printf("Invalid port id\n");
2467 port = &ports[res->portid];
2469 if (!strcmp(res->rxtxq, "rxq"))
2471 else if (!strcmp(res->rxtxq, "txq"))
2474 printf("Unknown parameter\n");
2478 if (isrx && rx_queue_id_is_invalid(res->qid))
2480 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2483 if (isrx && res->size != 0 && res->size <= rx_free_thresh) {
2484 printf("Invalid rx ring_size, must > rx_free_thresh: %d\n",
2490 port->nb_rx_desc[res->qid] = res->size;
2492 port->nb_tx_desc[res->qid] = res->size;
2494 cmd_reconfig_device_queue(res->portid, 0, 1);
2497 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_port =
2498 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2500 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_config =
2501 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2503 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_portid =
2504 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2505 portid, RTE_UINT16);
2506 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rxtxq =
2507 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2509 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_qid =
2510 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2512 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rsize =
2513 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2514 rsize, "ring_size");
2515 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_size =
2516 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2519 cmdline_parse_inst_t cmd_config_rxtx_ring_size = {
2520 .f = cmd_config_rxtx_ring_size_parsed,
2522 .help_str = "port config <port_id> rxq|txq <queue_id> ring_size <value>",
2524 (void *)&cmd_config_rxtx_ring_size_port,
2525 (void *)&cmd_config_rxtx_ring_size_config,
2526 (void *)&cmd_config_rxtx_ring_size_portid,
2527 (void *)&cmd_config_rxtx_ring_size_rxtxq,
2528 (void *)&cmd_config_rxtx_ring_size_qid,
2529 (void *)&cmd_config_rxtx_ring_size_rsize,
2530 (void *)&cmd_config_rxtx_ring_size_size,
2535 /* *** configure port rxq/txq start/stop *** */
2536 struct cmd_config_rxtx_queue {
2537 cmdline_fixed_string_t port;
2539 cmdline_fixed_string_t rxtxq;
2541 cmdline_fixed_string_t opname;
2545 cmd_config_rxtx_queue_parsed(void *parsed_result,
2546 __rte_unused struct cmdline *cl,
2547 __rte_unused void *data)
2549 struct cmd_config_rxtx_queue *res = parsed_result;
2554 if (test_done == 0) {
2555 printf("Please stop forwarding first\n");
2559 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2562 if (port_is_started(res->portid) != 1) {
2563 printf("Please start port %u first\n", res->portid);
2567 if (!strcmp(res->rxtxq, "rxq"))
2569 else if (!strcmp(res->rxtxq, "txq"))
2572 printf("Unknown parameter\n");
2576 if (isrx && rx_queue_id_is_invalid(res->qid))
2578 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2581 if (!strcmp(res->opname, "start"))
2583 else if (!strcmp(res->opname, "stop"))
2586 printf("Unknown parameter\n");
2590 if (isstart && isrx)
2591 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid);
2592 else if (!isstart && isrx)
2593 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid);
2594 else if (isstart && !isrx)
2595 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid);
2597 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
2599 if (ret == -ENOTSUP)
2600 printf("Function not supported in PMD driver\n");
2603 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
2604 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port");
2605 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid =
2606 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, RTE_UINT16);
2607 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq =
2608 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq");
2609 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid =
2610 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, RTE_UINT16);
2611 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname =
2612 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname,
2615 cmdline_parse_inst_t cmd_config_rxtx_queue = {
2616 .f = cmd_config_rxtx_queue_parsed,
2618 .help_str = "port <port_id> rxq|txq <queue_id> start|stop",
2620 (void *)&cmd_config_rxtx_queue_port,
2621 (void *)&cmd_config_rxtx_queue_portid,
2622 (void *)&cmd_config_rxtx_queue_rxtxq,
2623 (void *)&cmd_config_rxtx_queue_qid,
2624 (void *)&cmd_config_rxtx_queue_opname,
2629 /* *** configure port rxq/txq deferred start on/off *** */
2630 struct cmd_config_deferred_start_rxtx_queue {
2631 cmdline_fixed_string_t port;
2633 cmdline_fixed_string_t rxtxq;
2635 cmdline_fixed_string_t opname;
2636 cmdline_fixed_string_t state;
2640 cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result,
2641 __rte_unused struct cmdline *cl,
2642 __rte_unused void *data)
2644 struct cmd_config_deferred_start_rxtx_queue *res = parsed_result;
2645 struct rte_port *port;
2648 uint8_t needreconfig = 0;
2650 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
2653 if (port_is_started(res->port_id) != 0) {
2654 printf("Please stop port %u first\n", res->port_id);
2658 port = &ports[res->port_id];
2660 isrx = !strcmp(res->rxtxq, "rxq");
2662 if (isrx && rx_queue_id_is_invalid(res->qid))
2664 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2667 ison = !strcmp(res->state, "on");
2669 if (isrx && port->rx_conf[res->qid].rx_deferred_start != ison) {
2670 port->rx_conf[res->qid].rx_deferred_start = ison;
2672 } else if (!isrx && port->tx_conf[res->qid].tx_deferred_start != ison) {
2673 port->tx_conf[res->qid].tx_deferred_start = ison;
2678 cmd_reconfig_device_queue(res->port_id, 0, 1);
2681 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_port =
2682 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2684 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_port_id =
2685 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2686 port_id, RTE_UINT16);
2687 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_rxtxq =
2688 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2690 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_qid =
2691 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2693 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_opname =
2694 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2695 opname, "deferred_start");
2696 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_state =
2697 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2700 cmdline_parse_inst_t cmd_config_deferred_start_rxtx_queue = {
2701 .f = cmd_config_deferred_start_rxtx_queue_parsed,
2703 .help_str = "port <port_id> rxq|txq <queue_id> deferred_start on|off",
2705 (void *)&cmd_config_deferred_start_rxtx_queue_port,
2706 (void *)&cmd_config_deferred_start_rxtx_queue_port_id,
2707 (void *)&cmd_config_deferred_start_rxtx_queue_rxtxq,
2708 (void *)&cmd_config_deferred_start_rxtx_queue_qid,
2709 (void *)&cmd_config_deferred_start_rxtx_queue_opname,
2710 (void *)&cmd_config_deferred_start_rxtx_queue_state,
2715 /* *** configure port rxq/txq setup *** */
2716 struct cmd_setup_rxtx_queue {
2717 cmdline_fixed_string_t port;
2719 cmdline_fixed_string_t rxtxq;
2721 cmdline_fixed_string_t setup;
2724 /* Common CLI fields for queue setup */
2725 cmdline_parse_token_string_t cmd_setup_rxtx_queue_port =
2726 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, port, "port");
2727 cmdline_parse_token_num_t cmd_setup_rxtx_queue_portid =
2728 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, portid, RTE_UINT16);
2729 cmdline_parse_token_string_t cmd_setup_rxtx_queue_rxtxq =
2730 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, rxtxq, "rxq#txq");
2731 cmdline_parse_token_num_t cmd_setup_rxtx_queue_qid =
2732 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, qid, RTE_UINT16);
2733 cmdline_parse_token_string_t cmd_setup_rxtx_queue_setup =
2734 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, setup, "setup");
2737 cmd_setup_rxtx_queue_parsed(
2738 void *parsed_result,
2739 __rte_unused struct cmdline *cl,
2740 __rte_unused void *data)
2742 struct cmd_setup_rxtx_queue *res = parsed_result;
2743 struct rte_port *port;
2744 struct rte_mempool *mp;
2745 unsigned int socket_id;
2749 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2752 if (res->portid == (portid_t)RTE_PORT_ALL) {
2753 printf("Invalid port id\n");
2757 if (!strcmp(res->rxtxq, "rxq"))
2759 else if (!strcmp(res->rxtxq, "txq"))
2762 printf("Unknown parameter\n");
2766 if (isrx && rx_queue_id_is_invalid(res->qid)) {
2767 printf("Invalid rx queue\n");
2769 } else if (!isrx && tx_queue_id_is_invalid(res->qid)) {
2770 printf("Invalid tx queue\n");
2774 port = &ports[res->portid];
2776 socket_id = rxring_numa[res->portid];
2777 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2778 socket_id = port->socket_id;
2780 mp = mbuf_pool_find(socket_id, 0);
2782 printf("Failed to setup RX queue: "
2783 "No mempool allocation"
2784 " on the socket %d\n",
2785 rxring_numa[res->portid]);
2788 ret = rx_queue_setup(res->portid,
2790 port->nb_rx_desc[res->qid],
2792 &port->rx_conf[res->qid],
2795 printf("Failed to setup RX queue\n");
2797 socket_id = txring_numa[res->portid];
2798 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2799 socket_id = port->socket_id;
2801 ret = rte_eth_tx_queue_setup(res->portid,
2803 port->nb_tx_desc[res->qid],
2805 &port->tx_conf[res->qid]);
2807 printf("Failed to setup TX queue\n");
2811 cmdline_parse_inst_t cmd_setup_rxtx_queue = {
2812 .f = cmd_setup_rxtx_queue_parsed,
2814 .help_str = "port <port_id> rxq|txq <queue_idx> setup",
2816 (void *)&cmd_setup_rxtx_queue_port,
2817 (void *)&cmd_setup_rxtx_queue_portid,
2818 (void *)&cmd_setup_rxtx_queue_rxtxq,
2819 (void *)&cmd_setup_rxtx_queue_qid,
2820 (void *)&cmd_setup_rxtx_queue_setup,
2826 /* *** Configure RSS RETA *** */
2827 struct cmd_config_rss_reta {
2828 cmdline_fixed_string_t port;
2829 cmdline_fixed_string_t keyword;
2831 cmdline_fixed_string_t name;
2832 cmdline_fixed_string_t list_name;
2833 cmdline_fixed_string_t list_of_items;
2837 parse_reta_config(const char *str,
2838 struct rte_eth_rss_reta_entry64 *reta_conf,
2839 uint16_t nb_entries)
2843 uint16_t hash_index, idx, shift;
2846 const char *p, *p0 = str;
2853 unsigned long int_fld[_NUM_FLD];
2854 char *str_fld[_NUM_FLD];
2856 while ((p = strchr(p0,'(')) != NULL) {
2858 if((p0 = strchr(p,')')) == NULL)
2862 if(size >= sizeof(s))
2865 snprintf(s, sizeof(s), "%.*s", size, p);
2866 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
2868 for (i = 0; i < _NUM_FLD; i++) {
2870 int_fld[i] = strtoul(str_fld[i], &end, 0);
2871 if (errno != 0 || end == str_fld[i] ||
2876 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX];
2877 nb_queue = (uint16_t)int_fld[FLD_QUEUE];
2879 if (hash_index >= nb_entries) {
2880 printf("Invalid RETA hash index=%d\n", hash_index);
2884 idx = hash_index / RTE_RETA_GROUP_SIZE;
2885 shift = hash_index % RTE_RETA_GROUP_SIZE;
2886 reta_conf[idx].mask |= (1ULL << shift);
2887 reta_conf[idx].reta[shift] = nb_queue;
2894 cmd_set_rss_reta_parsed(void *parsed_result,
2895 __rte_unused struct cmdline *cl,
2896 __rte_unused void *data)
2899 struct rte_eth_dev_info dev_info;
2900 struct rte_eth_rss_reta_entry64 reta_conf[8];
2901 struct cmd_config_rss_reta *res = parsed_result;
2903 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2907 if (dev_info.reta_size == 0) {
2908 printf("Redirection table size is 0 which is "
2909 "invalid for RSS\n");
2912 printf("The reta size of port %d is %u\n",
2913 res->port_id, dev_info.reta_size);
2914 if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
2915 printf("Currently do not support more than %u entries of "
2916 "redirection table\n", ETH_RSS_RETA_SIZE_512);
2920 memset(reta_conf, 0, sizeof(reta_conf));
2921 if (!strcmp(res->list_name, "reta")) {
2922 if (parse_reta_config(res->list_of_items, reta_conf,
2923 dev_info.reta_size)) {
2924 printf("Invalid RSS Redirection Table "
2925 "config entered\n");
2928 ret = rte_eth_dev_rss_reta_update(res->port_id,
2929 reta_conf, dev_info.reta_size);
2931 printf("Bad redirection table parameter, "
2932 "return code = %d \n", ret);
2936 cmdline_parse_token_string_t cmd_config_rss_reta_port =
2937 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port");
2938 cmdline_parse_token_string_t cmd_config_rss_reta_keyword =
2939 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config");
2940 cmdline_parse_token_num_t cmd_config_rss_reta_port_id =
2941 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, RTE_UINT16);
2942 cmdline_parse_token_string_t cmd_config_rss_reta_name =
2943 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss");
2944 cmdline_parse_token_string_t cmd_config_rss_reta_list_name =
2945 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta");
2946 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items =
2947 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items,
2949 cmdline_parse_inst_t cmd_config_rss_reta = {
2950 .f = cmd_set_rss_reta_parsed,
2952 .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>",
2954 (void *)&cmd_config_rss_reta_port,
2955 (void *)&cmd_config_rss_reta_keyword,
2956 (void *)&cmd_config_rss_reta_port_id,
2957 (void *)&cmd_config_rss_reta_name,
2958 (void *)&cmd_config_rss_reta_list_name,
2959 (void *)&cmd_config_rss_reta_list_of_items,
2964 /* *** SHOW PORT RETA INFO *** */
2965 struct cmd_showport_reta {
2966 cmdline_fixed_string_t show;
2967 cmdline_fixed_string_t port;
2969 cmdline_fixed_string_t rss;
2970 cmdline_fixed_string_t reta;
2972 cmdline_fixed_string_t list_of_items;
2976 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
2977 uint16_t nb_entries,
2981 const char *p, *p0 = str;
2986 uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) /
2987 RTE_RETA_GROUP_SIZE;
2990 p = strchr(p0, '(');
2994 p0 = strchr(p, ')');
2998 if (size >= sizeof(s)) {
2999 printf("The string size exceeds the internal buffer size\n");
3002 snprintf(s, sizeof(s), "%.*s", size, p);
3003 ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
3004 if (ret <= 0 || ret != num) {
3005 printf("The bits of masks do not match the number of "
3006 "reta entries: %u\n", num);
3009 for (i = 0; i < ret; i++)
3010 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0);
3016 cmd_showport_reta_parsed(void *parsed_result,
3017 __rte_unused struct cmdline *cl,
3018 __rte_unused void *data)
3020 struct cmd_showport_reta *res = parsed_result;
3021 struct rte_eth_rss_reta_entry64 reta_conf[8];
3022 struct rte_eth_dev_info dev_info;
3023 uint16_t max_reta_size;
3026 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
3030 max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512);
3031 if (res->size == 0 || res->size > max_reta_size) {
3032 printf("Invalid redirection table size: %u (1-%u)\n",
3033 res->size, max_reta_size);
3037 memset(reta_conf, 0, sizeof(reta_conf));
3038 if (showport_parse_reta_config(reta_conf, res->size,
3039 res->list_of_items) < 0) {
3040 printf("Invalid string: %s for reta masks\n",
3041 res->list_of_items);
3044 port_rss_reta_info(res->port_id, reta_conf, res->size);
3047 cmdline_parse_token_string_t cmd_showport_reta_show =
3048 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, show, "show");
3049 cmdline_parse_token_string_t cmd_showport_reta_port =
3050 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, port, "port");
3051 cmdline_parse_token_num_t cmd_showport_reta_port_id =
3052 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, RTE_UINT16);
3053 cmdline_parse_token_string_t cmd_showport_reta_rss =
3054 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss");
3055 cmdline_parse_token_string_t cmd_showport_reta_reta =
3056 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta");
3057 cmdline_parse_token_num_t cmd_showport_reta_size =
3058 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, RTE_UINT16);
3059 cmdline_parse_token_string_t cmd_showport_reta_list_of_items =
3060 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta,
3061 list_of_items, NULL);
3063 cmdline_parse_inst_t cmd_showport_reta = {
3064 .f = cmd_showport_reta_parsed,
3066 .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>",
3068 (void *)&cmd_showport_reta_show,
3069 (void *)&cmd_showport_reta_port,
3070 (void *)&cmd_showport_reta_port_id,
3071 (void *)&cmd_showport_reta_rss,
3072 (void *)&cmd_showport_reta_reta,
3073 (void *)&cmd_showport_reta_size,
3074 (void *)&cmd_showport_reta_list_of_items,
3079 /* *** Show RSS hash configuration *** */
3080 struct cmd_showport_rss_hash {
3081 cmdline_fixed_string_t show;
3082 cmdline_fixed_string_t port;
3084 cmdline_fixed_string_t rss_hash;
3085 cmdline_fixed_string_t rss_type;
3086 cmdline_fixed_string_t key; /* optional argument */
3089 static void cmd_showport_rss_hash_parsed(void *parsed_result,
3090 __rte_unused struct cmdline *cl,
3093 struct cmd_showport_rss_hash *res = parsed_result;
3095 port_rss_hash_conf_show(res->port_id, show_rss_key != NULL);
3098 cmdline_parse_token_string_t cmd_showport_rss_hash_show =
3099 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show");
3100 cmdline_parse_token_string_t cmd_showport_rss_hash_port =
3101 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port");
3102 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id =
3103 TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id,
3105 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash =
3106 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash,
3108 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key =
3109 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key");
3111 cmdline_parse_inst_t cmd_showport_rss_hash = {
3112 .f = cmd_showport_rss_hash_parsed,
3114 .help_str = "show port <port_id> rss-hash",
3116 (void *)&cmd_showport_rss_hash_show,
3117 (void *)&cmd_showport_rss_hash_port,
3118 (void *)&cmd_showport_rss_hash_port_id,
3119 (void *)&cmd_showport_rss_hash_rss_hash,
3124 cmdline_parse_inst_t cmd_showport_rss_hash_key = {
3125 .f = cmd_showport_rss_hash_parsed,
3127 .help_str = "show port <port_id> rss-hash key",
3129 (void *)&cmd_showport_rss_hash_show,
3130 (void *)&cmd_showport_rss_hash_port,
3131 (void *)&cmd_showport_rss_hash_port_id,
3132 (void *)&cmd_showport_rss_hash_rss_hash,
3133 (void *)&cmd_showport_rss_hash_rss_key,
3138 /* *** Configure DCB *** */
3139 struct cmd_config_dcb {
3140 cmdline_fixed_string_t port;
3141 cmdline_fixed_string_t config;
3143 cmdline_fixed_string_t dcb;
3144 cmdline_fixed_string_t vt;
3145 cmdline_fixed_string_t vt_en;
3147 cmdline_fixed_string_t pfc;
3148 cmdline_fixed_string_t pfc_en;
3152 cmd_config_dcb_parsed(void *parsed_result,
3153 __rte_unused struct cmdline *cl,
3154 __rte_unused void *data)
3156 struct cmd_config_dcb *res = parsed_result;
3157 portid_t port_id = res->port_id;
3158 struct rte_port *port;
3162 port = &ports[port_id];
3163 /** Check if the port is not started **/
3164 if (port->port_status != RTE_PORT_STOPPED) {
3165 printf("Please stop port %d first\n", port_id);
3169 if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
3170 printf("The invalid number of traffic class,"
3171 " only 4 or 8 allowed.\n");
3175 if (nb_fwd_lcores < res->num_tcs) {
3176 printf("nb_cores shouldn't be less than number of TCs.\n");
3179 if (!strncmp(res->pfc_en, "on", 2))
3184 /* DCB in VT mode */
3185 if (!strncmp(res->vt_en, "on", 2))
3186 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED,
3187 (enum rte_eth_nb_tcs)res->num_tcs,
3190 ret = init_port_dcb_config(port_id, DCB_ENABLED,
3191 (enum rte_eth_nb_tcs)res->num_tcs,
3196 printf("Cannot initialize network ports.\n");
3200 cmd_reconfig_device_queue(port_id, 1, 1);
3203 cmdline_parse_token_string_t cmd_config_dcb_port =
3204 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port");
3205 cmdline_parse_token_string_t cmd_config_dcb_config =
3206 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config");
3207 cmdline_parse_token_num_t cmd_config_dcb_port_id =
3208 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, RTE_UINT16);
3209 cmdline_parse_token_string_t cmd_config_dcb_dcb =
3210 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb");
3211 cmdline_parse_token_string_t cmd_config_dcb_vt =
3212 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt");
3213 cmdline_parse_token_string_t cmd_config_dcb_vt_en =
3214 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off");
3215 cmdline_parse_token_num_t cmd_config_dcb_num_tcs =
3216 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, RTE_UINT8);
3217 cmdline_parse_token_string_t cmd_config_dcb_pfc=
3218 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc");
3219 cmdline_parse_token_string_t cmd_config_dcb_pfc_en =
3220 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off");
3222 cmdline_parse_inst_t cmd_config_dcb = {
3223 .f = cmd_config_dcb_parsed,
3225 .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off",
3227 (void *)&cmd_config_dcb_port,
3228 (void *)&cmd_config_dcb_config,
3229 (void *)&cmd_config_dcb_port_id,
3230 (void *)&cmd_config_dcb_dcb,
3231 (void *)&cmd_config_dcb_vt,
3232 (void *)&cmd_config_dcb_vt_en,
3233 (void *)&cmd_config_dcb_num_tcs,
3234 (void *)&cmd_config_dcb_pfc,
3235 (void *)&cmd_config_dcb_pfc_en,
3240 /* *** configure number of packets per burst *** */
3241 struct cmd_config_burst {
3242 cmdline_fixed_string_t port;
3243 cmdline_fixed_string_t keyword;
3244 cmdline_fixed_string_t all;
3245 cmdline_fixed_string_t name;
3250 cmd_config_burst_parsed(void *parsed_result,
3251 __rte_unused struct cmdline *cl,
3252 __rte_unused void *data)
3254 struct cmd_config_burst *res = parsed_result;
3255 struct rte_eth_dev_info dev_info;
3256 uint16_t rec_nb_pkts;
3259 if (!all_ports_stopped()) {
3260 printf("Please stop all ports first\n");
3264 if (!strcmp(res->name, "burst")) {
3265 if (res->value == 0) {
3266 /* If user gives a value of zero, query the PMD for
3267 * its recommended Rx burst size. Testpmd uses a single
3268 * size for all ports, so assume all ports are the same
3269 * NIC model and use the values from Port 0.
3271 ret = eth_dev_info_get_print_err(0, &dev_info);
3275 rec_nb_pkts = dev_info.default_rxportconf.burst_size;
3277 if (rec_nb_pkts == 0) {
3278 printf("PMD does not recommend a burst size.\n"
3279 "User provided value must be between"
3280 " 1 and %d\n", MAX_PKT_BURST);
3282 } else if (rec_nb_pkts > MAX_PKT_BURST) {
3283 printf("PMD recommended burst size of %d"
3284 " exceeds maximum value of %d\n",
3285 rec_nb_pkts, MAX_PKT_BURST);
3288 printf("Using PMD-provided burst value of %d\n",
3290 nb_pkt_per_burst = rec_nb_pkts;
3291 } else if (res->value > MAX_PKT_BURST) {
3292 printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
3295 nb_pkt_per_burst = res->value;
3297 printf("Unknown parameter\n");
3303 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3306 cmdline_parse_token_string_t cmd_config_burst_port =
3307 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port");
3308 cmdline_parse_token_string_t cmd_config_burst_keyword =
3309 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config");
3310 cmdline_parse_token_string_t cmd_config_burst_all =
3311 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all");
3312 cmdline_parse_token_string_t cmd_config_burst_name =
3313 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst");
3314 cmdline_parse_token_num_t cmd_config_burst_value =
3315 TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, RTE_UINT16);
3317 cmdline_parse_inst_t cmd_config_burst = {
3318 .f = cmd_config_burst_parsed,
3320 .help_str = "port config all burst <value>",
3322 (void *)&cmd_config_burst_port,
3323 (void *)&cmd_config_burst_keyword,
3324 (void *)&cmd_config_burst_all,
3325 (void *)&cmd_config_burst_name,
3326 (void *)&cmd_config_burst_value,
3331 /* *** configure rx/tx queues *** */
3332 struct cmd_config_thresh {
3333 cmdline_fixed_string_t port;
3334 cmdline_fixed_string_t keyword;
3335 cmdline_fixed_string_t all;
3336 cmdline_fixed_string_t name;
3341 cmd_config_thresh_parsed(void *parsed_result,
3342 __rte_unused struct cmdline *cl,
3343 __rte_unused void *data)
3345 struct cmd_config_thresh *res = parsed_result;
3347 if (!all_ports_stopped()) {
3348 printf("Please stop all ports first\n");
3352 if (!strcmp(res->name, "txpt"))
3353 tx_pthresh = res->value;
3354 else if(!strcmp(res->name, "txht"))
3355 tx_hthresh = res->value;
3356 else if(!strcmp(res->name, "txwt"))
3357 tx_wthresh = res->value;
3358 else if(!strcmp(res->name, "rxpt"))
3359 rx_pthresh = res->value;
3360 else if(!strcmp(res->name, "rxht"))
3361 rx_hthresh = res->value;
3362 else if(!strcmp(res->name, "rxwt"))
3363 rx_wthresh = res->value;
3365 printf("Unknown parameter\n");
3371 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3374 cmdline_parse_token_string_t cmd_config_thresh_port =
3375 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port");
3376 cmdline_parse_token_string_t cmd_config_thresh_keyword =
3377 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config");
3378 cmdline_parse_token_string_t cmd_config_thresh_all =
3379 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all");
3380 cmdline_parse_token_string_t cmd_config_thresh_name =
3381 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name,
3382 "txpt#txht#txwt#rxpt#rxht#rxwt");
3383 cmdline_parse_token_num_t cmd_config_thresh_value =
3384 TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, RTE_UINT8);
3386 cmdline_parse_inst_t cmd_config_thresh = {
3387 .f = cmd_config_thresh_parsed,
3389 .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>",
3391 (void *)&cmd_config_thresh_port,
3392 (void *)&cmd_config_thresh_keyword,
3393 (void *)&cmd_config_thresh_all,
3394 (void *)&cmd_config_thresh_name,
3395 (void *)&cmd_config_thresh_value,
3400 /* *** configure free/rs threshold *** */
3401 struct cmd_config_threshold {
3402 cmdline_fixed_string_t port;
3403 cmdline_fixed_string_t keyword;
3404 cmdline_fixed_string_t all;
3405 cmdline_fixed_string_t name;
3410 cmd_config_threshold_parsed(void *parsed_result,
3411 __rte_unused struct cmdline *cl,
3412 __rte_unused void *data)
3414 struct cmd_config_threshold *res = parsed_result;
3416 if (!all_ports_stopped()) {
3417 printf("Please stop all ports first\n");
3421 if (!strcmp(res->name, "txfreet"))
3422 tx_free_thresh = res->value;
3423 else if (!strcmp(res->name, "txrst"))
3424 tx_rs_thresh = res->value;
3425 else if (!strcmp(res->name, "rxfreet"))
3426 rx_free_thresh = res->value;
3428 printf("Unknown parameter\n");
3434 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3437 cmdline_parse_token_string_t cmd_config_threshold_port =
3438 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port");
3439 cmdline_parse_token_string_t cmd_config_threshold_keyword =
3440 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword,
3442 cmdline_parse_token_string_t cmd_config_threshold_all =
3443 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all");
3444 cmdline_parse_token_string_t cmd_config_threshold_name =
3445 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name,
3446 "txfreet#txrst#rxfreet");
3447 cmdline_parse_token_num_t cmd_config_threshold_value =
3448 TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, RTE_UINT16);
3450 cmdline_parse_inst_t cmd_config_threshold = {
3451 .f = cmd_config_threshold_parsed,
3453 .help_str = "port config all txfreet|txrst|rxfreet <value>",
3455 (void *)&cmd_config_threshold_port,
3456 (void *)&cmd_config_threshold_keyword,
3457 (void *)&cmd_config_threshold_all,
3458 (void *)&cmd_config_threshold_name,
3459 (void *)&cmd_config_threshold_value,
3465 struct cmd_stop_result {
3466 cmdline_fixed_string_t stop;
3469 static void cmd_stop_parsed(__rte_unused void *parsed_result,
3470 __rte_unused struct cmdline *cl,
3471 __rte_unused void *data)
3473 stop_packet_forwarding();
3476 cmdline_parse_token_string_t cmd_stop_stop =
3477 TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop");
3479 cmdline_parse_inst_t cmd_stop = {
3480 .f = cmd_stop_parsed,
3482 .help_str = "stop: Stop packet forwarding",
3484 (void *)&cmd_stop_stop,
3489 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
3492 parse_item_list(char* str, const char* item_name, unsigned int max_items,
3493 unsigned int *parsed_items, int check_unique_values)
3495 unsigned int nb_item;
3503 * First parse all items in the list and store their value.
3508 for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) {
3510 if ((c >= '0') && (c <= '9')) {
3511 value = (unsigned int) (value * 10 + (c - '0'));
3516 printf("character %c is not a decimal digit\n", c);
3520 printf("No valid value before comma\n");
3523 if (nb_item < max_items) {
3524 parsed_items[nb_item] = value;
3530 if (nb_item >= max_items) {
3531 printf("Number of %s = %u > %u (maximum items)\n",
3532 item_name, nb_item + 1, max_items);
3535 parsed_items[nb_item++] = value;
3536 if (! check_unique_values)
3540 * Then, check that all values in the list are differents.
3541 * No optimization here...
3543 for (i = 0; i < nb_item; i++) {
3544 for (j = i + 1; j < nb_item; j++) {
3545 if (parsed_items[j] == parsed_items[i]) {
3546 printf("duplicated %s %u at index %u and %u\n",
3547 item_name, parsed_items[i], i, j);
3555 struct cmd_set_list_result {
3556 cmdline_fixed_string_t cmd_keyword;
3557 cmdline_fixed_string_t list_name;
3558 cmdline_fixed_string_t list_of_items;
3561 static void cmd_set_list_parsed(void *parsed_result,
3562 __rte_unused struct cmdline *cl,
3563 __rte_unused void *data)
3565 struct cmd_set_list_result *res;
3567 unsigned int lcorelist[RTE_MAX_LCORE];
3568 unsigned int portlist[RTE_MAX_ETHPORTS];
3570 unsigned int nb_item;
3572 if (test_done == 0) {
3573 printf("Please stop forwarding first\n");
3577 res = parsed_result;
3578 if (!strcmp(res->list_name, "corelist")) {
3579 nb_item = parse_item_list(res->list_of_items, "core",
3581 parsed_items.lcorelist, 1);
3583 set_fwd_lcores_list(parsed_items.lcorelist, nb_item);
3588 if (!strcmp(res->list_name, "portlist")) {
3589 nb_item = parse_item_list(res->list_of_items, "port",
3591 parsed_items.portlist, 1);
3593 set_fwd_ports_list(parsed_items.portlist, nb_item);
3599 cmdline_parse_token_string_t cmd_set_list_keyword =
3600 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword,
3602 cmdline_parse_token_string_t cmd_set_list_name =
3603 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name,
3604 "corelist#portlist");
3605 cmdline_parse_token_string_t cmd_set_list_of_items =
3606 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items,
3609 cmdline_parse_inst_t cmd_set_fwd_list = {
3610 .f = cmd_set_list_parsed,
3612 .help_str = "set corelist|portlist <list0[,list1]*>",
3614 (void *)&cmd_set_list_keyword,
3615 (void *)&cmd_set_list_name,
3616 (void *)&cmd_set_list_of_items,
3621 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */
3623 struct cmd_setmask_result {
3624 cmdline_fixed_string_t set;
3625 cmdline_fixed_string_t mask;
3629 static void cmd_set_mask_parsed(void *parsed_result,
3630 __rte_unused struct cmdline *cl,
3631 __rte_unused void *data)
3633 struct cmd_setmask_result *res = parsed_result;
3635 if (test_done == 0) {
3636 printf("Please stop forwarding first\n");
3639 if (!strcmp(res->mask, "coremask")) {
3640 set_fwd_lcores_mask(res->hexavalue);
3642 } else if (!strcmp(res->mask, "portmask")) {
3643 set_fwd_ports_mask(res->hexavalue);
3648 cmdline_parse_token_string_t cmd_setmask_set =
3649 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set");
3650 cmdline_parse_token_string_t cmd_setmask_mask =
3651 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask,
3652 "coremask#portmask");
3653 cmdline_parse_token_num_t cmd_setmask_value =
3654 TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, RTE_UINT64);
3656 cmdline_parse_inst_t cmd_set_fwd_mask = {
3657 .f = cmd_set_mask_parsed,
3659 .help_str = "set coremask|portmask <hexadecimal value>",
3661 (void *)&cmd_setmask_set,
3662 (void *)&cmd_setmask_mask,
3663 (void *)&cmd_setmask_value,
3669 * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION
3671 struct cmd_set_result {
3672 cmdline_fixed_string_t set;
3673 cmdline_fixed_string_t what;
3677 static void cmd_set_parsed(void *parsed_result,
3678 __rte_unused struct cmdline *cl,
3679 __rte_unused void *data)
3681 struct cmd_set_result *res = parsed_result;
3682 if (!strcmp(res->what, "nbport")) {
3683 set_fwd_ports_number(res->value);
3685 } else if (!strcmp(res->what, "nbcore")) {
3686 set_fwd_lcores_number(res->value);
3688 } else if (!strcmp(res->what, "burst"))
3689 set_nb_pkt_per_burst(res->value);
3690 else if (!strcmp(res->what, "verbose"))
3691 set_verbose_level(res->value);
3694 cmdline_parse_token_string_t cmd_set_set =
3695 TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set");
3696 cmdline_parse_token_string_t cmd_set_what =
3697 TOKEN_STRING_INITIALIZER(struct cmd_set_result, what,
3698 "nbport#nbcore#burst#verbose");
3699 cmdline_parse_token_num_t cmd_set_value =
3700 TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, RTE_UINT16);
3702 cmdline_parse_inst_t cmd_set_numbers = {
3703 .f = cmd_set_parsed,
3705 .help_str = "set nbport|nbcore|burst|verbose <value>",
3707 (void *)&cmd_set_set,
3708 (void *)&cmd_set_what,
3709 (void *)&cmd_set_value,
3714 /* *** SET LOG LEVEL CONFIGURATION *** */
3716 struct cmd_set_log_result {
3717 cmdline_fixed_string_t set;
3718 cmdline_fixed_string_t log;
3719 cmdline_fixed_string_t type;
3724 cmd_set_log_parsed(void *parsed_result,
3725 __rte_unused struct cmdline *cl,
3726 __rte_unused void *data)
3728 struct cmd_set_log_result *res;
3731 res = parsed_result;
3732 if (!strcmp(res->type, "global"))
3733 rte_log_set_global_level(res->level);
3735 ret = rte_log_set_level_regexp(res->type, res->level);
3737 printf("Unable to set log level\n");
3741 cmdline_parse_token_string_t cmd_set_log_set =
3742 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, set, "set");
3743 cmdline_parse_token_string_t cmd_set_log_log =
3744 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, log, "log");
3745 cmdline_parse_token_string_t cmd_set_log_type =
3746 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, type, NULL);
3747 cmdline_parse_token_num_t cmd_set_log_level =
3748 TOKEN_NUM_INITIALIZER(struct cmd_set_log_result, level, RTE_UINT32);
3750 cmdline_parse_inst_t cmd_set_log = {
3751 .f = cmd_set_log_parsed,
3753 .help_str = "set log global|<type> <level>",
3755 (void *)&cmd_set_log_set,
3756 (void *)&cmd_set_log_log,
3757 (void *)&cmd_set_log_type,
3758 (void *)&cmd_set_log_level,
3763 /* *** SET SEGMENT OFFSETS OF RX PACKETS SPLIT *** */
3765 struct cmd_set_rxoffs_result {
3766 cmdline_fixed_string_t cmd_keyword;
3767 cmdline_fixed_string_t rxoffs;
3768 cmdline_fixed_string_t seg_offsets;
3772 cmd_set_rxoffs_parsed(void *parsed_result,
3773 __rte_unused struct cmdline *cl,
3774 __rte_unused void *data)
3776 struct cmd_set_rxoffs_result *res;
3777 unsigned int seg_offsets[MAX_SEGS_BUFFER_SPLIT];
3778 unsigned int nb_segs;
3780 res = parsed_result;
3781 nb_segs = parse_item_list(res->seg_offsets, "segment offsets",
3782 MAX_SEGS_BUFFER_SPLIT, seg_offsets, 0);
3784 set_rx_pkt_offsets(seg_offsets, nb_segs);
3787 cmdline_parse_token_string_t cmd_set_rxoffs_keyword =
3788 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3789 cmd_keyword, "set");
3790 cmdline_parse_token_string_t cmd_set_rxoffs_name =
3791 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3793 cmdline_parse_token_string_t cmd_set_rxoffs_offsets =
3794 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3797 cmdline_parse_inst_t cmd_set_rxoffs = {
3798 .f = cmd_set_rxoffs_parsed,
3800 .help_str = "set rxoffs <len0[,len1]*>",
3802 (void *)&cmd_set_rxoffs_keyword,
3803 (void *)&cmd_set_rxoffs_name,
3804 (void *)&cmd_set_rxoffs_offsets,
3809 /* *** SET SEGMENT LENGTHS OF RX PACKETS SPLIT *** */
3811 struct cmd_set_rxpkts_result {
3812 cmdline_fixed_string_t cmd_keyword;
3813 cmdline_fixed_string_t rxpkts;
3814 cmdline_fixed_string_t seg_lengths;
3818 cmd_set_rxpkts_parsed(void *parsed_result,
3819 __rte_unused struct cmdline *cl,
3820 __rte_unused void *data)
3822 struct cmd_set_rxpkts_result *res;
3823 unsigned int seg_lengths[MAX_SEGS_BUFFER_SPLIT];
3824 unsigned int nb_segs;
3826 res = parsed_result;
3827 nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
3828 MAX_SEGS_BUFFER_SPLIT, seg_lengths, 0);
3830 set_rx_pkt_segments(seg_lengths, nb_segs);
3833 cmdline_parse_token_string_t cmd_set_rxpkts_keyword =
3834 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3835 cmd_keyword, "set");
3836 cmdline_parse_token_string_t cmd_set_rxpkts_name =
3837 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3839 cmdline_parse_token_string_t cmd_set_rxpkts_lengths =
3840 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3843 cmdline_parse_inst_t cmd_set_rxpkts = {
3844 .f = cmd_set_rxpkts_parsed,
3846 .help_str = "set rxpkts <len0[,len1]*>",
3848 (void *)&cmd_set_rxpkts_keyword,
3849 (void *)&cmd_set_rxpkts_name,
3850 (void *)&cmd_set_rxpkts_lengths,
3855 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */
3857 struct cmd_set_txpkts_result {
3858 cmdline_fixed_string_t cmd_keyword;
3859 cmdline_fixed_string_t txpkts;
3860 cmdline_fixed_string_t seg_lengths;
3864 cmd_set_txpkts_parsed(void *parsed_result,
3865 __rte_unused struct cmdline *cl,
3866 __rte_unused void *data)
3868 struct cmd_set_txpkts_result *res;
3869 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
3870 unsigned int nb_segs;
3872 res = parsed_result;
3873 nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
3874 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
3876 set_tx_pkt_segments(seg_lengths, nb_segs);
3879 cmdline_parse_token_string_t cmd_set_txpkts_keyword =
3880 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3881 cmd_keyword, "set");
3882 cmdline_parse_token_string_t cmd_set_txpkts_name =
3883 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3885 cmdline_parse_token_string_t cmd_set_txpkts_lengths =
3886 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3889 cmdline_parse_inst_t cmd_set_txpkts = {
3890 .f = cmd_set_txpkts_parsed,
3892 .help_str = "set txpkts <len0[,len1]*>",
3894 (void *)&cmd_set_txpkts_keyword,
3895 (void *)&cmd_set_txpkts_name,
3896 (void *)&cmd_set_txpkts_lengths,
3901 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */
3903 struct cmd_set_txsplit_result {
3904 cmdline_fixed_string_t cmd_keyword;
3905 cmdline_fixed_string_t txsplit;
3906 cmdline_fixed_string_t mode;
3910 cmd_set_txsplit_parsed(void *parsed_result,
3911 __rte_unused struct cmdline *cl,
3912 __rte_unused void *data)
3914 struct cmd_set_txsplit_result *res;
3916 res = parsed_result;
3917 set_tx_pkt_split(res->mode);
3920 cmdline_parse_token_string_t cmd_set_txsplit_keyword =
3921 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3922 cmd_keyword, "set");
3923 cmdline_parse_token_string_t cmd_set_txsplit_name =
3924 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3925 txsplit, "txsplit");
3926 cmdline_parse_token_string_t cmd_set_txsplit_mode =
3927 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3930 cmdline_parse_inst_t cmd_set_txsplit = {
3931 .f = cmd_set_txsplit_parsed,
3933 .help_str = "set txsplit on|off|rand",
3935 (void *)&cmd_set_txsplit_keyword,
3936 (void *)&cmd_set_txsplit_name,
3937 (void *)&cmd_set_txsplit_mode,
3942 /* *** SET TIMES FOR TXONLY PACKETS SCHEDULING ON TIMESTAMPS *** */
3944 struct cmd_set_txtimes_result {
3945 cmdline_fixed_string_t cmd_keyword;
3946 cmdline_fixed_string_t txtimes;
3947 cmdline_fixed_string_t tx_times;
3951 cmd_set_txtimes_parsed(void *parsed_result,
3952 __rte_unused struct cmdline *cl,
3953 __rte_unused void *data)
3955 struct cmd_set_txtimes_result *res;
3956 unsigned int tx_times[2] = {0, 0};
3957 unsigned int n_times;
3959 res = parsed_result;
3960 n_times = parse_item_list(res->tx_times, "tx times",
3963 set_tx_pkt_times(tx_times);
3966 cmdline_parse_token_string_t cmd_set_txtimes_keyword =
3967 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3968 cmd_keyword, "set");
3969 cmdline_parse_token_string_t cmd_set_txtimes_name =
3970 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3971 txtimes, "txtimes");
3972 cmdline_parse_token_string_t cmd_set_txtimes_value =
3973 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3976 cmdline_parse_inst_t cmd_set_txtimes = {
3977 .f = cmd_set_txtimes_parsed,
3979 .help_str = "set txtimes <inter_burst>,<intra_burst>",
3981 (void *)&cmd_set_txtimes_keyword,
3982 (void *)&cmd_set_txtimes_name,
3983 (void *)&cmd_set_txtimes_value,
3988 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */
3989 struct cmd_rx_vlan_filter_all_result {
3990 cmdline_fixed_string_t rx_vlan;
3991 cmdline_fixed_string_t what;
3992 cmdline_fixed_string_t all;
3997 cmd_rx_vlan_filter_all_parsed(void *parsed_result,
3998 __rte_unused struct cmdline *cl,
3999 __rte_unused void *data)
4001 struct cmd_rx_vlan_filter_all_result *res = parsed_result;
4003 if (!strcmp(res->what, "add"))
4004 rx_vlan_all_filter_set(res->port_id, 1);
4006 rx_vlan_all_filter_set(res->port_id, 0);
4009 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan =
4010 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4011 rx_vlan, "rx_vlan");
4012 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what =
4013 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4015 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all =
4016 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4018 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid =
4019 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4020 port_id, RTE_UINT16);
4022 cmdline_parse_inst_t cmd_rx_vlan_filter_all = {
4023 .f = cmd_rx_vlan_filter_all_parsed,
4025 .help_str = "rx_vlan add|rm all <port_id>: "
4026 "Add/Remove all identifiers to/from the set of VLAN "
4027 "identifiers filtered by a port",
4029 (void *)&cmd_rx_vlan_filter_all_rx_vlan,
4030 (void *)&cmd_rx_vlan_filter_all_what,
4031 (void *)&cmd_rx_vlan_filter_all_all,
4032 (void *)&cmd_rx_vlan_filter_all_portid,
4037 /* *** VLAN OFFLOAD SET ON A PORT *** */
4038 struct cmd_vlan_offload_result {
4039 cmdline_fixed_string_t vlan;
4040 cmdline_fixed_string_t set;
4041 cmdline_fixed_string_t vlan_type;
4042 cmdline_fixed_string_t what;
4043 cmdline_fixed_string_t on;
4044 cmdline_fixed_string_t port_id;
4048 cmd_vlan_offload_parsed(void *parsed_result,
4049 __rte_unused struct cmdline *cl,
4050 __rte_unused void *data)
4053 struct cmd_vlan_offload_result *res = parsed_result;
4056 portid_t port_id = 0;
4060 len = strnlen(str, STR_TOKEN_SIZE);
4062 /* Get port_id first */
4070 tmp = strtoul(str, NULL, 0);
4071 /* If port_id greater that what portid_t can represent, return */
4072 if(tmp >= RTE_MAX_ETHPORTS)
4074 port_id = (portid_t)tmp;
4076 if (!strcmp(res->on, "on"))
4081 if (!strcmp(res->what, "strip"))
4082 rx_vlan_strip_set(port_id, on);
4083 else if(!strcmp(res->what, "stripq")){
4084 uint16_t queue_id = 0;
4086 /* No queue_id, return */
4088 printf("must specify (port,queue_id)\n");
4091 tmp = strtoul(str + i + 1, NULL, 0);
4092 /* If queue_id greater that what 16-bits can represent, return */
4096 queue_id = (uint16_t)tmp;
4097 rx_vlan_strip_set_on_queue(port_id, queue_id, on);
4099 else if (!strcmp(res->what, "filter"))
4100 rx_vlan_filter_set(port_id, on);
4101 else if (!strcmp(res->what, "qinq_strip"))
4102 rx_vlan_qinq_strip_set(port_id, on);
4104 vlan_extend_set(port_id, on);
4109 cmdline_parse_token_string_t cmd_vlan_offload_vlan =
4110 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4112 cmdline_parse_token_string_t cmd_vlan_offload_set =
4113 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4115 cmdline_parse_token_string_t cmd_vlan_offload_what =
4116 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4117 what, "strip#filter#qinq_strip#extend#stripq");
4118 cmdline_parse_token_string_t cmd_vlan_offload_on =
4119 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4121 cmdline_parse_token_string_t cmd_vlan_offload_portid =
4122 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4125 cmdline_parse_inst_t cmd_vlan_offload = {
4126 .f = cmd_vlan_offload_parsed,
4128 .help_str = "vlan set strip|filter|qinq_strip|extend|stripq on|off "
4129 "<port_id[,queue_id]>: "
4130 "Strip/Filter/QinQ for rx side Extend for both rx/tx sides",
4132 (void *)&cmd_vlan_offload_vlan,
4133 (void *)&cmd_vlan_offload_set,
4134 (void *)&cmd_vlan_offload_what,
4135 (void *)&cmd_vlan_offload_on,
4136 (void *)&cmd_vlan_offload_portid,
4141 /* *** VLAN TPID SET ON A PORT *** */
4142 struct cmd_vlan_tpid_result {
4143 cmdline_fixed_string_t vlan;
4144 cmdline_fixed_string_t set;
4145 cmdline_fixed_string_t vlan_type;
4146 cmdline_fixed_string_t what;
4152 cmd_vlan_tpid_parsed(void *parsed_result,
4153 __rte_unused struct cmdline *cl,
4154 __rte_unused void *data)
4156 struct cmd_vlan_tpid_result *res = parsed_result;
4157 enum rte_vlan_type vlan_type;
4159 if (!strcmp(res->vlan_type, "inner"))
4160 vlan_type = ETH_VLAN_TYPE_INNER;
4161 else if (!strcmp(res->vlan_type, "outer"))
4162 vlan_type = ETH_VLAN_TYPE_OUTER;
4164 printf("Unknown vlan type\n");
4167 vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
4170 cmdline_parse_token_string_t cmd_vlan_tpid_vlan =
4171 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4173 cmdline_parse_token_string_t cmd_vlan_tpid_set =
4174 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4176 cmdline_parse_token_string_t cmd_vlan_type =
4177 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4178 vlan_type, "inner#outer");
4179 cmdline_parse_token_string_t cmd_vlan_tpid_what =
4180 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4182 cmdline_parse_token_num_t cmd_vlan_tpid_tpid =
4183 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4185 cmdline_parse_token_num_t cmd_vlan_tpid_portid =
4186 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4187 port_id, RTE_UINT16);
4189 cmdline_parse_inst_t cmd_vlan_tpid = {
4190 .f = cmd_vlan_tpid_parsed,
4192 .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: "
4193 "Set the VLAN Ether type",
4195 (void *)&cmd_vlan_tpid_vlan,
4196 (void *)&cmd_vlan_tpid_set,
4197 (void *)&cmd_vlan_type,
4198 (void *)&cmd_vlan_tpid_what,
4199 (void *)&cmd_vlan_tpid_tpid,
4200 (void *)&cmd_vlan_tpid_portid,
4205 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
4206 struct cmd_rx_vlan_filter_result {
4207 cmdline_fixed_string_t rx_vlan;
4208 cmdline_fixed_string_t what;
4214 cmd_rx_vlan_filter_parsed(void *parsed_result,
4215 __rte_unused struct cmdline *cl,
4216 __rte_unused void *data)
4218 struct cmd_rx_vlan_filter_result *res = parsed_result;
4220 if (!strcmp(res->what, "add"))
4221 rx_vft_set(res->port_id, res->vlan_id, 1);
4223 rx_vft_set(res->port_id, res->vlan_id, 0);
4226 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan =
4227 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4228 rx_vlan, "rx_vlan");
4229 cmdline_parse_token_string_t cmd_rx_vlan_filter_what =
4230 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4232 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid =
4233 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4234 vlan_id, RTE_UINT16);
4235 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid =
4236 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4237 port_id, RTE_UINT16);
4239 cmdline_parse_inst_t cmd_rx_vlan_filter = {
4240 .f = cmd_rx_vlan_filter_parsed,
4242 .help_str = "rx_vlan add|rm <vlan_id> <port_id>: "
4243 "Add/Remove a VLAN identifier to/from the set of VLAN "
4244 "identifiers filtered by a port",
4246 (void *)&cmd_rx_vlan_filter_rx_vlan,
4247 (void *)&cmd_rx_vlan_filter_what,
4248 (void *)&cmd_rx_vlan_filter_vlanid,
4249 (void *)&cmd_rx_vlan_filter_portid,
4254 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4255 struct cmd_tx_vlan_set_result {
4256 cmdline_fixed_string_t tx_vlan;
4257 cmdline_fixed_string_t set;
4263 cmd_tx_vlan_set_parsed(void *parsed_result,
4264 __rte_unused struct cmdline *cl,
4265 __rte_unused void *data)
4267 struct cmd_tx_vlan_set_result *res = parsed_result;
4269 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4272 if (!port_is_stopped(res->port_id)) {
4273 printf("Please stop port %d first\n", res->port_id);
4277 tx_vlan_set(res->port_id, res->vlan_id);
4279 cmd_reconfig_device_queue(res->port_id, 1, 1);
4282 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan =
4283 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4284 tx_vlan, "tx_vlan");
4285 cmdline_parse_token_string_t cmd_tx_vlan_set_set =
4286 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4288 cmdline_parse_token_num_t cmd_tx_vlan_set_portid =
4289 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4290 port_id, RTE_UINT16);
4291 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid =
4292 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4293 vlan_id, RTE_UINT16);
4295 cmdline_parse_inst_t cmd_tx_vlan_set = {
4296 .f = cmd_tx_vlan_set_parsed,
4298 .help_str = "tx_vlan set <port_id> <vlan_id>: "
4299 "Enable hardware insertion of a single VLAN header "
4300 "with a given TAG Identifier in packets sent on a port",
4302 (void *)&cmd_tx_vlan_set_tx_vlan,
4303 (void *)&cmd_tx_vlan_set_set,
4304 (void *)&cmd_tx_vlan_set_portid,
4305 (void *)&cmd_tx_vlan_set_vlanid,
4310 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */
4311 struct cmd_tx_vlan_set_qinq_result {
4312 cmdline_fixed_string_t tx_vlan;
4313 cmdline_fixed_string_t set;
4316 uint16_t vlan_id_outer;
4320 cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
4321 __rte_unused struct cmdline *cl,
4322 __rte_unused void *data)
4324 struct cmd_tx_vlan_set_qinq_result *res = parsed_result;
4326 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4329 if (!port_is_stopped(res->port_id)) {
4330 printf("Please stop port %d first\n", res->port_id);
4334 tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer);
4336 cmd_reconfig_device_queue(res->port_id, 1, 1);
4339 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan =
4340 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4341 tx_vlan, "tx_vlan");
4342 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set =
4343 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4345 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid =
4346 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4347 port_id, RTE_UINT16);
4348 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid =
4349 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4350 vlan_id, RTE_UINT16);
4351 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer =
4352 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4353 vlan_id_outer, RTE_UINT16);
4355 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = {
4356 .f = cmd_tx_vlan_set_qinq_parsed,
4358 .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: "
4359 "Enable hardware insertion of double VLAN header "
4360 "with given TAG Identifiers in packets sent on a port",
4362 (void *)&cmd_tx_vlan_set_qinq_tx_vlan,
4363 (void *)&cmd_tx_vlan_set_qinq_set,
4364 (void *)&cmd_tx_vlan_set_qinq_portid,
4365 (void *)&cmd_tx_vlan_set_qinq_vlanid,
4366 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer,
4371 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */
4372 struct cmd_tx_vlan_set_pvid_result {
4373 cmdline_fixed_string_t tx_vlan;
4374 cmdline_fixed_string_t set;
4375 cmdline_fixed_string_t pvid;
4378 cmdline_fixed_string_t mode;
4382 cmd_tx_vlan_set_pvid_parsed(void *parsed_result,
4383 __rte_unused struct cmdline *cl,
4384 __rte_unused void *data)
4386 struct cmd_tx_vlan_set_pvid_result *res = parsed_result;
4388 if (strcmp(res->mode, "on") == 0)
4389 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1);
4391 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0);
4394 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan =
4395 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4396 tx_vlan, "tx_vlan");
4397 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set =
4398 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4400 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid =
4401 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4403 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id =
4404 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4405 port_id, RTE_UINT16);
4406 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id =
4407 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4408 vlan_id, RTE_UINT16);
4409 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode =
4410 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4413 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = {
4414 .f = cmd_tx_vlan_set_pvid_parsed,
4416 .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off",
4418 (void *)&cmd_tx_vlan_set_pvid_tx_vlan,
4419 (void *)&cmd_tx_vlan_set_pvid_set,
4420 (void *)&cmd_tx_vlan_set_pvid_pvid,
4421 (void *)&cmd_tx_vlan_set_pvid_port_id,
4422 (void *)&cmd_tx_vlan_set_pvid_vlan_id,
4423 (void *)&cmd_tx_vlan_set_pvid_mode,
4428 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4429 struct cmd_tx_vlan_reset_result {
4430 cmdline_fixed_string_t tx_vlan;
4431 cmdline_fixed_string_t reset;
4436 cmd_tx_vlan_reset_parsed(void *parsed_result,
4437 __rte_unused struct cmdline *cl,
4438 __rte_unused void *data)
4440 struct cmd_tx_vlan_reset_result *res = parsed_result;
4442 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4445 if (!port_is_stopped(res->port_id)) {
4446 printf("Please stop port %d first\n", res->port_id);
4450 tx_vlan_reset(res->port_id);
4452 cmd_reconfig_device_queue(res->port_id, 1, 1);
4455 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan =
4456 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4457 tx_vlan, "tx_vlan");
4458 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset =
4459 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4461 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid =
4462 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result,
4463 port_id, RTE_UINT16);
4465 cmdline_parse_inst_t cmd_tx_vlan_reset = {
4466 .f = cmd_tx_vlan_reset_parsed,
4468 .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a "
4469 "VLAN header in packets sent on a port",
4471 (void *)&cmd_tx_vlan_reset_tx_vlan,
4472 (void *)&cmd_tx_vlan_reset_reset,
4473 (void *)&cmd_tx_vlan_reset_portid,
4479 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */
4480 struct cmd_csum_result {
4481 cmdline_fixed_string_t csum;
4482 cmdline_fixed_string_t mode;
4483 cmdline_fixed_string_t proto;
4484 cmdline_fixed_string_t hwsw;
4489 csum_show(int port_id)
4491 struct rte_eth_dev_info dev_info;
4492 uint64_t tx_offloads;
4495 tx_offloads = ports[port_id].dev_conf.txmode.offloads;
4496 printf("Parse tunnel is %s\n",
4497 (ports[port_id].parse_tunnel) ? "on" : "off");
4498 printf("IP checksum offload is %s\n",
4499 (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) ? "hw" : "sw");
4500 printf("UDP checksum offload is %s\n",
4501 (tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw");
4502 printf("TCP checksum offload is %s\n",
4503 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw");
4504 printf("SCTP checksum offload is %s\n",
4505 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw");
4506 printf("Outer-Ip checksum offload is %s\n",
4507 (tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ? "hw" : "sw");
4508 printf("Outer-Udp checksum offload is %s\n",
4509 (tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) ? "hw" : "sw");
4511 /* display warnings if configuration is not supported by the NIC */
4512 ret = eth_dev_info_get_print_err(port_id, &dev_info);
4516 if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) &&
4517 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
4518 printf("Warning: hardware IP checksum enabled but not "
4519 "supported by port %d\n", port_id);
4521 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) &&
4522 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
4523 printf("Warning: hardware UDP checksum enabled but not "
4524 "supported by port %d\n", port_id);
4526 if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) &&
4527 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
4528 printf("Warning: hardware TCP checksum enabled but not "
4529 "supported by port %d\n", port_id);
4531 if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) &&
4532 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
4533 printf("Warning: hardware SCTP checksum enabled but not "
4534 "supported by port %d\n", port_id);
4536 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) &&
4537 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
4538 printf("Warning: hardware outer IP checksum enabled but not "
4539 "supported by port %d\n", port_id);
4541 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) &&
4542 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
4544 printf("Warning: hardware outer UDP checksum enabled but not "
4545 "supported by port %d\n", port_id);
4550 cmd_config_queue_tx_offloads(struct rte_port *port)
4554 /* Apply queue tx offloads configuration */
4555 for (k = 0; k < port->dev_info.max_rx_queues; k++)
4556 port->tx_conf[k].offloads =
4557 port->dev_conf.txmode.offloads;
4561 cmd_csum_parsed(void *parsed_result,
4562 __rte_unused struct cmdline *cl,
4563 __rte_unused void *data)
4565 struct cmd_csum_result *res = parsed_result;
4567 uint64_t csum_offloads = 0;
4568 struct rte_eth_dev_info dev_info;
4571 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
4572 printf("invalid port %d\n", res->port_id);
4575 if (!port_is_stopped(res->port_id)) {
4576 printf("Please stop port %d first\n", res->port_id);
4580 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4584 if (!strcmp(res->mode, "set")) {
4586 if (!strcmp(res->hwsw, "hw"))
4589 if (!strcmp(res->proto, "ip")) {
4590 if (hw == 0 || (dev_info.tx_offload_capa &
4591 DEV_TX_OFFLOAD_IPV4_CKSUM)) {
4592 csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM;
4594 printf("IP checksum offload is not supported "
4595 "by port %u\n", res->port_id);
4597 } else if (!strcmp(res->proto, "udp")) {
4598 if (hw == 0 || (dev_info.tx_offload_capa &
4599 DEV_TX_OFFLOAD_UDP_CKSUM)) {
4600 csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
4602 printf("UDP checksum offload is not supported "
4603 "by port %u\n", res->port_id);
4605 } else if (!strcmp(res->proto, "tcp")) {
4606 if (hw == 0 || (dev_info.tx_offload_capa &
4607 DEV_TX_OFFLOAD_TCP_CKSUM)) {
4608 csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
4610 printf("TCP checksum offload is not supported "
4611 "by port %u\n", res->port_id);
4613 } else if (!strcmp(res->proto, "sctp")) {
4614 if (hw == 0 || (dev_info.tx_offload_capa &
4615 DEV_TX_OFFLOAD_SCTP_CKSUM)) {
4616 csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM;
4618 printf("SCTP checksum offload is not supported "
4619 "by port %u\n", res->port_id);
4621 } else if (!strcmp(res->proto, "outer-ip")) {
4622 if (hw == 0 || (dev_info.tx_offload_capa &
4623 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
4625 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
4627 printf("Outer IP checksum offload is not "
4628 "supported by port %u\n", res->port_id);
4630 } else if (!strcmp(res->proto, "outer-udp")) {
4631 if (hw == 0 || (dev_info.tx_offload_capa &
4632 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)) {
4634 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
4636 printf("Outer UDP checksum offload is not "
4637 "supported by port %u\n", res->port_id);
4642 ports[res->port_id].dev_conf.txmode.offloads |=
4645 ports[res->port_id].dev_conf.txmode.offloads &=
4648 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4650 csum_show(res->port_id);
4652 cmd_reconfig_device_queue(res->port_id, 1, 1);
4655 cmdline_parse_token_string_t cmd_csum_csum =
4656 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4658 cmdline_parse_token_string_t cmd_csum_mode =
4659 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4661 cmdline_parse_token_string_t cmd_csum_proto =
4662 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4663 proto, "ip#tcp#udp#sctp#outer-ip#outer-udp");
4664 cmdline_parse_token_string_t cmd_csum_hwsw =
4665 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4667 cmdline_parse_token_num_t cmd_csum_portid =
4668 TOKEN_NUM_INITIALIZER(struct cmd_csum_result,
4669 port_id, RTE_UINT16);
4671 cmdline_parse_inst_t cmd_csum_set = {
4672 .f = cmd_csum_parsed,
4674 .help_str = "csum set ip|tcp|udp|sctp|outer-ip|outer-udp hw|sw <port_id>: "
4675 "Enable/Disable hardware calculation of L3/L4 checksum when "
4676 "using csum forward engine",
4678 (void *)&cmd_csum_csum,
4679 (void *)&cmd_csum_mode,
4680 (void *)&cmd_csum_proto,
4681 (void *)&cmd_csum_hwsw,
4682 (void *)&cmd_csum_portid,
4687 cmdline_parse_token_string_t cmd_csum_mode_show =
4688 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4691 cmdline_parse_inst_t cmd_csum_show = {
4692 .f = cmd_csum_parsed,
4694 .help_str = "csum show <port_id>: Show checksum offload configuration",
4696 (void *)&cmd_csum_csum,
4697 (void *)&cmd_csum_mode_show,
4698 (void *)&cmd_csum_portid,
4703 /* Enable/disable tunnel parsing */
4704 struct cmd_csum_tunnel_result {
4705 cmdline_fixed_string_t csum;
4706 cmdline_fixed_string_t parse;
4707 cmdline_fixed_string_t onoff;
4712 cmd_csum_tunnel_parsed(void *parsed_result,
4713 __rte_unused struct cmdline *cl,
4714 __rte_unused void *data)
4716 struct cmd_csum_tunnel_result *res = parsed_result;
4718 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4721 if (!strcmp(res->onoff, "on"))
4722 ports[res->port_id].parse_tunnel = 1;
4724 ports[res->port_id].parse_tunnel = 0;
4726 csum_show(res->port_id);
4729 cmdline_parse_token_string_t cmd_csum_tunnel_csum =
4730 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4732 cmdline_parse_token_string_t cmd_csum_tunnel_parse =
4733 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4734 parse, "parse-tunnel");
4735 cmdline_parse_token_string_t cmd_csum_tunnel_onoff =
4736 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4738 cmdline_parse_token_num_t cmd_csum_tunnel_portid =
4739 TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result,
4740 port_id, RTE_UINT16);
4742 cmdline_parse_inst_t cmd_csum_tunnel = {
4743 .f = cmd_csum_tunnel_parsed,
4745 .help_str = "csum parse-tunnel on|off <port_id>: "
4746 "Enable/Disable parsing of tunnels for csum engine",
4748 (void *)&cmd_csum_tunnel_csum,
4749 (void *)&cmd_csum_tunnel_parse,
4750 (void *)&cmd_csum_tunnel_onoff,
4751 (void *)&cmd_csum_tunnel_portid,
4756 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */
4757 struct cmd_tso_set_result {
4758 cmdline_fixed_string_t tso;
4759 cmdline_fixed_string_t mode;
4765 cmd_tso_set_parsed(void *parsed_result,
4766 __rte_unused struct cmdline *cl,
4767 __rte_unused void *data)
4769 struct cmd_tso_set_result *res = parsed_result;
4770 struct rte_eth_dev_info dev_info;
4773 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4775 if (!port_is_stopped(res->port_id)) {
4776 printf("Please stop port %d first\n", res->port_id);
4780 if (!strcmp(res->mode, "set"))
4781 ports[res->port_id].tso_segsz = res->tso_segsz;
4783 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4787 if ((ports[res->port_id].tso_segsz != 0) &&
4788 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4789 printf("Error: TSO is not supported by port %d\n",
4794 if (ports[res->port_id].tso_segsz == 0) {
4795 ports[res->port_id].dev_conf.txmode.offloads &=
4796 ~DEV_TX_OFFLOAD_TCP_TSO;
4797 printf("TSO for non-tunneled packets is disabled\n");
4799 ports[res->port_id].dev_conf.txmode.offloads |=
4800 DEV_TX_OFFLOAD_TCP_TSO;
4801 printf("TSO segment size for non-tunneled packets is %d\n",
4802 ports[res->port_id].tso_segsz);
4804 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4806 /* display warnings if configuration is not supported by the NIC */
4807 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4811 if ((ports[res->port_id].tso_segsz != 0) &&
4812 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4813 printf("Warning: TSO enabled but not "
4814 "supported by port %d\n", res->port_id);
4817 cmd_reconfig_device_queue(res->port_id, 1, 1);
4820 cmdline_parse_token_string_t cmd_tso_set_tso =
4821 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4823 cmdline_parse_token_string_t cmd_tso_set_mode =
4824 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4826 cmdline_parse_token_num_t cmd_tso_set_tso_segsz =
4827 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4828 tso_segsz, RTE_UINT16);
4829 cmdline_parse_token_num_t cmd_tso_set_portid =
4830 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4831 port_id, RTE_UINT16);
4833 cmdline_parse_inst_t cmd_tso_set = {
4834 .f = cmd_tso_set_parsed,
4836 .help_str = "tso set <tso_segsz> <port_id>: "
4837 "Set TSO segment size of non-tunneled packets for csum engine "
4840 (void *)&cmd_tso_set_tso,
4841 (void *)&cmd_tso_set_mode,
4842 (void *)&cmd_tso_set_tso_segsz,
4843 (void *)&cmd_tso_set_portid,
4848 cmdline_parse_token_string_t cmd_tso_show_mode =
4849 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4853 cmdline_parse_inst_t cmd_tso_show = {
4854 .f = cmd_tso_set_parsed,
4856 .help_str = "tso show <port_id>: "
4857 "Show TSO segment size of non-tunneled packets for csum engine",
4859 (void *)&cmd_tso_set_tso,
4860 (void *)&cmd_tso_show_mode,
4861 (void *)&cmd_tso_set_portid,
4866 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */
4867 struct cmd_tunnel_tso_set_result {
4868 cmdline_fixed_string_t tso;
4869 cmdline_fixed_string_t mode;
4874 static struct rte_eth_dev_info
4875 check_tunnel_tso_nic_support(portid_t port_id)
4877 struct rte_eth_dev_info dev_info;
4879 if (eth_dev_info_get_print_err(port_id, &dev_info) != 0)
4882 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO))
4883 printf("Warning: VXLAN TUNNEL TSO not supported therefore "
4884 "not enabled for port %d\n", port_id);
4885 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO))
4886 printf("Warning: GRE TUNNEL TSO not supported therefore "
4887 "not enabled for port %d\n", port_id);
4888 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO))
4889 printf("Warning: IPIP TUNNEL TSO not supported therefore "
4890 "not enabled for port %d\n", port_id);
4891 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO))
4892 printf("Warning: GENEVE TUNNEL TSO not supported therefore "
4893 "not enabled for port %d\n", port_id);
4894 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO))
4895 printf("Warning: IP TUNNEL TSO not supported therefore "
4896 "not enabled for port %d\n", port_id);
4897 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO))
4898 printf("Warning: UDP TUNNEL TSO not supported therefore "
4899 "not enabled for port %d\n", port_id);
4904 cmd_tunnel_tso_set_parsed(void *parsed_result,
4905 __rte_unused struct cmdline *cl,
4906 __rte_unused void *data)
4908 struct cmd_tunnel_tso_set_result *res = parsed_result;
4909 struct rte_eth_dev_info dev_info;
4911 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4913 if (!port_is_stopped(res->port_id)) {
4914 printf("Please stop port %d first\n", res->port_id);
4918 if (!strcmp(res->mode, "set"))
4919 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz;
4921 dev_info = check_tunnel_tso_nic_support(res->port_id);
4922 if (ports[res->port_id].tunnel_tso_segsz == 0) {
4923 ports[res->port_id].dev_conf.txmode.offloads &=
4924 ~(DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4925 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4926 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4927 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4928 DEV_TX_OFFLOAD_IP_TNL_TSO |
4929 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4930 printf("TSO for tunneled packets is disabled\n");
4932 uint64_t tso_offloads = (DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4933 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4934 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4935 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4936 DEV_TX_OFFLOAD_IP_TNL_TSO |
4937 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4939 ports[res->port_id].dev_conf.txmode.offloads |=
4940 (tso_offloads & dev_info.tx_offload_capa);
4941 printf("TSO segment size for tunneled packets is %d\n",
4942 ports[res->port_id].tunnel_tso_segsz);
4944 /* Below conditions are needed to make it work:
4945 * (1) tunnel TSO is supported by the NIC;
4946 * (2) "csum parse_tunnel" must be set so that tunneled pkts
4948 * (3) for tunneled pkts with outer L3 of IPv4,
4949 * "csum set outer-ip" must be set to hw, because after tso,
4950 * total_len of outer IP header is changed, and the checksum
4951 * of outer IP header calculated by sw should be wrong; that
4952 * is not necessary for IPv6 tunneled pkts because there's no
4953 * checksum in IP header anymore.
4956 if (!ports[res->port_id].parse_tunnel)
4957 printf("Warning: csum parse_tunnel must be set "
4958 "so that tunneled packets are recognized\n");
4959 if (!(ports[res->port_id].dev_conf.txmode.offloads &
4960 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM))
4961 printf("Warning: csum set outer-ip must be set to hw "
4962 "if outer L3 is IPv4; not necessary for IPv6\n");
4965 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4966 cmd_reconfig_device_queue(res->port_id, 1, 1);
4969 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso =
4970 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4972 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode =
4973 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4975 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz =
4976 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4977 tso_segsz, RTE_UINT16);
4978 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid =
4979 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4980 port_id, RTE_UINT16);
4982 cmdline_parse_inst_t cmd_tunnel_tso_set = {
4983 .f = cmd_tunnel_tso_set_parsed,
4985 .help_str = "tunnel_tso set <tso_segsz> <port_id>: "
4986 "Set TSO segment size of tunneled packets for csum engine "
4989 (void *)&cmd_tunnel_tso_set_tso,
4990 (void *)&cmd_tunnel_tso_set_mode,
4991 (void *)&cmd_tunnel_tso_set_tso_segsz,
4992 (void *)&cmd_tunnel_tso_set_portid,
4997 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode =
4998 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
5002 cmdline_parse_inst_t cmd_tunnel_tso_show = {
5003 .f = cmd_tunnel_tso_set_parsed,
5005 .help_str = "tunnel_tso show <port_id> "
5006 "Show TSO segment size of tunneled packets for csum engine",
5008 (void *)&cmd_tunnel_tso_set_tso,
5009 (void *)&cmd_tunnel_tso_show_mode,
5010 (void *)&cmd_tunnel_tso_set_portid,
5015 /* *** SET GRO FOR A PORT *** */
5016 struct cmd_gro_enable_result {
5017 cmdline_fixed_string_t cmd_set;
5018 cmdline_fixed_string_t cmd_port;
5019 cmdline_fixed_string_t cmd_keyword;
5020 cmdline_fixed_string_t cmd_onoff;
5025 cmd_gro_enable_parsed(void *parsed_result,
5026 __rte_unused struct cmdline *cl,
5027 __rte_unused void *data)
5029 struct cmd_gro_enable_result *res;
5031 res = parsed_result;
5032 if (!strcmp(res->cmd_keyword, "gro"))
5033 setup_gro(res->cmd_onoff, res->cmd_pid);
5036 cmdline_parse_token_string_t cmd_gro_enable_set =
5037 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5039 cmdline_parse_token_string_t cmd_gro_enable_port =
5040 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5041 cmd_keyword, "port");
5042 cmdline_parse_token_num_t cmd_gro_enable_pid =
5043 TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result,
5044 cmd_pid, RTE_UINT16);
5045 cmdline_parse_token_string_t cmd_gro_enable_keyword =
5046 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5047 cmd_keyword, "gro");
5048 cmdline_parse_token_string_t cmd_gro_enable_onoff =
5049 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5050 cmd_onoff, "on#off");
5052 cmdline_parse_inst_t cmd_gro_enable = {
5053 .f = cmd_gro_enable_parsed,
5055 .help_str = "set port <port_id> gro on|off",
5057 (void *)&cmd_gro_enable_set,
5058 (void *)&cmd_gro_enable_port,
5059 (void *)&cmd_gro_enable_pid,
5060 (void *)&cmd_gro_enable_keyword,
5061 (void *)&cmd_gro_enable_onoff,
5066 /* *** DISPLAY GRO CONFIGURATION *** */
5067 struct cmd_gro_show_result {
5068 cmdline_fixed_string_t cmd_show;
5069 cmdline_fixed_string_t cmd_port;
5070 cmdline_fixed_string_t cmd_keyword;
5075 cmd_gro_show_parsed(void *parsed_result,
5076 __rte_unused struct cmdline *cl,
5077 __rte_unused void *data)
5079 struct cmd_gro_show_result *res;
5081 res = parsed_result;
5082 if (!strcmp(res->cmd_keyword, "gro"))
5083 show_gro(res->cmd_pid);
5086 cmdline_parse_token_string_t cmd_gro_show_show =
5087 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5089 cmdline_parse_token_string_t cmd_gro_show_port =
5090 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5092 cmdline_parse_token_num_t cmd_gro_show_pid =
5093 TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result,
5094 cmd_pid, RTE_UINT16);
5095 cmdline_parse_token_string_t cmd_gro_show_keyword =
5096 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5097 cmd_keyword, "gro");
5099 cmdline_parse_inst_t cmd_gro_show = {
5100 .f = cmd_gro_show_parsed,
5102 .help_str = "show port <port_id> gro",
5104 (void *)&cmd_gro_show_show,
5105 (void *)&cmd_gro_show_port,
5106 (void *)&cmd_gro_show_pid,
5107 (void *)&cmd_gro_show_keyword,
5112 /* *** SET FLUSH CYCLES FOR GRO *** */
5113 struct cmd_gro_flush_result {
5114 cmdline_fixed_string_t cmd_set;
5115 cmdline_fixed_string_t cmd_keyword;
5116 cmdline_fixed_string_t cmd_flush;
5121 cmd_gro_flush_parsed(void *parsed_result,
5122 __rte_unused struct cmdline *cl,
5123 __rte_unused void *data)
5125 struct cmd_gro_flush_result *res;
5127 res = parsed_result;
5128 if ((!strcmp(res->cmd_keyword, "gro")) &&
5129 (!strcmp(res->cmd_flush, "flush")))
5130 setup_gro_flush_cycles(res->cmd_cycles);
5133 cmdline_parse_token_string_t cmd_gro_flush_set =
5134 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5136 cmdline_parse_token_string_t cmd_gro_flush_keyword =
5137 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5138 cmd_keyword, "gro");
5139 cmdline_parse_token_string_t cmd_gro_flush_flush =
5140 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5141 cmd_flush, "flush");
5142 cmdline_parse_token_num_t cmd_gro_flush_cycles =
5143 TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result,
5144 cmd_cycles, RTE_UINT8);
5146 cmdline_parse_inst_t cmd_gro_flush = {
5147 .f = cmd_gro_flush_parsed,
5149 .help_str = "set gro flush <cycles>",
5151 (void *)&cmd_gro_flush_set,
5152 (void *)&cmd_gro_flush_keyword,
5153 (void *)&cmd_gro_flush_flush,
5154 (void *)&cmd_gro_flush_cycles,
5159 /* *** ENABLE/DISABLE GSO *** */
5160 struct cmd_gso_enable_result {
5161 cmdline_fixed_string_t cmd_set;
5162 cmdline_fixed_string_t cmd_port;
5163 cmdline_fixed_string_t cmd_keyword;
5164 cmdline_fixed_string_t cmd_mode;
5169 cmd_gso_enable_parsed(void *parsed_result,
5170 __rte_unused struct cmdline *cl,
5171 __rte_unused void *data)
5173 struct cmd_gso_enable_result *res;
5175 res = parsed_result;
5176 if (!strcmp(res->cmd_keyword, "gso"))
5177 setup_gso(res->cmd_mode, res->cmd_pid);
5180 cmdline_parse_token_string_t cmd_gso_enable_set =
5181 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5183 cmdline_parse_token_string_t cmd_gso_enable_port =
5184 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5186 cmdline_parse_token_string_t cmd_gso_enable_keyword =
5187 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5188 cmd_keyword, "gso");
5189 cmdline_parse_token_string_t cmd_gso_enable_mode =
5190 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5191 cmd_mode, "on#off");
5192 cmdline_parse_token_num_t cmd_gso_enable_pid =
5193 TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result,
5194 cmd_pid, RTE_UINT16);
5196 cmdline_parse_inst_t cmd_gso_enable = {
5197 .f = cmd_gso_enable_parsed,
5199 .help_str = "set port <port_id> gso on|off",
5201 (void *)&cmd_gso_enable_set,
5202 (void *)&cmd_gso_enable_port,
5203 (void *)&cmd_gso_enable_pid,
5204 (void *)&cmd_gso_enable_keyword,
5205 (void *)&cmd_gso_enable_mode,
5210 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */
5211 struct cmd_gso_size_result {
5212 cmdline_fixed_string_t cmd_set;
5213 cmdline_fixed_string_t cmd_keyword;
5214 cmdline_fixed_string_t cmd_segsz;
5219 cmd_gso_size_parsed(void *parsed_result,
5220 __rte_unused struct cmdline *cl,
5221 __rte_unused void *data)
5223 struct cmd_gso_size_result *res = parsed_result;
5225 if (test_done == 0) {
5226 printf("Before setting GSO segsz, please first"
5227 " stop forwarding\n");
5231 if (!strcmp(res->cmd_keyword, "gso") &&
5232 !strcmp(res->cmd_segsz, "segsz")) {
5233 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN)
5234 printf("gso_size should be larger than %zu."
5235 " Please input a legal value\n",
5236 RTE_GSO_SEG_SIZE_MIN);
5238 gso_max_segment_size = res->cmd_size;
5242 cmdline_parse_token_string_t cmd_gso_size_set =
5243 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5245 cmdline_parse_token_string_t cmd_gso_size_keyword =
5246 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5247 cmd_keyword, "gso");
5248 cmdline_parse_token_string_t cmd_gso_size_segsz =
5249 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5250 cmd_segsz, "segsz");
5251 cmdline_parse_token_num_t cmd_gso_size_size =
5252 TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result,
5253 cmd_size, RTE_UINT16);
5255 cmdline_parse_inst_t cmd_gso_size = {
5256 .f = cmd_gso_size_parsed,
5258 .help_str = "set gso segsz <length>",
5260 (void *)&cmd_gso_size_set,
5261 (void *)&cmd_gso_size_keyword,
5262 (void *)&cmd_gso_size_segsz,
5263 (void *)&cmd_gso_size_size,
5268 /* *** SHOW GSO CONFIGURATION *** */
5269 struct cmd_gso_show_result {
5270 cmdline_fixed_string_t cmd_show;
5271 cmdline_fixed_string_t cmd_port;
5272 cmdline_fixed_string_t cmd_keyword;
5277 cmd_gso_show_parsed(void *parsed_result,
5278 __rte_unused struct cmdline *cl,
5279 __rte_unused void *data)
5281 struct cmd_gso_show_result *res = parsed_result;
5283 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
5284 printf("invalid port id %u\n", res->cmd_pid);
5287 if (!strcmp(res->cmd_keyword, "gso")) {
5288 if (gso_ports[res->cmd_pid].enable) {
5289 printf("Max GSO'd packet size: %uB\n"
5290 "Supported GSO types: TCP/IPv4, "
5291 "UDP/IPv4, VxLAN with inner "
5292 "TCP/IPv4 packet, GRE with inner "
5293 "TCP/IPv4 packet\n",
5294 gso_max_segment_size);
5296 printf("GSO is not enabled on Port %u\n", res->cmd_pid);
5300 cmdline_parse_token_string_t cmd_gso_show_show =
5301 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5303 cmdline_parse_token_string_t cmd_gso_show_port =
5304 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5306 cmdline_parse_token_string_t cmd_gso_show_keyword =
5307 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5308 cmd_keyword, "gso");
5309 cmdline_parse_token_num_t cmd_gso_show_pid =
5310 TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result,
5311 cmd_pid, RTE_UINT16);
5313 cmdline_parse_inst_t cmd_gso_show = {
5314 .f = cmd_gso_show_parsed,
5316 .help_str = "show port <port_id> gso",
5318 (void *)&cmd_gso_show_show,
5319 (void *)&cmd_gso_show_port,
5320 (void *)&cmd_gso_show_pid,
5321 (void *)&cmd_gso_show_keyword,
5326 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */
5327 struct cmd_set_flush_rx {
5328 cmdline_fixed_string_t set;
5329 cmdline_fixed_string_t flush_rx;
5330 cmdline_fixed_string_t mode;
5334 cmd_set_flush_rx_parsed(void *parsed_result,
5335 __rte_unused struct cmdline *cl,
5336 __rte_unused void *data)
5338 struct cmd_set_flush_rx *res = parsed_result;
5339 no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5342 cmdline_parse_token_string_t cmd_setflushrx_set =
5343 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5345 cmdline_parse_token_string_t cmd_setflushrx_flush_rx =
5346 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5347 flush_rx, "flush_rx");
5348 cmdline_parse_token_string_t cmd_setflushrx_mode =
5349 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5353 cmdline_parse_inst_t cmd_set_flush_rx = {
5354 .f = cmd_set_flush_rx_parsed,
5355 .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams",
5358 (void *)&cmd_setflushrx_set,
5359 (void *)&cmd_setflushrx_flush_rx,
5360 (void *)&cmd_setflushrx_mode,
5365 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */
5366 struct cmd_set_link_check {
5367 cmdline_fixed_string_t set;
5368 cmdline_fixed_string_t link_check;
5369 cmdline_fixed_string_t mode;
5373 cmd_set_link_check_parsed(void *parsed_result,
5374 __rte_unused struct cmdline *cl,
5375 __rte_unused void *data)
5377 struct cmd_set_link_check *res = parsed_result;
5378 no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5381 cmdline_parse_token_string_t cmd_setlinkcheck_set =
5382 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5384 cmdline_parse_token_string_t cmd_setlinkcheck_link_check =
5385 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5386 link_check, "link_check");
5387 cmdline_parse_token_string_t cmd_setlinkcheck_mode =
5388 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5392 cmdline_parse_inst_t cmd_set_link_check = {
5393 .f = cmd_set_link_check_parsed,
5394 .help_str = "set link_check on|off: Enable/Disable link status check "
5395 "when starting/stopping a port",
5398 (void *)&cmd_setlinkcheck_set,
5399 (void *)&cmd_setlinkcheck_link_check,
5400 (void *)&cmd_setlinkcheck_mode,
5405 /* *** SET NIC BYPASS MODE *** */
5406 struct cmd_set_bypass_mode_result {
5407 cmdline_fixed_string_t set;
5408 cmdline_fixed_string_t bypass;
5409 cmdline_fixed_string_t mode;
5410 cmdline_fixed_string_t value;
5415 cmd_set_bypass_mode_parsed(void *parsed_result,
5416 __rte_unused struct cmdline *cl,
5417 __rte_unused void *data)
5419 struct cmd_set_bypass_mode_result *res = parsed_result;
5420 portid_t port_id = res->port_id;
5421 int32_t rc = -EINVAL;
5423 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5424 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5426 if (!strcmp(res->value, "bypass"))
5427 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5428 else if (!strcmp(res->value, "isolate"))
5429 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5431 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5433 /* Set the bypass mode for the relevant port. */
5434 rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode);
5437 printf("\t Failed to set bypass mode for port = %d.\n", port_id);
5440 cmdline_parse_token_string_t cmd_setbypass_mode_set =
5441 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5443 cmdline_parse_token_string_t cmd_setbypass_mode_bypass =
5444 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5446 cmdline_parse_token_string_t cmd_setbypass_mode_mode =
5447 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5449 cmdline_parse_token_string_t cmd_setbypass_mode_value =
5450 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5451 value, "normal#bypass#isolate");
5452 cmdline_parse_token_num_t cmd_setbypass_mode_port =
5453 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result,
5454 port_id, RTE_UINT16);
5456 cmdline_parse_inst_t cmd_set_bypass_mode = {
5457 .f = cmd_set_bypass_mode_parsed,
5458 .help_str = "set bypass mode normal|bypass|isolate <port_id>: "
5459 "Set the NIC bypass mode for port_id",
5462 (void *)&cmd_setbypass_mode_set,
5463 (void *)&cmd_setbypass_mode_bypass,
5464 (void *)&cmd_setbypass_mode_mode,
5465 (void *)&cmd_setbypass_mode_value,
5466 (void *)&cmd_setbypass_mode_port,
5471 /* *** SET NIC BYPASS EVENT *** */
5472 struct cmd_set_bypass_event_result {
5473 cmdline_fixed_string_t set;
5474 cmdline_fixed_string_t bypass;
5475 cmdline_fixed_string_t event;
5476 cmdline_fixed_string_t event_value;
5477 cmdline_fixed_string_t mode;
5478 cmdline_fixed_string_t mode_value;
5483 cmd_set_bypass_event_parsed(void *parsed_result,
5484 __rte_unused struct cmdline *cl,
5485 __rte_unused void *data)
5487 int32_t rc = -EINVAL;
5488 struct cmd_set_bypass_event_result *res = parsed_result;
5489 portid_t port_id = res->port_id;
5491 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5492 uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5493 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5495 if (!strcmp(res->event_value, "timeout"))
5496 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT;
5497 else if (!strcmp(res->event_value, "os_on"))
5498 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON;
5499 else if (!strcmp(res->event_value, "os_off"))
5500 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF;
5501 else if (!strcmp(res->event_value, "power_on"))
5502 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON;
5503 else if (!strcmp(res->event_value, "power_off"))
5504 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF;
5506 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5508 if (!strcmp(res->mode_value, "bypass"))
5509 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5510 else if (!strcmp(res->mode_value, "isolate"))
5511 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5513 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5515 /* Set the watchdog timeout. */
5516 if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) {
5519 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) {
5520 rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id,
5524 printf("Failed to set timeout value %u "
5525 "for port %d, errto code: %d.\n",
5526 bypass_timeout, port_id, rc);
5530 /* Set the bypass event to transition to bypass mode. */
5531 rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event,
5536 printf("\t Failed to set bypass event for port = %d.\n",
5540 cmdline_parse_token_string_t cmd_setbypass_event_set =
5541 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5543 cmdline_parse_token_string_t cmd_setbypass_event_bypass =
5544 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5546 cmdline_parse_token_string_t cmd_setbypass_event_event =
5547 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5549 cmdline_parse_token_string_t cmd_setbypass_event_event_value =
5550 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5551 event_value, "none#timeout#os_off#os_on#power_on#power_off");
5552 cmdline_parse_token_string_t cmd_setbypass_event_mode =
5553 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5555 cmdline_parse_token_string_t cmd_setbypass_event_mode_value =
5556 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5557 mode_value, "normal#bypass#isolate");
5558 cmdline_parse_token_num_t cmd_setbypass_event_port =
5559 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result,
5560 port_id, RTE_UINT16);
5562 cmdline_parse_inst_t cmd_set_bypass_event = {
5563 .f = cmd_set_bypass_event_parsed,
5564 .help_str = "set bypass event none|timeout|os_on|os_off|power_on|"
5565 "power_off mode normal|bypass|isolate <port_id>: "
5566 "Set the NIC bypass event mode for port_id",
5569 (void *)&cmd_setbypass_event_set,
5570 (void *)&cmd_setbypass_event_bypass,
5571 (void *)&cmd_setbypass_event_event,
5572 (void *)&cmd_setbypass_event_event_value,
5573 (void *)&cmd_setbypass_event_mode,
5574 (void *)&cmd_setbypass_event_mode_value,
5575 (void *)&cmd_setbypass_event_port,
5581 /* *** SET NIC BYPASS TIMEOUT *** */
5582 struct cmd_set_bypass_timeout_result {
5583 cmdline_fixed_string_t set;
5584 cmdline_fixed_string_t bypass;
5585 cmdline_fixed_string_t timeout;
5586 cmdline_fixed_string_t value;
5590 cmd_set_bypass_timeout_parsed(void *parsed_result,
5591 __rte_unused struct cmdline *cl,
5592 __rte_unused void *data)
5594 __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result;
5596 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5597 if (!strcmp(res->value, "1.5"))
5598 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC;
5599 else if (!strcmp(res->value, "2"))
5600 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC;
5601 else if (!strcmp(res->value, "3"))
5602 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC;
5603 else if (!strcmp(res->value, "4"))
5604 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC;
5605 else if (!strcmp(res->value, "8"))
5606 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC;
5607 else if (!strcmp(res->value, "16"))
5608 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC;
5609 else if (!strcmp(res->value, "32"))
5610 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC;
5612 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5616 cmdline_parse_token_string_t cmd_setbypass_timeout_set =
5617 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5619 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass =
5620 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5622 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout =
5623 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5624 timeout, "timeout");
5625 cmdline_parse_token_string_t cmd_setbypass_timeout_value =
5626 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5627 value, "0#1.5#2#3#4#8#16#32");
5629 cmdline_parse_inst_t cmd_set_bypass_timeout = {
5630 .f = cmd_set_bypass_timeout_parsed,
5631 .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: "
5632 "Set the NIC bypass watchdog timeout in seconds",
5635 (void *)&cmd_setbypass_timeout_set,
5636 (void *)&cmd_setbypass_timeout_bypass,
5637 (void *)&cmd_setbypass_timeout_timeout,
5638 (void *)&cmd_setbypass_timeout_value,
5643 /* *** SHOW NIC BYPASS MODE *** */
5644 struct cmd_show_bypass_config_result {
5645 cmdline_fixed_string_t show;
5646 cmdline_fixed_string_t bypass;
5647 cmdline_fixed_string_t config;
5652 cmd_show_bypass_config_parsed(void *parsed_result,
5653 __rte_unused struct cmdline *cl,
5654 __rte_unused void *data)
5656 struct cmd_show_bypass_config_result *res = parsed_result;
5657 portid_t port_id = res->port_id;
5659 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5660 uint32_t event_mode;
5661 uint32_t bypass_mode;
5662 uint32_t timeout = bypass_timeout;
5665 static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] =
5666 {"off", "1.5", "2", "3", "4", "8", "16", "32"};
5667 static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] =
5668 {"UNKNOWN", "normal", "bypass", "isolate"};
5669 static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = {
5677 /* Display the bypass mode.*/
5678 if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) {
5679 printf("\tFailed to get bypass mode for port = %d\n", port_id);
5683 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode))
5684 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5686 printf("\tbypass mode = %s\n", modes[bypass_mode]);
5689 /* Display the bypass timeout.*/
5690 if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout))
5691 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5693 printf("\tbypass timeout = %s\n", timeouts[timeout]);
5695 /* Display the bypass events and associated modes. */
5696 for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < RTE_DIM(events); i++) {
5698 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) {
5699 printf("\tFailed to get bypass mode for event = %s\n",
5702 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode))
5703 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5705 printf("\tbypass event: %-16s = %s\n", events[i],
5711 printf("\tFailed to get bypass configuration for port = %d\n",
5715 cmdline_parse_token_string_t cmd_showbypass_config_show =
5716 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5718 cmdline_parse_token_string_t cmd_showbypass_config_bypass =
5719 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5721 cmdline_parse_token_string_t cmd_showbypass_config_config =
5722 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5724 cmdline_parse_token_num_t cmd_showbypass_config_port =
5725 TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result,
5726 port_id, RTE_UINT16);
5728 cmdline_parse_inst_t cmd_show_bypass_config = {
5729 .f = cmd_show_bypass_config_parsed,
5730 .help_str = "show bypass config <port_id>: "
5731 "Show the NIC bypass config for port_id",
5734 (void *)&cmd_showbypass_config_show,
5735 (void *)&cmd_showbypass_config_bypass,
5736 (void *)&cmd_showbypass_config_config,
5737 (void *)&cmd_showbypass_config_port,
5743 /* *** SET BONDING MODE *** */
5744 struct cmd_set_bonding_mode_result {
5745 cmdline_fixed_string_t set;
5746 cmdline_fixed_string_t bonding;
5747 cmdline_fixed_string_t mode;
5752 static void cmd_set_bonding_mode_parsed(void *parsed_result,
5753 __rte_unused struct cmdline *cl,
5754 __rte_unused void *data)
5756 struct cmd_set_bonding_mode_result *res = parsed_result;
5757 portid_t port_id = res->port_id;
5759 /* Set the bonding mode for the relevant port. */
5760 if (0 != rte_eth_bond_mode_set(port_id, res->value))
5761 printf("\t Failed to set bonding mode for port = %d.\n", port_id);
5764 cmdline_parse_token_string_t cmd_setbonding_mode_set =
5765 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5767 cmdline_parse_token_string_t cmd_setbonding_mode_bonding =
5768 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5769 bonding, "bonding");
5770 cmdline_parse_token_string_t cmd_setbonding_mode_mode =
5771 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5773 cmdline_parse_token_num_t cmd_setbonding_mode_value =
5774 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5776 cmdline_parse_token_num_t cmd_setbonding_mode_port =
5777 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5778 port_id, RTE_UINT16);
5780 cmdline_parse_inst_t cmd_set_bonding_mode = {
5781 .f = cmd_set_bonding_mode_parsed,
5782 .help_str = "set bonding mode <mode_value> <port_id>: "
5783 "Set the bonding mode for port_id",
5786 (void *) &cmd_setbonding_mode_set,
5787 (void *) &cmd_setbonding_mode_bonding,
5788 (void *) &cmd_setbonding_mode_mode,
5789 (void *) &cmd_setbonding_mode_value,
5790 (void *) &cmd_setbonding_mode_port,
5795 /* *** SET BONDING SLOW_QUEUE SW/HW *** */
5796 struct cmd_set_bonding_lacp_dedicated_queues_result {
5797 cmdline_fixed_string_t set;
5798 cmdline_fixed_string_t bonding;
5799 cmdline_fixed_string_t lacp;
5800 cmdline_fixed_string_t dedicated_queues;
5802 cmdline_fixed_string_t mode;
5805 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result,
5806 __rte_unused struct cmdline *cl,
5807 __rte_unused void *data)
5809 struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result;
5810 portid_t port_id = res->port_id;
5811 struct rte_port *port;
5813 port = &ports[port_id];
5815 /** Check if the port is not started **/
5816 if (port->port_status != RTE_PORT_STOPPED) {
5817 printf("Please stop port %d first\n", port_id);
5821 if (!strcmp(res->mode, "enable")) {
5822 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0)
5823 printf("Dedicate queues for LACP control packets"
5826 printf("Enabling dedicate queues for LACP control "
5827 "packets on port %d failed\n", port_id);
5828 } else if (!strcmp(res->mode, "disable")) {
5829 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0)
5830 printf("Dedicated queues for LACP control packets "
5833 printf("Disabling dedicated queues for LACP control "
5834 "traffic on port %d failed\n", port_id);
5838 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set =
5839 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5841 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding =
5842 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5843 bonding, "bonding");
5844 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp =
5845 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5847 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues =
5848 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5849 dedicated_queues, "dedicated_queues");
5850 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id =
5851 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5852 port_id, RTE_UINT16);
5853 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode =
5854 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5855 mode, "enable#disable");
5857 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = {
5858 .f = cmd_set_bonding_lacp_dedicated_queues_parsed,
5859 .help_str = "set bonding lacp dedicated_queues <port_id> "
5861 "Enable/disable dedicated queues for LACP control traffic for port_id",
5864 (void *)&cmd_setbonding_lacp_dedicated_queues_set,
5865 (void *)&cmd_setbonding_lacp_dedicated_queues_bonding,
5866 (void *)&cmd_setbonding_lacp_dedicated_queues_lacp,
5867 (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues,
5868 (void *)&cmd_setbonding_lacp_dedicated_queues_port_id,
5869 (void *)&cmd_setbonding_lacp_dedicated_queues_mode,
5874 /* *** SET BALANCE XMIT POLICY *** */
5875 struct cmd_set_bonding_balance_xmit_policy_result {
5876 cmdline_fixed_string_t set;
5877 cmdline_fixed_string_t bonding;
5878 cmdline_fixed_string_t balance_xmit_policy;
5880 cmdline_fixed_string_t policy;
5883 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
5884 __rte_unused struct cmdline *cl,
5885 __rte_unused void *data)
5887 struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result;
5888 portid_t port_id = res->port_id;
5891 if (!strcmp(res->policy, "l2")) {
5892 policy = BALANCE_XMIT_POLICY_LAYER2;
5893 } else if (!strcmp(res->policy, "l23")) {
5894 policy = BALANCE_XMIT_POLICY_LAYER23;
5895 } else if (!strcmp(res->policy, "l34")) {
5896 policy = BALANCE_XMIT_POLICY_LAYER34;
5898 printf("\t Invalid xmit policy selection");
5902 /* Set the bonding mode for the relevant port. */
5903 if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
5904 printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
5909 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set =
5910 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5912 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding =
5913 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5914 bonding, "bonding");
5915 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy =
5916 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5917 balance_xmit_policy, "balance_xmit_policy");
5918 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port =
5919 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5920 port_id, RTE_UINT16);
5921 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy =
5922 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5923 policy, "l2#l23#l34");
5925 cmdline_parse_inst_t cmd_set_balance_xmit_policy = {
5926 .f = cmd_set_bonding_balance_xmit_policy_parsed,
5927 .help_str = "set bonding balance_xmit_policy <port_id> "
5929 "Set the bonding balance_xmit_policy for port_id",
5932 (void *)&cmd_setbonding_balance_xmit_policy_set,
5933 (void *)&cmd_setbonding_balance_xmit_policy_bonding,
5934 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy,
5935 (void *)&cmd_setbonding_balance_xmit_policy_port,
5936 (void *)&cmd_setbonding_balance_xmit_policy_policy,
5941 /* *** SHOW NIC BONDING CONFIGURATION *** */
5942 struct cmd_show_bonding_config_result {
5943 cmdline_fixed_string_t show;
5944 cmdline_fixed_string_t bonding;
5945 cmdline_fixed_string_t config;
5949 static void cmd_show_bonding_config_parsed(void *parsed_result,
5950 __rte_unused struct cmdline *cl,
5951 __rte_unused void *data)
5953 struct cmd_show_bonding_config_result *res = parsed_result;
5954 int bonding_mode, agg_mode;
5955 portid_t slaves[RTE_MAX_ETHPORTS];
5956 int num_slaves, num_active_slaves;
5959 portid_t port_id = res->port_id;
5961 /* Display the bonding mode.*/
5962 bonding_mode = rte_eth_bond_mode_get(port_id);
5963 if (bonding_mode < 0) {
5964 printf("\tFailed to get bonding mode for port = %d\n", port_id);
5967 printf("\tBonding mode: %d\n", bonding_mode);
5969 if (bonding_mode == BONDING_MODE_BALANCE) {
5970 int balance_xmit_policy;
5972 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
5973 if (balance_xmit_policy < 0) {
5974 printf("\tFailed to get balance xmit policy for port = %d\n",
5978 printf("\tBalance Xmit Policy: ");
5980 switch (balance_xmit_policy) {
5981 case BALANCE_XMIT_POLICY_LAYER2:
5982 printf("BALANCE_XMIT_POLICY_LAYER2");
5984 case BALANCE_XMIT_POLICY_LAYER23:
5985 printf("BALANCE_XMIT_POLICY_LAYER23");
5987 case BALANCE_XMIT_POLICY_LAYER34:
5988 printf("BALANCE_XMIT_POLICY_LAYER34");
5995 if (bonding_mode == BONDING_MODE_8023AD) {
5996 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id);
5997 printf("\tIEEE802.3AD Aggregator Mode: ");
6000 printf("bandwidth");
6012 num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
6014 if (num_slaves < 0) {
6015 printf("\tFailed to get slave list for port = %d\n", port_id);
6018 if (num_slaves > 0) {
6019 printf("\tSlaves (%d): [", num_slaves);
6020 for (i = 0; i < num_slaves - 1; i++)
6021 printf("%d ", slaves[i]);
6023 printf("%d]\n", slaves[num_slaves - 1]);
6025 printf("\tSlaves: []\n");
6029 num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves,
6032 if (num_active_slaves < 0) {
6033 printf("\tFailed to get active slave list for port = %d\n", port_id);
6036 if (num_active_slaves > 0) {
6037 printf("\tActive Slaves (%d): [", num_active_slaves);
6038 for (i = 0; i < num_active_slaves - 1; i++)
6039 printf("%d ", slaves[i]);
6041 printf("%d]\n", slaves[num_active_slaves - 1]);
6044 printf("\tActive Slaves: []\n");
6048 primary_id = rte_eth_bond_primary_get(port_id);
6049 if (primary_id < 0) {
6050 printf("\tFailed to get primary slave for port = %d\n", port_id);
6053 printf("\tPrimary: [%d]\n", primary_id);
6057 cmdline_parse_token_string_t cmd_showbonding_config_show =
6058 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6060 cmdline_parse_token_string_t cmd_showbonding_config_bonding =
6061 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6062 bonding, "bonding");
6063 cmdline_parse_token_string_t cmd_showbonding_config_config =
6064 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6066 cmdline_parse_token_num_t cmd_showbonding_config_port =
6067 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result,
6068 port_id, RTE_UINT16);
6070 cmdline_parse_inst_t cmd_show_bonding_config = {
6071 .f = cmd_show_bonding_config_parsed,
6072 .help_str = "show bonding config <port_id>: "
6073 "Show the bonding config for port_id",
6076 (void *)&cmd_showbonding_config_show,
6077 (void *)&cmd_showbonding_config_bonding,
6078 (void *)&cmd_showbonding_config_config,
6079 (void *)&cmd_showbonding_config_port,
6084 /* *** SET BONDING PRIMARY *** */
6085 struct cmd_set_bonding_primary_result {
6086 cmdline_fixed_string_t set;
6087 cmdline_fixed_string_t bonding;
6088 cmdline_fixed_string_t primary;
6093 static void cmd_set_bonding_primary_parsed(void *parsed_result,
6094 __rte_unused struct cmdline *cl,
6095 __rte_unused void *data)
6097 struct cmd_set_bonding_primary_result *res = parsed_result;
6098 portid_t master_port_id = res->port_id;
6099 portid_t slave_port_id = res->slave_id;
6101 /* Set the primary slave for a bonded device. */
6102 if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
6103 printf("\t Failed to set primary slave for port = %d.\n",
6110 cmdline_parse_token_string_t cmd_setbonding_primary_set =
6111 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6113 cmdline_parse_token_string_t cmd_setbonding_primary_bonding =
6114 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6115 bonding, "bonding");
6116 cmdline_parse_token_string_t cmd_setbonding_primary_primary =
6117 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6118 primary, "primary");
6119 cmdline_parse_token_num_t cmd_setbonding_primary_slave =
6120 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
6121 slave_id, RTE_UINT16);
6122 cmdline_parse_token_num_t cmd_setbonding_primary_port =
6123 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
6124 port_id, RTE_UINT16);
6126 cmdline_parse_inst_t cmd_set_bonding_primary = {
6127 .f = cmd_set_bonding_primary_parsed,
6128 .help_str = "set bonding primary <slave_id> <port_id>: "
6129 "Set the primary slave for port_id",
6132 (void *)&cmd_setbonding_primary_set,
6133 (void *)&cmd_setbonding_primary_bonding,
6134 (void *)&cmd_setbonding_primary_primary,
6135 (void *)&cmd_setbonding_primary_slave,
6136 (void *)&cmd_setbonding_primary_port,
6141 /* *** ADD SLAVE *** */
6142 struct cmd_add_bonding_slave_result {
6143 cmdline_fixed_string_t add;
6144 cmdline_fixed_string_t bonding;
6145 cmdline_fixed_string_t slave;
6150 static void cmd_add_bonding_slave_parsed(void *parsed_result,
6151 __rte_unused struct cmdline *cl,
6152 __rte_unused void *data)
6154 struct cmd_add_bonding_slave_result *res = parsed_result;
6155 portid_t master_port_id = res->port_id;
6156 portid_t slave_port_id = res->slave_id;
6158 /* add the slave for a bonded device. */
6159 if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
6160 printf("\t Failed to add slave %d to master port = %d.\n",
6161 slave_port_id, master_port_id);
6165 set_port_slave_flag(slave_port_id);
6168 cmdline_parse_token_string_t cmd_addbonding_slave_add =
6169 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6171 cmdline_parse_token_string_t cmd_addbonding_slave_bonding =
6172 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6173 bonding, "bonding");
6174 cmdline_parse_token_string_t cmd_addbonding_slave_slave =
6175 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6177 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid =
6178 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
6179 slave_id, RTE_UINT16);
6180 cmdline_parse_token_num_t cmd_addbonding_slave_port =
6181 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
6182 port_id, RTE_UINT16);
6184 cmdline_parse_inst_t cmd_add_bonding_slave = {
6185 .f = cmd_add_bonding_slave_parsed,
6186 .help_str = "add bonding slave <slave_id> <port_id>: "
6187 "Add a slave device to a bonded device",
6190 (void *)&cmd_addbonding_slave_add,
6191 (void *)&cmd_addbonding_slave_bonding,
6192 (void *)&cmd_addbonding_slave_slave,
6193 (void *)&cmd_addbonding_slave_slaveid,
6194 (void *)&cmd_addbonding_slave_port,
6199 /* *** REMOVE SLAVE *** */
6200 struct cmd_remove_bonding_slave_result {
6201 cmdline_fixed_string_t remove;
6202 cmdline_fixed_string_t bonding;
6203 cmdline_fixed_string_t slave;
6208 static void cmd_remove_bonding_slave_parsed(void *parsed_result,
6209 __rte_unused struct cmdline *cl,
6210 __rte_unused void *data)
6212 struct cmd_remove_bonding_slave_result *res = parsed_result;
6213 portid_t master_port_id = res->port_id;
6214 portid_t slave_port_id = res->slave_id;
6216 /* remove the slave from a bonded device. */
6217 if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
6218 printf("\t Failed to remove slave %d from master port = %d.\n",
6219 slave_port_id, master_port_id);
6223 clear_port_slave_flag(slave_port_id);
6226 cmdline_parse_token_string_t cmd_removebonding_slave_remove =
6227 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6229 cmdline_parse_token_string_t cmd_removebonding_slave_bonding =
6230 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6231 bonding, "bonding");
6232 cmdline_parse_token_string_t cmd_removebonding_slave_slave =
6233 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6235 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid =
6236 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6237 slave_id, RTE_UINT16);
6238 cmdline_parse_token_num_t cmd_removebonding_slave_port =
6239 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6240 port_id, RTE_UINT16);
6242 cmdline_parse_inst_t cmd_remove_bonding_slave = {
6243 .f = cmd_remove_bonding_slave_parsed,
6244 .help_str = "remove bonding slave <slave_id> <port_id>: "
6245 "Remove a slave device from a bonded device",
6248 (void *)&cmd_removebonding_slave_remove,
6249 (void *)&cmd_removebonding_slave_bonding,
6250 (void *)&cmd_removebonding_slave_slave,
6251 (void *)&cmd_removebonding_slave_slaveid,
6252 (void *)&cmd_removebonding_slave_port,
6257 /* *** CREATE BONDED DEVICE *** */
6258 struct cmd_create_bonded_device_result {
6259 cmdline_fixed_string_t create;
6260 cmdline_fixed_string_t bonded;
6261 cmdline_fixed_string_t device;
6266 static int bond_dev_num = 0;
6268 static void cmd_create_bonded_device_parsed(void *parsed_result,
6269 __rte_unused struct cmdline *cl,
6270 __rte_unused void *data)
6272 struct cmd_create_bonded_device_result *res = parsed_result;
6273 char ethdev_name[RTE_ETH_NAME_MAX_LEN];
6277 if (test_done == 0) {
6278 printf("Please stop forwarding first\n");
6282 snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d",
6285 /* Create a new bonded device. */
6286 port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
6288 printf("\t Failed to create bonded device.\n");
6291 printf("Created new bonded device %s on (port %d).\n", ethdev_name,
6294 /* Update number of ports */
6295 nb_ports = rte_eth_dev_count_avail();
6296 reconfig(port_id, res->socket);
6297 ret = rte_eth_promiscuous_enable(port_id);
6299 printf("Failed to enable promiscuous mode for port %u: %s - ignore\n",
6300 port_id, rte_strerror(-ret));
6302 ports[port_id].need_setup = 0;
6303 ports[port_id].port_status = RTE_PORT_STOPPED;
6308 cmdline_parse_token_string_t cmd_createbonded_device_create =
6309 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6311 cmdline_parse_token_string_t cmd_createbonded_device_bonded =
6312 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6314 cmdline_parse_token_string_t cmd_createbonded_device_device =
6315 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6317 cmdline_parse_token_num_t cmd_createbonded_device_mode =
6318 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6320 cmdline_parse_token_num_t cmd_createbonded_device_socket =
6321 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6324 cmdline_parse_inst_t cmd_create_bonded_device = {
6325 .f = cmd_create_bonded_device_parsed,
6326 .help_str = "create bonded device <mode> <socket>: "
6327 "Create a new bonded device with specific bonding mode and socket",
6330 (void *)&cmd_createbonded_device_create,
6331 (void *)&cmd_createbonded_device_bonded,
6332 (void *)&cmd_createbonded_device_device,
6333 (void *)&cmd_createbonded_device_mode,
6334 (void *)&cmd_createbonded_device_socket,
6339 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */
6340 struct cmd_set_bond_mac_addr_result {
6341 cmdline_fixed_string_t set;
6342 cmdline_fixed_string_t bonding;
6343 cmdline_fixed_string_t mac_addr;
6345 struct rte_ether_addr address;
6348 static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
6349 __rte_unused struct cmdline *cl,
6350 __rte_unused void *data)
6352 struct cmd_set_bond_mac_addr_result *res = parsed_result;
6355 if (port_id_is_invalid(res->port_num, ENABLED_WARN))
6358 ret = rte_eth_bond_mac_address_set(res->port_num, &res->address);
6360 /* check the return value and print it if is < 0 */
6362 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6365 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
6366 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set");
6367 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding =
6368 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding,
6370 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac =
6371 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr,
6373 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum =
6374 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result,
6375 port_num, RTE_UINT16);
6376 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr =
6377 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address);
6379 cmdline_parse_inst_t cmd_set_bond_mac_addr = {
6380 .f = cmd_set_bond_mac_addr_parsed,
6382 .help_str = "set bonding mac_addr <port_id> <mac_addr>",
6384 (void *)&cmd_set_bond_mac_addr_set,
6385 (void *)&cmd_set_bond_mac_addr_bonding,
6386 (void *)&cmd_set_bond_mac_addr_mac,
6387 (void *)&cmd_set_bond_mac_addr_portnum,
6388 (void *)&cmd_set_bond_mac_addr_addr,
6394 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */
6395 struct cmd_set_bond_mon_period_result {
6396 cmdline_fixed_string_t set;
6397 cmdline_fixed_string_t bonding;
6398 cmdline_fixed_string_t mon_period;
6403 static void cmd_set_bond_mon_period_parsed(void *parsed_result,
6404 __rte_unused struct cmdline *cl,
6405 __rte_unused void *data)
6407 struct cmd_set_bond_mon_period_result *res = parsed_result;
6410 ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms);
6412 /* check the return value and print it if is < 0 */
6414 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6417 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
6418 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6420 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding =
6421 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6422 bonding, "bonding");
6423 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period =
6424 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6425 mon_period, "mon_period");
6426 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum =
6427 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6428 port_num, RTE_UINT16);
6429 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms =
6430 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6431 period_ms, RTE_UINT32);
6433 cmdline_parse_inst_t cmd_set_bond_mon_period = {
6434 .f = cmd_set_bond_mon_period_parsed,
6436 .help_str = "set bonding mon_period <port_id> <period_ms>",
6438 (void *)&cmd_set_bond_mon_period_set,
6439 (void *)&cmd_set_bond_mon_period_bonding,
6440 (void *)&cmd_set_bond_mon_period_mon_period,
6441 (void *)&cmd_set_bond_mon_period_portnum,
6442 (void *)&cmd_set_bond_mon_period_period_ms,
6449 struct cmd_set_bonding_agg_mode_policy_result {
6450 cmdline_fixed_string_t set;
6451 cmdline_fixed_string_t bonding;
6452 cmdline_fixed_string_t agg_mode;
6454 cmdline_fixed_string_t policy;
6459 cmd_set_bonding_agg_mode(void *parsed_result,
6460 __rte_unused struct cmdline *cl,
6461 __rte_unused void *data)
6463 struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result;
6464 uint8_t policy = AGG_BANDWIDTH;
6466 if (!strcmp(res->policy, "bandwidth"))
6467 policy = AGG_BANDWIDTH;
6468 else if (!strcmp(res->policy, "stable"))
6469 policy = AGG_STABLE;
6470 else if (!strcmp(res->policy, "count"))
6473 rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy);
6477 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set =
6478 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6480 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding =
6481 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6482 bonding, "bonding");
6484 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode =
6485 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6486 agg_mode, "agg_mode");
6488 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum =
6489 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6490 port_num, RTE_UINT16);
6492 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string =
6493 TOKEN_STRING_INITIALIZER(
6494 struct cmd_set_bonding_balance_xmit_policy_result,
6495 policy, "stable#bandwidth#count");
6497 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = {
6498 .f = cmd_set_bonding_agg_mode,
6500 .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>",
6502 (void *)&cmd_set_bonding_agg_mode_set,
6503 (void *)&cmd_set_bonding_agg_mode_bonding,
6504 (void *)&cmd_set_bonding_agg_mode_agg_mode,
6505 (void *)&cmd_set_bonding_agg_mode_portnum,
6506 (void *)&cmd_set_bonding_agg_mode_policy_string,
6512 #endif /* RTE_NET_BOND */
6514 /* *** SET FORWARDING MODE *** */
6515 struct cmd_set_fwd_mode_result {
6516 cmdline_fixed_string_t set;
6517 cmdline_fixed_string_t fwd;
6518 cmdline_fixed_string_t mode;
6521 static void cmd_set_fwd_mode_parsed(void *parsed_result,
6522 __rte_unused struct cmdline *cl,
6523 __rte_unused void *data)
6525 struct cmd_set_fwd_mode_result *res = parsed_result;
6528 set_pkt_forwarding_mode(res->mode);
6531 cmdline_parse_token_string_t cmd_setfwd_set =
6532 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set");
6533 cmdline_parse_token_string_t cmd_setfwd_fwd =
6534 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd");
6535 cmdline_parse_token_string_t cmd_setfwd_mode =
6536 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode,
6537 "" /* defined at init */);
6539 cmdline_parse_inst_t cmd_set_fwd_mode = {
6540 .f = cmd_set_fwd_mode_parsed,
6542 .help_str = NULL, /* defined at init */
6544 (void *)&cmd_setfwd_set,
6545 (void *)&cmd_setfwd_fwd,
6546 (void *)&cmd_setfwd_mode,
6551 static void cmd_set_fwd_mode_init(void)
6554 static char token[128];
6555 static char help[256];
6556 cmdline_parse_token_string_t *token_struct;
6558 modes = list_pkt_forwarding_modes();
6559 snprintf(help, sizeof(help), "set fwd %s: "
6560 "Set packet forwarding mode", modes);
6561 cmd_set_fwd_mode.help_str = help;
6563 /* string token separator is # */
6564 for (c = token; *modes != '\0'; modes++)
6569 token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2];
6570 token_struct->string_data.str = token;
6573 /* *** SET RETRY FORWARDING MODE *** */
6574 struct cmd_set_fwd_retry_mode_result {
6575 cmdline_fixed_string_t set;
6576 cmdline_fixed_string_t fwd;
6577 cmdline_fixed_string_t mode;
6578 cmdline_fixed_string_t retry;
6581 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result,
6582 __rte_unused struct cmdline *cl,
6583 __rte_unused void *data)
6585 struct cmd_set_fwd_retry_mode_result *res = parsed_result;
6588 set_pkt_forwarding_mode(res->mode);
6591 cmdline_parse_token_string_t cmd_setfwd_retry_set =
6592 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6594 cmdline_parse_token_string_t cmd_setfwd_retry_fwd =
6595 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6597 cmdline_parse_token_string_t cmd_setfwd_retry_mode =
6598 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6600 "" /* defined at init */);
6601 cmdline_parse_token_string_t cmd_setfwd_retry_retry =
6602 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6605 cmdline_parse_inst_t cmd_set_fwd_retry_mode = {
6606 .f = cmd_set_fwd_retry_mode_parsed,
6608 .help_str = NULL, /* defined at init */
6610 (void *)&cmd_setfwd_retry_set,
6611 (void *)&cmd_setfwd_retry_fwd,
6612 (void *)&cmd_setfwd_retry_mode,
6613 (void *)&cmd_setfwd_retry_retry,
6618 static void cmd_set_fwd_retry_mode_init(void)
6621 static char token[128];
6622 static char help[256];
6623 cmdline_parse_token_string_t *token_struct;
6625 modes = list_pkt_forwarding_retry_modes();
6626 snprintf(help, sizeof(help), "set fwd %s retry: "
6627 "Set packet forwarding mode with retry", modes);
6628 cmd_set_fwd_retry_mode.help_str = help;
6630 /* string token separator is # */
6631 for (c = token; *modes != '\0'; modes++)
6636 token_struct = (cmdline_parse_token_string_t *)
6637 cmd_set_fwd_retry_mode.tokens[2];
6638 token_struct->string_data.str = token;
6641 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */
6642 struct cmd_set_burst_tx_retry_result {
6643 cmdline_fixed_string_t set;
6644 cmdline_fixed_string_t burst;
6645 cmdline_fixed_string_t tx;
6646 cmdline_fixed_string_t delay;
6648 cmdline_fixed_string_t retry;
6652 static void cmd_set_burst_tx_retry_parsed(void *parsed_result,
6653 __rte_unused struct cmdline *cl,
6654 __rte_unused void *data)
6656 struct cmd_set_burst_tx_retry_result *res = parsed_result;
6658 if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst")
6659 && !strcmp(res->tx, "tx")) {
6660 if (!strcmp(res->delay, "delay"))
6661 burst_tx_delay_time = res->time;
6662 if (!strcmp(res->retry, "retry"))
6663 burst_tx_retry_num = res->retry_num;
6668 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set =
6669 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set");
6670 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst =
6671 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst,
6673 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx =
6674 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx");
6675 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay =
6676 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay");
6677 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time =
6678 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time,
6680 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry =
6681 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry");
6682 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num =
6683 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num,
6686 cmdline_parse_inst_t cmd_set_burst_tx_retry = {
6687 .f = cmd_set_burst_tx_retry_parsed,
6688 .help_str = "set burst tx delay <delay_usec> retry <num_retry>",
6690 (void *)&cmd_set_burst_tx_retry_set,
6691 (void *)&cmd_set_burst_tx_retry_burst,
6692 (void *)&cmd_set_burst_tx_retry_tx,
6693 (void *)&cmd_set_burst_tx_retry_delay,
6694 (void *)&cmd_set_burst_tx_retry_time,
6695 (void *)&cmd_set_burst_tx_retry_retry,
6696 (void *)&cmd_set_burst_tx_retry_retry_num,
6701 /* *** SET PROMISC MODE *** */
6702 struct cmd_set_promisc_mode_result {
6703 cmdline_fixed_string_t set;
6704 cmdline_fixed_string_t promisc;
6705 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6706 uint16_t port_num; /* valid if "allports" argument == 0 */
6707 cmdline_fixed_string_t mode;
6710 static void cmd_set_promisc_mode_parsed(void *parsed_result,
6711 __rte_unused struct cmdline *cl,
6714 struct cmd_set_promisc_mode_result *res = parsed_result;
6718 if (!strcmp(res->mode, "on"))
6725 RTE_ETH_FOREACH_DEV(i)
6726 eth_set_promisc_mode(i, enable);
6728 eth_set_promisc_mode(res->port_num, enable);
6732 cmdline_parse_token_string_t cmd_setpromisc_set =
6733 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set");
6734 cmdline_parse_token_string_t cmd_setpromisc_promisc =
6735 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc,
6737 cmdline_parse_token_string_t cmd_setpromisc_portall =
6738 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all,
6740 cmdline_parse_token_num_t cmd_setpromisc_portnum =
6741 TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num,
6743 cmdline_parse_token_string_t cmd_setpromisc_mode =
6744 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode,
6747 cmdline_parse_inst_t cmd_set_promisc_mode_all = {
6748 .f = cmd_set_promisc_mode_parsed,
6750 .help_str = "set promisc all on|off: Set promisc mode for all ports",
6752 (void *)&cmd_setpromisc_set,
6753 (void *)&cmd_setpromisc_promisc,
6754 (void *)&cmd_setpromisc_portall,
6755 (void *)&cmd_setpromisc_mode,
6760 cmdline_parse_inst_t cmd_set_promisc_mode_one = {
6761 .f = cmd_set_promisc_mode_parsed,
6763 .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id",
6765 (void *)&cmd_setpromisc_set,
6766 (void *)&cmd_setpromisc_promisc,
6767 (void *)&cmd_setpromisc_portnum,
6768 (void *)&cmd_setpromisc_mode,
6773 /* *** SET ALLMULTI MODE *** */
6774 struct cmd_set_allmulti_mode_result {
6775 cmdline_fixed_string_t set;
6776 cmdline_fixed_string_t allmulti;
6777 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6778 uint16_t port_num; /* valid if "allports" argument == 0 */
6779 cmdline_fixed_string_t mode;
6782 static void cmd_set_allmulti_mode_parsed(void *parsed_result,
6783 __rte_unused struct cmdline *cl,
6786 struct cmd_set_allmulti_mode_result *res = parsed_result;
6790 if (!strcmp(res->mode, "on"))
6797 RTE_ETH_FOREACH_DEV(i) {
6798 eth_set_allmulticast_mode(i, enable);
6802 eth_set_allmulticast_mode(res->port_num, enable);
6806 cmdline_parse_token_string_t cmd_setallmulti_set =
6807 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set");
6808 cmdline_parse_token_string_t cmd_setallmulti_allmulti =
6809 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti,
6811 cmdline_parse_token_string_t cmd_setallmulti_portall =
6812 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all,
6814 cmdline_parse_token_num_t cmd_setallmulti_portnum =
6815 TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num,
6817 cmdline_parse_token_string_t cmd_setallmulti_mode =
6818 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode,
6821 cmdline_parse_inst_t cmd_set_allmulti_mode_all = {
6822 .f = cmd_set_allmulti_mode_parsed,
6824 .help_str = "set allmulti all on|off: Set allmulti mode for all ports",
6826 (void *)&cmd_setallmulti_set,
6827 (void *)&cmd_setallmulti_allmulti,
6828 (void *)&cmd_setallmulti_portall,
6829 (void *)&cmd_setallmulti_mode,
6834 cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
6835 .f = cmd_set_allmulti_mode_parsed,
6837 .help_str = "set allmulti <port_id> on|off: "
6838 "Set allmulti mode on port_id",
6840 (void *)&cmd_setallmulti_set,
6841 (void *)&cmd_setallmulti_allmulti,
6842 (void *)&cmd_setallmulti_portnum,
6843 (void *)&cmd_setallmulti_mode,
6848 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
6849 struct cmd_link_flow_ctrl_set_result {
6850 cmdline_fixed_string_t set;
6851 cmdline_fixed_string_t flow_ctrl;
6852 cmdline_fixed_string_t rx;
6853 cmdline_fixed_string_t rx_lfc_mode;
6854 cmdline_fixed_string_t tx;
6855 cmdline_fixed_string_t tx_lfc_mode;
6856 cmdline_fixed_string_t mac_ctrl_frame_fwd;
6857 cmdline_fixed_string_t mac_ctrl_frame_fwd_mode;
6858 cmdline_fixed_string_t autoneg_str;
6859 cmdline_fixed_string_t autoneg;
6860 cmdline_fixed_string_t hw_str;
6861 uint32_t high_water;
6862 cmdline_fixed_string_t lw_str;
6864 cmdline_fixed_string_t pt_str;
6865 uint16_t pause_time;
6866 cmdline_fixed_string_t xon_str;
6871 cmdline_parse_token_string_t cmd_lfc_set_set =
6872 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6874 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl =
6875 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6876 flow_ctrl, "flow_ctrl");
6877 cmdline_parse_token_string_t cmd_lfc_set_rx =
6878 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6880 cmdline_parse_token_string_t cmd_lfc_set_rx_mode =
6881 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6882 rx_lfc_mode, "on#off");
6883 cmdline_parse_token_string_t cmd_lfc_set_tx =
6884 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6886 cmdline_parse_token_string_t cmd_lfc_set_tx_mode =
6887 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6888 tx_lfc_mode, "on#off");
6889 cmdline_parse_token_string_t cmd_lfc_set_high_water_str =
6890 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6891 hw_str, "high_water");
6892 cmdline_parse_token_num_t cmd_lfc_set_high_water =
6893 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6894 high_water, RTE_UINT32);
6895 cmdline_parse_token_string_t cmd_lfc_set_low_water_str =
6896 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6897 lw_str, "low_water");
6898 cmdline_parse_token_num_t cmd_lfc_set_low_water =
6899 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6900 low_water, RTE_UINT32);
6901 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str =
6902 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6903 pt_str, "pause_time");
6904 cmdline_parse_token_num_t cmd_lfc_set_pause_time =
6905 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6906 pause_time, RTE_UINT16);
6907 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str =
6908 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6909 xon_str, "send_xon");
6910 cmdline_parse_token_num_t cmd_lfc_set_send_xon =
6911 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6912 send_xon, RTE_UINT16);
6913 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode =
6914 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6915 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd");
6916 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd =
6917 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6918 mac_ctrl_frame_fwd_mode, "on#off");
6919 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str =
6920 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6921 autoneg_str, "autoneg");
6922 cmdline_parse_token_string_t cmd_lfc_set_autoneg =
6923 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6925 cmdline_parse_token_num_t cmd_lfc_set_portid =
6926 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6927 port_id, RTE_UINT16);
6929 /* forward declaration */
6931 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl,
6934 cmdline_parse_inst_t cmd_link_flow_control_set = {
6935 .f = cmd_link_flow_ctrl_set_parsed,
6937 .help_str = "set flow_ctrl rx on|off tx on|off <high_water> "
6938 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off "
6939 "autoneg on|off <port_id>: Configure the Ethernet flow control",
6941 (void *)&cmd_lfc_set_set,
6942 (void *)&cmd_lfc_set_flow_ctrl,
6943 (void *)&cmd_lfc_set_rx,
6944 (void *)&cmd_lfc_set_rx_mode,
6945 (void *)&cmd_lfc_set_tx,
6946 (void *)&cmd_lfc_set_tx_mode,
6947 (void *)&cmd_lfc_set_high_water,
6948 (void *)&cmd_lfc_set_low_water,
6949 (void *)&cmd_lfc_set_pause_time,
6950 (void *)&cmd_lfc_set_send_xon,
6951 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
6952 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
6953 (void *)&cmd_lfc_set_autoneg_str,
6954 (void *)&cmd_lfc_set_autoneg,
6955 (void *)&cmd_lfc_set_portid,
6960 cmdline_parse_inst_t cmd_link_flow_control_set_rx = {
6961 .f = cmd_link_flow_ctrl_set_parsed,
6962 .data = (void *)&cmd_link_flow_control_set_rx,
6963 .help_str = "set flow_ctrl rx on|off <port_id>: "
6964 "Change rx flow control parameter",
6966 (void *)&cmd_lfc_set_set,
6967 (void *)&cmd_lfc_set_flow_ctrl,
6968 (void *)&cmd_lfc_set_rx,
6969 (void *)&cmd_lfc_set_rx_mode,
6970 (void *)&cmd_lfc_set_portid,
6975 cmdline_parse_inst_t cmd_link_flow_control_set_tx = {
6976 .f = cmd_link_flow_ctrl_set_parsed,
6977 .data = (void *)&cmd_link_flow_control_set_tx,
6978 .help_str = "set flow_ctrl tx on|off <port_id>: "
6979 "Change tx flow control parameter",
6981 (void *)&cmd_lfc_set_set,
6982 (void *)&cmd_lfc_set_flow_ctrl,
6983 (void *)&cmd_lfc_set_tx,
6984 (void *)&cmd_lfc_set_tx_mode,
6985 (void *)&cmd_lfc_set_portid,
6990 cmdline_parse_inst_t cmd_link_flow_control_set_hw = {
6991 .f = cmd_link_flow_ctrl_set_parsed,
6992 .data = (void *)&cmd_link_flow_control_set_hw,
6993 .help_str = "set flow_ctrl high_water <value> <port_id>: "
6994 "Change high water flow control parameter",
6996 (void *)&cmd_lfc_set_set,
6997 (void *)&cmd_lfc_set_flow_ctrl,
6998 (void *)&cmd_lfc_set_high_water_str,
6999 (void *)&cmd_lfc_set_high_water,
7000 (void *)&cmd_lfc_set_portid,
7005 cmdline_parse_inst_t cmd_link_flow_control_set_lw = {
7006 .f = cmd_link_flow_ctrl_set_parsed,
7007 .data = (void *)&cmd_link_flow_control_set_lw,
7008 .help_str = "set flow_ctrl low_water <value> <port_id>: "
7009 "Change low water flow control parameter",
7011 (void *)&cmd_lfc_set_set,
7012 (void *)&cmd_lfc_set_flow_ctrl,
7013 (void *)&cmd_lfc_set_low_water_str,
7014 (void *)&cmd_lfc_set_low_water,
7015 (void *)&cmd_lfc_set_portid,
7020 cmdline_parse_inst_t cmd_link_flow_control_set_pt = {
7021 .f = cmd_link_flow_ctrl_set_parsed,
7022 .data = (void *)&cmd_link_flow_control_set_pt,
7023 .help_str = "set flow_ctrl pause_time <value> <port_id>: "
7024 "Change pause time flow control parameter",
7026 (void *)&cmd_lfc_set_set,
7027 (void *)&cmd_lfc_set_flow_ctrl,
7028 (void *)&cmd_lfc_set_pause_time_str,
7029 (void *)&cmd_lfc_set_pause_time,
7030 (void *)&cmd_lfc_set_portid,
7035 cmdline_parse_inst_t cmd_link_flow_control_set_xon = {
7036 .f = cmd_link_flow_ctrl_set_parsed,
7037 .data = (void *)&cmd_link_flow_control_set_xon,
7038 .help_str = "set flow_ctrl send_xon <value> <port_id>: "
7039 "Change send_xon flow control parameter",
7041 (void *)&cmd_lfc_set_set,
7042 (void *)&cmd_lfc_set_flow_ctrl,
7043 (void *)&cmd_lfc_set_send_xon_str,
7044 (void *)&cmd_lfc_set_send_xon,
7045 (void *)&cmd_lfc_set_portid,
7050 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = {
7051 .f = cmd_link_flow_ctrl_set_parsed,
7052 .data = (void *)&cmd_link_flow_control_set_macfwd,
7053 .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: "
7054 "Change mac ctrl fwd flow control parameter",
7056 (void *)&cmd_lfc_set_set,
7057 (void *)&cmd_lfc_set_flow_ctrl,
7058 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
7059 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
7060 (void *)&cmd_lfc_set_portid,
7065 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = {
7066 .f = cmd_link_flow_ctrl_set_parsed,
7067 .data = (void *)&cmd_link_flow_control_set_autoneg,
7068 .help_str = "set flow_ctrl autoneg on|off <port_id>: "
7069 "Change autoneg flow control parameter",
7071 (void *)&cmd_lfc_set_set,
7072 (void *)&cmd_lfc_set_flow_ctrl,
7073 (void *)&cmd_lfc_set_autoneg_str,
7074 (void *)&cmd_lfc_set_autoneg,
7075 (void *)&cmd_lfc_set_portid,
7081 cmd_link_flow_ctrl_set_parsed(void *parsed_result,
7082 __rte_unused struct cmdline *cl,
7085 struct cmd_link_flow_ctrl_set_result *res = parsed_result;
7086 cmdline_parse_inst_t *cmd = data;
7087 struct rte_eth_fc_conf fc_conf;
7093 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
7094 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
7095 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
7096 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
7098 static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = {
7099 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
7102 /* Partial command line, retrieve current configuration */
7104 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
7106 printf("cannot get current flow ctrl parameters, return"
7107 "code = %d\n", ret);
7111 if ((fc_conf.mode == RTE_FC_RX_PAUSE) ||
7112 (fc_conf.mode == RTE_FC_FULL))
7114 if ((fc_conf.mode == RTE_FC_TX_PAUSE) ||
7115 (fc_conf.mode == RTE_FC_FULL))
7119 if (!cmd || cmd == &cmd_link_flow_control_set_rx)
7120 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0;
7122 if (!cmd || cmd == &cmd_link_flow_control_set_tx)
7123 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0;
7125 fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en];
7127 if (!cmd || cmd == &cmd_link_flow_control_set_hw)
7128 fc_conf.high_water = res->high_water;
7130 if (!cmd || cmd == &cmd_link_flow_control_set_lw)
7131 fc_conf.low_water = res->low_water;
7133 if (!cmd || cmd == &cmd_link_flow_control_set_pt)
7134 fc_conf.pause_time = res->pause_time;
7136 if (!cmd || cmd == &cmd_link_flow_control_set_xon)
7137 fc_conf.send_xon = res->send_xon;
7139 if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) {
7140 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on"))
7141 fc_conf.mac_ctrl_frame_fwd = 1;
7143 fc_conf.mac_ctrl_frame_fwd = 0;
7146 if (!cmd || cmd == &cmd_link_flow_control_set_autoneg)
7147 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0;
7149 ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
7151 printf("bad flow contrl parameter, return code = %d \n", ret);
7154 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */
7155 struct cmd_priority_flow_ctrl_set_result {
7156 cmdline_fixed_string_t set;
7157 cmdline_fixed_string_t pfc_ctrl;
7158 cmdline_fixed_string_t rx;
7159 cmdline_fixed_string_t rx_pfc_mode;
7160 cmdline_fixed_string_t tx;
7161 cmdline_fixed_string_t tx_pfc_mode;
7162 uint32_t high_water;
7164 uint16_t pause_time;
7170 cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
7171 __rte_unused struct cmdline *cl,
7172 __rte_unused void *data)
7174 struct cmd_priority_flow_ctrl_set_result *res = parsed_result;
7175 struct rte_eth_pfc_conf pfc_conf;
7176 int rx_fc_enable, tx_fc_enable;
7180 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
7181 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
7182 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
7183 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
7185 static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = {
7186 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
7189 memset(&pfc_conf, 0, sizeof(struct rte_eth_pfc_conf));
7190 rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0;
7191 tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0;
7192 pfc_conf.fc.mode = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable];
7193 pfc_conf.fc.high_water = res->high_water;
7194 pfc_conf.fc.low_water = res->low_water;
7195 pfc_conf.fc.pause_time = res->pause_time;
7196 pfc_conf.priority = res->priority;
7198 ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
7200 printf("bad priority flow contrl parameter, return code = %d \n", ret);
7203 cmdline_parse_token_string_t cmd_pfc_set_set =
7204 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7206 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl =
7207 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7208 pfc_ctrl, "pfc_ctrl");
7209 cmdline_parse_token_string_t cmd_pfc_set_rx =
7210 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7212 cmdline_parse_token_string_t cmd_pfc_set_rx_mode =
7213 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7214 rx_pfc_mode, "on#off");
7215 cmdline_parse_token_string_t cmd_pfc_set_tx =
7216 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7218 cmdline_parse_token_string_t cmd_pfc_set_tx_mode =
7219 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7220 tx_pfc_mode, "on#off");
7221 cmdline_parse_token_num_t cmd_pfc_set_high_water =
7222 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7223 high_water, RTE_UINT32);
7224 cmdline_parse_token_num_t cmd_pfc_set_low_water =
7225 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7226 low_water, RTE_UINT32);
7227 cmdline_parse_token_num_t cmd_pfc_set_pause_time =
7228 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7229 pause_time, RTE_UINT16);
7230 cmdline_parse_token_num_t cmd_pfc_set_priority =
7231 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7232 priority, RTE_UINT8);
7233 cmdline_parse_token_num_t cmd_pfc_set_portid =
7234 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7235 port_id, RTE_UINT16);
7237 cmdline_parse_inst_t cmd_priority_flow_control_set = {
7238 .f = cmd_priority_flow_ctrl_set_parsed,
7240 .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> "
7241 "<pause_time> <priority> <port_id>: "
7242 "Configure the Ethernet priority flow control",
7244 (void *)&cmd_pfc_set_set,
7245 (void *)&cmd_pfc_set_flow_ctrl,
7246 (void *)&cmd_pfc_set_rx,
7247 (void *)&cmd_pfc_set_rx_mode,
7248 (void *)&cmd_pfc_set_tx,
7249 (void *)&cmd_pfc_set_tx_mode,
7250 (void *)&cmd_pfc_set_high_water,
7251 (void *)&cmd_pfc_set_low_water,
7252 (void *)&cmd_pfc_set_pause_time,
7253 (void *)&cmd_pfc_set_priority,
7254 (void *)&cmd_pfc_set_portid,
7259 /* *** RESET CONFIGURATION *** */
7260 struct cmd_reset_result {
7261 cmdline_fixed_string_t reset;
7262 cmdline_fixed_string_t def;
7265 static void cmd_reset_parsed(__rte_unused void *parsed_result,
7267 __rte_unused void *data)
7269 cmdline_printf(cl, "Reset to default forwarding configuration...\n");
7270 set_def_fwd_config();
7273 cmdline_parse_token_string_t cmd_reset_set =
7274 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set");
7275 cmdline_parse_token_string_t cmd_reset_def =
7276 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def,
7279 cmdline_parse_inst_t cmd_reset = {
7280 .f = cmd_reset_parsed,
7282 .help_str = "set default: Reset default forwarding configuration",
7284 (void *)&cmd_reset_set,
7285 (void *)&cmd_reset_def,
7290 /* *** START FORWARDING *** */
7291 struct cmd_start_result {
7292 cmdline_fixed_string_t start;
7295 cmdline_parse_token_string_t cmd_start_start =
7296 TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start");
7298 static void cmd_start_parsed(__rte_unused void *parsed_result,
7299 __rte_unused struct cmdline *cl,
7300 __rte_unused void *data)
7302 start_packet_forwarding(0);
7305 cmdline_parse_inst_t cmd_start = {
7306 .f = cmd_start_parsed,
7308 .help_str = "start: Start packet forwarding",
7310 (void *)&cmd_start_start,
7315 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */
7316 struct cmd_start_tx_first_result {
7317 cmdline_fixed_string_t start;
7318 cmdline_fixed_string_t tx_first;
7322 cmd_start_tx_first_parsed(__rte_unused void *parsed_result,
7323 __rte_unused struct cmdline *cl,
7324 __rte_unused void *data)
7326 start_packet_forwarding(1);
7329 cmdline_parse_token_string_t cmd_start_tx_first_start =
7330 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start,
7332 cmdline_parse_token_string_t cmd_start_tx_first_tx_first =
7333 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result,
7334 tx_first, "tx_first");
7336 cmdline_parse_inst_t cmd_start_tx_first = {
7337 .f = cmd_start_tx_first_parsed,
7339 .help_str = "start tx_first: Start packet forwarding, "
7340 "after sending 1 burst of packets",
7342 (void *)&cmd_start_tx_first_start,
7343 (void *)&cmd_start_tx_first_tx_first,
7348 /* *** START FORWARDING WITH N TX BURST FIRST *** */
7349 struct cmd_start_tx_first_n_result {
7350 cmdline_fixed_string_t start;
7351 cmdline_fixed_string_t tx_first;
7356 cmd_start_tx_first_n_parsed(void *parsed_result,
7357 __rte_unused struct cmdline *cl,
7358 __rte_unused void *data)
7360 struct cmd_start_tx_first_n_result *res = parsed_result;
7362 start_packet_forwarding(res->tx_num);
7365 cmdline_parse_token_string_t cmd_start_tx_first_n_start =
7366 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7368 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first =
7369 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7370 tx_first, "tx_first");
7371 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num =
7372 TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result,
7373 tx_num, RTE_UINT32);
7375 cmdline_parse_inst_t cmd_start_tx_first_n = {
7376 .f = cmd_start_tx_first_n_parsed,
7378 .help_str = "start tx_first <num>: "
7379 "packet forwarding, after sending <num> bursts of packets",
7381 (void *)&cmd_start_tx_first_n_start,
7382 (void *)&cmd_start_tx_first_n_tx_first,
7383 (void *)&cmd_start_tx_first_n_tx_num,
7388 /* *** SET LINK UP *** */
7389 struct cmd_set_link_up_result {
7390 cmdline_fixed_string_t set;
7391 cmdline_fixed_string_t link_up;
7392 cmdline_fixed_string_t port;
7396 cmdline_parse_token_string_t cmd_set_link_up_set =
7397 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set");
7398 cmdline_parse_token_string_t cmd_set_link_up_link_up =
7399 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up,
7401 cmdline_parse_token_string_t cmd_set_link_up_port =
7402 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port");
7403 cmdline_parse_token_num_t cmd_set_link_up_port_id =
7404 TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id,
7407 static void cmd_set_link_up_parsed(__rte_unused void *parsed_result,
7408 __rte_unused struct cmdline *cl,
7409 __rte_unused void *data)
7411 struct cmd_set_link_up_result *res = parsed_result;
7412 dev_set_link_up(res->port_id);
7415 cmdline_parse_inst_t cmd_set_link_up = {
7416 .f = cmd_set_link_up_parsed,
7418 .help_str = "set link-up port <port id>",
7420 (void *)&cmd_set_link_up_set,
7421 (void *)&cmd_set_link_up_link_up,
7422 (void *)&cmd_set_link_up_port,
7423 (void *)&cmd_set_link_up_port_id,
7428 /* *** SET LINK DOWN *** */
7429 struct cmd_set_link_down_result {
7430 cmdline_fixed_string_t set;
7431 cmdline_fixed_string_t link_down;
7432 cmdline_fixed_string_t port;
7436 cmdline_parse_token_string_t cmd_set_link_down_set =
7437 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set");
7438 cmdline_parse_token_string_t cmd_set_link_down_link_down =
7439 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down,
7441 cmdline_parse_token_string_t cmd_set_link_down_port =
7442 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port");
7443 cmdline_parse_token_num_t cmd_set_link_down_port_id =
7444 TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id,
7447 static void cmd_set_link_down_parsed(
7448 __rte_unused void *parsed_result,
7449 __rte_unused struct cmdline *cl,
7450 __rte_unused void *data)
7452 struct cmd_set_link_down_result *res = parsed_result;
7453 dev_set_link_down(res->port_id);
7456 cmdline_parse_inst_t cmd_set_link_down = {
7457 .f = cmd_set_link_down_parsed,
7459 .help_str = "set link-down port <port id>",
7461 (void *)&cmd_set_link_down_set,
7462 (void *)&cmd_set_link_down_link_down,
7463 (void *)&cmd_set_link_down_port,
7464 (void *)&cmd_set_link_down_port_id,
7469 /* *** SHOW CFG *** */
7470 struct cmd_showcfg_result {
7471 cmdline_fixed_string_t show;
7472 cmdline_fixed_string_t cfg;
7473 cmdline_fixed_string_t what;
7476 static void cmd_showcfg_parsed(void *parsed_result,
7477 __rte_unused struct cmdline *cl,
7478 __rte_unused void *data)
7480 struct cmd_showcfg_result *res = parsed_result;
7481 if (!strcmp(res->what, "rxtx"))
7482 rxtx_config_display();
7483 else if (!strcmp(res->what, "cores"))
7484 fwd_lcores_config_display();
7485 else if (!strcmp(res->what, "fwd"))
7486 pkt_fwd_config_display(&cur_fwd_config);
7487 else if (!strcmp(res->what, "rxoffs"))
7488 show_rx_pkt_offsets();
7489 else if (!strcmp(res->what, "rxpkts"))
7490 show_rx_pkt_segments();
7491 else if (!strcmp(res->what, "txpkts"))
7492 show_tx_pkt_segments();
7493 else if (!strcmp(res->what, "txtimes"))
7494 show_tx_pkt_times();
7497 cmdline_parse_token_string_t cmd_showcfg_show =
7498 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show");
7499 cmdline_parse_token_string_t cmd_showcfg_port =
7500 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config");
7501 cmdline_parse_token_string_t cmd_showcfg_what =
7502 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what,
7503 "rxtx#cores#fwd#rxoffs#rxpkts#txpkts#txtimes");
7505 cmdline_parse_inst_t cmd_showcfg = {
7506 .f = cmd_showcfg_parsed,
7508 .help_str = "show config rxtx|cores|fwd|rxoffs|rxpkts|txpkts|txtimes",
7510 (void *)&cmd_showcfg_show,
7511 (void *)&cmd_showcfg_port,
7512 (void *)&cmd_showcfg_what,
7517 /* *** SHOW ALL PORT INFO *** */
7518 struct cmd_showportall_result {
7519 cmdline_fixed_string_t show;
7520 cmdline_fixed_string_t port;
7521 cmdline_fixed_string_t what;
7522 cmdline_fixed_string_t all;
7525 static void cmd_showportall_parsed(void *parsed_result,
7526 __rte_unused struct cmdline *cl,
7527 __rte_unused void *data)
7531 struct cmd_showportall_result *res = parsed_result;
7532 if (!strcmp(res->show, "clear")) {
7533 if (!strcmp(res->what, "stats"))
7534 RTE_ETH_FOREACH_DEV(i)
7536 else if (!strcmp(res->what, "xstats"))
7537 RTE_ETH_FOREACH_DEV(i)
7538 nic_xstats_clear(i);
7539 } else if (!strcmp(res->what, "info"))
7540 RTE_ETH_FOREACH_DEV(i)
7541 port_infos_display(i);
7542 else if (!strcmp(res->what, "summary")) {
7543 port_summary_header_display();
7544 RTE_ETH_FOREACH_DEV(i)
7545 port_summary_display(i);
7547 else if (!strcmp(res->what, "stats"))
7548 RTE_ETH_FOREACH_DEV(i)
7549 nic_stats_display(i);
7550 else if (!strcmp(res->what, "xstats"))
7551 RTE_ETH_FOREACH_DEV(i)
7552 nic_xstats_display(i);
7553 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
7554 else if (!strcmp(res->what, "fdir"))
7555 RTE_ETH_FOREACH_DEV(i)
7558 else if (!strcmp(res->what, "dcb_tc"))
7559 RTE_ETH_FOREACH_DEV(i)
7560 port_dcb_info_display(i);
7561 else if (!strcmp(res->what, "cap"))
7562 RTE_ETH_FOREACH_DEV(i)
7563 port_offload_cap_display(i);
7566 cmdline_parse_token_string_t cmd_showportall_show =
7567 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show,
7569 cmdline_parse_token_string_t cmd_showportall_port =
7570 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port");
7571 cmdline_parse_token_string_t cmd_showportall_what =
7572 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what,
7573 "info#summary#stats#xstats#fdir#dcb_tc#cap");
7574 cmdline_parse_token_string_t cmd_showportall_all =
7575 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all");
7576 cmdline_parse_inst_t cmd_showportall = {
7577 .f = cmd_showportall_parsed,
7579 .help_str = "show|clear port "
7580 "info|summary|stats|xstats|fdir|dcb_tc|cap all",
7582 (void *)&cmd_showportall_show,
7583 (void *)&cmd_showportall_port,
7584 (void *)&cmd_showportall_what,
7585 (void *)&cmd_showportall_all,
7590 /* *** SHOW PORT INFO *** */
7591 struct cmd_showport_result {
7592 cmdline_fixed_string_t show;
7593 cmdline_fixed_string_t port;
7594 cmdline_fixed_string_t what;
7598 static void cmd_showport_parsed(void *parsed_result,
7599 __rte_unused struct cmdline *cl,
7600 __rte_unused void *data)
7602 struct cmd_showport_result *res = parsed_result;
7603 if (!strcmp(res->show, "clear")) {
7604 if (!strcmp(res->what, "stats"))
7605 nic_stats_clear(res->portnum);
7606 else if (!strcmp(res->what, "xstats"))
7607 nic_xstats_clear(res->portnum);
7608 } else if (!strcmp(res->what, "info"))
7609 port_infos_display(res->portnum);
7610 else if (!strcmp(res->what, "summary")) {
7611 port_summary_header_display();
7612 port_summary_display(res->portnum);
7614 else if (!strcmp(res->what, "stats"))
7615 nic_stats_display(res->portnum);
7616 else if (!strcmp(res->what, "xstats"))
7617 nic_xstats_display(res->portnum);
7618 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
7619 else if (!strcmp(res->what, "fdir"))
7620 fdir_get_infos(res->portnum);
7622 else if (!strcmp(res->what, "dcb_tc"))
7623 port_dcb_info_display(res->portnum);
7624 else if (!strcmp(res->what, "cap"))
7625 port_offload_cap_display(res->portnum);
7628 cmdline_parse_token_string_t cmd_showport_show =
7629 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show,
7631 cmdline_parse_token_string_t cmd_showport_port =
7632 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port");
7633 cmdline_parse_token_string_t cmd_showport_what =
7634 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what,
7635 "info#summary#stats#xstats#fdir#dcb_tc#cap");
7636 cmdline_parse_token_num_t cmd_showport_portnum =
7637 TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, RTE_UINT16);
7639 cmdline_parse_inst_t cmd_showport = {
7640 .f = cmd_showport_parsed,
7642 .help_str = "show|clear port "
7643 "info|summary|stats|xstats|fdir|dcb_tc|cap "
7646 (void *)&cmd_showport_show,
7647 (void *)&cmd_showport_port,
7648 (void *)&cmd_showport_what,
7649 (void *)&cmd_showport_portnum,
7654 /* *** SHOW DEVICE INFO *** */
7655 struct cmd_showdevice_result {
7656 cmdline_fixed_string_t show;
7657 cmdline_fixed_string_t device;
7658 cmdline_fixed_string_t what;
7659 cmdline_fixed_string_t identifier;
7662 static void cmd_showdevice_parsed(void *parsed_result,
7663 __rte_unused struct cmdline *cl,
7664 __rte_unused void *data)
7666 struct cmd_showdevice_result *res = parsed_result;
7667 if (!strcmp(res->what, "info")) {
7668 if (!strcmp(res->identifier, "all"))
7669 device_infos_display(NULL);
7671 device_infos_display(res->identifier);
7675 cmdline_parse_token_string_t cmd_showdevice_show =
7676 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, show,
7678 cmdline_parse_token_string_t cmd_showdevice_device =
7679 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, device, "device");
7680 cmdline_parse_token_string_t cmd_showdevice_what =
7681 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, what,
7683 cmdline_parse_token_string_t cmd_showdevice_identifier =
7684 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result,
7687 cmdline_parse_inst_t cmd_showdevice = {
7688 .f = cmd_showdevice_parsed,
7690 .help_str = "show device info <identifier>|all",
7692 (void *)&cmd_showdevice_show,
7693 (void *)&cmd_showdevice_device,
7694 (void *)&cmd_showdevice_what,
7695 (void *)&cmd_showdevice_identifier,
7700 /* *** SHOW MODULE EEPROM/EEPROM port INFO *** */
7701 struct cmd_showeeprom_result {
7702 cmdline_fixed_string_t show;
7703 cmdline_fixed_string_t port;
7705 cmdline_fixed_string_t type;
7708 static void cmd_showeeprom_parsed(void *parsed_result,
7709 __rte_unused struct cmdline *cl,
7710 __rte_unused void *data)
7712 struct cmd_showeeprom_result *res = parsed_result;
7714 if (!strcmp(res->type, "eeprom"))
7715 port_eeprom_display(res->portnum);
7716 else if (!strcmp(res->type, "module_eeprom"))
7717 port_module_eeprom_display(res->portnum);
7719 printf("Unknown argument\n");
7722 cmdline_parse_token_string_t cmd_showeeprom_show =
7723 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, show, "show");
7724 cmdline_parse_token_string_t cmd_showeeprom_port =
7725 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, port, "port");
7726 cmdline_parse_token_num_t cmd_showeeprom_portnum =
7727 TOKEN_NUM_INITIALIZER(struct cmd_showeeprom_result, portnum,
7729 cmdline_parse_token_string_t cmd_showeeprom_type =
7730 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, type, "module_eeprom#eeprom");
7732 cmdline_parse_inst_t cmd_showeeprom = {
7733 .f = cmd_showeeprom_parsed,
7735 .help_str = "show port <port_id> module_eeprom|eeprom",
7737 (void *)&cmd_showeeprom_show,
7738 (void *)&cmd_showeeprom_port,
7739 (void *)&cmd_showeeprom_portnum,
7740 (void *)&cmd_showeeprom_type,
7745 /* *** SHOW QUEUE INFO *** */
7746 struct cmd_showqueue_result {
7747 cmdline_fixed_string_t show;
7748 cmdline_fixed_string_t type;
7749 cmdline_fixed_string_t what;
7755 cmd_showqueue_parsed(void *parsed_result,
7756 __rte_unused struct cmdline *cl,
7757 __rte_unused void *data)
7759 struct cmd_showqueue_result *res = parsed_result;
7761 if (!strcmp(res->type, "rxq"))
7762 rx_queue_infos_display(res->portnum, res->queuenum);
7763 else if (!strcmp(res->type, "txq"))
7764 tx_queue_infos_display(res->portnum, res->queuenum);
7767 cmdline_parse_token_string_t cmd_showqueue_show =
7768 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show");
7769 cmdline_parse_token_string_t cmd_showqueue_type =
7770 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq");
7771 cmdline_parse_token_string_t cmd_showqueue_what =
7772 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info");
7773 cmdline_parse_token_num_t cmd_showqueue_portnum =
7774 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum,
7776 cmdline_parse_token_num_t cmd_showqueue_queuenum =
7777 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum,
7780 cmdline_parse_inst_t cmd_showqueue = {
7781 .f = cmd_showqueue_parsed,
7783 .help_str = "show rxq|txq info <port_id> <queue_id>",
7785 (void *)&cmd_showqueue_show,
7786 (void *)&cmd_showqueue_type,
7787 (void *)&cmd_showqueue_what,
7788 (void *)&cmd_showqueue_portnum,
7789 (void *)&cmd_showqueue_queuenum,
7794 /* show/clear fwd engine statistics */
7796 cmdline_fixed_string_t action;
7797 cmdline_fixed_string_t fwd;
7798 cmdline_fixed_string_t stats;
7799 cmdline_fixed_string_t all;
7802 cmdline_parse_token_string_t cmd_fwd_action =
7803 TOKEN_STRING_INITIALIZER(struct fwd_result, action, "show#clear");
7804 cmdline_parse_token_string_t cmd_fwd_fwd =
7805 TOKEN_STRING_INITIALIZER(struct fwd_result, fwd, "fwd");
7806 cmdline_parse_token_string_t cmd_fwd_stats =
7807 TOKEN_STRING_INITIALIZER(struct fwd_result, stats, "stats");
7808 cmdline_parse_token_string_t cmd_fwd_all =
7809 TOKEN_STRING_INITIALIZER(struct fwd_result, all, "all");
7812 cmd_showfwdall_parsed(void *parsed_result,
7813 __rte_unused struct cmdline *cl,
7814 __rte_unused void *data)
7816 struct fwd_result *res = parsed_result;
7818 if (!strcmp(res->action, "show"))
7819 fwd_stats_display();
7824 static cmdline_parse_inst_t cmd_showfwdall = {
7825 .f = cmd_showfwdall_parsed,
7827 .help_str = "show|clear fwd stats all",
7829 (void *)&cmd_fwd_action,
7830 (void *)&cmd_fwd_fwd,
7831 (void *)&cmd_fwd_stats,
7832 (void *)&cmd_fwd_all,
7837 /* *** READ PORT REGISTER *** */
7838 struct cmd_read_reg_result {
7839 cmdline_fixed_string_t read;
7840 cmdline_fixed_string_t reg;
7846 cmd_read_reg_parsed(void *parsed_result,
7847 __rte_unused struct cmdline *cl,
7848 __rte_unused void *data)
7850 struct cmd_read_reg_result *res = parsed_result;
7851 port_reg_display(res->port_id, res->reg_off);
7854 cmdline_parse_token_string_t cmd_read_reg_read =
7855 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read");
7856 cmdline_parse_token_string_t cmd_read_reg_reg =
7857 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg");
7858 cmdline_parse_token_num_t cmd_read_reg_port_id =
7859 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, RTE_UINT16);
7860 cmdline_parse_token_num_t cmd_read_reg_reg_off =
7861 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, RTE_UINT32);
7863 cmdline_parse_inst_t cmd_read_reg = {
7864 .f = cmd_read_reg_parsed,
7866 .help_str = "read reg <port_id> <reg_off>",
7868 (void *)&cmd_read_reg_read,
7869 (void *)&cmd_read_reg_reg,
7870 (void *)&cmd_read_reg_port_id,
7871 (void *)&cmd_read_reg_reg_off,
7876 /* *** READ PORT REGISTER BIT FIELD *** */
7877 struct cmd_read_reg_bit_field_result {
7878 cmdline_fixed_string_t read;
7879 cmdline_fixed_string_t regfield;
7887 cmd_read_reg_bit_field_parsed(void *parsed_result,
7888 __rte_unused struct cmdline *cl,
7889 __rte_unused void *data)
7891 struct cmd_read_reg_bit_field_result *res = parsed_result;
7892 port_reg_bit_field_display(res->port_id, res->reg_off,
7893 res->bit1_pos, res->bit2_pos);
7896 cmdline_parse_token_string_t cmd_read_reg_bit_field_read =
7897 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read,
7899 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield =
7900 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result,
7901 regfield, "regfield");
7902 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id =
7903 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id,
7905 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off =
7906 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off,
7908 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos =
7909 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos,
7911 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos =
7912 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos,
7915 cmdline_parse_inst_t cmd_read_reg_bit_field = {
7916 .f = cmd_read_reg_bit_field_parsed,
7918 .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: "
7919 "Read register bit field between bit_x and bit_y included",
7921 (void *)&cmd_read_reg_bit_field_read,
7922 (void *)&cmd_read_reg_bit_field_regfield,
7923 (void *)&cmd_read_reg_bit_field_port_id,
7924 (void *)&cmd_read_reg_bit_field_reg_off,
7925 (void *)&cmd_read_reg_bit_field_bit1_pos,
7926 (void *)&cmd_read_reg_bit_field_bit2_pos,
7931 /* *** READ PORT REGISTER BIT *** */
7932 struct cmd_read_reg_bit_result {
7933 cmdline_fixed_string_t read;
7934 cmdline_fixed_string_t regbit;
7941 cmd_read_reg_bit_parsed(void *parsed_result,
7942 __rte_unused struct cmdline *cl,
7943 __rte_unused void *data)
7945 struct cmd_read_reg_bit_result *res = parsed_result;
7946 port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos);
7949 cmdline_parse_token_string_t cmd_read_reg_bit_read =
7950 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read");
7951 cmdline_parse_token_string_t cmd_read_reg_bit_regbit =
7952 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result,
7954 cmdline_parse_token_num_t cmd_read_reg_bit_port_id =
7955 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id,
7957 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off =
7958 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off,
7960 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos =
7961 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos,
7964 cmdline_parse_inst_t cmd_read_reg_bit = {
7965 .f = cmd_read_reg_bit_parsed,
7967 .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31",
7969 (void *)&cmd_read_reg_bit_read,
7970 (void *)&cmd_read_reg_bit_regbit,
7971 (void *)&cmd_read_reg_bit_port_id,
7972 (void *)&cmd_read_reg_bit_reg_off,
7973 (void *)&cmd_read_reg_bit_bit_pos,
7978 /* *** WRITE PORT REGISTER *** */
7979 struct cmd_write_reg_result {
7980 cmdline_fixed_string_t write;
7981 cmdline_fixed_string_t reg;
7988 cmd_write_reg_parsed(void *parsed_result,
7989 __rte_unused struct cmdline *cl,
7990 __rte_unused void *data)
7992 struct cmd_write_reg_result *res = parsed_result;
7993 port_reg_set(res->port_id, res->reg_off, res->value);
7996 cmdline_parse_token_string_t cmd_write_reg_write =
7997 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write");
7998 cmdline_parse_token_string_t cmd_write_reg_reg =
7999 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg");
8000 cmdline_parse_token_num_t cmd_write_reg_port_id =
8001 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, RTE_UINT16);
8002 cmdline_parse_token_num_t cmd_write_reg_reg_off =
8003 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, RTE_UINT32);
8004 cmdline_parse_token_num_t cmd_write_reg_value =
8005 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, RTE_UINT32);
8007 cmdline_parse_inst_t cmd_write_reg = {
8008 .f = cmd_write_reg_parsed,
8010 .help_str = "write reg <port_id> <reg_off> <reg_value>",
8012 (void *)&cmd_write_reg_write,
8013 (void *)&cmd_write_reg_reg,
8014 (void *)&cmd_write_reg_port_id,
8015 (void *)&cmd_write_reg_reg_off,
8016 (void *)&cmd_write_reg_value,
8021 /* *** WRITE PORT REGISTER BIT FIELD *** */
8022 struct cmd_write_reg_bit_field_result {
8023 cmdline_fixed_string_t write;
8024 cmdline_fixed_string_t regfield;
8033 cmd_write_reg_bit_field_parsed(void *parsed_result,
8034 __rte_unused struct cmdline *cl,
8035 __rte_unused void *data)
8037 struct cmd_write_reg_bit_field_result *res = parsed_result;
8038 port_reg_bit_field_set(res->port_id, res->reg_off,
8039 res->bit1_pos, res->bit2_pos, res->value);
8042 cmdline_parse_token_string_t cmd_write_reg_bit_field_write =
8043 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write,
8045 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield =
8046 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result,
8047 regfield, "regfield");
8048 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id =
8049 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id,
8051 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off =
8052 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off,
8054 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos =
8055 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos,
8057 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos =
8058 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos,
8060 cmdline_parse_token_num_t cmd_write_reg_bit_field_value =
8061 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value,
8064 cmdline_parse_inst_t cmd_write_reg_bit_field = {
8065 .f = cmd_write_reg_bit_field_parsed,
8067 .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> "
8069 "Set register bit field between bit_x and bit_y included",
8071 (void *)&cmd_write_reg_bit_field_write,
8072 (void *)&cmd_write_reg_bit_field_regfield,
8073 (void *)&cmd_write_reg_bit_field_port_id,
8074 (void *)&cmd_write_reg_bit_field_reg_off,
8075 (void *)&cmd_write_reg_bit_field_bit1_pos,
8076 (void *)&cmd_write_reg_bit_field_bit2_pos,
8077 (void *)&cmd_write_reg_bit_field_value,
8082 /* *** WRITE PORT REGISTER BIT *** */
8083 struct cmd_write_reg_bit_result {
8084 cmdline_fixed_string_t write;
8085 cmdline_fixed_string_t regbit;
8093 cmd_write_reg_bit_parsed(void *parsed_result,
8094 __rte_unused struct cmdline *cl,
8095 __rte_unused void *data)
8097 struct cmd_write_reg_bit_result *res = parsed_result;
8098 port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value);
8101 cmdline_parse_token_string_t cmd_write_reg_bit_write =
8102 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write,
8104 cmdline_parse_token_string_t cmd_write_reg_bit_regbit =
8105 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result,
8107 cmdline_parse_token_num_t cmd_write_reg_bit_port_id =
8108 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id,
8110 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off =
8111 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off,
8113 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos =
8114 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos,
8116 cmdline_parse_token_num_t cmd_write_reg_bit_value =
8117 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value,
8120 cmdline_parse_inst_t cmd_write_reg_bit = {
8121 .f = cmd_write_reg_bit_parsed,
8123 .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: "
8126 (void *)&cmd_write_reg_bit_write,
8127 (void *)&cmd_write_reg_bit_regbit,
8128 (void *)&cmd_write_reg_bit_port_id,
8129 (void *)&cmd_write_reg_bit_reg_off,
8130 (void *)&cmd_write_reg_bit_bit_pos,
8131 (void *)&cmd_write_reg_bit_value,
8136 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */
8137 struct cmd_read_rxd_txd_result {
8138 cmdline_fixed_string_t read;
8139 cmdline_fixed_string_t rxd_txd;
8146 cmd_read_rxd_txd_parsed(void *parsed_result,
8147 __rte_unused struct cmdline *cl,
8148 __rte_unused void *data)
8150 struct cmd_read_rxd_txd_result *res = parsed_result;
8152 if (!strcmp(res->rxd_txd, "rxd"))
8153 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
8154 else if (!strcmp(res->rxd_txd, "txd"))
8155 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
8158 cmdline_parse_token_string_t cmd_read_rxd_txd_read =
8159 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read");
8160 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd =
8161 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd,
8163 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id =
8164 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id,
8166 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id =
8167 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id,
8169 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id =
8170 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id,
8173 cmdline_parse_inst_t cmd_read_rxd_txd = {
8174 .f = cmd_read_rxd_txd_parsed,
8176 .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>",
8178 (void *)&cmd_read_rxd_txd_read,
8179 (void *)&cmd_read_rxd_txd_rxd_txd,
8180 (void *)&cmd_read_rxd_txd_port_id,
8181 (void *)&cmd_read_rxd_txd_queue_id,
8182 (void *)&cmd_read_rxd_txd_desc_id,
8188 struct cmd_quit_result {
8189 cmdline_fixed_string_t quit;
8192 static void cmd_quit_parsed(__rte_unused void *parsed_result,
8194 __rte_unused void *data)
8199 cmdline_parse_token_string_t cmd_quit_quit =
8200 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit");
8202 cmdline_parse_inst_t cmd_quit = {
8203 .f = cmd_quit_parsed,
8205 .help_str = "quit: Exit application",
8207 (void *)&cmd_quit_quit,
8212 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */
8213 struct cmd_mac_addr_result {
8214 cmdline_fixed_string_t mac_addr_cmd;
8215 cmdline_fixed_string_t what;
8217 struct rte_ether_addr address;
8220 static void cmd_mac_addr_parsed(void *parsed_result,
8221 __rte_unused struct cmdline *cl,
8222 __rte_unused void *data)
8224 struct cmd_mac_addr_result *res = parsed_result;
8227 if (strcmp(res->what, "add") == 0)
8228 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0);
8229 else if (strcmp(res->what, "set") == 0)
8230 ret = rte_eth_dev_default_mac_addr_set(res->port_num,
8233 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address);
8235 /* check the return value and print it if is < 0 */
8237 printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
8241 cmdline_parse_token_string_t cmd_mac_addr_cmd =
8242 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd,
8244 cmdline_parse_token_string_t cmd_mac_addr_what =
8245 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what,
8247 cmdline_parse_token_num_t cmd_mac_addr_portnum =
8248 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num,
8250 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr =
8251 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
8253 cmdline_parse_inst_t cmd_mac_addr = {
8254 .f = cmd_mac_addr_parsed,
8256 .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: "
8257 "Add/Remove/Set MAC address on port_id",
8259 (void *)&cmd_mac_addr_cmd,
8260 (void *)&cmd_mac_addr_what,
8261 (void *)&cmd_mac_addr_portnum,
8262 (void *)&cmd_mac_addr_addr,
8267 /* *** SET THE PEER ADDRESS FOR CERTAIN PORT *** */
8268 struct cmd_eth_peer_result {
8269 cmdline_fixed_string_t set;
8270 cmdline_fixed_string_t eth_peer;
8272 cmdline_fixed_string_t peer_addr;
8275 static void cmd_set_eth_peer_parsed(void *parsed_result,
8276 __rte_unused struct cmdline *cl,
8277 __rte_unused void *data)
8279 struct cmd_eth_peer_result *res = parsed_result;
8281 if (test_done == 0) {
8282 printf("Please stop forwarding first\n");
8285 if (!strcmp(res->eth_peer, "eth-peer")) {
8286 set_fwd_eth_peer(res->port_id, res->peer_addr);
8290 cmdline_parse_token_string_t cmd_eth_peer_set =
8291 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, set, "set");
8292 cmdline_parse_token_string_t cmd_eth_peer =
8293 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, eth_peer, "eth-peer");
8294 cmdline_parse_token_num_t cmd_eth_peer_port_id =
8295 TOKEN_NUM_INITIALIZER(struct cmd_eth_peer_result, port_id,
8297 cmdline_parse_token_string_t cmd_eth_peer_addr =
8298 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, peer_addr, NULL);
8300 cmdline_parse_inst_t cmd_set_fwd_eth_peer = {
8301 .f = cmd_set_eth_peer_parsed,
8303 .help_str = "set eth-peer <port_id> <peer_mac>",
8305 (void *)&cmd_eth_peer_set,
8306 (void *)&cmd_eth_peer,
8307 (void *)&cmd_eth_peer_port_id,
8308 (void *)&cmd_eth_peer_addr,
8313 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */
8314 struct cmd_set_qmap_result {
8315 cmdline_fixed_string_t set;
8316 cmdline_fixed_string_t qmap;
8317 cmdline_fixed_string_t what;
8324 cmd_set_qmap_parsed(void *parsed_result,
8325 __rte_unused struct cmdline *cl,
8326 __rte_unused void *data)
8328 struct cmd_set_qmap_result *res = parsed_result;
8329 int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1;
8331 set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value);
8334 cmdline_parse_token_string_t cmd_setqmap_set =
8335 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8337 cmdline_parse_token_string_t cmd_setqmap_qmap =
8338 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8340 cmdline_parse_token_string_t cmd_setqmap_what =
8341 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8343 cmdline_parse_token_num_t cmd_setqmap_portid =
8344 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8345 port_id, RTE_UINT16);
8346 cmdline_parse_token_num_t cmd_setqmap_queueid =
8347 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8348 queue_id, RTE_UINT16);
8349 cmdline_parse_token_num_t cmd_setqmap_mapvalue =
8350 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8351 map_value, RTE_UINT8);
8353 cmdline_parse_inst_t cmd_set_qmap = {
8354 .f = cmd_set_qmap_parsed,
8356 .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: "
8357 "Set statistics mapping value on tx|rx queue_id of port_id",
8359 (void *)&cmd_setqmap_set,
8360 (void *)&cmd_setqmap_qmap,
8361 (void *)&cmd_setqmap_what,
8362 (void *)&cmd_setqmap_portid,
8363 (void *)&cmd_setqmap_queueid,
8364 (void *)&cmd_setqmap_mapvalue,
8369 /* *** SET OPTION TO HIDE ZERO VALUES FOR XSTATS DISPLAY *** */
8370 struct cmd_set_xstats_hide_zero_result {
8371 cmdline_fixed_string_t keyword;
8372 cmdline_fixed_string_t name;
8373 cmdline_fixed_string_t on_off;
8377 cmd_set_xstats_hide_zero_parsed(void *parsed_result,
8378 __rte_unused struct cmdline *cl,
8379 __rte_unused void *data)
8381 struct cmd_set_xstats_hide_zero_result *res;
8382 uint16_t on_off = 0;
8384 res = parsed_result;
8385 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8386 set_xstats_hide_zero(on_off);
8389 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_keyword =
8390 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8392 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_name =
8393 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8394 name, "xstats-hide-zero");
8395 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_on_off =
8396 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8399 cmdline_parse_inst_t cmd_set_xstats_hide_zero = {
8400 .f = cmd_set_xstats_hide_zero_parsed,
8402 .help_str = "set xstats-hide-zero on|off",
8404 (void *)&cmd_set_xstats_hide_zero_keyword,
8405 (void *)&cmd_set_xstats_hide_zero_name,
8406 (void *)&cmd_set_xstats_hide_zero_on_off,
8411 /* *** SET OPTION TO ENABLE MEASUREMENT OF CPU CYCLES *** */
8412 struct cmd_set_record_core_cycles_result {
8413 cmdline_fixed_string_t keyword;
8414 cmdline_fixed_string_t name;
8415 cmdline_fixed_string_t on_off;
8419 cmd_set_record_core_cycles_parsed(void *parsed_result,
8420 __rte_unused struct cmdline *cl,
8421 __rte_unused void *data)
8423 struct cmd_set_record_core_cycles_result *res;
8424 uint16_t on_off = 0;
8426 res = parsed_result;
8427 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8428 set_record_core_cycles(on_off);
8431 cmdline_parse_token_string_t cmd_set_record_core_cycles_keyword =
8432 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8434 cmdline_parse_token_string_t cmd_set_record_core_cycles_name =
8435 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8436 name, "record-core-cycles");
8437 cmdline_parse_token_string_t cmd_set_record_core_cycles_on_off =
8438 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8441 cmdline_parse_inst_t cmd_set_record_core_cycles = {
8442 .f = cmd_set_record_core_cycles_parsed,
8444 .help_str = "set record-core-cycles on|off",
8446 (void *)&cmd_set_record_core_cycles_keyword,
8447 (void *)&cmd_set_record_core_cycles_name,
8448 (void *)&cmd_set_record_core_cycles_on_off,
8453 /* *** SET OPTION TO ENABLE DISPLAY OF RX AND TX BURSTS *** */
8454 struct cmd_set_record_burst_stats_result {
8455 cmdline_fixed_string_t keyword;
8456 cmdline_fixed_string_t name;
8457 cmdline_fixed_string_t on_off;
8461 cmd_set_record_burst_stats_parsed(void *parsed_result,
8462 __rte_unused struct cmdline *cl,
8463 __rte_unused void *data)
8465 struct cmd_set_record_burst_stats_result *res;
8466 uint16_t on_off = 0;
8468 res = parsed_result;
8469 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8470 set_record_burst_stats(on_off);
8473 cmdline_parse_token_string_t cmd_set_record_burst_stats_keyword =
8474 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8476 cmdline_parse_token_string_t cmd_set_record_burst_stats_name =
8477 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8478 name, "record-burst-stats");
8479 cmdline_parse_token_string_t cmd_set_record_burst_stats_on_off =
8480 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8483 cmdline_parse_inst_t cmd_set_record_burst_stats = {
8484 .f = cmd_set_record_burst_stats_parsed,
8486 .help_str = "set record-burst-stats on|off",
8488 (void *)&cmd_set_record_burst_stats_keyword,
8489 (void *)&cmd_set_record_burst_stats_name,
8490 (void *)&cmd_set_record_burst_stats_on_off,
8495 /* *** CONFIGURE UNICAST HASH TABLE *** */
8496 struct cmd_set_uc_hash_table {
8497 cmdline_fixed_string_t set;
8498 cmdline_fixed_string_t port;
8500 cmdline_fixed_string_t what;
8501 struct rte_ether_addr address;
8502 cmdline_fixed_string_t mode;
8506 cmd_set_uc_hash_parsed(void *parsed_result,
8507 __rte_unused struct cmdline *cl,
8508 __rte_unused void *data)
8511 struct cmd_set_uc_hash_table *res = parsed_result;
8513 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8515 if (strcmp(res->what, "uta") == 0)
8516 ret = rte_eth_dev_uc_hash_table_set(res->port_id,
8517 &res->address,(uint8_t)is_on);
8519 printf("bad unicast hash table parameter, return code = %d \n", ret);
8523 cmdline_parse_token_string_t cmd_set_uc_hash_set =
8524 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8526 cmdline_parse_token_string_t cmd_set_uc_hash_port =
8527 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8529 cmdline_parse_token_num_t cmd_set_uc_hash_portid =
8530 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table,
8531 port_id, RTE_UINT16);
8532 cmdline_parse_token_string_t cmd_set_uc_hash_what =
8533 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8535 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac =
8536 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table,
8538 cmdline_parse_token_string_t cmd_set_uc_hash_mode =
8539 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8542 cmdline_parse_inst_t cmd_set_uc_hash_filter = {
8543 .f = cmd_set_uc_hash_parsed,
8545 .help_str = "set port <port_id> uta <mac_addr> on|off)",
8547 (void *)&cmd_set_uc_hash_set,
8548 (void *)&cmd_set_uc_hash_port,
8549 (void *)&cmd_set_uc_hash_portid,
8550 (void *)&cmd_set_uc_hash_what,
8551 (void *)&cmd_set_uc_hash_mac,
8552 (void *)&cmd_set_uc_hash_mode,
8557 struct cmd_set_uc_all_hash_table {
8558 cmdline_fixed_string_t set;
8559 cmdline_fixed_string_t port;
8561 cmdline_fixed_string_t what;
8562 cmdline_fixed_string_t value;
8563 cmdline_fixed_string_t mode;
8567 cmd_set_uc_all_hash_parsed(void *parsed_result,
8568 __rte_unused struct cmdline *cl,
8569 __rte_unused void *data)
8572 struct cmd_set_uc_all_hash_table *res = parsed_result;
8574 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8576 if ((strcmp(res->what, "uta") == 0) &&
8577 (strcmp(res->value, "all") == 0))
8578 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
8580 printf("bad unicast hash table parameter,"
8581 "return code = %d \n", ret);
8584 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
8585 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8587 cmdline_parse_token_string_t cmd_set_uc_all_hash_port =
8588 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8590 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid =
8591 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table,
8592 port_id, RTE_UINT16);
8593 cmdline_parse_token_string_t cmd_set_uc_all_hash_what =
8594 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8596 cmdline_parse_token_string_t cmd_set_uc_all_hash_value =
8597 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8599 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode =
8600 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8603 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = {
8604 .f = cmd_set_uc_all_hash_parsed,
8606 .help_str = "set port <port_id> uta all on|off",
8608 (void *)&cmd_set_uc_all_hash_set,
8609 (void *)&cmd_set_uc_all_hash_port,
8610 (void *)&cmd_set_uc_all_hash_portid,
8611 (void *)&cmd_set_uc_all_hash_what,
8612 (void *)&cmd_set_uc_all_hash_value,
8613 (void *)&cmd_set_uc_all_hash_mode,
8618 /* *** CONFIGURE VF TRAFFIC CONTROL *** */
8619 struct cmd_set_vf_traffic {
8620 cmdline_fixed_string_t set;
8621 cmdline_fixed_string_t port;
8623 cmdline_fixed_string_t vf;
8625 cmdline_fixed_string_t what;
8626 cmdline_fixed_string_t mode;
8630 cmd_set_vf_traffic_parsed(void *parsed_result,
8631 __rte_unused struct cmdline *cl,
8632 __rte_unused void *data)
8634 struct cmd_set_vf_traffic *res = parsed_result;
8635 int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0;
8636 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8638 set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on);
8641 cmdline_parse_token_string_t cmd_setvf_traffic_set =
8642 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8644 cmdline_parse_token_string_t cmd_setvf_traffic_port =
8645 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8647 cmdline_parse_token_num_t cmd_setvf_traffic_portid =
8648 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8649 port_id, RTE_UINT16);
8650 cmdline_parse_token_string_t cmd_setvf_traffic_vf =
8651 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8653 cmdline_parse_token_num_t cmd_setvf_traffic_vfid =
8654 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8656 cmdline_parse_token_string_t cmd_setvf_traffic_what =
8657 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8659 cmdline_parse_token_string_t cmd_setvf_traffic_mode =
8660 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8663 cmdline_parse_inst_t cmd_set_vf_traffic = {
8664 .f = cmd_set_vf_traffic_parsed,
8666 .help_str = "set port <port_id> vf <vf_id> rx|tx on|off",
8668 (void *)&cmd_setvf_traffic_set,
8669 (void *)&cmd_setvf_traffic_port,
8670 (void *)&cmd_setvf_traffic_portid,
8671 (void *)&cmd_setvf_traffic_vf,
8672 (void *)&cmd_setvf_traffic_vfid,
8673 (void *)&cmd_setvf_traffic_what,
8674 (void *)&cmd_setvf_traffic_mode,
8679 /* *** CONFIGURE VF RECEIVE MODE *** */
8680 struct cmd_set_vf_rxmode {
8681 cmdline_fixed_string_t set;
8682 cmdline_fixed_string_t port;
8684 cmdline_fixed_string_t vf;
8686 cmdline_fixed_string_t what;
8687 cmdline_fixed_string_t mode;
8688 cmdline_fixed_string_t on;
8692 cmd_set_vf_rxmode_parsed(void *parsed_result,
8693 __rte_unused struct cmdline *cl,
8694 __rte_unused void *data)
8697 uint16_t vf_rxmode = 0;
8698 struct cmd_set_vf_rxmode *res = parsed_result;
8700 int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0;
8701 if (!strcmp(res->what,"rxmode")) {
8702 if (!strcmp(res->mode, "AUPE"))
8703 vf_rxmode |= ETH_VMDQ_ACCEPT_UNTAG;
8704 else if (!strcmp(res->mode, "ROPE"))
8705 vf_rxmode |= ETH_VMDQ_ACCEPT_HASH_UC;
8706 else if (!strcmp(res->mode, "BAM"))
8707 vf_rxmode |= ETH_VMDQ_ACCEPT_BROADCAST;
8708 else if (!strncmp(res->mode, "MPE",3))
8709 vf_rxmode |= ETH_VMDQ_ACCEPT_MULTICAST;
8712 RTE_SET_USED(is_on);
8714 #ifdef RTE_NET_IXGBE
8715 if (ret == -ENOTSUP)
8716 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id,
8717 vf_rxmode, (uint8_t)is_on);
8720 if (ret == -ENOTSUP)
8721 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id,
8722 vf_rxmode, (uint8_t)is_on);
8725 printf("bad VF receive mode parameter, return code = %d \n",
8729 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
8730 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8732 cmdline_parse_token_string_t cmd_set_vf_rxmode_port =
8733 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8735 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid =
8736 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8737 port_id, RTE_UINT16);
8738 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf =
8739 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8741 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid =
8742 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8744 cmdline_parse_token_string_t cmd_set_vf_rxmode_what =
8745 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8747 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode =
8748 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8749 mode, "AUPE#ROPE#BAM#MPE");
8750 cmdline_parse_token_string_t cmd_set_vf_rxmode_on =
8751 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8754 cmdline_parse_inst_t cmd_set_vf_rxmode = {
8755 .f = cmd_set_vf_rxmode_parsed,
8757 .help_str = "set port <port_id> vf <vf_id> rxmode "
8758 "AUPE|ROPE|BAM|MPE on|off",
8760 (void *)&cmd_set_vf_rxmode_set,
8761 (void *)&cmd_set_vf_rxmode_port,
8762 (void *)&cmd_set_vf_rxmode_portid,
8763 (void *)&cmd_set_vf_rxmode_vf,
8764 (void *)&cmd_set_vf_rxmode_vfid,
8765 (void *)&cmd_set_vf_rxmode_what,
8766 (void *)&cmd_set_vf_rxmode_mode,
8767 (void *)&cmd_set_vf_rxmode_on,
8772 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */
8773 struct cmd_vf_mac_addr_result {
8774 cmdline_fixed_string_t mac_addr_cmd;
8775 cmdline_fixed_string_t what;
8776 cmdline_fixed_string_t port;
8778 cmdline_fixed_string_t vf;
8780 struct rte_ether_addr address;
8783 static void cmd_vf_mac_addr_parsed(void *parsed_result,
8784 __rte_unused struct cmdline *cl,
8785 __rte_unused void *data)
8787 struct cmd_vf_mac_addr_result *res = parsed_result;
8790 if (strcmp(res->what, "add") != 0)
8794 if (ret == -ENOTSUP)
8795 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num,
8799 if (ret == -ENOTSUP)
8800 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address,
8805 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
8809 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd =
8810 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8811 mac_addr_cmd,"mac_addr");
8812 cmdline_parse_token_string_t cmd_vf_mac_addr_what =
8813 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8815 cmdline_parse_token_string_t cmd_vf_mac_addr_port =
8816 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8818 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum =
8819 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8820 port_num, RTE_UINT16);
8821 cmdline_parse_token_string_t cmd_vf_mac_addr_vf =
8822 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8824 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum =
8825 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8827 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr =
8828 TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result,
8831 cmdline_parse_inst_t cmd_vf_mac_addr_filter = {
8832 .f = cmd_vf_mac_addr_parsed,
8834 .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: "
8835 "Add MAC address filtering for a VF on port_id",
8837 (void *)&cmd_vf_mac_addr_cmd,
8838 (void *)&cmd_vf_mac_addr_what,
8839 (void *)&cmd_vf_mac_addr_port,
8840 (void *)&cmd_vf_mac_addr_portnum,
8841 (void *)&cmd_vf_mac_addr_vf,
8842 (void *)&cmd_vf_mac_addr_vfnum,
8843 (void *)&cmd_vf_mac_addr_addr,
8848 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
8849 struct cmd_vf_rx_vlan_filter {
8850 cmdline_fixed_string_t rx_vlan;
8851 cmdline_fixed_string_t what;
8853 cmdline_fixed_string_t port;
8855 cmdline_fixed_string_t vf;
8860 cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
8861 __rte_unused struct cmdline *cl,
8862 __rte_unused void *data)
8864 struct cmd_vf_rx_vlan_filter *res = parsed_result;
8867 __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0;
8869 #ifdef RTE_NET_IXGBE
8870 if (ret == -ENOTSUP)
8871 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id,
8872 res->vlan_id, res->vf_mask, is_add);
8875 if (ret == -ENOTSUP)
8876 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id,
8877 res->vlan_id, res->vf_mask, is_add);
8880 if (ret == -ENOTSUP)
8881 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id,
8882 res->vlan_id, res->vf_mask, is_add);
8889 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
8890 res->vlan_id, res->vf_mask);
8893 printf("invalid port_id %d\n", res->port_id);
8896 printf("function not implemented or supported\n");
8899 printf("programming error: (%s)\n", strerror(-ret));
8903 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan =
8904 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8905 rx_vlan, "rx_vlan");
8906 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what =
8907 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8909 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid =
8910 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8911 vlan_id, RTE_UINT16);
8912 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port =
8913 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8915 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid =
8916 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8917 port_id, RTE_UINT16);
8918 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf =
8919 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8921 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask =
8922 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8923 vf_mask, RTE_UINT64);
8925 cmdline_parse_inst_t cmd_vf_rxvlan_filter = {
8926 .f = cmd_vf_rx_vlan_filter_parsed,
8928 .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: "
8929 "(vf_mask = hexadecimal VF mask)",
8931 (void *)&cmd_vf_rx_vlan_filter_rx_vlan,
8932 (void *)&cmd_vf_rx_vlan_filter_what,
8933 (void *)&cmd_vf_rx_vlan_filter_vlanid,
8934 (void *)&cmd_vf_rx_vlan_filter_port,
8935 (void *)&cmd_vf_rx_vlan_filter_portid,
8936 (void *)&cmd_vf_rx_vlan_filter_vf,
8937 (void *)&cmd_vf_rx_vlan_filter_vf_mask,
8942 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */
8943 struct cmd_queue_rate_limit_result {
8944 cmdline_fixed_string_t set;
8945 cmdline_fixed_string_t port;
8947 cmdline_fixed_string_t queue;
8949 cmdline_fixed_string_t rate;
8953 static void cmd_queue_rate_limit_parsed(void *parsed_result,
8954 __rte_unused struct cmdline *cl,
8955 __rte_unused void *data)
8957 struct cmd_queue_rate_limit_result *res = parsed_result;
8960 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
8961 && (strcmp(res->queue, "queue") == 0)
8962 && (strcmp(res->rate, "rate") == 0))
8963 ret = set_queue_rate_limit(res->port_num, res->queue_num,
8966 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
8970 cmdline_parse_token_string_t cmd_queue_rate_limit_set =
8971 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8973 cmdline_parse_token_string_t cmd_queue_rate_limit_port =
8974 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8976 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum =
8977 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8978 port_num, RTE_UINT16);
8979 cmdline_parse_token_string_t cmd_queue_rate_limit_queue =
8980 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8982 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum =
8983 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8984 queue_num, RTE_UINT8);
8985 cmdline_parse_token_string_t cmd_queue_rate_limit_rate =
8986 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8988 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum =
8989 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8990 rate_num, RTE_UINT16);
8992 cmdline_parse_inst_t cmd_queue_rate_limit = {
8993 .f = cmd_queue_rate_limit_parsed,
8995 .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: "
8996 "Set rate limit for a queue on port_id",
8998 (void *)&cmd_queue_rate_limit_set,
8999 (void *)&cmd_queue_rate_limit_port,
9000 (void *)&cmd_queue_rate_limit_portnum,
9001 (void *)&cmd_queue_rate_limit_queue,
9002 (void *)&cmd_queue_rate_limit_queuenum,
9003 (void *)&cmd_queue_rate_limit_rate,
9004 (void *)&cmd_queue_rate_limit_ratenum,
9009 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */
9010 struct cmd_vf_rate_limit_result {
9011 cmdline_fixed_string_t set;
9012 cmdline_fixed_string_t port;
9014 cmdline_fixed_string_t vf;
9016 cmdline_fixed_string_t rate;
9018 cmdline_fixed_string_t q_msk;
9022 static void cmd_vf_rate_limit_parsed(void *parsed_result,
9023 __rte_unused struct cmdline *cl,
9024 __rte_unused void *data)
9026 struct cmd_vf_rate_limit_result *res = parsed_result;
9029 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
9030 && (strcmp(res->vf, "vf") == 0)
9031 && (strcmp(res->rate, "rate") == 0)
9032 && (strcmp(res->q_msk, "queue_mask") == 0))
9033 ret = set_vf_rate_limit(res->port_num, res->vf_num,
9034 res->rate_num, res->q_msk_val);
9036 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
9040 cmdline_parse_token_string_t cmd_vf_rate_limit_set =
9041 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9043 cmdline_parse_token_string_t cmd_vf_rate_limit_port =
9044 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9046 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum =
9047 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9048 port_num, RTE_UINT16);
9049 cmdline_parse_token_string_t cmd_vf_rate_limit_vf =
9050 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9052 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum =
9053 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9055 cmdline_parse_token_string_t cmd_vf_rate_limit_rate =
9056 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9058 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum =
9059 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9060 rate_num, RTE_UINT16);
9061 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk =
9062 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9063 q_msk, "queue_mask");
9064 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val =
9065 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9066 q_msk_val, RTE_UINT64);
9068 cmdline_parse_inst_t cmd_vf_rate_limit = {
9069 .f = cmd_vf_rate_limit_parsed,
9071 .help_str = "set port <port_id> vf <vf_id> rate <rate_value> "
9072 "queue_mask <queue_mask_value>: "
9073 "Set rate limit for queues of VF on port_id",
9075 (void *)&cmd_vf_rate_limit_set,
9076 (void *)&cmd_vf_rate_limit_port,
9077 (void *)&cmd_vf_rate_limit_portnum,
9078 (void *)&cmd_vf_rate_limit_vf,
9079 (void *)&cmd_vf_rate_limit_vfnum,
9080 (void *)&cmd_vf_rate_limit_rate,
9081 (void *)&cmd_vf_rate_limit_ratenum,
9082 (void *)&cmd_vf_rate_limit_q_msk,
9083 (void *)&cmd_vf_rate_limit_q_msk_val,
9088 /* *** CONFIGURE TUNNEL UDP PORT *** */
9089 struct cmd_tunnel_udp_config {
9090 cmdline_fixed_string_t cmd;
9091 cmdline_fixed_string_t what;
9097 cmd_tunnel_udp_config_parsed(void *parsed_result,
9098 __rte_unused struct cmdline *cl,
9099 __rte_unused void *data)
9101 struct cmd_tunnel_udp_config *res = parsed_result;
9102 struct rte_eth_udp_tunnel tunnel_udp;
9105 tunnel_udp.udp_port = res->udp_port;
9107 if (!strcmp(res->cmd, "rx_vxlan_port"))
9108 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9110 if (!strcmp(res->what, "add"))
9111 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9114 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9118 printf("udp tunneling add error: (%s)\n", strerror(-ret));
9121 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd =
9122 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9123 cmd, "rx_vxlan_port");
9124 cmdline_parse_token_string_t cmd_tunnel_udp_config_what =
9125 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9127 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port =
9128 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9129 udp_port, RTE_UINT16);
9130 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id =
9131 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9132 port_id, RTE_UINT16);
9134 cmdline_parse_inst_t cmd_tunnel_udp_config = {
9135 .f = cmd_tunnel_udp_config_parsed,
9137 .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: "
9138 "Add/Remove a tunneling UDP port filter",
9140 (void *)&cmd_tunnel_udp_config_cmd,
9141 (void *)&cmd_tunnel_udp_config_what,
9142 (void *)&cmd_tunnel_udp_config_udp_port,
9143 (void *)&cmd_tunnel_udp_config_port_id,
9148 struct cmd_config_tunnel_udp_port {
9149 cmdline_fixed_string_t port;
9150 cmdline_fixed_string_t config;
9152 cmdline_fixed_string_t udp_tunnel_port;
9153 cmdline_fixed_string_t action;
9154 cmdline_fixed_string_t tunnel_type;
9159 cmd_cfg_tunnel_udp_port_parsed(void *parsed_result,
9160 __rte_unused struct cmdline *cl,
9161 __rte_unused void *data)
9163 struct cmd_config_tunnel_udp_port *res = parsed_result;
9164 struct rte_eth_udp_tunnel tunnel_udp;
9167 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9170 tunnel_udp.udp_port = res->udp_port;
9172 if (!strcmp(res->tunnel_type, "vxlan")) {
9173 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9174 } else if (!strcmp(res->tunnel_type, "geneve")) {
9175 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_GENEVE;
9176 } else if (!strcmp(res->tunnel_type, "vxlan-gpe")) {
9177 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN_GPE;
9179 printf("Invalid tunnel type\n");
9183 if (!strcmp(res->action, "add"))
9184 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9187 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9191 printf("udp tunneling port add error: (%s)\n", strerror(-ret));
9194 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port =
9195 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, port,
9197 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_config =
9198 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, config,
9200 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_port_id =
9201 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, port_id,
9203 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_port =
9204 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port,
9207 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_action =
9208 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, action,
9210 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_type =
9211 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, tunnel_type,
9212 "vxlan#geneve#vxlan-gpe");
9213 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_value =
9214 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, udp_port,
9217 cmdline_parse_inst_t cmd_cfg_tunnel_udp_port = {
9218 .f = cmd_cfg_tunnel_udp_port_parsed,
9220 .help_str = "port config <port_id> udp_tunnel_port add|rm vxlan|geneve|vxlan-gpe <udp_port>",
9222 (void *)&cmd_config_tunnel_udp_port_port,
9223 (void *)&cmd_config_tunnel_udp_port_config,
9224 (void *)&cmd_config_tunnel_udp_port_port_id,
9225 (void *)&cmd_config_tunnel_udp_port_tunnel_port,
9226 (void *)&cmd_config_tunnel_udp_port_action,
9227 (void *)&cmd_config_tunnel_udp_port_tunnel_type,
9228 (void *)&cmd_config_tunnel_udp_port_value,
9233 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */
9234 struct cmd_set_mirror_mask_result {
9235 cmdline_fixed_string_t set;
9236 cmdline_fixed_string_t port;
9238 cmdline_fixed_string_t mirror;
9240 cmdline_fixed_string_t what;
9241 cmdline_fixed_string_t value;
9242 cmdline_fixed_string_t dstpool;
9244 cmdline_fixed_string_t on;
9247 cmdline_parse_token_string_t cmd_mirror_mask_set =
9248 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9250 cmdline_parse_token_string_t cmd_mirror_mask_port =
9251 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9253 cmdline_parse_token_num_t cmd_mirror_mask_portid =
9254 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9255 port_id, RTE_UINT16);
9256 cmdline_parse_token_string_t cmd_mirror_mask_mirror =
9257 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9258 mirror, "mirror-rule");
9259 cmdline_parse_token_num_t cmd_mirror_mask_ruleid =
9260 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9261 rule_id, RTE_UINT8);
9262 cmdline_parse_token_string_t cmd_mirror_mask_what =
9263 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9264 what, "pool-mirror-up#pool-mirror-down"
9266 cmdline_parse_token_string_t cmd_mirror_mask_value =
9267 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9269 cmdline_parse_token_string_t cmd_mirror_mask_dstpool =
9270 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9271 dstpool, "dst-pool");
9272 cmdline_parse_token_num_t cmd_mirror_mask_poolid =
9273 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9274 dstpool_id, RTE_UINT8);
9275 cmdline_parse_token_string_t cmd_mirror_mask_on =
9276 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9280 cmd_set_mirror_mask_parsed(void *parsed_result,
9281 __rte_unused struct cmdline *cl,
9282 __rte_unused void *data)
9285 struct cmd_set_mirror_mask_result *res = parsed_result;
9286 struct rte_eth_mirror_conf mr_conf;
9288 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9290 unsigned int vlan_list[ETH_MIRROR_MAX_VLANS];
9292 mr_conf.dst_pool = res->dstpool_id;
9294 if (!strcmp(res->what, "pool-mirror-up")) {
9295 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9296 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP;
9297 } else if (!strcmp(res->what, "pool-mirror-down")) {
9298 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9299 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN;
9300 } else if (!strcmp(res->what, "vlan-mirror")) {
9301 mr_conf.rule_type = ETH_MIRROR_VLAN;
9302 nb_item = parse_item_list(res->value, "vlan",
9303 ETH_MIRROR_MAX_VLANS, vlan_list, 1);
9307 for (i = 0; i < nb_item; i++) {
9308 if (vlan_list[i] > RTE_ETHER_MAX_VLAN_ID) {
9309 printf("Invalid vlan_id: must be < 4096\n");
9313 mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i];
9314 mr_conf.vlan.vlan_mask |= 1ULL << i;
9318 if (!strcmp(res->on, "on"))
9319 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9322 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9325 printf("mirror rule add error: (%s)\n", strerror(-ret));
9328 cmdline_parse_inst_t cmd_set_mirror_mask = {
9329 .f = cmd_set_mirror_mask_parsed,
9331 .help_str = "set port <port_id> mirror-rule <rule_id> "
9332 "pool-mirror-up|pool-mirror-down|vlan-mirror "
9333 "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off",
9335 (void *)&cmd_mirror_mask_set,
9336 (void *)&cmd_mirror_mask_port,
9337 (void *)&cmd_mirror_mask_portid,
9338 (void *)&cmd_mirror_mask_mirror,
9339 (void *)&cmd_mirror_mask_ruleid,
9340 (void *)&cmd_mirror_mask_what,
9341 (void *)&cmd_mirror_mask_value,
9342 (void *)&cmd_mirror_mask_dstpool,
9343 (void *)&cmd_mirror_mask_poolid,
9344 (void *)&cmd_mirror_mask_on,
9349 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */
9350 struct cmd_set_mirror_link_result {
9351 cmdline_fixed_string_t set;
9352 cmdline_fixed_string_t port;
9354 cmdline_fixed_string_t mirror;
9356 cmdline_fixed_string_t what;
9357 cmdline_fixed_string_t dstpool;
9359 cmdline_fixed_string_t on;
9362 cmdline_parse_token_string_t cmd_mirror_link_set =
9363 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9365 cmdline_parse_token_string_t cmd_mirror_link_port =
9366 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9368 cmdline_parse_token_num_t cmd_mirror_link_portid =
9369 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9370 port_id, RTE_UINT16);
9371 cmdline_parse_token_string_t cmd_mirror_link_mirror =
9372 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9373 mirror, "mirror-rule");
9374 cmdline_parse_token_num_t cmd_mirror_link_ruleid =
9375 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9376 rule_id, RTE_UINT8);
9377 cmdline_parse_token_string_t cmd_mirror_link_what =
9378 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9379 what, "uplink-mirror#downlink-mirror");
9380 cmdline_parse_token_string_t cmd_mirror_link_dstpool =
9381 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9382 dstpool, "dst-pool");
9383 cmdline_parse_token_num_t cmd_mirror_link_poolid =
9384 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9385 dstpool_id, RTE_UINT8);
9386 cmdline_parse_token_string_t cmd_mirror_link_on =
9387 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9391 cmd_set_mirror_link_parsed(void *parsed_result,
9392 __rte_unused struct cmdline *cl,
9393 __rte_unused void *data)
9396 struct cmd_set_mirror_link_result *res = parsed_result;
9397 struct rte_eth_mirror_conf mr_conf;
9399 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9400 if (!strcmp(res->what, "uplink-mirror"))
9401 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT;
9403 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT;
9405 mr_conf.dst_pool = res->dstpool_id;
9407 if (!strcmp(res->on, "on"))
9408 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9411 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9414 /* check the return value and print it if is < 0 */
9416 printf("mirror rule add error: (%s)\n", strerror(-ret));
9420 cmdline_parse_inst_t cmd_set_mirror_link = {
9421 .f = cmd_set_mirror_link_parsed,
9423 .help_str = "set port <port_id> mirror-rule <rule_id> "
9424 "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off",
9426 (void *)&cmd_mirror_link_set,
9427 (void *)&cmd_mirror_link_port,
9428 (void *)&cmd_mirror_link_portid,
9429 (void *)&cmd_mirror_link_mirror,
9430 (void *)&cmd_mirror_link_ruleid,
9431 (void *)&cmd_mirror_link_what,
9432 (void *)&cmd_mirror_link_dstpool,
9433 (void *)&cmd_mirror_link_poolid,
9434 (void *)&cmd_mirror_link_on,
9439 /* *** RESET VM MIRROR RULE *** */
9440 struct cmd_rm_mirror_rule_result {
9441 cmdline_fixed_string_t reset;
9442 cmdline_fixed_string_t port;
9444 cmdline_fixed_string_t mirror;
9448 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset =
9449 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9451 cmdline_parse_token_string_t cmd_rm_mirror_rule_port =
9452 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9454 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid =
9455 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9456 port_id, RTE_UINT16);
9457 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror =
9458 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9459 mirror, "mirror-rule");
9460 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid =
9461 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9462 rule_id, RTE_UINT8);
9465 cmd_reset_mirror_rule_parsed(void *parsed_result,
9466 __rte_unused struct cmdline *cl,
9467 __rte_unused void *data)
9470 struct cmd_set_mirror_link_result *res = parsed_result;
9472 ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
9474 printf("mirror rule remove error: (%s)\n", strerror(-ret));
9477 cmdline_parse_inst_t cmd_reset_mirror_rule = {
9478 .f = cmd_reset_mirror_rule_parsed,
9480 .help_str = "reset port <port_id> mirror-rule <rule_id>",
9482 (void *)&cmd_rm_mirror_rule_reset,
9483 (void *)&cmd_rm_mirror_rule_port,
9484 (void *)&cmd_rm_mirror_rule_portid,
9485 (void *)&cmd_rm_mirror_rule_mirror,
9486 (void *)&cmd_rm_mirror_rule_ruleid,
9491 /* ******************************************************************************** */
9493 struct cmd_dump_result {
9494 cmdline_fixed_string_t dump;
9498 dump_struct_sizes(void)
9500 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
9501 DUMP_SIZE(struct rte_mbuf);
9502 DUMP_SIZE(struct rte_mempool);
9503 DUMP_SIZE(struct rte_ring);
9508 /* Dump the socket memory statistics on console */
9510 dump_socket_mem(FILE *f)
9512 struct rte_malloc_socket_stats socket_stats;
9517 unsigned int n_alloc = 0;
9518 unsigned int n_free = 0;
9519 static size_t last_allocs;
9520 static size_t last_total;
9523 for (i = 0; i < RTE_MAX_NUMA_NODES; i++) {
9524 if (rte_malloc_get_socket_stats(i, &socket_stats) ||
9525 !socket_stats.heap_totalsz_bytes)
9527 total += socket_stats.heap_totalsz_bytes;
9528 alloc += socket_stats.heap_allocsz_bytes;
9529 free += socket_stats.heap_freesz_bytes;
9530 n_alloc += socket_stats.alloc_count;
9531 n_free += socket_stats.free_count;
9533 "Socket %u: size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n",
9535 (double)socket_stats.heap_totalsz_bytes / (1024 * 1024),
9536 (double)socket_stats.heap_allocsz_bytes / (1024 * 1024),
9537 (double)socket_stats.heap_allocsz_bytes * 100 /
9538 (double)socket_stats.heap_totalsz_bytes,
9539 (double)socket_stats.heap_freesz_bytes / (1024 * 1024),
9540 socket_stats.alloc_count,
9541 socket_stats.free_count);
9544 "Total : size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n",
9545 (double)total / (1024 * 1024), (double)alloc / (1024 * 1024),
9546 (double)alloc * 100 / (double)total,
9547 (double)free / (1024 * 1024),
9550 fprintf(stdout, "Memory total change: %.6lf(M), allocation change: %.6lf(M)\n",
9551 ((double)total - (double)last_total) / (1024 * 1024),
9552 (double)(alloc - (double)last_allocs) / 1024 / 1024);
9553 last_allocs = alloc;
9557 static void cmd_dump_parsed(void *parsed_result,
9558 __rte_unused struct cmdline *cl,
9559 __rte_unused void *data)
9561 struct cmd_dump_result *res = parsed_result;
9563 if (!strcmp(res->dump, "dump_physmem"))
9564 rte_dump_physmem_layout(stdout);
9565 else if (!strcmp(res->dump, "dump_socket_mem"))
9566 dump_socket_mem(stdout);
9567 else if (!strcmp(res->dump, "dump_memzone"))
9568 rte_memzone_dump(stdout);
9569 else if (!strcmp(res->dump, "dump_struct_sizes"))
9570 dump_struct_sizes();
9571 else if (!strcmp(res->dump, "dump_ring"))
9572 rte_ring_list_dump(stdout);
9573 else if (!strcmp(res->dump, "dump_mempool"))
9574 rte_mempool_list_dump(stdout);
9575 else if (!strcmp(res->dump, "dump_devargs"))
9576 rte_devargs_dump(stdout);
9577 else if (!strcmp(res->dump, "dump_log_types"))
9578 rte_log_dump(stdout);
9581 cmdline_parse_token_string_t cmd_dump_dump =
9582 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
9586 "dump_struct_sizes#"
9592 cmdline_parse_inst_t cmd_dump = {
9593 .f = cmd_dump_parsed, /* function to call */
9594 .data = NULL, /* 2nd arg of func */
9595 .help_str = "Dump status",
9596 .tokens = { /* token list, NULL terminated */
9597 (void *)&cmd_dump_dump,
9602 /* ******************************************************************************** */
9604 struct cmd_dump_one_result {
9605 cmdline_fixed_string_t dump;
9606 cmdline_fixed_string_t name;
9609 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
9610 __rte_unused void *data)
9612 struct cmd_dump_one_result *res = parsed_result;
9614 if (!strcmp(res->dump, "dump_ring")) {
9616 r = rte_ring_lookup(res->name);
9618 cmdline_printf(cl, "Cannot find ring\n");
9621 rte_ring_dump(stdout, r);
9622 } else if (!strcmp(res->dump, "dump_mempool")) {
9623 struct rte_mempool *mp;
9624 mp = rte_mempool_lookup(res->name);
9626 cmdline_printf(cl, "Cannot find mempool\n");
9629 rte_mempool_dump(stdout, mp);
9633 cmdline_parse_token_string_t cmd_dump_one_dump =
9634 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
9635 "dump_ring#dump_mempool");
9637 cmdline_parse_token_string_t cmd_dump_one_name =
9638 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
9640 cmdline_parse_inst_t cmd_dump_one = {
9641 .f = cmd_dump_one_parsed, /* function to call */
9642 .data = NULL, /* 2nd arg of func */
9643 .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool",
9644 .tokens = { /* token list, NULL terminated */
9645 (void *)&cmd_dump_one_dump,
9646 (void *)&cmd_dump_one_name,
9651 /* *** queue region set *** */
9652 struct cmd_queue_region_result {
9653 cmdline_fixed_string_t set;
9654 cmdline_fixed_string_t port;
9656 cmdline_fixed_string_t cmd;
9657 cmdline_fixed_string_t region;
9659 cmdline_fixed_string_t queue_start_index;
9661 cmdline_fixed_string_t queue_num;
9662 uint8_t queue_num_value;
9666 cmd_queue_region_parsed(void *parsed_result,
9667 __rte_unused struct cmdline *cl,
9668 __rte_unused void *data)
9670 struct cmd_queue_region_result *res = parsed_result;
9673 struct rte_pmd_i40e_queue_region_conf region_conf;
9674 enum rte_pmd_i40e_queue_region_op op_type;
9677 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9681 memset(®ion_conf, 0, sizeof(region_conf));
9682 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET;
9683 region_conf.region_id = res->region_id;
9684 region_conf.queue_num = res->queue_num_value;
9685 region_conf.queue_start_index = res->queue_id;
9687 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9688 op_type, ®ion_conf);
9695 printf("function not implemented or supported\n");
9698 printf("queue region config error: (%s)\n", strerror(-ret));
9702 cmdline_parse_token_string_t cmd_queue_region_set =
9703 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9705 cmdline_parse_token_string_t cmd_queue_region_port =
9706 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port");
9707 cmdline_parse_token_num_t cmd_queue_region_port_id =
9708 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9709 port_id, RTE_UINT16);
9710 cmdline_parse_token_string_t cmd_queue_region_cmd =
9711 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9712 cmd, "queue-region");
9713 cmdline_parse_token_string_t cmd_queue_region_id =
9714 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9715 region, "region_id");
9716 cmdline_parse_token_num_t cmd_queue_region_index =
9717 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9718 region_id, RTE_UINT8);
9719 cmdline_parse_token_string_t cmd_queue_region_queue_start_index =
9720 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9721 queue_start_index, "queue_start_index");
9722 cmdline_parse_token_num_t cmd_queue_region_queue_id =
9723 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9724 queue_id, RTE_UINT8);
9725 cmdline_parse_token_string_t cmd_queue_region_queue_num =
9726 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9727 queue_num, "queue_num");
9728 cmdline_parse_token_num_t cmd_queue_region_queue_num_value =
9729 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9730 queue_num_value, RTE_UINT8);
9732 cmdline_parse_inst_t cmd_queue_region = {
9733 .f = cmd_queue_region_parsed,
9735 .help_str = "set port <port_id> queue-region region_id <value> "
9736 "queue_start_index <value> queue_num <value>: Set a queue region",
9738 (void *)&cmd_queue_region_set,
9739 (void *)&cmd_queue_region_port,
9740 (void *)&cmd_queue_region_port_id,
9741 (void *)&cmd_queue_region_cmd,
9742 (void *)&cmd_queue_region_id,
9743 (void *)&cmd_queue_region_index,
9744 (void *)&cmd_queue_region_queue_start_index,
9745 (void *)&cmd_queue_region_queue_id,
9746 (void *)&cmd_queue_region_queue_num,
9747 (void *)&cmd_queue_region_queue_num_value,
9752 /* *** queue region and flowtype set *** */
9753 struct cmd_region_flowtype_result {
9754 cmdline_fixed_string_t set;
9755 cmdline_fixed_string_t port;
9757 cmdline_fixed_string_t cmd;
9758 cmdline_fixed_string_t region;
9760 cmdline_fixed_string_t flowtype;
9761 uint8_t flowtype_id;
9765 cmd_region_flowtype_parsed(void *parsed_result,
9766 __rte_unused struct cmdline *cl,
9767 __rte_unused void *data)
9769 struct cmd_region_flowtype_result *res = parsed_result;
9772 struct rte_pmd_i40e_queue_region_conf region_conf;
9773 enum rte_pmd_i40e_queue_region_op op_type;
9776 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9780 memset(®ion_conf, 0, sizeof(region_conf));
9782 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET;
9783 region_conf.region_id = res->region_id;
9784 region_conf.hw_flowtype = res->flowtype_id;
9786 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9787 op_type, ®ion_conf);
9794 printf("function not implemented or supported\n");
9797 printf("region flowtype config error: (%s)\n", strerror(-ret));
9801 cmdline_parse_token_string_t cmd_region_flowtype_set =
9802 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9804 cmdline_parse_token_string_t cmd_region_flowtype_port =
9805 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9807 cmdline_parse_token_num_t cmd_region_flowtype_port_index =
9808 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9809 port_id, RTE_UINT16);
9810 cmdline_parse_token_string_t cmd_region_flowtype_cmd =
9811 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9812 cmd, "queue-region");
9813 cmdline_parse_token_string_t cmd_region_flowtype_index =
9814 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9815 region, "region_id");
9816 cmdline_parse_token_num_t cmd_region_flowtype_id =
9817 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9818 region_id, RTE_UINT8);
9819 cmdline_parse_token_string_t cmd_region_flowtype_flow_index =
9820 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9821 flowtype, "flowtype");
9822 cmdline_parse_token_num_t cmd_region_flowtype_flow_id =
9823 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9824 flowtype_id, RTE_UINT8);
9825 cmdline_parse_inst_t cmd_region_flowtype = {
9826 .f = cmd_region_flowtype_parsed,
9828 .help_str = "set port <port_id> queue-region region_id <value> "
9829 "flowtype <value>: Set a flowtype region index",
9831 (void *)&cmd_region_flowtype_set,
9832 (void *)&cmd_region_flowtype_port,
9833 (void *)&cmd_region_flowtype_port_index,
9834 (void *)&cmd_region_flowtype_cmd,
9835 (void *)&cmd_region_flowtype_index,
9836 (void *)&cmd_region_flowtype_id,
9837 (void *)&cmd_region_flowtype_flow_index,
9838 (void *)&cmd_region_flowtype_flow_id,
9843 /* *** User Priority (UP) to queue region (region_id) set *** */
9844 struct cmd_user_priority_region_result {
9845 cmdline_fixed_string_t set;
9846 cmdline_fixed_string_t port;
9848 cmdline_fixed_string_t cmd;
9849 cmdline_fixed_string_t user_priority;
9850 uint8_t user_priority_id;
9851 cmdline_fixed_string_t region;
9856 cmd_user_priority_region_parsed(void *parsed_result,
9857 __rte_unused struct cmdline *cl,
9858 __rte_unused void *data)
9860 struct cmd_user_priority_region_result *res = parsed_result;
9863 struct rte_pmd_i40e_queue_region_conf region_conf;
9864 enum rte_pmd_i40e_queue_region_op op_type;
9867 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9871 memset(®ion_conf, 0, sizeof(region_conf));
9872 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET;
9873 region_conf.user_priority = res->user_priority_id;
9874 region_conf.region_id = res->region_id;
9876 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9877 op_type, ®ion_conf);
9884 printf("function not implemented or supported\n");
9887 printf("user_priority region config error: (%s)\n",
9892 cmdline_parse_token_string_t cmd_user_priority_region_set =
9893 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9895 cmdline_parse_token_string_t cmd_user_priority_region_port =
9896 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9898 cmdline_parse_token_num_t cmd_user_priority_region_port_index =
9899 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9900 port_id, RTE_UINT16);
9901 cmdline_parse_token_string_t cmd_user_priority_region_cmd =
9902 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9903 cmd, "queue-region");
9904 cmdline_parse_token_string_t cmd_user_priority_region_UP =
9905 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9906 user_priority, "UP");
9907 cmdline_parse_token_num_t cmd_user_priority_region_UP_id =
9908 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9909 user_priority_id, RTE_UINT8);
9910 cmdline_parse_token_string_t cmd_user_priority_region_region =
9911 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9912 region, "region_id");
9913 cmdline_parse_token_num_t cmd_user_priority_region_region_id =
9914 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9915 region_id, RTE_UINT8);
9917 cmdline_parse_inst_t cmd_user_priority_region = {
9918 .f = cmd_user_priority_region_parsed,
9920 .help_str = "set port <port_id> queue-region UP <value> "
9921 "region_id <value>: Set the mapping of User Priority (UP) "
9922 "to queue region (region_id) ",
9924 (void *)&cmd_user_priority_region_set,
9925 (void *)&cmd_user_priority_region_port,
9926 (void *)&cmd_user_priority_region_port_index,
9927 (void *)&cmd_user_priority_region_cmd,
9928 (void *)&cmd_user_priority_region_UP,
9929 (void *)&cmd_user_priority_region_UP_id,
9930 (void *)&cmd_user_priority_region_region,
9931 (void *)&cmd_user_priority_region_region_id,
9936 /* *** flush all queue region related configuration *** */
9937 struct cmd_flush_queue_region_result {
9938 cmdline_fixed_string_t set;
9939 cmdline_fixed_string_t port;
9941 cmdline_fixed_string_t cmd;
9942 cmdline_fixed_string_t flush;
9943 cmdline_fixed_string_t what;
9947 cmd_flush_queue_region_parsed(void *parsed_result,
9948 __rte_unused struct cmdline *cl,
9949 __rte_unused void *data)
9951 struct cmd_flush_queue_region_result *res = parsed_result;
9954 struct rte_pmd_i40e_queue_region_conf region_conf;
9955 enum rte_pmd_i40e_queue_region_op op_type;
9958 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9962 memset(®ion_conf, 0, sizeof(region_conf));
9964 if (strcmp(res->what, "on") == 0)
9965 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON;
9967 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF;
9969 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9970 op_type, ®ion_conf);
9977 printf("function not implemented or supported\n");
9980 printf("queue region config flush error: (%s)\n",
9985 cmdline_parse_token_string_t cmd_flush_queue_region_set =
9986 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
9988 cmdline_parse_token_string_t cmd_flush_queue_region_port =
9989 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
9991 cmdline_parse_token_num_t cmd_flush_queue_region_port_index =
9992 TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result,
9993 port_id, RTE_UINT16);
9994 cmdline_parse_token_string_t cmd_flush_queue_region_cmd =
9995 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
9996 cmd, "queue-region");
9997 cmdline_parse_token_string_t cmd_flush_queue_region_flush =
9998 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10000 cmdline_parse_token_string_t cmd_flush_queue_region_what =
10001 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10004 cmdline_parse_inst_t cmd_flush_queue_region = {
10005 .f = cmd_flush_queue_region_parsed,
10007 .help_str = "set port <port_id> queue-region flush on|off"
10008 ": flush all queue region related configuration",
10010 (void *)&cmd_flush_queue_region_set,
10011 (void *)&cmd_flush_queue_region_port,
10012 (void *)&cmd_flush_queue_region_port_index,
10013 (void *)&cmd_flush_queue_region_cmd,
10014 (void *)&cmd_flush_queue_region_flush,
10015 (void *)&cmd_flush_queue_region_what,
10020 /* *** get all queue region related configuration info *** */
10021 struct cmd_show_queue_region_info {
10022 cmdline_fixed_string_t show;
10023 cmdline_fixed_string_t port;
10025 cmdline_fixed_string_t cmd;
10029 cmd_show_queue_region_info_parsed(void *parsed_result,
10030 __rte_unused struct cmdline *cl,
10031 __rte_unused void *data)
10033 struct cmd_show_queue_region_info *res = parsed_result;
10034 int ret = -ENOTSUP;
10035 #ifdef RTE_NET_I40E
10036 struct rte_pmd_i40e_queue_regions rte_pmd_regions;
10037 enum rte_pmd_i40e_queue_region_op op_type;
10040 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10043 #ifdef RTE_NET_I40E
10044 memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions));
10046 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET;
10048 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
10049 op_type, &rte_pmd_regions);
10051 port_queue_region_info_display(res->port_id, &rte_pmd_regions);
10058 printf("function not implemented or supported\n");
10061 printf("queue region config info show error: (%s)\n",
10066 cmdline_parse_token_string_t cmd_show_queue_region_info_get =
10067 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10069 cmdline_parse_token_string_t cmd_show_queue_region_info_port =
10070 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10072 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index =
10073 TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info,
10074 port_id, RTE_UINT16);
10075 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd =
10076 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10077 cmd, "queue-region");
10079 cmdline_parse_inst_t cmd_show_queue_region_info_all = {
10080 .f = cmd_show_queue_region_info_parsed,
10082 .help_str = "show port <port_id> queue-region"
10083 ": show all queue region related configuration info",
10085 (void *)&cmd_show_queue_region_info_get,
10086 (void *)&cmd_show_queue_region_info_port,
10087 (void *)&cmd_show_queue_region_info_port_index,
10088 (void *)&cmd_show_queue_region_info_cmd,
10093 /* *** Filters Control *** */
10095 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \
10097 if ((ip_addr).family == AF_INET) \
10098 (ip) = (ip_addr).addr.ipv4.s_addr; \
10100 printf("invalid parameter.\n"); \
10105 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \
10107 if ((ip_addr).family == AF_INET6) \
10108 rte_memcpy(&(ip), \
10109 &((ip_addr).addr.ipv6), \
10110 sizeof(struct in6_addr)); \
10112 printf("invalid parameter.\n"); \
10117 #ifdef RTE_NET_I40E
10120 str2flowtype(char *string)
10123 static const struct {
10126 } flowtype_str[] = {
10127 {"raw", RTE_ETH_FLOW_RAW},
10128 {"ipv4", RTE_ETH_FLOW_IPV4},
10129 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
10130 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
10131 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
10132 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
10133 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
10134 {"ipv6", RTE_ETH_FLOW_IPV6},
10135 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
10136 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
10137 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
10138 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
10139 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
10140 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
10143 for (i = 0; i < RTE_DIM(flowtype_str); i++) {
10144 if (!strcmp(flowtype_str[i].str, string))
10145 return flowtype_str[i].type;
10148 if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64)
10149 return (uint16_t)atoi(string);
10151 return RTE_ETH_FLOW_UNKNOWN;
10154 /* *** deal with flow director filter *** */
10155 struct cmd_flow_director_result {
10156 cmdline_fixed_string_t flow_director_filter;
10158 cmdline_fixed_string_t mode;
10159 cmdline_fixed_string_t mode_value;
10160 cmdline_fixed_string_t ops;
10161 cmdline_fixed_string_t flow;
10162 cmdline_fixed_string_t flow_type;
10163 cmdline_fixed_string_t drop;
10164 cmdline_fixed_string_t queue;
10166 cmdline_fixed_string_t fd_id;
10167 uint32_t fd_id_value;
10168 cmdline_fixed_string_t packet;
10173 cmd_flow_director_filter_parsed(void *parsed_result,
10174 __rte_unused struct cmdline *cl,
10175 __rte_unused void *data)
10177 struct cmd_flow_director_result *res = parsed_result;
10179 struct rte_pmd_i40e_flow_type_mapping
10180 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
10181 struct rte_pmd_i40e_pkt_template_conf conf;
10182 uint16_t flow_type = str2flowtype(res->flow_type);
10183 uint16_t i, port = res->port_id;
10186 memset(&conf, 0, sizeof(conf));
10188 if (flow_type == RTE_ETH_FLOW_UNKNOWN) {
10189 printf("Invalid flow type specified.\n");
10192 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id,
10196 if (mapping[flow_type].pctype == 0ULL) {
10197 printf("Invalid flow type specified.\n");
10200 for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) {
10201 if (mapping[flow_type].pctype & (1ULL << i)) {
10202 conf.input.pctype = i;
10207 conf.input.packet = open_file(res->filepath,
10208 &conf.input.length);
10209 if (!conf.input.packet)
10211 if (!strcmp(res->drop, "drop"))
10212 conf.action.behavior =
10213 RTE_PMD_I40E_PKT_TEMPLATE_REJECT;
10215 conf.action.behavior =
10216 RTE_PMD_I40E_PKT_TEMPLATE_ACCEPT;
10217 conf.action.report_status =
10218 RTE_PMD_I40E_PKT_TEMPLATE_REPORT_ID;
10219 conf.action.rx_queue = res->queue_id;
10220 conf.soft_id = res->fd_id_value;
10221 add = strcmp(res->ops, "del") ? 1 : 0;
10222 ret = rte_pmd_i40e_flow_add_del_packet_template(port,
10226 printf("flow director config error: (%s)\n",
10228 close_file(conf.input.packet);
10231 cmdline_parse_token_string_t cmd_flow_director_filter =
10232 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10233 flow_director_filter, "flow_director_filter");
10234 cmdline_parse_token_num_t cmd_flow_director_port_id =
10235 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10236 port_id, RTE_UINT16);
10237 cmdline_parse_token_string_t cmd_flow_director_ops =
10238 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10239 ops, "add#del#update");
10240 cmdline_parse_token_string_t cmd_flow_director_flow =
10241 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10243 cmdline_parse_token_string_t cmd_flow_director_flow_type =
10244 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10246 cmdline_parse_token_string_t cmd_flow_director_drop =
10247 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10249 cmdline_parse_token_string_t cmd_flow_director_queue =
10250 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10252 cmdline_parse_token_num_t cmd_flow_director_queue_id =
10253 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10254 queue_id, RTE_UINT16);
10255 cmdline_parse_token_string_t cmd_flow_director_fd_id =
10256 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10258 cmdline_parse_token_num_t cmd_flow_director_fd_id_value =
10259 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10260 fd_id_value, RTE_UINT32);
10262 cmdline_parse_token_string_t cmd_flow_director_mode =
10263 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10265 cmdline_parse_token_string_t cmd_flow_director_mode_raw =
10266 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10267 mode_value, "raw");
10268 cmdline_parse_token_string_t cmd_flow_director_packet =
10269 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10271 cmdline_parse_token_string_t cmd_flow_director_filepath =
10272 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10275 cmdline_parse_inst_t cmd_add_del_raw_flow_director = {
10276 .f = cmd_flow_director_filter_parsed,
10278 .help_str = "flow_director_filter ... : Add or delete a raw flow "
10279 "director entry on NIC",
10281 (void *)&cmd_flow_director_filter,
10282 (void *)&cmd_flow_director_port_id,
10283 (void *)&cmd_flow_director_mode,
10284 (void *)&cmd_flow_director_mode_raw,
10285 (void *)&cmd_flow_director_ops,
10286 (void *)&cmd_flow_director_flow,
10287 (void *)&cmd_flow_director_flow_type,
10288 (void *)&cmd_flow_director_drop,
10289 (void *)&cmd_flow_director_queue,
10290 (void *)&cmd_flow_director_queue_id,
10291 (void *)&cmd_flow_director_fd_id,
10292 (void *)&cmd_flow_director_fd_id_value,
10293 (void *)&cmd_flow_director_packet,
10294 (void *)&cmd_flow_director_filepath,
10299 #endif /* RTE_NET_I40E */
10301 /* *** deal with flow director mask *** */
10302 struct cmd_flow_director_mask_result {
10303 cmdline_fixed_string_t flow_director_mask;
10305 cmdline_fixed_string_t mode;
10306 cmdline_fixed_string_t mode_value;
10307 cmdline_fixed_string_t vlan;
10308 uint16_t vlan_mask;
10309 cmdline_fixed_string_t src_mask;
10310 cmdline_ipaddr_t ipv4_src;
10311 cmdline_ipaddr_t ipv6_src;
10313 cmdline_fixed_string_t dst_mask;
10314 cmdline_ipaddr_t ipv4_dst;
10315 cmdline_ipaddr_t ipv6_dst;
10317 cmdline_fixed_string_t mac;
10318 uint8_t mac_addr_byte_mask;
10319 cmdline_fixed_string_t tunnel_id;
10320 uint32_t tunnel_id_mask;
10321 cmdline_fixed_string_t tunnel_type;
10322 uint8_t tunnel_type_mask;
10326 cmd_flow_director_mask_parsed(void *parsed_result,
10327 __rte_unused struct cmdline *cl,
10328 __rte_unused void *data)
10330 struct cmd_flow_director_mask_result *res = parsed_result;
10331 struct rte_eth_fdir_masks *mask;
10332 struct rte_port *port;
10334 port = &ports[res->port_id];
10335 /** Check if the port is not started **/
10336 if (port->port_status != RTE_PORT_STOPPED) {
10337 printf("Please stop port %d first\n", res->port_id);
10341 mask = &port->dev_conf.fdir_conf.mask;
10343 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
10344 if (strcmp(res->mode_value, "MAC-VLAN")) {
10345 printf("Please set mode to MAC-VLAN.\n");
10349 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10350 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) {
10351 if (strcmp(res->mode_value, "Tunnel")) {
10352 printf("Please set mode to Tunnel.\n");
10356 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10357 mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
10358 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask);
10359 mask->tunnel_type_mask = res->tunnel_type_mask;
10361 if (strcmp(res->mode_value, "IP")) {
10362 printf("Please set mode to IP.\n");
10366 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10367 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip);
10368 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip);
10369 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip);
10370 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip);
10371 mask->src_port_mask = rte_cpu_to_be_16(res->port_src);
10372 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst);
10375 cmd_reconfig_device_queue(res->port_id, 1, 1);
10378 cmdline_parse_token_string_t cmd_flow_director_mask =
10379 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10380 flow_director_mask, "flow_director_mask");
10381 cmdline_parse_token_num_t cmd_flow_director_mask_port_id =
10382 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10383 port_id, RTE_UINT16);
10384 cmdline_parse_token_string_t cmd_flow_director_mask_vlan =
10385 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10387 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value =
10388 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10389 vlan_mask, RTE_UINT16);
10390 cmdline_parse_token_string_t cmd_flow_director_mask_src =
10391 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10392 src_mask, "src_mask");
10393 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src =
10394 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10396 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src =
10397 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10399 cmdline_parse_token_num_t cmd_flow_director_mask_port_src =
10400 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10401 port_src, RTE_UINT16);
10402 cmdline_parse_token_string_t cmd_flow_director_mask_dst =
10403 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10404 dst_mask, "dst_mask");
10405 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst =
10406 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10408 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst =
10409 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10411 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst =
10412 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10413 port_dst, RTE_UINT16);
10415 cmdline_parse_token_string_t cmd_flow_director_mask_mode =
10416 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10418 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip =
10419 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10421 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan =
10422 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10423 mode_value, "MAC-VLAN");
10424 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel =
10425 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10426 mode_value, "Tunnel");
10427 cmdline_parse_token_string_t cmd_flow_director_mask_mac =
10428 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10430 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value =
10431 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10432 mac_addr_byte_mask, RTE_UINT8);
10433 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type =
10434 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10435 tunnel_type, "tunnel-type");
10436 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value =
10437 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10438 tunnel_type_mask, RTE_UINT8);
10439 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id =
10440 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10441 tunnel_id, "tunnel-id");
10442 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value =
10443 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10444 tunnel_id_mask, RTE_UINT32);
10446 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = {
10447 .f = cmd_flow_director_mask_parsed,
10449 .help_str = "flow_director_mask ... : "
10450 "Set IP mode flow director's mask on NIC",
10452 (void *)&cmd_flow_director_mask,
10453 (void *)&cmd_flow_director_mask_port_id,
10454 (void *)&cmd_flow_director_mask_mode,
10455 (void *)&cmd_flow_director_mask_mode_ip,
10456 (void *)&cmd_flow_director_mask_vlan,
10457 (void *)&cmd_flow_director_mask_vlan_value,
10458 (void *)&cmd_flow_director_mask_src,
10459 (void *)&cmd_flow_director_mask_ipv4_src,
10460 (void *)&cmd_flow_director_mask_ipv6_src,
10461 (void *)&cmd_flow_director_mask_port_src,
10462 (void *)&cmd_flow_director_mask_dst,
10463 (void *)&cmd_flow_director_mask_ipv4_dst,
10464 (void *)&cmd_flow_director_mask_ipv6_dst,
10465 (void *)&cmd_flow_director_mask_port_dst,
10470 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = {
10471 .f = cmd_flow_director_mask_parsed,
10473 .help_str = "flow_director_mask ... : Set MAC VLAN mode "
10474 "flow director's mask on NIC",
10476 (void *)&cmd_flow_director_mask,
10477 (void *)&cmd_flow_director_mask_port_id,
10478 (void *)&cmd_flow_director_mask_mode,
10479 (void *)&cmd_flow_director_mask_mode_mac_vlan,
10480 (void *)&cmd_flow_director_mask_vlan,
10481 (void *)&cmd_flow_director_mask_vlan_value,
10486 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = {
10487 .f = cmd_flow_director_mask_parsed,
10489 .help_str = "flow_director_mask ... : Set tunnel mode "
10490 "flow director's mask on NIC",
10492 (void *)&cmd_flow_director_mask,
10493 (void *)&cmd_flow_director_mask_port_id,
10494 (void *)&cmd_flow_director_mask_mode,
10495 (void *)&cmd_flow_director_mask_mode_tunnel,
10496 (void *)&cmd_flow_director_mask_vlan,
10497 (void *)&cmd_flow_director_mask_vlan_value,
10498 (void *)&cmd_flow_director_mask_mac,
10499 (void *)&cmd_flow_director_mask_mac_value,
10500 (void *)&cmd_flow_director_mask_tunnel_type,
10501 (void *)&cmd_flow_director_mask_tunnel_type_value,
10502 (void *)&cmd_flow_director_mask_tunnel_id,
10503 (void *)&cmd_flow_director_mask_tunnel_id_value,
10508 /* *** deal with flow director flexible payload configuration *** */
10509 struct cmd_flow_director_flexpayload_result {
10510 cmdline_fixed_string_t flow_director_flexpayload;
10512 cmdline_fixed_string_t payload_layer;
10513 cmdline_fixed_string_t payload_cfg;
10517 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num)
10520 const char *p, *p0 = q_arg;
10522 unsigned long int_fld;
10523 char *str_fld[max_num];
10528 p = strchr(p0, '(');
10532 p0 = strchr(p, ')');
10537 if (size >= sizeof(s))
10540 snprintf(s, sizeof(s), "%.*s", size, p);
10541 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
10542 if (ret < 0 || ret > max_num)
10544 for (i = 0; i < ret; i++) {
10546 int_fld = strtoul(str_fld[i], &end, 0);
10547 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX)
10549 offsets[i] = (uint16_t)int_fld;
10555 cmd_flow_director_flxpld_parsed(void *parsed_result,
10556 __rte_unused struct cmdline *cl,
10557 __rte_unused void *data)
10559 struct cmd_flow_director_flexpayload_result *res = parsed_result;
10560 struct rte_eth_flex_payload_cfg flex_cfg;
10561 struct rte_port *port;
10564 port = &ports[res->port_id];
10565 /** Check if the port is not started **/
10566 if (port->port_status != RTE_PORT_STOPPED) {
10567 printf("Please stop port %d first\n", res->port_id);
10571 memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg));
10573 if (!strcmp(res->payload_layer, "raw"))
10574 flex_cfg.type = RTE_ETH_RAW_PAYLOAD;
10575 else if (!strcmp(res->payload_layer, "l2"))
10576 flex_cfg.type = RTE_ETH_L2_PAYLOAD;
10577 else if (!strcmp(res->payload_layer, "l3"))
10578 flex_cfg.type = RTE_ETH_L3_PAYLOAD;
10579 else if (!strcmp(res->payload_layer, "l4"))
10580 flex_cfg.type = RTE_ETH_L4_PAYLOAD;
10582 ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
10583 RTE_ETH_FDIR_MAX_FLEXLEN);
10585 printf("error: Cannot parse flex payload input.\n");
10589 fdir_set_flex_payload(res->port_id, &flex_cfg);
10590 cmd_reconfig_device_queue(res->port_id, 1, 1);
10593 cmdline_parse_token_string_t cmd_flow_director_flexpayload =
10594 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10595 flow_director_flexpayload,
10596 "flow_director_flex_payload");
10597 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id =
10598 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10599 port_id, RTE_UINT16);
10600 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer =
10601 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10602 payload_layer, "raw#l2#l3#l4");
10603 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg =
10604 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10605 payload_cfg, NULL);
10607 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = {
10608 .f = cmd_flow_director_flxpld_parsed,
10610 .help_str = "flow_director_flexpayload ... : "
10611 "Set flow director's flex payload on NIC",
10613 (void *)&cmd_flow_director_flexpayload,
10614 (void *)&cmd_flow_director_flexpayload_port_id,
10615 (void *)&cmd_flow_director_flexpayload_payload_layer,
10616 (void *)&cmd_flow_director_flexpayload_payload_cfg,
10621 /* Generic flow interface command. */
10622 extern cmdline_parse_inst_t cmd_flow;
10624 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */
10625 struct cmd_mcast_addr_result {
10626 cmdline_fixed_string_t mcast_addr_cmd;
10627 cmdline_fixed_string_t what;
10629 struct rte_ether_addr mc_addr;
10632 static void cmd_mcast_addr_parsed(void *parsed_result,
10633 __rte_unused struct cmdline *cl,
10634 __rte_unused void *data)
10636 struct cmd_mcast_addr_result *res = parsed_result;
10638 if (!rte_is_multicast_ether_addr(&res->mc_addr)) {
10639 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
10640 res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
10641 res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
10642 res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
10645 if (strcmp(res->what, "add") == 0)
10646 mcast_addr_add(res->port_num, &res->mc_addr);
10648 mcast_addr_remove(res->port_num, &res->mc_addr);
10651 cmdline_parse_token_string_t cmd_mcast_addr_cmd =
10652 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result,
10653 mcast_addr_cmd, "mcast_addr");
10654 cmdline_parse_token_string_t cmd_mcast_addr_what =
10655 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what,
10657 cmdline_parse_token_num_t cmd_mcast_addr_portnum =
10658 TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num,
10660 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr =
10661 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
10663 cmdline_parse_inst_t cmd_mcast_addr = {
10664 .f = cmd_mcast_addr_parsed,
10666 .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: "
10667 "Add/Remove multicast MAC address on port_id",
10669 (void *)&cmd_mcast_addr_cmd,
10670 (void *)&cmd_mcast_addr_what,
10671 (void *)&cmd_mcast_addr_portnum,
10672 (void *)&cmd_mcast_addr_addr,
10677 /* vf vlan anti spoof configuration */
10679 /* Common result structure for vf vlan anti spoof */
10680 struct cmd_vf_vlan_anti_spoof_result {
10681 cmdline_fixed_string_t set;
10682 cmdline_fixed_string_t vf;
10683 cmdline_fixed_string_t vlan;
10684 cmdline_fixed_string_t antispoof;
10687 cmdline_fixed_string_t on_off;
10690 /* Common CLI fields for vf vlan anti spoof enable disable */
10691 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set =
10692 TOKEN_STRING_INITIALIZER
10693 (struct cmd_vf_vlan_anti_spoof_result,
10695 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf =
10696 TOKEN_STRING_INITIALIZER
10697 (struct cmd_vf_vlan_anti_spoof_result,
10699 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan =
10700 TOKEN_STRING_INITIALIZER
10701 (struct cmd_vf_vlan_anti_spoof_result,
10703 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof =
10704 TOKEN_STRING_INITIALIZER
10705 (struct cmd_vf_vlan_anti_spoof_result,
10706 antispoof, "antispoof");
10707 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id =
10708 TOKEN_NUM_INITIALIZER
10709 (struct cmd_vf_vlan_anti_spoof_result,
10710 port_id, RTE_UINT16);
10711 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id =
10712 TOKEN_NUM_INITIALIZER
10713 (struct cmd_vf_vlan_anti_spoof_result,
10714 vf_id, RTE_UINT32);
10715 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off =
10716 TOKEN_STRING_INITIALIZER
10717 (struct cmd_vf_vlan_anti_spoof_result,
10721 cmd_set_vf_vlan_anti_spoof_parsed(
10722 void *parsed_result,
10723 __rte_unused struct cmdline *cl,
10724 __rte_unused void *data)
10726 struct cmd_vf_vlan_anti_spoof_result *res = parsed_result;
10727 int ret = -ENOTSUP;
10729 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10731 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10734 #ifdef RTE_NET_IXGBE
10735 if (ret == -ENOTSUP)
10736 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id,
10737 res->vf_id, is_on);
10739 #ifdef RTE_NET_I40E
10740 if (ret == -ENOTSUP)
10741 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id,
10742 res->vf_id, is_on);
10744 #ifdef RTE_NET_BNXT
10745 if (ret == -ENOTSUP)
10746 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id,
10747 res->vf_id, is_on);
10754 printf("invalid vf_id %d\n", res->vf_id);
10757 printf("invalid port_id %d\n", res->port_id);
10760 printf("function not implemented\n");
10763 printf("programming error: (%s)\n", strerror(-ret));
10767 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = {
10768 .f = cmd_set_vf_vlan_anti_spoof_parsed,
10770 .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off",
10772 (void *)&cmd_vf_vlan_anti_spoof_set,
10773 (void *)&cmd_vf_vlan_anti_spoof_vf,
10774 (void *)&cmd_vf_vlan_anti_spoof_vlan,
10775 (void *)&cmd_vf_vlan_anti_spoof_antispoof,
10776 (void *)&cmd_vf_vlan_anti_spoof_port_id,
10777 (void *)&cmd_vf_vlan_anti_spoof_vf_id,
10778 (void *)&cmd_vf_vlan_anti_spoof_on_off,
10783 /* vf mac anti spoof configuration */
10785 /* Common result structure for vf mac anti spoof */
10786 struct cmd_vf_mac_anti_spoof_result {
10787 cmdline_fixed_string_t set;
10788 cmdline_fixed_string_t vf;
10789 cmdline_fixed_string_t mac;
10790 cmdline_fixed_string_t antispoof;
10793 cmdline_fixed_string_t on_off;
10796 /* Common CLI fields for vf mac anti spoof enable disable */
10797 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set =
10798 TOKEN_STRING_INITIALIZER
10799 (struct cmd_vf_mac_anti_spoof_result,
10801 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf =
10802 TOKEN_STRING_INITIALIZER
10803 (struct cmd_vf_mac_anti_spoof_result,
10805 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac =
10806 TOKEN_STRING_INITIALIZER
10807 (struct cmd_vf_mac_anti_spoof_result,
10809 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof =
10810 TOKEN_STRING_INITIALIZER
10811 (struct cmd_vf_mac_anti_spoof_result,
10812 antispoof, "antispoof");
10813 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id =
10814 TOKEN_NUM_INITIALIZER
10815 (struct cmd_vf_mac_anti_spoof_result,
10816 port_id, RTE_UINT16);
10817 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id =
10818 TOKEN_NUM_INITIALIZER
10819 (struct cmd_vf_mac_anti_spoof_result,
10820 vf_id, RTE_UINT32);
10821 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off =
10822 TOKEN_STRING_INITIALIZER
10823 (struct cmd_vf_mac_anti_spoof_result,
10827 cmd_set_vf_mac_anti_spoof_parsed(
10828 void *parsed_result,
10829 __rte_unused struct cmdline *cl,
10830 __rte_unused void *data)
10832 struct cmd_vf_mac_anti_spoof_result *res = parsed_result;
10833 int ret = -ENOTSUP;
10835 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10837 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10840 #ifdef RTE_NET_IXGBE
10841 if (ret == -ENOTSUP)
10842 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id,
10843 res->vf_id, is_on);
10845 #ifdef RTE_NET_I40E
10846 if (ret == -ENOTSUP)
10847 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id,
10848 res->vf_id, is_on);
10850 #ifdef RTE_NET_BNXT
10851 if (ret == -ENOTSUP)
10852 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id,
10853 res->vf_id, is_on);
10860 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
10863 printf("invalid port_id %d\n", res->port_id);
10866 printf("function not implemented\n");
10869 printf("programming error: (%s)\n", strerror(-ret));
10873 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = {
10874 .f = cmd_set_vf_mac_anti_spoof_parsed,
10876 .help_str = "set vf mac antispoof <port_id> <vf_id> on|off",
10878 (void *)&cmd_vf_mac_anti_spoof_set,
10879 (void *)&cmd_vf_mac_anti_spoof_vf,
10880 (void *)&cmd_vf_mac_anti_spoof_mac,
10881 (void *)&cmd_vf_mac_anti_spoof_antispoof,
10882 (void *)&cmd_vf_mac_anti_spoof_port_id,
10883 (void *)&cmd_vf_mac_anti_spoof_vf_id,
10884 (void *)&cmd_vf_mac_anti_spoof_on_off,
10889 /* vf vlan strip queue configuration */
10891 /* Common result structure for vf mac anti spoof */
10892 struct cmd_vf_vlan_stripq_result {
10893 cmdline_fixed_string_t set;
10894 cmdline_fixed_string_t vf;
10895 cmdline_fixed_string_t vlan;
10896 cmdline_fixed_string_t stripq;
10899 cmdline_fixed_string_t on_off;
10902 /* Common CLI fields for vf vlan strip enable disable */
10903 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set =
10904 TOKEN_STRING_INITIALIZER
10905 (struct cmd_vf_vlan_stripq_result,
10907 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf =
10908 TOKEN_STRING_INITIALIZER
10909 (struct cmd_vf_vlan_stripq_result,
10911 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan =
10912 TOKEN_STRING_INITIALIZER
10913 (struct cmd_vf_vlan_stripq_result,
10915 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq =
10916 TOKEN_STRING_INITIALIZER
10917 (struct cmd_vf_vlan_stripq_result,
10919 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id =
10920 TOKEN_NUM_INITIALIZER
10921 (struct cmd_vf_vlan_stripq_result,
10922 port_id, RTE_UINT16);
10923 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id =
10924 TOKEN_NUM_INITIALIZER
10925 (struct cmd_vf_vlan_stripq_result,
10926 vf_id, RTE_UINT16);
10927 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off =
10928 TOKEN_STRING_INITIALIZER
10929 (struct cmd_vf_vlan_stripq_result,
10933 cmd_set_vf_vlan_stripq_parsed(
10934 void *parsed_result,
10935 __rte_unused struct cmdline *cl,
10936 __rte_unused void *data)
10938 struct cmd_vf_vlan_stripq_result *res = parsed_result;
10939 int ret = -ENOTSUP;
10941 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10943 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10946 #ifdef RTE_NET_IXGBE
10947 if (ret == -ENOTSUP)
10948 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id,
10949 res->vf_id, is_on);
10951 #ifdef RTE_NET_I40E
10952 if (ret == -ENOTSUP)
10953 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id,
10954 res->vf_id, is_on);
10956 #ifdef RTE_NET_BNXT
10957 if (ret == -ENOTSUP)
10958 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id,
10959 res->vf_id, is_on);
10966 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
10969 printf("invalid port_id %d\n", res->port_id);
10972 printf("function not implemented\n");
10975 printf("programming error: (%s)\n", strerror(-ret));
10979 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = {
10980 .f = cmd_set_vf_vlan_stripq_parsed,
10982 .help_str = "set vf vlan stripq <port_id> <vf_id> on|off",
10984 (void *)&cmd_vf_vlan_stripq_set,
10985 (void *)&cmd_vf_vlan_stripq_vf,
10986 (void *)&cmd_vf_vlan_stripq_vlan,
10987 (void *)&cmd_vf_vlan_stripq_stripq,
10988 (void *)&cmd_vf_vlan_stripq_port_id,
10989 (void *)&cmd_vf_vlan_stripq_vf_id,
10990 (void *)&cmd_vf_vlan_stripq_on_off,
10995 /* vf vlan insert configuration */
10997 /* Common result structure for vf vlan insert */
10998 struct cmd_vf_vlan_insert_result {
10999 cmdline_fixed_string_t set;
11000 cmdline_fixed_string_t vf;
11001 cmdline_fixed_string_t vlan;
11002 cmdline_fixed_string_t insert;
11008 /* Common CLI fields for vf vlan insert enable disable */
11009 cmdline_parse_token_string_t cmd_vf_vlan_insert_set =
11010 TOKEN_STRING_INITIALIZER
11011 (struct cmd_vf_vlan_insert_result,
11013 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf =
11014 TOKEN_STRING_INITIALIZER
11015 (struct cmd_vf_vlan_insert_result,
11017 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan =
11018 TOKEN_STRING_INITIALIZER
11019 (struct cmd_vf_vlan_insert_result,
11021 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert =
11022 TOKEN_STRING_INITIALIZER
11023 (struct cmd_vf_vlan_insert_result,
11025 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id =
11026 TOKEN_NUM_INITIALIZER
11027 (struct cmd_vf_vlan_insert_result,
11028 port_id, RTE_UINT16);
11029 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id =
11030 TOKEN_NUM_INITIALIZER
11031 (struct cmd_vf_vlan_insert_result,
11032 vf_id, RTE_UINT16);
11033 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id =
11034 TOKEN_NUM_INITIALIZER
11035 (struct cmd_vf_vlan_insert_result,
11036 vlan_id, RTE_UINT16);
11039 cmd_set_vf_vlan_insert_parsed(
11040 void *parsed_result,
11041 __rte_unused struct cmdline *cl,
11042 __rte_unused void *data)
11044 struct cmd_vf_vlan_insert_result *res = parsed_result;
11045 int ret = -ENOTSUP;
11047 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11050 #ifdef RTE_NET_IXGBE
11051 if (ret == -ENOTSUP)
11052 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id,
11055 #ifdef RTE_NET_I40E
11056 if (ret == -ENOTSUP)
11057 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id,
11060 #ifdef RTE_NET_BNXT
11061 if (ret == -ENOTSUP)
11062 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id,
11070 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id);
11073 printf("invalid port_id %d\n", res->port_id);
11076 printf("function not implemented\n");
11079 printf("programming error: (%s)\n", strerror(-ret));
11083 cmdline_parse_inst_t cmd_set_vf_vlan_insert = {
11084 .f = cmd_set_vf_vlan_insert_parsed,
11086 .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>",
11088 (void *)&cmd_vf_vlan_insert_set,
11089 (void *)&cmd_vf_vlan_insert_vf,
11090 (void *)&cmd_vf_vlan_insert_vlan,
11091 (void *)&cmd_vf_vlan_insert_insert,
11092 (void *)&cmd_vf_vlan_insert_port_id,
11093 (void *)&cmd_vf_vlan_insert_vf_id,
11094 (void *)&cmd_vf_vlan_insert_vlan_id,
11099 /* tx loopback configuration */
11101 /* Common result structure for tx loopback */
11102 struct cmd_tx_loopback_result {
11103 cmdline_fixed_string_t set;
11104 cmdline_fixed_string_t tx;
11105 cmdline_fixed_string_t loopback;
11107 cmdline_fixed_string_t on_off;
11110 /* Common CLI fields for tx loopback enable disable */
11111 cmdline_parse_token_string_t cmd_tx_loopback_set =
11112 TOKEN_STRING_INITIALIZER
11113 (struct cmd_tx_loopback_result,
11115 cmdline_parse_token_string_t cmd_tx_loopback_tx =
11116 TOKEN_STRING_INITIALIZER
11117 (struct cmd_tx_loopback_result,
11119 cmdline_parse_token_string_t cmd_tx_loopback_loopback =
11120 TOKEN_STRING_INITIALIZER
11121 (struct cmd_tx_loopback_result,
11122 loopback, "loopback");
11123 cmdline_parse_token_num_t cmd_tx_loopback_port_id =
11124 TOKEN_NUM_INITIALIZER
11125 (struct cmd_tx_loopback_result,
11126 port_id, RTE_UINT16);
11127 cmdline_parse_token_string_t cmd_tx_loopback_on_off =
11128 TOKEN_STRING_INITIALIZER
11129 (struct cmd_tx_loopback_result,
11133 cmd_set_tx_loopback_parsed(
11134 void *parsed_result,
11135 __rte_unused struct cmdline *cl,
11136 __rte_unused void *data)
11138 struct cmd_tx_loopback_result *res = parsed_result;
11139 int ret = -ENOTSUP;
11141 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11143 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11146 #ifdef RTE_NET_IXGBE
11147 if (ret == -ENOTSUP)
11148 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on);
11150 #ifdef RTE_NET_I40E
11151 if (ret == -ENOTSUP)
11152 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on);
11154 #ifdef RTE_NET_BNXT
11155 if (ret == -ENOTSUP)
11156 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
11158 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA
11159 if (ret == -ENOTSUP)
11160 ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on);
11167 printf("invalid is_on %d\n", is_on);
11170 printf("invalid port_id %d\n", res->port_id);
11173 printf("function not implemented\n");
11176 printf("programming error: (%s)\n", strerror(-ret));
11180 cmdline_parse_inst_t cmd_set_tx_loopback = {
11181 .f = cmd_set_tx_loopback_parsed,
11183 .help_str = "set tx loopback <port_id> on|off",
11185 (void *)&cmd_tx_loopback_set,
11186 (void *)&cmd_tx_loopback_tx,
11187 (void *)&cmd_tx_loopback_loopback,
11188 (void *)&cmd_tx_loopback_port_id,
11189 (void *)&cmd_tx_loopback_on_off,
11194 /* all queues drop enable configuration */
11196 /* Common result structure for all queues drop enable */
11197 struct cmd_all_queues_drop_en_result {
11198 cmdline_fixed_string_t set;
11199 cmdline_fixed_string_t all;
11200 cmdline_fixed_string_t queues;
11201 cmdline_fixed_string_t drop;
11203 cmdline_fixed_string_t on_off;
11206 /* Common CLI fields for tx loopback enable disable */
11207 cmdline_parse_token_string_t cmd_all_queues_drop_en_set =
11208 TOKEN_STRING_INITIALIZER
11209 (struct cmd_all_queues_drop_en_result,
11211 cmdline_parse_token_string_t cmd_all_queues_drop_en_all =
11212 TOKEN_STRING_INITIALIZER
11213 (struct cmd_all_queues_drop_en_result,
11215 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues =
11216 TOKEN_STRING_INITIALIZER
11217 (struct cmd_all_queues_drop_en_result,
11219 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop =
11220 TOKEN_STRING_INITIALIZER
11221 (struct cmd_all_queues_drop_en_result,
11223 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id =
11224 TOKEN_NUM_INITIALIZER
11225 (struct cmd_all_queues_drop_en_result,
11226 port_id, RTE_UINT16);
11227 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off =
11228 TOKEN_STRING_INITIALIZER
11229 (struct cmd_all_queues_drop_en_result,
11233 cmd_set_all_queues_drop_en_parsed(
11234 void *parsed_result,
11235 __rte_unused struct cmdline *cl,
11236 __rte_unused void *data)
11238 struct cmd_all_queues_drop_en_result *res = parsed_result;
11239 int ret = -ENOTSUP;
11240 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11242 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11245 #ifdef RTE_NET_IXGBE
11246 if (ret == -ENOTSUP)
11247 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on);
11249 #ifdef RTE_NET_BNXT
11250 if (ret == -ENOTSUP)
11251 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on);
11257 printf("invalid is_on %d\n", is_on);
11260 printf("invalid port_id %d\n", res->port_id);
11263 printf("function not implemented\n");
11266 printf("programming error: (%s)\n", strerror(-ret));
11270 cmdline_parse_inst_t cmd_set_all_queues_drop_en = {
11271 .f = cmd_set_all_queues_drop_en_parsed,
11273 .help_str = "set all queues drop <port_id> on|off",
11275 (void *)&cmd_all_queues_drop_en_set,
11276 (void *)&cmd_all_queues_drop_en_all,
11277 (void *)&cmd_all_queues_drop_en_queues,
11278 (void *)&cmd_all_queues_drop_en_drop,
11279 (void *)&cmd_all_queues_drop_en_port_id,
11280 (void *)&cmd_all_queues_drop_en_on_off,
11285 /* vf split drop enable configuration */
11287 /* Common result structure for vf split drop enable */
11288 struct cmd_vf_split_drop_en_result {
11289 cmdline_fixed_string_t set;
11290 cmdline_fixed_string_t vf;
11291 cmdline_fixed_string_t split;
11292 cmdline_fixed_string_t drop;
11295 cmdline_fixed_string_t on_off;
11298 /* Common CLI fields for vf split drop enable disable */
11299 cmdline_parse_token_string_t cmd_vf_split_drop_en_set =
11300 TOKEN_STRING_INITIALIZER
11301 (struct cmd_vf_split_drop_en_result,
11303 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf =
11304 TOKEN_STRING_INITIALIZER
11305 (struct cmd_vf_split_drop_en_result,
11307 cmdline_parse_token_string_t cmd_vf_split_drop_en_split =
11308 TOKEN_STRING_INITIALIZER
11309 (struct cmd_vf_split_drop_en_result,
11311 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop =
11312 TOKEN_STRING_INITIALIZER
11313 (struct cmd_vf_split_drop_en_result,
11315 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id =
11316 TOKEN_NUM_INITIALIZER
11317 (struct cmd_vf_split_drop_en_result,
11318 port_id, RTE_UINT16);
11319 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id =
11320 TOKEN_NUM_INITIALIZER
11321 (struct cmd_vf_split_drop_en_result,
11322 vf_id, RTE_UINT16);
11323 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off =
11324 TOKEN_STRING_INITIALIZER
11325 (struct cmd_vf_split_drop_en_result,
11329 cmd_set_vf_split_drop_en_parsed(
11330 void *parsed_result,
11331 __rte_unused struct cmdline *cl,
11332 __rte_unused void *data)
11334 struct cmd_vf_split_drop_en_result *res = parsed_result;
11335 int ret = -ENOTSUP;
11336 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11338 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11341 #ifdef RTE_NET_IXGBE
11342 ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id,
11349 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
11352 printf("invalid port_id %d\n", res->port_id);
11355 printf("not supported on port %d\n", res->port_id);
11358 printf("programming error: (%s)\n", strerror(-ret));
11362 cmdline_parse_inst_t cmd_set_vf_split_drop_en = {
11363 .f = cmd_set_vf_split_drop_en_parsed,
11365 .help_str = "set vf split drop <port_id> <vf_id> on|off",
11367 (void *)&cmd_vf_split_drop_en_set,
11368 (void *)&cmd_vf_split_drop_en_vf,
11369 (void *)&cmd_vf_split_drop_en_split,
11370 (void *)&cmd_vf_split_drop_en_drop,
11371 (void *)&cmd_vf_split_drop_en_port_id,
11372 (void *)&cmd_vf_split_drop_en_vf_id,
11373 (void *)&cmd_vf_split_drop_en_on_off,
11378 /* vf mac address configuration */
11380 /* Common result structure for vf mac address */
11381 struct cmd_set_vf_mac_addr_result {
11382 cmdline_fixed_string_t set;
11383 cmdline_fixed_string_t vf;
11384 cmdline_fixed_string_t mac;
11385 cmdline_fixed_string_t addr;
11388 struct rte_ether_addr mac_addr;
11392 /* Common CLI fields for vf split drop enable disable */
11393 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set =
11394 TOKEN_STRING_INITIALIZER
11395 (struct cmd_set_vf_mac_addr_result,
11397 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf =
11398 TOKEN_STRING_INITIALIZER
11399 (struct cmd_set_vf_mac_addr_result,
11401 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac =
11402 TOKEN_STRING_INITIALIZER
11403 (struct cmd_set_vf_mac_addr_result,
11405 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr =
11406 TOKEN_STRING_INITIALIZER
11407 (struct cmd_set_vf_mac_addr_result,
11409 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id =
11410 TOKEN_NUM_INITIALIZER
11411 (struct cmd_set_vf_mac_addr_result,
11412 port_id, RTE_UINT16);
11413 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id =
11414 TOKEN_NUM_INITIALIZER
11415 (struct cmd_set_vf_mac_addr_result,
11416 vf_id, RTE_UINT16);
11417 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr =
11418 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result,
11422 cmd_set_vf_mac_addr_parsed(
11423 void *parsed_result,
11424 __rte_unused struct cmdline *cl,
11425 __rte_unused void *data)
11427 struct cmd_set_vf_mac_addr_result *res = parsed_result;
11428 int ret = -ENOTSUP;
11430 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11433 #ifdef RTE_NET_IXGBE
11434 if (ret == -ENOTSUP)
11435 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id,
11438 #ifdef RTE_NET_I40E
11439 if (ret == -ENOTSUP)
11440 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id,
11443 #ifdef RTE_NET_BNXT
11444 if (ret == -ENOTSUP)
11445 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id,
11453 printf("invalid vf_id %d or mac_addr\n", res->vf_id);
11456 printf("invalid port_id %d\n", res->port_id);
11459 printf("function not implemented\n");
11462 printf("programming error: (%s)\n", strerror(-ret));
11466 cmdline_parse_inst_t cmd_set_vf_mac_addr = {
11467 .f = cmd_set_vf_mac_addr_parsed,
11469 .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>",
11471 (void *)&cmd_set_vf_mac_addr_set,
11472 (void *)&cmd_set_vf_mac_addr_vf,
11473 (void *)&cmd_set_vf_mac_addr_mac,
11474 (void *)&cmd_set_vf_mac_addr_addr,
11475 (void *)&cmd_set_vf_mac_addr_port_id,
11476 (void *)&cmd_set_vf_mac_addr_vf_id,
11477 (void *)&cmd_set_vf_mac_addr_mac_addr,
11482 /* MACsec configuration */
11484 /* Common result structure for MACsec offload enable */
11485 struct cmd_macsec_offload_on_result {
11486 cmdline_fixed_string_t set;
11487 cmdline_fixed_string_t macsec;
11488 cmdline_fixed_string_t offload;
11490 cmdline_fixed_string_t on;
11491 cmdline_fixed_string_t encrypt;
11492 cmdline_fixed_string_t en_on_off;
11493 cmdline_fixed_string_t replay_protect;
11494 cmdline_fixed_string_t rp_on_off;
11497 /* Common CLI fields for MACsec offload disable */
11498 cmdline_parse_token_string_t cmd_macsec_offload_on_set =
11499 TOKEN_STRING_INITIALIZER
11500 (struct cmd_macsec_offload_on_result,
11502 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec =
11503 TOKEN_STRING_INITIALIZER
11504 (struct cmd_macsec_offload_on_result,
11506 cmdline_parse_token_string_t cmd_macsec_offload_on_offload =
11507 TOKEN_STRING_INITIALIZER
11508 (struct cmd_macsec_offload_on_result,
11509 offload, "offload");
11510 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id =
11511 TOKEN_NUM_INITIALIZER
11512 (struct cmd_macsec_offload_on_result,
11513 port_id, RTE_UINT16);
11514 cmdline_parse_token_string_t cmd_macsec_offload_on_on =
11515 TOKEN_STRING_INITIALIZER
11516 (struct cmd_macsec_offload_on_result,
11518 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt =
11519 TOKEN_STRING_INITIALIZER
11520 (struct cmd_macsec_offload_on_result,
11521 encrypt, "encrypt");
11522 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off =
11523 TOKEN_STRING_INITIALIZER
11524 (struct cmd_macsec_offload_on_result,
11525 en_on_off, "on#off");
11526 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect =
11527 TOKEN_STRING_INITIALIZER
11528 (struct cmd_macsec_offload_on_result,
11529 replay_protect, "replay-protect");
11530 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off =
11531 TOKEN_STRING_INITIALIZER
11532 (struct cmd_macsec_offload_on_result,
11533 rp_on_off, "on#off");
11536 cmd_set_macsec_offload_on_parsed(
11537 void *parsed_result,
11538 __rte_unused struct cmdline *cl,
11539 __rte_unused void *data)
11541 struct cmd_macsec_offload_on_result *res = parsed_result;
11542 int ret = -ENOTSUP;
11543 portid_t port_id = res->port_id;
11544 int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0;
11545 int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0;
11546 struct rte_eth_dev_info dev_info;
11548 if (port_id_is_invalid(port_id, ENABLED_WARN))
11550 if (!port_is_stopped(port_id)) {
11551 printf("Please stop port %d first\n", port_id);
11555 ret = eth_dev_info_get_print_err(port_id, &dev_info);
11559 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
11560 #ifdef RTE_NET_IXGBE
11561 ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp);
11569 ports[port_id].dev_conf.txmode.offloads |=
11570 DEV_TX_OFFLOAD_MACSEC_INSERT;
11571 cmd_reconfig_device_queue(port_id, 1, 1);
11574 printf("invalid port_id %d\n", port_id);
11577 printf("not supported on port %d\n", port_id);
11580 printf("programming error: (%s)\n", strerror(-ret));
11584 cmdline_parse_inst_t cmd_set_macsec_offload_on = {
11585 .f = cmd_set_macsec_offload_on_parsed,
11587 .help_str = "set macsec offload <port_id> on "
11588 "encrypt on|off replay-protect on|off",
11590 (void *)&cmd_macsec_offload_on_set,
11591 (void *)&cmd_macsec_offload_on_macsec,
11592 (void *)&cmd_macsec_offload_on_offload,
11593 (void *)&cmd_macsec_offload_on_port_id,
11594 (void *)&cmd_macsec_offload_on_on,
11595 (void *)&cmd_macsec_offload_on_encrypt,
11596 (void *)&cmd_macsec_offload_on_en_on_off,
11597 (void *)&cmd_macsec_offload_on_replay_protect,
11598 (void *)&cmd_macsec_offload_on_rp_on_off,
11603 /* Common result structure for MACsec offload disable */
11604 struct cmd_macsec_offload_off_result {
11605 cmdline_fixed_string_t set;
11606 cmdline_fixed_string_t macsec;
11607 cmdline_fixed_string_t offload;
11609 cmdline_fixed_string_t off;
11612 /* Common CLI fields for MACsec offload disable */
11613 cmdline_parse_token_string_t cmd_macsec_offload_off_set =
11614 TOKEN_STRING_INITIALIZER
11615 (struct cmd_macsec_offload_off_result,
11617 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec =
11618 TOKEN_STRING_INITIALIZER
11619 (struct cmd_macsec_offload_off_result,
11621 cmdline_parse_token_string_t cmd_macsec_offload_off_offload =
11622 TOKEN_STRING_INITIALIZER
11623 (struct cmd_macsec_offload_off_result,
11624 offload, "offload");
11625 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id =
11626 TOKEN_NUM_INITIALIZER
11627 (struct cmd_macsec_offload_off_result,
11628 port_id, RTE_UINT16);
11629 cmdline_parse_token_string_t cmd_macsec_offload_off_off =
11630 TOKEN_STRING_INITIALIZER
11631 (struct cmd_macsec_offload_off_result,
11635 cmd_set_macsec_offload_off_parsed(
11636 void *parsed_result,
11637 __rte_unused struct cmdline *cl,
11638 __rte_unused void *data)
11640 struct cmd_macsec_offload_off_result *res = parsed_result;
11641 int ret = -ENOTSUP;
11642 struct rte_eth_dev_info dev_info;
11643 portid_t port_id = res->port_id;
11645 if (port_id_is_invalid(port_id, ENABLED_WARN))
11647 if (!port_is_stopped(port_id)) {
11648 printf("Please stop port %d first\n", port_id);
11652 ret = eth_dev_info_get_print_err(port_id, &dev_info);
11656 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
11657 #ifdef RTE_NET_IXGBE
11658 ret = rte_pmd_ixgbe_macsec_disable(port_id);
11663 ports[port_id].dev_conf.txmode.offloads &=
11664 ~DEV_TX_OFFLOAD_MACSEC_INSERT;
11665 cmd_reconfig_device_queue(port_id, 1, 1);
11668 printf("invalid port_id %d\n", port_id);
11671 printf("not supported on port %d\n", port_id);
11674 printf("programming error: (%s)\n", strerror(-ret));
11678 cmdline_parse_inst_t cmd_set_macsec_offload_off = {
11679 .f = cmd_set_macsec_offload_off_parsed,
11681 .help_str = "set macsec offload <port_id> off",
11683 (void *)&cmd_macsec_offload_off_set,
11684 (void *)&cmd_macsec_offload_off_macsec,
11685 (void *)&cmd_macsec_offload_off_offload,
11686 (void *)&cmd_macsec_offload_off_port_id,
11687 (void *)&cmd_macsec_offload_off_off,
11692 /* Common result structure for MACsec secure connection configure */
11693 struct cmd_macsec_sc_result {
11694 cmdline_fixed_string_t set;
11695 cmdline_fixed_string_t macsec;
11696 cmdline_fixed_string_t sc;
11697 cmdline_fixed_string_t tx_rx;
11699 struct rte_ether_addr mac;
11703 /* Common CLI fields for MACsec secure connection configure */
11704 cmdline_parse_token_string_t cmd_macsec_sc_set =
11705 TOKEN_STRING_INITIALIZER
11706 (struct cmd_macsec_sc_result,
11708 cmdline_parse_token_string_t cmd_macsec_sc_macsec =
11709 TOKEN_STRING_INITIALIZER
11710 (struct cmd_macsec_sc_result,
11712 cmdline_parse_token_string_t cmd_macsec_sc_sc =
11713 TOKEN_STRING_INITIALIZER
11714 (struct cmd_macsec_sc_result,
11716 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx =
11717 TOKEN_STRING_INITIALIZER
11718 (struct cmd_macsec_sc_result,
11720 cmdline_parse_token_num_t cmd_macsec_sc_port_id =
11721 TOKEN_NUM_INITIALIZER
11722 (struct cmd_macsec_sc_result,
11723 port_id, RTE_UINT16);
11724 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac =
11725 TOKEN_ETHERADDR_INITIALIZER
11726 (struct cmd_macsec_sc_result,
11728 cmdline_parse_token_num_t cmd_macsec_sc_pi =
11729 TOKEN_NUM_INITIALIZER
11730 (struct cmd_macsec_sc_result,
11734 cmd_set_macsec_sc_parsed(
11735 void *parsed_result,
11736 __rte_unused struct cmdline *cl,
11737 __rte_unused void *data)
11739 struct cmd_macsec_sc_result *res = parsed_result;
11740 int ret = -ENOTSUP;
11741 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
11743 #ifdef RTE_NET_IXGBE
11745 rte_pmd_ixgbe_macsec_config_txsc(res->port_id,
11746 res->mac.addr_bytes) :
11747 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id,
11748 res->mac.addr_bytes, res->pi);
11750 RTE_SET_USED(is_tx);
11756 printf("invalid port_id %d\n", res->port_id);
11759 printf("not supported on port %d\n", res->port_id);
11762 printf("programming error: (%s)\n", strerror(-ret));
11766 cmdline_parse_inst_t cmd_set_macsec_sc = {
11767 .f = cmd_set_macsec_sc_parsed,
11769 .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>",
11771 (void *)&cmd_macsec_sc_set,
11772 (void *)&cmd_macsec_sc_macsec,
11773 (void *)&cmd_macsec_sc_sc,
11774 (void *)&cmd_macsec_sc_tx_rx,
11775 (void *)&cmd_macsec_sc_port_id,
11776 (void *)&cmd_macsec_sc_mac,
11777 (void *)&cmd_macsec_sc_pi,
11782 /* Common result structure for MACsec secure connection configure */
11783 struct cmd_macsec_sa_result {
11784 cmdline_fixed_string_t set;
11785 cmdline_fixed_string_t macsec;
11786 cmdline_fixed_string_t sa;
11787 cmdline_fixed_string_t tx_rx;
11792 cmdline_fixed_string_t key;
11795 /* Common CLI fields for MACsec secure connection configure */
11796 cmdline_parse_token_string_t cmd_macsec_sa_set =
11797 TOKEN_STRING_INITIALIZER
11798 (struct cmd_macsec_sa_result,
11800 cmdline_parse_token_string_t cmd_macsec_sa_macsec =
11801 TOKEN_STRING_INITIALIZER
11802 (struct cmd_macsec_sa_result,
11804 cmdline_parse_token_string_t cmd_macsec_sa_sa =
11805 TOKEN_STRING_INITIALIZER
11806 (struct cmd_macsec_sa_result,
11808 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx =
11809 TOKEN_STRING_INITIALIZER
11810 (struct cmd_macsec_sa_result,
11812 cmdline_parse_token_num_t cmd_macsec_sa_port_id =
11813 TOKEN_NUM_INITIALIZER
11814 (struct cmd_macsec_sa_result,
11815 port_id, RTE_UINT16);
11816 cmdline_parse_token_num_t cmd_macsec_sa_idx =
11817 TOKEN_NUM_INITIALIZER
11818 (struct cmd_macsec_sa_result,
11820 cmdline_parse_token_num_t cmd_macsec_sa_an =
11821 TOKEN_NUM_INITIALIZER
11822 (struct cmd_macsec_sa_result,
11824 cmdline_parse_token_num_t cmd_macsec_sa_pn =
11825 TOKEN_NUM_INITIALIZER
11826 (struct cmd_macsec_sa_result,
11828 cmdline_parse_token_string_t cmd_macsec_sa_key =
11829 TOKEN_STRING_INITIALIZER
11830 (struct cmd_macsec_sa_result,
11834 cmd_set_macsec_sa_parsed(
11835 void *parsed_result,
11836 __rte_unused struct cmdline *cl,
11837 __rte_unused void *data)
11839 struct cmd_macsec_sa_result *res = parsed_result;
11840 int ret = -ENOTSUP;
11841 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
11842 uint8_t key[16] = { 0 };
11848 key_len = strlen(res->key) / 2;
11852 for (i = 0; i < key_len; i++) {
11853 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
11856 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
11859 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
11862 #ifdef RTE_NET_IXGBE
11864 rte_pmd_ixgbe_macsec_select_txsa(res->port_id,
11865 res->idx, res->an, res->pn, key) :
11866 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id,
11867 res->idx, res->an, res->pn, key);
11869 RTE_SET_USED(is_tx);
11876 printf("invalid idx %d or an %d\n", res->idx, res->an);
11879 printf("invalid port_id %d\n", res->port_id);
11882 printf("not supported on port %d\n", res->port_id);
11885 printf("programming error: (%s)\n", strerror(-ret));
11889 cmdline_parse_inst_t cmd_set_macsec_sa = {
11890 .f = cmd_set_macsec_sa_parsed,
11892 .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>",
11894 (void *)&cmd_macsec_sa_set,
11895 (void *)&cmd_macsec_sa_macsec,
11896 (void *)&cmd_macsec_sa_sa,
11897 (void *)&cmd_macsec_sa_tx_rx,
11898 (void *)&cmd_macsec_sa_port_id,
11899 (void *)&cmd_macsec_sa_idx,
11900 (void *)&cmd_macsec_sa_an,
11901 (void *)&cmd_macsec_sa_pn,
11902 (void *)&cmd_macsec_sa_key,
11907 /* VF unicast promiscuous mode configuration */
11909 /* Common result structure for VF unicast promiscuous mode */
11910 struct cmd_vf_promisc_result {
11911 cmdline_fixed_string_t set;
11912 cmdline_fixed_string_t vf;
11913 cmdline_fixed_string_t promisc;
11916 cmdline_fixed_string_t on_off;
11919 /* Common CLI fields for VF unicast promiscuous mode enable disable */
11920 cmdline_parse_token_string_t cmd_vf_promisc_set =
11921 TOKEN_STRING_INITIALIZER
11922 (struct cmd_vf_promisc_result,
11924 cmdline_parse_token_string_t cmd_vf_promisc_vf =
11925 TOKEN_STRING_INITIALIZER
11926 (struct cmd_vf_promisc_result,
11928 cmdline_parse_token_string_t cmd_vf_promisc_promisc =
11929 TOKEN_STRING_INITIALIZER
11930 (struct cmd_vf_promisc_result,
11931 promisc, "promisc");
11932 cmdline_parse_token_num_t cmd_vf_promisc_port_id =
11933 TOKEN_NUM_INITIALIZER
11934 (struct cmd_vf_promisc_result,
11935 port_id, RTE_UINT16);
11936 cmdline_parse_token_num_t cmd_vf_promisc_vf_id =
11937 TOKEN_NUM_INITIALIZER
11938 (struct cmd_vf_promisc_result,
11939 vf_id, RTE_UINT32);
11940 cmdline_parse_token_string_t cmd_vf_promisc_on_off =
11941 TOKEN_STRING_INITIALIZER
11942 (struct cmd_vf_promisc_result,
11946 cmd_set_vf_promisc_parsed(
11947 void *parsed_result,
11948 __rte_unused struct cmdline *cl,
11949 __rte_unused void *data)
11951 struct cmd_vf_promisc_result *res = parsed_result;
11952 int ret = -ENOTSUP;
11954 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11956 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11959 #ifdef RTE_NET_I40E
11960 ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id,
11961 res->vf_id, is_on);
11968 printf("invalid vf_id %d\n", res->vf_id);
11971 printf("invalid port_id %d\n", res->port_id);
11974 printf("function not implemented\n");
11977 printf("programming error: (%s)\n", strerror(-ret));
11981 cmdline_parse_inst_t cmd_set_vf_promisc = {
11982 .f = cmd_set_vf_promisc_parsed,
11984 .help_str = "set vf promisc <port_id> <vf_id> on|off: "
11985 "Set unicast promiscuous mode for a VF from the PF",
11987 (void *)&cmd_vf_promisc_set,
11988 (void *)&cmd_vf_promisc_vf,
11989 (void *)&cmd_vf_promisc_promisc,
11990 (void *)&cmd_vf_promisc_port_id,
11991 (void *)&cmd_vf_promisc_vf_id,
11992 (void *)&cmd_vf_promisc_on_off,
11997 /* VF multicast promiscuous mode configuration */
11999 /* Common result structure for VF multicast promiscuous mode */
12000 struct cmd_vf_allmulti_result {
12001 cmdline_fixed_string_t set;
12002 cmdline_fixed_string_t vf;
12003 cmdline_fixed_string_t allmulti;
12006 cmdline_fixed_string_t on_off;
12009 /* Common CLI fields for VF multicast promiscuous mode enable disable */
12010 cmdline_parse_token_string_t cmd_vf_allmulti_set =
12011 TOKEN_STRING_INITIALIZER
12012 (struct cmd_vf_allmulti_result,
12014 cmdline_parse_token_string_t cmd_vf_allmulti_vf =
12015 TOKEN_STRING_INITIALIZER
12016 (struct cmd_vf_allmulti_result,
12018 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti =
12019 TOKEN_STRING_INITIALIZER
12020 (struct cmd_vf_allmulti_result,
12021 allmulti, "allmulti");
12022 cmdline_parse_token_num_t cmd_vf_allmulti_port_id =
12023 TOKEN_NUM_INITIALIZER
12024 (struct cmd_vf_allmulti_result,
12025 port_id, RTE_UINT16);
12026 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id =
12027 TOKEN_NUM_INITIALIZER
12028 (struct cmd_vf_allmulti_result,
12029 vf_id, RTE_UINT32);
12030 cmdline_parse_token_string_t cmd_vf_allmulti_on_off =
12031 TOKEN_STRING_INITIALIZER
12032 (struct cmd_vf_allmulti_result,
12036 cmd_set_vf_allmulti_parsed(
12037 void *parsed_result,
12038 __rte_unused struct cmdline *cl,
12039 __rte_unused void *data)
12041 struct cmd_vf_allmulti_result *res = parsed_result;
12042 int ret = -ENOTSUP;
12044 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12046 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12049 #ifdef RTE_NET_I40E
12050 ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id,
12051 res->vf_id, is_on);
12058 printf("invalid vf_id %d\n", res->vf_id);
12061 printf("invalid port_id %d\n", res->port_id);
12064 printf("function not implemented\n");
12067 printf("programming error: (%s)\n", strerror(-ret));
12071 cmdline_parse_inst_t cmd_set_vf_allmulti = {
12072 .f = cmd_set_vf_allmulti_parsed,
12074 .help_str = "set vf allmulti <port_id> <vf_id> on|off: "
12075 "Set multicast promiscuous mode for a VF from the PF",
12077 (void *)&cmd_vf_allmulti_set,
12078 (void *)&cmd_vf_allmulti_vf,
12079 (void *)&cmd_vf_allmulti_allmulti,
12080 (void *)&cmd_vf_allmulti_port_id,
12081 (void *)&cmd_vf_allmulti_vf_id,
12082 (void *)&cmd_vf_allmulti_on_off,
12087 /* vf broadcast mode configuration */
12089 /* Common result structure for vf broadcast */
12090 struct cmd_set_vf_broadcast_result {
12091 cmdline_fixed_string_t set;
12092 cmdline_fixed_string_t vf;
12093 cmdline_fixed_string_t broadcast;
12096 cmdline_fixed_string_t on_off;
12099 /* Common CLI fields for vf broadcast enable disable */
12100 cmdline_parse_token_string_t cmd_set_vf_broadcast_set =
12101 TOKEN_STRING_INITIALIZER
12102 (struct cmd_set_vf_broadcast_result,
12104 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf =
12105 TOKEN_STRING_INITIALIZER
12106 (struct cmd_set_vf_broadcast_result,
12108 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast =
12109 TOKEN_STRING_INITIALIZER
12110 (struct cmd_set_vf_broadcast_result,
12111 broadcast, "broadcast");
12112 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id =
12113 TOKEN_NUM_INITIALIZER
12114 (struct cmd_set_vf_broadcast_result,
12115 port_id, RTE_UINT16);
12116 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id =
12117 TOKEN_NUM_INITIALIZER
12118 (struct cmd_set_vf_broadcast_result,
12119 vf_id, RTE_UINT16);
12120 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off =
12121 TOKEN_STRING_INITIALIZER
12122 (struct cmd_set_vf_broadcast_result,
12126 cmd_set_vf_broadcast_parsed(
12127 void *parsed_result,
12128 __rte_unused struct cmdline *cl,
12129 __rte_unused void *data)
12131 struct cmd_set_vf_broadcast_result *res = parsed_result;
12132 int ret = -ENOTSUP;
12134 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12136 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12139 #ifdef RTE_NET_I40E
12140 ret = rte_pmd_i40e_set_vf_broadcast(res->port_id,
12141 res->vf_id, is_on);
12148 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12151 printf("invalid port_id %d\n", res->port_id);
12154 printf("function not implemented\n");
12157 printf("programming error: (%s)\n", strerror(-ret));
12161 cmdline_parse_inst_t cmd_set_vf_broadcast = {
12162 .f = cmd_set_vf_broadcast_parsed,
12164 .help_str = "set vf broadcast <port_id> <vf_id> on|off",
12166 (void *)&cmd_set_vf_broadcast_set,
12167 (void *)&cmd_set_vf_broadcast_vf,
12168 (void *)&cmd_set_vf_broadcast_broadcast,
12169 (void *)&cmd_set_vf_broadcast_port_id,
12170 (void *)&cmd_set_vf_broadcast_vf_id,
12171 (void *)&cmd_set_vf_broadcast_on_off,
12176 /* vf vlan tag configuration */
12178 /* Common result structure for vf vlan tag */
12179 struct cmd_set_vf_vlan_tag_result {
12180 cmdline_fixed_string_t set;
12181 cmdline_fixed_string_t vf;
12182 cmdline_fixed_string_t vlan;
12183 cmdline_fixed_string_t tag;
12186 cmdline_fixed_string_t on_off;
12189 /* Common CLI fields for vf vlan tag enable disable */
12190 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set =
12191 TOKEN_STRING_INITIALIZER
12192 (struct cmd_set_vf_vlan_tag_result,
12194 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf =
12195 TOKEN_STRING_INITIALIZER
12196 (struct cmd_set_vf_vlan_tag_result,
12198 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan =
12199 TOKEN_STRING_INITIALIZER
12200 (struct cmd_set_vf_vlan_tag_result,
12202 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag =
12203 TOKEN_STRING_INITIALIZER
12204 (struct cmd_set_vf_vlan_tag_result,
12206 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id =
12207 TOKEN_NUM_INITIALIZER
12208 (struct cmd_set_vf_vlan_tag_result,
12209 port_id, RTE_UINT16);
12210 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id =
12211 TOKEN_NUM_INITIALIZER
12212 (struct cmd_set_vf_vlan_tag_result,
12213 vf_id, RTE_UINT16);
12214 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off =
12215 TOKEN_STRING_INITIALIZER
12216 (struct cmd_set_vf_vlan_tag_result,
12220 cmd_set_vf_vlan_tag_parsed(
12221 void *parsed_result,
12222 __rte_unused struct cmdline *cl,
12223 __rte_unused void *data)
12225 struct cmd_set_vf_vlan_tag_result *res = parsed_result;
12226 int ret = -ENOTSUP;
12228 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12230 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12233 #ifdef RTE_NET_I40E
12234 ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id,
12235 res->vf_id, is_on);
12242 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12245 printf("invalid port_id %d\n", res->port_id);
12248 printf("function not implemented\n");
12251 printf("programming error: (%s)\n", strerror(-ret));
12255 cmdline_parse_inst_t cmd_set_vf_vlan_tag = {
12256 .f = cmd_set_vf_vlan_tag_parsed,
12258 .help_str = "set vf vlan tag <port_id> <vf_id> on|off",
12260 (void *)&cmd_set_vf_vlan_tag_set,
12261 (void *)&cmd_set_vf_vlan_tag_vf,
12262 (void *)&cmd_set_vf_vlan_tag_vlan,
12263 (void *)&cmd_set_vf_vlan_tag_tag,
12264 (void *)&cmd_set_vf_vlan_tag_port_id,
12265 (void *)&cmd_set_vf_vlan_tag_vf_id,
12266 (void *)&cmd_set_vf_vlan_tag_on_off,
12271 /* Common definition of VF and TC TX bandwidth configuration */
12272 struct cmd_vf_tc_bw_result {
12273 cmdline_fixed_string_t set;
12274 cmdline_fixed_string_t vf;
12275 cmdline_fixed_string_t tc;
12276 cmdline_fixed_string_t tx;
12277 cmdline_fixed_string_t min_bw;
12278 cmdline_fixed_string_t max_bw;
12279 cmdline_fixed_string_t strict_link_prio;
12284 cmdline_fixed_string_t bw_list;
12288 cmdline_parse_token_string_t cmd_vf_tc_bw_set =
12289 TOKEN_STRING_INITIALIZER
12290 (struct cmd_vf_tc_bw_result,
12292 cmdline_parse_token_string_t cmd_vf_tc_bw_vf =
12293 TOKEN_STRING_INITIALIZER
12294 (struct cmd_vf_tc_bw_result,
12296 cmdline_parse_token_string_t cmd_vf_tc_bw_tc =
12297 TOKEN_STRING_INITIALIZER
12298 (struct cmd_vf_tc_bw_result,
12300 cmdline_parse_token_string_t cmd_vf_tc_bw_tx =
12301 TOKEN_STRING_INITIALIZER
12302 (struct cmd_vf_tc_bw_result,
12304 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio =
12305 TOKEN_STRING_INITIALIZER
12306 (struct cmd_vf_tc_bw_result,
12307 strict_link_prio, "strict-link-priority");
12308 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw =
12309 TOKEN_STRING_INITIALIZER
12310 (struct cmd_vf_tc_bw_result,
12311 min_bw, "min-bandwidth");
12312 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw =
12313 TOKEN_STRING_INITIALIZER
12314 (struct cmd_vf_tc_bw_result,
12315 max_bw, "max-bandwidth");
12316 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id =
12317 TOKEN_NUM_INITIALIZER
12318 (struct cmd_vf_tc_bw_result,
12319 port_id, RTE_UINT16);
12320 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id =
12321 TOKEN_NUM_INITIALIZER
12322 (struct cmd_vf_tc_bw_result,
12323 vf_id, RTE_UINT16);
12324 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no =
12325 TOKEN_NUM_INITIALIZER
12326 (struct cmd_vf_tc_bw_result,
12328 cmdline_parse_token_num_t cmd_vf_tc_bw_bw =
12329 TOKEN_NUM_INITIALIZER
12330 (struct cmd_vf_tc_bw_result,
12332 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list =
12333 TOKEN_STRING_INITIALIZER
12334 (struct cmd_vf_tc_bw_result,
12336 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map =
12337 TOKEN_NUM_INITIALIZER
12338 (struct cmd_vf_tc_bw_result,
12339 tc_map, RTE_UINT8);
12341 /* VF max bandwidth setting */
12343 cmd_vf_max_bw_parsed(
12344 void *parsed_result,
12345 __rte_unused struct cmdline *cl,
12346 __rte_unused void *data)
12348 struct cmd_vf_tc_bw_result *res = parsed_result;
12349 int ret = -ENOTSUP;
12351 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12354 #ifdef RTE_NET_I40E
12355 ret = rte_pmd_i40e_set_vf_max_bw(res->port_id,
12356 res->vf_id, res->bw);
12363 printf("invalid vf_id %d or bandwidth %d\n",
12364 res->vf_id, res->bw);
12367 printf("invalid port_id %d\n", res->port_id);
12370 printf("function not implemented\n");
12373 printf("programming error: (%s)\n", strerror(-ret));
12377 cmdline_parse_inst_t cmd_vf_max_bw = {
12378 .f = cmd_vf_max_bw_parsed,
12380 .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>",
12382 (void *)&cmd_vf_tc_bw_set,
12383 (void *)&cmd_vf_tc_bw_vf,
12384 (void *)&cmd_vf_tc_bw_tx,
12385 (void *)&cmd_vf_tc_bw_max_bw,
12386 (void *)&cmd_vf_tc_bw_port_id,
12387 (void *)&cmd_vf_tc_bw_vf_id,
12388 (void *)&cmd_vf_tc_bw_bw,
12394 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list,
12399 const char *p, *p0 = str;
12406 p = strchr(p0, '(');
12408 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12412 p0 = strchr(p, ')');
12414 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12418 if (size >= sizeof(s)) {
12419 printf("The string size exceeds the internal buffer size\n");
12422 snprintf(s, sizeof(s), "%.*s", size, p);
12423 ret = rte_strsplit(s, sizeof(s), str_fld, 16, ',');
12425 printf("Failed to get the bandwidth list. ");
12429 for (i = 0; i < ret; i++)
12430 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0);
12435 /* TC min bandwidth setting */
12437 cmd_vf_tc_min_bw_parsed(
12438 void *parsed_result,
12439 __rte_unused struct cmdline *cl,
12440 __rte_unused void *data)
12442 struct cmd_vf_tc_bw_result *res = parsed_result;
12445 int ret = -ENOTSUP;
12447 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12450 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12454 #ifdef RTE_NET_I40E
12455 ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id,
12463 printf("invalid vf_id %d or bandwidth\n", res->vf_id);
12466 printf("invalid port_id %d\n", res->port_id);
12469 printf("function not implemented\n");
12472 printf("programming error: (%s)\n", strerror(-ret));
12476 cmdline_parse_inst_t cmd_vf_tc_min_bw = {
12477 .f = cmd_vf_tc_min_bw_parsed,
12479 .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>"
12480 " <bw1, bw2, ...>",
12482 (void *)&cmd_vf_tc_bw_set,
12483 (void *)&cmd_vf_tc_bw_vf,
12484 (void *)&cmd_vf_tc_bw_tc,
12485 (void *)&cmd_vf_tc_bw_tx,
12486 (void *)&cmd_vf_tc_bw_min_bw,
12487 (void *)&cmd_vf_tc_bw_port_id,
12488 (void *)&cmd_vf_tc_bw_vf_id,
12489 (void *)&cmd_vf_tc_bw_bw_list,
12495 cmd_tc_min_bw_parsed(
12496 void *parsed_result,
12497 __rte_unused struct cmdline *cl,
12498 __rte_unused void *data)
12500 struct cmd_vf_tc_bw_result *res = parsed_result;
12501 struct rte_port *port;
12504 int ret = -ENOTSUP;
12506 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12509 port = &ports[res->port_id];
12510 /** Check if the port is not started **/
12511 if (port->port_status != RTE_PORT_STOPPED) {
12512 printf("Please stop port %d first\n", res->port_id);
12516 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12520 #ifdef RTE_NET_IXGBE
12521 ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw);
12528 printf("invalid bandwidth\n");
12531 printf("invalid port_id %d\n", res->port_id);
12534 printf("function not implemented\n");
12537 printf("programming error: (%s)\n", strerror(-ret));
12541 cmdline_parse_inst_t cmd_tc_min_bw = {
12542 .f = cmd_tc_min_bw_parsed,
12544 .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>",
12546 (void *)&cmd_vf_tc_bw_set,
12547 (void *)&cmd_vf_tc_bw_tc,
12548 (void *)&cmd_vf_tc_bw_tx,
12549 (void *)&cmd_vf_tc_bw_min_bw,
12550 (void *)&cmd_vf_tc_bw_port_id,
12551 (void *)&cmd_vf_tc_bw_bw_list,
12556 /* TC max bandwidth setting */
12558 cmd_vf_tc_max_bw_parsed(
12559 void *parsed_result,
12560 __rte_unused struct cmdline *cl,
12561 __rte_unused void *data)
12563 struct cmd_vf_tc_bw_result *res = parsed_result;
12564 int ret = -ENOTSUP;
12566 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12569 #ifdef RTE_NET_I40E
12570 ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id,
12571 res->tc_no, res->bw);
12578 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n",
12579 res->vf_id, res->tc_no, res->bw);
12582 printf("invalid port_id %d\n", res->port_id);
12585 printf("function not implemented\n");
12588 printf("programming error: (%s)\n", strerror(-ret));
12592 cmdline_parse_inst_t cmd_vf_tc_max_bw = {
12593 .f = cmd_vf_tc_max_bw_parsed,
12595 .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>"
12598 (void *)&cmd_vf_tc_bw_set,
12599 (void *)&cmd_vf_tc_bw_vf,
12600 (void *)&cmd_vf_tc_bw_tc,
12601 (void *)&cmd_vf_tc_bw_tx,
12602 (void *)&cmd_vf_tc_bw_max_bw,
12603 (void *)&cmd_vf_tc_bw_port_id,
12604 (void *)&cmd_vf_tc_bw_vf_id,
12605 (void *)&cmd_vf_tc_bw_tc_no,
12606 (void *)&cmd_vf_tc_bw_bw,
12611 /** Set VXLAN encapsulation details */
12612 struct cmd_set_vxlan_result {
12613 cmdline_fixed_string_t set;
12614 cmdline_fixed_string_t vxlan;
12615 cmdline_fixed_string_t pos_token;
12616 cmdline_fixed_string_t ip_version;
12617 uint32_t vlan_present:1;
12621 cmdline_ipaddr_t ip_src;
12622 cmdline_ipaddr_t ip_dst;
12626 struct rte_ether_addr eth_src;
12627 struct rte_ether_addr eth_dst;
12630 cmdline_parse_token_string_t cmd_set_vxlan_set =
12631 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, set, "set");
12632 cmdline_parse_token_string_t cmd_set_vxlan_vxlan =
12633 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, "vxlan");
12634 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_tos_ttl =
12635 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
12637 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_with_vlan =
12638 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
12639 "vxlan-with-vlan");
12640 cmdline_parse_token_string_t cmd_set_vxlan_ip_version =
12641 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12643 cmdline_parse_token_string_t cmd_set_vxlan_ip_version_value =
12644 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, ip_version,
12646 cmdline_parse_token_string_t cmd_set_vxlan_vni =
12647 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12649 cmdline_parse_token_num_t cmd_set_vxlan_vni_value =
12650 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, vni, RTE_UINT32);
12651 cmdline_parse_token_string_t cmd_set_vxlan_udp_src =
12652 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12654 cmdline_parse_token_num_t cmd_set_vxlan_udp_src_value =
12655 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_src, RTE_UINT16);
12656 cmdline_parse_token_string_t cmd_set_vxlan_udp_dst =
12657 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12659 cmdline_parse_token_num_t cmd_set_vxlan_udp_dst_value =
12660 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_dst, RTE_UINT16);
12661 cmdline_parse_token_string_t cmd_set_vxlan_ip_tos =
12662 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12664 cmdline_parse_token_num_t cmd_set_vxlan_ip_tos_value =
12665 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tos, RTE_UINT8);
12666 cmdline_parse_token_string_t cmd_set_vxlan_ip_ttl =
12667 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12669 cmdline_parse_token_num_t cmd_set_vxlan_ip_ttl_value =
12670 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, ttl, RTE_UINT8);
12671 cmdline_parse_token_string_t cmd_set_vxlan_ip_src =
12672 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12674 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_src_value =
12675 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_src);
12676 cmdline_parse_token_string_t cmd_set_vxlan_ip_dst =
12677 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12679 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_dst_value =
12680 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_dst);
12681 cmdline_parse_token_string_t cmd_set_vxlan_vlan =
12682 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12684 cmdline_parse_token_num_t cmd_set_vxlan_vlan_value =
12685 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tci, RTE_UINT16);
12686 cmdline_parse_token_string_t cmd_set_vxlan_eth_src =
12687 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12689 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_src_value =
12690 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_src);
12691 cmdline_parse_token_string_t cmd_set_vxlan_eth_dst =
12692 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12694 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_dst_value =
12695 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_dst);
12697 static void cmd_set_vxlan_parsed(void *parsed_result,
12698 __rte_unused struct cmdline *cl,
12699 __rte_unused void *data)
12701 struct cmd_set_vxlan_result *res = parsed_result;
12706 .vxlan_id = rte_cpu_to_be_32(res->vni) & RTE_BE32(0x00ffffff),
12709 vxlan_encap_conf.select_tos_ttl = 0;
12710 if (strcmp(res->vxlan, "vxlan") == 0)
12711 vxlan_encap_conf.select_vlan = 0;
12712 else if (strcmp(res->vxlan, "vxlan-with-vlan") == 0)
12713 vxlan_encap_conf.select_vlan = 1;
12714 else if (strcmp(res->vxlan, "vxlan-tos-ttl") == 0) {
12715 vxlan_encap_conf.select_vlan = 0;
12716 vxlan_encap_conf.select_tos_ttl = 1;
12718 if (strcmp(res->ip_version, "ipv4") == 0)
12719 vxlan_encap_conf.select_ipv4 = 1;
12720 else if (strcmp(res->ip_version, "ipv6") == 0)
12721 vxlan_encap_conf.select_ipv4 = 0;
12724 rte_memcpy(vxlan_encap_conf.vni, &id.vni[1], 3);
12725 vxlan_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
12726 vxlan_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
12727 vxlan_encap_conf.ip_tos = res->tos;
12728 vxlan_encap_conf.ip_ttl = res->ttl;
12729 if (vxlan_encap_conf.select_ipv4) {
12730 IPV4_ADDR_TO_UINT(res->ip_src, vxlan_encap_conf.ipv4_src);
12731 IPV4_ADDR_TO_UINT(res->ip_dst, vxlan_encap_conf.ipv4_dst);
12733 IPV6_ADDR_TO_ARRAY(res->ip_src, vxlan_encap_conf.ipv6_src);
12734 IPV6_ADDR_TO_ARRAY(res->ip_dst, vxlan_encap_conf.ipv6_dst);
12736 if (vxlan_encap_conf.select_vlan)
12737 vxlan_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
12738 rte_memcpy(vxlan_encap_conf.eth_src, res->eth_src.addr_bytes,
12739 RTE_ETHER_ADDR_LEN);
12740 rte_memcpy(vxlan_encap_conf.eth_dst, res->eth_dst.addr_bytes,
12741 RTE_ETHER_ADDR_LEN);
12744 cmdline_parse_inst_t cmd_set_vxlan = {
12745 .f = cmd_set_vxlan_parsed,
12747 .help_str = "set vxlan ip-version ipv4|ipv6 vni <vni> udp-src"
12748 " <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst <ip-dst>"
12749 " eth-src <eth-src> eth-dst <eth-dst>",
12751 (void *)&cmd_set_vxlan_set,
12752 (void *)&cmd_set_vxlan_vxlan,
12753 (void *)&cmd_set_vxlan_ip_version,
12754 (void *)&cmd_set_vxlan_ip_version_value,
12755 (void *)&cmd_set_vxlan_vni,
12756 (void *)&cmd_set_vxlan_vni_value,
12757 (void *)&cmd_set_vxlan_udp_src,
12758 (void *)&cmd_set_vxlan_udp_src_value,
12759 (void *)&cmd_set_vxlan_udp_dst,
12760 (void *)&cmd_set_vxlan_udp_dst_value,
12761 (void *)&cmd_set_vxlan_ip_src,
12762 (void *)&cmd_set_vxlan_ip_src_value,
12763 (void *)&cmd_set_vxlan_ip_dst,
12764 (void *)&cmd_set_vxlan_ip_dst_value,
12765 (void *)&cmd_set_vxlan_eth_src,
12766 (void *)&cmd_set_vxlan_eth_src_value,
12767 (void *)&cmd_set_vxlan_eth_dst,
12768 (void *)&cmd_set_vxlan_eth_dst_value,
12773 cmdline_parse_inst_t cmd_set_vxlan_tos_ttl = {
12774 .f = cmd_set_vxlan_parsed,
12776 .help_str = "set vxlan-tos-ttl ip-version ipv4|ipv6 vni <vni> udp-src"
12777 " <udp-src> udp-dst <udp-dst> ip-tos <ip-tos> ip-ttl <ip-ttl>"
12778 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
12779 " eth-dst <eth-dst>",
12781 (void *)&cmd_set_vxlan_set,
12782 (void *)&cmd_set_vxlan_vxlan_tos_ttl,
12783 (void *)&cmd_set_vxlan_ip_version,
12784 (void *)&cmd_set_vxlan_ip_version_value,
12785 (void *)&cmd_set_vxlan_vni,
12786 (void *)&cmd_set_vxlan_vni_value,
12787 (void *)&cmd_set_vxlan_udp_src,
12788 (void *)&cmd_set_vxlan_udp_src_value,
12789 (void *)&cmd_set_vxlan_udp_dst,
12790 (void *)&cmd_set_vxlan_udp_dst_value,
12791 (void *)&cmd_set_vxlan_ip_tos,
12792 (void *)&cmd_set_vxlan_ip_tos_value,
12793 (void *)&cmd_set_vxlan_ip_ttl,
12794 (void *)&cmd_set_vxlan_ip_ttl_value,
12795 (void *)&cmd_set_vxlan_ip_src,
12796 (void *)&cmd_set_vxlan_ip_src_value,
12797 (void *)&cmd_set_vxlan_ip_dst,
12798 (void *)&cmd_set_vxlan_ip_dst_value,
12799 (void *)&cmd_set_vxlan_eth_src,
12800 (void *)&cmd_set_vxlan_eth_src_value,
12801 (void *)&cmd_set_vxlan_eth_dst,
12802 (void *)&cmd_set_vxlan_eth_dst_value,
12807 cmdline_parse_inst_t cmd_set_vxlan_with_vlan = {
12808 .f = cmd_set_vxlan_parsed,
12810 .help_str = "set vxlan-with-vlan ip-version ipv4|ipv6 vni <vni>"
12811 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst"
12812 " <ip-dst> vlan-tci <vlan-tci> eth-src <eth-src> eth-dst"
12815 (void *)&cmd_set_vxlan_set,
12816 (void *)&cmd_set_vxlan_vxlan_with_vlan,
12817 (void *)&cmd_set_vxlan_ip_version,
12818 (void *)&cmd_set_vxlan_ip_version_value,
12819 (void *)&cmd_set_vxlan_vni,
12820 (void *)&cmd_set_vxlan_vni_value,
12821 (void *)&cmd_set_vxlan_udp_src,
12822 (void *)&cmd_set_vxlan_udp_src_value,
12823 (void *)&cmd_set_vxlan_udp_dst,
12824 (void *)&cmd_set_vxlan_udp_dst_value,
12825 (void *)&cmd_set_vxlan_ip_src,
12826 (void *)&cmd_set_vxlan_ip_src_value,
12827 (void *)&cmd_set_vxlan_ip_dst,
12828 (void *)&cmd_set_vxlan_ip_dst_value,
12829 (void *)&cmd_set_vxlan_vlan,
12830 (void *)&cmd_set_vxlan_vlan_value,
12831 (void *)&cmd_set_vxlan_eth_src,
12832 (void *)&cmd_set_vxlan_eth_src_value,
12833 (void *)&cmd_set_vxlan_eth_dst,
12834 (void *)&cmd_set_vxlan_eth_dst_value,
12839 /** Set NVGRE encapsulation details */
12840 struct cmd_set_nvgre_result {
12841 cmdline_fixed_string_t set;
12842 cmdline_fixed_string_t nvgre;
12843 cmdline_fixed_string_t pos_token;
12844 cmdline_fixed_string_t ip_version;
12846 cmdline_ipaddr_t ip_src;
12847 cmdline_ipaddr_t ip_dst;
12849 struct rte_ether_addr eth_src;
12850 struct rte_ether_addr eth_dst;
12853 cmdline_parse_token_string_t cmd_set_nvgre_set =
12854 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, set, "set");
12855 cmdline_parse_token_string_t cmd_set_nvgre_nvgre =
12856 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, "nvgre");
12857 cmdline_parse_token_string_t cmd_set_nvgre_nvgre_with_vlan =
12858 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre,
12859 "nvgre-with-vlan");
12860 cmdline_parse_token_string_t cmd_set_nvgre_ip_version =
12861 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12863 cmdline_parse_token_string_t cmd_set_nvgre_ip_version_value =
12864 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, ip_version,
12866 cmdline_parse_token_string_t cmd_set_nvgre_tni =
12867 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12869 cmdline_parse_token_num_t cmd_set_nvgre_tni_value =
12870 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tni, RTE_UINT32);
12871 cmdline_parse_token_string_t cmd_set_nvgre_ip_src =
12872 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12874 cmdline_parse_token_num_t cmd_set_nvgre_ip_src_value =
12875 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_src);
12876 cmdline_parse_token_string_t cmd_set_nvgre_ip_dst =
12877 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12879 cmdline_parse_token_ipaddr_t cmd_set_nvgre_ip_dst_value =
12880 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_dst);
12881 cmdline_parse_token_string_t cmd_set_nvgre_vlan =
12882 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12884 cmdline_parse_token_num_t cmd_set_nvgre_vlan_value =
12885 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tci, RTE_UINT16);
12886 cmdline_parse_token_string_t cmd_set_nvgre_eth_src =
12887 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12889 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_src_value =
12890 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_src);
12891 cmdline_parse_token_string_t cmd_set_nvgre_eth_dst =
12892 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12894 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_dst_value =
12895 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_dst);
12897 static void cmd_set_nvgre_parsed(void *parsed_result,
12898 __rte_unused struct cmdline *cl,
12899 __rte_unused void *data)
12901 struct cmd_set_nvgre_result *res = parsed_result;
12903 uint32_t nvgre_tni;
12906 .nvgre_tni = rte_cpu_to_be_32(res->tni) & RTE_BE32(0x00ffffff),
12909 if (strcmp(res->nvgre, "nvgre") == 0)
12910 nvgre_encap_conf.select_vlan = 0;
12911 else if (strcmp(res->nvgre, "nvgre-with-vlan") == 0)
12912 nvgre_encap_conf.select_vlan = 1;
12913 if (strcmp(res->ip_version, "ipv4") == 0)
12914 nvgre_encap_conf.select_ipv4 = 1;
12915 else if (strcmp(res->ip_version, "ipv6") == 0)
12916 nvgre_encap_conf.select_ipv4 = 0;
12919 rte_memcpy(nvgre_encap_conf.tni, &id.tni[1], 3);
12920 if (nvgre_encap_conf.select_ipv4) {
12921 IPV4_ADDR_TO_UINT(res->ip_src, nvgre_encap_conf.ipv4_src);
12922 IPV4_ADDR_TO_UINT(res->ip_dst, nvgre_encap_conf.ipv4_dst);
12924 IPV6_ADDR_TO_ARRAY(res->ip_src, nvgre_encap_conf.ipv6_src);
12925 IPV6_ADDR_TO_ARRAY(res->ip_dst, nvgre_encap_conf.ipv6_dst);
12927 if (nvgre_encap_conf.select_vlan)
12928 nvgre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
12929 rte_memcpy(nvgre_encap_conf.eth_src, res->eth_src.addr_bytes,
12930 RTE_ETHER_ADDR_LEN);
12931 rte_memcpy(nvgre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
12932 RTE_ETHER_ADDR_LEN);
12935 cmdline_parse_inst_t cmd_set_nvgre = {
12936 .f = cmd_set_nvgre_parsed,
12938 .help_str = "set nvgre ip-version <ipv4|ipv6> tni <tni> ip-src"
12939 " <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
12940 " eth-dst <eth-dst>",
12942 (void *)&cmd_set_nvgre_set,
12943 (void *)&cmd_set_nvgre_nvgre,
12944 (void *)&cmd_set_nvgre_ip_version,
12945 (void *)&cmd_set_nvgre_ip_version_value,
12946 (void *)&cmd_set_nvgre_tni,
12947 (void *)&cmd_set_nvgre_tni_value,
12948 (void *)&cmd_set_nvgre_ip_src,
12949 (void *)&cmd_set_nvgre_ip_src_value,
12950 (void *)&cmd_set_nvgre_ip_dst,
12951 (void *)&cmd_set_nvgre_ip_dst_value,
12952 (void *)&cmd_set_nvgre_eth_src,
12953 (void *)&cmd_set_nvgre_eth_src_value,
12954 (void *)&cmd_set_nvgre_eth_dst,
12955 (void *)&cmd_set_nvgre_eth_dst_value,
12960 cmdline_parse_inst_t cmd_set_nvgre_with_vlan = {
12961 .f = cmd_set_nvgre_parsed,
12963 .help_str = "set nvgre-with-vlan ip-version <ipv4|ipv6> tni <tni>"
12964 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
12965 " eth-src <eth-src> eth-dst <eth-dst>",
12967 (void *)&cmd_set_nvgre_set,
12968 (void *)&cmd_set_nvgre_nvgre_with_vlan,
12969 (void *)&cmd_set_nvgre_ip_version,
12970 (void *)&cmd_set_nvgre_ip_version_value,
12971 (void *)&cmd_set_nvgre_tni,
12972 (void *)&cmd_set_nvgre_tni_value,
12973 (void *)&cmd_set_nvgre_ip_src,
12974 (void *)&cmd_set_nvgre_ip_src_value,
12975 (void *)&cmd_set_nvgre_ip_dst,
12976 (void *)&cmd_set_nvgre_ip_dst_value,
12977 (void *)&cmd_set_nvgre_vlan,
12978 (void *)&cmd_set_nvgre_vlan_value,
12979 (void *)&cmd_set_nvgre_eth_src,
12980 (void *)&cmd_set_nvgre_eth_src_value,
12981 (void *)&cmd_set_nvgre_eth_dst,
12982 (void *)&cmd_set_nvgre_eth_dst_value,
12987 /** Set L2 encapsulation details */
12988 struct cmd_set_l2_encap_result {
12989 cmdline_fixed_string_t set;
12990 cmdline_fixed_string_t l2_encap;
12991 cmdline_fixed_string_t pos_token;
12992 cmdline_fixed_string_t ip_version;
12993 uint32_t vlan_present:1;
12995 struct rte_ether_addr eth_src;
12996 struct rte_ether_addr eth_dst;
12999 cmdline_parse_token_string_t cmd_set_l2_encap_set =
13000 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, set, "set");
13001 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap =
13002 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, "l2_encap");
13003 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap_with_vlan =
13004 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap,
13005 "l2_encap-with-vlan");
13006 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version =
13007 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13009 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version_value =
13010 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, ip_version,
13012 cmdline_parse_token_string_t cmd_set_l2_encap_vlan =
13013 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13015 cmdline_parse_token_num_t cmd_set_l2_encap_vlan_value =
13016 TOKEN_NUM_INITIALIZER(struct cmd_set_l2_encap_result, tci, RTE_UINT16);
13017 cmdline_parse_token_string_t cmd_set_l2_encap_eth_src =
13018 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13020 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_src_value =
13021 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_src);
13022 cmdline_parse_token_string_t cmd_set_l2_encap_eth_dst =
13023 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13025 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_dst_value =
13026 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_dst);
13028 static void cmd_set_l2_encap_parsed(void *parsed_result,
13029 __rte_unused struct cmdline *cl,
13030 __rte_unused void *data)
13032 struct cmd_set_l2_encap_result *res = parsed_result;
13034 if (strcmp(res->l2_encap, "l2_encap") == 0)
13035 l2_encap_conf.select_vlan = 0;
13036 else if (strcmp(res->l2_encap, "l2_encap-with-vlan") == 0)
13037 l2_encap_conf.select_vlan = 1;
13038 if (strcmp(res->ip_version, "ipv4") == 0)
13039 l2_encap_conf.select_ipv4 = 1;
13040 else if (strcmp(res->ip_version, "ipv6") == 0)
13041 l2_encap_conf.select_ipv4 = 0;
13044 if (l2_encap_conf.select_vlan)
13045 l2_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13046 rte_memcpy(l2_encap_conf.eth_src, res->eth_src.addr_bytes,
13047 RTE_ETHER_ADDR_LEN);
13048 rte_memcpy(l2_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13049 RTE_ETHER_ADDR_LEN);
13052 cmdline_parse_inst_t cmd_set_l2_encap = {
13053 .f = cmd_set_l2_encap_parsed,
13055 .help_str = "set l2_encap ip-version ipv4|ipv6"
13056 " eth-src <eth-src> eth-dst <eth-dst>",
13058 (void *)&cmd_set_l2_encap_set,
13059 (void *)&cmd_set_l2_encap_l2_encap,
13060 (void *)&cmd_set_l2_encap_ip_version,
13061 (void *)&cmd_set_l2_encap_ip_version_value,
13062 (void *)&cmd_set_l2_encap_eth_src,
13063 (void *)&cmd_set_l2_encap_eth_src_value,
13064 (void *)&cmd_set_l2_encap_eth_dst,
13065 (void *)&cmd_set_l2_encap_eth_dst_value,
13070 cmdline_parse_inst_t cmd_set_l2_encap_with_vlan = {
13071 .f = cmd_set_l2_encap_parsed,
13073 .help_str = "set l2_encap-with-vlan ip-version ipv4|ipv6"
13074 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
13076 (void *)&cmd_set_l2_encap_set,
13077 (void *)&cmd_set_l2_encap_l2_encap_with_vlan,
13078 (void *)&cmd_set_l2_encap_ip_version,
13079 (void *)&cmd_set_l2_encap_ip_version_value,
13080 (void *)&cmd_set_l2_encap_vlan,
13081 (void *)&cmd_set_l2_encap_vlan_value,
13082 (void *)&cmd_set_l2_encap_eth_src,
13083 (void *)&cmd_set_l2_encap_eth_src_value,
13084 (void *)&cmd_set_l2_encap_eth_dst,
13085 (void *)&cmd_set_l2_encap_eth_dst_value,
13090 /** Set L2 decapsulation details */
13091 struct cmd_set_l2_decap_result {
13092 cmdline_fixed_string_t set;
13093 cmdline_fixed_string_t l2_decap;
13094 cmdline_fixed_string_t pos_token;
13095 uint32_t vlan_present:1;
13098 cmdline_parse_token_string_t cmd_set_l2_decap_set =
13099 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, set, "set");
13100 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap =
13101 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
13103 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap_with_vlan =
13104 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
13105 "l2_decap-with-vlan");
13107 static void cmd_set_l2_decap_parsed(void *parsed_result,
13108 __rte_unused struct cmdline *cl,
13109 __rte_unused void *data)
13111 struct cmd_set_l2_decap_result *res = parsed_result;
13113 if (strcmp(res->l2_decap, "l2_decap") == 0)
13114 l2_decap_conf.select_vlan = 0;
13115 else if (strcmp(res->l2_decap, "l2_decap-with-vlan") == 0)
13116 l2_decap_conf.select_vlan = 1;
13119 cmdline_parse_inst_t cmd_set_l2_decap = {
13120 .f = cmd_set_l2_decap_parsed,
13122 .help_str = "set l2_decap",
13124 (void *)&cmd_set_l2_decap_set,
13125 (void *)&cmd_set_l2_decap_l2_decap,
13130 cmdline_parse_inst_t cmd_set_l2_decap_with_vlan = {
13131 .f = cmd_set_l2_decap_parsed,
13133 .help_str = "set l2_decap-with-vlan",
13135 (void *)&cmd_set_l2_decap_set,
13136 (void *)&cmd_set_l2_decap_l2_decap_with_vlan,
13141 /** Set MPLSoGRE encapsulation details */
13142 struct cmd_set_mplsogre_encap_result {
13143 cmdline_fixed_string_t set;
13144 cmdline_fixed_string_t mplsogre;
13145 cmdline_fixed_string_t pos_token;
13146 cmdline_fixed_string_t ip_version;
13147 uint32_t vlan_present:1;
13149 cmdline_ipaddr_t ip_src;
13150 cmdline_ipaddr_t ip_dst;
13152 struct rte_ether_addr eth_src;
13153 struct rte_ether_addr eth_dst;
13156 cmdline_parse_token_string_t cmd_set_mplsogre_encap_set =
13157 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, set,
13159 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap =
13160 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, mplsogre,
13162 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap_with_vlan =
13163 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13164 mplsogre, "mplsogre_encap-with-vlan");
13165 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version =
13166 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13167 pos_token, "ip-version");
13168 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version_value =
13169 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13170 ip_version, "ipv4#ipv6");
13171 cmdline_parse_token_string_t cmd_set_mplsogre_encap_label =
13172 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13173 pos_token, "label");
13174 cmdline_parse_token_num_t cmd_set_mplsogre_encap_label_value =
13175 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, label,
13177 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_src =
13178 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13179 pos_token, "ip-src");
13180 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_src_value =
13181 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_src);
13182 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_dst =
13183 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13184 pos_token, "ip-dst");
13185 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_dst_value =
13186 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_dst);
13187 cmdline_parse_token_string_t cmd_set_mplsogre_encap_vlan =
13188 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13189 pos_token, "vlan-tci");
13190 cmdline_parse_token_num_t cmd_set_mplsogre_encap_vlan_value =
13191 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, tci,
13193 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_src =
13194 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13195 pos_token, "eth-src");
13196 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_src_value =
13197 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13199 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_dst =
13200 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13201 pos_token, "eth-dst");
13202 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_dst_value =
13203 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13206 static void cmd_set_mplsogre_encap_parsed(void *parsed_result,
13207 __rte_unused struct cmdline *cl,
13208 __rte_unused void *data)
13210 struct cmd_set_mplsogre_encap_result *res = parsed_result;
13212 uint32_t mplsogre_label;
13215 .mplsogre_label = rte_cpu_to_be_32(res->label<<12),
13218 if (strcmp(res->mplsogre, "mplsogre_encap") == 0)
13219 mplsogre_encap_conf.select_vlan = 0;
13220 else if (strcmp(res->mplsogre, "mplsogre_encap-with-vlan") == 0)
13221 mplsogre_encap_conf.select_vlan = 1;
13222 if (strcmp(res->ip_version, "ipv4") == 0)
13223 mplsogre_encap_conf.select_ipv4 = 1;
13224 else if (strcmp(res->ip_version, "ipv6") == 0)
13225 mplsogre_encap_conf.select_ipv4 = 0;
13228 rte_memcpy(mplsogre_encap_conf.label, &id.label, 3);
13229 if (mplsogre_encap_conf.select_ipv4) {
13230 IPV4_ADDR_TO_UINT(res->ip_src, mplsogre_encap_conf.ipv4_src);
13231 IPV4_ADDR_TO_UINT(res->ip_dst, mplsogre_encap_conf.ipv4_dst);
13233 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsogre_encap_conf.ipv6_src);
13234 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsogre_encap_conf.ipv6_dst);
13236 if (mplsogre_encap_conf.select_vlan)
13237 mplsogre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13238 rte_memcpy(mplsogre_encap_conf.eth_src, res->eth_src.addr_bytes,
13239 RTE_ETHER_ADDR_LEN);
13240 rte_memcpy(mplsogre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13241 RTE_ETHER_ADDR_LEN);
13244 cmdline_parse_inst_t cmd_set_mplsogre_encap = {
13245 .f = cmd_set_mplsogre_encap_parsed,
13247 .help_str = "set mplsogre_encap ip-version ipv4|ipv6 label <label>"
13248 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
13249 " eth-dst <eth-dst>",
13251 (void *)&cmd_set_mplsogre_encap_set,
13252 (void *)&cmd_set_mplsogre_encap_mplsogre_encap,
13253 (void *)&cmd_set_mplsogre_encap_ip_version,
13254 (void *)&cmd_set_mplsogre_encap_ip_version_value,
13255 (void *)&cmd_set_mplsogre_encap_label,
13256 (void *)&cmd_set_mplsogre_encap_label_value,
13257 (void *)&cmd_set_mplsogre_encap_ip_src,
13258 (void *)&cmd_set_mplsogre_encap_ip_src_value,
13259 (void *)&cmd_set_mplsogre_encap_ip_dst,
13260 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
13261 (void *)&cmd_set_mplsogre_encap_eth_src,
13262 (void *)&cmd_set_mplsogre_encap_eth_src_value,
13263 (void *)&cmd_set_mplsogre_encap_eth_dst,
13264 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
13269 cmdline_parse_inst_t cmd_set_mplsogre_encap_with_vlan = {
13270 .f = cmd_set_mplsogre_encap_parsed,
13272 .help_str = "set mplsogre_encap-with-vlan ip-version ipv4|ipv6"
13273 " label <label> ip-src <ip-src> ip-dst <ip-dst>"
13274 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
13276 (void *)&cmd_set_mplsogre_encap_set,
13277 (void *)&cmd_set_mplsogre_encap_mplsogre_encap_with_vlan,
13278 (void *)&cmd_set_mplsogre_encap_ip_version,
13279 (void *)&cmd_set_mplsogre_encap_ip_version_value,
13280 (void *)&cmd_set_mplsogre_encap_label,
13281 (void *)&cmd_set_mplsogre_encap_label_value,
13282 (void *)&cmd_set_mplsogre_encap_ip_src,
13283 (void *)&cmd_set_mplsogre_encap_ip_src_value,
13284 (void *)&cmd_set_mplsogre_encap_ip_dst,
13285 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
13286 (void *)&cmd_set_mplsogre_encap_vlan,
13287 (void *)&cmd_set_mplsogre_encap_vlan_value,
13288 (void *)&cmd_set_mplsogre_encap_eth_src,
13289 (void *)&cmd_set_mplsogre_encap_eth_src_value,
13290 (void *)&cmd_set_mplsogre_encap_eth_dst,
13291 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
13296 /** Set MPLSoGRE decapsulation details */
13297 struct cmd_set_mplsogre_decap_result {
13298 cmdline_fixed_string_t set;
13299 cmdline_fixed_string_t mplsogre;
13300 cmdline_fixed_string_t pos_token;
13301 cmdline_fixed_string_t ip_version;
13302 uint32_t vlan_present:1;
13305 cmdline_parse_token_string_t cmd_set_mplsogre_decap_set =
13306 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, set,
13308 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap =
13309 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, mplsogre,
13311 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap_with_vlan =
13312 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13313 mplsogre, "mplsogre_decap-with-vlan");
13314 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version =
13315 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13316 pos_token, "ip-version");
13317 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version_value =
13318 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13319 ip_version, "ipv4#ipv6");
13321 static void cmd_set_mplsogre_decap_parsed(void *parsed_result,
13322 __rte_unused struct cmdline *cl,
13323 __rte_unused void *data)
13325 struct cmd_set_mplsogre_decap_result *res = parsed_result;
13327 if (strcmp(res->mplsogre, "mplsogre_decap") == 0)
13328 mplsogre_decap_conf.select_vlan = 0;
13329 else if (strcmp(res->mplsogre, "mplsogre_decap-with-vlan") == 0)
13330 mplsogre_decap_conf.select_vlan = 1;
13331 if (strcmp(res->ip_version, "ipv4") == 0)
13332 mplsogre_decap_conf.select_ipv4 = 1;
13333 else if (strcmp(res->ip_version, "ipv6") == 0)
13334 mplsogre_decap_conf.select_ipv4 = 0;
13337 cmdline_parse_inst_t cmd_set_mplsogre_decap = {
13338 .f = cmd_set_mplsogre_decap_parsed,
13340 .help_str = "set mplsogre_decap ip-version ipv4|ipv6",
13342 (void *)&cmd_set_mplsogre_decap_set,
13343 (void *)&cmd_set_mplsogre_decap_mplsogre_decap,
13344 (void *)&cmd_set_mplsogre_decap_ip_version,
13345 (void *)&cmd_set_mplsogre_decap_ip_version_value,
13350 cmdline_parse_inst_t cmd_set_mplsogre_decap_with_vlan = {
13351 .f = cmd_set_mplsogre_decap_parsed,
13353 .help_str = "set mplsogre_decap-with-vlan ip-version ipv4|ipv6",
13355 (void *)&cmd_set_mplsogre_decap_set,
13356 (void *)&cmd_set_mplsogre_decap_mplsogre_decap_with_vlan,
13357 (void *)&cmd_set_mplsogre_decap_ip_version,
13358 (void *)&cmd_set_mplsogre_decap_ip_version_value,
13363 /** Set MPLSoUDP encapsulation details */
13364 struct cmd_set_mplsoudp_encap_result {
13365 cmdline_fixed_string_t set;
13366 cmdline_fixed_string_t mplsoudp;
13367 cmdline_fixed_string_t pos_token;
13368 cmdline_fixed_string_t ip_version;
13369 uint32_t vlan_present:1;
13373 cmdline_ipaddr_t ip_src;
13374 cmdline_ipaddr_t ip_dst;
13376 struct rte_ether_addr eth_src;
13377 struct rte_ether_addr eth_dst;
13380 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_set =
13381 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, set,
13383 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap =
13384 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, mplsoudp,
13386 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan =
13387 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13388 mplsoudp, "mplsoudp_encap-with-vlan");
13389 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version =
13390 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13391 pos_token, "ip-version");
13392 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version_value =
13393 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13394 ip_version, "ipv4#ipv6");
13395 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_label =
13396 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13397 pos_token, "label");
13398 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_label_value =
13399 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, label,
13401 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_src =
13402 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13403 pos_token, "udp-src");
13404 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_src_value =
13405 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_src,
13407 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_dst =
13408 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13409 pos_token, "udp-dst");
13410 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_dst_value =
13411 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_dst,
13413 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_src =
13414 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13415 pos_token, "ip-src");
13416 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_src_value =
13417 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_src);
13418 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_dst =
13419 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13420 pos_token, "ip-dst");
13421 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_dst_value =
13422 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_dst);
13423 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_vlan =
13424 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13425 pos_token, "vlan-tci");
13426 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_vlan_value =
13427 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, tci,
13429 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_src =
13430 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13431 pos_token, "eth-src");
13432 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_src_value =
13433 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13435 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_dst =
13436 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13437 pos_token, "eth-dst");
13438 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_dst_value =
13439 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13442 static void cmd_set_mplsoudp_encap_parsed(void *parsed_result,
13443 __rte_unused struct cmdline *cl,
13444 __rte_unused void *data)
13446 struct cmd_set_mplsoudp_encap_result *res = parsed_result;
13448 uint32_t mplsoudp_label;
13451 .mplsoudp_label = rte_cpu_to_be_32(res->label<<12),
13454 if (strcmp(res->mplsoudp, "mplsoudp_encap") == 0)
13455 mplsoudp_encap_conf.select_vlan = 0;
13456 else if (strcmp(res->mplsoudp, "mplsoudp_encap-with-vlan") == 0)
13457 mplsoudp_encap_conf.select_vlan = 1;
13458 if (strcmp(res->ip_version, "ipv4") == 0)
13459 mplsoudp_encap_conf.select_ipv4 = 1;
13460 else if (strcmp(res->ip_version, "ipv6") == 0)
13461 mplsoudp_encap_conf.select_ipv4 = 0;
13464 rte_memcpy(mplsoudp_encap_conf.label, &id.label, 3);
13465 mplsoudp_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
13466 mplsoudp_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
13467 if (mplsoudp_encap_conf.select_ipv4) {
13468 IPV4_ADDR_TO_UINT(res->ip_src, mplsoudp_encap_conf.ipv4_src);
13469 IPV4_ADDR_TO_UINT(res->ip_dst, mplsoudp_encap_conf.ipv4_dst);
13471 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsoudp_encap_conf.ipv6_src);
13472 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsoudp_encap_conf.ipv6_dst);
13474 if (mplsoudp_encap_conf.select_vlan)
13475 mplsoudp_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13476 rte_memcpy(mplsoudp_encap_conf.eth_src, res->eth_src.addr_bytes,
13477 RTE_ETHER_ADDR_LEN);
13478 rte_memcpy(mplsoudp_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13479 RTE_ETHER_ADDR_LEN);
13482 cmdline_parse_inst_t cmd_set_mplsoudp_encap = {
13483 .f = cmd_set_mplsoudp_encap_parsed,
13485 .help_str = "set mplsoudp_encap ip-version ipv4|ipv6 label <label>"
13486 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src>"
13487 " ip-dst <ip-dst> eth-src <eth-src> eth-dst <eth-dst>",
13489 (void *)&cmd_set_mplsoudp_encap_set,
13490 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap,
13491 (void *)&cmd_set_mplsoudp_encap_ip_version,
13492 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
13493 (void *)&cmd_set_mplsoudp_encap_label,
13494 (void *)&cmd_set_mplsoudp_encap_label_value,
13495 (void *)&cmd_set_mplsoudp_encap_udp_src,
13496 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
13497 (void *)&cmd_set_mplsoudp_encap_udp_dst,
13498 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
13499 (void *)&cmd_set_mplsoudp_encap_ip_src,
13500 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
13501 (void *)&cmd_set_mplsoudp_encap_ip_dst,
13502 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
13503 (void *)&cmd_set_mplsoudp_encap_eth_src,
13504 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
13505 (void *)&cmd_set_mplsoudp_encap_eth_dst,
13506 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
13511 cmdline_parse_inst_t cmd_set_mplsoudp_encap_with_vlan = {
13512 .f = cmd_set_mplsoudp_encap_parsed,
13514 .help_str = "set mplsoudp_encap-with-vlan ip-version ipv4|ipv6"
13515 " label <label> udp-src <udp-src> udp-dst <udp-dst>"
13516 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
13517 " eth-src <eth-src> eth-dst <eth-dst>",
13519 (void *)&cmd_set_mplsoudp_encap_set,
13520 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan,
13521 (void *)&cmd_set_mplsoudp_encap_ip_version,
13522 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
13523 (void *)&cmd_set_mplsoudp_encap_label,
13524 (void *)&cmd_set_mplsoudp_encap_label_value,
13525 (void *)&cmd_set_mplsoudp_encap_udp_src,
13526 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
13527 (void *)&cmd_set_mplsoudp_encap_udp_dst,
13528 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
13529 (void *)&cmd_set_mplsoudp_encap_ip_src,
13530 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
13531 (void *)&cmd_set_mplsoudp_encap_ip_dst,
13532 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
13533 (void *)&cmd_set_mplsoudp_encap_vlan,
13534 (void *)&cmd_set_mplsoudp_encap_vlan_value,
13535 (void *)&cmd_set_mplsoudp_encap_eth_src,
13536 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
13537 (void *)&cmd_set_mplsoudp_encap_eth_dst,
13538 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
13543 /** Set MPLSoUDP decapsulation details */
13544 struct cmd_set_mplsoudp_decap_result {
13545 cmdline_fixed_string_t set;
13546 cmdline_fixed_string_t mplsoudp;
13547 cmdline_fixed_string_t pos_token;
13548 cmdline_fixed_string_t ip_version;
13549 uint32_t vlan_present:1;
13552 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_set =
13553 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, set,
13555 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap =
13556 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, mplsoudp,
13558 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan =
13559 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13560 mplsoudp, "mplsoudp_decap-with-vlan");
13561 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version =
13562 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13563 pos_token, "ip-version");
13564 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version_value =
13565 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13566 ip_version, "ipv4#ipv6");
13568 static void cmd_set_mplsoudp_decap_parsed(void *parsed_result,
13569 __rte_unused struct cmdline *cl,
13570 __rte_unused void *data)
13572 struct cmd_set_mplsoudp_decap_result *res = parsed_result;
13574 if (strcmp(res->mplsoudp, "mplsoudp_decap") == 0)
13575 mplsoudp_decap_conf.select_vlan = 0;
13576 else if (strcmp(res->mplsoudp, "mplsoudp_decap-with-vlan") == 0)
13577 mplsoudp_decap_conf.select_vlan = 1;
13578 if (strcmp(res->ip_version, "ipv4") == 0)
13579 mplsoudp_decap_conf.select_ipv4 = 1;
13580 else if (strcmp(res->ip_version, "ipv6") == 0)
13581 mplsoudp_decap_conf.select_ipv4 = 0;
13584 cmdline_parse_inst_t cmd_set_mplsoudp_decap = {
13585 .f = cmd_set_mplsoudp_decap_parsed,
13587 .help_str = "set mplsoudp_decap ip-version ipv4|ipv6",
13589 (void *)&cmd_set_mplsoudp_decap_set,
13590 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap,
13591 (void *)&cmd_set_mplsoudp_decap_ip_version,
13592 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
13597 cmdline_parse_inst_t cmd_set_mplsoudp_decap_with_vlan = {
13598 .f = cmd_set_mplsoudp_decap_parsed,
13600 .help_str = "set mplsoudp_decap-with-vlan ip-version ipv4|ipv6",
13602 (void *)&cmd_set_mplsoudp_decap_set,
13603 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan,
13604 (void *)&cmd_set_mplsoudp_decap_ip_version,
13605 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
13610 /* Strict link priority scheduling mode setting */
13612 cmd_strict_link_prio_parsed(
13613 void *parsed_result,
13614 __rte_unused struct cmdline *cl,
13615 __rte_unused void *data)
13617 struct cmd_vf_tc_bw_result *res = parsed_result;
13618 int ret = -ENOTSUP;
13620 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13623 #ifdef RTE_NET_I40E
13624 ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map);
13631 printf("invalid tc_bitmap 0x%x\n", res->tc_map);
13634 printf("invalid port_id %d\n", res->port_id);
13637 printf("function not implemented\n");
13640 printf("programming error: (%s)\n", strerror(-ret));
13644 cmdline_parse_inst_t cmd_strict_link_prio = {
13645 .f = cmd_strict_link_prio_parsed,
13647 .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>",
13649 (void *)&cmd_vf_tc_bw_set,
13650 (void *)&cmd_vf_tc_bw_tx,
13651 (void *)&cmd_vf_tc_bw_strict_link_prio,
13652 (void *)&cmd_vf_tc_bw_port_id,
13653 (void *)&cmd_vf_tc_bw_tc_map,
13658 /* Load dynamic device personalization*/
13659 struct cmd_ddp_add_result {
13660 cmdline_fixed_string_t ddp;
13661 cmdline_fixed_string_t add;
13666 cmdline_parse_token_string_t cmd_ddp_add_ddp =
13667 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp");
13668 cmdline_parse_token_string_t cmd_ddp_add_add =
13669 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add");
13670 cmdline_parse_token_num_t cmd_ddp_add_port_id =
13671 TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id,
13673 cmdline_parse_token_string_t cmd_ddp_add_filepath =
13674 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL);
13677 cmd_ddp_add_parsed(
13678 void *parsed_result,
13679 __rte_unused struct cmdline *cl,
13680 __rte_unused void *data)
13682 struct cmd_ddp_add_result *res = parsed_result;
13688 int ret = -ENOTSUP;
13690 if (!all_ports_stopped()) {
13691 printf("Please stop all ports first\n");
13695 filepath = strdup(res->filepath);
13696 if (filepath == NULL) {
13697 printf("Failed to allocate memory\n");
13700 file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ',');
13702 buff = open_file(file_fld[0], &size);
13704 free((void *)filepath);
13708 #ifdef RTE_NET_I40E
13709 if (ret == -ENOTSUP)
13710 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
13712 RTE_PMD_I40E_PKG_OP_WR_ADD);
13715 if (ret == -EEXIST)
13716 printf("Profile has already existed.\n");
13718 printf("Failed to load profile.\n");
13719 else if (file_num == 2)
13720 save_file(file_fld[1], buff, size);
13723 free((void *)filepath);
13726 cmdline_parse_inst_t cmd_ddp_add = {
13727 .f = cmd_ddp_add_parsed,
13729 .help_str = "ddp add <port_id> <profile_path[,backup_profile_path]>",
13731 (void *)&cmd_ddp_add_ddp,
13732 (void *)&cmd_ddp_add_add,
13733 (void *)&cmd_ddp_add_port_id,
13734 (void *)&cmd_ddp_add_filepath,
13739 /* Delete dynamic device personalization*/
13740 struct cmd_ddp_del_result {
13741 cmdline_fixed_string_t ddp;
13742 cmdline_fixed_string_t del;
13747 cmdline_parse_token_string_t cmd_ddp_del_ddp =
13748 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp");
13749 cmdline_parse_token_string_t cmd_ddp_del_del =
13750 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del");
13751 cmdline_parse_token_num_t cmd_ddp_del_port_id =
13752 TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, RTE_UINT16);
13753 cmdline_parse_token_string_t cmd_ddp_del_filepath =
13754 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL);
13757 cmd_ddp_del_parsed(
13758 void *parsed_result,
13759 __rte_unused struct cmdline *cl,
13760 __rte_unused void *data)
13762 struct cmd_ddp_del_result *res = parsed_result;
13765 int ret = -ENOTSUP;
13767 if (!all_ports_stopped()) {
13768 printf("Please stop all ports first\n");
13772 buff = open_file(res->filepath, &size);
13776 #ifdef RTE_NET_I40E
13777 if (ret == -ENOTSUP)
13778 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
13780 RTE_PMD_I40E_PKG_OP_WR_DEL);
13783 if (ret == -EACCES)
13784 printf("Profile does not exist.\n");
13786 printf("Failed to delete profile.\n");
13791 cmdline_parse_inst_t cmd_ddp_del = {
13792 .f = cmd_ddp_del_parsed,
13794 .help_str = "ddp del <port_id> <backup_profile_path>",
13796 (void *)&cmd_ddp_del_ddp,
13797 (void *)&cmd_ddp_del_del,
13798 (void *)&cmd_ddp_del_port_id,
13799 (void *)&cmd_ddp_del_filepath,
13804 /* Get dynamic device personalization profile info */
13805 struct cmd_ddp_info_result {
13806 cmdline_fixed_string_t ddp;
13807 cmdline_fixed_string_t get;
13808 cmdline_fixed_string_t info;
13812 cmdline_parse_token_string_t cmd_ddp_info_ddp =
13813 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp");
13814 cmdline_parse_token_string_t cmd_ddp_info_get =
13815 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get");
13816 cmdline_parse_token_string_t cmd_ddp_info_info =
13817 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info");
13818 cmdline_parse_token_string_t cmd_ddp_info_filepath =
13819 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL);
13822 cmd_ddp_info_parsed(
13823 void *parsed_result,
13824 __rte_unused struct cmdline *cl,
13825 __rte_unused void *data)
13827 struct cmd_ddp_info_result *res = parsed_result;
13830 int ret = -ENOTSUP;
13831 #ifdef RTE_NET_I40E
13834 uint32_t buff_size = 0;
13835 struct rte_pmd_i40e_profile_info info;
13836 uint32_t dev_num = 0;
13837 struct rte_pmd_i40e_ddp_device_id *devs;
13838 uint32_t proto_num = 0;
13839 struct rte_pmd_i40e_proto_info *proto = NULL;
13840 uint32_t pctype_num = 0;
13841 struct rte_pmd_i40e_ptype_info *pctype;
13842 uint32_t ptype_num = 0;
13843 struct rte_pmd_i40e_ptype_info *ptype;
13848 pkg = open_file(res->filepath, &pkg_size);
13852 #ifdef RTE_NET_I40E
13853 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13854 (uint8_t *)&info, sizeof(info),
13855 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER);
13857 printf("Global Track id: 0x%x\n", info.track_id);
13858 printf("Global Version: %d.%d.%d.%d\n",
13859 info.version.major,
13860 info.version.minor,
13861 info.version.update,
13862 info.version.draft);
13863 printf("Global Package name: %s\n\n", info.name);
13866 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13867 (uint8_t *)&info, sizeof(info),
13868 RTE_PMD_I40E_PKG_INFO_HEADER);
13870 printf("i40e Profile Track id: 0x%x\n", info.track_id);
13871 printf("i40e Profile Version: %d.%d.%d.%d\n",
13872 info.version.major,
13873 info.version.minor,
13874 info.version.update,
13875 info.version.draft);
13876 printf("i40e Profile name: %s\n\n", info.name);
13879 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13880 (uint8_t *)&buff_size, sizeof(buff_size),
13881 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE);
13882 if (!ret && buff_size) {
13883 buff = (uint8_t *)malloc(buff_size);
13885 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13887 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES);
13889 printf("Package Notes:\n%s\n\n", buff);
13894 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13895 (uint8_t *)&dev_num, sizeof(dev_num),
13896 RTE_PMD_I40E_PKG_INFO_DEVID_NUM);
13897 if (!ret && dev_num) {
13898 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id);
13899 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size);
13901 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13902 (uint8_t *)devs, buff_size,
13903 RTE_PMD_I40E_PKG_INFO_DEVID_LIST);
13905 printf("List of supported devices:\n");
13906 for (i = 0; i < dev_num; i++) {
13907 printf(" %04X:%04X %04X:%04X\n",
13908 devs[i].vendor_dev_id >> 16,
13909 devs[i].vendor_dev_id & 0xFFFF,
13910 devs[i].sub_vendor_dev_id >> 16,
13911 devs[i].sub_vendor_dev_id & 0xFFFF);
13919 /* get information about protocols and packet types */
13920 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13921 (uint8_t *)&proto_num, sizeof(proto_num),
13922 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM);
13923 if (ret || !proto_num)
13924 goto no_print_return;
13926 buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info);
13927 proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size);
13929 goto no_print_return;
13931 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto,
13933 RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST);
13935 printf("List of used protocols:\n");
13936 for (i = 0; i < proto_num; i++)
13937 printf(" %2u: %s\n", proto[i].proto_id,
13941 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13942 (uint8_t *)&pctype_num, sizeof(pctype_num),
13943 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM);
13944 if (ret || !pctype_num)
13945 goto no_print_pctypes;
13947 buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info);
13948 pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
13950 goto no_print_pctypes;
13952 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype,
13954 RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST);
13957 goto no_print_pctypes;
13960 printf("List of defined packet classification types:\n");
13961 for (i = 0; i < pctype_num; i++) {
13962 printf(" %2u:", pctype[i].ptype_id);
13963 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
13964 proto_id = pctype[i].protocols[j];
13965 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
13966 for (n = 0; n < proto_num; n++) {
13967 if (proto[n].proto_id == proto_id) {
13968 printf(" %s", proto[n].name);
13981 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num,
13983 RTE_PMD_I40E_PKG_INFO_PTYPE_NUM);
13984 if (ret || !ptype_num)
13985 goto no_print_return;
13987 buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info);
13988 ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
13990 goto no_print_return;
13992 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype,
13994 RTE_PMD_I40E_PKG_INFO_PTYPE_LIST);
13997 goto no_print_return;
13999 printf("List of defined packet types:\n");
14000 for (i = 0; i < ptype_num; i++) {
14001 printf(" %2u:", ptype[i].ptype_id);
14002 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
14003 proto_id = ptype[i].protocols[j];
14004 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
14005 for (n = 0; n < proto_num; n++) {
14006 if (proto[n].proto_id == proto_id) {
14007 printf(" %s", proto[n].name);
14023 if (ret == -ENOTSUP)
14024 printf("Function not supported in PMD driver\n");
14028 cmdline_parse_inst_t cmd_ddp_get_info = {
14029 .f = cmd_ddp_info_parsed,
14031 .help_str = "ddp get info <profile_path>",
14033 (void *)&cmd_ddp_info_ddp,
14034 (void *)&cmd_ddp_info_get,
14035 (void *)&cmd_ddp_info_info,
14036 (void *)&cmd_ddp_info_filepath,
14041 /* Get dynamic device personalization profile info list*/
14042 #define PROFILE_INFO_SIZE 48
14043 #define MAX_PROFILE_NUM 16
14045 struct cmd_ddp_get_list_result {
14046 cmdline_fixed_string_t ddp;
14047 cmdline_fixed_string_t get;
14048 cmdline_fixed_string_t list;
14052 cmdline_parse_token_string_t cmd_ddp_get_list_ddp =
14053 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp");
14054 cmdline_parse_token_string_t cmd_ddp_get_list_get =
14055 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get");
14056 cmdline_parse_token_string_t cmd_ddp_get_list_list =
14057 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list");
14058 cmdline_parse_token_num_t cmd_ddp_get_list_port_id =
14059 TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id,
14063 cmd_ddp_get_list_parsed(
14064 __rte_unused void *parsed_result,
14065 __rte_unused struct cmdline *cl,
14066 __rte_unused void *data)
14068 #ifdef RTE_NET_I40E
14069 struct cmd_ddp_get_list_result *res = parsed_result;
14070 struct rte_pmd_i40e_profile_list *p_list;
14071 struct rte_pmd_i40e_profile_info *p_info;
14076 int ret = -ENOTSUP;
14078 #ifdef RTE_NET_I40E
14079 size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4;
14080 p_list = (struct rte_pmd_i40e_profile_list *)malloc(size);
14082 printf("%s: Failed to malloc buffer\n", __func__);
14086 if (ret == -ENOTSUP)
14087 ret = rte_pmd_i40e_get_ddp_list(res->port_id,
14088 (uint8_t *)p_list, size);
14091 p_num = p_list->p_count;
14092 printf("Profile number is: %d\n\n", p_num);
14094 for (i = 0; i < p_num; i++) {
14095 p_info = &p_list->p_info[i];
14096 printf("Profile %d:\n", i);
14097 printf("Track id: 0x%x\n", p_info->track_id);
14098 printf("Version: %d.%d.%d.%d\n",
14099 p_info->version.major,
14100 p_info->version.minor,
14101 p_info->version.update,
14102 p_info->version.draft);
14103 printf("Profile name: %s\n\n", p_info->name);
14111 printf("Failed to get ddp list\n");
14114 cmdline_parse_inst_t cmd_ddp_get_list = {
14115 .f = cmd_ddp_get_list_parsed,
14117 .help_str = "ddp get list <port_id>",
14119 (void *)&cmd_ddp_get_list_ddp,
14120 (void *)&cmd_ddp_get_list_get,
14121 (void *)&cmd_ddp_get_list_list,
14122 (void *)&cmd_ddp_get_list_port_id,
14127 /* Configure input set */
14128 struct cmd_cfg_input_set_result {
14129 cmdline_fixed_string_t port;
14130 cmdline_fixed_string_t cfg;
14132 cmdline_fixed_string_t pctype;
14134 cmdline_fixed_string_t inset_type;
14135 cmdline_fixed_string_t opt;
14136 cmdline_fixed_string_t field;
14141 cmd_cfg_input_set_parsed(
14142 __rte_unused void *parsed_result,
14143 __rte_unused struct cmdline *cl,
14144 __rte_unused void *data)
14146 #ifdef RTE_NET_I40E
14147 struct cmd_cfg_input_set_result *res = parsed_result;
14148 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
14149 struct rte_pmd_i40e_inset inset;
14151 int ret = -ENOTSUP;
14153 if (!all_ports_stopped()) {
14154 printf("Please stop all ports first\n");
14158 #ifdef RTE_NET_I40E
14159 if (!strcmp(res->inset_type, "hash_inset"))
14160 inset_type = INSET_HASH;
14161 else if (!strcmp(res->inset_type, "fdir_inset"))
14162 inset_type = INSET_FDIR;
14163 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
14164 inset_type = INSET_FDIR_FLX;
14165 ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id,
14166 &inset, inset_type);
14168 printf("Failed to get input set.\n");
14172 if (!strcmp(res->opt, "get")) {
14173 ret = rte_pmd_i40e_inset_field_get(inset.inset,
14176 printf("Field index %d is enabled.\n", res->field_idx);
14178 printf("Field index %d is disabled.\n", res->field_idx);
14180 } else if (!strcmp(res->opt, "set"))
14181 ret = rte_pmd_i40e_inset_field_set(&inset.inset,
14183 else if (!strcmp(res->opt, "clear"))
14184 ret = rte_pmd_i40e_inset_field_clear(&inset.inset,
14187 printf("Failed to configure input set field.\n");
14191 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
14192 &inset, inset_type);
14194 printf("Failed to set input set.\n");
14199 if (ret == -ENOTSUP)
14200 printf("Function not supported\n");
14203 cmdline_parse_token_string_t cmd_cfg_input_set_port =
14204 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14206 cmdline_parse_token_string_t cmd_cfg_input_set_cfg =
14207 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14209 cmdline_parse_token_num_t cmd_cfg_input_set_port_id =
14210 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14211 port_id, RTE_UINT16);
14212 cmdline_parse_token_string_t cmd_cfg_input_set_pctype =
14213 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14215 cmdline_parse_token_num_t cmd_cfg_input_set_pctype_id =
14216 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14217 pctype_id, RTE_UINT8);
14218 cmdline_parse_token_string_t cmd_cfg_input_set_inset_type =
14219 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14221 "hash_inset#fdir_inset#fdir_flx_inset");
14222 cmdline_parse_token_string_t cmd_cfg_input_set_opt =
14223 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14224 opt, "get#set#clear");
14225 cmdline_parse_token_string_t cmd_cfg_input_set_field =
14226 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14228 cmdline_parse_token_num_t cmd_cfg_input_set_field_idx =
14229 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14230 field_idx, RTE_UINT8);
14232 cmdline_parse_inst_t cmd_cfg_input_set = {
14233 .f = cmd_cfg_input_set_parsed,
14235 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
14236 "fdir_inset|fdir_flx_inset get|set|clear field <field_idx>",
14238 (void *)&cmd_cfg_input_set_port,
14239 (void *)&cmd_cfg_input_set_cfg,
14240 (void *)&cmd_cfg_input_set_port_id,
14241 (void *)&cmd_cfg_input_set_pctype,
14242 (void *)&cmd_cfg_input_set_pctype_id,
14243 (void *)&cmd_cfg_input_set_inset_type,
14244 (void *)&cmd_cfg_input_set_opt,
14245 (void *)&cmd_cfg_input_set_field,
14246 (void *)&cmd_cfg_input_set_field_idx,
14251 /* Clear input set */
14252 struct cmd_clear_input_set_result {
14253 cmdline_fixed_string_t port;
14254 cmdline_fixed_string_t cfg;
14256 cmdline_fixed_string_t pctype;
14258 cmdline_fixed_string_t inset_type;
14259 cmdline_fixed_string_t clear;
14260 cmdline_fixed_string_t all;
14264 cmd_clear_input_set_parsed(
14265 __rte_unused void *parsed_result,
14266 __rte_unused struct cmdline *cl,
14267 __rte_unused void *data)
14269 #ifdef RTE_NET_I40E
14270 struct cmd_clear_input_set_result *res = parsed_result;
14271 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
14272 struct rte_pmd_i40e_inset inset;
14274 int ret = -ENOTSUP;
14276 if (!all_ports_stopped()) {
14277 printf("Please stop all ports first\n");
14281 #ifdef RTE_NET_I40E
14282 if (!strcmp(res->inset_type, "hash_inset"))
14283 inset_type = INSET_HASH;
14284 else if (!strcmp(res->inset_type, "fdir_inset"))
14285 inset_type = INSET_FDIR;
14286 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
14287 inset_type = INSET_FDIR_FLX;
14289 memset(&inset, 0, sizeof(inset));
14291 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
14292 &inset, inset_type);
14294 printf("Failed to clear input set.\n");
14300 if (ret == -ENOTSUP)
14301 printf("Function not supported\n");
14304 cmdline_parse_token_string_t cmd_clear_input_set_port =
14305 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14307 cmdline_parse_token_string_t cmd_clear_input_set_cfg =
14308 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14310 cmdline_parse_token_num_t cmd_clear_input_set_port_id =
14311 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
14312 port_id, RTE_UINT16);
14313 cmdline_parse_token_string_t cmd_clear_input_set_pctype =
14314 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14316 cmdline_parse_token_num_t cmd_clear_input_set_pctype_id =
14317 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
14318 pctype_id, RTE_UINT8);
14319 cmdline_parse_token_string_t cmd_clear_input_set_inset_type =
14320 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14322 "hash_inset#fdir_inset#fdir_flx_inset");
14323 cmdline_parse_token_string_t cmd_clear_input_set_clear =
14324 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14326 cmdline_parse_token_string_t cmd_clear_input_set_all =
14327 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14330 cmdline_parse_inst_t cmd_clear_input_set = {
14331 .f = cmd_clear_input_set_parsed,
14333 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
14334 "fdir_inset|fdir_flx_inset clear all",
14336 (void *)&cmd_clear_input_set_port,
14337 (void *)&cmd_clear_input_set_cfg,
14338 (void *)&cmd_clear_input_set_port_id,
14339 (void *)&cmd_clear_input_set_pctype,
14340 (void *)&cmd_clear_input_set_pctype_id,
14341 (void *)&cmd_clear_input_set_inset_type,
14342 (void *)&cmd_clear_input_set_clear,
14343 (void *)&cmd_clear_input_set_all,
14348 /* show vf stats */
14350 /* Common result structure for show vf stats */
14351 struct cmd_show_vf_stats_result {
14352 cmdline_fixed_string_t show;
14353 cmdline_fixed_string_t vf;
14354 cmdline_fixed_string_t stats;
14359 /* Common CLI fields show vf stats*/
14360 cmdline_parse_token_string_t cmd_show_vf_stats_show =
14361 TOKEN_STRING_INITIALIZER
14362 (struct cmd_show_vf_stats_result,
14364 cmdline_parse_token_string_t cmd_show_vf_stats_vf =
14365 TOKEN_STRING_INITIALIZER
14366 (struct cmd_show_vf_stats_result,
14368 cmdline_parse_token_string_t cmd_show_vf_stats_stats =
14369 TOKEN_STRING_INITIALIZER
14370 (struct cmd_show_vf_stats_result,
14372 cmdline_parse_token_num_t cmd_show_vf_stats_port_id =
14373 TOKEN_NUM_INITIALIZER
14374 (struct cmd_show_vf_stats_result,
14375 port_id, RTE_UINT16);
14376 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id =
14377 TOKEN_NUM_INITIALIZER
14378 (struct cmd_show_vf_stats_result,
14379 vf_id, RTE_UINT16);
14382 cmd_show_vf_stats_parsed(
14383 void *parsed_result,
14384 __rte_unused struct cmdline *cl,
14385 __rte_unused void *data)
14387 struct cmd_show_vf_stats_result *res = parsed_result;
14388 struct rte_eth_stats stats;
14389 int ret = -ENOTSUP;
14390 static const char *nic_stats_border = "########################";
14392 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14395 memset(&stats, 0, sizeof(stats));
14397 #ifdef RTE_NET_I40E
14398 if (ret == -ENOTSUP)
14399 ret = rte_pmd_i40e_get_vf_stats(res->port_id,
14403 #ifdef RTE_NET_BNXT
14404 if (ret == -ENOTSUP)
14405 ret = rte_pmd_bnxt_get_vf_stats(res->port_id,
14414 printf("invalid vf_id %d\n", res->vf_id);
14417 printf("invalid port_id %d\n", res->port_id);
14420 printf("function not implemented\n");
14423 printf("programming error: (%s)\n", strerror(-ret));
14426 printf("\n %s NIC statistics for port %-2d vf %-2d %s\n",
14427 nic_stats_border, res->port_id, res->vf_id, nic_stats_border);
14429 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: "
14431 stats.ipackets, stats.imissed, stats.ibytes);
14432 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors);
14433 printf(" RX-nombuf: %-10"PRIu64"\n",
14435 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: "
14437 stats.opackets, stats.oerrors, stats.obytes);
14439 printf(" %s############################%s\n",
14440 nic_stats_border, nic_stats_border);
14443 cmdline_parse_inst_t cmd_show_vf_stats = {
14444 .f = cmd_show_vf_stats_parsed,
14446 .help_str = "show vf stats <port_id> <vf_id>",
14448 (void *)&cmd_show_vf_stats_show,
14449 (void *)&cmd_show_vf_stats_vf,
14450 (void *)&cmd_show_vf_stats_stats,
14451 (void *)&cmd_show_vf_stats_port_id,
14452 (void *)&cmd_show_vf_stats_vf_id,
14457 /* clear vf stats */
14459 /* Common result structure for clear vf stats */
14460 struct cmd_clear_vf_stats_result {
14461 cmdline_fixed_string_t clear;
14462 cmdline_fixed_string_t vf;
14463 cmdline_fixed_string_t stats;
14468 /* Common CLI fields clear vf stats*/
14469 cmdline_parse_token_string_t cmd_clear_vf_stats_clear =
14470 TOKEN_STRING_INITIALIZER
14471 (struct cmd_clear_vf_stats_result,
14473 cmdline_parse_token_string_t cmd_clear_vf_stats_vf =
14474 TOKEN_STRING_INITIALIZER
14475 (struct cmd_clear_vf_stats_result,
14477 cmdline_parse_token_string_t cmd_clear_vf_stats_stats =
14478 TOKEN_STRING_INITIALIZER
14479 (struct cmd_clear_vf_stats_result,
14481 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id =
14482 TOKEN_NUM_INITIALIZER
14483 (struct cmd_clear_vf_stats_result,
14484 port_id, RTE_UINT16);
14485 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id =
14486 TOKEN_NUM_INITIALIZER
14487 (struct cmd_clear_vf_stats_result,
14488 vf_id, RTE_UINT16);
14491 cmd_clear_vf_stats_parsed(
14492 void *parsed_result,
14493 __rte_unused struct cmdline *cl,
14494 __rte_unused void *data)
14496 struct cmd_clear_vf_stats_result *res = parsed_result;
14497 int ret = -ENOTSUP;
14499 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14502 #ifdef RTE_NET_I40E
14503 if (ret == -ENOTSUP)
14504 ret = rte_pmd_i40e_reset_vf_stats(res->port_id,
14507 #ifdef RTE_NET_BNXT
14508 if (ret == -ENOTSUP)
14509 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id,
14517 printf("invalid vf_id %d\n", res->vf_id);
14520 printf("invalid port_id %d\n", res->port_id);
14523 printf("function not implemented\n");
14526 printf("programming error: (%s)\n", strerror(-ret));
14530 cmdline_parse_inst_t cmd_clear_vf_stats = {
14531 .f = cmd_clear_vf_stats_parsed,
14533 .help_str = "clear vf stats <port_id> <vf_id>",
14535 (void *)&cmd_clear_vf_stats_clear,
14536 (void *)&cmd_clear_vf_stats_vf,
14537 (void *)&cmd_clear_vf_stats_stats,
14538 (void *)&cmd_clear_vf_stats_port_id,
14539 (void *)&cmd_clear_vf_stats_vf_id,
14544 /* port config pctype mapping reset */
14546 /* Common result structure for port config pctype mapping reset */
14547 struct cmd_pctype_mapping_reset_result {
14548 cmdline_fixed_string_t port;
14549 cmdline_fixed_string_t config;
14551 cmdline_fixed_string_t pctype;
14552 cmdline_fixed_string_t mapping;
14553 cmdline_fixed_string_t reset;
14556 /* Common CLI fields for port config pctype mapping reset*/
14557 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port =
14558 TOKEN_STRING_INITIALIZER
14559 (struct cmd_pctype_mapping_reset_result,
14561 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config =
14562 TOKEN_STRING_INITIALIZER
14563 (struct cmd_pctype_mapping_reset_result,
14565 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id =
14566 TOKEN_NUM_INITIALIZER
14567 (struct cmd_pctype_mapping_reset_result,
14568 port_id, RTE_UINT16);
14569 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype =
14570 TOKEN_STRING_INITIALIZER
14571 (struct cmd_pctype_mapping_reset_result,
14573 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping =
14574 TOKEN_STRING_INITIALIZER
14575 (struct cmd_pctype_mapping_reset_result,
14576 mapping, "mapping");
14577 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset =
14578 TOKEN_STRING_INITIALIZER
14579 (struct cmd_pctype_mapping_reset_result,
14583 cmd_pctype_mapping_reset_parsed(
14584 void *parsed_result,
14585 __rte_unused struct cmdline *cl,
14586 __rte_unused void *data)
14588 struct cmd_pctype_mapping_reset_result *res = parsed_result;
14589 int ret = -ENOTSUP;
14591 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14594 #ifdef RTE_NET_I40E
14595 ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id);
14602 printf("invalid port_id %d\n", res->port_id);
14605 printf("function not implemented\n");
14608 printf("programming error: (%s)\n", strerror(-ret));
14612 cmdline_parse_inst_t cmd_pctype_mapping_reset = {
14613 .f = cmd_pctype_mapping_reset_parsed,
14615 .help_str = "port config <port_id> pctype mapping reset",
14617 (void *)&cmd_pctype_mapping_reset_port,
14618 (void *)&cmd_pctype_mapping_reset_config,
14619 (void *)&cmd_pctype_mapping_reset_port_id,
14620 (void *)&cmd_pctype_mapping_reset_pctype,
14621 (void *)&cmd_pctype_mapping_reset_mapping,
14622 (void *)&cmd_pctype_mapping_reset_reset,
14627 /* show port pctype mapping */
14629 /* Common result structure for show port pctype mapping */
14630 struct cmd_pctype_mapping_get_result {
14631 cmdline_fixed_string_t show;
14632 cmdline_fixed_string_t port;
14634 cmdline_fixed_string_t pctype;
14635 cmdline_fixed_string_t mapping;
14638 /* Common CLI fields for pctype mapping get */
14639 cmdline_parse_token_string_t cmd_pctype_mapping_get_show =
14640 TOKEN_STRING_INITIALIZER
14641 (struct cmd_pctype_mapping_get_result,
14643 cmdline_parse_token_string_t cmd_pctype_mapping_get_port =
14644 TOKEN_STRING_INITIALIZER
14645 (struct cmd_pctype_mapping_get_result,
14647 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id =
14648 TOKEN_NUM_INITIALIZER
14649 (struct cmd_pctype_mapping_get_result,
14650 port_id, RTE_UINT16);
14651 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype =
14652 TOKEN_STRING_INITIALIZER
14653 (struct cmd_pctype_mapping_get_result,
14655 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping =
14656 TOKEN_STRING_INITIALIZER
14657 (struct cmd_pctype_mapping_get_result,
14658 mapping, "mapping");
14661 cmd_pctype_mapping_get_parsed(
14662 void *parsed_result,
14663 __rte_unused struct cmdline *cl,
14664 __rte_unused void *data)
14666 struct cmd_pctype_mapping_get_result *res = parsed_result;
14667 int ret = -ENOTSUP;
14668 #ifdef RTE_NET_I40E
14669 struct rte_pmd_i40e_flow_type_mapping
14670 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
14671 int i, j, first_pctype;
14674 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14677 #ifdef RTE_NET_I40E
14678 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping);
14685 printf("invalid port_id %d\n", res->port_id);
14688 printf("function not implemented\n");
14691 printf("programming error: (%s)\n", strerror(-ret));
14695 #ifdef RTE_NET_I40E
14696 for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) {
14697 if (mapping[i].pctype != 0ULL) {
14700 printf("pctype: ");
14701 for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) {
14702 if (mapping[i].pctype & (1ULL << j)) {
14703 printf(first_pctype ?
14704 "%02d" : ",%02d", j);
14708 printf(" -> flowtype: %02d\n", mapping[i].flow_type);
14714 cmdline_parse_inst_t cmd_pctype_mapping_get = {
14715 .f = cmd_pctype_mapping_get_parsed,
14717 .help_str = "show port <port_id> pctype mapping",
14719 (void *)&cmd_pctype_mapping_get_show,
14720 (void *)&cmd_pctype_mapping_get_port,
14721 (void *)&cmd_pctype_mapping_get_port_id,
14722 (void *)&cmd_pctype_mapping_get_pctype,
14723 (void *)&cmd_pctype_mapping_get_mapping,
14728 /* port config pctype mapping update */
14730 /* Common result structure for port config pctype mapping update */
14731 struct cmd_pctype_mapping_update_result {
14732 cmdline_fixed_string_t port;
14733 cmdline_fixed_string_t config;
14735 cmdline_fixed_string_t pctype;
14736 cmdline_fixed_string_t mapping;
14737 cmdline_fixed_string_t update;
14738 cmdline_fixed_string_t pctype_list;
14739 uint16_t flow_type;
14742 /* Common CLI fields for pctype mapping update*/
14743 cmdline_parse_token_string_t cmd_pctype_mapping_update_port =
14744 TOKEN_STRING_INITIALIZER
14745 (struct cmd_pctype_mapping_update_result,
14747 cmdline_parse_token_string_t cmd_pctype_mapping_update_config =
14748 TOKEN_STRING_INITIALIZER
14749 (struct cmd_pctype_mapping_update_result,
14751 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id =
14752 TOKEN_NUM_INITIALIZER
14753 (struct cmd_pctype_mapping_update_result,
14754 port_id, RTE_UINT16);
14755 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype =
14756 TOKEN_STRING_INITIALIZER
14757 (struct cmd_pctype_mapping_update_result,
14759 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping =
14760 TOKEN_STRING_INITIALIZER
14761 (struct cmd_pctype_mapping_update_result,
14762 mapping, "mapping");
14763 cmdline_parse_token_string_t cmd_pctype_mapping_update_update =
14764 TOKEN_STRING_INITIALIZER
14765 (struct cmd_pctype_mapping_update_result,
14767 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type =
14768 TOKEN_STRING_INITIALIZER
14769 (struct cmd_pctype_mapping_update_result,
14770 pctype_list, NULL);
14771 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type =
14772 TOKEN_NUM_INITIALIZER
14773 (struct cmd_pctype_mapping_update_result,
14774 flow_type, RTE_UINT16);
14777 cmd_pctype_mapping_update_parsed(
14778 void *parsed_result,
14779 __rte_unused struct cmdline *cl,
14780 __rte_unused void *data)
14782 struct cmd_pctype_mapping_update_result *res = parsed_result;
14783 int ret = -ENOTSUP;
14784 #ifdef RTE_NET_I40E
14785 struct rte_pmd_i40e_flow_type_mapping mapping;
14787 unsigned int nb_item;
14788 unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX];
14791 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14794 #ifdef RTE_NET_I40E
14795 nb_item = parse_item_list(res->pctype_list, "pctypes",
14796 RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1);
14797 mapping.flow_type = res->flow_type;
14798 for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++)
14799 mapping.pctype |= (1ULL << pctype_list[i]);
14800 ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id,
14810 printf("invalid pctype or flow type\n");
14813 printf("invalid port_id %d\n", res->port_id);
14816 printf("function not implemented\n");
14819 printf("programming error: (%s)\n", strerror(-ret));
14823 cmdline_parse_inst_t cmd_pctype_mapping_update = {
14824 .f = cmd_pctype_mapping_update_parsed,
14826 .help_str = "port config <port_id> pctype mapping update"
14827 " <pctype_id_0,[pctype_id_1]*> <flowtype_id>",
14829 (void *)&cmd_pctype_mapping_update_port,
14830 (void *)&cmd_pctype_mapping_update_config,
14831 (void *)&cmd_pctype_mapping_update_port_id,
14832 (void *)&cmd_pctype_mapping_update_pctype,
14833 (void *)&cmd_pctype_mapping_update_mapping,
14834 (void *)&cmd_pctype_mapping_update_update,
14835 (void *)&cmd_pctype_mapping_update_pc_type,
14836 (void *)&cmd_pctype_mapping_update_flow_type,
14841 /* ptype mapping get */
14843 /* Common result structure for ptype mapping get */
14844 struct cmd_ptype_mapping_get_result {
14845 cmdline_fixed_string_t ptype;
14846 cmdline_fixed_string_t mapping;
14847 cmdline_fixed_string_t get;
14849 uint8_t valid_only;
14852 /* Common CLI fields for ptype mapping get */
14853 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype =
14854 TOKEN_STRING_INITIALIZER
14855 (struct cmd_ptype_mapping_get_result,
14857 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping =
14858 TOKEN_STRING_INITIALIZER
14859 (struct cmd_ptype_mapping_get_result,
14860 mapping, "mapping");
14861 cmdline_parse_token_string_t cmd_ptype_mapping_get_get =
14862 TOKEN_STRING_INITIALIZER
14863 (struct cmd_ptype_mapping_get_result,
14865 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id =
14866 TOKEN_NUM_INITIALIZER
14867 (struct cmd_ptype_mapping_get_result,
14868 port_id, RTE_UINT16);
14869 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only =
14870 TOKEN_NUM_INITIALIZER
14871 (struct cmd_ptype_mapping_get_result,
14872 valid_only, RTE_UINT8);
14875 cmd_ptype_mapping_get_parsed(
14876 void *parsed_result,
14877 __rte_unused struct cmdline *cl,
14878 __rte_unused void *data)
14880 struct cmd_ptype_mapping_get_result *res = parsed_result;
14881 int ret = -ENOTSUP;
14882 #ifdef RTE_NET_I40E
14883 int max_ptype_num = 256;
14884 struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num];
14889 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14892 #ifdef RTE_NET_I40E
14893 ret = rte_pmd_i40e_ptype_mapping_get(res->port_id,
14904 printf("invalid port_id %d\n", res->port_id);
14907 printf("function not implemented\n");
14910 printf("programming error: (%s)\n", strerror(-ret));
14913 #ifdef RTE_NET_I40E
14915 for (i = 0; i < count; i++)
14916 printf("%3d\t0x%08x\n",
14917 mapping[i].hw_ptype, mapping[i].sw_ptype);
14922 cmdline_parse_inst_t cmd_ptype_mapping_get = {
14923 .f = cmd_ptype_mapping_get_parsed,
14925 .help_str = "ptype mapping get <port_id> <valid_only>",
14927 (void *)&cmd_ptype_mapping_get_ptype,
14928 (void *)&cmd_ptype_mapping_get_mapping,
14929 (void *)&cmd_ptype_mapping_get_get,
14930 (void *)&cmd_ptype_mapping_get_port_id,
14931 (void *)&cmd_ptype_mapping_get_valid_only,
14936 /* ptype mapping replace */
14938 /* Common result structure for ptype mapping replace */
14939 struct cmd_ptype_mapping_replace_result {
14940 cmdline_fixed_string_t ptype;
14941 cmdline_fixed_string_t mapping;
14942 cmdline_fixed_string_t replace;
14949 /* Common CLI fields for ptype mapping replace */
14950 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype =
14951 TOKEN_STRING_INITIALIZER
14952 (struct cmd_ptype_mapping_replace_result,
14954 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping =
14955 TOKEN_STRING_INITIALIZER
14956 (struct cmd_ptype_mapping_replace_result,
14957 mapping, "mapping");
14958 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace =
14959 TOKEN_STRING_INITIALIZER
14960 (struct cmd_ptype_mapping_replace_result,
14961 replace, "replace");
14962 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id =
14963 TOKEN_NUM_INITIALIZER
14964 (struct cmd_ptype_mapping_replace_result,
14965 port_id, RTE_UINT16);
14966 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target =
14967 TOKEN_NUM_INITIALIZER
14968 (struct cmd_ptype_mapping_replace_result,
14969 target, RTE_UINT32);
14970 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask =
14971 TOKEN_NUM_INITIALIZER
14972 (struct cmd_ptype_mapping_replace_result,
14974 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type =
14975 TOKEN_NUM_INITIALIZER
14976 (struct cmd_ptype_mapping_replace_result,
14977 pkt_type, RTE_UINT32);
14980 cmd_ptype_mapping_replace_parsed(
14981 void *parsed_result,
14982 __rte_unused struct cmdline *cl,
14983 __rte_unused void *data)
14985 struct cmd_ptype_mapping_replace_result *res = parsed_result;
14986 int ret = -ENOTSUP;
14988 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14991 #ifdef RTE_NET_I40E
14992 ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id,
15002 printf("invalid ptype 0x%8x or 0x%8x\n",
15003 res->target, res->pkt_type);
15006 printf("invalid port_id %d\n", res->port_id);
15009 printf("function not implemented\n");
15012 printf("programming error: (%s)\n", strerror(-ret));
15016 cmdline_parse_inst_t cmd_ptype_mapping_replace = {
15017 .f = cmd_ptype_mapping_replace_parsed,
15020 "ptype mapping replace <port_id> <target> <mask> <pkt_type>",
15022 (void *)&cmd_ptype_mapping_replace_ptype,
15023 (void *)&cmd_ptype_mapping_replace_mapping,
15024 (void *)&cmd_ptype_mapping_replace_replace,
15025 (void *)&cmd_ptype_mapping_replace_port_id,
15026 (void *)&cmd_ptype_mapping_replace_target,
15027 (void *)&cmd_ptype_mapping_replace_mask,
15028 (void *)&cmd_ptype_mapping_replace_pkt_type,
15033 /* ptype mapping reset */
15035 /* Common result structure for ptype mapping reset */
15036 struct cmd_ptype_mapping_reset_result {
15037 cmdline_fixed_string_t ptype;
15038 cmdline_fixed_string_t mapping;
15039 cmdline_fixed_string_t reset;
15043 /* Common CLI fields for ptype mapping reset*/
15044 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype =
15045 TOKEN_STRING_INITIALIZER
15046 (struct cmd_ptype_mapping_reset_result,
15048 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping =
15049 TOKEN_STRING_INITIALIZER
15050 (struct cmd_ptype_mapping_reset_result,
15051 mapping, "mapping");
15052 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset =
15053 TOKEN_STRING_INITIALIZER
15054 (struct cmd_ptype_mapping_reset_result,
15056 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id =
15057 TOKEN_NUM_INITIALIZER
15058 (struct cmd_ptype_mapping_reset_result,
15059 port_id, RTE_UINT16);
15062 cmd_ptype_mapping_reset_parsed(
15063 void *parsed_result,
15064 __rte_unused struct cmdline *cl,
15065 __rte_unused void *data)
15067 struct cmd_ptype_mapping_reset_result *res = parsed_result;
15068 int ret = -ENOTSUP;
15070 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15073 #ifdef RTE_NET_I40E
15074 ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id);
15081 printf("invalid port_id %d\n", res->port_id);
15084 printf("function not implemented\n");
15087 printf("programming error: (%s)\n", strerror(-ret));
15091 cmdline_parse_inst_t cmd_ptype_mapping_reset = {
15092 .f = cmd_ptype_mapping_reset_parsed,
15094 .help_str = "ptype mapping reset <port_id>",
15096 (void *)&cmd_ptype_mapping_reset_ptype,
15097 (void *)&cmd_ptype_mapping_reset_mapping,
15098 (void *)&cmd_ptype_mapping_reset_reset,
15099 (void *)&cmd_ptype_mapping_reset_port_id,
15104 /* ptype mapping update */
15106 /* Common result structure for ptype mapping update */
15107 struct cmd_ptype_mapping_update_result {
15108 cmdline_fixed_string_t ptype;
15109 cmdline_fixed_string_t mapping;
15110 cmdline_fixed_string_t reset;
15116 /* Common CLI fields for ptype mapping update*/
15117 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype =
15118 TOKEN_STRING_INITIALIZER
15119 (struct cmd_ptype_mapping_update_result,
15121 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping =
15122 TOKEN_STRING_INITIALIZER
15123 (struct cmd_ptype_mapping_update_result,
15124 mapping, "mapping");
15125 cmdline_parse_token_string_t cmd_ptype_mapping_update_update =
15126 TOKEN_STRING_INITIALIZER
15127 (struct cmd_ptype_mapping_update_result,
15129 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id =
15130 TOKEN_NUM_INITIALIZER
15131 (struct cmd_ptype_mapping_update_result,
15132 port_id, RTE_UINT16);
15133 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype =
15134 TOKEN_NUM_INITIALIZER
15135 (struct cmd_ptype_mapping_update_result,
15136 hw_ptype, RTE_UINT8);
15137 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype =
15138 TOKEN_NUM_INITIALIZER
15139 (struct cmd_ptype_mapping_update_result,
15140 sw_ptype, RTE_UINT32);
15143 cmd_ptype_mapping_update_parsed(
15144 void *parsed_result,
15145 __rte_unused struct cmdline *cl,
15146 __rte_unused void *data)
15148 struct cmd_ptype_mapping_update_result *res = parsed_result;
15149 int ret = -ENOTSUP;
15150 #ifdef RTE_NET_I40E
15151 struct rte_pmd_i40e_ptype_mapping mapping;
15153 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15156 #ifdef RTE_NET_I40E
15157 mapping.hw_ptype = res->hw_ptype;
15158 mapping.sw_ptype = res->sw_ptype;
15159 ret = rte_pmd_i40e_ptype_mapping_update(res->port_id,
15169 printf("invalid ptype 0x%8x\n", res->sw_ptype);
15172 printf("invalid port_id %d\n", res->port_id);
15175 printf("function not implemented\n");
15178 printf("programming error: (%s)\n", strerror(-ret));
15182 cmdline_parse_inst_t cmd_ptype_mapping_update = {
15183 .f = cmd_ptype_mapping_update_parsed,
15185 .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>",
15187 (void *)&cmd_ptype_mapping_update_ptype,
15188 (void *)&cmd_ptype_mapping_update_mapping,
15189 (void *)&cmd_ptype_mapping_update_update,
15190 (void *)&cmd_ptype_mapping_update_port_id,
15191 (void *)&cmd_ptype_mapping_update_hw_ptype,
15192 (void *)&cmd_ptype_mapping_update_sw_ptype,
15197 /* Common result structure for file commands */
15198 struct cmd_cmdfile_result {
15199 cmdline_fixed_string_t load;
15200 cmdline_fixed_string_t filename;
15203 /* Common CLI fields for file commands */
15204 cmdline_parse_token_string_t cmd_load_cmdfile =
15205 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load");
15206 cmdline_parse_token_string_t cmd_load_cmdfile_filename =
15207 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL);
15210 cmd_load_from_file_parsed(
15211 void *parsed_result,
15212 __rte_unused struct cmdline *cl,
15213 __rte_unused void *data)
15215 struct cmd_cmdfile_result *res = parsed_result;
15217 cmdline_read_from_file(res->filename);
15220 cmdline_parse_inst_t cmd_load_from_file = {
15221 .f = cmd_load_from_file_parsed,
15223 .help_str = "load <filename>",
15225 (void *)&cmd_load_cmdfile,
15226 (void *)&cmd_load_cmdfile_filename,
15231 /* Get Rx offloads capabilities */
15232 struct cmd_rx_offload_get_capa_result {
15233 cmdline_fixed_string_t show;
15234 cmdline_fixed_string_t port;
15236 cmdline_fixed_string_t rx_offload;
15237 cmdline_fixed_string_t capabilities;
15240 cmdline_parse_token_string_t cmd_rx_offload_get_capa_show =
15241 TOKEN_STRING_INITIALIZER
15242 (struct cmd_rx_offload_get_capa_result,
15244 cmdline_parse_token_string_t cmd_rx_offload_get_capa_port =
15245 TOKEN_STRING_INITIALIZER
15246 (struct cmd_rx_offload_get_capa_result,
15248 cmdline_parse_token_num_t cmd_rx_offload_get_capa_port_id =
15249 TOKEN_NUM_INITIALIZER
15250 (struct cmd_rx_offload_get_capa_result,
15251 port_id, RTE_UINT16);
15252 cmdline_parse_token_string_t cmd_rx_offload_get_capa_rx_offload =
15253 TOKEN_STRING_INITIALIZER
15254 (struct cmd_rx_offload_get_capa_result,
15255 rx_offload, "rx_offload");
15256 cmdline_parse_token_string_t cmd_rx_offload_get_capa_capabilities =
15257 TOKEN_STRING_INITIALIZER
15258 (struct cmd_rx_offload_get_capa_result,
15259 capabilities, "capabilities");
15262 print_rx_offloads(uint64_t offloads)
15264 uint64_t single_offload;
15272 begin = __builtin_ctzll(offloads);
15273 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
15275 single_offload = 1ULL << begin;
15276 for (bit = begin; bit < end; bit++) {
15277 if (offloads & single_offload)
15279 rte_eth_dev_rx_offload_name(single_offload));
15280 single_offload <<= 1;
15285 cmd_rx_offload_get_capa_parsed(
15286 void *parsed_result,
15287 __rte_unused struct cmdline *cl,
15288 __rte_unused void *data)
15290 struct cmd_rx_offload_get_capa_result *res = parsed_result;
15291 struct rte_eth_dev_info dev_info;
15292 portid_t port_id = res->port_id;
15293 uint64_t queue_offloads;
15294 uint64_t port_offloads;
15297 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15301 queue_offloads = dev_info.rx_queue_offload_capa;
15302 port_offloads = dev_info.rx_offload_capa ^ queue_offloads;
15304 printf("Rx Offloading Capabilities of port %d :\n", port_id);
15305 printf(" Per Queue :");
15306 print_rx_offloads(queue_offloads);
15309 printf(" Per Port :");
15310 print_rx_offloads(port_offloads);
15314 cmdline_parse_inst_t cmd_rx_offload_get_capa = {
15315 .f = cmd_rx_offload_get_capa_parsed,
15317 .help_str = "show port <port_id> rx_offload capabilities",
15319 (void *)&cmd_rx_offload_get_capa_show,
15320 (void *)&cmd_rx_offload_get_capa_port,
15321 (void *)&cmd_rx_offload_get_capa_port_id,
15322 (void *)&cmd_rx_offload_get_capa_rx_offload,
15323 (void *)&cmd_rx_offload_get_capa_capabilities,
15328 /* Get Rx offloads configuration */
15329 struct cmd_rx_offload_get_configuration_result {
15330 cmdline_fixed_string_t show;
15331 cmdline_fixed_string_t port;
15333 cmdline_fixed_string_t rx_offload;
15334 cmdline_fixed_string_t configuration;
15337 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_show =
15338 TOKEN_STRING_INITIALIZER
15339 (struct cmd_rx_offload_get_configuration_result,
15341 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_port =
15342 TOKEN_STRING_INITIALIZER
15343 (struct cmd_rx_offload_get_configuration_result,
15345 cmdline_parse_token_num_t cmd_rx_offload_get_configuration_port_id =
15346 TOKEN_NUM_INITIALIZER
15347 (struct cmd_rx_offload_get_configuration_result,
15348 port_id, RTE_UINT16);
15349 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_rx_offload =
15350 TOKEN_STRING_INITIALIZER
15351 (struct cmd_rx_offload_get_configuration_result,
15352 rx_offload, "rx_offload");
15353 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_configuration =
15354 TOKEN_STRING_INITIALIZER
15355 (struct cmd_rx_offload_get_configuration_result,
15356 configuration, "configuration");
15359 cmd_rx_offload_get_configuration_parsed(
15360 void *parsed_result,
15361 __rte_unused struct cmdline *cl,
15362 __rte_unused void *data)
15364 struct cmd_rx_offload_get_configuration_result *res = parsed_result;
15365 struct rte_eth_dev_info dev_info;
15366 portid_t port_id = res->port_id;
15367 struct rte_port *port = &ports[port_id];
15368 uint64_t port_offloads;
15369 uint64_t queue_offloads;
15370 uint16_t nb_rx_queues;
15374 printf("Rx Offloading Configuration of port %d :\n", port_id);
15376 port_offloads = port->dev_conf.rxmode.offloads;
15378 print_rx_offloads(port_offloads);
15381 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15385 nb_rx_queues = dev_info.nb_rx_queues;
15386 for (q = 0; q < nb_rx_queues; q++) {
15387 queue_offloads = port->rx_conf[q].offloads;
15388 printf(" Queue[%2d] :", q);
15389 print_rx_offloads(queue_offloads);
15395 cmdline_parse_inst_t cmd_rx_offload_get_configuration = {
15396 .f = cmd_rx_offload_get_configuration_parsed,
15398 .help_str = "show port <port_id> rx_offload configuration",
15400 (void *)&cmd_rx_offload_get_configuration_show,
15401 (void *)&cmd_rx_offload_get_configuration_port,
15402 (void *)&cmd_rx_offload_get_configuration_port_id,
15403 (void *)&cmd_rx_offload_get_configuration_rx_offload,
15404 (void *)&cmd_rx_offload_get_configuration_configuration,
15409 /* Enable/Disable a per port offloading */
15410 struct cmd_config_per_port_rx_offload_result {
15411 cmdline_fixed_string_t port;
15412 cmdline_fixed_string_t config;
15414 cmdline_fixed_string_t rx_offload;
15415 cmdline_fixed_string_t offload;
15416 cmdline_fixed_string_t on_off;
15419 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_port =
15420 TOKEN_STRING_INITIALIZER
15421 (struct cmd_config_per_port_rx_offload_result,
15423 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_config =
15424 TOKEN_STRING_INITIALIZER
15425 (struct cmd_config_per_port_rx_offload_result,
15427 cmdline_parse_token_num_t cmd_config_per_port_rx_offload_result_port_id =
15428 TOKEN_NUM_INITIALIZER
15429 (struct cmd_config_per_port_rx_offload_result,
15430 port_id, RTE_UINT16);
15431 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_rx_offload =
15432 TOKEN_STRING_INITIALIZER
15433 (struct cmd_config_per_port_rx_offload_result,
15434 rx_offload, "rx_offload");
15435 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_offload =
15436 TOKEN_STRING_INITIALIZER
15437 (struct cmd_config_per_port_rx_offload_result,
15438 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
15439 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
15440 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
15441 "scatter#buffer_split#timestamp#security#"
15442 "keep_crc#rss_hash");
15443 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_on_off =
15444 TOKEN_STRING_INITIALIZER
15445 (struct cmd_config_per_port_rx_offload_result,
15449 search_rx_offload(const char *name)
15451 uint64_t single_offload;
15452 const char *single_name;
15456 single_offload = 1;
15457 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
15458 single_name = rte_eth_dev_rx_offload_name(single_offload);
15459 if (!strcasecmp(single_name, name)) {
15463 single_offload <<= 1;
15467 return single_offload;
15473 cmd_config_per_port_rx_offload_parsed(void *parsed_result,
15474 __rte_unused struct cmdline *cl,
15475 __rte_unused void *data)
15477 struct cmd_config_per_port_rx_offload_result *res = parsed_result;
15478 portid_t port_id = res->port_id;
15479 struct rte_eth_dev_info dev_info;
15480 struct rte_port *port = &ports[port_id];
15481 uint64_t single_offload;
15482 uint16_t nb_rx_queues;
15486 if (port->port_status != RTE_PORT_STOPPED) {
15487 printf("Error: Can't config offload when Port %d "
15488 "is not stopped\n", port_id);
15492 single_offload = search_rx_offload(res->offload);
15493 if (single_offload == 0) {
15494 printf("Unknown offload name: %s\n", res->offload);
15498 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15502 nb_rx_queues = dev_info.nb_rx_queues;
15503 if (!strcmp(res->on_off, "on")) {
15504 port->dev_conf.rxmode.offloads |= single_offload;
15505 for (q = 0; q < nb_rx_queues; q++)
15506 port->rx_conf[q].offloads |= single_offload;
15508 port->dev_conf.rxmode.offloads &= ~single_offload;
15509 for (q = 0; q < nb_rx_queues; q++)
15510 port->rx_conf[q].offloads &= ~single_offload;
15513 cmd_reconfig_device_queue(port_id, 1, 1);
15516 cmdline_parse_inst_t cmd_config_per_port_rx_offload = {
15517 .f = cmd_config_per_port_rx_offload_parsed,
15519 .help_str = "port config <port_id> rx_offload vlan_strip|ipv4_cksum|"
15520 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
15521 "macsec_strip|header_split|vlan_filter|vlan_extend|"
15522 "jumbo_frame|scatter|buffer_split|timestamp|security|"
15523 "keep_crc|rss_hash on|off",
15525 (void *)&cmd_config_per_port_rx_offload_result_port,
15526 (void *)&cmd_config_per_port_rx_offload_result_config,
15527 (void *)&cmd_config_per_port_rx_offload_result_port_id,
15528 (void *)&cmd_config_per_port_rx_offload_result_rx_offload,
15529 (void *)&cmd_config_per_port_rx_offload_result_offload,
15530 (void *)&cmd_config_per_port_rx_offload_result_on_off,
15535 /* Enable/Disable a per queue offloading */
15536 struct cmd_config_per_queue_rx_offload_result {
15537 cmdline_fixed_string_t port;
15539 cmdline_fixed_string_t rxq;
15541 cmdline_fixed_string_t rx_offload;
15542 cmdline_fixed_string_t offload;
15543 cmdline_fixed_string_t on_off;
15546 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_port =
15547 TOKEN_STRING_INITIALIZER
15548 (struct cmd_config_per_queue_rx_offload_result,
15550 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_port_id =
15551 TOKEN_NUM_INITIALIZER
15552 (struct cmd_config_per_queue_rx_offload_result,
15553 port_id, RTE_UINT16);
15554 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxq =
15555 TOKEN_STRING_INITIALIZER
15556 (struct cmd_config_per_queue_rx_offload_result,
15558 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_queue_id =
15559 TOKEN_NUM_INITIALIZER
15560 (struct cmd_config_per_queue_rx_offload_result,
15561 queue_id, RTE_UINT16);
15562 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxoffload =
15563 TOKEN_STRING_INITIALIZER
15564 (struct cmd_config_per_queue_rx_offload_result,
15565 rx_offload, "rx_offload");
15566 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_offload =
15567 TOKEN_STRING_INITIALIZER
15568 (struct cmd_config_per_queue_rx_offload_result,
15569 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
15570 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
15571 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
15572 "scatter#buffer_split#timestamp#security#keep_crc");
15573 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_on_off =
15574 TOKEN_STRING_INITIALIZER
15575 (struct cmd_config_per_queue_rx_offload_result,
15579 cmd_config_per_queue_rx_offload_parsed(void *parsed_result,
15580 __rte_unused struct cmdline *cl,
15581 __rte_unused void *data)
15583 struct cmd_config_per_queue_rx_offload_result *res = parsed_result;
15584 struct rte_eth_dev_info dev_info;
15585 portid_t port_id = res->port_id;
15586 uint16_t queue_id = res->queue_id;
15587 struct rte_port *port = &ports[port_id];
15588 uint64_t single_offload;
15591 if (port->port_status != RTE_PORT_STOPPED) {
15592 printf("Error: Can't config offload when Port %d "
15593 "is not stopped\n", port_id);
15597 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15601 if (queue_id >= dev_info.nb_rx_queues) {
15602 printf("Error: input queue_id should be 0 ... "
15603 "%d\n", dev_info.nb_rx_queues - 1);
15607 single_offload = search_rx_offload(res->offload);
15608 if (single_offload == 0) {
15609 printf("Unknown offload name: %s\n", res->offload);
15613 if (!strcmp(res->on_off, "on"))
15614 port->rx_conf[queue_id].offloads |= single_offload;
15616 port->rx_conf[queue_id].offloads &= ~single_offload;
15618 cmd_reconfig_device_queue(port_id, 1, 1);
15621 cmdline_parse_inst_t cmd_config_per_queue_rx_offload = {
15622 .f = cmd_config_per_queue_rx_offload_parsed,
15624 .help_str = "port <port_id> rxq <queue_id> rx_offload "
15625 "vlan_strip|ipv4_cksum|"
15626 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
15627 "macsec_strip|header_split|vlan_filter|vlan_extend|"
15628 "jumbo_frame|scatter|buffer_split|timestamp|security|"
15631 (void *)&cmd_config_per_queue_rx_offload_result_port,
15632 (void *)&cmd_config_per_queue_rx_offload_result_port_id,
15633 (void *)&cmd_config_per_queue_rx_offload_result_rxq,
15634 (void *)&cmd_config_per_queue_rx_offload_result_queue_id,
15635 (void *)&cmd_config_per_queue_rx_offload_result_rxoffload,
15636 (void *)&cmd_config_per_queue_rx_offload_result_offload,
15637 (void *)&cmd_config_per_queue_rx_offload_result_on_off,
15642 /* Get Tx offloads capabilities */
15643 struct cmd_tx_offload_get_capa_result {
15644 cmdline_fixed_string_t show;
15645 cmdline_fixed_string_t port;
15647 cmdline_fixed_string_t tx_offload;
15648 cmdline_fixed_string_t capabilities;
15651 cmdline_parse_token_string_t cmd_tx_offload_get_capa_show =
15652 TOKEN_STRING_INITIALIZER
15653 (struct cmd_tx_offload_get_capa_result,
15655 cmdline_parse_token_string_t cmd_tx_offload_get_capa_port =
15656 TOKEN_STRING_INITIALIZER
15657 (struct cmd_tx_offload_get_capa_result,
15659 cmdline_parse_token_num_t cmd_tx_offload_get_capa_port_id =
15660 TOKEN_NUM_INITIALIZER
15661 (struct cmd_tx_offload_get_capa_result,
15662 port_id, RTE_UINT16);
15663 cmdline_parse_token_string_t cmd_tx_offload_get_capa_tx_offload =
15664 TOKEN_STRING_INITIALIZER
15665 (struct cmd_tx_offload_get_capa_result,
15666 tx_offload, "tx_offload");
15667 cmdline_parse_token_string_t cmd_tx_offload_get_capa_capabilities =
15668 TOKEN_STRING_INITIALIZER
15669 (struct cmd_tx_offload_get_capa_result,
15670 capabilities, "capabilities");
15673 print_tx_offloads(uint64_t offloads)
15675 uint64_t single_offload;
15683 begin = __builtin_ctzll(offloads);
15684 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
15686 single_offload = 1ULL << begin;
15687 for (bit = begin; bit < end; bit++) {
15688 if (offloads & single_offload)
15690 rte_eth_dev_tx_offload_name(single_offload));
15691 single_offload <<= 1;
15696 cmd_tx_offload_get_capa_parsed(
15697 void *parsed_result,
15698 __rte_unused struct cmdline *cl,
15699 __rte_unused void *data)
15701 struct cmd_tx_offload_get_capa_result *res = parsed_result;
15702 struct rte_eth_dev_info dev_info;
15703 portid_t port_id = res->port_id;
15704 uint64_t queue_offloads;
15705 uint64_t port_offloads;
15708 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15712 queue_offloads = dev_info.tx_queue_offload_capa;
15713 port_offloads = dev_info.tx_offload_capa ^ queue_offloads;
15715 printf("Tx Offloading Capabilities of port %d :\n", port_id);
15716 printf(" Per Queue :");
15717 print_tx_offloads(queue_offloads);
15720 printf(" Per Port :");
15721 print_tx_offloads(port_offloads);
15725 cmdline_parse_inst_t cmd_tx_offload_get_capa = {
15726 .f = cmd_tx_offload_get_capa_parsed,
15728 .help_str = "show port <port_id> tx_offload capabilities",
15730 (void *)&cmd_tx_offload_get_capa_show,
15731 (void *)&cmd_tx_offload_get_capa_port,
15732 (void *)&cmd_tx_offload_get_capa_port_id,
15733 (void *)&cmd_tx_offload_get_capa_tx_offload,
15734 (void *)&cmd_tx_offload_get_capa_capabilities,
15739 /* Get Tx offloads configuration */
15740 struct cmd_tx_offload_get_configuration_result {
15741 cmdline_fixed_string_t show;
15742 cmdline_fixed_string_t port;
15744 cmdline_fixed_string_t tx_offload;
15745 cmdline_fixed_string_t configuration;
15748 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_show =
15749 TOKEN_STRING_INITIALIZER
15750 (struct cmd_tx_offload_get_configuration_result,
15752 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_port =
15753 TOKEN_STRING_INITIALIZER
15754 (struct cmd_tx_offload_get_configuration_result,
15756 cmdline_parse_token_num_t cmd_tx_offload_get_configuration_port_id =
15757 TOKEN_NUM_INITIALIZER
15758 (struct cmd_tx_offload_get_configuration_result,
15759 port_id, RTE_UINT16);
15760 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_tx_offload =
15761 TOKEN_STRING_INITIALIZER
15762 (struct cmd_tx_offload_get_configuration_result,
15763 tx_offload, "tx_offload");
15764 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_configuration =
15765 TOKEN_STRING_INITIALIZER
15766 (struct cmd_tx_offload_get_configuration_result,
15767 configuration, "configuration");
15770 cmd_tx_offload_get_configuration_parsed(
15771 void *parsed_result,
15772 __rte_unused struct cmdline *cl,
15773 __rte_unused void *data)
15775 struct cmd_tx_offload_get_configuration_result *res = parsed_result;
15776 struct rte_eth_dev_info dev_info;
15777 portid_t port_id = res->port_id;
15778 struct rte_port *port = &ports[port_id];
15779 uint64_t port_offloads;
15780 uint64_t queue_offloads;
15781 uint16_t nb_tx_queues;
15785 printf("Tx Offloading Configuration of port %d :\n", port_id);
15787 port_offloads = port->dev_conf.txmode.offloads;
15789 print_tx_offloads(port_offloads);
15792 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15796 nb_tx_queues = dev_info.nb_tx_queues;
15797 for (q = 0; q < nb_tx_queues; q++) {
15798 queue_offloads = port->tx_conf[q].offloads;
15799 printf(" Queue[%2d] :", q);
15800 print_tx_offloads(queue_offloads);
15806 cmdline_parse_inst_t cmd_tx_offload_get_configuration = {
15807 .f = cmd_tx_offload_get_configuration_parsed,
15809 .help_str = "show port <port_id> tx_offload configuration",
15811 (void *)&cmd_tx_offload_get_configuration_show,
15812 (void *)&cmd_tx_offload_get_configuration_port,
15813 (void *)&cmd_tx_offload_get_configuration_port_id,
15814 (void *)&cmd_tx_offload_get_configuration_tx_offload,
15815 (void *)&cmd_tx_offload_get_configuration_configuration,
15820 /* Enable/Disable a per port offloading */
15821 struct cmd_config_per_port_tx_offload_result {
15822 cmdline_fixed_string_t port;
15823 cmdline_fixed_string_t config;
15825 cmdline_fixed_string_t tx_offload;
15826 cmdline_fixed_string_t offload;
15827 cmdline_fixed_string_t on_off;
15830 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_port =
15831 TOKEN_STRING_INITIALIZER
15832 (struct cmd_config_per_port_tx_offload_result,
15834 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_config =
15835 TOKEN_STRING_INITIALIZER
15836 (struct cmd_config_per_port_tx_offload_result,
15838 cmdline_parse_token_num_t cmd_config_per_port_tx_offload_result_port_id =
15839 TOKEN_NUM_INITIALIZER
15840 (struct cmd_config_per_port_tx_offload_result,
15841 port_id, RTE_UINT16);
15842 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_tx_offload =
15843 TOKEN_STRING_INITIALIZER
15844 (struct cmd_config_per_port_tx_offload_result,
15845 tx_offload, "tx_offload");
15846 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_offload =
15847 TOKEN_STRING_INITIALIZER
15848 (struct cmd_config_per_port_tx_offload_result,
15849 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
15850 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
15851 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
15852 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
15853 "mt_lockfree#multi_segs#mbuf_fast_free#security#"
15854 "send_on_timestamp");
15855 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_on_off =
15856 TOKEN_STRING_INITIALIZER
15857 (struct cmd_config_per_port_tx_offload_result,
15861 search_tx_offload(const char *name)
15863 uint64_t single_offload;
15864 const char *single_name;
15868 single_offload = 1;
15869 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
15870 single_name = rte_eth_dev_tx_offload_name(single_offload);
15871 if (single_name == NULL)
15873 if (!strcasecmp(single_name, name)) {
15876 } else if (!strcasecmp(single_name, "UNKNOWN"))
15878 single_offload <<= 1;
15882 return single_offload;
15888 cmd_config_per_port_tx_offload_parsed(void *parsed_result,
15889 __rte_unused struct cmdline *cl,
15890 __rte_unused void *data)
15892 struct cmd_config_per_port_tx_offload_result *res = parsed_result;
15893 portid_t port_id = res->port_id;
15894 struct rte_eth_dev_info dev_info;
15895 struct rte_port *port = &ports[port_id];
15896 uint64_t single_offload;
15897 uint16_t nb_tx_queues;
15901 if (port->port_status != RTE_PORT_STOPPED) {
15902 printf("Error: Can't config offload when Port %d "
15903 "is not stopped\n", port_id);
15907 single_offload = search_tx_offload(res->offload);
15908 if (single_offload == 0) {
15909 printf("Unknown offload name: %s\n", res->offload);
15913 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15917 nb_tx_queues = dev_info.nb_tx_queues;
15918 if (!strcmp(res->on_off, "on")) {
15919 port->dev_conf.txmode.offloads |= single_offload;
15920 for (q = 0; q < nb_tx_queues; q++)
15921 port->tx_conf[q].offloads |= single_offload;
15923 port->dev_conf.txmode.offloads &= ~single_offload;
15924 for (q = 0; q < nb_tx_queues; q++)
15925 port->tx_conf[q].offloads &= ~single_offload;
15928 cmd_reconfig_device_queue(port_id, 1, 1);
15931 cmdline_parse_inst_t cmd_config_per_port_tx_offload = {
15932 .f = cmd_config_per_port_tx_offload_parsed,
15934 .help_str = "port config <port_id> tx_offload "
15935 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
15936 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
15937 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
15938 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
15939 "mt_lockfree|multi_segs|mbuf_fast_free|security|"
15940 "send_on_timestamp on|off",
15942 (void *)&cmd_config_per_port_tx_offload_result_port,
15943 (void *)&cmd_config_per_port_tx_offload_result_config,
15944 (void *)&cmd_config_per_port_tx_offload_result_port_id,
15945 (void *)&cmd_config_per_port_tx_offload_result_tx_offload,
15946 (void *)&cmd_config_per_port_tx_offload_result_offload,
15947 (void *)&cmd_config_per_port_tx_offload_result_on_off,
15952 /* Enable/Disable a per queue offloading */
15953 struct cmd_config_per_queue_tx_offload_result {
15954 cmdline_fixed_string_t port;
15956 cmdline_fixed_string_t txq;
15958 cmdline_fixed_string_t tx_offload;
15959 cmdline_fixed_string_t offload;
15960 cmdline_fixed_string_t on_off;
15963 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_port =
15964 TOKEN_STRING_INITIALIZER
15965 (struct cmd_config_per_queue_tx_offload_result,
15967 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_port_id =
15968 TOKEN_NUM_INITIALIZER
15969 (struct cmd_config_per_queue_tx_offload_result,
15970 port_id, RTE_UINT16);
15971 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txq =
15972 TOKEN_STRING_INITIALIZER
15973 (struct cmd_config_per_queue_tx_offload_result,
15975 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_queue_id =
15976 TOKEN_NUM_INITIALIZER
15977 (struct cmd_config_per_queue_tx_offload_result,
15978 queue_id, RTE_UINT16);
15979 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txoffload =
15980 TOKEN_STRING_INITIALIZER
15981 (struct cmd_config_per_queue_tx_offload_result,
15982 tx_offload, "tx_offload");
15983 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_offload =
15984 TOKEN_STRING_INITIALIZER
15985 (struct cmd_config_per_queue_tx_offload_result,
15986 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
15987 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
15988 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
15989 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
15990 "mt_lockfree#multi_segs#mbuf_fast_free#security");
15991 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_on_off =
15992 TOKEN_STRING_INITIALIZER
15993 (struct cmd_config_per_queue_tx_offload_result,
15997 cmd_config_per_queue_tx_offload_parsed(void *parsed_result,
15998 __rte_unused struct cmdline *cl,
15999 __rte_unused void *data)
16001 struct cmd_config_per_queue_tx_offload_result *res = parsed_result;
16002 struct rte_eth_dev_info dev_info;
16003 portid_t port_id = res->port_id;
16004 uint16_t queue_id = res->queue_id;
16005 struct rte_port *port = &ports[port_id];
16006 uint64_t single_offload;
16009 if (port->port_status != RTE_PORT_STOPPED) {
16010 printf("Error: Can't config offload when Port %d "
16011 "is not stopped\n", port_id);
16015 ret = eth_dev_info_get_print_err(port_id, &dev_info);
16019 if (queue_id >= dev_info.nb_tx_queues) {
16020 printf("Error: input queue_id should be 0 ... "
16021 "%d\n", dev_info.nb_tx_queues - 1);
16025 single_offload = search_tx_offload(res->offload);
16026 if (single_offload == 0) {
16027 printf("Unknown offload name: %s\n", res->offload);
16031 if (!strcmp(res->on_off, "on"))
16032 port->tx_conf[queue_id].offloads |= single_offload;
16034 port->tx_conf[queue_id].offloads &= ~single_offload;
16036 cmd_reconfig_device_queue(port_id, 1, 1);
16039 cmdline_parse_inst_t cmd_config_per_queue_tx_offload = {
16040 .f = cmd_config_per_queue_tx_offload_parsed,
16042 .help_str = "port <port_id> txq <queue_id> tx_offload "
16043 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
16044 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
16045 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
16046 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
16047 "mt_lockfree|multi_segs|mbuf_fast_free|security "
16050 (void *)&cmd_config_per_queue_tx_offload_result_port,
16051 (void *)&cmd_config_per_queue_tx_offload_result_port_id,
16052 (void *)&cmd_config_per_queue_tx_offload_result_txq,
16053 (void *)&cmd_config_per_queue_tx_offload_result_queue_id,
16054 (void *)&cmd_config_per_queue_tx_offload_result_txoffload,
16055 (void *)&cmd_config_per_queue_tx_offload_result_offload,
16056 (void *)&cmd_config_per_queue_tx_offload_result_on_off,
16061 /* *** configure tx_metadata for specific port *** */
16062 struct cmd_config_tx_metadata_specific_result {
16063 cmdline_fixed_string_t port;
16064 cmdline_fixed_string_t keyword;
16066 cmdline_fixed_string_t item;
16071 cmd_config_tx_metadata_specific_parsed(void *parsed_result,
16072 __rte_unused struct cmdline *cl,
16073 __rte_unused void *data)
16075 struct cmd_config_tx_metadata_specific_result *res = parsed_result;
16077 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
16079 ports[res->port_id].tx_metadata = res->value;
16080 /* Add/remove callback to insert valid metadata in every Tx packet. */
16081 if (ports[res->port_id].tx_metadata)
16082 add_tx_md_callback(res->port_id);
16084 remove_tx_md_callback(res->port_id);
16085 rte_flow_dynf_metadata_register();
16088 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_port =
16089 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16091 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_keyword =
16092 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16093 keyword, "config");
16094 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_id =
16095 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16096 port_id, RTE_UINT16);
16097 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_item =
16098 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16099 item, "tx_metadata");
16100 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_value =
16101 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16102 value, RTE_UINT32);
16104 cmdline_parse_inst_t cmd_config_tx_metadata_specific = {
16105 .f = cmd_config_tx_metadata_specific_parsed,
16107 .help_str = "port config <port_id> tx_metadata <value>",
16109 (void *)&cmd_config_tx_metadata_specific_port,
16110 (void *)&cmd_config_tx_metadata_specific_keyword,
16111 (void *)&cmd_config_tx_metadata_specific_id,
16112 (void *)&cmd_config_tx_metadata_specific_item,
16113 (void *)&cmd_config_tx_metadata_specific_value,
16118 /* *** set dynf *** */
16119 struct cmd_config_tx_dynf_specific_result {
16120 cmdline_fixed_string_t port;
16121 cmdline_fixed_string_t keyword;
16123 cmdline_fixed_string_t item;
16124 cmdline_fixed_string_t name;
16125 cmdline_fixed_string_t value;
16129 cmd_config_dynf_specific_parsed(void *parsed_result,
16130 __rte_unused struct cmdline *cl,
16131 __rte_unused void *data)
16133 struct cmd_config_tx_dynf_specific_result *res = parsed_result;
16134 struct rte_mbuf_dynflag desc_flag;
16136 uint64_t old_port_flags;
16138 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
16140 flag = rte_mbuf_dynflag_lookup(res->name, NULL);
16142 if (strlcpy(desc_flag.name, res->name,
16143 RTE_MBUF_DYN_NAMESIZE) >= RTE_MBUF_DYN_NAMESIZE) {
16144 printf("Flag name too long\n");
16147 desc_flag.flags = 0;
16148 flag = rte_mbuf_dynflag_register(&desc_flag);
16150 printf("Can't register flag\n");
16153 strcpy(dynf_names[flag], desc_flag.name);
16155 old_port_flags = ports[res->port_id].mbuf_dynf;
16156 if (!strcmp(res->value, "set")) {
16157 ports[res->port_id].mbuf_dynf |= 1UL << flag;
16158 if (old_port_flags == 0)
16159 add_tx_dynf_callback(res->port_id);
16161 ports[res->port_id].mbuf_dynf &= ~(1UL << flag);
16162 if (ports[res->port_id].mbuf_dynf == 0)
16163 remove_tx_dynf_callback(res->port_id);
16167 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_port =
16168 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16170 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_keyword =
16171 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16172 keyword, "config");
16173 cmdline_parse_token_num_t cmd_config_tx_dynf_specific_port_id =
16174 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16175 port_id, RTE_UINT16);
16176 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_item =
16177 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16179 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_name =
16180 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16182 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_value =
16183 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16184 value, "set#clear");
16186 cmdline_parse_inst_t cmd_config_tx_dynf_specific = {
16187 .f = cmd_config_dynf_specific_parsed,
16189 .help_str = "port config <port id> dynf <name> set|clear",
16191 (void *)&cmd_config_tx_dynf_specific_port,
16192 (void *)&cmd_config_tx_dynf_specific_keyword,
16193 (void *)&cmd_config_tx_dynf_specific_port_id,
16194 (void *)&cmd_config_tx_dynf_specific_item,
16195 (void *)&cmd_config_tx_dynf_specific_name,
16196 (void *)&cmd_config_tx_dynf_specific_value,
16201 /* *** display tx_metadata per port configuration *** */
16202 struct cmd_show_tx_metadata_result {
16203 cmdline_fixed_string_t cmd_show;
16204 cmdline_fixed_string_t cmd_port;
16205 cmdline_fixed_string_t cmd_keyword;
16210 cmd_show_tx_metadata_parsed(void *parsed_result,
16211 __rte_unused struct cmdline *cl,
16212 __rte_unused void *data)
16214 struct cmd_show_tx_metadata_result *res = parsed_result;
16216 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16217 printf("invalid port id %u\n", res->cmd_pid);
16220 if (!strcmp(res->cmd_keyword, "tx_metadata")) {
16221 printf("Port %u tx_metadata: %u\n", res->cmd_pid,
16222 ports[res->cmd_pid].tx_metadata);
16226 cmdline_parse_token_string_t cmd_show_tx_metadata_show =
16227 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16229 cmdline_parse_token_string_t cmd_show_tx_metadata_port =
16230 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16232 cmdline_parse_token_num_t cmd_show_tx_metadata_pid =
16233 TOKEN_NUM_INITIALIZER(struct cmd_show_tx_metadata_result,
16234 cmd_pid, RTE_UINT16);
16235 cmdline_parse_token_string_t cmd_show_tx_metadata_keyword =
16236 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16237 cmd_keyword, "tx_metadata");
16239 cmdline_parse_inst_t cmd_show_tx_metadata = {
16240 .f = cmd_show_tx_metadata_parsed,
16242 .help_str = "show port <port_id> tx_metadata",
16244 (void *)&cmd_show_tx_metadata_show,
16245 (void *)&cmd_show_tx_metadata_port,
16246 (void *)&cmd_show_tx_metadata_pid,
16247 (void *)&cmd_show_tx_metadata_keyword,
16252 /* *** show fec capability per port configuration *** */
16253 struct cmd_show_fec_capability_result {
16254 cmdline_fixed_string_t cmd_show;
16255 cmdline_fixed_string_t cmd_port;
16256 cmdline_fixed_string_t cmd_fec;
16257 cmdline_fixed_string_t cmd_keyword;
16262 cmd_show_fec_capability_parsed(void *parsed_result,
16263 __rte_unused struct cmdline *cl,
16264 __rte_unused void *data)
16266 #define FEC_CAP_NUM 2
16267 struct cmd_show_fec_capability_result *res = parsed_result;
16268 struct rte_eth_fec_capa speed_fec_capa[FEC_CAP_NUM];
16269 unsigned int num = FEC_CAP_NUM;
16270 unsigned int ret_num;
16273 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16274 printf("Invalid port id %u\n", res->cmd_pid);
16278 ret = rte_eth_fec_get_capability(res->cmd_pid, speed_fec_capa, num);
16279 if (ret == -ENOTSUP) {
16280 printf("Function not implemented\n");
16282 } else if (ret < 0) {
16283 printf("Get FEC capability failed\n");
16287 ret_num = (unsigned int)ret;
16288 show_fec_capability(ret_num, speed_fec_capa);
16291 cmdline_parse_token_string_t cmd_show_fec_capability_show =
16292 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16294 cmdline_parse_token_string_t cmd_show_fec_capability_port =
16295 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16297 cmdline_parse_token_num_t cmd_show_fec_capability_pid =
16298 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_capability_result,
16299 cmd_pid, RTE_UINT16);
16300 cmdline_parse_token_string_t cmd_show_fec_capability_fec =
16301 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16303 cmdline_parse_token_string_t cmd_show_fec_capability_keyword =
16304 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16305 cmd_keyword, "capabilities");
16307 cmdline_parse_inst_t cmd_show_capability = {
16308 .f = cmd_show_fec_capability_parsed,
16310 .help_str = "show port <port_id> fec capabilities",
16312 (void *)&cmd_show_fec_capability_show,
16313 (void *)&cmd_show_fec_capability_port,
16314 (void *)&cmd_show_fec_capability_pid,
16315 (void *)&cmd_show_fec_capability_fec,
16316 (void *)&cmd_show_fec_capability_keyword,
16321 /* *** show fec mode per port configuration *** */
16322 struct cmd_show_fec_metadata_result {
16323 cmdline_fixed_string_t cmd_show;
16324 cmdline_fixed_string_t cmd_port;
16325 cmdline_fixed_string_t cmd_keyword;
16330 cmd_show_fec_mode_parsed(void *parsed_result,
16331 __rte_unused struct cmdline *cl,
16332 __rte_unused void *data)
16334 #define FEC_NAME_SIZE 16
16335 struct cmd_show_fec_metadata_result *res = parsed_result;
16337 char buf[FEC_NAME_SIZE];
16340 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16341 printf("Invalid port id %u\n", res->cmd_pid);
16344 ret = rte_eth_fec_get(res->cmd_pid, &mode);
16345 if (ret == -ENOTSUP) {
16346 printf("Function not implemented\n");
16348 } else if (ret < 0) {
16349 printf("Get FEC mode failed\n");
16354 case RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC):
16355 strlcpy(buf, "off", sizeof(buf));
16357 case RTE_ETH_FEC_MODE_CAPA_MASK(AUTO):
16358 strlcpy(buf, "auto", sizeof(buf));
16360 case RTE_ETH_FEC_MODE_CAPA_MASK(BASER):
16361 strlcpy(buf, "baser", sizeof(buf));
16363 case RTE_ETH_FEC_MODE_CAPA_MASK(RS):
16364 strlcpy(buf, "rs", sizeof(buf));
16370 printf("%s\n", buf);
16373 cmdline_parse_token_string_t cmd_show_fec_mode_show =
16374 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16376 cmdline_parse_token_string_t cmd_show_fec_mode_port =
16377 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16379 cmdline_parse_token_num_t cmd_show_fec_mode_pid =
16380 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_metadata_result,
16381 cmd_pid, RTE_UINT16);
16382 cmdline_parse_token_string_t cmd_show_fec_mode_keyword =
16383 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16384 cmd_keyword, "fec_mode");
16386 cmdline_parse_inst_t cmd_show_fec_mode = {
16387 .f = cmd_show_fec_mode_parsed,
16389 .help_str = "show port <port_id> fec_mode",
16391 (void *)&cmd_show_fec_mode_show,
16392 (void *)&cmd_show_fec_mode_port,
16393 (void *)&cmd_show_fec_mode_pid,
16394 (void *)&cmd_show_fec_mode_keyword,
16399 /* *** set fec mode per port configuration *** */
16400 struct cmd_set_port_fec_mode {
16401 cmdline_fixed_string_t set;
16402 cmdline_fixed_string_t port;
16404 cmdline_fixed_string_t fec_mode;
16405 cmdline_fixed_string_t fec_value;
16408 /* Common CLI fields for set fec mode */
16409 cmdline_parse_token_string_t cmd_set_port_fec_mode_set =
16410 TOKEN_STRING_INITIALIZER
16411 (struct cmd_set_port_fec_mode,
16413 cmdline_parse_token_string_t cmd_set_port_fec_mode_port =
16414 TOKEN_STRING_INITIALIZER
16415 (struct cmd_set_port_fec_mode,
16417 cmdline_parse_token_num_t cmd_set_port_fec_mode_port_id =
16418 TOKEN_NUM_INITIALIZER
16419 (struct cmd_set_port_fec_mode,
16420 port_id, RTE_UINT16);
16421 cmdline_parse_token_string_t cmd_set_port_fec_mode_str =
16422 TOKEN_STRING_INITIALIZER
16423 (struct cmd_set_port_fec_mode,
16424 fec_mode, "fec_mode");
16425 cmdline_parse_token_string_t cmd_set_port_fec_mode_value =
16426 TOKEN_STRING_INITIALIZER
16427 (struct cmd_set_port_fec_mode,
16431 cmd_set_port_fec_mode_parsed(
16432 void *parsed_result,
16433 __rte_unused struct cmdline *cl,
16434 __rte_unused void *data)
16436 struct cmd_set_port_fec_mode *res = parsed_result;
16437 uint16_t port_id = res->port_id;
16441 ret = parse_fec_mode(res->fec_value, &mode);
16443 printf("Unknown fec mode: %s for Port %d\n", res->fec_value,
16448 ret = rte_eth_fec_set(port_id, mode);
16449 if (ret == -ENOTSUP) {
16450 printf("Function not implemented\n");
16452 } else if (ret < 0) {
16453 printf("Set FEC mode failed\n");
16458 cmdline_parse_inst_t cmd_set_fec_mode = {
16459 .f = cmd_set_port_fec_mode_parsed,
16461 .help_str = "set port <port_id> fec_mode auto|off|rs|baser",
16463 (void *)&cmd_set_port_fec_mode_set,
16464 (void *)&cmd_set_port_fec_mode_port,
16465 (void *)&cmd_set_port_fec_mode_port_id,
16466 (void *)&cmd_set_port_fec_mode_str,
16467 (void *)&cmd_set_port_fec_mode_value,
16472 /* show port supported ptypes */
16474 /* Common result structure for show port ptypes */
16475 struct cmd_show_port_supported_ptypes_result {
16476 cmdline_fixed_string_t show;
16477 cmdline_fixed_string_t port;
16479 cmdline_fixed_string_t ptypes;
16482 /* Common CLI fields for show port ptypes */
16483 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_show =
16484 TOKEN_STRING_INITIALIZER
16485 (struct cmd_show_port_supported_ptypes_result,
16487 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_port =
16488 TOKEN_STRING_INITIALIZER
16489 (struct cmd_show_port_supported_ptypes_result,
16491 cmdline_parse_token_num_t cmd_show_port_supported_ptypes_port_id =
16492 TOKEN_NUM_INITIALIZER
16493 (struct cmd_show_port_supported_ptypes_result,
16494 port_id, RTE_UINT16);
16495 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_ptypes =
16496 TOKEN_STRING_INITIALIZER
16497 (struct cmd_show_port_supported_ptypes_result,
16501 cmd_show_port_supported_ptypes_parsed(
16502 void *parsed_result,
16503 __rte_unused struct cmdline *cl,
16504 __rte_unused void *data)
16506 #define RSVD_PTYPE_MASK 0xf0000000
16507 #define MAX_PTYPES_PER_LAYER 16
16508 #define LTYPE_NAMESIZE 32
16509 #define PTYPE_NAMESIZE 256
16510 struct cmd_show_port_supported_ptypes_result *res = parsed_result;
16511 char buf[PTYPE_NAMESIZE], ltype[LTYPE_NAMESIZE];
16512 uint32_t ptype_mask = RTE_PTYPE_L2_MASK;
16513 uint32_t ptypes[MAX_PTYPES_PER_LAYER];
16514 uint16_t port_id = res->port_id;
16517 ret = rte_eth_dev_get_supported_ptypes(port_id, ptype_mask, NULL, 0);
16521 while (ptype_mask != RSVD_PTYPE_MASK) {
16523 switch (ptype_mask) {
16524 case RTE_PTYPE_L2_MASK:
16525 strlcpy(ltype, "L2", sizeof(ltype));
16527 case RTE_PTYPE_L3_MASK:
16528 strlcpy(ltype, "L3", sizeof(ltype));
16530 case RTE_PTYPE_L4_MASK:
16531 strlcpy(ltype, "L4", sizeof(ltype));
16533 case RTE_PTYPE_TUNNEL_MASK:
16534 strlcpy(ltype, "Tunnel", sizeof(ltype));
16536 case RTE_PTYPE_INNER_L2_MASK:
16537 strlcpy(ltype, "Inner L2", sizeof(ltype));
16539 case RTE_PTYPE_INNER_L3_MASK:
16540 strlcpy(ltype, "Inner L3", sizeof(ltype));
16542 case RTE_PTYPE_INNER_L4_MASK:
16543 strlcpy(ltype, "Inner L4", sizeof(ltype));
16549 ret = rte_eth_dev_get_supported_ptypes(res->port_id,
16550 ptype_mask, ptypes,
16551 MAX_PTYPES_PER_LAYER);
16554 printf("Supported %s ptypes:\n", ltype);
16556 printf("%s ptypes unsupported\n", ltype);
16558 for (i = 0; i < ret; ++i) {
16559 rte_get_ptype_name(ptypes[i], buf, sizeof(buf));
16560 printf("%s\n", buf);
16567 cmdline_parse_inst_t cmd_show_port_supported_ptypes = {
16568 .f = cmd_show_port_supported_ptypes_parsed,
16570 .help_str = "show port <port_id> ptypes",
16572 (void *)&cmd_show_port_supported_ptypes_show,
16573 (void *)&cmd_show_port_supported_ptypes_port,
16574 (void *)&cmd_show_port_supported_ptypes_port_id,
16575 (void *)&cmd_show_port_supported_ptypes_ptypes,
16580 /* *** display rx/tx descriptor status *** */
16581 struct cmd_show_rx_tx_desc_status_result {
16582 cmdline_fixed_string_t cmd_show;
16583 cmdline_fixed_string_t cmd_port;
16584 cmdline_fixed_string_t cmd_keyword;
16585 cmdline_fixed_string_t cmd_desc;
16586 cmdline_fixed_string_t cmd_status;
16593 cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
16594 __rte_unused struct cmdline *cl,
16595 __rte_unused void *data)
16597 struct cmd_show_rx_tx_desc_status_result *res = parsed_result;
16600 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16601 printf("invalid port id %u\n", res->cmd_pid);
16605 if (!strcmp(res->cmd_keyword, "rxq")) {
16606 rc = rte_eth_rx_descriptor_status(res->cmd_pid, res->cmd_qid,
16609 printf("Invalid queueid = %d\n", res->cmd_qid);
16612 if (rc == RTE_ETH_RX_DESC_AVAIL)
16613 printf("Desc status = AVAILABLE\n");
16614 else if (rc == RTE_ETH_RX_DESC_DONE)
16615 printf("Desc status = DONE\n");
16617 printf("Desc status = UNAVAILABLE\n");
16618 } else if (!strcmp(res->cmd_keyword, "txq")) {
16619 rc = rte_eth_tx_descriptor_status(res->cmd_pid, res->cmd_qid,
16622 printf("Invalid queueid = %d\n", res->cmd_qid);
16625 if (rc == RTE_ETH_TX_DESC_FULL)
16626 printf("Desc status = FULL\n");
16627 else if (rc == RTE_ETH_TX_DESC_DONE)
16628 printf("Desc status = DONE\n");
16630 printf("Desc status = UNAVAILABLE\n");
16634 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_show =
16635 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16637 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_port =
16638 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16640 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_pid =
16641 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16642 cmd_pid, RTE_UINT16);
16643 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_keyword =
16644 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16645 cmd_keyword, "rxq#txq");
16646 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_qid =
16647 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16648 cmd_qid, RTE_UINT16);
16649 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_desc =
16650 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16652 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_did =
16653 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16654 cmd_did, RTE_UINT16);
16655 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_status =
16656 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16657 cmd_status, "status");
16658 cmdline_parse_inst_t cmd_show_rx_tx_desc_status = {
16659 .f = cmd_show_rx_tx_desc_status_parsed,
16661 .help_str = "show port <port_id> rxq|txq <queue_id> desc <desc_id> "
16664 (void *)&cmd_show_rx_tx_desc_status_show,
16665 (void *)&cmd_show_rx_tx_desc_status_port,
16666 (void *)&cmd_show_rx_tx_desc_status_pid,
16667 (void *)&cmd_show_rx_tx_desc_status_keyword,
16668 (void *)&cmd_show_rx_tx_desc_status_qid,
16669 (void *)&cmd_show_rx_tx_desc_status_desc,
16670 (void *)&cmd_show_rx_tx_desc_status_did,
16671 (void *)&cmd_show_rx_tx_desc_status_status,
16676 /* Common result structure for set port ptypes */
16677 struct cmd_set_port_ptypes_result {
16678 cmdline_fixed_string_t set;
16679 cmdline_fixed_string_t port;
16681 cmdline_fixed_string_t ptype_mask;
16685 /* Common CLI fields for set port ptypes */
16686 cmdline_parse_token_string_t cmd_set_port_ptypes_set =
16687 TOKEN_STRING_INITIALIZER
16688 (struct cmd_set_port_ptypes_result,
16690 cmdline_parse_token_string_t cmd_set_port_ptypes_port =
16691 TOKEN_STRING_INITIALIZER
16692 (struct cmd_set_port_ptypes_result,
16694 cmdline_parse_token_num_t cmd_set_port_ptypes_port_id =
16695 TOKEN_NUM_INITIALIZER
16696 (struct cmd_set_port_ptypes_result,
16697 port_id, RTE_UINT16);
16698 cmdline_parse_token_string_t cmd_set_port_ptypes_mask_str =
16699 TOKEN_STRING_INITIALIZER
16700 (struct cmd_set_port_ptypes_result,
16701 ptype_mask, "ptype_mask");
16702 cmdline_parse_token_num_t cmd_set_port_ptypes_mask_u32 =
16703 TOKEN_NUM_INITIALIZER
16704 (struct cmd_set_port_ptypes_result,
16708 cmd_set_port_ptypes_parsed(
16709 void *parsed_result,
16710 __rte_unused struct cmdline *cl,
16711 __rte_unused void *data)
16713 struct cmd_set_port_ptypes_result *res = parsed_result;
16714 #define PTYPE_NAMESIZE 256
16715 char ptype_name[PTYPE_NAMESIZE];
16716 uint16_t port_id = res->port_id;
16717 uint32_t ptype_mask = res->mask;
16720 ret = rte_eth_dev_get_supported_ptypes(port_id, RTE_PTYPE_ALL_MASK,
16723 printf("Port %d doesn't support any ptypes.\n", port_id);
16727 uint32_t ptypes[ret];
16729 ret = rte_eth_dev_set_ptypes(port_id, ptype_mask, ptypes, ret);
16731 printf("Unable to set requested ptypes for Port %d\n", port_id);
16735 printf("Successfully set following ptypes for Port %d\n", port_id);
16736 for (i = 0; i < ret && ptypes[i] != RTE_PTYPE_UNKNOWN; i++) {
16737 rte_get_ptype_name(ptypes[i], ptype_name, sizeof(ptype_name));
16738 printf("%s\n", ptype_name);
16741 clear_ptypes = false;
16744 cmdline_parse_inst_t cmd_set_port_ptypes = {
16745 .f = cmd_set_port_ptypes_parsed,
16747 .help_str = "set port <port_id> ptype_mask <mask>",
16749 (void *)&cmd_set_port_ptypes_set,
16750 (void *)&cmd_set_port_ptypes_port,
16751 (void *)&cmd_set_port_ptypes_port_id,
16752 (void *)&cmd_set_port_ptypes_mask_str,
16753 (void *)&cmd_set_port_ptypes_mask_u32,
16758 /* *** display mac addresses added to a port *** */
16759 struct cmd_showport_macs_result {
16760 cmdline_fixed_string_t cmd_show;
16761 cmdline_fixed_string_t cmd_port;
16762 cmdline_fixed_string_t cmd_keyword;
16767 cmd_showport_macs_parsed(void *parsed_result,
16768 __rte_unused struct cmdline *cl,
16769 __rte_unused void *data)
16771 struct cmd_showport_macs_result *res = parsed_result;
16773 if (port_id_is_invalid(res->cmd_pid, ENABLED_WARN))
16776 if (!strcmp(res->cmd_keyword, "macs"))
16777 show_macs(res->cmd_pid);
16778 else if (!strcmp(res->cmd_keyword, "mcast_macs"))
16779 show_mcast_macs(res->cmd_pid);
16782 cmdline_parse_token_string_t cmd_showport_macs_show =
16783 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16785 cmdline_parse_token_string_t cmd_showport_macs_port =
16786 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16788 cmdline_parse_token_num_t cmd_showport_macs_pid =
16789 TOKEN_NUM_INITIALIZER(struct cmd_showport_macs_result,
16790 cmd_pid, RTE_UINT16);
16791 cmdline_parse_token_string_t cmd_showport_macs_keyword =
16792 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16793 cmd_keyword, "macs#mcast_macs");
16795 cmdline_parse_inst_t cmd_showport_macs = {
16796 .f = cmd_showport_macs_parsed,
16798 .help_str = "show port <port_id> macs|mcast_macs",
16800 (void *)&cmd_showport_macs_show,
16801 (void *)&cmd_showport_macs_port,
16802 (void *)&cmd_showport_macs_pid,
16803 (void *)&cmd_showport_macs_keyword,
16808 /* ******************************************************************************** */
16810 /* list of instructions */
16811 cmdline_parse_ctx_t main_ctx[] = {
16812 (cmdline_parse_inst_t *)&cmd_help_brief,
16813 (cmdline_parse_inst_t *)&cmd_help_long,
16814 (cmdline_parse_inst_t *)&cmd_quit,
16815 (cmdline_parse_inst_t *)&cmd_load_from_file,
16816 (cmdline_parse_inst_t *)&cmd_showport,
16817 (cmdline_parse_inst_t *)&cmd_showqueue,
16818 (cmdline_parse_inst_t *)&cmd_showeeprom,
16819 (cmdline_parse_inst_t *)&cmd_showportall,
16820 (cmdline_parse_inst_t *)&cmd_showdevice,
16821 (cmdline_parse_inst_t *)&cmd_showcfg,
16822 (cmdline_parse_inst_t *)&cmd_showfwdall,
16823 (cmdline_parse_inst_t *)&cmd_start,
16824 (cmdline_parse_inst_t *)&cmd_start_tx_first,
16825 (cmdline_parse_inst_t *)&cmd_start_tx_first_n,
16826 (cmdline_parse_inst_t *)&cmd_set_link_up,
16827 (cmdline_parse_inst_t *)&cmd_set_link_down,
16828 (cmdline_parse_inst_t *)&cmd_reset,
16829 (cmdline_parse_inst_t *)&cmd_set_numbers,
16830 (cmdline_parse_inst_t *)&cmd_set_log,
16831 (cmdline_parse_inst_t *)&cmd_set_rxoffs,
16832 (cmdline_parse_inst_t *)&cmd_set_rxpkts,
16833 (cmdline_parse_inst_t *)&cmd_set_txpkts,
16834 (cmdline_parse_inst_t *)&cmd_set_txsplit,
16835 (cmdline_parse_inst_t *)&cmd_set_txtimes,
16836 (cmdline_parse_inst_t *)&cmd_set_fwd_list,
16837 (cmdline_parse_inst_t *)&cmd_set_fwd_mask,
16838 (cmdline_parse_inst_t *)&cmd_set_fwd_mode,
16839 (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode,
16840 (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry,
16841 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one,
16842 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all,
16843 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one,
16844 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all,
16845 (cmdline_parse_inst_t *)&cmd_set_flush_rx,
16846 (cmdline_parse_inst_t *)&cmd_set_link_check,
16847 (cmdline_parse_inst_t *)&cmd_set_bypass_mode,
16848 (cmdline_parse_inst_t *)&cmd_set_bypass_event,
16849 (cmdline_parse_inst_t *)&cmd_set_bypass_timeout,
16850 (cmdline_parse_inst_t *)&cmd_show_bypass_config,
16851 #ifdef RTE_NET_BOND
16852 (cmdline_parse_inst_t *) &cmd_set_bonding_mode,
16853 (cmdline_parse_inst_t *) &cmd_show_bonding_config,
16854 (cmdline_parse_inst_t *) &cmd_set_bonding_primary,
16855 (cmdline_parse_inst_t *) &cmd_add_bonding_slave,
16856 (cmdline_parse_inst_t *) &cmd_remove_bonding_slave,
16857 (cmdline_parse_inst_t *) &cmd_create_bonded_device,
16858 (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr,
16859 (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy,
16860 (cmdline_parse_inst_t *) &cmd_set_bond_mon_period,
16861 (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues,
16862 (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy,
16864 (cmdline_parse_inst_t *)&cmd_vlan_offload,
16865 (cmdline_parse_inst_t *)&cmd_vlan_tpid,
16866 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all,
16867 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter,
16868 (cmdline_parse_inst_t *)&cmd_tx_vlan_set,
16869 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq,
16870 (cmdline_parse_inst_t *)&cmd_tx_vlan_reset,
16871 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid,
16872 (cmdline_parse_inst_t *)&cmd_csum_set,
16873 (cmdline_parse_inst_t *)&cmd_csum_show,
16874 (cmdline_parse_inst_t *)&cmd_csum_tunnel,
16875 (cmdline_parse_inst_t *)&cmd_tso_set,
16876 (cmdline_parse_inst_t *)&cmd_tso_show,
16877 (cmdline_parse_inst_t *)&cmd_tunnel_tso_set,
16878 (cmdline_parse_inst_t *)&cmd_tunnel_tso_show,
16879 (cmdline_parse_inst_t *)&cmd_gro_enable,
16880 (cmdline_parse_inst_t *)&cmd_gro_flush,
16881 (cmdline_parse_inst_t *)&cmd_gro_show,
16882 (cmdline_parse_inst_t *)&cmd_gso_enable,
16883 (cmdline_parse_inst_t *)&cmd_gso_size,
16884 (cmdline_parse_inst_t *)&cmd_gso_show,
16885 (cmdline_parse_inst_t *)&cmd_link_flow_control_set,
16886 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx,
16887 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx,
16888 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw,
16889 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw,
16890 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt,
16891 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
16892 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
16893 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
16894 (cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
16895 (cmdline_parse_inst_t *)&cmd_config_dcb,
16896 (cmdline_parse_inst_t *)&cmd_read_reg,
16897 (cmdline_parse_inst_t *)&cmd_read_reg_bit_field,
16898 (cmdline_parse_inst_t *)&cmd_read_reg_bit,
16899 (cmdline_parse_inst_t *)&cmd_write_reg,
16900 (cmdline_parse_inst_t *)&cmd_write_reg_bit_field,
16901 (cmdline_parse_inst_t *)&cmd_write_reg_bit,
16902 (cmdline_parse_inst_t *)&cmd_read_rxd_txd,
16903 (cmdline_parse_inst_t *)&cmd_stop,
16904 (cmdline_parse_inst_t *)&cmd_mac_addr,
16905 (cmdline_parse_inst_t *)&cmd_set_fwd_eth_peer,
16906 (cmdline_parse_inst_t *)&cmd_set_qmap,
16907 (cmdline_parse_inst_t *)&cmd_set_xstats_hide_zero,
16908 (cmdline_parse_inst_t *)&cmd_set_record_core_cycles,
16909 (cmdline_parse_inst_t *)&cmd_set_record_burst_stats,
16910 (cmdline_parse_inst_t *)&cmd_operate_port,
16911 (cmdline_parse_inst_t *)&cmd_operate_specific_port,
16912 (cmdline_parse_inst_t *)&cmd_operate_attach_port,
16913 (cmdline_parse_inst_t *)&cmd_operate_detach_port,
16914 (cmdline_parse_inst_t *)&cmd_operate_detach_device,
16915 (cmdline_parse_inst_t *)&cmd_set_port_setup_on,
16916 (cmdline_parse_inst_t *)&cmd_config_speed_all,
16917 (cmdline_parse_inst_t *)&cmd_config_speed_specific,
16918 (cmdline_parse_inst_t *)&cmd_config_loopback_all,
16919 (cmdline_parse_inst_t *)&cmd_config_loopback_specific,
16920 (cmdline_parse_inst_t *)&cmd_config_rx_tx,
16921 (cmdline_parse_inst_t *)&cmd_config_mtu,
16922 (cmdline_parse_inst_t *)&cmd_config_max_pkt_len,
16923 (cmdline_parse_inst_t *)&cmd_config_max_lro_pkt_size,
16924 (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag,
16925 (cmdline_parse_inst_t *)&cmd_config_rss,
16926 (cmdline_parse_inst_t *)&cmd_config_rxtx_ring_size,
16927 (cmdline_parse_inst_t *)&cmd_config_rxtx_queue,
16928 (cmdline_parse_inst_t *)&cmd_config_deferred_start_rxtx_queue,
16929 (cmdline_parse_inst_t *)&cmd_setup_rxtx_queue,
16930 (cmdline_parse_inst_t *)&cmd_config_rss_reta,
16931 (cmdline_parse_inst_t *)&cmd_showport_reta,
16932 (cmdline_parse_inst_t *)&cmd_showport_macs,
16933 (cmdline_parse_inst_t *)&cmd_config_burst,
16934 (cmdline_parse_inst_t *)&cmd_config_thresh,
16935 (cmdline_parse_inst_t *)&cmd_config_threshold,
16936 (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter,
16937 (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter,
16938 (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter,
16939 (cmdline_parse_inst_t *)&cmd_queue_rate_limit,
16940 (cmdline_parse_inst_t *)&cmd_tunnel_udp_config,
16941 (cmdline_parse_inst_t *)&cmd_set_mirror_mask,
16942 (cmdline_parse_inst_t *)&cmd_set_mirror_link,
16943 (cmdline_parse_inst_t *)&cmd_reset_mirror_rule,
16944 (cmdline_parse_inst_t *)&cmd_showport_rss_hash,
16945 (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
16946 (cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
16947 (cmdline_parse_inst_t *)&cmd_dump,
16948 (cmdline_parse_inst_t *)&cmd_dump_one,
16949 #ifdef RTE_NET_I40E
16950 (cmdline_parse_inst_t *)&cmd_add_del_raw_flow_director,
16952 (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask,
16953 (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask,
16954 (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask,
16955 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload,
16956 (cmdline_parse_inst_t *)&cmd_flow,
16957 (cmdline_parse_inst_t *)&cmd_show_port_meter_cap,
16958 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_srtcm,
16959 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_trtcm,
16960 (cmdline_parse_inst_t *)&cmd_del_port_meter_profile,
16961 (cmdline_parse_inst_t *)&cmd_create_port_meter,
16962 (cmdline_parse_inst_t *)&cmd_enable_port_meter,
16963 (cmdline_parse_inst_t *)&cmd_disable_port_meter,
16964 (cmdline_parse_inst_t *)&cmd_del_port_meter,
16965 (cmdline_parse_inst_t *)&cmd_set_port_meter_profile,
16966 (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table,
16967 (cmdline_parse_inst_t *)&cmd_set_port_meter_policer_action,
16968 (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask,
16969 (cmdline_parse_inst_t *)&cmd_show_port_meter_stats,
16970 (cmdline_parse_inst_t *)&cmd_mcast_addr,
16971 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof,
16972 (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof,
16973 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq,
16974 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert,
16975 (cmdline_parse_inst_t *)&cmd_set_tx_loopback,
16976 (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en,
16977 (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en,
16978 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on,
16979 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off,
16980 (cmdline_parse_inst_t *)&cmd_set_macsec_sc,
16981 (cmdline_parse_inst_t *)&cmd_set_macsec_sa,
16982 (cmdline_parse_inst_t *)&cmd_set_vf_traffic,
16983 (cmdline_parse_inst_t *)&cmd_set_vf_rxmode,
16984 (cmdline_parse_inst_t *)&cmd_vf_rate_limit,
16985 (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter,
16986 (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr,
16987 (cmdline_parse_inst_t *)&cmd_set_vf_promisc,
16988 (cmdline_parse_inst_t *)&cmd_set_vf_allmulti,
16989 (cmdline_parse_inst_t *)&cmd_set_vf_broadcast,
16990 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag,
16991 (cmdline_parse_inst_t *)&cmd_vf_max_bw,
16992 (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw,
16993 (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw,
16994 (cmdline_parse_inst_t *)&cmd_strict_link_prio,
16995 (cmdline_parse_inst_t *)&cmd_tc_min_bw,
16996 (cmdline_parse_inst_t *)&cmd_set_vxlan,
16997 (cmdline_parse_inst_t *)&cmd_set_vxlan_tos_ttl,
16998 (cmdline_parse_inst_t *)&cmd_set_vxlan_with_vlan,
16999 (cmdline_parse_inst_t *)&cmd_set_nvgre,
17000 (cmdline_parse_inst_t *)&cmd_set_nvgre_with_vlan,
17001 (cmdline_parse_inst_t *)&cmd_set_l2_encap,
17002 (cmdline_parse_inst_t *)&cmd_set_l2_encap_with_vlan,
17003 (cmdline_parse_inst_t *)&cmd_set_l2_decap,
17004 (cmdline_parse_inst_t *)&cmd_set_l2_decap_with_vlan,
17005 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap,
17006 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap_with_vlan,
17007 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap,
17008 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap_with_vlan,
17009 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap,
17010 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap_with_vlan,
17011 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap,
17012 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap_with_vlan,
17013 (cmdline_parse_inst_t *)&cmd_ddp_add,
17014 (cmdline_parse_inst_t *)&cmd_ddp_del,
17015 (cmdline_parse_inst_t *)&cmd_ddp_get_list,
17016 (cmdline_parse_inst_t *)&cmd_ddp_get_info,
17017 (cmdline_parse_inst_t *)&cmd_cfg_input_set,
17018 (cmdline_parse_inst_t *)&cmd_clear_input_set,
17019 (cmdline_parse_inst_t *)&cmd_show_vf_stats,
17020 (cmdline_parse_inst_t *)&cmd_clear_vf_stats,
17021 (cmdline_parse_inst_t *)&cmd_show_port_supported_ptypes,
17022 (cmdline_parse_inst_t *)&cmd_set_port_ptypes,
17023 (cmdline_parse_inst_t *)&cmd_ptype_mapping_get,
17024 (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace,
17025 (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset,
17026 (cmdline_parse_inst_t *)&cmd_ptype_mapping_update,
17028 (cmdline_parse_inst_t *)&cmd_pctype_mapping_get,
17029 (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset,
17030 (cmdline_parse_inst_t *)&cmd_pctype_mapping_update,
17031 (cmdline_parse_inst_t *)&cmd_queue_region,
17032 (cmdline_parse_inst_t *)&cmd_region_flowtype,
17033 (cmdline_parse_inst_t *)&cmd_user_priority_region,
17034 (cmdline_parse_inst_t *)&cmd_flush_queue_region,
17035 (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all,
17036 (cmdline_parse_inst_t *)&cmd_show_port_tm_cap,
17037 (cmdline_parse_inst_t *)&cmd_show_port_tm_level_cap,
17038 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_cap,
17039 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_type,
17040 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_stats,
17041 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shaper_profile,
17042 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shaper_profile,
17043 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shared_shaper,
17044 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shared_shaper,
17045 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_wred_profile,
17046 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_wred_profile,
17047 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_shaper_profile,
17048 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node,
17049 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node_pmode,
17050 (cmdline_parse_inst_t *)&cmd_add_port_tm_leaf_node,
17051 (cmdline_parse_inst_t *)&cmd_del_port_tm_node,
17052 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_parent,
17053 (cmdline_parse_inst_t *)&cmd_suspend_port_tm_node,
17054 (cmdline_parse_inst_t *)&cmd_resume_port_tm_node,
17055 (cmdline_parse_inst_t *)&cmd_port_tm_hierarchy_commit,
17056 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_ecn,
17057 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_dscp,
17058 (cmdline_parse_inst_t *)&cmd_port_tm_mark_vlan_dei,
17059 (cmdline_parse_inst_t *)&cmd_cfg_tunnel_udp_port,
17060 (cmdline_parse_inst_t *)&cmd_rx_offload_get_capa,
17061 (cmdline_parse_inst_t *)&cmd_rx_offload_get_configuration,
17062 (cmdline_parse_inst_t *)&cmd_config_per_port_rx_offload,
17063 (cmdline_parse_inst_t *)&cmd_config_per_queue_rx_offload,
17064 (cmdline_parse_inst_t *)&cmd_tx_offload_get_capa,
17065 (cmdline_parse_inst_t *)&cmd_tx_offload_get_configuration,
17066 (cmdline_parse_inst_t *)&cmd_config_per_port_tx_offload,
17067 (cmdline_parse_inst_t *)&cmd_config_per_queue_tx_offload,
17069 (cmdline_parse_inst_t *)&cmd_operate_bpf_ld_parse,
17070 (cmdline_parse_inst_t *)&cmd_operate_bpf_unld_parse,
17072 (cmdline_parse_inst_t *)&cmd_config_tx_metadata_specific,
17073 (cmdline_parse_inst_t *)&cmd_show_tx_metadata,
17074 (cmdline_parse_inst_t *)&cmd_show_rx_tx_desc_status,
17075 (cmdline_parse_inst_t *)&cmd_set_raw,
17076 (cmdline_parse_inst_t *)&cmd_show_set_raw,
17077 (cmdline_parse_inst_t *)&cmd_show_set_raw_all,
17078 (cmdline_parse_inst_t *)&cmd_config_tx_dynf_specific,
17079 (cmdline_parse_inst_t *)&cmd_show_fec_mode,
17080 (cmdline_parse_inst_t *)&cmd_set_fec_mode,
17081 (cmdline_parse_inst_t *)&cmd_show_capability,
17085 /* read cmdline commands from file */
17087 cmdline_read_from_file(const char *filename)
17089 struct cmdline *cl;
17091 cl = cmdline_file_new(main_ctx, "testpmd> ", filename);
17093 printf("Failed to create file based cmdline context: %s\n",
17098 cmdline_interact(cl);
17103 printf("Read CLI commands from %s\n", filename);
17106 /* prompt function, called from main on MAIN lcore */
17110 /* initialize non-constant commands */
17111 cmd_set_fwd_mode_init();
17112 cmd_set_fwd_retry_mode_init();
17114 testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> ");
17115 if (testpmd_cl == NULL)
17117 cmdline_interact(testpmd_cl);
17118 cmdline_stdin_exit(testpmd_cl);
17124 if (testpmd_cl != NULL)
17125 cmdline_quit(testpmd_cl);
17129 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue)
17131 if (id == (portid_t)RTE_PORT_ALL) {
17134 RTE_ETH_FOREACH_DEV(pid) {
17135 /* check if need_reconfig has been set to 1 */
17136 if (ports[pid].need_reconfig == 0)
17137 ports[pid].need_reconfig = dev;
17138 /* check if need_reconfig_queues has been set to 1 */
17139 if (ports[pid].need_reconfig_queues == 0)
17140 ports[pid].need_reconfig_queues = queue;
17142 } else if (!port_id_is_invalid(id, DISABLED_WARN)) {
17143 /* check if need_reconfig has been set to 1 */
17144 if (ports[id].need_reconfig == 0)
17145 ports[id].need_reconfig = dev;
17146 /* check if need_reconfig_queues has been set to 1 */
17147 if (ports[id].need_reconfig_queues == 0)
17148 ports[id].need_reconfig_queues = queue;